Skip to content

Instantly share code, notes, and snippets.

@robertmassaioli
Last active March 1, 2024 09:47
Show Gist options
  • Save robertmassaioli/b8d2f889348e90e053b32f8ba1f8bba7 to your computer and use it in GitHub Desktop.
Save robertmassaioli/b8d2f889348e90e053b32f8ba1f8bba7 to your computer and use it in GitHub Desktop.
Stenography autobreifer
const fs = require('fs');
function extractMultiChordOutlines(dictionary) {
const multiChordOutlines = [];
for (const outline in dictionary) {
if (outline.includes('/') && !dictionary[outline].includes(' ')) {
multiChordOutlines.push(outline);
}
}
return multiChordOutlines;
}
function dropLastChord(outline) {
const chords = outline.split('/');
if (chords.length === 1) {
return outline;
}
chords.pop();
return chords.join('/');
}
function generateNewDictionary(dictionary, multiChordOutlines) {
const newDictionary = {};
for (const outline of multiChordOutlines) {
let currentOutline = outline;
let output = dictionary[outline];
while (true) {
currentOutline = dropLastChord(currentOutline);
if (!dictionary[currentOutline]) {
newDictionary[currentOutline] = output;
} else {
break;
}
if (currentOutline.indexOf('/') === -1) {
break;
}
}
}
return newDictionary;
}
function main() {
const inputFilePath = 'dictionary.json';
const outputFilePath = 'new_dictionary.json';
try {
const data = fs.readFileSync(inputFilePath, 'utf8');
const dictionary = JSON.parse(data);
const multiChordOutlines = extractMultiChordOutlines(dictionary);
const newDictionary = generateNewDictionary(dictionary, multiChordOutlines);
fs.writeFileSync(outputFilePath, JSON.stringify(newDictionary, null, 2));
console.log('New dictionary generated successfully!');
} catch (err) {
console.error('Error:', err);
}
}
main();
{
"STKPW": "ztype",
"STKPWAOEUG/PHAT": "zygomaticus",
"STKPWAOEUG": "zygomaticus",
"STKPWAS": "sagacity",
"STKPWUFTD": "disgustedly",
"STKPAOU": "disputant",
"STKPAEURG": "despairingly",
"STKPEUPB": "beginning",
"STKPEUBG": "despicable",
"STKPER": "dispersal",
"STKPEPBS/KWRAEUR": "dispensary",
"STKHREBGS": "dyslexia",
"STKRAOEUB/-BL": "describably",
"STKRAU/PWER": "strawberry",
"STKRAU": "strawberry",
"STKREUP": "descriptively",
"STKREUPT": "descriptor",
"STKREP": "discrepancy",
"STKREP/KWREPB": "discrepancy",
"STKRUP": "disruptive",
"STKRUBG": "destructively",
"STKA/SEPL": "disassembling",
"STKA": "disapproval",
"STKAOE": "decedent",
"STKAOEU": "decisive",
"STKAOEUS": "decisive",
"STKAOEUD/-D": "decidedly",
"STKAOED": "decedent",
"STKAR/PHA": "disarmament",
"STKAR": "disarmament",
"STKAT": "statin",
"STKAS": "disaster",
"STKOE": "disobeys",
"STKOEP": "dystopian",
"STKE": "decedent",
"STKEUPBG": "distinguishes",
"STKEUGS/PHA*EUBG": "decision-making",
"STKEUGS/PHAEUBG": "decision-making",
"STKEUD": "deciduous",
"STKEP": "deceptive",
"STKURBS": "disturbance",
"STKUBG": "seductiveness",
"STKUBGT": "seductress",
"STPHRAG": "flagstone",
"STPHA": "tsunami",
"STPHA/TOER": "senatorial",
"STPHAOEU": "sniper",
"STPHAOEUS": "incisive",
"STPHA*P/TKRAG": "snapdragon",
"STPHA*P": "snapdragon",
"STPHAF": "snafu",
"STPHAR": "scenario",
"STPHAPL": "tsunami",
"STPHO*E/PHOE": "snowmobile",
"STPHO*E": "snowmobile",
"STPHOE/PWHRAO*EUPBD": "snowblindness",
"STPHOE/PHOE/PWAOEL": "snowmobiling",
"STPHOE/PHOE": "snowmobiling",
"STPHOE/PHOEBL": "snowmobiling",
"STPHOEF": "synovial",
"STPHOERBG": "snorkel",
"STPHOU": "schnauzer",
"STPHOR/-S": "snoresville",
"STPHORBG": "snorkeled",
"STPHORG": "stenographer",
"STPHORS": "sonorously",
"STPHOPB": "synonymous",
"STPHOPS": "synopsis",
"STPHEU": "snicker",
"STPHEU/KER/TKAO*D": "snickerdoodle",
"STPHEURBG/TKAO*D": "snickerdoodle",
"STPHEUPBTS": "schnitzel",
"STPHEUL": "senility",
"STPHEUTS": "schnitzel",
"STPHEFRPBLG": "synergy",
"STPHER": "synergistic",
"STPHER/SKWREUS": "synergistic",
"STPHES/THAOE/SEU": "synesthesia",
"STPHES/THAOE": "synesthesia",
"STPHES": "synesthesia",
"STPHES/THAOES": "synesthesia",
"STPAO*EPB": "sphenogram",
"STPA*G": "sphagnum",
"STPAEUR": "stairway",
"STPAR": "safari",
"STPABG": "satisfactoriness",
"STPABG/TOR/KWREU": "satisfactoriness",
"STPABG/TOR": "satisfactoriness",
"STPOEL/KWRAT": "sfoliata",
"STPOEL": "sfoliata",
"STPOPL": "stomach",
"STP*E": "saphenous",
"STP*EUFT": "sophisticated",
"STP*EUPBG": "{sphingo^}",
"STP*ER": "spherical",
"STPEU/SHEPB": "sufficiency",
"STPEU/SHEPBS": "sufficiency",
"STPEUFT": "sophisticated",
"STPEURB": "sufficiency",
"STPEURB/KWREPB": "sufficiency",
"STPEURB/KWREPBS": "sufficiency",
"STPERBL": "specialist",
"STHRE": "stiletto",
"STH*ET": "stethoscope",
"STHE": "anesthetics",
"STHET": "aesthetically",
"STRA": "values",
"STRA/TAOE": "strategic",
"STRA/TAOEPBLG": "strategical",
"STRA/TOS": "stratosphere",
"STRA/TE": "strategy",
"STRA/TEU": "stratify",
"STRA/TEU/TKPWRAF": "stratigraphy",
"STRA/TEUF": "stratification",
"STRA/TEURG": "stratigraphy",
"STRA/PWEUS": "strabismus",
"STRAOE": "striae",
"STRAOEU": "striola",
"STRAOEU/A*T": "striatum",
"STRAOEU/OE": "striola",
"STRAOEUR": "styrofoam",
"STRAOEUBG/PWRA*EBG": "strikebreaker",
"STRAOEUBG/PWRAEUBG": "strikebreaker",
"STRAOEUBG/PWRAEBG": "strikebreaker",
"STRAOEUBS": "tribesman",
"STRAOEUT": "striatum",
"STRAOET/WA*UBG": "streetwalkers",
"STRAOUFL": "struffoli",
"STRAOUS": "streusel",
"STRAOUD": "strudel",
"STRAEUT/TPA*UR": "straightforward",
"STRAEUT/TPO*R": "straightforward",
"STRAU/PW*ER": "strawberries",
"STRAF": "extravasation",
"STRAPBG": "strangles",
"STRAPL": "scramble",
"STRAG": "straggles",
"STRAT/TKPWRAF": "stratigraphy",
"STRATS": "stratospheric",
"STRAD": "straddle",
"STROE": "stromal",
"STROPB": "astronomy",
"STROPBT": "strontium",
"STRE/TPHAOU": "strenuous",
"STRE": "strenuous",
"STREUPB/SKWREPB": "stringency",
"STREUB": "distribution",
"STREUD": "stridor",
"STREPB": "strenuous",
"STREPBG/KWREPB": "strengthened",
"STREPBGT/KWREPB": "strengthened",
"STREPBS": "strenuously",
"STRUPLT/KWRAL": "instrumentally",
"STA/TPHOG": "stanographer",
"STA/TPHOG/RA": "stanographer",
"STA/TEUFT": "statistical",
"STA/TEUS/TEU": "statistical",
"STA/TEUS": "statistician",
"STA/KHAOU/KWRAEUR": "statuary",
"STA/KHAOU/WAEUR": "statuary",
"STA/KA": "staccato",
"STA/PAOED": "stapedial",
"STA/HRABG": "stalactite",
"STA/HRAG": "stalagmite",
"STAO*EF": "stevedore",
"STAOE/TOE": "steatosis",
"STAOEU/ROE": "styrofoam",
"STAOEUF": "stiffen",
"STAOEUR": "styrofoam",
"STAOET/RAOE": "steatorrhea",
"STAOET": "steatorrhea",
"STAOU/PEU/TKEU": "stupidity",
"STAOU/PEU": "stupidity",
"STAOU/PEPB": "stupendous",
"STAOUR": "stewardess",
"STAOUP": "stuporous",
"STA*/SAO*E/SEU": "tzatziki",
"STA*/SAO*E": "tzatziki",
"STA*": "tzatziki",
"STA*T": "statherin",
"STAEU/PWEU": "stabilizes",
"STAEUR/KWROE/T/TEUP": "stereotypical",
"STAEUR/KWROE/T": "stereotypical",
"STAEUR/KWROE/TEUP": "stereotypical",
"STAEUP": "staples",
"STAEUPBS": "instantaneously",
"STAEUB": "stabilize",
"STAEUBG/HO*ELD": "stakeholder",
"STAEUGS/KWRAEUR": "stationary",
"STAEUT/-S": "statesmen",
"STAEUS": "stasis",
"STAFP/WAEUR": "statuary",
"STAFP": "statuary",
"STAFT": "statistical",
"STAR/KWREU": "starry-eyed",
"STAP": "stapling",
"STAPBD/A*": "standalone",
"STAPBD/A*EU": "stand-alone",
"STAPL": "stamps",
"STABL": "establishing",
"STAL": "stalwart",
"STALG": "stalagmite",
"STAT/KHAOU/WES": "statuesque",
"STO/TEUPB": "stotinki",
"STO/KAS": "stochastic",
"STO*EUR/TEUP": "stereotypical",
"STOE/TEUPB": "stotinki",
"STOE/KAS": "stochastic",
"STOEU/KOPL": "stoichiometry",
"STOEU/KEU/KWRO/PHE": "stoichiometry",
"STOEU/KEU/KWRO": "stoichiometry",
"STOEU/KEU": "stoichiometry",
"STOEU/KEU/KWROPL": "stoichiometry",
"STOEUR/SKO": "stereoscopic",
"STOEUR/SKOP": "stereoscopic",
"STOEUR/TEU/PEU": "stereotypical",
"STOEUR/TEU": "stereotypical",
"STOEUR/TEUP": "stereotypical",
"STOEUPB/TAO*EU": "stenotypic",
"STOEUPB/TAOEU": "stenotypic",
"STOEUPB/TAOEUP": "stenotypically",
"STOEUPB/TO*P/*ER": "stenotoppers",
"STOEUPB/KAOEBDZ": "{>}stenokeyboards.com",
"STOEUBG/KWROPL": "stoichiometry",
"STOER/TEL": "storytelling",
"STOEPB/PHA*EUS": "stonemason",
"STOPBLG": "stodginess",
"STOPL/KWRAT": "symptomatically",
"ST*ET": "stethoscope",
"STE/TKPWA/TPHO": "steganography",
"STE/TKPWA": "steganography",
"STE": "stellar",
"STE/TKPWA/TPHO/TKPWRAF": "steganography",
"STE/TKPWA/TPHORG": "steganography",
"STE/TKPWO/SAUR": "stegosaurus",
"STE/TKPWO": "stegosaurus",
"STE/TPHO/TKPWRAF": "stenography",
"STE/TPHOE/TAO*EU": "stenotypic",
"STE/TPHOE/TAOEU": "stenotypic",
"STE/TPHOE/WRAO*EUT": "stenowriter",
"STE/TPHORG": "stenography",
"STE/TPHOG/RA": "stenographer",
"STE/TPHOG": "stenographer",
"STE/THO": "stethoscope",
"STE/THOE": "stethoscope",
"STEU/PHAOU/HRA": "stimulatory",
"STEU/PHAOU": "stimulus",
"STEU/PHAOU/HRA/TOR": "stimulatory",
"STEU/PHAOU/HRAEU": "stimulator",
"STEU/PAOU": "stipulates",
"STEU/HRE": "stiletto",
"STEURL": "stirling",
"STEUPB": "stingy",
"STEUPBG/KWREU": "stinginess",
"STEUPL/HRA": "stimulatory",
"STEUPL/HRA/TOR": "stimulatory",
"STEUPL/HRAEU": "stimulator",
"STEUG/PHAT": "stigmatization",
"STER": "sterilize",
"STER/TEU": "stereotypic",
"STER/TEUP": "stereotypical",
"STER/KWRO/SKO": "stereoscopic",
"STER/KWRO": "stereometry",
"STER/KWRO/SKOP": "stereoscopic",
"STER/KWRO/TEU/PEU": "stereotypical",
"STER/KWRO/TEU": "stereotypic",
"STER/KWRO/TEUP": "stereotypical",
"STER/KWRO/PHE": "stereometry",
"STER/KWRO/PHET": "stereometry",
"STER/KWROE/SKO": "stereoscopic",
"STER/KWROE/SKOP": "stereoscopic",
"STER/KWROE/TEU/PEU": "stereotypical",
"STER/KWROE/TEU": "stereotypic",
"STER/KWROE/TEUP": "stereotypical",
"STER/KWROP": "stereopsis",
"STER/KWROPL": "stereometry",
"STER/KWREUL": "sterilize",
"STEP/S*EUS": "stepsisters",
"STEP/TKA*U": "stepdaughters",
"STEP/TPA*": "stepfamily",
"STEP/TPA*/PHEU": "stepfamily",
"STEP/TPA*U": "stepfather",
"STEP/TPA*PL": "stepfamily",
"STEP/KH*EUL": "stepchildren",
"STEP/KH*EULD": "stepchildren",
"STEP/PWRO*": "stepbrother",
"STEP/PHO*": "stepmother",
"STEP/PA*": "stepparents",
"STEP/HRA*": "stepladders",
"STEPB/TOR": "stentorian",
"STEPB/WRAOEUT": "stenowriter",
"STEPS/HRA*": "stepladders",
"STEPS": "stepladders",
"STEG/SAUR": "stegosaurus",
"STEG": "steganography",
"STEG/TPHO": "steganography",
"STEG/TPHO/TKPWRAF": "steganography",
"STEG/TPHORG": "steganography",
"STU": "stubby",
"STUR": "sturdy",
"STURD": "sturdiness",
"STUB/KWRORPB": "stubbornly",
"STUL/TEU": "stultior",
"STUL": "stultior",
"STULT": "stultior",
"SKPHAPB": "schmancy",
"SKPRO/SKWRE": "androgenic",
"SKPRO": "androgens",
"SKWR": "js",
"SKWR/KWAOER": "jQuery",
"SKWR/KWAOUR": "jquery",
"SKWR/KWER": "jQuery",
"SKWRA": "jackalope",
"SKWRA/SRE": "javelin",
"SKWRA/TPHEU": "janitors",
"SKWRA/KA": "jackalope",
"SKWRA/HA*": "jackhammer",
"SKWRA/A": "jackalope",
"SKWRAOE/TKPWRAF": "geographics",
"SKWRAOE/TPHAOE/KWRA/HRO": "genealogical",
"SKWRAOE/TPHAOE/KWRA": "genealogical",
"SKWRAOE/TPHAOE/KWRA/HRO/SKWREUBG": "genealogical",
"SKWRAOE/TPHAOE/KWRA/HROE": "genealogist",
"SKWRAOE/TPHAOE/KWRA/HROPBLG": "genealogical",
"SKWRAOE/TPHAOE/KWRO/HRO": "genealogy",
"SKWRAOE/TPHAOE/KWRO": "genealogy",
"SKWRAOE/TPHAOE/KWRE/HRO/SKWREU": "genealogical",
"SKWRAOE/TPHAOE/KWRE/HRO": "genealogical",
"SKWRAOE/TPHAOE/KWRE": "genealogical",
"SKWRAOE/TPHO": "genomics",
"SKWRAOE/TPHO/TEU": "genotypic",
"SKWRAOE/TPHO/TEUP": "genotypic",
"SKWRAOE/TPHOE": "genomics",
"SKWRAOE/TPHOE/TEU": "genotypic",
"SKWRAOE/TPHOE/TEUP": "genotypic",
"SKWRAOE/TPHOPL": "genomically",
"SKWRAOE/THER": "geothermal",
"SKWRAOE/KWRAR/TKAOEU": "giardiasis",
"SKWRAOE/KWRAR": "giardiasis",
"SKWRAOE/KWRARD": "giardia",
"SKWRAOE/KWRO/TKPWRAF": "geographer",
"SKWRAOE/KWRO/THER": "geothermal",
"SKWRAOE/KWRO/PHAPB": "geomancy",
"SKWRAOE/KWRO/PHAPBS": "geomancy",
"SKWRAOE/KWRO/PHE": "geometrician",
"SKWRAOE/KWRO/PHET": "geometrician",
"SKWRAOE/KWRO/PHET/REU": "geometrical",
"SKWRAOE/KWRO/PO/HREU": "geopolitics",
"SKWRAOE/KWRO/PO": "geopolitics",
"SKWRAOE/KWRO/POL": "geopolitics",
"SKWRAOE/KWRO/HRO": "geologic",
"SKWRAOE/KWRO/HROPBLG": "geological",
"SKWRAOE/KWROE/SAO*EPBG/RO": "geosynchronous",
"SKWRAOE/KWROE/SAO*EPBG": "geosynchronous",
"SKWRAOE/KWROE/TKPWRAF": "geographics",
"SKWRAOE/KWROE/TKAOE": "geodesic",
"SKWRAOE/KWROE/THER": "geothermal",
"SKWRAOE/KWROE/KOED": "geocoder",
"SKWRAOE/KWROE/PHAPB": "geomancy",
"SKWRAOE/KWROE/PHAPBS": "geomancy",
"SKWRAOE/KWROE/PHE": "geometrician",
"SKWRAOE/KWROE/PHET": "geometrician",
"SKWRAOE/KWROE/PHET/REU": "geometrical",
"SKWRAOE/KWROE/PO/HREU": "geopolitics",
"SKWRAOE/KWROE/PO": "geopolitics",
"SKWRAOE/KWROE/POL": "geopolitics",
"SKWRAOE/KWROE/HRO/SKWREU": "geological",
"SKWRAOE/KWROE/HRO": "geologic",
"SKWRAOE/KWROE/HROPBLG": "geological",
"SKWRAOE/KWRORG": "geography",
"SKWRAOE/KWROPL": "geometry",
"SKWRAOE/KWROL": "geologist",
"SKWRAOE/KWROG": "geographer",
"SKWRAOE/KWROG/RA": "geographer",
"SKWRAOE/PHAPB": "geomancy",
"SKWRAOE/PHAPBS": "geomancy",
"SKWRAOE/PHE/TREU": "geometrical",
"SKWRAOE/PHE": "geometrician",
"SKWRAOE/PHET/REU": "geometrical",
"SKWRAOE/PHET": "geometrician",
"SKWRAOE/POL": "geopolitics",
"SKWRAOE/HROPBLG": "geological",
"SKWRAOEU/TKPWAPB": "gigantic",
"SKWRAOEU/TKPWAPBT": "gigantism",
"SKWRAOEU/TPHOR": "ginormous",
"SKWRAOEU/TPHORPL": "ginormous",
"SKWRAOEU/KWRAPB": "giantess",
"SKWRAOERG": "geography",
"SKWRAOEPB/SKWRA/HRO": "genealogy",
"SKWRAOEPB/SKWRA": "genealogy",
"SKWRAOEPB/TAOEL": "genteelism",
"SKWRAOEPB/TEU": "genotypic",
"SKWRAOEPB/TEUP": "genotypic",
"SKWRAOEPB/KWRA/HRO/SKWREU": "genealogical",
"SKWRAOEPB/KWRA/HRO": "genealogical",
"SKWRAOEPB/KWRA": "genealogical",
"SKWRAOEPB/KWRA/HRO/SKWREUBG": "genealogical",
"SKWRAOEPB/KWRA/HROPBLG": "genealogical",
"SKWRAOEPB/KWROL": "genealogist",
"SKWRAOEPB/KWRE/HRO": "genealogical",
"SKWRAOEPB/KWRE": "genealogical",
"SKWRAOEPB/KWRE/HRO/SKWREUBG": "genealogical",
"SKWRAOEPB/KWRE/HROPBLG": "genealogical",
"SKWRAOEPB/HROPBLG": "genealogical",
"SKWRAOEPL": "geometry",
"SKWRAOU/SKWREUT": "jujitsu",
"SKWRAOU": "julep",
"SKWRAOU/SRE": "juveniles",
"SKWRAOU/TKEU/SHAEUR": "judiciary",
"SKWRAOU/TKEU": "judicature",
"SKWRAOU/TKEU/KA": "judicature",
"SKWRAOU/TKEU/KA/TOR": "judicatory",
"SKWRAOU/TKEURB/KWRAEUR": "judiciary",
"SKWRAOU/TKEURB": "judicially",
"SKWRAOU/TPHEU": "juniper",
"SKWRAOU/PWEU": "jubilant",
"SKWRAOUF": "juveniles",
"SKWRAOURB": "judiciary",
"SKWRAOURS/PRAOU": "jurisprudence",
"SKWRAOUPB": "juniper",
"SKWRAOUB": "jubilant",
"SKWRAOUD/KA": "judicature",
"SKWRAOUD": "judicature",
"SKWRAOUD/KA/TOR": "judicatory",
"SKWRAEUR/KWRA": "geriatrics",
"SKWRAEUR": "geriatrics",
"SKWRAEUR/KWRAT": "geriatrics",
"SKWRAUBG": "jawbreaker",
"SKWRAF": "javelin",
"SKWRARD/KWRAOEU": "giardiasis",
"SKWRAPB": "janitors",
"SKWRAPBG": "jangling",
"SKWRAPL/PWA/HRAOEU": "jambalaya",
"SKWRAPL/PWA": "jambalaya",
"SKWRAPL/PWA/HRAEU": "jambalaya",
"SKWRAPL/PWOR": "jamboree",
"SKWRABG/HA*": "jackhammers",
"SKWRABG/RA*": "jackrabbit",
"SKWRABG/RA*B": "jackrabbit",
"SKWRABG/A*": "jackalope",
"SKWRAS": "jasmine",
"SKWRO/KAOU/HRAEUR": "jocularity",
"SKWRO/KAOU": "jocular",
"SKWRO": "jolly",
"SKWROE": "jocund",
"SKWROE/KWROE/TKAOES": "geodesic",
"SKWROE/KWROE": "geodesic",
"SKWROEF": "jovial",
"SKWROEPBS": "jonesing",
"SKWROEBGS": "jokesters",
"SKWROU": "joyrides",
"SKWROFT": "jostled",
"SKWRORG": "geography",
"SKWROPB": "jonquil",
"SKWROPL": "geometry",
"SKWROL": "jolliness",
"SKWROS": "jostled",
"SKWRE/S*E": "jezebel",
"SKWRE": "jerrican",
"SKWRE/TPHAOU": "genuinely",
"SKWRE/TPHO": "genocide",
"SKWRE/TPHOE": "genocide",
"SKWRE/TPHE": "genetics",
"SKWRE/TPHE/TEU": "genetically",
"SKWRE/TPHEU": "geniculate",
"SKWRE/TPHEU/KAOU": "geniculate",
"SKWRE/TPHEUBG": "geniculate",
"SKWRE/TPHER/KWRA": "generatively",
"SKWRE/TPHER": "generous",
"SKWRE/TPHER/KWRAEU": "generators",
"SKWRE/TPHER/KWRAT": "generatively",
"SKWRE/TPHER/KWRO/SEU": "generosity",
"SKWRE/TPHER/KWRO": "generosity",
"SKWRE/TPHER/KWROS": "generosity",
"SKWRE/TPHER/KWREU": "generically",
"SKWRE/TPHET": "genetically",
"SKWRE/TPHET/KWREU": "genetically",
"SKWRE/PHAEU/TREU": "gematria",
"SKWRE/PHAEU": "gematria",
"SKWRE/PHO/HRO/SKWREU": "gemological",
"SKWRE/PHO/HRO": "gemological",
"SKWRE/PHO": "gemological",
"SKWRE/PHO/HRO/SKWREUBG": "gemological",
"SKWRE/PHO/HROPBLG": "gemological",
"SKWRE/PHOE/HRO/SKWREU": "gemological",
"SKWRE/PHOE/HRO": "gemological",
"SKWRE/PHOE": "gemological",
"SKWRE/PHOE/HRO/SKWREUBG": "gemological",
"SKWRE/PHOE/HROPBLG": "gemological",
"SKWRE/PHEU": "geminal",
"SKWRE/PAR": "jeopardy",
"SKWRE/HRA": "gelatin",
"SKWRE/HRA/TEU/TPHO": "gelatinosa",
"SKWRE/HRA/TEU": "gelatinous",
"SKWRE/HRA/TEU/TPHOE": "gelatinosa",
"SKWRE/HRAT": "gelatinous",
"SKWRE/REU": "jerrican",
"SKWREU/TPHA/TRAOE/SEU": "gynatresia",
"SKWREU/TPHA/TRAOE": "gynatresia",
"SKWREU/TPHA": "gynatresia",
"SKWREU/TPHA/TRAOES": "gynatresia",
"SKWREU/PWER/KWRE": "gibberellic",
"SKWREU/PWER/KWREL": "gibberellic",
"SKWREUF": "jiffy",
"SKWREUPB/TRAOES": "gynatresia",
"SKWREUPB/KWRER": "gingerly",
"SKWREUPBG": "jingles",
"SKWREUPL/TPHAEU/SEU": "gymnasium",
"SKWREUPL/TPHAEU": "gymnasium",
"SKWREUPL/TPHAEUS": "gymnasium",
"SKWREUPL/TPHAS": "gymnastics",
"SKWREUPL/TPHO/KAR": "gymnocarpa",
"SKWREUPL/TPHO": "gymnocarpa",
"SKWREUPL/TPHOE/KAR": "gymnocarpa",
"SKWREUPL/TPHOE": "gymnocarpa",
"SKWREUPS": "gypsies",
"SKWREUB/KWRER/KWREL": "gibberellic",
"SKWREUB/KWRER": "gibberellic",
"SKWREUB/REL": "gibberellic",
"SKWREUL": "jillion",
"SKWREUT": "jittery",
"SKWRER/KWRA": "geranyl",
"SKWRER/KWRAEUPB": "geranium",
"SKWRER/KWREU/KWRA": "geriatrics",
"SKWRER/KWREU/KWRAT": "geriatrics",
"SKWRER/KWREU/PHAPB": "gerrymander",
"SKWRER/PWOE": "jerboa",
"SKWRER/PHAPB": "gerrymander",
"SKWRER/PHO": "germophobe",
"SKWRER/PHOE": "germophobe",
"SKWRER/PHEU/SAOEU": "germicidal",
"SKWRER/PHEU": "germinal",
"SKWRER/PHEU/TPHA/TEUF": "germinativum",
"SKWRER/PHEU/TPHA": "germinativum",
"SKWRERP": "jeopardy",
"SKWRERPL/SAOEU": "germicidal",
"SKWRERPL/TEUF": "germinativum",
"SKWRERS": "jersey",
"SKWREP": "jeopardize",
"SKWREPB/SHEU": "gentium",
"SKWREPB/TREU/TPEU": "gentrification",
"SKWREPB/TEU/HREU": "gentility",
"SKWREPB/TEU": "gentility",
"SKWREPB/TEUL": "gentility",
"SKWREPB/T-L/WO*": "gentlewomen",
"SKWREPB/KWREUBG": "geniculate",
"SKWREPB/RA": "generatively",
"SKWREPB/RAEU": "generators",
"SKWREPB/RAT": "generatively",
"SKWREPB/ROS": "generosity",
"SKWREPBT/T-L": "gentlemen",
"SKWREPBT/KWREUL": "gentility",
"SKWREPBT/-L/WO*": "gentlewomen",
"SKWREPBS": "gentility",
"SKWREPL/TRAOE": "gematria",
"SKWREPL/HROPBLG": "gemological",
"SKWRELT/TPHOE": "gelatinosa",
"SKWRELS": "jealousy",
"SKWRES": "gestures",
"SKWRES/TEU/KAOU": "gesticulate",
"SKWRES/TEU": "gesticulate",
"SKWRES/TEUBG": "gesticulate",
"SKWREZ": "jezebel",
"SKWRU/SKWREUT": "jujitsu",
"SKWRU": "jugular",
"SKWRU/TKPWAOU": "jugular",
"SKWRUFT/TPEU": "justification",
"SKWRUFT/TEU/TPAOEU": "justifiably",
"SKWRUFT/TEU": "justifiably",
"SKWRUR/KWREUS/PRAOU": "jurisprudence",
"SKWRURS": "jurisdiction",
"SKWRUPB": "junket",
"SKWRUPBG": "jungles",
"SKWRUPBT/KWREU": "jauntiness",
"SKWRUPBT": "jauntiness",
"SKWRUB/SKWRAOU": "subjugation",
"SKWRUB": "jubjub",
"SKWRUBGS": "juxtaposition",
"SKWRUBGS/TA/PO": "juxtaposition",
"SKWRUBGS/TA/POE": "juxtaposition",
"SKWRUG/*ER": "juggernaut",
"SKWRUGT/PO": "juxtaposition",
"SKWRUGT": "juxtaposition",
"SKWRUGT/POE": "juxtaposition",
"SKWRUS/TEU": "justification",
"SKWRUS/TEU/TPEU": "justification",
"SKWRUS/TEURB": "justiciability",
"SKWA": "squalene",
"SKWAOE": "squeamish",
"SKWAOEPBS": "sequencing",
"SKWAOEPL": "squeamish",
"SKWAUPB": "squandered",
"SKWOEU": "sequoia",
"SKWE": "sequelae",
"SKWEUR": "squirmy",
"SKWEUG": "squiggle",
"SKWEFT": "sequestrin",
"SKWES": "sequesters",
"SKHRAFT": "scholastically",
"SKHRAS": "scholastic",
"SKHRE": "schlemiel",
"SKHRER": "scleric",
"SKHRUB": "schlubby",
"SKHAEUPB": "chicanery",
"SKRA/PAOU": "scrapula",
"SKRA": "scrabbled",
"SKRAOEPB/WRAO*EU": "screenwriter",
"SKRAOU/TEU": "scrutiny",
"SKRAOU/PAOU": "scrupulous",
"SKRAOUP": "scruples",
"SKRAOUT": "scrutable",
"SKRAEU": "scraper",
"SKRAB": "scrabbled",
"SKROE": "scrotum",
"SKR*UPL": "scrumptious",
"SKRE": "secrecy",
"SKREU": "scrimmage",
"SKREUPT/WRAO*EU": "scriptwriter",
"SKRUPB": "scrunches",
"SKA/SREPB": "scavenger",
"SKA": "scally",
"SKA/PAOU": "scapular",
"SKA/HRO/PEU": "scaloppini",
"SKA/HRO": "scaloppini",
"SKAO": "schooner",
"SKAOEU/KWRA/TEU": "sciatica",
"SKAOEU/KWRA": "sciatic",
"SKAOEU/RO*": "skyrockets",
"SKAOUS": "excusable",
"SKAEU/HRAOE": "scalenus",
"SKAEU": "scalar",
"SKAP": "scapular",
"SKAPB/TKA": "scandalous",
"SKAPLS": "scamsters",
"SKAL": "scalps",
"SKAS": "sarcastic",
"SKO/TO": "scotopic",
"SKO": "scholastic",
"SKO/TOE": "scotoma",
"SKO/TOEPL": "scotomatous",
"SKO/TOP": "scotopic",
"SKO/HRAFT": "scholastically",
"SKO/HRAS/TEU": "scholasticism",
"SKO/HRAS": "scholastic",
"SKOE": "scholastic",
"SKOE/HRAFT": "scholastically",
"SKOE/HRAS": "scholastic",
"SKOUPB": "scoundrel",
"SKOUPBD": "scoundrel",
"SKOR/PEU": "scorpion",
"SKORP": "scorpion",
"SKE": "skeletin",
"SKE/TKA": "skedaddle",
"SKE/TKAS": "scedasticity",
"SKE/TKAS/TEUS": "scedasticity",
"SKE/TKAD": "skedaddle",
"SKE/PHA": "schematics",
"SKE/PHAT": "schematically",
"SKE/HRE": "skeletin",
"SKEU/SO*/TPR*E/TPHEU": "schizophrenia",
"SKEU/SO*/TPR*E": "schizophrenic",
"SKEU/SO*": "schizophrenia",
"SKEU/SO*/TPR*EPB": "schizophrenia",
"SKEU/SO*E/TPR*E/TPHEU": "schizophrenia",
"SKEU/SO*E/TPR*E": "schizophrenic",
"SKEU/SO*E/TPR*EPB": "schizophrenia",
"SKEUR": "skirmish",
"SKEUP/-P": "skimpiest",
"SKEUT/SO*/TPR*E/TPHEU": "schizophrenia",
"SKEUT/SO*/TPR*E": "schizophrenic",
"SKEUT/SO*": "schizophrenia",
"SKEUT/SO*/TPR*EPB": "schizophrenia",
"SKEUT/SO*E/TPR*E/TPHEU": "schizophrenia",
"SKEUT/SO*E/TPR*E": "schizophrenic",
"SKEUT/SO*E": "schizophrenia",
"SKEUT/SO*E/TPR*EPB": "schizophrenia",
"SKEUTS/TPR*E": "schizophrenic",
"SKEUTS": "schizophrenia",
"SKEUTS/TPR*EPB": "schizophrenia",
"SKEUS/PHA": "schismatic",
"SKEUS": "schismatic",
"SKEUZ/TPR*EPB": "schizophrenia",
"SKEP/TEU": "skeptical",
"SKEP": "scepters",
"SKUFRB": "scurviest",
"SKUP": "sculptures",
"SKUL/TK*UG": "skullduggery",
"SKUL/TK*UG/*ER": "skullduggery",
"SKUL/TKUG": "skullduggery",
"SKUL/TKUG/*ER": "skullduggery",
"SKUL/-P": "sculptures",
"SKUL/-PLT": "sculptors",
"SKUT": "scuttles",
"SPWRAOU": "intrusively",
"SPWRAOUS": "intrusively",
"SPWRE": "intrepid",
"SPWREUPB": "intrinsic",
"SPWREUPBS": "intrinsic",
"SPWRERG": "integrity",
"SPWREP": "entrepreneurs",
"SPWAOU": "intuitively",
"SPWAOUS/KWRAS": "enthusiastic",
"SPWAOUZ/KWRAS": "enthusiastic",
"SPWAUPB": "entente",
"SPWO": "intolerable",
"SPWO/HRER": "intolerable",
"SPWOE": "intonation",
"SPWOBG/SEU": "intoxicants",
"SPWOBG": "intoxicants",
"SPW*EPL": "intemperance",
"SPWEUPL": "intimidated",
"SPWERPB": "internist",
"SPWEPB": "entente",
"SPWEPBS/TPEU": "intensification",
"SPWEPL": "intemperance",
"SPWEPL/PER": "intemperance",
"SPWELG": "intelligibility",
"SPWEG": "integrity",
"SPWEG/REU": "integrity",
"SPWES": "intestines",
"SPHRA": "splatters",
"SPHRAOEU/SOE": "spliceosome",
"SPHRAPB": "explanation",
"SPHRE/TPHE": "splenetic",
"SPHRE": "splenic",
"SPHRE/TPHEU": "splenius",
"SPHREPBT/KWRAEUR": "supplementary",
"SPHREPLT/KWRAEUR": "supplementary",
"SPHRU": "splutters",
"SPHA": "smatters",
"SPHAOEUPB": "minesweep",
"SPHAEUR": "samaritan",
"SPHAPB": "semantics",
"SPHAPBS": "shmansy",
"SPHAT": "somatization",
"SPHAT/KWRAOEUZ": "somatization",
"SPHO": "smothers",
"SPHOEL": "smolders",
"SPHOUL": "smoulder",
"SPHOR/TKPWAS": "smorgasbord",
"SPH*EUT": "smithereen",
"SPHE/TREU": "symmetrical",
"SPHE": "symmetric",
"SPHEU/SEUR": "semicircle",
"SPHEU/SEURBG": "semicircle",
"SPHEU/SEUPB/THE": "semisynthetic",
"SPHEU/SEUPB": "semisynthetic",
"SPHEU/SER/PHAOE": "semipermeable",
"SPHEU/SER": "semipermeable",
"SPHEU/TKARBG": "semidarkness",
"SPHEU/TPHEUF": "seminiferous",
"SPHEU/TPAOEU": "semifinal",
"SPHEU/THER": "smithereen",
"SPHEU/TRO/PEU": "semitropical",
"SPHEU/TRO": "semitropical",
"SPHEU/TROP": "semitropical",
"SPHEU/KO": "semicolon",
"SPHEU/KOPB/TKUBG": "semiconductor",
"SPHEU/KOPB": "semiconscious",
"SPHEU/KOPB/TKUBGT": "semiconductor",
"SPHEU/PHO*PBT": "semimonthly",
"SPHEU/PRO/TPEGS": "semiprofessional",
"SPHEU/PRO": "semiprofessional",
"SPHEU/PROE/TPEGS": "semiprofessional",
"SPHEU/PROE": "semiprofessional",
"SPHEU/PER/PHAOE": "semipermeable",
"SPHEU/PER": "semipermeable",
"SPHEU/PERPL": "semipermeable",
"SPHEU/WAOEBG": "semiweekly",
"SPHEU/HRAOU": "semilunar",
"SPHEU/RE": "semiretired",
"SPHEU/AU/TO/PHA": "semiautomatic",
"SPHEU/AU/TO": "semiautomatic",
"SPHEU/AU": "semiautomatic",
"SPHEU/AU/TOE/PHA": "semiautomatic",
"SPHEU/AU/TOE": "semiautomatic",
"SPHEU/OEUT/PHA": "semiautomatic",
"SPHEU/OEUT": "semiautomatic",
"SPHEUR": "smirch",
"SPHEUL": "similitude",
"SPHEUS": "submissive",
"SPHERT": "symmetry",
"SPHERS": "submersibles",
"SPHEG": "smegma",
"SPHET": "symmetric",
"SPHET/REU": "symmetrical",
"SPHES": "semester",
"SPHUR": "smurf",
"SPHUPBLG/U/KWREU": "smudgiest",
"SPHUPBLG/U": "smudgiest",
"SPHUL/TAEUPB": "simultaneous",
"SPHUL": "simultaneous",
"SPHULT": "simultaneity",
"SPH-P": "defervesce",
"SPH-P/TKE": "defervesce",
"SPRO": "sprocket",
"SPR*EUPBG": "sprinkles",
"SPREUPB": "sprinkles",
"SPREUT": "spritzer",
"SPREPL": "supremacist",
"SPA/TKPWE": "spaghetti",
"SPA/TPHA/KO/PEU": "spanakopita",
"SPA/TPHA/KO": "spanakopita",
"SPA/TPHA": "spanakopita",
"SPA/TPHA/KOP": "spanakopita",
"SPA/TPHEU": "spanikopita",
"SPA/TPHEU/KO/PEU": "spanikopita",
"SPA/TPHEU/KO": "spanikopita",
"SPA/TPHEU/KOP": "spanikopita",
"SPA/KHAOU": "spatulas",
"SPAO/TPHAOU": "spoonula",
"SPAO": "spoonula",
"SPAOE": "spiedini",
"SPAOE/TKO/PHAOE": "speedometers",
"SPAOE/TKO": "speedometers",
"SPAOE/TKO/PHE": "speedometers",
"SPAOE/TKOPL": "speedometers",
"SPAOE/TKEU": "spiedini",
"SPAOEU/TPHO": "spinosus",
"SPAOEU/TPHOE": "spinosus",
"SPAOEU/RAOE": "spirea",
"SPAOEU/RO/PHAOE": "spirometer",
"SPAOEU/RO": "spirometric",
"SPAOEU/RO/PHE": "spirometer",
"SPAOEU/RO/PHET": "spirometric",
"SPAOEU/ROPL": "spirometer",
"SPAOEUR/KWRAOE": "spirea",
"SPAOEUR/PHE": "spirometric",
"SPAOEUR/PHET": "spirometric",
"SPAOEURPL": "spirometer",
"SPAOEUPB/TPHO": "spinosum",
"SPAOERB": "specious",
"SPAOUR": "spurious",
"SPAOPB/*ER": "spoonerism",
"SPAOPBS": "spoonsful",
"SPA*PB/KO/PEU": "spanikopita",
"SPA*PB/KO": "spanikopita",
"SPA*PB": "spanikopita",
"SPA*PB/KOP": "spanikopita",
"SPAEU/TKEU": "spadias",
"SPAEURB": "spacious",
"SPAFT": "spastically",
"SPAPB/KO/PEU": "spanakopita",
"SPAPB/KO": "spanakopita",
"SPAPB/KOP": "spanakopita",
"SPAPBS": "spansule",
"SPAPBD": "spandrel",
"SPAS": "spasmodically",
"SPAS/TEUS": "spasticity",
"SPAS/PHO": "spasmodic",
"SPAS/PHOD": "spasmodically",
"SPO/SEU": "suppositories",
"SPO": "suppositories",
"SPO/SEU/TOR": "suppositories",
"SPOE": "spoken",
"SPOEU": "spoiler",
"SPOEBGS": "spokeswomen",
"SPOEBGS/P*ER": "spokesperson",
"SPOEBGS/WO*": "spokeswoman",
"SPOEBGS/W*EU": "spokeswomen",
"SPOU": "spousal",
"SPOR/SAOEU": "sporicidal",
"SPOR/KWRA": "sporadic",
"SPOR/KWRAD": "sporadically",
"SPOR/KWREU/SAOEU": "sporicidal",
"SPOR/KWREU": "sporicidal",
"SPORTS/WO*": "sportswoman",
"SPOPB": "spontaneous",
"SPOPB/TKAEU": "spondaic",
"SPOPB/TKEPB": "respondendum",
"SPOPB/TA/TPHAEU": "spontaneity",
"SPOPB/TA": "spontaneity",
"SPOPB/TA/TPHAEU/KWREU": "spontaneity",
"SPOPB/TAEU/TPHAOE": "spontaneous",
"SPOPB/TAEU": "spontaneous",
"SPOPB/TAEUPB": "spontaneous",
"SPOPBT/TPHAEU": "spontaneity",
"SPOPBT": "spontaneity",
"SPOS/TOR": "suppositories",
"SPE": "spelunk",
"SPE/SEU": "specimens",
"SPE/SEU/TPEU/SEU": "specificity",
"SPE/SEU/TPEU": "specification",
"SPE/SEU/TPEUS": "specificity",
"SPE/KAOU": "speculum",
"SPEU": "spirit",
"SPEU/KAOU": "spiculate",
"SPEU/REU": "spiritual",
"SPEUFRPB": "spiritually",
"SPEUR": "spirited",
"SPEUR/KWREU": "spirituals",
"SPEUR/KWREUFP": "spiritual",
"SPEURBG": "circumspection",
"SPEUPBS": "spinsters",
"SPEUPBD": "spindles",
"SPEUBG/SKP": "spick-and-span",
"SPEUBG": "spiculate",
"SPEUD": "spitwad",
"SPER/PHA": "spermatic",
"SPEBG/TRA/HR*EBG": "spectra_lexer",
"SPEBG/TRO/SKO": "spectroscopic",
"SPEBG/TRO/TPO*E/TO": "spectrophotometric",
"SPEBG/TRO/TPO*E": "spectrophotometer",
"SPEBG/TRO/TPO*E/TO/PHE": "spectrophotometer",
"SPEBG/TRO/TPO*E/TO/PHET": "spectrophotometric",
"SPEBG/TRO/TPO*E/TOPL": "spectrophotometer",
"SPEBG/TRO/TPO*ET": "spectrophotometric",
"SPEBG/TRO/TPO*ET/PHE": "spectrophotometer",
"SPEBG/TRO/TPO*ET/PHET": "spectrophotometric",
"SPEBG/TRO/PHE": "spectrometer",
"SPEBG/TRO/PHET": "spectrometry",
"SPEBG/TROE/SKO": "spectroscopic",
"SPEBG/TROE/TPO*E/TO": "spectrophotometric",
"SPEBG/TROE/TPO*E": "spectrophotometer",
"SPEBG/TROE/TPO*E/TO/PHE": "spectrophotometer",
"SPEBG/TROE/TPO*E/TO/PHET": "spectrophotometric",
"SPEBG/TROE/TPO*E/TOPL": "spectrophotometer",
"SPEBG/TROE/TPO*ET": "spectrophotometric",
"SPEBG/TROE/TPO*ET/PHE": "spectrophotometer",
"SPEBG/TROE/TPO*ET/PHET": "spectrophotometric",
"SPEBG/TROPL": "spectrometer",
"SPEBG/TROS/KO": "spectroscopy",
"SPEBG/TROS": "spectroscopy",
"SPEBG/TA/KAOU": "spectacularly",
"SPEBG/TA": "spectacles",
"SPEBG/TAEU": "spectators",
"SPEBG/TABG": "spectacles",
"SPES": "specimens",
"SPES/TPEU": "specification",
"SPES/TPEUS": "specificity",
"SPU": "sputum",
"SWHAR": "shawarma",
"SWRA": "voila",
"SWAO*EU": "zwieback",
"SWAOEU": "swinish",
"SWAOET/KWREPB": "sweetener",
"SWAUFT": "swastika",
"SWAUR": "soiree",
"SWAUPL": "swamps",
"SWAUS/TEU": "swastika",
"SWAUS": "swastika",
"SWAUD": "swaddling",
"SWAFT": "swastika",
"SWAR": "soiree",
"SWARB/PWUBG": "swashbuckling",
"SWARB": "swashbuckling",
"SWAS/TEU": "swastika",
"SWAS": "swastika",
"SWAD": "swaddling",
"SWOE": "swollen",
"SW*EU": "zwitter",
"SWEU": "swimmers",
"SWEU/KHER": "switcheroo",
"SWEUF": "swifter",
"SWEUPB": "swindled",
"SWEUPBD": "swindled",
"SWEUZ": "swizzle",
"SH/HRE": "schlemiel",
"SHRA": "slalom",
"SHRA/TERPB": "slatternly",
"SHRAOEPB": "selenium",
"SHRAEUF/*ER": "slavery",
"SHRAEUFR": "slavery",
"SHRAPB": "slanders",
"SHRAPBD": "slanderous",
"SHRO": "sloven",
"SHRO*": "zloty",
"SHROE/SREPB": "slovenly",
"SHROS": "velociraptor",
"SHROS/RAP": "velociraptor",
"SHRE/PWREU": "celebrity",
"SHRE": "schlemiel",
"SHREU": "slithers",
"SHREURP/KWREU": "slipperiness",
"SHREUPB/TKREU": "cylindrical",
"SHREUPB": "slink",
"SHREUPBD": "cylindrical",
"SHREUS": "solicitors",
"SHREFT": "celestial",
"SHREPB": "selenium",
"SHREPBLG/HA*": "sledgehammer",
"SHREB/REU": "celebrity",
"SHREBG": "selectivity",
"SHRUB/*ER": "shrubbery",
"SHA": "charades",
"SHA/TKPWA/TKE": "shagadelic",
"SHA/TKPWA": "shagadelic",
"SHA/TOE/PWREU": "chateaubriand",
"SHA/KO": "shakopee",
"SHA/PAR": "chaparral",
"SHAOEUS": "shysters",
"SHAOEZ": "sheezy",
"SHAEU": "shaman",
"SHAU": "chauffeur",
"SHAR/TKO": "chardonnay",
"SHAR": "charlatan",
"SHAR/HRA": "charlatan",
"SHARL": "charlatan",
"SHAP": "chaperon",
"SHAPB": "shanty",
"SHAPB/TKPWREU": "shangri-la",
"SHAPBG/REU": "shangri-la",
"SHAPBG": "shangri-la",
"SHAB": "shabbiness",
"SHAG/TKE": "shagadelic",
"SHOE/SREU": "chauvinistic",
"SHOE/SREU/TPHEUS": "chauvinistic",
"SHOEF": "chauvinistic",
"SHOEF/TPHEUS": "chauvinistic",
"SHOL": "shoulders",
"SHE/SRAL": "chevalier",
"SHE": "shellac",
"SHE/TPHA/TPHEU": "shenanigan",
"SHE/TPHA": "shenanigan",
"SHE/TPHAPB": "shenanigan",
"SHEU/SRAL": "chivalrous",
"SHEU/TKPWE": "shigella",
"SHEU/TPOR": "chifforobe",
"SHEU/TA": "shiitake",
"SHEU/KWRAT": "shiatsu",
"SHEU/KAEUPB": "chicanery",
"SHEU/PWO": "shibboleth",
"SHEU/PWOE": "shibboleth",
"SHEUFL": "chivalrous",
"SHEUPBG": "shingles",
"SHEUB": "shibboleth",
"SHERB": "szechuan",
"SHEP": "shepherds",
"SHU": "shudders",
"SHUF": "shuffles",
"SHUFS": "shuffled",
"SHUG/TKPWAR": "sugary",
"SHUG/REU": "sugariness",
"SR/WA": "voila",
"SRA/SKWRAOEU": "vagina",
"SRA": "variety",
"SRA/SKWREU": "vaginal",
"SRA/SEU/HRA": "vacillatory",
"SRA/SEU": "vacillates",
"SRA/SEU/HRA/TOR": "vacillatory",
"SRA/SEU/HRAEU": "vacillator",
"SRA/TKPWA": "vagabonds",
"SRA/TKPWAEUR": "vagary",
"SRA/TPHA": "savanna",
"SRA/TPHAEU/TKEU": "vanadium",
"SRA/TPHAEU": "vanadium",
"SRA/TPHAEUD": "vanadium",
"SRA/TPHEU": "vanilla",
"SRA/KAOU": "vacuous",
"SRA/HRAOE": "valebant",
"SRA/HRAOER": "valorem",
"SRA/HRAOUL": "valuable",
"SRA/HRE/TKEUBG": "valedictory",
"SRA/HRE": "vallecula",
"SRA/HRE/TKEUBG/TOR": "valedictory",
"SRA/HRE/KAOU": "vallecula",
"SRA/HREU/TKAEU": "validator",
"SRA/HREPB": "valentine",
"SRA/HREBG": "vallecula",
"SRA/RAOEU": "varieties",
"SRA/RAOEU/KWRE": "varieties",
"SRAO": "voodoo",
"SRAOE": "vehicular",
"SRAOE/SRAL": "revaluate",
"SRAOE/TPHAOER": "venereal",
"SRAOE/KWREU/KAOU": "vehicular",
"SRAOE/KWREU": "vehicular",
"SRAOE/KWREUBG": "vehicles",
"SRAOE/HAOE": "vehement",
"SRAOE/HEU/KAOU": "vehicular",
"SRAOE/HEU": "vehicular",
"SRAOE/HEUBG": "vehicular",
"SRAOEU/SRAS": "vivacity",
"SRAOEU": "violets",
"SRAOEU/TA": "vitamins",
"SRAOEU/KWRO": "violets",
"SRAOEU/KWRO/HRAEU": "violators",
"SRAOEU/KWRO/HRAEURB": "violaceous",
"SRAOEU/KWRO/HRAT": "violative",
"SRAOEU/KWROE": "violets",
"SRAOEU/KWROE/HRAEU": "violative",
"SRAOEU/KWROE/HRAEURB": "violaceous",
"SRAOEU/KWROE/HRAT": "violative",
"SRAOEU/KHEU/KWRA": "psychiatric",
"SRAOEU/KHEU": "psychiatric",
"SRAOEU/KAEUR/KWREU": "vicarious",
"SRAOEU/KAEUR": "vicarious",
"SRAOEU/KEU/KWRA": "psychiatric",
"SRAOEU/KEU": "psychiatric",
"SRAOEU/PWRA": "vibratory",
"SRAOEU/PWRA/TOR": "vibratory",
"SRAOEU/PWRAEU": "vibrator",
"SRAOEU/HRAEU": "violative",
"SRAOEU/HRAT": "violative",
"SRAOEU/RAOE/PHEU": "viremia",
"SRAOEU/RAOE": "viremia",
"SRAOEU/RAOEPL": "viremia",
"SRAOEU/RAOU": "virulent",
"SRAOEU/RO/HRO": "virologic",
"SRAOEU/RO": "virological",
"SRAOEU/RO/HROPBLG": "virological",
"SRAOEU/ROL": "virology",
"SRAOEUR": "virulent",
"SRAOEURB": "vibratory",
"SRAOEURB/TOR": "vibratory",
"SRAOEUB/RA": "vibratory",
"SRAOEUB/RA/TOR": "vibratory",
"SRAOEUB/RAEU": "vibrator",
"SRAOEUT": "vitals",
"SRAOEPB": "serenely",
"SRA*LG": "valkyrie",
"SRAEU": "valence",
"SRAEU/TKPWA": "vagabonds",
"SRAEU/KAPB": "vacancies",
"SRAEUR/SE": "varicella",
"SRAEUR/KWROE": "variolation",
"SRAEUR/KHE": "varicella",
"SRAEUR/KOS": "varicosity",
"SRAEURL": "variolation",
"SRAEUPB/TKPWHRO*R": "vainglorious",
"SRAEUPB/TKPWO*ER": "vainglorious",
"SRAEUBG": "vacancies",
"SRAU/TKE/SREU/HREU": "vaudevillian",
"SRAU/TKE/SREU": "vaudevillian",
"SRAU/TKE": "vaudeville",
"SRAU": "vaudevillian",
"SRAU/TKEU/SREUL": "vaudevillian",
"SRAU/TKEU": "vaudevillian",
"SRAUD": "vaudeville",
"SRAFBG/HRA": "vasculature",
"SRAFBG/HRA/TOR": "vasculatory",
"SRAFBG/HRAEUR": "vascularity",
"SRAFBG/HRAEUR/KWREU": "vascularity",
"SRAR/SE": "varicella",
"SRAR/KHE": "varicella",
"SRAR/KOS": "varicosity",
"SRARS": "varsity",
"SRAP": "evaporated",
"SRAP/RAEU": "evaporative",
"SRAPBLG": "vaginal",
"SRAPBD": "vandalism",
"SRAPL": "vamps",
"SRAPL/PEUR": "vampiric",
"SRABG/SAOE": "vaccenic",
"SRABG/SEU": "vaccinates",
"SRABGS": "vaccinates",
"SRAL/SRAOU": "valvular",
"SRAL/TKAEU": "validator",
"SRAL/TKEUBG": "valedictory",
"SRAL/TKEUBG/TOR": "valedictory",
"SRAL/KEUR": "valkyrie",
"SRAG/KWRAEUR": "vagary",
"SRAS/KAOU/HRA": "vasculature",
"SRAS/KAOU": "vascular",
"SRAS/KAOU/HRA/TOR": "vasculatory",
"SRAS/KAOU/HRAEUR": "vascularity",
"SRAS/KAOU/HRAEUR/KWREU": "vascularity",
"SRAS/HRA": "vacillatory",
"SRAS/HRA/TOR": "vacillatory",
"SRAS/HRAEU": "vacillator",
"SRO/SEU/TPER": "vociferous",
"SRO/SEU": "vociferous",
"SRO": "voluptuous",
"SRO/SEUF": "vociferous",
"SRO/TAEUR": "voluntarism",
"SRO/KA": "vocalis",
"SRO/PHEU": "vomitus",
"SRO/HRA": "volatility",
"SRO/HRAOE/PHEU": "volemia",
"SRO/HRAOE": "volemic",
"SRO/HRAOEPL": "volemia",
"SRO/HRAOU/PHE": "volumetric",
"SRO/HRAOU": "volumetric",
"SRO/HRAOU/PHEU": "voluminous",
"SRO/HRAOU/PHET": "volumetric",
"SRO/HREPB": "volenti",
"SRO/HRUP": "voluptuous",
"SRO/HRUPB/TAEUR": "voluntarism",
"SRO/HRUPT": "voluptuous",
"SRO*EUD/TKPWRAF": "videographer",
"SRO*EUD/KA*": "videocassette",
"SRO*ELG": "volcanic",
"SRO*LG": "volcanic",
"SROE/SEU/TPER": "vociferous",
"SROE/SEU": "vociferous",
"SROE/SEUF": "vociferous",
"SROE/KA": "vocalis",
"SROE/KA/PWAOU/HRAEUR": "vocabulary",
"SROE/KA/PWAOU": "vocabulary",
"SROE/KAEU": "vocative",
"SROE/KAB/HRAEUR": "vocabulary",
"SROEU": "voila",
"SROEU/KWRA": "voyageur",
"SROEBG": "vocalist",
"SROEL/TAEU": "voltaic",
"SROEL/KA": "volcanic",
"SROEL/KAEU": "volcanic",
"SROR/TEU": "vorticose",
"SROR": "voracity",
"SROR/KWRAEU": "voracious",
"SROR/KWRAEURB": "voracious",
"SROR/KWRAS": "voracity",
"SROPL": "vomica",
"SROBG": "vocative",
"SROL/SRU": "volvulus",
"SROL/TAEU": "voltaic",
"SROL/KA": "volcanic",
"SROL/KAEU": "volcanic",
"SROL/PHE": "volumetric",
"SROL/PHET": "volumetric",
"SROLT/PHAO*E": "voltmeter",
"SROLT": "voltmeter",
"SROD": "vodka",
"SR*EUPBG": "vinculin",
"SRE/SKWRE/TA": "vegetative",
"SRE/SKWRE": "vegetal",
"SRE/SKWRE/TAEUR": "vegetarian",
"SRE/SKWRE/TAERPB": "vegetarianism",
"SRE/SKWRET": "vegetables",
"SRE/SEU": "vesicles",
"SRE/SEUBG": "vesicles",
"SRE/TPHAOER": "venereum",
"SRE/TPHO": "venomous",
"SRE/TPHO/TKPWRAF": "venography",
"SRE/TPHOE": "venosus",
"SRE/TPHORG": "venography",
"SRE/TPHER": "venerably",
"SRE/TREU/TPHAEUR": "veterinary",
"SRE/TREU": "veterinarians",
"SRE/TER": "veterinarians",
"SRE/TER/KWREU/TPHAEUR": "veterinarians",
"SRE/TER/KWREU": "veterinarians",
"SRE/TER/KWREU/TPHAEUR/KWREU": "veterinarians",
"SRE/HRAEUR": "velarium",
"SRE/HRO/SEU": "velociraptor",
"SRE/HRO/SEU/RAP": "velociraptor",
"SRE/HROS": "velociraptor",
"SRE/HROS/RAP": "velociraptor",
"SRE/RA/SEU": "veracity",
"SRE/RA": "veracity",
"SRE/RAS": "veracity",
"SREU/SKWREU/HRAPB": "vigilante",
"SREU/SKWREU": "vigilance",
"SREU/SHEU": "vichyssoise",
"SREU/SRA/SEU": "vivacity",
"SREU/SRAEU": "vivacious",
"SREU/SRAEURB": "vivacious",
"SREU/SRAS": "vivacity",
"SREU/SREU": "visitor",
"SREU/SEU/SEU": "vicissitudes",
"SREU/SEU": "visitors",
"SREU/SEU/TPHEU": "vicinity",
"SREU/SEUPB": "vicinity",
"SREU/SEUS": "vicissitudes",
"SREU/SER": "visceral",
"SREU/TKAOE": "videography",
"SREU/TKAOE/KWRO/TKPWRAF": "videographer",
"SREU/TKAOE/KWROE/TKPWRAF": "videographer",
"SREU/TKAOE/KWRORG": "videography",
"SREU/TPHA": "vinaigrette",
"SREU/TPHE": "vinegar",
"SREU/TPHEU/TPEU": "vinification",
"SREU/TPHEU": "vinification",
"SREU/TRAOE": "vitreus",
"SREU/TREU": "vitreus",
"SREU/TA": "vitallium",
"SREU/TA/HREU": "vitallium",
"SREU/TAL": "vitallium",
"SREU/TE": "vitello",
"SREU/TEU/KUL": "viticulture",
"SREU/TEU": "viticulture",
"SREU/KWRO": "viola",
"SREU/KWROE": "viola",
"SREU/KHAOU": "virtuously",
"SREU/PHEPB": "vimentin",
"SREUFRPB/WO/SEU": "virtuosity",
"SREUFRPB/WO": "virtuosity",
"SREUFRPB/WOE": "virtuoso",
"SREUFRPB/WOS": "virtuosity",
"SREUFS": "vicissitudes",
"SREUR/TWOE": "virtuoso",
"SREUR/KWRAOU": "virulence",
"SREUR/KHAOU/WO/SEU": "virtuosity",
"SREUR/KHAOU/WO": "virtuosity",
"SREUR/KHAOU/WOE": "virtuoso",
"SREUR/KHAOU/WOS": "virtuosity",
"SREURPBLG": "virginal",
"SREURB/KWREU": "vichyssoise",
"SREURBG": "circumvention",
"SREUP": "surreptitious",
"SREUPB": "vinblastine",
"SREUPB/TKA": "vindaloo",
"SREUPB/TKEU/KA": "vindicative",
"SREUPB/TKEU": "vindicable",
"SREUPB/TKEU/KA/TOR": "vindicatory",
"SREUPB/TKEU/KAEU": "vindicative",
"SREUPB/TKEUBG": "vindictively",
"SREUPB/TKEUBGT": "vindictively",
"SREUPB/TPEU": "vinification",
"SREUPB/KAOU": "vinculin",
"SREUPB/PWHRAS": "vinblastine",
"SREUPBLG/HRAPB": "vigilante",
"SREUPBLG": "vigilance",
"SREUPBG": "syringing",
"SREUPBG/KAOU": "vinculin",
"SREUPBT": "vintner",
"SREUPBD/KA": "vindicative",
"SREUPBD": "vindaloo",
"SREUPBD/KA/TOR": "vindicatory",
"SREUPBD/KAEU": "vindicative",
"SREUBL": "visibly",
"SREUBG": "vicarage",
"SREUBG/TEU": "victimize",
"SREUBGT": "victorious",
"SREUL": "vilification",
"SREUL/TPEU": "vilification",
"SREUG": "vigour",
"SREUGS/KWRAEUR": "visionary",
"SREUT/KUL": "viticulture",
"SREUT/RAOE": "vitreus",
"SREUT/REU": "vitreus",
"SREUS/TPA": "visfatin",
"SREUS/KO/SEU": "viscosity",
"SREUS/KO": "viscosity",
"SREUS/KOS": "viscosity",
"SREUD/KWRO/TKPWRAF": "videographer",
"SREUD/KWROE/KA*": "videocassette",
"SREUD/KWROE/KAFT": "videocasting",
"SREUZ": "vizier",
"SREFT/PWAOU": "vestibuli",
"SRER/SEU": "versican",
"SRER/TKEU": "verdigris",
"SRER/TKEUBG": "veredicto",
"SRER/TPHA/KAOU": "vernacular",
"SRER/TPHA": "vernacular",
"SRER/TPHABG": "vernacular",
"SRER/TPEU": "verification",
"SRER/TE": "vertebral",
"SRER/TEUBG": "vertically",
"SRER/KWRA/SEU": "veracity",
"SRER/KWRA/PA": "verapamil",
"SRER/KWRAOU": "verrucous",
"SRER/KWRAP": "verapamil",
"SRER/KWRAPB": "veranda",
"SRER/KWRAS": "veracity",
"SRER/KWRE/TKEUBG": "veredicto",
"SRER/KWRE": "veredicto",
"SRER/KWREU/SEU/PHEU/HREU": "verisimilitude",
"SRER/KWREU/SEU/PHEU": "verisimilitude",
"SRER/KWREU/SEU": "verisimilitude",
"SRER/KWREU/SEU/PHEUL": "verisimilitude",
"SRER/KWREU/TPEU": "verification",
"SRER/KWREUT": "veritable",
"SRER/KWREUS": "verisimilitude",
"SRER/KWREUS/PHEU/HREU": "verisimilitude",
"SRER/KWREUS/PHEU": "verisimilitude",
"SRER/KWREUS/PHEUL": "verisimilitude",
"SRER/KWREPB/TKEUP": "serendipity",
"SRER/KWREPB": "serendipity",
"SRER/PWAOE": "verbena",
"SRER/PWAEU": "verbatim",
"SRER/PWOE": "verboten",
"SRER/PWOS": "verbosity",
"SRER/PWEU": "verbiage",
"SRER/PHEU/SE": "vermicelli",
"SRER/PHEU": "vermilion",
"SRER/PHEU/KHE": "vermicelli",
"SRER/PHEU/HREU": "vermilion",
"SRER/PHEUL": "vermilion",
"SRERP": "verapamil",
"SRERPB/TKEUP": "serendipity",
"SRERPB": "venerable",
"SRERPL/SE": "vermicelli",
"SRERPL/KHE": "vermicelli",
"SRERBG": "verklempt",
"SRERBT": "verbatim",
"SRERT": "veritable",
"SRERS/PHEU/HREU": "verisimilitude",
"SRERS/PHEU": "verisimilitude",
"SRERS/PHEUL": "verisimilitude",
"SREP": "surreptitious",
"SREPB": "venery",
"SREPB/TKPWRAF": "venography",
"SREPB/TKE": "vendetta",
"SREPB/TKEU/PEU": "serendipitous",
"SREPB/TKEU": "serendipitous",
"SREPB/TKEUP": "serendipitous",
"SREPB/TREU/KAOU": "ventricular",
"SREPB/TREU": "ventriloquist",
"SREPB/TREU/HRO": "ventriloquist",
"SREPB/TREUBG": "ventricles",
"SREPB/TREUL": "ventriloquist",
"SREPB/TAEU/HRAEUT": "ventilator",
"SREPB/TAEU": "ventilator",
"SREPB/TEU/HRA": "ventilatory",
"SREPB/TEU/HRA/TOR": "ventilatory",
"SREPB/TEU/HRAEU": "ventilator",
"SREPBLGT": "vegetables",
"SREPBG": "vengeful",
"SREPBT/HRA": "ventilatory",
"SREPBT/HRA/TOR": "ventilatory",
"SREPBT/HRAEU": "ventilator",
"SREPBT/REU/KAOU": "ventricular",
"SREPBT/REU": "ventricles",
"SREPBT/REUBG": "ventricles",
"SREBG/SAEU": "vexatious",
"SREBG": "vectus",
"SREL/SRE": "velveteen",
"SREL/-PLT": "developmental",
"SRET/REU/TPHAEUR": "veterinary",
"SRET/REU": "veterinarians",
"SRES": "vesper",
"SRES/TEU/SKWREU": "vestigial",
"SRES/TEU": "vestibuli",
"SRES/TEU/PWAOU": "vestibuli",
"SRES/TEU/PWAOU/HROE/KHRAOE": "vestibulocochlear",
"SRES/TEU/PWAOU/HROE": "vestibulocochlear",
"SRES/TEU/PWAOU/HROEBG/HRAOE": "vestibulocochlear",
"SRES/TEU/PWAOU/HROEBG": "vestibulocochlear",
"SRES/TEUB": "vestibular",
"SRES/TEUT": "vestitor",
"SRUP": "surreptitious",
"SRUPBL": "vulnerably",
"SRUL": "vulcan",
"SRUL/TKPWA": "vulgaris",
"SRUL/TKPWAEUR": "vulgaris",
"SRUL/TKPWAEUR/KWREU": "vulgarity",
"SRUL/TPHER/KWRA": "vulnerability",
"SRUL/TPHER": "vulnerability",
"SRUL/TPHER/-BL": "vulnerably",
"SRUL/KA": "vulcanize",
"SRULG": "vulgarize",
"SA/SKWREU": "sagittal",
"SA/SHEU": "sashimi",
"SA/SRAPBLG/*ER": "savagery",
"SA/SREUPB": "sauvignon",
"SA/SA": "sassafras",
"SA/TKPWA/SEU": "sagacity",
"SA/TKPWAEU": "sagacious",
"SA/TKPWAEURB": "sagacious",
"SA/TKPWAS": "sagacity",
"SA/TKEUFT": "sadistically",
"SA/TKEUS": "sadistic",
"SA/TPHROU": "safflower",
"SA/TPHA/TOR/KWREU": "sanatorium",
"SA/TPHA/TOR": "sanatorium",
"SA/TPHA": "sanatorium",
"SA/TPHEU": "sanity",
"SA/TPHEU/TAEUR": "sanitarium",
"SA/TPHEU/TOR": "sanitoria",
"SA/TP*E": "saphenous",
"SA/TE": "satellites",
"SA/TEUR": "satirical",
"SA/TEUR/KWREU": "satirical",
"SA/TEUS": "satisfaction",
"SA/TEUS/TPABG": "satisfactory",
"SA/TEUS/TPABG/TOR": "satisfactory",
"SA/TUR": "saturnine",
"SA/KHA": "saccharin",
"SA/KHAR": "saccharin",
"SA/KHUR": "saturability",
"SA/KRO": "sacrosanct",
"SA/KROE": "sacrosanct",
"SA/KREUS": "sacristy",
"SA/KA": "saccharin",
"SA/KAOU": "saccular",
"SA/KAR": "saccharin",
"SA/KUR": "sakura",
"SA/PWA/TEU": "sabbatical",
"SA/PWA": "sabbatical",
"SA/PWO": "saboteur",
"SA/PWOE": "sabotaging",
"SA/PWOE/PWO*/TAUPBLG": "sabotaging",
"SA/PWOE/PWO*": "sabotaging",
"SA/PHAEUR": "samaritan",
"SA/PHAEUR/KWREU": "samaritan",
"SA/PHAR/KWREU": "samaritan",
"SA/PHAR": "samaritan",
"SA/PHO": "samovar",
"SA/PHOE": "samosa",
"SA/PHUR": "samurai",
"SA/PA/TKEU": "sapadilla",
"SA/PA": "sapadilla",
"SA/PO/TPHEU/TPEU": "saponification",
"SA/PO/TPHEU": "saponification",
"SA/PO": "saponification",
"SA/POPB": "saponification",
"SA/POPB/TPEU": "saponification",
"SA/WAR": "saguaro",
"SA/HRA": "salami",
"SA/HRA/PHAPB": "salamanders",
"SA/HRAOEU": "saliva",
"SA/HRAOU/TAEUR": "salutary",
"SA/HRAOU": "salubrious",
"SA/HRAOU/TAR": "salutary",
"SA/HRAOU/PWREU": "salubrious",
"SA/HRAOURB": "salubrious",
"SA/HRAOUB/REU": "salubrious",
"SA/HRAOUB": "salubrious",
"SA/HRAEU": "salacious",
"SA/HRAEUR": "salaries",
"SA/HRAEURB": "salacious",
"SA/HRAR": "salaries",
"SA/HREU/SRA": "salivatory",
"SA/HREU/SRA/TOR": "salivatory",
"SA/HREU/SRAEUR": "salivary",
"SA/HREU/TPHEU": "salinity",
"SA/HREUPB": "salinity",
"SA/HRER": "salary",
"SAO*/TPHO": "zoonotic",
"SAO*/TPHOE": "zoonoses",
"SAO*/TPHOES": "zoonoses",
"SAO*/HRO": "zoologically",
"SAO*/HRO/SKWREUBG": "zoologically",
"SAO*/HROPBLG": "zoological",
"SAO*EU/TKPWOE": "zygoma",
"SAO*EU": "xylophone",
"SAO*EU/PHO": "zymosan",
"SAO*EU/PHOE": "zymosan",
"SAO*EU/HRO": "xylophone",
"SAO*EU/HROE": "xylophone",
"SAO*EUPL": "zymosan",
"SAO*EUT/TKPWAEU": "zeitgeber",
"SAO*ER": "zeros",
"SAO*U/KHAOE": "zucchini",
"SAO*U": "zucchini",
"SAO*U/KHEU": "zucchini",
"SAO*U/KAOE": "zucchini",
"SAO*U/KEU": "zucchini",
"SAOE/SEUPB/TP*EUL": "eosinophilia",
"SAOE/SEUPB": "eosinophilia",
"SAOE/TKO": "speedometer",
"SAOE/TPHOR": "senora",
"SAOE/TPHEUL": "senility",
"SAOE/KWRE": "sienna",
"SAOE/KWE": "sequelae",
"SAOE/KWEFT": "sequestrin",
"SAOE/KWEPB": "sequential",
"SAOE/KWES": "sequesters",
"SAOE/KRE": "secrecy",
"SAOE/KRES": "secrecy",
"SAOE/HREU": "celiac",
"SAOEU/TPHAOU/SAOEU": "sinusitis",
"SAOEU/TPHAOU/SOEU": "sinusoidal",
"SAOEU/TPHAR": "sayonara",
"SAOEU/TPHE": "sinecures",
"SAOEU/TPHEPB": "sinensis",
"SAOEU/THAOEPL": "cythemia",
"SAOEU/TO": "cytometer",
"SAOEU/TO/KEU/TPHAOE": "cytokinesis",
"SAOEU/TO/KEU": "cytokinesis",
"SAOEU/TO/PHRAS": "cytoplasmic",
"SAOEU/TO/PHAOE": "cytometer",
"SAOEU/TO/PHE": "cytometer",
"SAOEU/TOE": "cytometer",
"SAOEU/TOE/PHRAS": "cytoplasmic",
"SAOEU/TOE/PHAOE": "cytometer",
"SAOEU/TOES": "cytosis",
"SAOEU/TOPL": "cytometer",
"SAOEU/KWRA": "sialorrhea",
"SAOEU/KWRA/HROR/KWRAOE": "sialorrhea",
"SAOEU/KWRA/HROR": "sialorrhea",
"SAOEU/KWRO/TPHAR": "sayonara",
"SAOEU/KWRO": "sayonara",
"SAOEU/KWROE/TPHAR": "sayonara",
"SAOEU/KWROE": "sayonara",
"SAOEU/KWREPB/TEU": "scientific",
"SAOEU/KWREPB": "scienter",
"SAOEU/KWREPB/TEUF": "scientifically",
"SAOEU/KHRA": "cyclable",
"SAOEU/KHROE": "cyclomen",
"SAOEU/KHROEP": "cyclopean",
"SAOEU/KHAOEU": "psychiatry",
"SAOEU/KHAOEU/KWRA": "psychiatrist",
"SAOEU/KHAOEU/KWRAT": "psychiatry",
"SAOEU/KHAOEUT": "psychiatry",
"SAOEU/KHO": "psychologist",
"SAOEU/KHO/HRO": "psychologically",
"SAOEU/KHO/HRO/SKWREUBG": "psychologically",
"SAOEU/KHOE/PA": "psychopathic",
"SAOEU/KHOE": "psychoanalyze",
"SAOEU/KHOE/A/TPHA": "psychoanalyze",
"SAOEU/KHOE/A": "psychoanalyze",
"SAOEU/KHOE/APB": "psychoanalyze",
"SAOEU/KHOE/APBL": "psychoanalyze",
"SAOEU/KHOL": "psychologist",
"SAOEU/KHE/TKE": "psychedelic",
"SAOEU/KHE": "psychedelic",
"SAOEU/KHEU/KWRA": "psychiatric",
"SAOEU/KHEU": "psychiatric",
"SAOEU/KHEU/KWRAT": "psychiatric",
"SAOEU/KAOEU": "psychiatry",
"SAOEU/KAOEU/KWRA": "psychiatrist",
"SAOEU/KAOEU/KWRAT": "psychiatry",
"SAOEU/KAOEUT": "psychiatry",
"SAOEU/KO/HRO": "psychologies",
"SAOEU/KOE/PA": "psychopathic",
"SAOEU/KOE/A/TPHA": "psychoanalyze",
"SAOEU/KOE/A": "psychoanalyze",
"SAOEU/KOE/APB": "psychoanalyze",
"SAOEU/KOE/APBL": "psychoanalyze",
"SAOEU/KOE/ABG": "psychoactive",
"SAOEU/KOL": "psychologies",
"SAOEU/KE/TKAOE/HRAOE": "psychedelia",
"SAOEU/KE/TKAOE": "psychedelia",
"SAOEU/KE": "psychedelic",
"SAOEU/KE/TKAOEL": "psychedelia",
"SAOEU/KE/TKE": "psychedelic",
"SAOEU/KEU/KWRA": "psychiatric",
"SAOEU/KEU": "psychiatric",
"SAOEU/KEU/KWRAT": "psychiatric",
"SAOEU/PHUL/TA/TPHAOE": "simultaneity",
"SAOEU/PHUL/TA": "simultaneity",
"SAOEU/PHUL": "simultaneous",
"SAOEU/PHUL/TA/TPHAOE/KWREU": "simultaneity",
"SAOEU/PHUL/TA/TPHAEU": "simultaneity",
"SAOEU/PHUL/TA/TPHAEU/KWREU": "simultaneity",
"SAOEU/PHUL/TAEU/TPHAOE": "simultaneous",
"SAOEU/PHUL/TAEU": "simultaneous",
"SAOEU/PHUL/TAEUPB": "simultaneous",
"SAOEU/PHULT/TPHAEU": "simultaneity",
"SAOEU/PHULT": "simultaneity",
"SAOEU/HROR/KWRAOE": "sialorrhea",
"SAOEU/HROR": "sialorrhea",
"SAOEUP": "cypress",
"SAOEUPB/SOEU": "sinusoidal",
"SAOEUPB/TEU": "scientific",
"SAOEUPB/TEUF": "scientifically",
"SAOEUBG/TKAOEL": "psychedelia",
"SAOEUBG/TKE": "psychedelic",
"SAOEUBG/KWRA": "psychiatric",
"SAOEUBG/KWRAT": "psychiatric",
"SAOEUBG/HRA": "cyclable",
"SAOEUBG/HRO/SKWREU": "psychological",
"SAOEUBG/HRO": "psychologic",
"SAOEUBG/HROE": "cyclomen",
"SAOEUBG/HROEP": "cyclopean",
"SAOEUBG/HROPBLG": "psychological",
"SAOEUL": "silage",
"SAOEULS": "silestone",
"SAOEUT/KEU/TPHAOE": "cytokinesis",
"SAOEUT/KEU": "cytokinesis",
"SAOEUS": "seismic",
"SAOEUS/TKPWRAF": "seismography",
"SAOEUS/PHO/HRO": "seismologist",
"SAOEUS/PHOE": "seismograph",
"SAOEUS/PHORG": "seismography",
"SAOEUS/PHOL": "seismologist",
"SAOEUD/SA*D": "sidesaddle",
"SAOER/KWRAL/AOEUZ": "serialization",
"SAOERB": "seizures",
"SAOU/SRE": "souvenirs",
"SAOU/SAOEU": "suicidality",
"SAOU/TKOE/SAOEU": "pseudoscience",
"SAOU/TKOE/PHOE": "pseudomonal",
"SAOU/TPHA": "tsunami",
"SAOU/TPREU": "sufrito",
"SAOU/TPEU": "sufficit",
"SAOU/PRA/KAOEU/KWRAS/PHA": "suprachiasmatic",
"SAOU/PRA/KAOEU/KWRAS": "suprachiasmatic",
"SAOU/PRA/KAOEU": "suprachiasmatic",
"SAOU/PRA/OR/PWEU": "supraorbital",
"SAOU/PRA/OR": "supraorbital",
"SAOU/PRA/ORBT": "supraorbital",
"SAOU/PRE/PHA": "supremacist",
"SAOU/PRE": "supremacy",
"SAOU/PREPL": "supremacist",
"SAOU/PAOER": "superiors",
"SAOU/POER/KWROR": "superiority",
"SAOU/POER": "superiority",
"SAOU/PEU/TPHAEU": "supinator",
"SAOU/PEU": "supinate",
"SAOU/PER/STRUBG": "superstructure",
"SAOU/PER/SO": "supersonic",
"SAOU/PER/SEPB/SEU": "supersensitive",
"SAOU/PER/SEPB": "supersensitive",
"SAOU/PER/SEPBS": "supersensitive",
"SAOU/PER/TPHA": "supernatant",
"SAOU/PER/TPHAOU/PHER/KWRAEUR": "supernumerary",
"SAOU/PER/TPHAOU/PHER": "supernumerary",
"SAOU/PER/TPHAOU": "supernumerary",
"SAOU/PER/TPHAOUPL/RAEUR": "supernumerary",
"SAOU/PER/TPHAOUPL": "supernumerary",
"SAOU/PER/TPHAEU": "supernatant",
"SAOU/PER/TPHAFP": "supernatural",
"SAOU/PER/TPHAT": "supernatural",
"SAOU/PER/TPHOE": "supernova",
"SAOU/PER/TPEU": "superficiality",
"SAOU/PER/TPEURB": "superficiality",
"SAOU/PER/PHAR": "supermarkets",
"SAOU/PER/PHO": "supermodel",
"SAOU/PER/HRA": "superlative",
"SAOU/PER/EUPB/TEPB": "superintendents",
"SAOU/PER/EUPB": "superintendents",
"SAOU/PER/EUPL": "superimpose",
"SAOU/WEU/SAOEU/TKA/HREU": "suicidality",
"SAOU/WEU/SAOEU/TKA": "suicidality",
"SAOU/WEU/SAOEU": "suicidality",
"SAOU/WEU": "suicides",
"SAOUF": "souffle",
"SAOUR/KWRA": "suramin",
"SAOURP/STRUBG": "superstructure",
"SAOURP/SO": "supersonic",
"SAOURP/SEPB/SEU": "supersensitive",
"SAOURP/SEPB": "supersensitive",
"SAOURP/SEPBS": "supersensitive",
"SAOURP/TPHA": "supernatant",
"SAOURP/TPHAOU/PHER/KWRAEUR": "supernumerary",
"SAOURP/TPHAOU/PHER": "supernumerary",
"SAOURP/TPHAOU": "supernumerary",
"SAOURP/TPHAOUPL/RAEUR": "supernumerary",
"SAOURP/TPHAOUPL": "supernumerary",
"SAOURP/TPHAEU": "supernatant",
"SAOURP/TPHAFP": "supernatural",
"SAOURP/TPHAT": "supernatural",
"SAOURP/TPHOE": "supernova",
"SAOURP/TPEU": "superficiality",
"SAOURP/TPEURB": "superficiality",
"SAOURP/KAOEU/KWRAS/PHA": "suprachiasmatic",
"SAOURP/KAOEU/KWRAS": "suprachiasmatic",
"SAOURP/KAOEU": "suprachiasmatic",
"SAOURP/KAOEUS/PHA": "suprachiasmatic",
"SAOURP/KAOEUS": "suprachiasmatic",
"SAOURP/PHAR": "supermarkets",
"SAOURP/PHO": "supermodel",
"SAOURP/HRA": "superlative",
"SAOURP/EUPB/TEPB": "superintendents",
"SAOURP/EUPB": "superintendents",
"SAOURP/EUPL": "superimpose",
"SAOUP/TPHAEU": "supinator",
"SAOUP/RA/KAOEU/KWRAS/PHA": "suprachiasmatic",
"SAOUP/RA/KAOEU/KWRAS": "suprachiasmatic",
"SAOUP/RA/KAOEU": "suprachiasmatic",
"SAOUP/RA/OR/PWEU": "supraorbital",
"SAOUP/RA/OR": "supraorbital",
"SAOUP/RA/ORBT": "supraorbital",
"SAOUP/RE/PHA": "supremacist",
"SAOUP/RE": "supremacist",
"SAOUP/REPL": "supremacist",
"SAOUD/SAOEU": "pseudoscience",
"SA*/S*EU": "tzatziki",
"SA*": "tzatziki",
"SA*/SEU": "tzatziki",
"SA*EU": "zeta",
"SA*EUPB": "zaniness",
"SA*PB": "zany",
"SA*PBG/TWAEUR": "sanctuary",
"SA*PBG/TEU": "sanctimonious",
"SA*PBG/TEU/TPEU": "sanctification",
"SA*PBG/TEU/PHOE": "sanctimony",
"SA*PBG/TEU/PHOEPB": "sanctimonious",
"SA*PBG/KHAOU/WAEUR": "sanctuary",
"SA*PBG/KHAOU": "sanctuary",
"SA*PBGT/TPEU": "sanctification",
"SA*PBGT/PHOE": "sanctimony",
"SA*PBGT/PHOEPB": "sanctimonious",
"SA*PBD/PWA*G": "sandbagging",
"SA*PBD": "sandbagging",
"SA*PL/PWOE": "zamboni",
"SAE/WA*": "seawater",
"SAE/WA*U": "seawater",
"SAE/WO*RT": "seaworthy",
"SAEU/SOR": "savorily",
"SAEU/TKO/PHA/SO": "sadomasochist",
"SAEU/TKO/PHA": "sadomasochist",
"SAEU/TKO": "sadomasochist",
"SAEU/TKO/PHA/SOE": "sadomasochist",
"SAEU/TKO/PHAS": "sadomasochist",
"SAEU/TKOE/PHA/SO": "sadomasochist",
"SAEU/TKOE/PHA": "sadomasochist",
"SAEU/TKOE/PHA/SOE": "sadomasochist",
"SAEU/TKOE/PHAS": "sadomasochist",
"SAEU/PEU": "sapiens",
"SAEU/HREU/TPHEU": "salinity",
"SAEU/HREU": "salience",
"SAEU/HREU/KWREPB": "saliency",
"SAEUP": "sapiens",
"SAEUPBG": "cinquain",
"SAEUPBT/HREU": "saintliness",
"SAEUL/KWREPB": "saliency",
"SAEUD/PHA/SO": "sadomasochist",
"SAEUD/PHA": "sadomasochist",
"SAEUD": "sadomasochist",
"SAEUD/PHA/SOE": "sadomasochist",
"SAEUD/PHAS": "sadomasochist",
"SAEPLS": "seamstress",
"SAELS": "saleslady",
"SAELS/P*ER": "salesperson",
"SAELS/WO*": "saleswomen",
"SAELS/W*EU": "saleswomen",
"SAU/SREUPB": "sauvignon",
"SAU/WER/PWRA": "sauerbraten",
"SAUFPB": "sauvignon",
"SAUR/PWRA": "sauerbraten",
"SAUL": "psalm",
"SAULT/PAO*E": "saltpeter",
"SAULT/PAOE": "saltpeter",
"SAULT/WA*": "saltwater",
"SAULT/WA*U": "saltwater",
"SAF/HROU": "safflower",
"SAFP": "saturated",
"SAFPBLG/*ER": "savagery",
"SAR": "sarcophagus",
"SAR/TKO": "sardonic",
"SAR/TKOPB": "sardonically",
"SAR/KAFT": "sarcastically",
"SAR/KAS": "sarcastic",
"SAR/KO/TPA*": "sarcophagus",
"SAR/KO/HRE": "sarcolemma",
"SAR/KOE/HRE": "sarcolemma",
"SAR/KOF": "sarcophagus",
"SARP/TP*EU": "saprophytic",
"SARP": "saprophytic",
"SARBG/HRE": "sarcolemma",
"SAP/TKEU": "sapadilla",
"SAP/RO/TP*EU": "saprophytic",
"SAP/RO": "saprophytic",
"SAP/ROE/TP*EU": "saprophytic",
"SAP/ROE": "saprophytic",
"SAPB/TKPWREU": "sangrillo",
"SAPB": "sandwich",
"SAPB/TAEUR": "sanitarium",
"SAPB/TAER/KWREU": "sanitarily",
"SAPB/TOR": "sanatorium",
"SAPBG/TKPWREU": "sangrillo",
"SAPBG/TWAEUR": "sanctuary",
"SAPBG/TEU": "sanctimonious",
"SAPBG/TEU/TPEU": "sanctification",
"SAPBG/TEU/PHOE": "sanctimony",
"SAPBG/TEU/PHOEPB": "sanctimonious",
"SAPBG/KHAOU/WAEUR": "sanctuary",
"SAPBG/KHAOU": "sanctuary",
"SAPBG/WEU/TPHAEUR": "sanguinary",
"SAPBG/WEU": "sanguinary",
"SAPBG/WEUPB/KWRAEUR": "sanguinary",
"SAPBG/REU": "sangrillo",
"SAPBGT": "sanctimony",
"SAPBGT/PHOE": "sanctimony",
"SAPBGT/PHOEPB": "sanctimony",
"SAB": "saboteur",
"SABG/REU": "sacrilegious",
"SABG/REUS": "sacristy",
"SAL/SRA": "salivatory",
"SAL": "salping",
"SAL/SRA/TOR": "salivatory",
"SAL/SRAEUR": "salivary",
"SAL/SRAR": "salvarsan",
"SAL/SREU": "salvia",
"SAL/TPHEU": "salinization",
"SAL/TA": "saltatory",
"SAL/TA/TOR": "saltatory",
"SAL/TAEUR": "salutary",
"SAL/TAR": "salutary",
"SAL/PHAPB": "salamanders",
"SAL/PHO/TPHE": "salmonella",
"SAL/PHO": "salmonella",
"SAL/RAOE": "sialorrhea",
"SALT/TOR": "saltatory",
"SALT/PAO*E": "saltpeter",
"SALT/PAOE": "saltpeter",
"SALT/WA*": "saltwater",
"SALT/WA*U": "saltwater",
"SATS": "satisfaction",
"SATS/TPABG": "satisfactory",
"SATS/TPABG/TOR": "satisfactory",
"SO/SREU": "soviet",
"SO/TKO": "sodomist",
"SO/TKEU/SEU/HRAEUR": "codicillary",
"SO/TKEU/SEU": "codicillary",
"SO/TKEU": "codicillary",
"SO/TPHO": "sonograms",
"SO/TPHO/TKPWRAF": "sonography",
"SO/TPHOR": "sonorous",
"SO/TPHORG": "sonography",
"SO/TPO*": "sophomoric",
"SO/TP*EUFT": "sophisticated",
"SO/TP*EUS/TEU": "sophisticated",
"SO/TP*EUS": "sophisticated",
"SO/PHA/TAOEUZ": "somatization",
"SO/PHA": "somatic",
"SO/PHAT": "somatization",
"SO/PHER": "somersault",
"SO/PRA": "soprano",
"SO/PRAU": "soprano",
"SO/POR/KWREU": "soporific",
"SO/POR": "soporific",
"SO/HRAOU": "solubility",
"SO/HRAEUR/KWREU": "solarium",
"SO/HRAEUR": "solarium",
"SO/HRE": "solenoids",
"SO/HREU/SEU": "solicitors",
"SO/HREU": "soliloquize",
"SO/HREU/TKAEUR": "solidarity",
"SO/HREU/TKAEUR/KWREU": "solidarity",
"SO/HREU/TAR": "solitarius",
"SO/HREU/HRO": "soliloquize",
"SO/HREUP": "solipsist",
"SO/HREUL": "soliloquy",
"SO/HREUS": "solicitors",
"SO/HREPL/TPHEU": "solemnities",
"SO*/TPHAOU": "zonulopathy",
"SO*": "zonules",
"SO*/TPHAOU/HRO/PA": "zonulopathy",
"SO*/TPHAOU/HRO": "zonulopathy",
"SO*E/TKEU/KWRA": "zodiacal",
"SO*E/TKEU": "zodiac",
"SO*E/TPHAOU": "zonular",
"SO*E/WE": "zoetrope",
"SO*EU/SEU": "zoysia",
"SO*EU": "zoysia",
"SO*EUS": "zoysia",
"SO*ED/KWRA": "zodiacal",
"SO*ED": "zodiac",
"SO*UT/W*EFT/*ER": "southwesterly",
"SO*UT/W*ES/TER": "southwesterner",
"SO*UT/W*ES": "southwestern",
"SO*UT/AO*EFT/*ER": "southeasterly",
"SO*UT/AO*ES": "southeastern",
"SO*PB/KWRAOU/HRO/PA": "zonulopathy",
"SO*PB/KWRAOU/HRO": "zonulopathy",
"SO*PB/KWRAOU": "zonulopathy",
"SO*PB/HROP": "zonulopathy",
"SO*S": "zoster",
"SOE/SREU": "soviet",
"SOE/SAOEU": "societies",
"SOE/SAOEU/KWRE": "societies",
"SOE/SEU": "sociology",
"SOE/SEU/KWRO/PA": "sociopathic",
"SOE/SEU/KWRO/HRO": "sociologist",
"SOE/SEU/KWROE/PA": "sociopathic",
"SOE/SEU/KWROL": "sociologist",
"SOE/TKAL": "sodality",
"SOE/TKEU": "sodium",
"SOE/TPHA": "sonata",
"SOE/TP*EUS/TEU": "sophisticate",
"SOE/TP*EUS": "sophisticate",
"SOE/PWRAOEU": "sobriety",
"SOE/PWRAOEU/KWRE": "sobriety",
"SOE/PHA/TAOEUZ": "somatization",
"SOE/PHAT": "somatization",
"SOE/PRA": "soprano",
"SOE/PRAU": "soprano",
"SOE/HRAEUR/KWREU": "solarium",
"SOE/HRAEUR": "solarium",
"SOE/HRE": "solenoids",
"SOE/HREU/SEU": "solicitors",
"SOE/HREU": "solicited",
"SOE/HREUL": "soliloquy",
"SOE/HREUS": "solicitors",
"SOE/HREPL/TPHEU": "solemnities",
"SOE/HREPL": "solemnities",
"SOEF": "soviet",
"SOEB/RAOEU": "sobriety",
"SOEB": "sobriety",
"SOEB/RAOEU/KWRE": "sobriety",
"SOELS": "solstice",
"SOES/KWRA": "associative",
"SOES": "sociological",
"SOES/KWRO/PA": "sociopathic",
"SOES/KWRO/HRO/SKWREU": "sociological",
"SOES/KWRO/HRO": "sociologically",
"SOES/KWRO/HRO/SKWREUBG": "sociologically",
"SOES/KWRO/HROPBLG": "sociological",
"SOES/KWRO/AOE/KO/TPHO": "socioeconomic",
"SOES/KWRO/AOE/KO": "socioeconomic",
"SOES/KWRO/AOE": "socioeconomic",
"SOES/KWRO/AOEBG/TPHO": "socioeconomic",
"SOES/KWRO/AOEBG": "socioeconomic",
"SOES/KWRO/AOEBG/TPHOPL": "socioeconomic",
"SOES/KWRO/E/KO/TPHO": "socioeconomic",
"SOES/KWRO/E/KO": "socioeconomic",
"SOES/KWRO/E": "socioeconomic",
"SOES/KWRO/EBG/TPHO": "socioeconomic",
"SOES/KWRO/EBG": "socioeconomic",
"SOES/KWRO/EBG/TPHOPL": "socioeconomic",
"SOES/KWROE/PA": "sociopathic",
"SOES/KWROE/HRO/SKWREU": "sociological",
"SOES/KWROE/HRO": "sociologically",
"SOES/KWROE/HRO/SKWREUBG": "sociologically",
"SOES/KWROE/HROPBLG": "sociological",
"SOES/KWROE/AOE/KO/TPHO": "socioeconomic",
"SOES/KWROE/AOE/KO": "socioeconomic",
"SOES/KWROE/AOE": "socioeconomic",
"SOES/KWROE/AOEBG/TPHO": "socioeconomic",
"SOES/KWROE/AOEBG": "socioeconomic",
"SOES/KWROE/AOEBG/TPHOPL": "socioeconomic",
"SOES/KWROE/E/KO/TPHO": "socioeconomic",
"SOES/KWROE/E/KO": "socioeconomic",
"SOES/KWROE/E": "socioeconomic",
"SOES/KWROE/E/KOE/TPHO": "socioeconomic",
"SOES/KWROE/E/KOE": "socioeconomic",
"SOES/KWROE/EBG/TPHO": "socioeconomic",
"SOES/KWROE/EBG": "socioeconomic",
"SOES/KWROE/EBG/TPHOPL": "socioeconomic",
"SOES/KWROL": "sociologist",
"SOES/HRO/SKWREU": "sociological",
"SOES/HRO": "sociologically",
"SOES/HRO/SKWREUBG": "sociologically",
"SOES/HROPBLG": "sociological",
"SOED": "sodium",
"SOU/THER": "southerner",
"SOUPBD/A*": "soundalike",
"SOR/KWRA/TPE": "sorafenib",
"SOR/KWRA": "sorafenib",
"SOR/KWRAF": "sorafenib",
"SOR/KWROR": "sorority",
"SOR/KWROR/KWREU": "sorority",
"SOR/PWEU": "sorbitol",
"SORPL": "somersault",
"SORG": "sorghum",
"SORT/SAO*EUTD": "shortsightedness",
"SORS/*ER": "sorcerer",
"SOPB/TKPWRAF": "sonography",
"SOPBS/TPH": "sons-in-law",
"SOPBS": "sons-in-law",
"SOPL/TPHAPL": "somnambulist",
"SOPL/TPHAPL/PWAOU": "somnambulist",
"SOPL/TPHO": "somnolence",
"SOPL/TPHOE": "somnolence",
"SOPL/TPHEU": "somnia",
"SOPL/PWRER": "sombrero",
"SOPL/PWO*": "somebodies",
"SOPL/PWO*D": "somebodies",
"SOPL/HREU/HRO": "somniloquy",
"SOPL/HREU": "somniloquy",
"SOPL/HREUL": "somniloquy",
"SOPL/*ER": "somersault",
"SOL/SRA": "solvability",
"SOL/SREPB": "solvency",
"SOL/SREPBS": "solvency",
"SOLS": "solstice",
"SOG/KWREU": "sogginess",
"SOG/-FR": "soggiest",
"SOS/TPHOR": "sonorous",
"SOS": "sonorous",
"SOD/SEU": "codicillary",
"SOD/KWREU/SEUL": "codicillary",
"SOD/KWREU": "codicillary",
"S*E": "zealous",
"S*E/PE": "zeppelin",
"S*EUR/KOEPB": "zirconium",
"S*EUR": "zircon",
"S*EUPB": "zinnia",
"S*EUPBG/RO": "synchronous",
"S*EUPBG/RO/TPHEU/SEU": "synchronicity",
"S*EUPBG/RO/TPHEUS": "synchronicity",
"S*EUPBG/ROE": "synchronous",
"S*EUPBG/ROE/TPHEU/SEU": "synchronicity",
"S*EUPBG/ROE/TPHEUS": "synchronicity",
"S*EUPBG/ROEPB": "synchrony",
"S*EUPBG/ROPB": "synchrony",
"S*EUPL/THE/TEU": "sympathetically",
"S*EUPL/THE": "sympathetics",
"S*EUPL/THET": "sympathetically",
"S*EUPL/HREU/SEU": "simplicity",
"S*EUPL/HREU/TPEU": "simplification",
"S*EUPL/HREUS": "simplistic",
"S*EUBGS": "sixtieth",
"S*EUL": "zilch",
"S*EUS/A*D": "sysadmin",
"S*EF": "zephyr",
"S*ER": "zeros",
"S*EP": "zeppelin",
"S*U/KHAOE": "zucchini",
"S*U": "zucchini",
"S*U/KHEU": "zucchini",
"S*U/KAOE": "zucchini",
"S*U/KEU": "zucchini",
"S*UPL/TWAEUR": "sumptuary",
"S*UPL/KHAOU/WAEUR": "sumptuary",
"S*UPL/KHAOU": "sumptuary",
"S*ULG/KWREU": "sulkiness",
"SE/SKWRAOU": "sedulous",
"SE": "cements",
"SE/SA": "sesamoid",
"SE/SAEUR": "cesareans",
"SE/SAR": "cesareans",
"SE/S*UR": "caesura",
"SE/SUR": "caesura",
"SE/TKA": "sedatives",
"SE/TKAOU": "sedulous",
"SE/TKEU": "sediments",
"SE/TKEU/-PLT/KWRAEUR": "sedimentary",
"SE/TKEURB": "seditious",
"SE/TKEPB/TAEUR": "sedentary",
"SE/TKEPB": "sedentarily",
"SE/TKEPBD": "sedentary",
"SE/TKUBG": "seductiveness",
"SE/TKUBGT": "seductiveness",
"SE/TPHAEUR": "scenario",
"SE/TPHAEUR/KWREU": "scenario",
"SE/TPHAR": "scenario",
"SE/TPA*/HRO": "cephalopod",
"SE/TPA*": "cephalopod",
"SE/TER": "cetera",
"SE/KWOEU": "sequoia",
"SE/KWE": "sequelae",
"SE/KWEU": "sequitur",
"SE/KWEFT": "sequestrin",
"SE/KWEPB": "sequential",
"SE/KWEPBS": "sequentia",
"SE/KWES": "sequesters",
"SE/KRAOE": "secretin",
"SE/KRAOE/TOR": "secretory",
"SE/KAOU": "secular",
"SE/KOPB/TKAEUR": "secondary",
"SE/KOPB": "secondarily",
"SE/KOPBD/KWRAEUR": "secondary",
"SE/KUR": "securely",
"SE/KUPB": "secundum",
"SE/PHA": "semaphores",
"SE/PHAPB": "semantics",
"SE/PHAPBT": "semantically",
"SE/PHO/HREU": "semolina",
"SE/PHO": "semolina",
"SE/PHOE/HREU": "semolina",
"SE/PHOE": "semolina",
"SE/PHE/TAEUR": "cemetery",
"SE/PHE": "cemetery",
"SE/PHE/TER": "cemetery",
"SE/PHEU/TPHAEUR": "seminary",
"SE/PHEU/APB/KWRAOU": "semiannual",
"SE/PHEU/APB": "semiannual",
"SE/PHES": "semesters",
"SE/PAR/KWRA": "separability",
"SE/PAR": "separated",
"SE/PAR/KWRAEU": "separator",
"SE/PUL": "sepulchers",
"SE/HRAOE/TPHEU": "selenium",
"SE/HRAOE": "selenium",
"SE/HRAOEPB": "selenium",
"SE/HRAOU": "cellulose",
"SE/HRE/SKWREU": "selegiline",
"SE/HRE": "celebrity",
"SE/HRE/TPHEU": "selenium",
"SE/HRE/PWRA": "celebratory",
"SE/HRE/PWRA/TOR": "celebratory",
"SE/HRE/PWREU": "celebrity",
"SE/HREU/PWA": "celibacy",
"SE/HREU": "celibate",
"SE/HREFT": "celestial",
"SE/HREPB": "selenium",
"SE/HREPBLG": "selegiline",
"SE/HREB/REU": "celebrity",
"SE/HREBG": "selectivity",
"SE/HRES/KHEU": "celestial",
"SE/HRES": "celestial",
"SEU/SRAL": "chivalric",
"SEU/SREU": "civilize",
"SEU/SREUL/KWRAOEUZ": "civilization",
"SEU/S*UR": "caesura",
"SEU/SEUL": "sicilian",
"SEU/SUR": "caesura",
"SEU/TKPWAR": "cigarettes",
"SEU/TKPWEU": "sigilli",
"SEU/TKE/TPHA": "sildenafil",
"SEU/TKE": "sildenafil",
"SEU/TPHA": "cinnamon",
"SEU/TPHAP": "synaptic",
"SEU/TPHO/TPHEU": "synonymous",
"SEU/TPHO": "synonyms",
"SEU/TPHOE": "synonyms",
"SEU/TPHOEF": "synovial",
"SEU/TPHOP": "synoptic",
"SEU/TPHOPB": "synonymous",
"SEU/TPHOS/TOE": "synostosis",
"SEU/TPHOS": "synostosis",
"SEU/TPHE": "cinema",
"SEU/TPHE/PHA/TO": "cinematographics",
"SEU/TPHE/PHA/TO/TKPWRAF": "cinematographics",
"SEU/TPHE/PHA/TORG": "cinematography",
"SEU/TPHE/PHA/TOG/RA": "cinematographer",
"SEU/TPHE/PHA/TOG": "cinematographer",
"SEU/TPHEU": "cynical",
"SEU/TPHEUFT": "sinistra",
"SEU/TPHEUS": "sinister",
"SEU/TPHER": "synergistic",
"SEU/TPHER/SKWRE": "synergetic",
"SEU/TPHER/SKWREUS": "synergistic",
"SEU/TPHES/THAOE/SEU": "synesthesia",
"SEU/TPHES/THAOE": "synesthesia",
"SEU/TPHES": "synesthesia",
"SEU/TPHES/THAOES": "synesthesia",
"SEU/TP*EU/HREU": "syphilitic",
"SEU/TP*EU": "syphilis",
"SEU/TA": "citadels",
"SEU/KWRER": "sierra",
"SEU/KWRES": "siesta",
"SEU/KHAOU": "situated",
"SEU/KA/TREU": "cicatricial",
"SEU/KA/TREURB": "cicatricial",
"SEU/KAEU": "cicatrices",
"SEU/KO": "sycophant",
"SEU/KOE": "sycophant",
"SEU/PWEU": "sibilance",
"SEU/PHAOU/HRA": "simulacrum",
"SEU/PHAOU": "simulates",
"SEU/PHAOU/HRAEU": "simulator",
"SEU/PHE": "symmetric",
"SEU/PHEU": "similitude",
"SEU/PHEU/HRAEUR": "similarities",
"SEU/PHEU/HRAEUR/KWREU": "similarities",
"SEU/PHEU/HREU": "similitude",
"SEU/PHERT": "symmetrical",
"SEU/PHET": "symmetric",
"SEU/PHUL/TEU/TPHAEU": "simultaneity",
"SEU/PHUL/TEU": "simultaneity",
"SEU/PHUL": "simultaneity",
"SEU/HRA": "syllables",
"SEU/HRA/PWEU/TPEU": "syllabification",
"SEU/HRAPB": "cilantron",
"SEU/HRO": "silhouette",
"SEU/HROE": "silhouette",
"SEU/HREU/KOE": "silicosis",
"SEU/HREUPB/TKREU": "cylindrical",
"SEU/HREUPB": "cylinders",
"SEU/HREUPB/TKREUBG": "cylindrically",
"SEU/HREPB": "silentio",
"SEUF/HREU": "syphilitic",
"SEUFP": "situated",
"SEUFPL": "symphonic",
"SEUFT/PHA": "systematize",
"SEUR/KWRA": "sriracha",
"SEUR/KWUPL": "circumference",
"SEUR/KAOU/HRA": "circulatory",
"SEUR/KAOU": "circulars",
"SEUR/KAOU/HRA/TOR": "circulatory",
"SEUR/KAOU/HRAEUR": "circularity",
"SEUR/KAOU/HRAEUR/KWREU": "circularity",
"SEUR/KAEUD": "circadian",
"SEUR/KUPL/STAPB": "circumstantial",
"SEUR/KUPL": "circumorbital",
"SEUR/KUPL/STAPB/SHEU": "circumstantiation",
"SEUR/KUPL/SRAL": "circumvallate",
"SEUR/KUPL/SRO": "circumvolution",
"SEUR/KUPL/SROE": "circumvolution",
"SEUR/KUPL/SREPB/TREU/KAOU": "circumventricular",
"SEUR/KUPL/SREPB/TREU": "circumventricular",
"SEUR/KUPL/SREPB": "circumventricular",
"SEUR/KUPL/TPHA/SREU": "circumnavigate",
"SEUR/KUPL/TPHA": "circumnavigate",
"SEUR/KUPL/TPHAF": "circumnavigate",
"SEUR/KUPL/OR/PWEU": "circumorbital",
"SEUR/KUPL/OR": "circumorbital",
"SEUR/KUPL/ORBT": "circumorbital",
"SEURPB/SKWRE": "synergetic",
"SEURBG/SRAL": "circumvallate",
"SEURBG/SREPB/TREU/KAOU": "circumventricular",
"SEURBG/SREPB/TREU": "circumventricular",
"SEURBG/SREPB": "circumventricular",
"SEURBG/TPHAF": "circumnavigate",
"SEURBG/HRA": "circulatory",
"SEURBG/ORBT": "circumorbital",
"SEURBGS": "circumstances",
"SEUPB/SKWRAOE": "syngeneic",
"SEUPB/SKWRE": "synergetic",
"SEUPB/SER": "sincerity",
"SEUPB/TKPWAOU/HRAEUR": "singularity",
"SEUPB/TKPWAOU": "singularly",
"SEUPB/TKPWAOU/HRAEUR/KWREU": "singularity",
"SEUPB/TKE": "syndetic",
"SEUPB/TKEU": "syndicates",
"SEUPB/TPHO": "synonymic",
"SEUPB/TPHEU": "synonymic",
"SEUPB/THAOE": "synthesist",
"SEUPB/THE": "synthetics",
"SEUPB/THET": "synthetically",
"SEUPB/TABG/TEU": "syntactical",
"SEUPB/TABG": "syntactic",
"SEUPB/TABGT": "syntactical",
"SEUPB/TE/TEUBG": "synthetically",
"SEUPB/TE": "synthetically",
"SEUPB/TEU": "scintillate",
"SEUPB/KRO": "synchronous",
"SEUPB/KRO/TPHEU/SEU": "synchronicity",
"SEUPB/KRO/TPHEUS": "synchronicity",
"SEUPB/KROE": "synchronous",
"SEUPB/KROE/TPHEU/SEU": "synchronicity",
"SEUPB/KROE/TPHEUS": "synchronicity",
"SEUPB/KROEPB": "synchrony",
"SEUPB/KROPB": "synchrony",
"SEUPB/KO": "syncopate",
"SEUPB/KOE": "syncopate",
"SEUPB/PHA/TO": "cinematographics",
"SEUPB/PHA/TO/TKPWRAF": "cinematographics",
"SEUPB/PHA/TORG": "cinematographer",
"SEUPB/PHA/TOG": "cinematographer",
"SEUPB/PHA/TOG/RA": "cinematographer",
"SEUPBL": "cylinder",
"SEUPBG/TKPWAOU/HRAEUR": "singularity",
"SEUPBG/TKPWAOU": "singularly",
"SEUPBG/TKPWAOU/HRAEUR/KWREU": "singularity",
"SEUPBG/KWRAOU/HRAEUR": "singularity",
"SEUPBG/KWRAOU": "singularly",
"SEUPBG/KWRAOU/HRAEUR/KWREU": "singularity",
"SEUPBG/KRO": "synchronous",
"SEUPBG/KRO/TPHEU/SEU": "synchronicity",
"SEUPBG/KRO/TPHEU": "synchronicity",
"SEUPBG/KRO/TPHEUS": "synchronicity",
"SEUPBG/KROE": "synchronous",
"SEUPBG/KROE/TPHEU/SEU": "synchronicity",
"SEUPBG/KROE/TPHEU": "synchronicity",
"SEUPBG/KROE/TPHEUS": "synchronicity",
"SEUPBG/KROEPB": "synchrony",
"SEUPBG/KROPB": "synchrony",
"SEUPBG/KO": "syncopate",
"SEUPBG/KOE": "syncopate",
"SEUPBT": "scintillate",
"SEUPBS/THAOE": "synesthesia",
"SEUPBS/THAOERB": "synesthesia",
"SEUPBD": "syndicates",
"SEUPL/TPO*": "symphonic",
"SEUPL/TPO*E": "symphony",
"SEUPL/TPO*PB": "symphonic",
"SEUPL/PWO": "symbolic",
"SEUPL/PWO/HRO": "symbology",
"SEUPL/PWO/HREU": "symbolically",
"SEUPL/PWO/HREU/KAL": "symbolically",
"SEUPL/PWOE": "symbolism",
"SEUPL/PWEU/KWRO": "symbiotic",
"SEUPL/PWEU": "symbiotically",
"SEUPL/PWEU/KWRO/TEU": "symbiotically",
"SEUPL/PWEU/KWROE": "symbiotic",
"SEUPL/PWEU/KWROT": "symbiotically",
"SEUPL/PWEUD": "cymbidium",
"SEUPL/PHREU/SEU": "simplicity",
"SEUPL/PHREU/TPEU": "simplification",
"SEUPL/PHREUS": "simplistic",
"SEUPL/PA": "simpatico",
"SEUPL/PA/THE": "sympathetics",
"SEUPL/PA/THET": "sympathetically",
"SEUPL/PA/TEU": "simpatico",
"SEUPL/PAT": "simpatico",
"SEUPL/POES": "symposium",
"SEUPL/HRA": "simulacrum",
"SEUPL/HRAEU": "simulator",
"SEUBG/TREU": "cicatricial",
"SEUBG/TREURB": "cicatricial",
"SEUBG/KWREPB": "sickener",
"SEUBG/HREU": "cyclical",
"SEUBGT/SE": "sixty-seven",
"SEUBGS/TEU/SE": "sixty-seven",
"SEUL/STA": "cilastatin",
"SEUL/STAT": "cilastatin",
"SEUL/TKEPB": "sildenafil",
"SEUL/KWRAEUR": "ciliary",
"SEUL/KOE": "silicosis",
"SEUG/TPHA": "signatures",
"SEUG/TPHA/TOR": "signatories",
"SEUG/TPHAPB": "signandi",
"SEUG/TPHEU": "significance",
"SEUG/TPHEU/TPEU": "significance",
"SEUG/TPHEUF": "significance",
"SEUG/TOR": "signatories",
"SEUS/TE/PHA": "systematic",
"SEUS/TE": "systemic",
"SEUS/A*D": "sysadmin",
"SEUZ": "sizzles",
"SEF/TKAOE": "self-defense",
"SEF/TKE": "self-defense",
"SEF/TKEU/SEU": "self-discipline",
"SEF/TKEU": "self-discipline",
"SEF/TKEUS": "self-discipline",
"SEF/KOPB": "self-conscious",
"SEF/PRE/SER": "self-preservation",
"SEF/PRE": "self-preservation",
"SEF/PREFRB": "self-preservation",
"SEF/HRO": "cephalopod",
"SEF/RAOEU": "self-righteous",
"SEF/RAOEUT": "self-righteous",
"SEF/RAOU": "sevruga",
"SEF/RE": "self-reliant",
"SEF/RE/TKPWAOU": "self-regulating",
"SEF/RE/HRAOEU": "self-reliant",
"SEF/REG": "self-regulating",
"SEF/EPL/PHROEU": "self-employment",
"SEF/EPL": "self-employed",
"SEFRB/KWREUS/WO*": "servicewomen",
"SEFBG/PAL": "sesquipedalian",
"SEFBG": "sesquipedalian",
"SER/SROE/PHE/KA": "servomechanism",
"SER/SROE/PHE": "servomechanism",
"SER/SROE/PHEBG": "servomechanism",
"SER/SREU": "cervical",
"SER/SREUS/WO*": "servicewomen",
"SER/TPEUF": "certificate",
"SER/TRA": "sertraline",
"SER/TOE": "serotonin",
"SER/TEU": "certificates",
"SER/TEU/TPAOEUB": "certifiably",
"SER/TEU/TPEU": "certificates",
"SER/TEUF": "certificates",
"SER/KWRA/PHEU": "ceramicist",
"SER/KWRAOE": "cerebral",
"SER/KWRAOEB": "cerebral",
"SER/KWRAEU": "seriatim",
"SER/KWRAEURB": "serratia",
"SER/KWRAPL": "ceramicist",
"SER/KWRO/KOPB": "seroconversion",
"SER/KWRO/HRO": "serologic",
"SER/KWRO/HROPBLG": "serological",
"SER/KWRE": "ceremonious",
"SER/KWRE/TPHEU": "serenity",
"SER/KWRE/PHOEPB": "ceremonious",
"SER/KWREU/PHOE/TPHEU": "ceremonious",
"SER/KWREU/PHOE": "ceremonious",
"SER/KWREU": "ceremonious",
"SER/KWREPB/TKEU/PEU": "serendipitous",
"SER/KWREPB/TKEU": "serendipitous",
"SER/KWREPB": "serenity",
"SER/KWREPB/TKEUP": "serendipitous",
"SER/KOPB": "seroconversion",
"SER/PHOE": "ceremony",
"SER/HRO/SKWREU": "serological",
"SER/HRO": "serologic",
"SER/HROPBLG": "serological",
"SERP": "separatist",
"SERPL": "sermonize",
"SERB": "szechuan",
"SERBG/TAEUR": "secretaries",
"SERBG": "secretaries",
"SERG": "segregated",
"SERT/RA": "sertraline",
"SEP/TEU/SAOE/PHEU": "septicemia",
"SEP/TEU/SAOE": "septicemia",
"SEP/TEU": "septicemia",
"SEP/TEU/SAOEPL": "septicemia",
"SEP/TUP": "septuplet",
"SEP/RA": "separatist",
"SEP/RAEU": "separatist",
"SEPB/SEU": "sensical",
"SEPB/SEU/TEU/SREU": "sensitivity",
"SEPB/SEU/TEU": "sensitivity",
"SEPB/TREU/PE": "centripetal",
"SEPB/TREUP": "centripetal",
"SEPB/TREUPT": "centripetal",
"SEPB/TA": "centavo",
"SEPB/TAOE": "centesis",
"SEPB/TOR": "senatorial",
"SEPB/TE/SEU": "centesimi",
"SEPB/TE": "centenary",
"SEPB/TE/TPHAEUR": "centenary",
"SEPB/TEU/PHAOE": "centimeters",
"SEPB/TEU/HREU": "centiliters",
"SEPB/TEPB": "sententious",
"SEPB/TES": "centesimi",
"SEPB/KHUR": "centurion",
"SEPB/-RBL": "sensualism",
"SEPBT/TPHAEUR": "centenarian",
"SEPBS/TEU/SREU": "sensitivity",
"SEPBS/TEU": "sensitivity",
"SEPBS/O*R": "sensorium",
"SEPBS/-RBL/WAL": "sensually",
"SEPL": "semolina",
"SEPL/REU": "semolina",
"SEPT/SAOE/PHEU": "septicemia",
"SEPT/SAOE": "septicemia",
"SEPT": "septicemia",
"SEPT/SAOEPL": "septicemia",
"SEBG/TAEUR/KWREU": "sectarian",
"SEBG/TAEUR": "sectarian",
"SEBG/TAER": "sectarian",
"SEBG/WEU": "sequitur",
"SEBG/RE/TAEUR": "secretaries",
"SEBG/RE": "secretaries",
"SEBGS/TUP": "sextuplet",
"SEBGD/KWRAEUR": "secondary",
"SEL/KWRAOU": "cellulose",
"SEL/PWRA": "celebratory",
"SEL/PWA": "celibacy",
"SELS": "celsius",
"SEG/RE": "segregated",
"SES/TEU": "sestina",
"SES/KWEU/PE/TKAL": "sesquipedalian",
"SES/KWEU/PE": "sesquipedalian",
"SES/KWEU": "sesquipedalian",
"SES/KWEUP/TKAL": "sesquipedalian",
"SES/KWEUP": "sesquipedalian",
"SED/-PLT/KWRAEUR": "sedimentary",
"SU": "surrendered",
"SU/SKWRES": "suggestively",
"SU/SKWRES/U": "suggestively",
"SU/SEPT": "susceptibilities",
"SU/TKOE": "sudoku",
"SU/TPO": "suffocate",
"SU/TPOE": "suffocate",
"SU/TPEU/SHEPB": "sufficiency",
"SU/TPEU": "sufficiency",
"SU/TPEU/SHEPBS": "sufficiency",
"SU/TPEURB/KWREPB": "sufficiency",
"SU/TPEURB": "sufficiency",
"SU/TPEURB/KWREPBS": "sufficiency",
"SU/KAOU": "succulence",
"SU/KU": "succubus",
"SU/PHREU": "supplicate",
"SU/PHAEUR": "summary",
"SU/PHAR": "summaries",
"SU/PRE": "suppressives",
"SU/PO/SEU": "suppositories",
"SU/PO": "supposition",
"SU/PO/SEU/TOR": "suppositories",
"SU/POE": "supposition",
"SU/PEU": "supinate",
"SU/REP": "surreptitious",
"SU/REPB": "surrendered",
"SUF": "sufferer",
"SUF/RA": "suffragette",
"SUFL": "sulfinate",
"SUFT": "sustenance",
"SUR/SKWREU": "surgical",
"SUR/SKWREUBG": "surgically",
"SUR/SRAOEU": "survivors",
"SUR/TKPWA": "surrogacy",
"SUR/TKPWAS": "surrogacy",
"SUR/TPABG": "surfactants",
"SUR/KWRO/TKPWA": "surrogacy",
"SUR/KWRO": "surrogate",
"SUR/KWROE/TKPWA": "surrogacy",
"SUR/KWROE": "surrogate",
"SUR/KWRE/SKWROEUPB": "surrejoinder",
"SUR/KWRE": "surrejoinder",
"SUR/KWREP": "surreptitious",
"SUR/KWREPB": "surrendered",
"SUR/KEUT": "circuitry",
"SUR/RO": "surrogate",
"SUR/ROE": "surrogate",
"SUR/RE/SKWROEUPB": "surrejoinder",
"SUR/RE": "surrebuttal",
"SUR/RE/PWAOU": "surrebutter",
"SUR/RE/PWAOUT": "surrebuttal",
"SUR/REPB": "surrendered",
"SUR/-F": "surfboard",
"SURPBLG/*ER": "surgeries",
"SURB/UR/PWEU": "suburbia",
"SURB/UR": "suburbia",
"SURB": "suburbia",
"SURT": "courtesan",
"SUP/HRE/PHEPB/TAEUR": "supplementary",
"SUP/HRE/PHEPB": "supplementary",
"SUP/HRE": "supplements",
"SUP/HRE/-PLT/KWRAEUR": "supplementary",
"SUP/HREU": "supplicate",
"SUP/HREPLT/KWRAEUR": "supplementary",
"SUP/RE": "suppressives",
"SUPB/TKAO*EU": "sundial",
"SUPB/TREU": "sundrily",
"SUPB/PWO*": "sunbonnet",
"SUPB/PWO*PB": "sunbonnet",
"SUPBD": "soundproofing",
"SUPL/-P/TWAEUR": "sumptuary",
"SUB/STRUBG": "substructures",
"SUB/STRUBGT": "substructures",
"SUB/STAOU/TAOUT": "substitutable",
"SUB/STAOU": "substitutive",
"SUB/STAPB/SHEU": "substantiality",
"SUB/STAPB": "substantial",
"SUB/STAPB/SHEU/KWRAL": "substantiality",
"SUB/STAPBL/-RBL": "substantiality",
"SUB/STEU/TAOU": "substitutive",
"SUB/STEU": "substituent",
"SUB/STEU/KHAOU": "substituent",
"SUB/STEUFP": "substituent",
"SUB/SKWRAOE": "subgenus",
"SUB/SKWRAOU": "subjugate",
"SUB/SKWRAEU": "subjacent",
"SUB/SKWR*UPBG": "subjunctive",
"SUB/SKWR*UPBGT": "subjunctive",
"SUB/SKWREBG/TEU/SREU": "subjectivity",
"SUB/SKWREBG/TEU": "subjectivity",
"SUB/SKWREBG": "subjectivity",
"SUB/SKWRU": "subjugate",
"SUB/SKWRUPBG": "subjunctive",
"SUB/SKWRUPBGT": "subjunctive",
"SUB/SKA/PAOU": "subscapular",
"SUB/SKA": "subscapular",
"SUB/SKAP": "subscapular",
"SUB/SPAOE": "subspecies",
"SUB/SPERBL": "subspecialty",
"SUB/SRER": "subversives",
"SUB/SRERS": "subversives",
"SUB/SA/HAEUR": "subsaharan",
"SUB/SA": "subsaharan",
"SUB/SA/HAR": "subsaharan",
"SUB/SO": "subsonic",
"SUB/SE": "subsequent",
"SUB/SEU": "subsibilant",
"SUB/SEU/TKEU/KWRAEUR": "subsidiaries",
"SUB/SEU/PWEU": "subsibilant",
"SUB/SEUB": "subsibilant",
"SUB/SEUS": "subsystems",
"SUB/SEUD/KWRAEUR/KWREU": "subsidiariness",
"SUB/SEUD/KWRAEUR": "subsidiariness",
"SUB/SEUD": "subsiding",
"SUB/SEFRB/KWREPB": "subserviency",
"SUB/SER": "subservience",
"SUB/SER/SREU/KWREPB": "subserviency",
"SUB/SER/SREU": "subservience",
"SUB/SERBL": "subspecialty",
"SUB/SEPB": "subcentral",
"SUB/TK*EU": "subdivision",
"SUB/TPHOR": "subnormal",
"SUB/TPHORPL": "subnormal",
"SUB/TRAEU/TPHAOE": "subterranean",
"SUB/TRAEU": "subterranean",
"SUB/TRAEUPB": "subterranean",
"SUB/TRO/PEU": "subtropical",
"SUB/TRO": "subtropical",
"SUB/TROP": "subtropical",
"SUB/TAOEUT": "subtitles",
"SUB/TAPBT": "substantia",
"SUB/TOE": "subtotal",
"SUB/TOPL": "subatomic",
"SUB/TE/TPHAPB": "subtenancy",
"SUB/TE": "subtenancy",
"SUB/TE/TPHAPBS": "subtenancy",
"SUB/TEU/PEU": "subtypical",
"SUB/TEU": "subtypical",
"SUB/TEUP": "subtypical",
"SUB/TER": "subterminal",
"SUB/TER/KWRAEU/TPHAOE": "subterranean",
"SUB/TER/KWRAEU": "subterranean",
"SUB/TER/KWRAEUPB": "subterranean",
"SUB/TER/PHEU": "subterminal",
"SUB/TERPL": "subterminal",
"SUB/TEPB": "subtentorial",
"SUB/TEPB/TOR": "subtentorial",
"SUB/TEPB/TOR/KWREU": "subtentorial",
"SUB/KPHEU": "subcommittee",
"SUB/KHRAEU/SREU": "subclavius",
"SUB/KHRAEU": "subclavius",
"SUB/KHRAEUF": "subclavius",
"SUB/KHAP": "subchapter",
"SUB/KAP/SAOU": "subcapsular",
"SUB/KAP": "subcapsular",
"SUB/KAPS": "subcapsular",
"SUB/KO/PHEU": "subcommittee",
"SUB/KO": "subcommittee",
"SUB/KOPB/TRABG": "subcontractor",
"SUB/KOPB": "subconscious",
"SUB/KOPB/TEU": "subcontinent",
"SUB/KOPBT": "subcontinent",
"SUB/KOPL": "subcompact",
"SUB/KUL": "subculture",
"SUB/PWAEUS": "subbasements",
"SUB/PHA*RPB": "submarginal",
"SUB/PHAR/SKWREU": "submarginal",
"SUB/PHAR": "submarines",
"SUB/PHAR/SKWREUPB": "submarginal",
"SUB/PHEU": "submissive",
"SUB/PHEUS": "submissive",
"SUB/PHER": "submergence",
"SUB/PAOE": "subpoenas",
"SUB/PA*R": "subparagraphs",
"SUB/PAEUR": "subparagraphs",
"SUB/PAEUR/KWRA": "subparagraphs",
"SUB/HREU": "sublimity",
"SUB/HREU/PHEU": "sublimity",
"SUB/HREUPL": "sublimity",
"SUB/HRUBG": "subluxation",
"SUB/HRUBGS": "subluxation",
"SUB/HAOU": "subhuman",
"SUB/HED": "subheading",
"SUB/RAOU": "subroutine",
"SUB/RO": "subrogor",
"SUB/ROE": "subrogor",
"SUB/A": "subatomic",
"SUB/A/TO": "subatomic",
"SUB/A/TOPL": "subatomic",
"SUB/AOE/KWA/TOR": "subequatorial",
"SUB/AOE/KWA": "subequatorial",
"SUB/AOE": "subequatorial",
"SUB/AOEBG": "subequatorial",
"SUB/AEU": "subagent",
"SUB/ABG/SEU": "subaxillary",
"SUB/ABG": "subaxillary",
"SUB/ABG/SEU/HRAEUR": "subaxillary",
"SUB/ABGS": "subaxillary",
"SUB/ABGS/HRAEUR": "subaxillary",
"SUB/OR/TKEU": "subordinates",
"SUB/OR": "subornation",
"SUB/ORD": "subordinates",
"SUB/OP/TEU": "suboptimum",
"SUB/OP": "suboptimum",
"SUB/OPT": "suboptimum",
"SUB/E/KWA/TOR": "subequatorial",
"SUB/E/KWA": "subequatorial",
"SUB/E": "subequatorial",
"SUB/EBG": "subequatorial",
"SUB/EBG/WA/TOR": "subequatorial",
"SUB/EBG/WA": "subequatorial",
"SUB/UR": "suburban",
"SUBL": "sublimate",
"SUBG/SE": "successively",
"SUBG/SEU": "succinate",
"SUBGS": "succinate",
"SUBS/TAOU": "substitutive",
"SUBS/TAPB/SHEU": "substantiality",
"SUBS/TAPB": "substantial",
"SUBS/TAPB/SHEU/KWRAL": "substantiality",
"SUBS/TAPBT": "substantia",
"SUBS/TEU/TAOU": "substitutive",
"SUBS/TEU": "substituted",
"SUBS/TEUFP": "substituent",
"SUBS/KA/PAOU": "subscapular",
"SUBS/KA": "subscapular",
"SUBS/KAP": "subscapular",
"SUL/TPAOER": "sulferic",
"SUL/TPAOUR": "sulfuric",
"SUL/TPO": "sulfonate",
"SUL/TPO*": "sulphonate",
"SUL/TPEU": "sulfinate",
"SUT": "subtle",
"SUS/TE": "sustenance",
"SUS/PEPB": "suspensory",
"SUS/PEPB/SOR": "suspensory",
"SUS/PEPBS/O*R": "suspensory",
"S-FS/WO*": "servicewomen",
"S-PL/KWRA": "systematize",
"TKPW/WAU": "guapo",
"TKPW/WAU/TPHO": "guanosine",
"TKPW/WAU/KA/PHOE": "guacamole",
"TKPW/WAU/KA": "guacamole",
"TKPW/WAUBG/PHOE": "guacamole",
"TKPW/WAUBG": "guacamole",
"TKPWHRA": "glamor",
"TKPWHRA/TKEU": "gladitorial",
"TKPWHRA/TKEU/TOR": "gladitorial",
"TKPWHRA/PWE": "glabella",
"TKPWHRA/PWEL": "glabella",
"TKPWHRAOEU/SAOE/PHEU": "glycaemia",
"TKPWHRAOEU/SAOE": "glycaemia",
"TKPWHRAOEU": "glidant",
"TKPWHRAOEU/SAOEPL": "glycaemia",
"TKPWHRAOEFL": "gleefully",
"TKPWHRAOU/TEU": "glutinin",
"TKPWHRAOU/KA": "glucagon",
"TKPWHRAEU": "glaciers",
"TKPWHRAEUD/KWRAEUT": "gladiator",
"TKPWHRAEUZ/KWREU": "glazier",
"TKPWHRAU/KOE": "glaucomas",
"TKPWHRAU": "glaucomas",
"TKPWHRAFP/HRA": "congratulatory",
"TKPWHRAFP": "congratulatory",
"TKPWHRAR": "glargine",
"TKPWHRAPB/SKWRAOU": "glandular",
"TKPWHRAPB/TKAOU": "glandular",
"TKPWHRAB": "glabrous",
"TKPWHRABG": "galactic",
"TKPWHRAD/KWRAEU": "gladiator",
"TKPWHRAD/KWRO": "gladiolus",
"TKPWHRAD/KWROE": "gladiolus",
"TKPWHRO": "globus",
"TKPWHRO/SAEUR": "glossary",
"TKPWHRO/SAR": "glossary",
"TKPWHRO/PWAOU": "globulin",
"TKPWHROEB/TRO*": "globetrotter",
"TKPWHROEB/TRO*T": "globetrotter",
"TKPWHROR/TPEU": "glorification",
"TKPWHROB/KWRAOU": "globulin",
"TKPWHROBG/KWREPB": "glockenspiel",
"TKPWHRE": "ghrelin",
"TKPWHREU": "glimmered",
"TKPWHREUB": "glibness",
"TKPWHREUT": "glittery",
"TKPWHREPB": "glenoid",
"TKPWHRU": "glutton",
"TKPWHER": "gherkin",
"TKPWHERBG": "gherkin",
"TKPWRA/SKWRAOU": "graduated",
"TKPWRA": "grappa",
"TKPWRA/SRA/PHEU": "gravamina",
"TKPWRA/SRA": "gravamen",
"TKPWRA/SRAOE": "gravida",
"TKPWRA/SRAPL": "gravamina",
"TKPWRA/SREU": "gravity",
"TKPWRA/TPHAOE": "granita",
"TKPWRA/TPHAOU/HRAEUR": "granularity",
"TKPWRA/TPHAOU": "granulate",
"TKPWRA/TPHAEUR": "granary",
"TKPWRA/TPHO": "granola",
"TKPWRA/TPHOE": "granola",
"TKPWRA/TPHEU": "granita",
"TKPWRA/TPAOE": "graffito",
"TKPWRA/TPEU": "graffiti",
"TKPWRA/TAOU": "gratuitous",
"TKPWRA/TAOU/WEU": "gratuitous",
"TKPWRA/TEU": "gratitude",
"TKPWRA/TEU/TPEU": "gratification",
"TKPWRA/PHA/TEU": "grammatical",
"TKPWRA/PHA": "grammatically",
"TKPWRA/PHA/TEUBG": "grammatically",
"TKPWRA/PHAEUR": "grammarians",
"TKPWRA/PHAT": "grammatical",
"TKPWRA/PHO": "gramophone",
"TKPWRA/PHOE": "gramophone",
"TKPWRAO/TAOU/WEU": "gratuities",
"TKPWRAO/TAOU": "gratuities",
"TKPWRAO": "gratuities",
"TKPWRA*F": "{^graphy}",
"TKPWRAEURB": "gracious",
"TKPWRAP": "grapples",
"TKPWRAPB/TKEU": "grandiloquence",
"TKPWRAPB/TKEU/KWROE": "grandioso",
"TKPWRAPB/TKEU/KWROS": "grandiosity",
"TKPWRAPB/TKEU/HRO": "grandiloquence",
"TKPWRAPB/TKEU/HROE": "grandiloquence",
"TKPWRAPB/TKEUL": "grandiloquence",
"TKPWRAPB/TPA": "granfaloon",
"TKPWRAPB/KWRAOU/HRAEUR": "granularity",
"TKPWRAPB/KWRAOU": "granulate",
"TKPWRAPBD/TKA*U": "granddaughters",
"TKPWRAPBD/TPA*": "grandfathers",
"TKPWRAPBD/TPA*U": "grandfathers",
"TKPWRAPBD/KWRO": "grandioso",
"TKPWRAPBD/KWROE": "grandioso",
"TKPWRAPBD/KWROS": "grandiosity",
"TKPWRAPBD/KH*EUL": "grandchildren",
"TKPWRAPBD/PHA*S": "grandmaster",
"TKPWRAPBD/PHO*": "grandmothers",
"TKPWRAPBD/PA*": "grandparents",
"TKPWRAPBD/PA*EUR": "grandparents",
"TKPWRAPL/KWRAT": "grammatical",
"TKPWRAPL/KWRO": "gramophone",
"TKPWRAPL/KWROE": "gramophone",
"TKPWRAPLT": "grammatical",
"TKPWRAT/TPEU": "gratification",
"TKPWRO": "grommet",
"TKPWROED": "grody",
"TKPWROU": "growly",
"TKPWROUPBD/WA*": "groundwater",
"TKPWROUPBD/WA*U": "groundwater",
"TKPWROF": "grovel",
"TKPWROPL": "grommet",
"TKPWROT": "grotto",
"TKPWRE/TKPWAEUR": "gregarious",
"TKPWRE": "ghrelin",
"TKPWRE/TPHA": "grenadine",
"TKPWRE/PHO/HRA": "gremolata",
"TKPWRE/PHO": "gremolata",
"TKPWRE/PHOE/HRA": "gremolata",
"TKPWRE/PHOE": "gremolata",
"TKPWREU": "gorillas",
"TKPWREUPL/KWREU": "grimiest",
"TKPWREUZ/HREU": "grizzliest",
"TKPWREPL/HRA": "gremolata",
"TKPWREPL": "gremlin",
"TKPWRUPBLG/-G": "grudgingly",
"TKPWRUPBD": "grundy",
"TKPWRUPL": "grumbles",
"TKPWA/SKWREU/HREU": "gajillion",
"TKPWA/SKWREU": "gajillion",
"TKPWA": "galette",
"TKPWA/SKWREUL": "gajillion",
"TKPWA/SRA": "galvanized",
"TKPWA/SAO*E": "gazebo",
"TKPWA/SO": "gasoline",
"TKPWA/SOE": "gasoline",
"TKPWA/S*E": "gazetteer",
"TKPWA/S*EU/HREU": "gazillion",
"TKPWA/S*EU": "gazillion",
"TKPWA/S*EUL/KWRO": "gazillionaire",
"TKPWA/S*EUL": "gazillion",
"TKPWA/SEU/TPEU": "gasification",
"TKPWA/SEU": "gazillionaire",
"TKPWA/SEU/HREU/KWROPB": "gazillionaire",
"TKPWA/SEU/HREU": "gazillionaire",
"TKPWA/HRAOE": "galena",
"TKPWA/HRAPB": "gallantry",
"TKPWA/HRABG": "galactic",
"TKPWA/HRABG/TEU": "galactitol",
"TKPWA/HRABGT": "galactical",
"TKPWA/HRABGS": "galaxy",
"TKPWA/HREUBG/TEU": "galactical",
"TKPWA/HREUBG": "galactical",
"TKPWA/HRER": "galleries",
"TKPWAOE/KWRA": "guillotine",
"TKPWAOE/KWRO": "guillotine",
"TKPWAOE/KWROE": "gyoza",
"TKPWAOE/HRO": "guillotine",
"TKPWAOE/HROE": "guillotine",
"TKPWAOEU/TPHE/KHROPBLG": "gynecological",
"TKPWAOEU/TPHE": "gynecologists",
"TKPWAOEU/TPHE/KO/HRO": "gynecologists",
"TKPWAOEU/TPHE/KO": "gynecological",
"TKPWAOEU/TPHE/KO/HROPBLG": "gynecological",
"TKPWAOEU/TPHE/KOL": "gynecologists",
"TKPWAOEU/KWRO": "gyoza",
"TKPWAOEU/KWROE": "gyoza",
"TKPWAOEUPB/KHROPBLG": "gynecological",
"TKPWAOEUPB": "gynecologists",
"TKPWAOEUPB/KO/HRO/SKWREU": "gynecological",
"TKPWAOEUPB/KO/HRO": "gynecological",
"TKPWAOEUPB/KO": "gynecological",
"TKPWAOEUPB/KO/HROPBLG": "gynecological",
"TKPWAOEUPB/KOL": "gynecologists",
"TKPWAOEBG/KWREU": "geekiest",
"TKPWAOEBG/*ER": "geekery",
"TKPWAOEL": "guillotine",
"TKPWAOU/R*EU": "guerrilla",
"TKPWAOU/REU": "guerrilla",
"TKPWAOUS": "geusia",
"TKPWAOG": "googly",
"TKPWAOG/-L": "googly",
"TKPWAOS/PW*ER": "gooseberry",
"TKPWAOD/TP*R": "good-for-nothing",
"TKPWAOD/HRAO*BG": "good-looking",
"TKPWAEU/KWRE": "gaiety",
"TKPWAEUR/KWRAOU": "garrulous",
"TKPWAEUR/KWRAPB": "guaranty",
"TKPWAEUR/KWRAPBT": "guarantors",
"TKPWAEUR/KWRU": "garrulous",
"TKPWAEURPB": "guarantors",
"TKPWAU": "garage",
"TKPWAU/KA/PHOE": "guacamole",
"TKPWAU/KA": "guacamole",
"TKPWAUPB": "guanosine",
"TKPWAUL/PWHRA*": "gallbladders",
"TKPWAR/SAOEPB": "garcenia",
"TKPWAR/TKPWAPB/KHAOU": "gargantuan",
"TKPWAR/TKPWAPB": "gargantuan",
"TKPWAR/TKPWAPBT": "gargantuan",
"TKPWAR/TKAOEPB": "gardenia",
"TKPWAR/TPHEU": "garnishee",
"TKPWAR/KWRAPB": "guarantees",
"TKPWAR/KWRO": "garrolous",
"TKPWAR/PWAPB": "garbanzo",
"TKPWARPB": "garnished",
"TKPWARPB/KWREU": "garnishee",
"TKPWARG": "gargles",
"TKPWAPB/TKPWRAOE": "gangrenous",
"TKPWAPB/TKEUL": "grandiloquent",
"TKPWAPB/RAOE/TPHOE": "gangrenosum",
"TKPWAPB/RAOE": "gangrenosum",
"TKPWAPBLG": "gradual",
"TKPWAPBG/TKPWRAOE/TPHOE": "gangrenosum",
"TKPWAPBG/TKPWRAOE": "gangrenous",
"TKPWAPBG/HREU": "ganglion",
"TKPWAPBG/HREU/KWRO": "ganglioside",
"TKPWAPBG/HREU/KWROE": "ganglioside",
"TKPWAPBG/RAOE/TPHOE": "gangrenosum",
"TKPWAPBG/RAOE": "gangrenous",
"TKPWAPBGS": "gangsters",
"TKPWAPBT": "gantry",
"TKPWAB": "gabbiness",
"TKPWABG": "guacamole",
"TKPWAL/SRA/TPHAOEU": "galvanization",
"TKPWAL/SRA": "galvanic",
"TKPWAL/SRAPB": "galvanic",
"TKPWAG/*ER": "gaggery",
"TKPWAS/TPAOEU": "gasification",
"TKPWAS/TPEU": "gasification",
"TKPWAS/TRAOEU": "gastrium",
"TKPWAS/TREBG/TO": "gastrectomy",
"TKPWAS/TREBG": "gastrectomy",
"TKPWAS/TREBG/TOE": "gastrectomy",
"TKPWAS/TREBGT": "gastrectomy",
"TKPWAS/PA": "gaspagoo",
"TKPWO": "golly",
"TKPWO/SRER": "governess",
"TKPWO/SA": "gossamer",
"TKPWO/TPHOR/KWRAOE": "gonorrheal",
"TKPWO/TPHOR": "gonorrheal",
"TKPWOE/TPHOR/KWRAOE": "gonorrhea",
"TKPWOE/TPHOR": "gonorrhea",
"TKPWOEFT/HREU": "ghostliest",
"TKPWOEPB": "gonioscopy",
"TKPWOEPB/KWROPL": "goniometer",
"TKPWOEPB/KWROS/KO": "gonioscopy",
"TKPWOEPB/KWROS": "gonioscopy",
"TKPWOEPB/KWROS/KOE": "gonioscopy",
"TKPWOELD/KWREU": "oldies",
"TKPWOU": "gaucho",
"TKPWOUD": "gaudier",
"TKPWOPB/TKO": "gondolier",
"TKPWOPB/TKOE": "gondolier",
"TKPWOPB/RAOE": "gonorrheal",
"TKPWOB/-L/TKEU": "gobbledygook",
"TKPWOB/-L": "gobbledygook",
"TKPWOBL/TKEU": "gobbledygook",
"TKPWOBLD/KWREU": "gobbledygook",
"TKPWOL": "golf",
"TKPWOS": "gospel",
"TKPWOD/TKA*U": "goddaughter",
"TKPWOD/TKA*PL": "goddammit",
"TKPWOD/TPA*": "godfather",
"TKPWOD/TPA*U": "godfather",
"TKPWOD/TPA*UR/SAEUBG": "godforsaken",
"TKPWOD/TPO*R/SA*EUBG": "godforsaken",
"TKPWOD/TPO*R/SAEUBG": "godforsaken",
"TKPWOD/PHO*": "godmother",
"TKPWOD/PA*": "godparents",
"TKPWOD/HREU": "godliness",
"TKPWOZ": "gossamer",
"TKPW*UPB/PHE": "gunmetal",
"TKPW*UPB/PO*U": "gunpowder",
"TKPW*UPB/R*UPB": "gunrunning",
"TKPWE": "gecko",
"TKPWEU": "guinness",
"TKPWEU/TKPWA/PAS": "gigapascal",
"TKPWEU/KWROE": "gyoza",
"TKPWEU/HRO": "guillotine",
"TKPWEU/HROE": "guillotine",
"TKPWEUF/A*": "giveaway",
"TKPWEUR": "girder",
"TKPWEUPBG": "gringo",
"TKPWEUPL": "gimlet",
"TKPWEUB": "giblet",
"TKPWEUL/KWRO": "guillotine",
"TKPWEUL/KWROE": "guillotine",
"TKPWEUG/PAS": "gigapascal",
"TKPWEUD": "giddiness",
"TKPWEUZ": "gizmo",
"TKPWEFP": "getcha",
"TKPWER": "gerbil",
"TKPWERBG": "gherkin",
"TKPWELD": "gelding",
"TKPWET/R*EUFP": "get-rich-quick",
"TKPWET/A*": "getaway",
"TKPWES/TA": "gestapo",
"TKPWES/TEU": "guesstimate",
"TKPWED": "gedit",
"TKPWU": "gurus",
"TKPWU/TUR": "guttural",
"TKPWU/REU": "guerilla",
"TKPWUR": "guerrilla",
"TKPWUR/KWREU": "guerrilla",
"TKPWURPB": "gurney",
"TKPWUPB/PH*E": "gunmetal",
"TKPWUPB/PO*U": "gunpowder",
"TKPWUPB/R*UPB": "gunrunning",
"TKPWUPBG": "gung-ho",
"TKPWUPL/PWHRAOE": "gumbleedone",
"TKPWUT/KWRUR": "guttural",
"TKPWUS/TA": "gustatory",
"TKPWUS": "gusset",
"TKPWUS/TA/TOR": "gustatory",
"TKPWUZ": "guzzles",
"TKPW-PB/PH*E": "gunmetal",
"TKPW-PB/PO*U": "gunpowder",
"TKPW-PB/R*UPB": "gunrunning",
"TKPHRO": "diplomas",
"TKPHROE": "diplomas",
"TKPHROPL": "diplomacy",
"TKPHAOE": "demilune",
"TKPHAR": "demarcate",
"TKPHO/TKPWRAF": "demographers",
"TKPHO/KRA": "democratic",
"TKPHOEPL": "diplomacy",
"TKPHOPB/STRA": "demonstrably",
"TKPHOPB/STRAEU": "demonstrative",
"TKPHOPB/STRAB": "demonstrably",
"TKPHOPB/STRAT": "demonstrative",
"TKPHOPBS": "demonstrable",
"TKPHOPBS/TRAB": "demonstrably",
"TKPHOBG": "democracy",
"TKPHOBG/RA": "democratize",
"TKPHEPB": "dementia",
"TKPHES": "domestics",
"TKPRAF": "depravity",
"TKPAR": "departures",
"TKPO": "deposited",
"TKPO/SEU/TAEUR": "depositary",
"TKPO/SEU": "depositary",
"TKPOR": "deportation",
"TKPOS": "depositer",
"TKWRAPB/TKEU": "grandiosity",
"TKWRAPB": "grandiosity",
"TKWAOEU": "divinum",
"TKWAOEUF": "divisiveness",
"TKWAUR": "dwarfed",
"TKWAR": "dwarfed",
"TKWOE/TKES": "duodecimal",
"TKWOR": "dvorak",
"TKWOD": "duodenum",
"TKWEUPB": "divinity",
"TKWEUPBD": "dwindles",
"TKWEUS": "divisible",
"TKWERGS/KWRAEUR": "diversionary",
"TKWES": "divestitures",
"TKHRAOER": "delirious",
"TKHRAOU": "delusive",
"TKHRAOUF": "diluvian",
"TKHRAOUS": "delusive",
"TKHRAP": "dilapidated",
"TKHREUFRPB": "deliverance",
"TKHREUPB": "delinquence",
"TKHREUPBG": "delinquence",
"TKHREUB": "deliberate",
"TKHREPL": "dilemma",
"TKHREBGT": "delectable",
"TKRA": "dramas",
"TKRA/KOEPB": "draconian",
"TKRA/PHA/TUR": "dramaturgy",
"TKRA/PHAT": "dramatically",
"TKRAOEUS": "derisive",
"TKRAOER": "dreariness",
"TKRAOEPL/SEUBG": "dreamsicle",
"TKRAOEPLS": "dreamsicle",
"TKRAOUS": "drusen",
"TKRAEU": "drayage",
"TKRAEUD": "dreidel",
"TKRAF": "draftee",
"TKRAFTS/WO*": "draftswomen",
"TKRAPL/TURPBLG": "dramaturgy",
"TKRAPLT": "dramatizations",
"TKRAG/KWROPB": "dragonfly",
"TKRAS/TEU/KAL": "drastically",
"TKRAS/TEU": "drastically",
"TKRAS": "drastic",
"TKRAS/TEUBG/KWRAL": "drastically",
"TKRO/SO/TP*EU": "drosophila",
"TKRO/SO": "drosophila",
"TKRO": "dromos",
"TKRO/SOF": "drosophila",
"TKRO/TE/KOE": "drotecogin",
"TKRO/TE": "drotecogin",
"TKROE/TRE/KOEG": "drotrecogin",
"TKROE/TRE": "drotrecogin",
"TKROE": "dromos",
"TKROERT/KOEG": "drotrecogin",
"TKROERT": "drotrecogin",
"TKROEPL/TKAEUR": "dromedary",
"TKROET/KOEG": "drotecogin",
"TKROET": "drotecogin",
"TKROUP": "dropout",
"TKROG": "derogatorily",
"TKROG/TOR": "derogatorily",
"TKREUF": "derivatives",
"TKREUPBLG": "dirigibles",
"TKREUB": "dribbled",
"TKREUBL": "dribbling",
"TKREUS": "derisive",
"TKREUZ": "drizzled",
"TKREPB": "adrenaline",
"TKREGT": "dexterous",
"TKRU": "druthers",
"TKRUPB": "drunkards",
"TKRUPBLG/*ER": "drudgery",
"TKRUPBG": "drunkards",
"TKR-RBT": "distributable",
"TKA": "dally",
"TKA/TKPWER/KWRO": "daguerreotype",
"TKA/TPO": "daffodil",
"TKAO*EU/HREBGT": "dialectal",
"TKAOE/STRAL": "decentralize",
"TKAOE/STRUBG": "destructive",
"TKAOE/STRUBGT/-BL": "destructibly",
"TKAOE/STAEU/PWEUL": "destabilize",
"TKAOE/STAEU": "destabilize",
"TKAOE/STAEUB": "destabilize",
"TKAOE/STAEUBL": "destabilize",
"TKAOE/SKWRE/TPHER/KWRA": "degenerative",
"TKAOE/SKWRE/TPHER": "degenerates",
"TKAOE/SKWRE": "degenerates",
"TKAOE/SKWREPB": "degenerates",
"TKAOE/SKWREPB/RA": "degenerative",
"TKAOE/SKRAOEUB/-BL": "describably",
"TKAOE/SKREUP": "descriptively",
"TKAOE/SKREUPT": "descriptor",
"TKAOE/SPAEURG": "despairingly",
"TKAOE/SPO": "despotic",
"TKAOE/SPOPBD/KWREPB": "despondency",
"TKAOE/SPEU": "despicable",
"TKAOE/SPEUBG": "despicable",
"TKAOE/SRA/HRAOU": "devaluate",
"TKAOE/SRAO*EULT": "devitalize",
"TKAOE/SRAOEU/TAL": "devitalize",
"TKAOE/SRAOEU": "devitalize",
"TKAOE/SRAOUL": "devaluate",
"TKAOE/SRAL": "devaluation",
"TKAOE/SROE": "devotee",
"TKAOE/SRE/HRO": "developers",
"TKAOE/SRE": "develops",
"TKAOE/SA/KHUR": "desaturation",
"TKAOE/SA": "desalinate",
"TKAOE/SA/HREU": "desalinate",
"TKAOE/SAOE": "decedent",
"TKAOE/SAOEU": "decipherable",
"TKAOE/SAOEU/TP*ER": "decipherable",
"TKAOE/SAOEUFR": "decipherable",
"TKAOE/SAOEUR": "desirables",
"TKAOE/SAOEUR/-BL": "desirably",
"TKAOE/SAOEUS": "decisiveness",
"TKAOE/SAOEUD/-D": "decidedly",
"TKAOE/SAOES": "deceased",
"TKAOE/SAOED": "decedent",
"TKAOE/SAFP": "desaturation",
"TKAOE/SAL": "desalinate",
"TKAOE/SAT": "desaturation",
"TKAOE/SO": "desolate",
"TKAOE/S*EUG": "designates",
"TKAOE/S*EUG/TPHAEU": "designator",
"TKAOE/S*EUG/TPHAEUT": "designator",
"TKAOE/SE": "decelerates",
"TKAOE/SE/HRER": "decelerates",
"TKAOE/SEU/TKAOER/KWRA": "desideratum",
"TKAOE/SEU/TKAOER": "desideratum",
"TKAOE/SEU/TKAOU": "deciduous",
"TKAOE/SEU/TKER/KWRA": "desideratum",
"TKAOE/SEU/TKER": "desideratum",
"TKAOE/SEU/HRAOE": "deciliter",
"TKAOE/SEU/HREU": "deciliter",
"TKAOE/SEUG": "designates",
"TKAOE/SEUG/TPHAEU": "designator",
"TKAOE/SEUD": "desideratum",
"TKAOE/SEUD/RA": "desideratum",
"TKAOE/SERG": "desegregation",
"TKAOE/SEP": "deceptive",
"TKAOE/SEPB": "decentralize",
"TKAOE/SEPB/TRAL": "decentralize",
"TKAOE/SEPBS": "desensitize",
"TKAOE/SEPT/KWREUF": "deceptively",
"TKAOE/SEG": "desegregation",
"TKAOE/SEG/RE": "desegregation",
"TKAOE/SUL": "desultory",
"TKAOE/SUL/TOR": "desultory",
"TKAOE/TKPWRA/TKA": "degradative",
"TKAOE/TKPWRA": "degranulation",
"TKAOE/TKPWRA/TPHAOU": "degranulation",
"TKAOE/TKPWRAEU": "degradate",
"TKAOE/TKPWRAEUD/A*T": "degradative",
"TKAOE/TKPWRAPB": "degranulation",
"TKAOE/TKPWRAD": "degradate",
"TKAOE/TKPWUFT": "degustation",
"TKAOE/TKPWUS": "degustation",
"TKAOE/TKAOEU/KA": "dedicatory",
"TKAOE/TKAOEU": "dedicate",
"TKAOE/TKAOEU/KA/TOR": "dedicatory",
"TKAOE/TKAOEPB/TEPBS": "dependencies",
"TKAOE/TKAOEPB": "dependencies",
"TKAOE/TKEPB/TEPBS": "dependencies",
"TKAOE/TKEPB": "dependencies",
"TKAOE/TKUBG": "deductive",
"TKAOE/TPHRAG": "deflagrate",
"TKAOE/TPHAEU/KHUR": "denaturation",
"TKAOE/TPHAEU": "denaturation",
"TKAOE/TPHAEUFP": "denaturation",
"TKAOE/TPHAGS/KWRAL": "denationalize",
"TKAOE/TPHAGS": "denationalize",
"TKAOE/TPHAT": "denaturation",
"TKAOE/TPHO/PHEU/TPHAEU": "denominator",
"TKAOE/TPHO/PHEU": "denominator",
"TKAOE/TPHO": "denominator",
"TKAOE/TPHO/PHEU/TPHAEUT": "denominator",
"TKAOE/TPHOUPB": "denoument",
"TKAOE/TPHOPL/TPHAEU": "denominator",
"TKAOE/TPHOPL": "denominator",
"TKAOE/TPHOPL/TPHAEUT": "denominator",
"TKAOE/TPHE": "denegation",
"TKAOE/TPHEU/TKPWRA": "denigratory",
"TKAOE/TPHEU": "denigrate",
"TKAOE/TPHEU/TKPWRA/TOR": "denigratory",
"TKAOE/TPHEFRB": "denervate",
"TKAOE/TPHUPBS/KWRA": "denunciatory",
"TKAOE/TPHUPBS": "denunciate",
"TKAOE/TPHUPBS/KWRA/TOR": "denunciatory",
"TKAOE/TPA": "defamation",
"TKAOE/TPA/PHA": "defamatory",
"TKAOE/TPA/PHA/TOR": "defamatory",
"TKAOE/TPAOE": "defeasance",
"TKAOE/TPAPL": "defamatory",
"TKAOE/TPAL": "defalcation",
"TKAOE/TPOEL": "defoliant",
"TKAOE/TPOR": "deformation",
"TKAOE/TPOL": "defoliant",
"TKAOE/TPE/TPHE": "defenestration",
"TKAOE/TPE": "defenestration",
"TKAOE/TPE/TPHES": "defenestration",
"TKAOE/TPEU/SHEPB": "deficiencies",
"TKAOE/TPEU": "definite",
"TKAOE/TPEU/TPHEU": "definitively",
"TKAOE/TPEU/TPHEUGS/KWRAL": "definitionally",
"TKAOE/TPEU/TPHEUT/KWREUF": "definitively",
"TKAOE/TPEURB/KWREPB": "deficiencies",
"TKAOE/TPEURB": "defibrillate",
"TKAOE/TPEURB/HRAEU": "defibrillator",
"TKAOE/TPEUB/REU/HRAEU": "defibrillator",
"TKAOE/TPEUB/REU": "defibrillate",
"TKAOE/TPEUB": "defibrillate",
"TKAOE/TPEUBG": "defectively",
"TKAOE/TPEUBGT/KWREUF": "defectively",
"TKAOE/TPEUBGT": "defectively",
"TKAOE/TPEPB": "defendants",
"TKAOE/TPEBG": "defectively",
"TKAOE/TPEBG/TEUF": "defectively",
"TKAOE/TRAOEU": "detritus",
"TKAOE/TRABG": "detractor",
"TKAOE/TREU": "detriment",
"TKAOE/TREU/PHEPB": "detrimental",
"TKAOE/TAOER": "deteriorate",
"TKAOE/TAOER/KWROR": "deteriorate",
"TKAOE/TAEU": "detainee",
"TKAOE/TO": "detonate",
"TKAOE/TOBG/SEU/TPAOEU": "detoxification",
"TKAOE/TOBG/SEU": "detoxicative",
"TKAOE/TOBG": "detoxicative",
"TKAOE/TOBG/SEU/TPEU": "detoxification",
"TKAOE/TOBG/SEU/KAT": "detoxicative",
"TKAOE/TOBGS/KAT": "detoxicative",
"TKAOE/TE": "detemir",
"TKAOE/TEFT": "detestable",
"TKAOE/TER/PHEU/TPHA": "determinacy",
"TKAOE/TER/PHEU": "determinism",
"TKAOE/TERPBLG": "detergent",
"TKAOE/TERPL": "determinant",
"TKAOE/TEBG": "detectives",
"TKAOE/KPEPB": "decompensation",
"TKAOE/KWRA/PHEU": "deaminate",
"TKAOE/KWRA": "deaminate",
"TKAOE/KWRAPL": "deaminate",
"TKAOE/KWREU": "deities",
"TKAOE/KHRA/PHA": "declamatory",
"TKAOE/KHRA": "declamatory",
"TKAOE/KHRA/PHA/TOR": "declamatory",
"TKAOE/KHRAEUR/KWRA": "declarative",
"TKAOE/KHRAEUR/KWRA/TOR": "declaratory",
"TKAOE/KHRAEUT": "decollator",
"TKAOE/KHRAR": "declarative",
"TKAOE/KHRAR/KWRA/TOR": "declaratory",
"TKAOE/KHRAR/KWRA": "declarative",
"TKAOE/KHRAPL": "declamatory",
"TKAOE/KHRAS": "declassify",
"TKAOE/KHROR/KWRAOEUZ": "decolorizer",
"TKAOE/KHROR": "decolorizer",
"TKAOE/KHREU": "declination",
"TKAOE/KHREUF": "declivity",
"TKAOE/KRE": "decrement",
"TKAOE/KREU/PHEU/TPHAL": "decriminalize",
"TKAOE/KREU/PHEU": "decriminalize",
"TKAOE/KREU": "decriminalize",
"TKAOE/KREUPL/TPHAL": "decriminalize",
"TKAOE/KREUPL": "decriminalize",
"TKAOE/KA/TPHO": "decanoate",
"TKAOE/KA/TPHOE": "decanoate",
"TKAOE/KA/TPEU": "decaffeinated",
"TKAOE/KA/PEU": "decapitate",
"TKAOE/KA/PEP": "decapeptide",
"TKAOE/KAOU/PWEU": "decubitus",
"TKAOE/KAOU": "decoupage",
"TKAOE/KAOUB": "decubitus",
"TKAOE/KA*T": "decathlon",
"TKAOE/KAP": "decapitate",
"TKAOE/KAL/SEU": "decalcification",
"TKAOE/KAL/SEU/TPEU": "decalcification",
"TKAOE/KALS": "decalcification",
"TKAOE/KALS/TPEU": "decalcification",
"TKAOE/KO/HROR/KWRAOEUZ": "decolorizer",
"TKAOE/KO/HROR": "decolorizer",
"TKAOE/KO*PL": "decompensation",
"TKAOE/KO*PL/KWREPB": "decompensation",
"TKAOE/KOE/HRAEU": "decollator",
"TKAOE/KOE/HRAEUT": "decollator",
"TKAOE/KOED": "decoder",
"TKAOE/KOR/TEU": "decorticate",
"TKAOE/KOR/KWRA": "decoratively",
"TKAOE/KOR/KWRAEU": "decorator",
"TKAOE/KOR/KWRAT": "decoratively",
"TKAOE/KORT": "decorticate",
"TKAOE/KOPB/SKWREFT": "decongestant",
"TKAOE/KOPB/SKWRES": "decongestant",
"TKAOE/KOPL": "decompensation",
"TKAOE/KOPL/PEPB": "decompensation",
"TKAOE/KUS": "decussation",
"TKAOE/PWRAOEUD": "debridement",
"TKAOE/PWAOU": "debutante",
"TKAOE/PWAUFP/*ER": "debauchery",
"TKAOE/PWABG": "debacles",
"TKAOE/PW*UPBG": "debunker",
"TKAOE/PWEU/HREU": "debility",
"TKAOE/PWEU": "debility",
"TKAOE/PWEUL": "debility",
"TKAOE/PWEPB": "debentures",
"TKAOE/PHRAL": "demoralized",
"TKAOE/PHA": "demagogue",
"TKAOE/PHAR": "demarcate",
"TKAOE/PHARBG": "demarcate",
"TKAOE/PHAG/TPHET": "demagnetization",
"TKAOE/PHAG": "demagnetization",
"TKAOE/PHAG/TPHET/KWRAOEUZ": "demagnetization",
"TKAOE/PHO/TKPWRAF": "demographers",
"TKAOE/PHO/TKAOU": "demodulation",
"TKAOE/PHO/KRA": "democratic",
"TKAOE/PHO/KRA/TEUBG/KWRAL": "democratically",
"TKAOE/PHOE/TKPWRAF": "demography",
"TKAOE/PHOE/KRA": "democratic",
"TKAOE/PHOE/KRA/TEUBG/KWRAL": "democratically",
"TKAOE/PHOE/KRAT": "democratically",
"TKAOE/PHOE/PWEU": "demobilization",
"TKAOE/PHOE/PWEU/HRAOEUZ": "demobilization",
"TKAOE/PHOE/PWEUL": "demobilization",
"TKAOE/PHOE/PWEUL/KWRAOEUZ": "demobilization",
"TKAOE/PHOE/-BL": "demobilized",
"TKAOE/PHOEB": "demobilized",
"TKAOE/PHOEBL": "demobilized",
"TKAOE/PHOET": "demoting",
"TKAOE/PHOR/KWRAL": "demoralized",
"TKAOE/PHOR": "demoralized",
"TKAOE/PHORL": "demoralized",
"TKAOE/PHORG": "demography",
"TKAOE/PHOPB/STRA": "demonstrably",
"TKAOE/PHOPB/STRAEU": "demonstrative",
"TKAOE/PHOPB/STRAEUT": "demonstrator",
"TKAOE/PHOPB/STRAB": "demonstrably",
"TKAOE/PHOPB/STRAT": "demonstrative",
"TKAOE/PHOPBS/TRA": "demonstrably",
"TKAOE/PHOPBS": "demonstrably",
"TKAOE/PHOPBS/TRAB": "demonstrably",
"TKAOE/PHOBG/RA": "democratize",
"TKAOE/PHOBG": "democratize",
"TKAOE/PHOL": "demolition",
"TKAOE/PHOD": "demodulation",
"TKAOE/PHEU/TPHER/KWRAL": "demineralize",
"TKAOE/PHEU/TPHER": "demineralize",
"TKAOE/PHEU/HREU": "demilitarize",
"TKAOE/PHEU/HREU/TAR": "demilitarize",
"TKAOE/PHEUFT": "demystify",
"TKAOE/PHEURPBL": "demineralize",
"TKAOE/PHEUPB/RAL": "demineralize",
"TKAOE/PHEUL": "demilitarize",
"TKAOE/PHEUL/TAR": "demilitarize",
"TKAOE/PRA": "deprecatory",
"TKAOE/PRA/SREU": "depravity",
"TKAOE/PRA/KA/TOR": "deprecatory",
"TKAOE/PRA/KA": "deprecatory",
"TKAOE/PRAOE": "depreciable",
"TKAOE/PRAEUF": "depravity",
"TKAOE/PRAF": "depravity",
"TKAOE/PRE": "deprecating",
"TKAOE/PRE/KA": "deprecatory",
"TKAOE/PRE/KA/TOR": "deprecatory",
"TKAOE/PREU": "deprivation",
"TKAOE/PRERB": "depreciates",
"TKAOE/PAOU": "deputies",
"TKAOE/PAR": "departure",
"TKAOE/PO": "depopulate",
"TKAOE/PO/SEU/TAEUR": "depositary",
"TKAOE/PO/SEU": "depositories",
"TKAOE/PO/SEU/TOR": "depositories",
"TKAOE/PO/PAOU": "depopulate",
"TKAOE/POE/HRAR": "depolarize",
"TKAOE/POEPB": "deponent",
"TKAOE/POEL": "depolarize",
"TKAOE/POFT": "depositor",
"TKAOE/POR": "deplorably",
"TKAOE/PORBL": "deplorably",
"TKAOE/POP": "depopulate",
"TKAOE/POL": "depolarize",
"TKAOE/POS": "depositories",
"TKAOE/PEU/HRA": "depilatory",
"TKAOE/PEU": "depilate",
"TKAOE/PEU/HRA/TOR": "depilatory",
"TKAOE/PER/SO*PB/KWRAL": "depersonalized",
"TKAOE/PER/SO*PB": "depersonalized",
"TKAOE/PER": "depersonalized",
"TKAOE/PER/SO*PBL": "depersonalized",
"TKAOE/PER/SOPB/KWRAL": "depersonalized",
"TKAOE/PER/SOPB": "depersonalized",
"TKAOE/PER/SOPBL": "depersonalized",
"TKAOE/PERPB/KWRAL": "depersonalized",
"TKAOE/PERPB": "depersonalized",
"TKAOE/PERPBL": "depersonalized",
"TKAOE/PERS/TPHAL": "depersonalized",
"TKAOE/PERS": "depersonalized",
"TKAOE/PEPB/TKAOEPB": "dependencies",
"TKAOE/PEPB": "dependence",
"TKAOE/PEPB/TKEPB": "dependencies",
"TKAOE/HRA/PHEU": "delaminate",
"TKAOE/HRA": "delamination",
"TKAOE/HRA/PHEUPB": "delamination",
"TKAOE/HRAOER": "delirious",
"TKAOE/HRAOU": "delusive",
"TKAOE/HRAOUS": "delusive",
"TKAOE/HRAPL": "delaminate",
"TKAOE/HRE/TKPWA": "delegatory",
"TKAOE/HRE": "deleterious",
"TKAOE/HRE/TKPWA/TOR": "delegatory",
"TKAOE/HRE/TKPWAEU": "delegator",
"TKAOE/HRE/TAOER": "deleterious",
"TKAOE/HREU/KA": "delicatess",
"TKAOE/HREU/PWER": "deliberate",
"TKAOE/HREU/PHEU": "delimiter",
"TKAOE/HREURB": "delicious",
"TKAOE/HREUPB": "delinquence",
"TKAOE/HREUPBG": "delinquence",
"TKAOE/HREUB": "deliberately",
"TKAOE/HREUBG": "delicto",
"TKAOE/HREBGT": "delectable",
"TKAOE/HAOEU": "dehydrated",
"TKAOE/HAOU/PHAPB": "dehumanize",
"TKAOE/HAOU": "dehumidifiers",
"TKAOE/HAOU/PHEU/TKAOEU": "dehumidifiers",
"TKAOE/HAOU/PHEU": "dehumidifiers",
"TKAOE/HAOU/PHEU/TKEU": "dehumidifiers",
"TKAOE/HAOU/PHEUD": "dehumidifiers",
"TKAOE/HAOUPL": "dehumanization",
"TKAOE/HAOUPL/KWRAOEUZ": "dehumanization",
"TKAOE/HAOUPLD": "dehumidifiers",
"TKAOE/HEUS": "dehiscence",
"TKAOE/RAOEU": "derisive",
"TKAOE/RAOEUS": "derisive",
"TKAOE/RO/TKPWA": "derogatoriness",
"TKAOE/RO": "derogate",
"TKAOE/RO/TKPWA/TOR": "derogatoriness",
"TKAOE/ROE": "derogate",
"TKAOE/RE/TKPWAOU": "deregulates",
"TKAOE/RE": "deregulates",
"TKAOE/REU/SRA": "derivatives",
"TKAOE/REU": "derisive",
"TKAOE/REU/SRAT": "derivatives",
"TKAOE/REUF": "derivative",
"TKAOE/REUS": "derisive",
"TKAOE/REG": "deregulates",
"TKAOE/OE/TKOR": "deodorant",
"TKAOE/OE": "deodorant",
"TKAOE/EFPL": "de-emphasis",
"TKAOE/EPL/TPA*": "de-emphasis",
"TKAOE/EPL": "de-emphasis",
"TKAOE/ES": "de-escalate",
"TKAOE/ES/KA": "de-escalate",
"TKAOEU/STO": "diastolic",
"TKAOEU/STOL": "diastolic",
"TKAOEU/SKWRES": "digestive",
"TKAOEU/SRAEU": "divalent",
"TKAOEU/SRER": "divergence",
"TKAOEU/SRERPBLG/-PBS": "divergency",
"TKAOEU/SRERGS/KWRAEUR": "diversionary",
"TKAOEU/SRES/TEU": "divestitures",
"TKAOEU/SRES": "divestitures",
"TKAOEU/SRULG": "divulging",
"TKAOEU/TKPWRA/PHA": "diagrammatic",
"TKAOEU/TKPWRA": "diagrammatic",
"TKAOEU/TKPWRE": "digressive",
"TKAOEU/TKABG": "didactic",
"TKAOEU/TKABGT": "didactical",
"TKAOEU/TPHA": "dynamics",
"TKAOEU/TPHA/PHEU": "dynamicism",
"TKAOEU/TPHA/PHEUBG/KWRAL": "dynamically",
"TKAOEU/TPHAPL": "dynamically",
"TKAOEU/TPHAS": "dynastic",
"TKAOEU/TPHO": "dinosaur",
"TKAOEU/TPHER": "dinero",
"TKAOEU/TPA*": "diaphanous",
"TKAOEU/TPA*PB": "diaphanous",
"TKAOEU/THAOE": "diathesis",
"TKAOEU/KWRA/STO": "diastolic",
"TKAOEU/KWRA/STOL": "diastolic",
"TKAOEU/KWRA/STE": "diastema",
"TKAOEU/KWRA/SPOR": "diaspora",
"TKAOEU/KWRA/S*E": "diazepam",
"TKAOEU/KWRA/TKPWRA/PHA/TEU": "diagrammatical",
"TKAOEU/KWRA/TKPWRA/PHA": "diagrammatic",
"TKAOEU/KWRA/TKPWRA": "diagrammatic",
"TKAOEU/KWRA/TKPWO": "diagonals",
"TKAOEU/KWRA/TKO": "diadocho",
"TKAOEU/KWRA/TPHOES": "diagnosis",
"TKAOEU/KWRA/TPA*": "diaphanous",
"TKAOEU/KWRA/TPA*PB": "diaphanous",
"TKAOEU/KWRA/TPO*/RAOE": "diaphoresis",
"TKAOEU/KWRA/TPO*": "diaphoretic",
"TKAOEU/KWRA/TPO*/RE": "diaphoretic",
"TKAOEU/KWRA/THAOE": "diathesis",
"TKAOEU/KWRA/TO": "diatomic",
"TKAOEU/KWRA/KRO": "diachronic",
"TKAOEU/KWRA/KROPB": "diachronic",
"TKAOEU/KWRA/KREU": "diacritic",
"TKAOEU/KWRA/PWAOE": "diabetics",
"TKAOEU/KWRA/PWO/HREU": "diabolical",
"TKAOEU/KWRA/PWO": "diabolic",
"TKAOEU/KWRA/PWOL": "diabolical",
"TKAOEU/KWRA/PWE": "diabetic",
"TKAOEU/KWRA/PHAOE": "diameter",
"TKAOEU/KWRA/PHAPB": "diamante",
"TKAOEU/KWRA/PHE": "diameter",
"TKAOEU/KWRA/PHE/TREUBG/KWRAL": "diametrically",
"TKAOEU/KWRA/PHET": "diametric",
"TKAOEU/KWRA/PHET/REUBG/KWRAL": "diametrically",
"TKAOEU/KWRA/HREU": "dialysis",
"TKAOEU/KWRA/HREBG": "dialectician",
"TKAOEU/KWRA/HREBG/TEU": "dialectical",
"TKAOEU/KWRA/RAOE": "diarrhea",
"TKAOEU/KWRAEUR": "diary",
"TKAOEU/KWRAR/KWRAOE": "diarrhea",
"TKAOEU/KWRAR": "diary",
"TKAOEU/KWRAPB": "dianthus",
"TKAOEU/KWRAPL": "diameter",
"TKAOEU/KWRAB": "diablo",
"TKAOEU/KWRAG/TKPWO/TPHAL": "diagonally",
"TKAOEU/KWRAG/TKPWO": "diagonally",
"TKAOEU/KWRAG": "diagrammed",
"TKAOEU/KWRAG/TPHO": "diagnosis",
"TKAOEU/KWRAG/TPHOE": "diagnosis",
"TKAOEU/KWRAG/TPHOFT": "diagnostically",
"TKAOEU/KWRAG/TPHOS/TEU/KAL": "diagnostically",
"TKAOEU/KWRAG/TPHOS/TEU": "diagnostically",
"TKAOEU/KWRAG/TPHOS": "diagnosable",
"TKAOEU/KWRAG/TPHOS/TEUBG/KWRAL": "diagnostically",
"TKAOEU/KWRAS": "diaspora",
"TKAOEU/KWRAS/POR": "diaspora",
"TKAOEU/KWRAZ": "diazepam",
"TKAOEU/KWROR/KWRA": "diorama",
"TKAOEU/KWROR": "diorama",
"TKAOEU/KWROP": "diopter",
"TKAOEU/KWROBG": "dioxide",
"TKAOEU/KWROBGS": "dioxin",
"TKAOEU/KWRE/TAEUR": "dietary",
"TKAOEU/KWRE": "dieter",
"TKAOEU/KWRE/TE": "dietetics",
"TKAOEU/KHO/TO": "dichotomy",
"TKAOEU/KHO": "dichotomy",
"TKAOEU/KHOT": "dichotomy",
"TKAOEU/KRO": "diachronic",
"TKAOEU/KROE": "dichroic",
"TKAOEU/KROPB": "diachronic",
"TKAOEU/KREU": "diacritic",
"TKAOEU/KO/TO": "dichotomous",
"TKAOEU/KO": "dichotomous",
"TKAOEU/KOT": "dichotomous",
"TKAOEU/PWAOE": "diabetic",
"TKAOEU/PWO": "diabolic",
"TKAOEU/PWOL": "diabolic",
"TKAOEU/PWE": "diabetic",
"TKAOEU/PHAOEU/KWRAR": "dimyarian",
"TKAOEU/PHAOEU": "dimyarian",
"TKAOEU/PHAPB": "diamante",
"TKAOEU/PHOR": "dimorphic",
"TKAOEU/PHE": "diametric",
"TKAOEU/PHER": "dimeric",
"TKAOEU/PHET": "diametric",
"TKAOEU/HRA": "dilatory",
"TKAOEU/HRA/TOR": "dilatory",
"TKAOEU/HRAOU": "dilutive",
"TKAOEU/HRAOUF": "diluvian",
"TKAOEU/HREPL": "dilemma",
"TKAOEU/HREBG": "dialectician",
"TKAOEU/RAOE": "diarrhea",
"TKAOEU/REBG/TO": "directories",
"TKAOEU/REBG": "directives",
"TKAOEU/OBG": "dioxin",
"TKAOEU/E/HREBG": "dielectric",
"TKAOEU/E": "dielectric",
"TKAOEUR/KWRA": "diorama",
"TKAOEUR/KWRAOE": "diarrhea",
"TKAOEUPB/PHA": "dynamicism",
"TKAOEUPBS": "dynasty",
"TKAOEUG/TPHO": "diagnosis",
"TKAOEUG/TPHOE": "diagnosis",
"TKAOEUG/TPHOFT": "diagnostically",
"TKAOEUG/TPHOS": "diagnostician",
"TKAOEUG/TPHOS/TEUBG/KWRAL": "diagnostically",
"TKAOEUG/RA/PHA": "diagrammatic",
"TKAOEUG/RA": "diagrammatic",
"TKAOEUT": "dieting",
"TKAOEFPBS": "decency",
"TKAOEPBS": "decency",
"TKAOES": "despicable",
"TKAOES/PEUBG": "despicable",
"TKAOU/TAOER": "deuterium",
"TKAOU/KWRO/TKE": "duodenum",
"TKAOU/KWRO": "duodenum",
"TKAOU/KWROE/TKE/SEU": "duodecimal",
"TKAOU/KWROE/TKE": "duodecimal",
"TKAOU/KWROE/TKES": "duodecimal",
"TKAOU/KWROD": "duodenal",
"TKAOU/PHREU/SEU": "duplicitous",
"TKAOU/PHREU": "duplicitous",
"TKAOU/PHREUS": "duplicitous",
"TKAOU/WO/TKE": "duodenum",
"TKAOU/WO": "duodenum",
"TKAOU/WOE/TKE/SEU": "duodecimal",
"TKAOU/WOE/TKE": "duodecimal",
"TKAOU/WOE/TKES": "duodecimal",
"TKAOU/WOD": "duodenal",
"TKAOUP/HREU": "duplicates",
"TKAOUP/HREUS": "duplicity",
"TKAOUPL": "dummkopf",
"TKAOUPL/KAEUT": "duplicator",
"TKAOUPS": "dupcia",
"TKAOUB": "dubious",
"TKAOUT/KWREU": "dutiful",
"TKAOUS": "ducing",
"TKAOPLS": "doomsday",
"TKAOB": "dooby",
"TKAOT/TKAOT": "doot-doot-doot",
"TKAE": "daemon",
"TKAEU/TO*": "day-to-day",
"TKAEU/KWREU": "deities",
"TKAEUPBT": "daintiness",
"TKAEUS": "daisy",
"TKAUF": "dauphin",
"TKAULT": "dalteparin",
"TKAUD": "dawdled",
"TKAF": "daffiness",
"TKAFLG": "dazzlingly",
"TKAR/SKWRAOE": "darjeeling",
"TKAR": "darby",
"TKAR/KWRAOU/TPHA": "darunavir",
"TKAR/KWRAOU": "darunavir",
"TKAR/KWRAOUPB": "darunavir",
"TKARPBD": "darndest",
"TKARBG/KWREPB": "darkener",
"TKAPB": "daniel",
"TKAPB/TKE/HRAOEU": "dandelion",
"TKAPB/TKE": "dandelion",
"TKAPB/TKEU": "dandify",
"TKAPBD/HRAOEU": "dandelion",
"TKABG": "dacro",
"TKABGT": "dactyl",
"TKAL": "dalmatian",
"TKAS": "dastards",
"TKAD/TKPWUPL": "dadgummit",
"TKAZ": "dazzles",
"TKO/SEU/HREU": "docile",
"TKO/SEU": "docile",
"TKO/SEUL": "docile",
"TKO/KAOU/TKRA": "docudrama",
"TKO/KAOU": "documented",
"TKO/KAOU/PHEPB/TAEUR": "documentary",
"TKO/KAOU/PHEPB": "documentary",
"TKO/KAOU/-PLT/KWRAEUR": "documentary",
"TKO/KAOUPLT/KWRAEUR": "documentary",
"TKO/PHEU": "dominantly",
"TKO/PHEU/SEU": "domiciliation",
"TKO/PHEU/SEU/HREU": "domiciliation",
"TKO/PHEU/SEUL": "domiciliation",
"TKO/PHEU/TPHAEU": "dominatrix",
"TKO/PHEU/PHAPBT": "dominantly",
"TKO/PHES": "domestic",
"TKO/PEL": "doppelgänger",
"TKO/PEL/TKPWAPB": "doppelgänger",
"TKO/PEL/TKPWAPBG": "doppelgänger",
"TKO*PL": "competence",
"TKOE/SEU/PHE": "dosimetry",
"TKOE/SEU": "dosimetry",
"TKOE/SEUPL": "dosimetry",
"TKOE/TKE/KA/HAOE": "dodecahedron",
"TKOE/TKE/KA": "dodecahedron",
"TKOE/TKE": "dodecahedron",
"TKOE/TKEBG/HAOE": "dodecahedron",
"TKOE/TKEBG": "dodecahedron",
"TKOE/TKEBG/HAOED": "dodecahedron",
"TKOE/TPHAEU": "donative",
"TKOE/PHEUPB": "dominion",
"TKOE/PHEFT": "domesticus",
"TKOE/PHES/TEU": "domesticus",
"TKOE/PHES": "domesticity",
"TKOE/PHES/TEUBG/KWRAL": "domestically",
"TKOE/PHES/TEUS": "domesticity",
"TKOED": "deodorant",
"TKOU/WA": "dowager",
"TKOUPB/TKPWO*E": "downgoing",
"TKOUPB/TROD": "downtrodden",
"TKOUPB/TO*": "down-to-earth",
"TKOUB": "doubly",
"TKOUD": "dowdier",
"TKOR/PHAPB": "dormancy",
"TKOR/PHAPBS": "dormancy",
"TKOR/PHEU": "dormitory",
"TKOR/PHEU/TOR": "dormitory",
"TKOP": "dopiness",
"TKOP/KWREU": "dopiness",
"TKOPB/TKAOU": "conducive",
"TKOPB/TKEU": "condylar",
"TKOPB/TKEPL": "condemnee",
"TKOPB/KWREU": "donnybrook",
"TKOPL/TPHAEU": "dominatrix",
"TKOBG/TKRA": "docudrama",
"TKOBG/-PLT/KWRAEUR": "documentary",
"TKOLD": "doldrums",
"TKOG/PHAT": "dogmatically",
"TKOD": "doddle",
"TK*EUR": "direst",
"TK*EUPBG": "dinking",
"TK*EUPT": "diphthongs",
"TK*EL": "Δ{^}",
"TKE/STRAL": "decentralize",
"TKE/STRUBG": "destructive",
"TKE/STRUBGT/-BL": "destructibly",
"TKE/STAEU/PWEUL": "destabilize",
"TKE/STAEU": "destabilize",
"TKE/STAEUB": "destabilize",
"TKE/STAEUBL": "destabilize",
"TKE/SKWRE/TPHER/KWRA": "degenerative",
"TKE/SKWRE/TPHER": "degenerates",
"TKE/SKWRE": "degenerates",
"TKE/SKWREPB": "degenerates",
"TKE/SKWREPB/RA": "degenerative",
"TKE/SKRAOEUB/-BL": "describably",
"TKE/SKREUP": "descriptively",
"TKE/SKREUPT": "descriptor",
"TKE/SPAEURG": "despairingly",
"TKE/SPO": "despotic",
"TKE/SPOPBD/KWREPB": "despondency",
"TKE/SPEU": "despicable",
"TKE/SPEUBG": "despicable",
"TKE/SRA": "devaluate",
"TKE/SRA/HRAOU": "devaluate",
"TKE/SRAO*EULT": "devitalize",
"TKE/SRAOEU/TAL": "devitalize",
"TKE/SRAOEU": "devitalize",
"TKE/SRAOUL": "devaluate",
"TKE/SRAL": "devaluation",
"TKE/SROE": "devotee",
"TKE/SRE/HRO": "developers",
"TKE/SRE": "develops",
"TKE/SA/KHUR": "desaturation",
"TKE/SA": "desalinate",
"TKE/SA/HREU": "desalinate",
"TKE/SAOE": "decedent",
"TKE/SAOEU": "decipherable",
"TKE/SAOEU/TP*ER": "decipherable",
"TKE/SAOEUFR": "decipherable",
"TKE/SAOEUR": "desirables",
"TKE/SAOEUR/-BL": "desirably",
"TKE/SAOEUS": "decisiveness",
"TKE/SAOEUD/-D": "decidedly",
"TKE/SAOES": "deceased",
"TKE/SAOED": "decedent",
"TKE/SAFP": "desaturation",
"TKE/SAL": "desalinate",
"TKE/SAT": "desaturation",
"TKE/SO": "desolate",
"TKE/S*EUG": "designates",
"TKE/S*EUG/TPHAEU": "designator",
"TKE/S*EUG/TPHAEUT": "designator",
"TKE/SE": "decelerates",
"TKE/SE/HRER": "decelerates",
"TKE/SEU/TKAOU": "deciduous",
"TKE/SEU/TKER/KWRA": "desideratum",
"TKE/SEU/TKER": "desideratum",
"TKE/SEU/HRAOE": "deciliter",
"TKE/SEU/HREU": "deciliter",
"TKE/SEUG": "designates",
"TKE/SEUG/TPHAEU": "designator",
"TKE/SEUD": "desideratum",
"TKE/SEUD/RA": "desideratum",
"TKE/SERG": "desegregation",
"TKE/SEP": "deceptive",
"TKE/SEPB": "decentralize",
"TKE/SEPB/TRAL": "decentralize",
"TKE/SEPBS": "desensitize",
"TKE/SEPT/KWREUF": "deceptively",
"TKE/SEL": "decelerates",
"TKE/SEG": "desegregation",
"TKE/SEG/RE": "desegregation",
"TKE/SUL": "desultory",
"TKE/SUL/TOR": "desultory",
"TKE/TKPWRA/TKA": "degradative",
"TKE/TKPWRA": "degranulation",
"TKE/TKPWRA/TPHAOU": "degranulation",
"TKE/TKPWRAEU": "degradate",
"TKE/TKPWRAEUD/A*T": "degradative",
"TKE/TKPWRAPB": "degranulation",
"TKE/TKPWRAD": "degradate",
"TKE/TKPWUFT": "degustation",
"TKE/TKPWUS": "degustation",
"TKE/TKEU/KA": "dedicatory",
"TKE/TKEU": "dedicate",
"TKE/TKEU/KA/TOR": "dedicatory",
"TKE/TKEPB/TEPBS": "dependencies",
"TKE/TKEPB": "dependencies",
"TKE/TKUBG": "deductive",
"TKE/TPHRAG": "deflagrate",
"TKE/TPHAEU/KHUR": "denaturation",
"TKE/TPHAEU": "denaturation",
"TKE/TPHAEUFP": "denaturation",
"TKE/TPHAGS/KWRAL": "denationalize",
"TKE/TPHAGS": "denationalize",
"TKE/TPHAT": "denaturation",
"TKE/TPHO/PHEU/TPHAEU": "denominator",
"TKE/TPHO/PHEU": "denominator",
"TKE/TPHO": "denominator",
"TKE/TPHO/PHEU/TPHAEUT": "denominator",
"TKE/TPHOUPB": "denoument",
"TKE/TPHOPL/TPHAEU": "denominator",
"TKE/TPHOPL": "denominator",
"TKE/TPHOPL/TPHAEUT": "denominator",
"TKE/TPHE": "denegation",
"TKE/TPHEU": "denigrate",
"TKE/TPHEU/TKPWRA": "denigratory",
"TKE/TPHEU/TKPWRA/TOR": "denigratory",
"TKE/TPHEFRB": "denervate",
"TKE/TPHUPBS/KWRA": "denunciatory",
"TKE/TPHUPBS": "denunciate",
"TKE/TPHUPBS/KWRA/TOR": "denunciatory",
"TKE/TPA": "defamation",
"TKE/TPA/PHA": "defamatory",
"TKE/TPA/PHA/TOR": "defamatory",
"TKE/TPAOE": "defeasance",
"TKE/TPAPL": "defamatory",
"TKE/TPAL": "defalcation",
"TKE/TPOEL": "defoliant",
"TKE/TPOR": "deformation",
"TKE/TPOL": "defoliant",
"TKE/TPE/TPHE": "defenestration",
"TKE/TPE": "defenestration",
"TKE/TPE/TPHES": "defenestration",
"TKE/TPEU/SHEPB": "deficiencies",
"TKE/TPEU": "definite",
"TKE/TPEU/TPHEU": "definitively",
"TKE/TPEU/TPHEUGS/KWRAL": "definitionally",
"TKE/TPEU/TPHEUT/KWREUF": "definitively",
"TKE/TPEURB/KWREPB": "deficiencies",
"TKE/TPEURB": "defibrillate",
"TKE/TPEURB/HRAEU": "defibrillator",
"TKE/TPEUB/REU/HRAEU": "defibrillator",
"TKE/TPEUB/REU": "defibrillate",
"TKE/TPEUB": "defibrillate",
"TKE/TPEUBG": "defectively",
"TKE/TPEUBGT/KWREUF": "defectively",
"TKE/TPEUBGT": "defectively",
"TKE/TPEPB": "defendants",
"TKE/TPEBG": "defectively",
"TKE/TPEBG/TEUF": "defectively",
"TKE/TRAOEU": "detritus",
"TKE/TRABG": "detractor",
"TKE/TREU": "detriment",
"TKE/TREU/PHEPB": "detrimental",
"TKE/TAOER": "deteriorate",
"TKE/TAOER/KWROR": "deteriorate",
"TKE/TAEU": "detainee",
"TKE/TO": "detonate",
"TKE/TOE": "detonate",
"TKE/TOBG/SEU/TPAOEU": "detoxification",
"TKE/TOBG/SEU": "detoxicative",
"TKE/TOBG": "detoxicative",
"TKE/TOBG/SEU/TPEU": "detoxification",
"TKE/TOBG/SEU/KAT": "detoxicative",
"TKE/TOBGS/KAT": "detoxicative",
"TKE/TE": "detemir",
"TKE/TER/PHEU/TPHA": "determinacy",
"TKE/TER/PHEU": "determinism",
"TKE/TERPBLG": "detergent",
"TKE/TERPL": "determinate",
"TKE/TEBG": "detectives",
"TKE/KPEPB": "decompensation",
"TKE/KWRA/PHEU": "deaminate",
"TKE/KWRA": "deaminate",
"TKE/KWRAPL": "deaminate",
"TKE/KWREU": "deities",
"TKE/KHRA/PHA": "declamatory",
"TKE/KHRA": "declamatory",
"TKE/KHRA/PHA/TOR": "declamatory",
"TKE/KHRAEUR/KWRA": "declarative",
"TKE/KHRAEUR/KWRA/TOR": "declaratory",
"TKE/KHRAEUT": "decollator",
"TKE/KHRAR": "declarative",
"TKE/KHRAR/KWRA/TOR": "declaratory",
"TKE/KHRAR/KWRA": "declarative",
"TKE/KHRAPL": "declamatory",
"TKE/KHRAS": "declassify",
"TKE/KHROR/KWRAOEUZ": "decolorizer",
"TKE/KHROR": "decolorizer",
"TKE/KHREU": "declination",
"TKE/KHREUF": "declivity",
"TKE/KRE": "decrement",
"TKE/KREU/PHEU/TPHAL": "decriminalize",
"TKE/KREU/PHEU": "decriminalize",
"TKE/KREU": "decriminalize",
"TKE/KREUPL/TPHAL": "decriminalize",
"TKE/KREUPL": "decriminalize",
"TKE/KA/TPHO": "decanoate",
"TKE/KA/TPHOE": "decanoate",
"TKE/KA/TPEU": "decaffeinated",
"TKE/KA/PEU": "decapitate",
"TKE/KA/PEP": "decapeptide",
"TKE/KAOU/PWEU": "decubitus",
"TKE/KAOU": "decoupage",
"TKE/KAOUB": "decubitus",
"TKE/KA*T": "decathlon",
"TKE/KAP": "decapitate",
"TKE/KAL/SEU": "decalcification",
"TKE/KAL/SEU/TPEU": "decalcification",
"TKE/KALS": "decalcification",
"TKE/KALS/TPEU": "decalcification",
"TKE/KO/HROR/KWRAOEUZ": "decolorizer",
"TKE/KO/HROR": "decolorizer",
"TKE/KO*PL": "decompensation",
"TKE/KO*PL/KWREPB": "decompensation",
"TKE/KOE/HRAEU": "decollator",
"TKE/KOE/HRAEUT": "decollator",
"TKE/KOED": "decoder",
"TKE/KOR/TEU": "decorticate",
"TKE/KOR/KWRA": "decoratively",
"TKE/KOR/KWRAEU": "decorator",
"TKE/KOR/KWRAT": "decoratively",
"TKE/KORT": "decorticate",
"TKE/KOPB/SKWREFT": "decongestant",
"TKE/KOPB": "decongestant",
"TKE/KOPB/SKWRES": "decongestant",
"TKE/KOPL": "decompensation",
"TKE/KOPL/PEPB": "decompensation",
"TKE/KUS": "decussation",
"TKE/PWRAOEUD": "debridement",
"TKE/PWAOU": "debutante",
"TKE/PWAUFP/*ER": "debauchery",
"TKE/PWABG": "debacles",
"TKE/PW*UPBG": "debunker",
"TKE/PWEU/HREU": "debility",
"TKE/PWEU": "debility",
"TKE/PWEUL": "debility",
"TKE/PWEPB": "debentures",
"TKE/PHRAL": "demoralized",
"TKE/PHA": "demagogue",
"TKE/PHAR": "demarcate",
"TKE/PHARBG": "demarcate",
"TKE/PHAG/TPHET": "demagnetization",
"TKE/PHAG": "demagnetization",
"TKE/PHAG/TPHET/KWRAOEUZ": "demagnetization",
"TKE/PHO/TKPWRAF": "demographers",
"TKE/PHO/TKAOU": "demodulation",
"TKE/PHO/KRA": "democratic",
"TKE/PHO/KRA/TEUBG/KWRAL": "democratically",
"TKE/PHOE/TKPWRAF": "demography",
"TKE/PHOE/KRA": "democratic",
"TKE/PHOE/KRA/TEUBG/KWRAL": "democratically",
"TKE/PHOE/KRAT": "democratically",
"TKE/PHOE/PWEU": "demobilization",
"TKE/PHOE/PWEU/HRAOEUZ": "demobilization",
"TKE/PHOE/PWEUL": "demobilization",
"TKE/PHOE/PWEUL/KWRAOEUZ": "demobilization",
"TKE/PHOE/-BL": "demobilized",
"TKE/PHOEB": "demobilized",
"TKE/PHOEBL": "demobilized",
"TKE/PHOET": "demoting",
"TKE/PHOR/KWRAL": "demoralized",
"TKE/PHOR": "demoralized",
"TKE/PHORL": "demoralized",
"TKE/PHORG": "demography",
"TKE/PHOPB/STRA": "demonstrably",
"TKE/PHOPB": "demonstrative",
"TKE/PHOPB/STRAEU": "demonstrative",
"TKE/PHOPB/STRAEUT": "demonstrator",
"TKE/PHOPB/STRAB": "demonstrably",
"TKE/PHOPB/STRAT": "demonstrative",
"TKE/PHOPBS/TRA": "demonstrably",
"TKE/PHOPBS": "demonstrably",
"TKE/PHOPBS/TRAB": "demonstrably",
"TKE/PHOBG/RA": "democratize",
"TKE/PHOBG": "democratize",
"TKE/PHOL": "demolition",
"TKE/PHOD": "demodulation",
"TKE/PHEU/TPHER/KWRAL": "demineralize",
"TKE/PHEU/TPHER": "demineralize",
"TKE/PHEU/HREU": "demilitarize",
"TKE/PHEU/HREU/TAR": "demilitarize",
"TKE/PHEUFT": "demystify",
"TKE/PHEURPBL": "demineralize",
"TKE/PHEUPB/RAL": "demineralize",
"TKE/PHEUL": "demilitarize",
"TKE/PHEUL/TAR": "demilitarize",
"TKE/PRA": "deprecatory",
"TKE/PRA/SREU": "depravity",
"TKE/PRA/KA/TOR": "deprecatory",
"TKE/PRA/KA": "deprecatory",
"TKE/PRAOE": "depreciable",
"TKE/PRAEUF": "depravity",
"TKE/PRAF": "depravity",
"TKE/PRE": "deprecating",
"TKE/PRE/KA": "deprecatory",
"TKE/PRE/KA/TOR": "deprecatory",
"TKE/PREU": "deprivation",
"TKE/PRERB": "depreciates",
"TKE/PAOU": "deputies",
"TKE/PAR": "departure",
"TKE/PO": "depopulate",
"TKE/PO/SEU/TAEUR": "depositary",
"TKE/PO/SEU": "depositories",
"TKE/PO/SEU/TOR": "depositories",
"TKE/PO/PAOU": "depopulate",
"TKE/POE/HRAR": "depolarize",
"TKE/POEPB": "deponent",
"TKE/POEL": "depolarize",
"TKE/POFT": "depositor",
"TKE/POR": "deplorably",
"TKE/PORBL": "deplorably",
"TKE/POP": "depopulate",
"TKE/POL": "depolarize",
"TKE/POS": "depositories",
"TKE/PEU/HRA": "depilatory",
"TKE/PEU": "depilate",
"TKE/PEU/HRA/TOR": "depilatory",
"TKE/PER/SO*PB/KWRAL": "depersonalized",
"TKE/PER/SO*PB": "depersonalized",
"TKE/PER": "depersonalized",
"TKE/PER/SO*PBL": "depersonalized",
"TKE/PER/SOPB/KWRAL": "depersonalized",
"TKE/PER/SOPB": "depersonalized",
"TKE/PER/SOPBL": "depersonalized",
"TKE/PERPB/KWRAL": "depersonalized",
"TKE/PERPB": "depersonalized",
"TKE/PERPBL": "depersonalized",
"TKE/PERS/TPHAL": "depersonalized",
"TKE/PERS": "depersonalized",
"TKE/PEPB/TKEPB": "dependencies",
"TKE/PEPB": "dependence",
"TKE/HRA/PHEU": "delaminate",
"TKE/HRA": "delamination",
"TKE/HRA/PHEUPB": "delamination",
"TKE/HRAOER": "delirious",
"TKE/HRAOU": "delusive",
"TKE/HRAOUS": "delusive",
"TKE/HRAPL": "delaminate",
"TKE/HRE/TKPWA": "delegatory",
"TKE/HRE": "deleterious",
"TKE/HRE/TKPWA/TOR": "delegatory",
"TKE/HRE/TKPWAEU": "delegator",
"TKE/HRE/TAOER": "deleterious",
"TKE/HREU/KA": "delicatess",
"TKE/HREU/PWER": "deliberate",
"TKE/HREU/PHEU": "delimiter",
"TKE/HREUPB": "delinquence",
"TKE/HREUPBG": "delinquence",
"TKE/HREUB": "deliberately",
"TKE/HREUBG": "delicto",
"TKE/HREBGT": "delectable",
"TKE/HAOEU": "dehydrated",
"TKE/HAOU/PHAPB": "dehumanize",
"TKE/HAOU": "dehumidifiers",
"TKE/HAOU/PHEU/TKEU": "dehumidifiers",
"TKE/HAOU/PHEU": "dehumidifiers",
"TKE/HAOU/PHEUD": "dehumidifiers",
"TKE/HAOUPL": "dehumanization",
"TKE/HAOUPL/KWRAOEUZ": "dehumanization",
"TKE/HAOUPLD": "dehumidifiers",
"TKE/HEUS": "dehiscence",
"TKE/RAOEU": "derisive",
"TKE/RAOEUS": "derisive",
"TKE/RO/TKPWA": "derogatoriness",
"TKE/RO": "derogate",
"TKE/RO/TKPWA/TOR": "derogatoriness",
"TKE/ROE": "derogate",
"TKE/RE/TKPWAOU": "deregulates",
"TKE/RE": "deregulates",
"TKE/REU/SRA": "derivatives",
"TKE/REU": "derisive",
"TKE/REU/SRAT": "derivatives",
"TKE/REUF": "derivative",
"TKE/REUS": "derisive",
"TKE/REG": "deregulates",
"TKE/OE/TKOR": "deodorant",
"TKE/OE": "deodorant",
"TKE/EFPL": "de-emphasis",
"TKE/EPL/TPA*": "de-emphasis",
"TKE/EPL": "de-emphasis",
"TKE/ES": "de-escalate",
"TKE/ES/KA": "de-escalate",
"TKEU/SKWREU": "digitorum",
"TKEU/SKWREU/TOR": "digitorum",
"TKEU/SKWREUT/KWRAL": "digitally",
"TKEU/SKWRER/KWRAOE": "didgeridoo",
"TKEU/SKWRER": "didgeridoo",
"TKEU/SKWRER/KWREU": "didgeridoo",
"TKEU/SKWRES": "digestive",
"TKEU/SRAOEU": "divinum",
"TKEU/SRAOEUS": "divisive",
"TKEU/SRAEU": "divalent",
"TKEU/SREU": "divinity",
"TKEU/SREU/TPHEU": "divinity",
"TKEU/SREUPB": "divinity",
"TKEU/SREUS": "divisible",
"TKEU/SRER": "divergence",
"TKEU/SRERPBLG/-PBS": "divergency",
"TKEU/SRERGS/KWRAEUR": "diversionary",
"TKEU/SRES/TEU": "divestitures",
"TKEU/SRES": "divestitures",
"TKEU/SRULG": "divulging",
"TKEU/SAOEUP": "disciples",
"TKEU/SAFT": "disastrous",
"TKEU/SAS": "disastrous",
"TKEU/SO/PEUR": "disopyramide",
"TKEU/SO": "dissolute",
"TKEU/SOE": "dissociate",
"TKEU/SOERB": "dissociate",
"TKEU/SOES/KWRA": "dissociative",
"TKEU/SOES": "dissociative",
"TKEU/SOES/KWRAEU": "dissociative",
"TKEU/SOES/KWRAEUT": "dissociative",
"TKEU/SE/PHEU": "disseminated",
"TKEU/SE": "disseminated",
"TKEU/SEU": "dissipated",
"TKEU/SEU/PHREU/TPHAEUR": "disciplinary",
"TKEU/SEU/PHREU": "disciplinary",
"TKEU/SEUP": "disciplines",
"TKEU/SER": "disservice",
"TKEU/SEPB": "dissenters",
"TKEU/SEPL": "dissembles",
"TKEU/TKPWRA/PHA": "diagrammatic",
"TKEU/TKPWRA": "diagrammatic",
"TKEU/TKPWRE": "digressive",
"TKEU/TKABG": "didactic",
"TKEU/TKABGT": "didactical",
"TKEU/TPRABG": "diffractive",
"TKEU/TPRABGT": "diffractive",
"TKEU/TPREPB": "differential",
"TKEU/TPE": "differential",
"TKEU/TPE/REPB": "differential",
"TKEU/TPEU": "diffident",
"TKEU/TPER/KWREPB": "differential",
"TKEU/TPER/KWREPB/SHEU": "differentiation",
"TKEU/KWRA/STO": "diastolic",
"TKEU/KWRA/STOL": "diastolic",
"TKEU/KWRA/STE": "diastema",
"TKEU/KWRA/SPOR": "diaspora",
"TKEU/KWRA/S*E": "diazepam",
"TKEU/KWRA/TKPWRA/PHA/TEU": "diagrammatical",
"TKEU/KWRA/TKPWRA/PHA": "diagrammatic",
"TKEU/KWRA/TKPWRA": "diagrammatic",
"TKEU/KWRA/TKPWO": "diagonals",
"TKEU/KWRA/TKO": "diadocho",
"TKEU/KWRA/TPHOES": "diagnosis",
"TKEU/KWRA/TPA*": "diaphanous",
"TKEU/KWRA/TPA*PB": "diaphanous",
"TKEU/KWRA/TPO*/RAOE": "diaphoresis",
"TKEU/KWRA/TPO*": "diaphoretic",
"TKEU/KWRA/TPO*/RE": "diaphoretic",
"TKEU/KWRA/THAOE": "diathesis",
"TKEU/KWRA/KRO": "diachronic",
"TKEU/KWRA/KROPB": "diachronic",
"TKEU/KWRA/KREU": "diacritic",
"TKEU/KWRA/PWAOE": "diabetics",
"TKEU/KWRA/PWO/HREU": "diabolical",
"TKEU/KWRA/PWO": "diabolic",
"TKEU/KWRA/PWOL": "diabolical",
"TKEU/KWRA/PWE": "diabetic",
"TKEU/KWRA/PHAOE": "diameter",
"TKEU/KWRA/PHAPB": "diamante",
"TKEU/KWRA/PHE": "diameter",
"TKEU/KWRA/PHE/TREUBG/KWRAL": "diametrically",
"TKEU/KWRA/PHET": "diametric",
"TKEU/KWRA/PHET/REUBG/KWRAL": "diametrically",
"TKEU/KWRA/HREU": "dialysis",
"TKEU/KWRA/HREBG": "dialectician",
"TKEU/KWRA/HREBG/TEU": "dialectical",
"TKEU/KWRAEUR": "diary",
"TKEU/KWRAR/KWRAOE": "diarrhea",
"TKEU/KWRAR": "diary",
"TKEU/KWRAPL": "diameter",
"TKEU/KWRAB": "diablo",
"TKEU/KWRAL": "dialysis",
"TKEU/KWRAG/TKPWO/TPHAL": "diagonally",
"TKEU/KWRAG/TKPWO": "diagonally",
"TKEU/KWRAG": "diagrammed",
"TKEU/KWRAG/TPHOFT": "diagnostically",
"TKEU/KWRAG/TPHOS/TEU/KAL": "diagnostically",
"TKEU/KWRAG/TPHOS/TEU": "diagnostically",
"TKEU/KWRAG/TPHOS": "diagnosable",
"TKEU/KWRAG/TPHOS/TEUBG/KWRAL": "diagnostically",
"TKEU/KWRAS": "diaspora",
"TKEU/KWRAS/POR": "diaspora",
"TKEU/KWRAZ": "diazepam",
"TKEU/KWROP": "diopters",
"TKEU/KWROBG": "dioxide",
"TKEU/KWROBGS": "dioxin",
"TKEU/KWRE/TE": "dietetics",
"TKEU/KWRE": "dietetics",
"TKEU/KHOT": "dichotomy",
"TKEU/KROE": "dichroic",
"TKEU/KO/TO": "dichotomous",
"TKEU/KO": "dichotomous",
"TKEU/KOT": "dichotomous",
"TKEU/PWAOE": "diabetes",
"TKEU/PHRO/PHA": "diplomatic",
"TKEU/PHRO": "diplomas",
"TKEU/PHAOEU/KWRAR": "dimyarian",
"TKEU/PHAOEU": "dimyarian",
"TKEU/PHOR": "dimorphic",
"TKEU/PHEU/TPHAOU": "diminution",
"TKEU/PHEU": "diminishes",
"TKEU/PHEUPB": "diminution",
"TKEU/PHER": "dimeric",
"TKEU/HRA": "dilapidated",
"TKEU/HRA/TOR": "dilatory",
"TKEU/HRA/PEU": "dilapidated",
"TKEU/HRAOU": "diluent",
"TKEU/HRAOUF": "diluvial",
"TKEU/HRAP": "dilapidated",
"TKEU/HRE": "dilemma",
"TKEU/HREU/TKA": "dillydally",
"TKEU/HREU/TKA*": "dillydally",
"TKEU/REUPBLG": "dirigibles",
"TKEU/REBG/TO": "directories",
"TKEU/REBG": "directives",
"TKEU/A/KO": "diatomic",
"TKEU/A": "diatomic",
"TKEU/AOE/HREBG": "dielectric",
"TKEU/AOE": "dielectric",
"TKEU/OBG": "dioxin",
"TKEU/E/HREBG": "dielectric",
"TKEU/E": "dielectric",
"TKEU/UR": "diurnal",
"TKEUF/REPB": "differential",
"TKEUFR/KWREPB": "differential",
"TKEUFRPB": "differentials",
"TKEUFRPB/SHEU": "differentiates",
"TKEUFRPBT/SHEU": "differentiability",
"TKEUFPB": "divinity",
"TKEUFBG/TKPWRAF": "discography",
"TKEURS": "dissertate",
"TKEUP/THAOER": "diptheria",
"TKEUP/THER": "diptheria",
"TKEUP/PHROE": "diplomas",
"TKEUP/HROEP": "diplopia",
"TKEUPBLG": "didgeridoo",
"TKEUPBLG/TOR": "digitorum",
"TKEUPBLG/RAOE": "didgeridoo",
"TKEUPBLG/REU": "didgeridoo",
"TKEUPBG/A": "ding-a-ling",
"TKEUBG/TA/TOR": "dictatorial",
"TKEUBGS/KWRAEUR": "dictionaries",
"TKEUG/TPHEU": "dignity",
"TKEUG/TPEU": "dignified",
"TKEUT": "ditty",
"TKEUS/SKWR*UPBG": "disjunctive",
"TKEUS/SPHREU/TPHAEUR": "disciplinary",
"TKEUS/SPHREU": "disciplinary",
"TKEUS/SPHREUPB": "disciplinary",
"TKEUS/SA/TEUS": "dissatisfaction",
"TKEUS/SA": "dissatisfaction",
"TKEUS/SAT": "dissatisfying",
"TKEUS/SATS": "dissatisfaction",
"TKEUS/SO": "dissolute",
"TKEUS/SOE": "dissociated",
"TKEUS/SOERB": "dissociated",
"TKEUS/SOES": "disassociate",
"TKEUS/SEU/PHAOU": "dissimulate",
"TKEUS/SEU": "dissimilar",
"TKEUS/SEU/PHEU": "dissimilar",
"TKEUS/SER": "disservice",
"TKEUS/SEPL": "dissemination",
"TKEUS/TKPWRAE": "disagreeable",
"TKEUS/TKPWAOEUZ": "disguises",
"TKEUS/TKPWUFT": "disgustedly",
"TKEUS/TKPWUFT/-D": "disgustedly",
"TKEUS/TKPWUFTD": "disgustedly",
"TKEUS/TKPWUPBT": "disgruntles",
"TKEUS/TKAEUPB/-FL": "disdainfully",
"TKEUS/TPAEU": "disfavor",
"TKEUS/TPEU": "disfigured",
"TKEUS/TRAOUB": "distributive",
"TKEUS/TRABG": "distractor",
"TKEUS/TRABGT": "distracting",
"TKEUS/TREU/PWAOU": "distributive",
"TKEUS/TREU": "distributed",
"TKEUS/TAEUFT": "distasteful",
"TKEUS/TOE/PEU": "dystopian",
"TKEUS/TOE": "dystopian",
"TKEUS/TOEP": "dystopian",
"TKEUS/TOEPB": "dystonias",
"TKEUS/TOP": "dystopic",
"TKEUS/TOPB": "dystonic",
"TKEUS/T*EUPBG": "distinctively",
"TKEUS/TEUPBG": "distinguishes",
"TKEUS/KWRO": "dissonance",
"TKEUS/KWRE/PHEU": "disseminated",
"TKEUS/KWRE": "disseminated",
"TKEUS/KWREU": "dissidence",
"TKEUS/KWRER": "dissertation",
"TKEUS/KWREPB/TAPBG": "disentangling",
"TKEUS/KWREPB/TER": "dysentery",
"TKEUS/KWREPL": "dissembles",
"TKEUS/KWAU/HREU": "disqualification",
"TKEUS/KWAU": "disqualification",
"TKEUS/KWAU/HREU/TPEU": "disqualification",
"TKEUS/KWAUL": "disqualification",
"TKEUS/KWAUL/TPEU": "disqualification",
"TKEUS/KWEU": "disquisition",
"TKEUS/KHRA/PHA": "disclamatory",
"TKEUS/KHRA": "disclamation",
"TKEUS/KHRA/PHA/TOR": "disclamatory",
"TKEUS/KHRAEU/PHA": "disclamatory",
"TKEUS/KHRAEU": "disclamation",
"TKEUS/KHRAEU/PHA/TOR": "disclamatory",
"TKEUS/KHRAPL": "disclamation",
"TKEUS/KHRAPL/TOR": "disclamatory",
"TKEUS/KHROE": "disclosures",
"TKEUS/KRE": "discrepancies",
"TKEUS/KRE/TKEUT": "discrediting",
"TKEUS/KRE/PAPB": "discrepancies",
"TKEUS/KRE/PAPBS": "discrepancies",
"TKEUS/KREU/PHEU/TPHA": "discriminative",
"TKEUS/KREU/PHEU": "discriminate",
"TKEUS/KREU": "discriminable",
"TKEUS/KREU/PHEU/TPHA/TOR": "discriminatory",
"TKEUS/KREU/PHEUPB": "discriminable",
"TKEUS/KREUPL/TPHA": "discriminative",
"TKEUS/KREUPL": "discriminate",
"TKEUS/KREUPL/TPHA/TOR": "discriminatory",
"TKEUS/KREP": "discrepancies",
"TKEUS/KREGS/KWRAEUR": "discretionary",
"TKEUS/KO": "discolors",
"TKEUS/KO/TKPWRAF": "discography",
"TKEUS/KOE/TKPWRAF": "discography",
"TKEUS/KOUPBT": "discounting",
"TKEUS/KOR": "discouraged",
"TKEUS/KOR/KWRAPBLG": "discouraging",
"TKEUS/KORPBLG": "discouraging",
"TKEUS/KORG": "discography",
"TKEUS/KOPB/SO/HRAT": "disconsolately",
"TKEUS/KOPB/SO": "disconsolately",
"TKEUS/KOPB": "discontent",
"TKEUS/KOPB/TEU": "discontinues",
"TKEUS/KOPB/TEU/TPHAOU/WEU": "discontinuity",
"TKEUS/KOPB/TEUPB": "discontinuance",
"TKEUS/KOPBT": "discontinuity",
"TKEUS/KOPBS/HRAT": "disconsolately",
"TKEUS/KOPBS": "disconsolately",
"TKEUS/KOPL": "discombobulate",
"TKEUS/KOPL/TPEU": "discomfiture",
"TKEUS/KOPL/PWO/PWAOU": "discombobulate",
"TKEUS/KOPL/PWO": "discombobulate",
"TKEUS/KOPL/PWOB": "discombobulate",
"TKEUS/KURPBLG": "discouraging",
"TKEUS/KURT": "discourteous",
"TKEUS/PWAR": "disbarment",
"TKEUS/PWE": "disbelieving",
"TKEUS/PWUR": "disburement",
"TKEUS/PHRAEU": "dysplasia",
"TKEUS/PHRAEURB": "dysplasia",
"TKEUS/PHRAFT": "dysplastic",
"TKEUS/PHRAS": "dysplastic",
"TKEUS/PHREU/TPHAEUR": "disciplinary",
"TKEUS/PHREU": "disciplinary",
"TKEUS/PHREUPB/KWRAEUR": "disciplinary",
"TKEUS/PHAPBT": "dismantles",
"TKEUS/PHOR": "dysmorph",
"TKEUS/PRO/PORGS": "disproportionally",
"TKEUS/PRO": "disproportionally",
"TKEUS/PROE/PORGS": "disproportionally",
"TKEUS/PROE": "disproportionally",
"TKEUS/PRORGS": "disproportionally",
"TKEUS/PROGS": "disproportionately",
"TKEUS/PAOU": "disputant",
"TKEUS/PAOU/TAEU": "disputatious",
"TKEUS/PAOU/TAEURB": "disputatious",
"TKEUS/PAOUT": "disputable",
"TKEUS/PAEUR": "disparage",
"TKEUS/PAR": "disparate",
"TKEUS/POEZ": "disposing",
"TKEUS/PEUR": "disopyramide",
"TKEUS/PER": "dispersal",
"TKEUS/PEPB/SAEUR": "dispense",
"TKEUS/PEPB": "dispensation",
"TKEUS/PEPBS/KWRAEUR": "dispensary",
"TKEUS/HRAOEUBG": "disliking",
"TKEUS/HROE": "dislocation",
"TKEUS/HROPBLG": "dislodging",
"TKEUS/HREBG": "dyslexics",
"TKEUS/HREBGS": "dyslexics",
"TKEUS/HAR/PHO": "disharmony",
"TKEUS/HAR": "disharmony",
"TKEUS/HARPL": "disharmony",
"TKEUS/HART": "dishearten",
"TKEUS/HOPB": "dishonors",
"TKEUS/R*EUT": "dysrhythm",
"TKEUS/RE/SPEBGT": "disrespectful",
"TKEUS/RE": "disrepair",
"TKEUS/RE/TKPWARD": "disregarding",
"TKEUS/RE/PAOU": "disreputable",
"TKEUS/RUP": "disruptive",
"TKEUS/RUPT": "disrupting",
"TKEUS/R-PT": "disrespectful",
"TKEUS/A/SROU": "disavowment",
"TKEUS/A": "disarray",
"TKEUS/A/SOES": "disassociation",
"TKEUS/A/SEPL": "disassembled",
"TKEUS/A/PROFG": "disapprovingly",
"TKEUS/A/HROU": "disallowance",
"TKEUS/AR/PHA": "disarmament",
"TKEUS/AR": "disarmament",
"TKEUS/ARP": "disapprobation",
"TKEUS/AP/RO": "disapprobation",
"TKEUS/AP": "disapprobation",
"TKEUS/AP/ROE": "disapprobation",
"TKEUS/APL/PWAEUG": "disambiguator",
"TKEUS/APL": "disambiguation",
"TKEUS/APL/PWEU/TKPWAOU/WAEU": "disambiguator",
"TKEUS/APL/PWEU/TKPWAOU": "disambiguate",
"TKEUS/APL/PWEU": "disambiguate",
"TKEUS/APL/PWEUG/WAEU": "disambiguator",
"TKEUS/APL/PWEUG": "disambiguation",
"TKEUS/AG/RE": "disaggregation",
"TKEUS/AG": "disaggregation",
"TKEUS/AD/SRAPB/TAEUPBLG": "disadvantageous",
"TKEUS/AD/SRAPB": "disadvantage",
"TKEUS/AD": "disadvantage",
"TKEUS/OE/PWAOED": "disobedience",
"TKEUS/OE": "disobeys",
"TKEUS/OR/TKPWA": "disorganize",
"TKEUS/OR": "disorient",
"TKEUS/OR/TKPWAPB": "disorganization",
"TKEUS/OR/TKPWAPB/KWRAOEUZ": "disorganization",
"TKEUS/*ER": "dissertation",
"TKEUS/EU/HRAOUBGS": "disillusionment",
"TKEUS/EU": "disillusion",
"TKEUS/EUPB/SKWRE/TPHAOU": "disingenuous",
"TKEUS/EUPB/SKWRE": "disingenuous",
"TKEUS/EUPB": "disinherit",
"TKEUS/EUPB/SKWREPB": "disingenuous",
"TKEUS/EUPB/TPEBG": "disinfectant",
"TKEUS/EUPB/TER": "disinterested",
"TKEUS/EUPB/HER": "disinherit",
"TKEUS/EUPBT": "disintegrate",
"TKEUS/EUPL": "disimmunity",
"TKEUS/EPB": "disenchant",
"TKEUS/EPB/TPRAPB": "disenfranchise",
"TKEUS/EPB/TAPBG": "disentangling",
"TKEUS/EPL/PWOU": "disemboweled",
"TKEUS/EPL": "disemboweled",
"TKEUZ/PERS": "dispersible",
"TKEFP": "desperation",
"TKEFPBS/KWREUF": "defensively",
"TKEFG": "designates",
"TKEFG/TPHAEU": "designator",
"TKER/KWRE": "dereliction",
"TKER/KWREU/SRA": "derivatives",
"TKER/KWREU": "derisive",
"TKER/KWREU/SRAT": "derivatives",
"TKER/KWREUF": "derivative",
"TKER/KWREUPB": "derringers",
"TKER/KWREUS": "derisive",
"TKER/PHA/TO/HRO": "dermatologic",
"TKER/PHA/TO": "dermatologic",
"TKER/PHA/TO/HROPBLG": "dermatological",
"TKER/PHA/TOL": "dermatologist",
"TKERPL/TO/HRO": "dermatologic",
"TKERPL/TO": "dermatological",
"TKERPL/TO/HROPBLG": "dermatological",
"TKERPL/TOL": "dermatologist",
"TKERBG": "decrement",
"TKERT": "detriment",
"TKEP": "deprivation",
"TKEP/KA": "deprecatory",
"TKEP/HRA": "depilatory",
"TKEP/RA": "depravation",
"TKEP/RE": "deprecate",
"TKEP/RE/KA": "deprecatory",
"TKEP/RE/KA/TOR": "deprecatory",
"TKEP/REU": "deprivation",
"TKEPB/SEU/TO/PHE": "densitometry",
"TKEPB/SEU/TO": "densitometry",
"TKEPB/SEU": "densitometry",
"TKEPB/SEU/TOPL": "densitometry",
"TKEPB/TKPWRA": "denigratory",
"TKEPB/TA": "dentata",
"TKEPB/TEU": "denticulate",
"TKEPB/TEU/KAOU": "denticulate",
"TKEPB/TEUBG": "denticulate",
"TKEPB/TEUS": "dentistry",
"TKEPBS/TOPL": "densitometry",
"TKEPBD": "dendrites",
"TKEPL/STRAB": "demonstrably",
"TKEB": "debris",
"TKEBG/STER": "dexterous",
"TKEBG/TPHOE": "decanoate",
"TKEBG/KWROR": "decorated",
"TKEBG/PEP": "decapeptide",
"TKEBG/HRA": "declamation",
"TKEBG/HRAEU": "decollator",
"TKEBG/HRAEUT": "decollator",
"TKEBG/HRAR": "declaration",
"TKEBG/HREU": "declination",
"TKEBG/RA": "decoratively",
"TKEBG/RAEU": "decorator",
"TKEBG/RE": "decrement",
"TKEBGS/TER": "dexterous",
"TKEL/TKPWA": "delegatory",
"TKEL/TKPWA/TOR": "delegatory",
"TKEL/KA": "delicatess",
"TKEG/HRU": "deglutition",
"TKEG/RA/TKAEU": "degradative",
"TKEG/RA": "degradative",
"TKEG/RA/TKAEUT": "degradative",
"TKET/REU": "detriment",
"TKET/REU/PHEPB": "detrimental",
"TKET/REUPLT": "detrimental",
"TKES/TRUBG": "destructive",
"TKES/TEU": "destitute",
"TKES/KREUP": "descriptively",
"TKES/KREUPT": "descriptively",
"TKES/PHO": "desmosome",
"TKES/PO": "despotism",
"TKES/PE": "desperate",
"TKES/PEUBG": "despicable",
"TKES/PER": "desperate",
"TKES/HRAOE": "deciliter",
"TKED/KA": "dedicatory",
"TKED/KA/TOR": "dedicatory",
"TKUFP": "duchess",
"TKUR/KWRA/-BL": "durably",
"TKUR/KWRABL": "durably",
"TKUPB/SKWRE": "dungeness",
"TKUPB": "dunny",
"TKUPB/TKPWAR": "dungarees",
"TKUPB/TKUPB": "dun-dun-dun",
"TKUPBG/TKPWAR": "dungarees",
"TKUPBG/KWRAR": "dungarees",
"TKUL/SEU": "dulcimer",
"TKULT": "adulterous",
"TKULS": "dulcimer",
"TKUS": "duster",
"TPWA": "tobacco",
"TPHRA/SKWRE": "flagellum",
"TPHRA": "flamenco",
"TPHRA/SAOE": "flaccida",
"TPHRA/SAOED": "flaccida",
"TPHRA/SEU": "flaccida",
"TPHRA/TKPWRAPB": "flagrante",
"TPHRA/KHAOU": "flatulence",
"TPHRA/PWER": "flabbergast",
"TPHRA/PHA": "flammability",
"TPHRA/PHEUPB": "flamingoes",
"TPHRA/PHEUPBG": "flamingoes",
"TPHRA/PHEPB": "flamenco",
"TPHRAOU/TA": "flutamide",
"TPHRAOU/WEPB": "fluency",
"TPHRAOUPB": "influential",
"TPHRAOR/TO": "floor-to-ceiling",
"TPHRAOZ": "floozy",
"TPHRA*": "philabeg",
"TPHRA*PB": "philanthropic",
"TPHRA*PB/TRO": "philanthropic",
"TPHRA*PB/TROE": "philanthropic",
"TPHRAEU/SRO": "flavonoid",
"TPHRAEU/SROPB": "flavonoid",
"TPHRAEUF": "flavonoid",
"TPHRAUPB": "flautist",
"TPHRAUT": "flautist",
"TPHRAPBLG": "flagellum",
"TPHRAPL/PWOEU": "flamboyance",
"TPHRAB/*ER": "flabbergasted",
"TPHRAG/RAPB": "flagrante",
"TPHRAG/RAPBS": "flagrancy",
"TPHRO/KAOU": "flocculent",
"TPHRO/HREU/KAOU": "folliculi",
"TPHRO/HREU": "folliculi",
"TPHRO*/SO": "philosopher",
"TPHRO*/TKPWEU": "phlogiston",
"TPHRO*E/SO": "philosophic",
"TPHRO*G": "phlogiston",
"TPHRO*GS": "phlogiston",
"TPHRO*S": "philosopher",
"TPHROE/TEU": "flotilla",
"TPHROU": "flower",
"TPHROR": "fluoresces",
"TPHROR/KWREU": "fluorinate",
"TPHROBG/KWRAOU": "flocculent",
"TPHROBGS": "floccinaucinihilipilification",
"TPHROT": "flotsam",
"TPHR*E/PWAOEU": "phlebitis",
"TPHR*E": "phlebotomist",
"TPHR*E/PWO/TO": "phlebotomist",
"TPHR*E/PWO": "phlebotomist",
"TPHR*E/PWOT": "phlebotomist",
"TPHR*EG/PHA": "phlegmatic",
"TPHR*EG": "phlegmatic",
"TPHRE/KAEU": "flecainide",
"TPHRE": "flecainide",
"TPHREU": "flippant",
"TPHREU/PAPB": "flippancy",
"TPHREUFT": "felicity",
"TPHREUR/TAEU": "flirtatious",
"TPHREUR": "flirtation",
"TPHREUR/TAEURB": "flirtatious",
"TPHREURT/KWRAEU": "flirtatious",
"TPHREURT/KWRAEURB": "flirtatious",
"TPHREUP/KWRAPB": "flippancy",
"TPHREUPL": "flimflam",
"TPHREUPLS": "flimsiness",
"TPHREUS": "felicitous",
"TPHRERB/SKP*": "flesh-and-blood",
"TPHREPBLG/-L": "fledgling",
"TPHRU/PHA/S*EU": "flumazinil",
"TPHRU/PHA": "flumazinil",
"TPHRU/PHAZ": "flumazinil",
"TPHRUPL": "flummox",
"TPHRUBG": "fluctuates",
"TPHRUBG/KHAOU": "fluctuation",
"TPHRUBGT": "fluctuate",
"TPHRUT": "fluttery",
"TPHRUS": "flustering",
"TPHA/SREU/TKPWAEU": "navigators",
"TPHA/SREU": "navigable",
"TPHA/TKO": "nadolol",
"TPHA/TPHO/PHAOE": "nanometer",
"TPHA/TPHO/PHE": "nanometer",
"TPHA/TPHOE/SE": "nanoseconds",
"TPHA/TPHOE/TEBG/TPHO/HRO": "nanotechnology",
"TPHA/TPHOE/TEBG/TPHO": "nanotechnology",
"TPHA/TPHOE/TEBG": "nanotechnology",
"TPHA/TPHOE/TEBG/TPHOL": "nanotechnology",
"TPHA/TPHOE/PHAOE": "nanometer",
"TPHA/TPHOE/PHE": "nanometer",
"TPHA/TPHOPL": "nanometer",
"TPHA/TRAOE": "natremic",
"TPHA/TRAOEPL": "natremia",
"TPHA/TEUF": "nativity",
"TPHA/PHA": "namaste",
"TPHA/PHAS": "namaste",
"TPHA/PHOPL": "nanometer",
"TPHA/PROBG": "naproxen",
"TPHAOE/KWRAPB/TKER": "neanderthal",
"TPHAOE/KWRAPB": "neanderthal",
"TPHAOE/KWROE/HRO/SKWREU": "neologian",
"TPHAOE/KWROE/HRO": "neologian",
"TPHAOE/KWROE/HROEPBLG": "neologian",
"TPHAOE/KWROE/HREU": "neolithic",
"TPHAOE/PHA": "nematode",
"TPHAOEU/SER": "neisseria",
"TPHAOEU/SER/KWREU": "neisseria",
"TPHAOEU/TRO": "nitrogen",
"TPHAOEU/KWRA": "niacin",
"TPHAOEU/KWROE/PWEU": "niobium",
"TPHAOEU/KWROE": "niobium",
"TPHAOEU/KWROEB": "niobium",
"TPHAOEU/HEU": "nihilism",
"TPHAOEUR": "naira",
"TPHAOEURT": "nitrogen",
"TPHAOEUPB/TEU/SE": "ninety-seven",
"TPHAOEUPBT/SE": "ninety-seven",
"TPHAOEUL": "nihilist",
"TPHAOEUG": "nigrum",
"TPHAOEUGT": "nightingale",
"TPHAOEPB/TKER": "neanderthal",
"TPHAOEPB": "neanderthal",
"TPHAOEPL": "nematode",
"TPHAOEB": "inebriant",
"TPHAOU/TKPWA": "nugatory",
"TPHAOU/TKPWA/TOR": "nugatory",
"TPHAOU/TKEU": "nudibranch",
"TPHAOU/TREU": "nutriment",
"TPHAOU/TREURB": "nutritious",
"TPHAOU/TREUT": "nutritive",
"TPHAOU/KHRAOE": "nucleus",
"TPHAOU/PHA": "pneumatic",
"TPHAOU/PHAT": "pneumatically",
"TPHAOU/PHO": "pneumonic",
"TPHAOU/PHOE/TPHEU": "pneumonia",
"TPHAOU/PHOEPB": "pneumonia",
"TPHAOU/PHOPB": "pneumonic",
"TPHAOU/PHEUS/PHA": "numismatics",
"TPHAOU/PHEUS": "numismatics",
"TPHAOU/PHER/KWRA": "numerable",
"TPHAOU/PHER": "numerable",
"TPHAOU/PHER/KWRAEU": "numerator",
"TPHAOU/PHER/KWRO/HRO": "numerologist",
"TPHAOU/PHER/KWRO": "numerologist",
"TPHAOU/PHER/KWROL": "numerologist",
"TPHAOU/PHER/KWREU": "numerical",
"TPHAOU/PHEBG/TO": "pneumectomy",
"TPHAOU/PHEBG": "pneumectomy",
"TPHAOU/PHEBG/TOE": "pneumectomy",
"TPHAOU/PHEBG/TOPL": "pneumectomy",
"TPHAOU/PHEBGT": "pneumectomy",
"TPHAOU/WEUD": "fluidics",
"TPHAOUR/SUR": "neurosurgeon",
"TPHAOUR/SURPBLG": "neurosurgeon",
"TPHAOUR/TRAPBS/PHEUT": "neurotransmitters",
"TPHAOUR/TRAPBS": "neurotransmitters",
"TPHAOUR/TEU": "neuroticism",
"TPHAOUR/KWRAL/SKWREU": "neuralgia",
"TPHAOUR/KWRALG": "neuralgia",
"TPHAOUR/KWRO/SUR": "neurosurgeon",
"TPHAOUR/KWRO/SURPBLG": "neurosurgeon",
"TPHAOUR/KWRO/TRAPBS/PHEUT": "neurotransmitters",
"TPHAOUR/KWRO/TRAPBS": "neurotransmitters",
"TPHAOUR/KWRO/TEU": "neuroticism",
"TPHAOUR/KWRO/PA/THO/HRO": "neuropathologist",
"TPHAOUR/KWRO/PA/THO": "neuropathologist",
"TPHAOUR/KWRO/PA": "neuropathic",
"TPHAOUR/KWRO/PA/THOL": "neuropathologist",
"TPHAOUR/KWRO/HRO": "neurologist",
"TPHAOUR/KWROE/SUR": "neurosurgeon",
"TPHAOUR/KWROE/SURPBLG": "neurosurgeon",
"TPHAOUR/KWROE/TRAPBS/PHEUT": "neurotransmitters",
"TPHAOUR/KWROE/TRAPBS": "neurotransmitters",
"TPHAOUR/KWROE/PA/THO/HRO": "neuropathologist",
"TPHAOUR/KWROE/PA/THO": "neuropathologist",
"TPHAOUR/KWROE/PA": "neuropathic",
"TPHAOUR/KWROE/PA/THOL": "neuropathologist",
"TPHAOUR/KWROE/HRO": "neurologist",
"TPHAOUR/KWROEP": "neuropathy",
"TPHAOUR/KWROEL": "neurologist",
"TPHAOUR/KWROP": "neuropathy",
"TPHAOUR/KWROL": "neurologist",
"TPHAOUR/KWROT": "neurotically",
"TPHAOUR/KWREU": "neuritis",
"TPHAOUR/PA/THO/HRO": "neuropathologist",
"TPHAOUR/PA/THO": "neuropathologist",
"TPHAOUR/PA": "neuropathic",
"TPHAOUR/PA/THOL": "neuropathologist",
"TPHAOURP": "neuropathy",
"TPHAOUPL/RAEU": "numerator",
"TPHAOUPL/RO/HRO": "numerologist",
"TPHAOUPL/RO": "numerologist",
"TPHAOUPL/ROL": "numerologist",
"TPHAOUPT": "nuptials",
"TPHAOUB": "newbie",
"TPHAOUBG/HRAOE": "nuclear",
"TPHAOUBG/HRAEU": "nucleic",
"TPHAOUG": "nugatory",
"TPHAOUG/TOR": "nugatory",
"TPHAOUT/REU": "nutriment",
"TPHAOUS": "nuisance",
"TPHAOD": "noodles",
"TPHA*GS": "national",
"TPHAEU/SREU/KAOU": "navicular",
"TPHAEU/SREUBG": "navicular",
"TPHAEU/SEPB": "nascency",
"TPHAEU/SEPBS": "nascency",
"TPHAEU/PAUL": "napalm",
"TPHAEUR": "nary",
"TPHAEUR/KWRA": "narratives",
"TPHAEUR/KWRAEU": "narrator",
"TPHAEUT": "natives",
"TPHAEUS": "nasion",
"TPHAUPB/*T": "nonetheless",
"TPHAUS": "nauseate",
"TPHAF/SEU": "nafcillin",
"TPHAF/TKPWAEU": "navigators",
"TPHAFP": "natural",
"TPHAR/SEU": "narcissus",
"TPHAR/SEU/SEUS": "narcissistic",
"TPHAR/KO": "narcoleptic",
"TPHAR/KO/HREP": "narcoleptic",
"TPHAR/KOE": "narcoleptic",
"TPHAR/KOE/HREP": "narcoleptic",
"TPHARBG/HREP": "narcoleptic",
"TPHARS": "narcissus",
"TPHARS/SEUS": "narcissistic",
"TPHAP/ROBG": "naproxen",
"TPHAPB/SE": "nanoseconds",
"TPHAPB/TKEU": "nandina",
"TPHAPL": "namaste",
"TPHAGS/HREUS": "nationalistic",
"TPHAT/KWREUS": "nationalistic",
"TPHAT/RAOE": "natremic",
"TPHAT/RAOEPL": "natremia",
"TPHO/STAL": "nostalgia",
"TPHO/SKWRAOU": "modular",
"TPHO/SRE": "novelist",
"TPHO/TKPWRAF": "tomographics",
"TPHO/TPHEU": "noninate",
"TPHO/TAEUR": "notarize",
"TPHO/TAR": "notarize",
"TPHO/TO": "notochord",
"TPHO/TOR/KWRAOEU": "notoriety",
"TPHO/TOR": "notorious",
"TPHO/TOR/KWRAOEU/KWRE": "notoriety",
"TPHO/KHA": "nonchalance",
"TPHO/KROL": "necrologist",
"TPHO/PWO*": "nobody",
"TPHO/PWO*D": "nobody",
"TPHO/PHO": "nomograms",
"TPHO/PHEU/TPHA": "nominative",
"TPHO/PHEU": "nominative",
"TPHO/PHEU/TPHAT": "nominative",
"TPHO*RT/W*EFT/*ER": "northwesterly",
"TPHO*RT/W*ES": "northwestern",
"TPHO*RT/AO*ES": "northeasterly",
"TPHO*RT/AOES": "northeasterly",
"TPHO*RT/*ER": "northerly",
"TPHO*PB/*T": "nonetheless",
"TPHOE/SROE": "novocaine",
"TPHOE/SRE": "novella",
"TPHOE/TPAOEU": "notifiable",
"TPHOE/TAEUR": "notary",
"TPHOE/TAR": "notary",
"TPHOE/TOER/KWRAOEU": "notoriety",
"TPHOE/TOER": "notoriety",
"TPHOE/TOR/KWRAOEU": "notoriety",
"TPHOE/TOR": "notorious",
"TPHOE/TOR/KWRAOEU/KWRE": "notoriety",
"TPHOE/TOR/KWRAOEU/KWRET": "notoriety",
"TPHOE/TEU": "notification",
"TPHOE/TEU/TPEU": "notification",
"TPHOE/TEUF": "notification",
"TPHOE/PWO*": "nobody",
"TPHOE/PWO*D": "nobody",
"TPHOE/PHA": "nomadic",
"TPHOE/PHEU": "nomian",
"TPHOE/PHEPB/KHRAEU": "nomenclature",
"TPHOE/-BL/WO*": "noblewomen",
"TPHOEU": "noisome",
"TPHOEF": "novocaine",
"TPHOEBL/WO*": "noblewomen",
"TPHOEL/TRO": "nolltronics",
"TPHOEL/TROPB": "nolltronics",
"TPHOET/PA*EU": "notepaper",
"TPHOET/WO*RT": "noteworthiness",
"TPHOU/A*": "nowadays",
"TPHOF": "novelist",
"TPHOFT": "gnosticism",
"TPHOR/KWRO": "norovirus",
"TPHOR/PHA": "normative",
"TPHOR/AOES": "nor'easter",
"TPHORG": "tomography",
"TPHOPB/STKREUPL": "nondiscriminatory",
"TPHOPB/SKWRUPBLG/-PLT": "nonjudgmental",
"TPHOPB/SKWRUPBLG": "nonjudgmental",
"TPHOPB/SKWRUPLT": "nonjudgmental",
"TPHOPB/SKREUPL": "nondiscriminatory",
"TPHOPB/SPHOEBG": "nonsmoking",
"TPHOPB/SHA": "nonchalance",
"TPHOPB/SRAOEU/KWRO": "nonviolent",
"TPHOPB/SRAOEU": "nonviolent",
"TPHOPB/SRAOEU/KWROE": "nonviolent",
"TPHOPB/SRO/HRA": "nonvolatile",
"TPHOPB/SRO": "nonvolatile",
"TPHOPB/SROL": "nonvolatile",
"TPHOPB/SEPB/SEU": "nonsensical",
"TPHOPB/SEPB": "nonsensical",
"TPHOPB/TKPWOERB": "nonnegotiable",
"TPHOPB/TKPWOERBT": "nonnegotiable",
"TPHOPB/TKEUS/KREU/PHEU/TPHA": "nondiscriminatory",
"TPHOPB/TKEUS/KREU/PHEU": "nondiscriminatory",
"TPHOPB/TKEUS/KREU": "nondiscriminatory",
"TPHOPB/TKEUS": "nondiscriminatory",
"TPHOPB/TKEUS/KREU/PHEU/TPHA/TOR": "nondiscriminatory",
"TPHOPB/TKEUS/KREUPL/TPHA": "nondiscriminatory",
"TPHOPB/TKEUS/KREUPL": "nondiscriminatory",
"TPHOPB/TKEUS/KREUPL/TPHA/TOR": "nondiscriminatory",
"TPHOPB/TPHRAPL": "nonflammable",
"TPHOPB/TPHE/TKPWOERB": "nonnegotiable",
"TPHOPB/TPHE": "nonnegotiable",
"TPHOPB/TRAPBS/TPER": "nontransferable",
"TPHOPB/TRAPBS": "nontransferable",
"TPHOPB/TOBG": "nontoxic",
"TPHOPB/TOBGS": "nontoxic",
"TPHOPB/KPHEUT": "noncommittal",
"TPHOPB/KPEUFT": "nonexistence",
"TPHOPB/KHA": "nonchalant",
"TPHOPB/KRE/TKEUT": "noncreditable",
"TPHOPB/KRE": "noncreditable",
"TPHOPB/KRETD": "noncreditable",
"TPHOPB/KAOP": "noncooperation",
"TPHOPB/KO/PHEU": "noncommittal",
"TPHOPB/KO": "noncommittal",
"TPHOPB/KOE/O/PER": "noncooperation",
"TPHOPB/KOE/O": "noncooperation",
"TPHOPB/KOE": "noncooperation",
"TPHOPB/KOE/OP": "noncooperation",
"TPHOPB/KOPB/TPOR": "nonconformist",
"TPHOPB/KOPB": "nonconformist",
"TPHOPB/KOPB/TPORPL": "nonconformist",
"TPHOPB/PRO/TPEGS": "nonprofessional",
"TPHOPB/PRO": "nonprofessional",
"TPHOPB/PROE/TPEGS": "nonprofessional",
"TPHOPB/PROE": "nonprofessional",
"TPHOPB/POEU/SO": "nonpoisonous",
"TPHOPB/POEU": "nonpoisonous",
"TPHOPB/POEUGS": "nonpoisonous",
"TPHOPB/A": "nonallergenic",
"TPHOPB/A/HRER/SKWRE": "nonallergenic",
"TPHOPB/A/HRER": "nonallergenic",
"TPHOPB/A/HRER/SKWREPB": "nonallergenic",
"TPHOPB/AOEU/KWRO": "nonionic",
"TPHOPB/AOEU": "nonionic",
"TPHOPB/AOEU/KWROPB": "nonionic",
"TPHOPB/AOEUPB": "nonionic",
"TPHOPB/AL/SKWRE": "nonallergenic",
"TPHOPB/AL": "nonallergenic",
"TPHOPB/AL/SKWREPB": "nonallergenic",
"TPHOPB/O*EUPB": "nonionic",
"TPHOPB/*T": "nonetheless",
"TPHOPB/EUPB/TER/TPAOER": "noninterference",
"TPHOPB/EUPB/TER": "noninterference",
"TPHOPB/EUPB": "noninterference",
"TPHOPB/EUPBT": "noninterference",
"TPHOPB/EBG/SEUFT": "nonexistence",
"TPHOPB/EBG": "nonexistence",
"TPHOPB/EBG/SEUS": "nonexistence",
"TPHOPB/-T": "nonetheless",
"TPHOPBT": "fontanelle",
"TPHOPL/TPHA": "nominative",
"TPHOBG/TUR": "nocturia",
"TPHOBG/KHUR": "nocturia",
"TPHOL/TRO": "nolltronics",
"TPHOL/TROPB": "nolltronics",
"TPHOT/W*": "notwithstanding",
"TPHOT/W*EUT": "notwithstanding",
"TPHOS": "gnostic",
"TPHOS/TAL": "nostalgic",
"TPHOZ": "nozzles",
"TPHE": "nelly",
"TPHE/SE/SAEUR": "necessary",
"TPHE/SE": "necessitating",
"TPHE/SE/SAR": "necessary",
"TPHE/SE/SEU": "necessitous",
"TPHE/SE/SEUS": "necessitating",
"TPHE/SES": "necessitous",
"TPHE/TKPWHREU": "negligence",
"TPHE/TKPWHREUPBLG": "negligible",
"TPHE/TKPWA": "negatives",
"TPHE/TKPWA/TOR": "negatory",
"TPHE/TKPWA/TEU/SREU": "negativity",
"TPHE/TKPWA/TEU": "negativistic",
"TPHE/TKPWA/TEU/SREUS": "negativistic",
"TPHE/TKPWAT": "negatives",
"TPHE/TKPWOE/SHA": "negotiability",
"TPHE/TKPWOE": "negotiability",
"TPHE/TKPWOE/SHAEU": "negotiator",
"TPHE/TKPWOERB/KWRA": "negotiability",
"TPHE/TKPWOERB": "negotiability",
"TPHE/TKPWOERB/KWRAEU": "negotiator",
"TPHE/TKO/KRO": "nedocromil",
"TPHE/TKO": "nedocromil",
"TPHE/TKOBG/RO": "nedocromil",
"TPHE/TKOBG": "nedocromil",
"TPHE/TPRAO*EU": "nephritis",
"TPHE/TPR*EU": "nephricus",
"TPHE/TPAEUR": "nefarious",
"TPHE/TPAZ": "nefazodone",
"TPHE/TEU": "netiquette",
"TPHE/KRO/TP*EU": "necrophilism",
"TPHE/KRO/TP*EUL": "necrophiliac",
"TPHE/KRO/PHAPB": "necromancer",
"TPHE/KRO/PO": "necropolis",
"TPHE/KRO/HRO": "necrologist",
"TPHE/KRO/HREU": "necrolysis",
"TPHE/KROE/TP*EU": "necrophilism",
"TPHE/KROE/TP*EUL": "necrophiliac",
"TPHE/KROE/PHAPB": "necromancer",
"TPHE/KROP/TOE": "necroptosis",
"TPHE/KROP": "necropolis",
"TPHE/KROL": "necrolysis",
"TPHE/PWAOU": "nebulous",
"TPHE/PHO": "mnemonics",
"TPHE/PHOPB": "mnemonics",
"TPHE/PHE": "nemesis",
"TPHE/PHEU": "neminem",
"TPHEU/TKPWEU": "nigiri",
"TPHEU/KO": "nicotine",
"TPHEU/KOE": "nicotine",
"TPHEUFT": "nifty",
"TPHEUR/SRA": "nirvana",
"TPHEURB/KWRA": "initiatory",
"TPHEURB/KWRAEU": "initiator",
"TPHEUPB/KOPL": "nincompoop",
"TPHEUBG/TO": "nicotinic",
"TPHEUBG/TOE": "nicotinic",
"TPHEUBGT": "nicotinic",
"TPHEUG/PHA": "enigmatic",
"TPHEF": "nephritic",
"TPHEF/RAOEU": "nephritis",
"TPHEF/REU": "nephricus",
"TPHEFR/*T": "nevertheless",
"TPHEFR/-T": "nevertheless",
"TPHER/SRO": "nervosa",
"TPHER": "nerf",
"TPHER/SROE": "nervosa",
"TPHERB": "inertia",
"TPHERBG/TP*EU": "necrophilism",
"TPHERBG/TP*EUL": "necrophiliac",
"TPHERBG/PHAPB": "necromancer",
"TPHERBG/PO": "necropolis",
"TPHEP": "nepotism",
"TPHEB": "nebulous",
"TPHEBG/TPHEU": "technical",
"TPHEBG/TA": "nectarine",
"TPHEBG/RO/TP*EU": "necrophilism",
"TPHEBG/RO/TP*EUL": "necrophiliac",
"TPHEBG/RO/PHAPB": "necromancer",
"TPHEBG/RO/PO": "necropolis",
"TPHEBG/RO/HRO": "necrologist",
"TPHEBG/RO/HREU": "necrolysis",
"TPHEBG/ROE/TP*EU": "necrophilism",
"TPHEBG/ROE/TP*EUL": "necrophiliac",
"TPHEBG/ROE/PHAPB": "necromancer",
"TPHEBG/ROP/TOE": "necroptosis",
"TPHEBG/ROP": "necropolis",
"TPHEBG/ROL": "necrolysis",
"TPHEBG/*ER": "neckerchief",
"TPHEBGT": "nectarine",
"TPHEG/TA/SREUS": "negativistic",
"TPHEG/TA": "negativistic",
"TPHEG/TEU/SREU": "negativity",
"TPHEG/TEU": "negativism",
"TPHEG/HREU": "negligence",
"TPHEG/HREUPBLG": "negligible",
"TPHU/TE": "nutella",
"TPHU/HREU/TPEU": "nullification",
"TPHU/HREU/PAEUR": "nulliparity",
"TPHU/HREU/PAEUR/KWREU": "nulliparity",
"TPHU/-S": "newsprint",
"TPHURS/*ER": "nursery",
"TPHUPT": "nuptials",
"TPHUBG": "knuckles",
"TPHUL/TPEU": "nullification",
"TPHUL/PAEUR/KWREU": "nulliparity",
"TPHUL/PAEUR": "nulliparity",
"TPHULT": "tumultuous",
"TPHUT/KWREU": "nuttiness",
"TPHUS/WO*RT": "newsworthiness",
"TPHUZ": "nuzzles",
"TPH-P/TRAEU": "traits",
"TPH-P": "traits",
"TPRA": "frappe",
"TPRA/SKWREU/HREU": "fragility",
"TPRA/SKWREU": "fragility",
"TPRA/SKWREUL": "fragility",
"TPRA/TREU": "fratricide",
"TPRA/TER": "fraternity",
"TPRA/TER/TPHEU": "fraternity",
"TPRA/TERPB": "fraternize",
"TPRAO*E/KWRA": "phreatic",
"TPRAOE/KWEPB": "frequency",
"TPRAOE/KO/TPHO": "freakonomics",
"TPRAOE/KO": "freakonomics",
"TPRAOEU/KWRA/HRAEU": "frialator",
"TPRAOEU/KWRA": "frialator",
"TPRAOEU/KWRA/HRAEUT": "frialator",
"TPRAOEB": "freebie",
"TPRAOEBG/TPHO": "freakonomics",
"TPRAOEBG/TPHOPL": "freakonomics",
"TPRAOES": "fresco",
"TPRAOU": "fruition",
"TPRAOUPL": "frumious",
"TPRAOUBG": "fructus",
"TPRAEUG/PHEPB": "fragmentation",
"TPRAEUG": "fragmented",
"TPRAU/SKWRAOU": "fraudulence",
"TPRAU": "fraudem",
"TPRAU/TKAOU": "fraudulence",
"TPRART": "fraternize",
"TPRAPB": "franchise",
"TPRAPB/KHAOEU": "franchisor",
"TPRAPBLG": "fragile",
"TPRAPBT": "frantically",
"TPRAPBS": "transferor",
"TPRAB": "frabjous",
"TPRABGT": "fractious",
"TPRAG/PHEPB/TAEUR": "fragmentary",
"TPRAG/PHEPB": "fragmentary",
"TPRAG/-PLT/KWRAEUR": "fragmentary",
"TPRAZ": "frazzle",
"TPRO/TAOUR": "frotteurism",
"TPROUZ": "frowzy",
"TPROPB/TAOERS": "frontiersman",
"TPROPB/TAL/KWRAOEUZ": "frontalized",
"TPROPB/TEUS": "frontispiece",
"TPROPBT/KWRAL/KWRAOEUZ": "frontalized",
"TPROPBTS": "frontispiece",
"TPROS": "ferocity",
"TPR*E/TPHO/HRO": "phrenologist",
"TPR*E/TPHO": "phrenologist",
"TPR*E": "phrenic",
"TPR*E/TPHOL": "phrenologist",
"TPR*EUPBLG": "phyrygian",
"TPR*EPB": "phrenologist",
"TPRE": "frequent",
"TPRE/TPHAOU": "frenulum",
"TPRE/TPHE": "frenetic",
"TPREU/SKWREU/TKAEUR": "frigidarium",
"TPREU/SKWREU": "frigidarium",
"TPREU": "frilly",
"TPREU/SRO/HREU": "frivolity",
"TPREU/SRO": "frivolous",
"TPREU/SROE": "frivolous",
"TPREU/SROL": "frivolity",
"TPREU/KA": "fricative",
"TPREU/PER": "frippery",
"TPREUF": "frivolous",
"TPREUP": "frippery",
"TPREUS": "frisbee",
"TPRERB/KWREPB": "freshener",
"TPRERB/WA*": "freshwater",
"TPRERB/WA*U": "freshwater",
"TPREPB": "frenulum",
"TPREPBZ": "frenzily",
"TPREBG": "freckles",
"TPRES": "fresco",
"TPRUBG": "fructus",
"TPRUS": "frustrated",
"TPA": "fajita",
"TPA/SHO/TO": "fasciotomy",
"TPA/SHO": "fasciotomy",
"TPA/SHEU/KWRO/TO": "fasciotomy",
"TPA/SHEU/KWRO": "fasciotomy",
"TPA/SHEU": "fasciotomy",
"TPA/SREU": "favicon",
"TPA/SAOE": "facetious",
"TPA/SAOERB": "facetious",
"TPA/SEU": "facilities",
"TPA/SEU/TPHOR": "facinorous",
"TPA/SEU/KAOU/HRA": "fasciculata",
"TPA/SEU/KAOU": "fasciculus",
"TPA/SEU/HREU/TAEU": "facilitative",
"TPA/SEU/HREU": "facilities",
"TPA/SEUBG/HRA": "fasciculata",
"TPA/SEUBG": "fasciculus",
"TPA/SEUL/TAEU": "facilitative",
"TPA/TPHA/TEU": "fanatical",
"TPA/TPHA": "fanatics",
"TPA/TPHAT": "fanatical",
"TPA/TPHEU/TEUBG": "fanatical",
"TPA/TWAOU": "fatuous",
"TPA/TA": "fatalism",
"TPA/TA/HREU": "fatalities",
"TPA/KHAOU": "fatuous",
"TPA/KUL/TAEU": "facultative",
"TPA/KUL": "faculties",
"TPA/KUL/TAEUT": "facultative",
"TPA/PWAOU": "fabulous",
"TPA/PHEU/HRAEU": "familial",
"TPA/PHEU": "family",
"TPA/PHEU/HREU/KWRAEUR": "familiarity",
"TPA/PHEUL": "familial",
"TPA/PHEUL/KWRAEUR": "familiarity",
"TPA/PHUL/KWRAR": "familiarizing",
"TPA/PHUL": "familiarizing",
"TPA/HRA": "falafel",
"TPA/HRAEU": "fallacious",
"TPA/HRAEURB": "fallacious",
"TPA/HROEP": "fallopian",
"TPA/HAOE": "fajita",
"TPA/HEU": "fajita",
"TPAO*E": "phoenix",
"TPAO*E/TPHOE/TEU/PEU": "phenotypical",
"TPAO*E/TPHOE/TEU": "phenotypic",
"TPAO*E/TPHOE/TEUP": "phenotypical",
"TPAO*EBL/PHAO*EUPBD/-D": "feeblemindedness",
"TPAO*EBL/PHAO*EUPBD": "feeblemindedness",
"TPAO*EBL": "feeblemindedness",
"TPAOE/KWRAPB": "fiance",
"TPAOE/KWRAS": "fiasco",
"TPAOE/KWRES": "fiesta",
"TPAOEU/TKE": "fidelis",
"TPAOEU/TPHAPB": "financials",
"TPAOEU/PWER/O*P": "fiberoptics",
"TPAOEUR/KRA*BG": "firecracker",
"TPAOEURB/O*P": "fiberoptics",
"TPAOEUB": "fibril",
"TPAOEPB": "fiendish",
"TPAOEB": "febrile",
"TPAOES": "feasibility",
"TPAOU/SKWREU": "fugitives",
"TPAOU/SE": "fuselage",
"TPAOU/TPHEU/KAOU": "funiculus",
"TPAOU/TPHEU": "funiculus",
"TPAOU/TPHER/KWRAEUR": "funerary",
"TPAOU/TPHER": "funereal",
"TPAOU/TEL": "futilely",
"TPAOU/KHUR/KWREUS": "futuristic",
"TPAOU/KOE": "fukuoku",
"TPAOU/PHAR": "fumaric",
"TPAOU/PHEU": "fumigation",
"TPAOUR/KWRA": "furanose",
"TPAOUR/KWRAPB": "furantoin",
"TPAOURPB": "furantoin",
"TPAOUPB/RAEUR": "funerary",
"TPAOUPBLG": "fugitives",
"TPAOUT": "futilely",
"TPAOL/*ER": "foolery",
"TPAOLS": "foolscap",
"TPAOS": "foosball",
"TPA*": "pharynx",
"TPA*/HROE/SEPB": "phallocentric",
"TPA*/HROE/KREPB": "phallocentric",
"TPA*/HROE/KREPBT": "phallocentric",
"TPA*/RO": "pharaonic",
"TPA*EUR/KWRO": "pharaonic",
"TPA*R": "pharmacies",
"TPA*R/PHA/SAOU/TEU": "pharmaceuticals",
"TPA*R/PHA/SAOU": "pharmaceutics",
"TPA*R/PHA/SAOUT": "pharmaceuticals",
"TPA*R/PHA/KOE/PAOE": "pharmacopeias",
"TPA*R/PHA/KOE": "pharmacopeias",
"TPA*R/PHA/KOEP": "pharmacopeias",
"TPA*R/PHAS": "pharmacies",
"TPA*RPBL": "pharmacies",
"TPA*RPL/SAOUT": "pharmaceuticals",
"TPA*RPL/KOEP": "pharmacopeias",
"TPA*PB": "phantom",
"TPA*PB/TAS/PHA/TKPWOR": "phantasmagoria",
"TPA*PB/TAS/PHA": "phantasmagoria",
"TPA*PB/TAS": "phantasmagoria",
"TPA*PB/TAS/PHA/TKPWOR/KWREU": "phantasmagoria",
"TPA*PBTS/PHA/TKPWOR": "phantasmagoria",
"TPA*PBTS/PHA": "phantasmagoria",
"TPA*PBTS": "phantasmagoria",
"TPA*PBTS/PHA/TKPWOR/KWREU": "phantasmagoria",
"TPAEU/SKWROE": "feijoada",
"TPAEU": "famous",
"TPAEU/SHO/HREUPBG": "faciolingual",
"TPAEU/SHOE/HREUPBG": "faciolingual",
"TPAEU/TA/HREU": "fatalities",
"TPAEU/TA": "fatalistic",
"TPAEU/TA/HREUS": "fatalistic",
"TPAEUR/KWREPB": "fahrenheit",
"TPAEURPB": "fahrenheit",
"TPAEURB": "facio",
"TPAEURB/KWRO/HREUPBG": "faciolingual",
"TPAEURB/KWROE/HREUPBG": "faciolingual",
"TPAEUBG/KWREU": "fakier",
"TPAUL/SEU": "falsification",
"TPAUL/SEU/TPEU": "falsification",
"TPAUS": "fauces",
"TPAF": "favicon",
"TPAFP": "fatuous",
"TPAFT/TPOR": "fast-forward",
"TPAR/SEU": "farcical",
"TPAR/KWREU": "farina",
"TPAR/KWREPB": "fahrenheit",
"TPAR/A*": "faraway",
"TPARPB": "fahrenheit",
"TPARB/KWRO/TO": "fasciotomy",
"TPARB/KWRO": "fasciotomy",
"TPARB/KWREU/KWRO/TO": "fasciotomy",
"TPARB/KWREU/KWRO": "fasciotomy",
"TPARB/KWREU": "fasciotomy",
"TPARB/KAEU": "fabricator",
"TPAPB/SEU/SPHA*PB": "fancy-schmancy",
"TPAPB/SEU/SPHA*PBS": "fancy-schmancy",
"TPAPB/TKAPB": "fandango",
"TPAPB/TKAPBG": "fandango",
"TPAPB/TA": "fantabulous",
"TPAPB/TA/PWAOU": "fantabulous",
"TPAPB/TAEU": "fantasia",
"TPAPB/TAEURB": "fantasia",
"TPAPB/TAFT": "fantastical",
"TPAPB/TAB": "fantabulous",
"TPAPB/TAS": "fantasy",
"TPAPB/TAS/TEU": "fantastical",
"TPAPBTS": "fantasies",
"TPAPBS": "fanciness",
"TPAPBS/KWREU/SPHA*PBS": "fancy-schmancy",
"TPAPBS/KWREU": "fanciness",
"TPAPBS/KWREU/SHA*PB": "fancy-schmancy",
"TPABG": "factious",
"TPABG/TAEU": "facultative",
"TPABG/TEU": "factitious",
"TPABG/TEURB": "factitious",
"TPAL/SE": "falsetto",
"TPAL": "falcon",
"TPAL/SEU/TPEU": "falsification",
"TPAL/SEU/PA": "falciparum",
"TPAL/SEU/PAEUR": "falciparum",
"TPAL/SEU/PAR": "falciparum",
"TPAL/SEUP": "falciparum",
"TPAL/SET": "falsetto",
"TPAS/TAS/TEUBG": "fantastically",
"TPAS/TAS": "fantastically",
"TPAS/TEU/TKEU": "fastidious",
"TPAS/TEU": "fastidious",
"TPAS/TEUPBLG": "fastigial",
"TPAS/TEUT/KWRUS": "fastidiousness",
"TPAS/TEUT": "fastidiousness",
"TPAS/TEUD": "fastidious",
"TPO/SEU": "fossilize",
"TPO": "folic",
"TPO/HREU/KAOU/HRAOEU": "folliculitis",
"TPO/HREU/KAOU": "folliculars",
"TPO*/TPHO/HRO": "phonologist",
"TPO*/TPHO/HROPBLG": "phonological",
"TPO*/TPHOL": "phonologist",
"TPO*/TO/TKPWRAF": "photographers",
"TPO*/TO/PHE": "photometry",
"TPO*/TO/PHET": "photometry",
"TPO*/TOPL": "photometry",
"TPO*/TOG": "photographers",
"TPO*/REU": "phoria",
"TPO*E/TPHO": "phonologist",
"TPO*E/TPHO/TKPWRAF": "phonography",
"TPO*E/TPHO/HRO": "phonologist",
"TPO*E/TPHOE/HRO/SWREU": "phonological",
"TPO*E/TPHOE/HRO": "phonological",
"TPO*E/TPHOE/HROPBLG": "phonological",
"TPO*E/TPHORG": "phonography",
"TPO*E/TPHOL": "phonologist",
"TPO*E/TPHE": "phonetics",
"TPO*E/TO": "photopic",
"TPO*E/TO/TKPWRAF": "photographers",
"TPO*E/TOE/STA": "photostatic",
"TPO*E/TOE/SKWRE": "photogenic",
"TPO*E/TOE/SROEL/TAEU": "photovoltaic",
"TPO*E/TOE/SROEL": "photovoltaic",
"TPO*E/TORG": "photography",
"TPO*E/PWEU": "phobias",
"TPO*ER/TPA*": "forefathers",
"TPO*ER": "foremothers",
"TPO*ER/PHO*": "foremothers",
"TPO*EPB/TKPWRAF": "phonography",
"TPO*EPB/HRO/SWREU": "phonological",
"TPO*EPB/HRO": "phonological",
"TPO*EPB/HROPBLG": "phonological",
"TPO*EB": "phobias",
"TPO*ET/STA": "photostatic",
"TPO*ET/SKWRE": "photogenic",
"TPO*ET/SROEL/TAEU": "photovoltaic",
"TPO*ET/SROEL": "photovoltaic",
"TPO*RT/KO*PL": "forthcoming",
"TPO*PB/HRO/SWREU": "phonological",
"TPO*PB/HRO": "phonological",
"TPO*PB/HROPBLG": "phonological",
"TPO*G": "phogrin",
"TPO*S/SKWRE": "phosgenite",
"TPO*S": "phosphoric",
"TPO*S/TPO*R": "phosphorous",
"TPOE/KA": "focaccia",
"TPOE/KAOE": "focillo",
"TPOE/KAFP": "focaccia",
"TPOEU": "foible",
"TPOEF": "foveal",
"TPOER/SHA*": "foreshadow",
"TPOER/SHO*RT": "foreshortening",
"TPOER/TPHO*": "foreknowledge",
"TPOER/TPHO*L": "foreknowledge",
"TPOER/TPA*U": "forefathers",
"TPOER/TP*EUPB": "forefingers",
"TPOER/TP*EUPBG": "forefingers",
"TPOER/PHO*": "foremothers",
"TPOER/WO*": "forewomen",
"TPOEBG/SO/TPHO": "folksonomy",
"TPOEBG/SO": "folksonomy",
"TPOEBG/SOPB": "folksonomy",
"TPOEBGS": "folksiness",
"TPOEG": "fogey",
"TPOUPB": "fountains",
"TPOFRPB": "fortunate",
"TPOR/SHA": "foreshadow",
"TPOR/TPHO": "foreknowledge",
"TPOR/TPHEU": "fornical",
"TPOR/TPAU": "forefathers",
"TPOR/TPE": "forfeitures",
"TPOR/TPEU": "forfeitures",
"TPOR/TPEUPB": "forefingers",
"TPOR/TPEUPBG": "forefingers",
"TPOR/TRAOEU/KWAPBG": "foretriangle",
"TPOR/TRAOEU": "foretriangle",
"TPOR/TRAOEU/APBG": "foretriangle",
"TPOR/TAOU": "fortuitous",
"TPOR/TAOU/WEU": "fortuitous",
"TPOR/TEU/SEU": "fortissimo",
"TPOR/TEU/TPEU": "fortification",
"TPOR/TEUS": "fortissimo",
"TPOR/KWRA/PHEU": "foraminal",
"TPOR/KWRA": "foramen",
"TPOR/KWRES": "forestry",
"TPOR/KHAOU": "fortuny",
"TPOR/KHU": "fortunate",
"TPOR/PWAO*ER": "forbearance",
"TPOR/PWAOER": "forbearance",
"TPOR/PHA": "formative",
"TPOR/PHAOU": "formulas",
"TPOR/PHAOU/HRAEUR": "formulary",
"TPOR/PHAEUPBLG": "formaggio",
"TPOR/PHAT": "formatting",
"TPOR/PHO": "foremothers",
"TPOR/PHEUD": "formidable",
"TPOR/WO": "forewomen",
"TPOR/REFT": "forestry",
"TPOR/E": "forevers",
"TPOR/-FR": "forevermore",
"TPORPB/KWREUS": "fornices",
"TPORPL/-LS": "formlessness",
"TPORTS": "fortissimo",
"TPORS/-FL": "forcefully",
"TPOPB": "fontina",
"TPOPB/TA": "fontanel",
"TPOPB/TAOE": "fontina",
"TPOPB/TEU": "fontina",
"TPOPL": "fomic",
"TPOL/TKER": "folderol",
"TPOS/KAR": "foscarnet",
"TP*E": "pfennig",
"TP*E/TPHO/PHE": "phenomenology",
"TP*E/TPHO": "phenomenal",
"TP*E/TPHO/PHE/TPHO/HRO": "phenomenology",
"TP*E/TPHO/PHE/TPHO": "phenomenological",
"TP*E/TPHO/PHE/TPHO/HROPBLG": "phenomenological",
"TP*E/TPHO/PHE/TPHOL": "phenomenology",
"TP*E/TPHOPL": "phenomenally",
"TP*E/TPHOPL/TPHO/HRO": "phenomenology",
"TP*E/TPHOPL/TPHO": "phenomenological",
"TP*E/TPHOPL/TPHO/HROPBLG": "phenomenological",
"TP*E/TPHOPL/TPHOL": "phenomenology",
"TP*EU": "philistine",
"TP*EU/SEU": "physicality",
"TP*EU/SEU/KWRO/HRO": "physiology",
"TP*EU/SEU/KWRO": "physiology",
"TP*EU/HRA": "philabeg",
"TP*EU/HRAPB": "philanthropic",
"TP*EU/HRAPB/TRO": "philanthropic",
"TP*EU/HRAPB/TROE": "philanthropic",
"TP*EU/HRO/SO": "philosopher",
"TP*EU/HRO": "philologist",
"TP*EU/HRO/SOF": "philosophically",
"TP*EU/HRO/HRO": "philologist",
"TP*EU/HROE/SO/TP*EU": "philosophical",
"TP*EU/HROE/SO": "philosophic",
"TP*EU/HROE": "philosophically",
"TP*EU/HROE/SOF": "philosophically",
"TP*EU/HROL": "philologist",
"TP*EU/HROS": "philosopher",
"TP*EU/HROZ": "philosophizing",
"TP*EU/HREU": "philistine",
"TP*EU/HREUS": "philistine",
"TP*EUL": "philology",
"TP*EUL/SO/TP*EU": "philosophical",
"TP*EUL/SO": "philosophic",
"TP*EUL/SOF": "philosophical",
"TP*EUL/HROL": "philologist",
"TP*EULS": "philistine",
"TP*EUS/KWRO/THER/KWRA": "physiotherapist",
"TP*EUS/KWRO/THER": "physiotherapist",
"TP*EUS/KWRO": "physiological",
"TP*EUS/KWRO/HRO": "physiologic",
"TP*EUS/KWRO/HROPBLG": "physiological",
"TP*EUS/KWROE/THER/KWRA": "physiotherapist",
"TP*EUS/KWROE/THER": "physiotherapist",
"TP*EUS/KWROE": "physiological",
"TP*EUS/KWROE/HRO": "physiologic",
"TP*EUS/KWROE/HROPBLG": "physiological",
"TP*EUS/KWROL": "physiologist",
"TP*EUS/HRO": "physiologic",
"TP*EUS/HROPBLG": "physiological",
"TP*EUZ": "physical",
"TP*RT": "forthright",
"TPE/TKOR": "fedora",
"TPE/TKE": "federate",
"TPE/TKER": "federate",
"TPE/TPHE": "fenestrated",
"TPE/TPHES": "fenestrated",
"TPE/THER/PW*ED": "featherbedding",
"TPE/TAOU/KHAOE": "fettucini",
"TPE/TAOU": "fettuccine",
"TPE/TAOU/KHEU": "fettucini",
"TPE/TEURB/KWRAOEUZ": "fetishization",
"TPE/PHOR": "femoris",
"TPE/PHEU": "feminization",
"TPE/PHEU/TPHEU/TPHEU": "femininity",
"TPE/PHEU/TPHEU": "femininity",
"TPE/PHEU/TPHEUZ": "feminization",
"TPE/HRAEU": "fellatio",
"TPE/HRAEU/SHEU": "fellatio",
"TPE/HRAEURB": "fellatio",
"TPE/HROEPB": "felonious",
"TPE/HREU/SEU": "felicity",
"TPE/HREU": "felicity",
"TPE/HREUS": "felicitous",
"TPEU/TKPWUR/KWRA": "figuratively",
"TPEU/TKAOU/SHAEUR": "fiduciary",
"TPEU/TKAOU": "fiduciarily",
"TPEU/TKAOURB/KWRAEUR": "fiduciary",
"TPEU/TKAOURB": "fiduciarily",
"TPEU/TKE/HREU": "fidelity",
"TPEU/TKE": "fidelis",
"TPEU/TKEL": "fidelity",
"TPEU/TPHA": "finale",
"TPEU/TPHAOE": "finito",
"TPEU/TPHAEUG": "finagles",
"TPEU/TPHEU": "finito",
"TPEU/KWRAPB": "fiance",
"TPEU/KWRAS": "fiasco",
"TPEU/KWRES": "fiesta",
"TPEU/PWO/TPHA": "fibonacci",
"TPEU/PWO": "fibonacci",
"TPEU/PWO/TPHAFP": "fibonacci",
"TPEU/PWOE/TPHA": "fibonacci",
"TPEU/PWOE": "fibonacci",
"TPEU/PWOE/TPHAFP": "fibonacci",
"TPEU/HRA": "filaments",
"TPEU/HRAEUR": "filarial",
"TPEU/HREU/PWUS": "filibusters",
"TPEUF": "fifty",
"TPEUF/TEU/TPEUF": "fifty-fifty",
"TPEUR/PHA": "firmament",
"TPEURB/PHO*PB": "fishmongers",
"TPEURB/PHO*PBG": "fishmongers",
"TPEURB/PHOPBG": "fishmongers",
"TPEURB/*ER": "fishermen",
"TPEUPB/KWREUBG": "finickier",
"TPEUPBLG": "fidget",
"TPEUPBG": "fingers",
"TPEUPL/PWREU": "fimbriae",
"TPEUB/TPHA": "fibonacci",
"TPEUBG/SA": "fixative",
"TPEUBG": "fickle",
"TPEUBG/SAT": "fixative",
"TPEUBG/TEU": "fictitious",
"TPEUBG/TEURB": "fictitious",
"TPEUBGT": "fictive",
"TPEUBGS/KWRA": "fixative",
"TPEUBGS/KWRAL/KWRAOEUZ": "fictionalization",
"TPEUBGS/KWRAL": "fictionalization",
"TPEUBGS/*ER/*UP": "fixer-upper",
"TPEUBGS/*ER": "fixer-upper",
"TPEUL/PWUS": "filibustering",
"TPEUL/PHEU": "filminess",
"TPEUL/-PL/PHA*EUBG": "filmmaking",
"TPEUG/KWRA": "figuratively",
"TPEUG/KWRAT": "figuratively",
"TPEUG/KWRUR/KWRA": "figuratively",
"TPEUG/KWRUR/KWRAT": "figuratively",
"TPEUG/RA": "figuratively",
"TPEUG/RAT": "figuratively",
"TPEUS": "fissile",
"TPEUS/TAOU": "fistulize",
"TPEUD": "fiddles",
"TPER": "fermented",
"TPER/TEU": "fertilize",
"TPER/KWRO/SEU": "ferocity",
"TPER/KWRO": "ferocity",
"TPER/KWROE/TPHRAOU": "ferrofluid",
"TPER/KWROERB": "ferocious",
"TPER/KWROS": "ferocity",
"TPEPB/TA": "fentanyl",
"TPEPL/TPHAOEU": "feminization",
"TPEPL/TPHEUZ": "feminization",
"TPEPL/TO/SEBG": "femtosecond",
"TPEPL/TOE/SEBG": "femtosecond",
"TPEPL/PHEU": "feminization",
"TPEBL": "felbamate",
"TPEBG": "feckless",
"TPEL/PWA": "felbamate",
"TPELS": "felsic",
"TPELD": "feldspar",
"TPELDZ": "feldspar",
"TPET/KHAOE": "fettucini",
"TPET/KHEU": "fettucini",
"TPES/TEU": "festinate",
"TPES/TEUL": "festival",
"TPU/TPHEU/KAOU": "funiculus",
"TPU/TPHEU": "funiculus",
"TPU/TPHEUBG": "funicular",
"TPUFT": "fusty",
"TPUR/KAEUT": "furcating",
"TPUR/*UPBG": "furuncle",
"TPURPB": "furniture",
"TPUPB/SKWREU/STA": "fungistatic",
"TPUPB/SKWREU": "fungiform",
"TPUPB/TKA/PHEPB": "fundamentals",
"TPUPB/TKA": "fundament",
"TPUPB/TKAPLT": "fundamental",
"TPUPB/TKEU": "fundibular",
"TPUPB/TKEU/PWAOU": "fundibular",
"TPUPB/TKEUB": "fundibular",
"TPUPBG/STA": "fungistatic",
"TPUPBGS/KWRAL": "functionalism",
"TPUPBD/PHEPB": "fundamentally",
"TPUPBD/RA*EUZ": "fundraising",
"TPUPL": "fumbles",
"TPUPLT/KWRAL": "fundamentalist",
"TPUL/SRES": "fulvestrant",
"TPUL/PHEU": "fulminant",
"TPUG": "fugly",
"TPUD/KWREU/TK*UD": "fuddy-duddy",
"TPUD/KWREU": "fuddy-duddy",
"TPUD": "fuddy-duddy",
"TWAOE": "tweener",
"TWAOEU": "twilight",
"TW*EUD": "twidddling",
"TWE/PHOE": "twemoji",
"TWE": "twemoji",
"TWEU": "twitter",
"TWEUD": "twiddling",
"TWEUZ": "twizzle",
"TWEPB": "twenty",
"THR/A*": "thereabouts",
"THR/*UP": "thereupon",
"THR/*UPB": "thereunder",
"THRA": "tilapia",
"THRA/PEU": "tilapia",
"THRAP": "tilapia",
"THRABG": "thoracis",
"THROEPL/PWOE": "thrombosis",
"THROEPL": "thrombosis",
"THROPL/PWO/HREU": "thrombolytic",
"THROT": "throttles",
"THREP": "telepathy",
"THREPL": "telemetry",
"THA/HRA": "thalami",
"THA/HREU": "thallium",
"THA/A*": "thataway",
"THAOE/TREU/KAL": "theatricality",
"THAOE/TREU": "theatricality",
"THAOE/KWRA/TREU": "theatrical",
"THAOE/KWRA": "theaters",
"THAOE/KWRARBGT": "theatrically",
"THAOE/KWRART": "theatrical",
"THAOE/KWRAT/REU": "theatrical",
"THAOE/KWRAT": "theatric",
"THAOE/KWRO/SO": "theosophists",
"THAOE/KWRO": "theological",
"THAOE/KWRO/SOE": "theosophist",
"THAOE/KWRO/KRA": "theocratic",
"THAOE/KWRO/HRO": "theologically",
"THAOE/KWRO/HRO/SKWREUBG": "theologically",
"THAOE/KWRO/HROEPBLG": "theologian",
"THAOE/KWRO/HROPBLG": "theological",
"THAOE/KWROE/KRA": "theocratic",
"THAOE/KWROE": "theological",
"THAOE/KWROE/HRO/SKWREU": "theological",
"THAOE/KWROE/HRO": "theological",
"THAOE/KWROE/HROPBLG": "theological",
"THAOE/KWROR/KWRE/TEU": "theoretical",
"THAOE/KWROR/KWRE": "theoretic",
"THAOE/KWROR": "theoretical",
"THAOE/KWROR/KWRET": "theoretical",
"THAOE/KWRORBG": "theocracy",
"THAOE/KWROBG/RA": "theocratic",
"THAOE/KWROBG": "theocrat",
"THAOE/KWROL": "theology",
"THAOE/KWROS": "theosophists",
"THAOE/KRA": "theocratic",
"THAOE/KAT": "thecal",
"THAOE/PHA": "thematic",
"THAOE/HRO/SKWREU": "theological",
"THAOE/HRO": "theologically",
"THAOE/HRO/SKWREUBG": "theologically",
"THAOE/HROPBLG": "theological",
"THAOE/HREU": "thelium",
"THAOEU/KWRA": "thiazide",
"THAOEFR": "thievery",
"THAOER": "theoretical",
"THAOER/KWROR": "theorist",
"THAOER/KWRE/TEU": "theoretical",
"THAOER/KWRE": "theoretician",
"THAOER/KWREU/KWRE/TEU": "theoretically",
"THAOER/KWREU/KWRE": "theoretically",
"THAOER/KWREU/KWRE/TEUBG": "theoretically",
"THAOER/KWREU/KWRET": "theorietically",
"THAOER/KWRET": "theoretical",
"THAOEPL/KWRAT": "thematically",
"THAOEL": "thelium",
"THAOET/REU/KAL": "theatricality",
"THAOET/REU": "theatricality",
"THAOET": "theatricality",
"THAOU": "thunar",
"THAUT/PRO*E/SROEBG": "thought-provoking",
"THAUT/PRO*E": "thought-provoking",
"THAUT/PROE/SROEBG": "thought-provoking",
"THAUT/PROE": "thought-provoking",
"THAG/PHAOEUZ": "thagomizer",
"THAG": "thagomizer",
"THO": "thoroughly",
"THOEUR/TEU": "theoretical",
"THOEURPL/SKWRE/TPHE": "thermogenesis",
"THOEURPL/SKWRE": "thermogenesis",
"THOEURPL/TKAOEU/TPHA": "thermodynamics",
"THOEURPL/TKAOEU": "thermodynamics",
"THOEURPL/TKAOEUPB": "thermodynamics",
"THOEURPL/TPHAOU/KHRAOE": "thermonuclear",
"THOEURPL/TPHAOU": "thermonuclear",
"THOEURPL/TPHAOUBG/HRAOE": "thermonuclear",
"THOEURPL/TPHAOUBG": "thermonuclear",
"THOEURPL/PHRAS": "thermoplastic",
"THOEURPL/HREU": "thermolytic",
"THOEURPL/RE/TKPWAOU/HRA": "thermoregulatory",
"THOEURPL/RE/TKPWAOU": "thermoregulate",
"THOEURPL/RE": "thermoregulate",
"THOEURPL/RE/TKPWAOU/HRA/TOR": "thermoregulatory",
"THOEURPL/REG/HRA": "thermoregulatory",
"THOEURPL/REG": "thermoregulate",
"THOEURPL/REG/HRA/TOR": "thermoregulatory",
"THOR": "thoracal",
"THOR/TAEU": "authoritative",
"THOR/KWRA": "thoracal",
"THOR/KWRABG": "thoracis",
"THOR/KWRALG": "thoralgia",
"TH*EULT": "filthy",
"THE/SAUR": "thesaurus",
"THEU/KWRER": "cierzo",
"THEUR/TEU/SE": "thirty-seven",
"THEURT/KWREU/SE": "thirty-seven",
"THEURS": "thirst",
"THEUPBG/PHA": "thingamajig",
"THEUPL": "thimbles",
"THEUS": "thistles",
"THEFP": "thespian",
"THER/KWRA/PAOU/TEU": "therapeutical",
"THER/KWRA/PAOU": "therapeutics",
"THER/KWRA/PAOUT": "therapeutical",
"THER/PHOE/SKWRE/TPHE": "thermogenesis",
"THER/PHOE/SKWRE": "thermogenesis",
"THER/PHOE/TKAOEU/TPHA": "thermodynamics",
"THER/PHOE/TKAOEU": "thermodynamics",
"THER/PHOE/TKAOEUPB": "thermodynamics",
"THER/PHOE/TPHAOU/KHRAOE": "thermonuclear",
"THER/PHOE/TPHAOU": "thermonuclear",
"THER/PHOE/TPHAOUBG/HRAOE": "thermonuclear",
"THER/PHOE/TPHAOUBG": "thermonuclear",
"THER/PHOE/PHRAS": "thermoplastic",
"THER/PHOE/HREU": "thermolytic",
"THER/PHOE/RE/TKPWAOU/HRA": "thermoregulatory",
"THER/PHOE/RE/TKPWAOU": "thermoregulate",
"THER/PHOE/RE": "thermoregulate",
"THER/PHOE/RE/TKPWAOU/HRA/TOR": "thermoregulatory",
"THER/PHOE/REG/HRA": "thermoregulatory",
"THER/PHOE/REG": "thermoregulate",
"THER/PHOE/REG/HRA/TOR": "thermoregulatory",
"THER/PAOU/TEU": "therapeutical",
"THER/PAOU": "therapeutics",
"THER/PAOUT": "therapeutical",
"THES/PEU": "thespian",
"THES": "thespian",
"TRA/SKWRAOE/TKEU": "tragedian",
"TRA/SKWRAOE": "tragedian",
"TRA/SKWRAOED": "tragedian",
"TRA/SKWRE": "tragedies",
"TRA/SKWREBG": "trajectory",
"TRA/SKWREBG/TOR": "trajectory",
"TRA/SKWRED": "tragedy",
"TRA/SRE": "travelogs",
"TRA/SREFT": "travesty",
"TRA/SRER": "travertine",
"TRA/SRES": "travesty",
"TRA/TKES/KAPB/SHEU": "tradescantia",
"TRA/TKES/KAPB": "tradescantia",
"TRA/TKES": "tradescantia",
"TRA/TKES/KAPBS": "tradescantia",
"TRA/PWE/KAOU": "trabeculum",
"TRA/PWE": "trabeculum",
"TRA/PWE/KAOU/HREBG/TO": "trabeculectomies",
"TRA/PWE/KAOU/HREBG": "trabeculectomies",
"TRA/PWE/KAOU/HREBGT": "trabeculectomies",
"TRA/PWEBG/HREBGT": "trabeculectomies",
"TRA/PHA": "tramadol",
"TRA/PAOE/S*EU": "trapezius",
"TRA/PAOE": "trapezius",
"TRA/PE/SO*EU": "trapezoidal",
"TRA/PE": "trapezoids",
"TRA/PUPB": "trapunto",
"TRAOE/SO": "treasonous",
"TRAOEU/SRAEU": "trivalent",
"TRAOEU/SREU": "trivium",
"TRAOEU/SUL": "trisulfide",
"TRAOEU/TPO*S": "trisphosphate",
"TRAOEU/KWRA*T": "triathlon",
"TRAOEU/KWRAPB/TKPWAOU": "triangular",
"TRAOEU/KWRAPB": "triangular",
"TRAOEU/KWRAPBG/TKPWAOU": "triangular",
"TRAOEU/KWRAPBG": "triangles",
"TRAOEU/KWRABG": "triaxone",
"TRAOEU/KWRUPL": "triumphs",
"TRAOEU/KO": "tricolors",
"TRAOEU/PWAOU": "tribunals",
"TRAOEU/A*T": "triathlon",
"TRAOEU/APB/TKPWAOU": "triangular",
"TRAOEU/APB": "triangles",
"TRAOEU/APBG/TKPWAOU": "triangular",
"TRAOEU/APBG": "triangles",
"TRAOEU/APBG/KWRAOU": "triangular",
"TRAOEU/ABG": "triaxone",
"TRAOEUBS": "tribesmen",
"TRAOEBG": "treacle",
"TRAOES": "treasonous",
"TRAOU/KWRAPB": "truancy",
"TRAOU/KWRAPBS": "truancy",
"TRAOU/PWA": "troubadour",
"TRAOU/WAPB": "truancy",
"TRAOU/WAPBS": "truancy",
"TRAOUPB": "truancy",
"TRAOUPBS": "truancy",
"TRAOUB": "troubadour",
"TRA*PBG": "tranquilize",
"TRAEU/SREU": "traviate",
"TRAEU/KHAOE": "trachealis",
"TRAEU/KAOE": "trachealis",
"TRAEUF": "traviation",
"TRAU": "traumatically",
"TRAU/PHA/TO/HRO": "traumatologist",
"TRAU/PHA/TO": "traumatologist",
"TRAU/PHA/TOL": "traumatologist",
"TRAU/PHAT": "traumatically",
"TRAUPL/TO/HRO": "traumatology",
"TRAUPL/TO": "traumatology",
"TRAUPL/TOL": "traumatologist",
"TRAF": "traveler",
"TRAFRPB": "tarantula",
"TRAFS": "travesty",
"TRAP/SO*EU": "trapezoidal",
"TRAPB/SPEUR": "transpiration",
"TRAPB/SAUR": "tyrannosaurus",
"TRAPB/S*EPB/TKEPB": "transcendental",
"TRAPB/S*EPB": "transcendental",
"TRAPB/S*EPB/TKEPBT": "transcendental",
"TRAPB/SEU": "transience",
"TRAPB/SEU/TOR/KWREU": "transitoriness",
"TRAPB/SEU/TOR": "transitoriness",
"TRAPB/SEUFT/O*R/KWRAOEUZ": "transistorized",
"TRAPB/SEUS": "transitively",
"TRAPB/SEUS/TOR/KWRAOEUZ": "transistorized",
"TRAPB/SEP": "transeptal",
"TRAPB/SEPB/TKEPB": "transcendental",
"TRAPB/SEPB": "transcendence",
"TRAPBT": "tarantula",
"TRAPBS/SKWRAEUGS": "transgenerational",
"TRAPBS/SKWRE": "transgenerational",
"TRAPBS/SKWRE/TPHER": "transgenerational",
"TRAPBS/SKWRE/TPHER/KWRAEUGS": "transgenerational",
"TRAPBS/SKWREPB": "transgenerational",
"TRAPBS/SKWREPB/RAEUGS": "transgenerational",
"TRAPBS/SRA/SKWRAOEU": "transvaginal",
"TRAPBS/SRA": "transvaginal",
"TRAPBS/SRAPBLG": "transvaginal",
"TRAPBS/SRER": "transversal",
"TRAPBS/SA/PHEU": "transaminate",
"TRAPBS/SA": "transaminate",
"TRAPBS/SAPL": "transaminate",
"TRAPBS/SEBG": "transsexual",
"TRAPBS/SEBGS": "transsexual",
"TRAPBS/TKPWRE": "transgressive",
"TRAPBS/TKAOU": "transducin",
"TRAPBS/TKER": "transdermal",
"TRAPBS/TPO*E": "transphobic",
"TRAPBS/TPOR/PHA": "transformative",
"TRAPBS/TPOR": "transformation",
"TRAPBS/TPEU": "transfigured",
"TRAPBS/KOR/TEU": "transcortical",
"TRAPBS/KOR": "transcortical",
"TRAPBS/KORT": "transcortical",
"TRAPBS/KOPB/TKUBG": "transconductance",
"TRAPBS/KOPB": "transcontinent",
"TRAPBS/KOPB/TEU": "transcontinent",
"TRAPBS/KOPBT": "transcontinent",
"TRAPBS/PHRA/SEPB": "transplacental",
"TRAPBS/PHRA": "transplacental",
"TRAPBS/PHRAPB": "transplantation",
"TRAPBS/PHAOU": "transmutation",
"TRAPBS/PHEU": "transmittals",
"TRAPBS/PHEUS": "transmissible",
"TRAPBS/PHEPL": "transmembrane",
"TRAPBS/PAEUR/KWREPB": "transparency",
"TRAPBS/PAEUR": "transparency",
"TRAPBS/PAEUR/KWREPBS": "transparency",
"TRAPBS/PAEURPB": "transparency",
"TRAPBS/PARPB": "transparency",
"TRAPBS/PO": "transposition",
"TRAPBS/POE": "transposition",
"TRAPBS/POR": "transportation",
"TRAPBS/POPB": "transponder",
"TRAPBS/PEU": "transpilation",
"TRAPBS/PEUR": "transpiration",
"TRAPBS/HRAOU/SEPB": "translucency",
"TRAPBS/HRAOU": "translucence",
"TRAPBS/HRAOUFPB": "translucency",
"TRAPBS/HRAOUPL": "transillumination",
"TRAPBS/HRAEU": "translator",
"TRAPBS/HRO": "translocon",
"TRAPBS/HROBG": "translocon",
"TRAPBS/HREU/TER": "transliterate",
"TRAPBS/HREU": "transliterate",
"TRAPBS/HREUT": "transliterate",
"TRAPBS/HAOU/PHER": "transhumeral",
"TRAPBS/HAOU": "transhumeral",
"TRAPBS/HAOUPL": "transhumeral",
"TRAPBS/A/HRAPB": "transalantic",
"TRAPBS/A": "transalantic",
"TRAPBS/AT/HRAPB": "transatlantic",
"TRAPBS/AT": "transatlantic",
"TRAPBS/O/KAOU": "transocular",
"TRAPBS/O": "transocular",
"TRAPBS/OERB/KWRA": "transoceanic",
"TRAPBS/OERB": "transoceanic",
"TRAPBS/OERB/KWRAPB": "transoceanic",
"TRAPBS/OEGS": "transoceanic",
"TRAPBS/OBG/KWRAOU": "transocular",
"TRAPBS/OBG": "transocular",
"TRAPBS/EU/HRAOU/PHEU": "transillumination",
"TRAPBS/EU/HRAOU": "transillumination",
"TRAPBS/EU": "transillumination",
"TRAPBS/EU/HRAOUPL": "transillumination",
"TRAPL/PO": "trampoline",
"TRAPL/POE": "trampoline",
"TRAGS/KWRAL": "traditionalist",
"TRO": "trolley",
"TRO/PEU": "tropical",
"TRO*EFRT": "controvertibility",
"TROE": "trophies",
"TROEBG": "trochlear",
"TROEBG/HRAOE": "trochlear",
"TROP": "tropical",
"TROPL": "trombones",
"TR*UPL/*ER": "trumpery",
"TRE": "trellis",
"TRE/TEU/TPHO": "tretinoin",
"TRE/TEU": "tretinoin",
"TRE/TEU/TPHOE": "tretinoin",
"TRE/TEUPB": "tretinoin",
"TRE/KHER": "treacherous",
"TRE/PHAOU": "tremulous",
"TRE/PHO": "tremolo",
"TRE/PHOE": "tremolo",
"TRE/PHEPB": "tremendous",
"TRE/PO/TPHAOE": "treponema",
"TRE/PO": "treponema",
"TRE/PEU": "trepidation",
"TREU/SREU": "trivial",
"TREU/SO": "trisomy",
"TREU/TKPWO/TPHO/PHE": "trigonometric",
"TREU/TKPWO/TPHO": "trigonometric",
"TREU/TKPWO": "trigonometry",
"TREU/TKPWO/TPHO/PHET": "trigonometric",
"TREU/TKPWO/TPHOPL": "trigonometry",
"TREU/TAOUR/KWRAEUT": "triturator",
"TREU/TAOUR": "triturator",
"TREU/TEU": "triticale",
"TREU/TUR/KWRAEU": "triturator",
"TREU/TUR": "triturate",
"TREU/KWET": "triquetral",
"TREU/KET": "triquetral",
"TREU/PWAOU": "tribulation",
"TREU/PWAOU/TAEUR": "tributary",
"TREU/HRO": "trilogy",
"TREU/HROE": "trilogy",
"TREUF": "trivialize",
"TREUPB": "trinket",
"TREUPBG": "trinket",
"TREUB/TAEUR": "tributary",
"TREUBG/KWREU": "trickiness",
"TREUBG/*ER": "trickery",
"TREUBGS": "trickster",
"TREUG/TPHOPL": "trigonometry",
"TREUG/PHE": "trigonometric",
"TREUG/PHET": "trigonometric",
"TREUS": "trismus",
"TREFP": "treacherous",
"TREFT": "terrestrial",
"TRERB": "treasurer",
"TRERT/SAOEU": "tetracycline",
"TRERT/SAOEUBG": "tetracycline",
"TRERT/KHROR": "tetrachloride",
"TRERT/HRO": "tetralogy",
"TRERT/HAOE": "tetrahedral",
"TRERT/HAOED": "tetrahedral",
"TREP": "treponema",
"TREP/TPHAOE": "treponema",
"TREPB": "torrential",
"TREPBT": "torrential",
"TREPL": "trembles",
"TREB": "trebuchet",
"TRET": "tretinoin",
"TRU/KAOU": "truculent",
"TRUPB/-FP": "truncheon",
"TRUPBG": "truncus",
"TRUPBD": "trundles",
"TRUPL/PER": "trumpery",
"TRUPL": "trumped",
"TRUPL/-P": "trumpery",
"TRUB": "troubles",
"TRUS/TPEU": "trustification",
"TRUS/TEU/TPEU": "trustification",
"TRUS/TEU": "trustification",
"TA": "tarantula",
"TA/TPE": "taffeta",
"TA/KRO/HREU": "tacrolimus",
"TA/KRO": "tacrolimus",
"TA/KROL": "tacrolimus",
"TA/KO/PHAOE": "tachometer",
"TA/KO": "tachometer",
"TA/KO/PHE": "tachometer",
"TA/KOPL": "tachometer",
"TA/KEU/KAR/TKEU": "tachycardia",
"TA/KEU/KAR": "tachycardic",
"TA/KEU": "tachycardia",
"TA/KEU/KARD": "tachycardia",
"TA/PWAOU": "tabular",
"TA/PWAOU/HRAEU": "tabulator",
"TA/PWE": "tabetic",
"TA/PWER/TPHABG": "tabernacles",
"TA/PWER": "tabernacles",
"TA/PHA/TKPWO": "tamagotchi",
"TA/PHA": "tamale",
"TA/PHA/TKPWOFP": "tamagotchi",
"TA/PHAEUR": "tamari",
"TA/PHAR": "tamarind",
"TA/PHOBG/SEU": "tamoxifen",
"TA/PHOBG": "tamoxifen",
"TA/PHOBGS": "tamoxifen",
"TA/PHEU": "tamiflu",
"TA/PE": "tapenade",
"TA/PEU/KWROE": "tapioca",
"TA/PEU": "tapioca",
"TA/PES": "tapestry",
"TA/HREUS": "talisman",
"TA/HEU": "tahini",
"TA/RAFRPB": "tarantula",
"TA/RAPB/KHAOU": "tarantula",
"TA/RAPB": "tarantula",
"TA/RAPB/KHU": "tarantula",
"TAO/TKA": "toodaloo",
"TAOE/TKEU": "tedious",
"TAOE/TER/TO": "teeter-totter",
"TAOEU/TA": "titanate",
"TAOEU/TAEU/TPHEU": "titanium",
"TAOEU/TAEU": "titanium",
"TAOEU/TAEUPB": "titanium",
"TAOEU/PO/TKPWRAF": "typographer",
"TAOEU/PO/HRO/SKWREU": "typological",
"TAOEU/PO/HRO": "typological",
"TAOEU/PO/HROPBLG": "typological",
"TAOEU/POE/TKPWRAF": "typographics",
"TAOEU/PORG": "typographer",
"TAOEU/POG/RA": "typographer",
"TAOEU/POG": "typograph",
"TAOEU/RA": "tyrannically",
"TAOEU/RA/TPHO/SAU": "tyrannosaurus",
"TAOEU/RA/TPHO": "tyrannosaurus",
"TAOEU/RA/TPHEU": "tyrannical",
"TAOEU/RA/TPHEUBG": "tyrannically",
"TAOEU/RAPB": "tyrannical",
"TAOEUP/TKPWRAF": "typographer",
"TAOEUP/WR*EU": "typewritten",
"TAOEUP/WR*EUT": "typewritten",
"TAOEUP/HROPBLG": "typological",
"TAOEUPLS": "timesing",
"TAOEUD/WA*": "tidewater",
"TAOEUD/WA*U": "tidewater",
"TAOEPB/KWREU/TAOEUPB": "teeny-tiny",
"TAOEPB/KWREU/WAOEPB": "teeny-weeny",
"TAOED": "tedious",
"TAOU/TPHEU": "tunica",
"TAOU/TOR/KWREU": "tutorial",
"TAOU/TE": "tutelage",
"TAOU/PWAOU": "tubulin",
"TAOU/PWER": "tubercles",
"TAOU/PWER/KWROS": "tuberosity",
"TAOU/PWER/KHROE": "tuberculosis",
"TAOU/PWER/KAOU": "tuberculous",
"TAOU/PWER/KAOU/HROE": "tuberculosis",
"TAOU/PWERBG": "tubercles",
"TAOU/PWERBG/HROE": "tuberculosis",
"TAOU/PHE": "tumescent",
"TAOU/PHUL": "tumultuous",
"TAOU/HRA/RAOE/PHEU": "tularemia",
"TAOU/HRA/RAOE": "tularemia",
"TAOU/HRA": "tularemia",
"TAOU/HRA/RAOEPL": "tularemia",
"TAOU/HRAR/KWRAOE/PHEU": "tularemia",
"TAOU/HRAR/KWRAOE": "tularemia",
"TAOU/HRAR": "tularemia",
"TAOU/HRAR/KWRAOEPL": "tularemia",
"TAOUR/TPHA": "tournament",
"TAOURB": "tubercles",
"TAOURB/KHROE": "tuberculosis",
"TAOURB/KAOU/HROE": "tuberculosis",
"TAOURB/KAOU": "tuberculosis",
"TAOURBG": "tubercle",
"TAOURBS": "tuberosity",
"TAOUP": "tuple",
"TAOUB/KWRAOU": "tubulin",
"TAOUL/RAOEPL": "tularemia",
"TAOTS": "tootsie",
"TAEU/TA": "fatalism",
"TAEU": "tailors",
"TAEU/TEU": "katydid",
"TAEU/PES": "tapestry",
"TAEUPS": "tapestry",
"TAEUBG/A*": "takeaway",
"TAEULS": "tailspin",
"TAEPLS": "teamsters",
"TAU/TO/HRO": "tautology",
"TAU/TO": "tautological",
"TAU/TO/HROPBLG": "tautological",
"TAU/TOE/HRO/SKWREU": "tautological",
"TAU/TOE/HRO": "tautological",
"TAU/TOE": "tautological",
"TAU/TOE/HROPBLG": "tautological",
"TAU/TOL": "tautology",
"TAU/KA": "talkative",
"TAUR": "taurus",
"TAUPB": "tawniness",
"TAUPL": "timbre",
"TAUBG/KWRA": "talkative",
"TAUT/HRO/SKWREU": "tautological",
"TAUT/HRO": "tautological",
"TAUT/HROPBLG": "tautological",
"TAUD": "tawdry",
"TAF": "taffy",
"TAFT": "tacitly",
"TAR/SA": "tarsalis",
"TAR/TKAOE": "tardiva",
"TAR/TKEU": "tardigrade",
"TAR/TRA": "tartrazine",
"TAR/TAEUR": "tartareous",
"TAR/KWRA": "tarragon",
"TAR/PHA/KA": "tarmacadam",
"TAR/PHA": "tarmacadam",
"TAR/PA": "tarpaulin",
"TAR/PAU": "tarpaulin",
"TARPB": "tarnish",
"TARPL/KA": "tarmacadam",
"TARPL": "tarmacadam",
"TARBG/HREU": "tacrolimus",
"TARBG": "tacrolimus",
"TAP/KWROE": "tapioca",
"TAPB/SKWRER": "tangerine",
"TAPB/SKWREPB": "tangential",
"TAPBT": "tantalize",
"TAPL/SAOU/HROE": "tamsulosin",
"TAPL/SAOU": "tamsulosin",
"TAPL/SU/HROE": "tamsulosin",
"TAPL/SU": "tamsulosin",
"TAPL/TKPWO": "tamagotchi",
"TAPL/TKPWOFP": "tamagotchi",
"TAPL/PWA": "tambala",
"TAPL/PWOR": "tambourine",
"TAPL/PO": "tamponade",
"TAPLS/HROE": "tamsulosin",
"TAPLS": "tamsulosin",
"TAPS": "tapestry",
"TAB/HRAEU": "tabulator",
"TAB/*ER/TPHABG": "tabernacles",
"TAB/*ER": "tabernacles",
"TABG/SO/TPHO": "taxonomic",
"TABG/SO": "taxonomic",
"TABG/SOPB": "taxonomy",
"TABG/SEU/TKER": "taxidermic",
"TABG/TEU": "tactical",
"TABG/TEUBG/KWRAL": "tactically",
"TABG/KAR/TKEU": "tachycardia",
"TABG/KAR": "tachycardic",
"TABG/KARD": "tachycardia",
"TABGS/TKER": "taxidermic",
"TABGS/TKERPL": "taxidermic",
"TABGS/TPHO": "taxonomic",
"TALS": "talisman",
"TAS": "tassle",
"TO/TKPWE": "together",
"TO/TPHO/PHAOE": "tonometer",
"TO/TPHO": "tonometer",
"TO/TPHO/PHE": "tonometer",
"TO/TPHOE/PHAOE": "tonometer",
"TO/TPHOE": "tonometer",
"TO/TPHOPL": "tonometer",
"TO/KA": "tokaku",
"TO/PWA": "tobacco",
"TO/PWABG": "tobacconist",
"TO/PWAG": "tobogganing",
"TO/PWO": "toboggan",
"TO/PHA": "tomalley",
"TO/PHAEU": "tomato",
"TO/PHO": "tomogram",
"TO/PHO/TKPWRAF": "topographics",
"TO/PHOR": "tomorrow",
"TO/PHORG": "tomography",
"TO/PO/TKPWRA": "topographers",
"TO/PO/TKPWRAF": "topographers",
"TO/PO/HRO": "topology",
"TO/PO/HROPBLG": "topological",
"TO/PORG": "topography",
"TO/POL": "topology",
"TO/POG": "topographers",
"TO/POG/RA": "topographers",
"TO/PEU/KA": "topicalize",
"TO/PEU": "topical",
"TO/HRER": "tolerability",
"TOE/TPHA": "tonnato",
"TOE/TPHO/TO/PEU": "tonotopical",
"TOE/TPHO/TO": "tonotopic",
"TOE/TPHO": "tonometry",
"TOE/TPHO/TOP": "tonotopical",
"TOE/TPHO/PHE": "tonometer",
"TOE/TPHO/PHET": "tonometry",
"TOE/TPHOPL": "tonometer",
"TOE/TA/HREU/TAEUR": "totalitarian",
"TOE/TA/HREU": "totality",
"TOE/TA": "totality",
"TOE/TAL/TAEUR": "totalitarian",
"TOE/PWA": "tobacco",
"TOE/PWABG": "tobacconist",
"TOE/PWAG": "tobogganing",
"TOE/PWO": "toboggan",
"TOE/PWEU": "tobiko",
"TOE/PHAEU": "tomatoes",
"TOE/PEU/KWRAEUR": "topiary",
"TOE/PEU": "topiary",
"TOEUPBG/KWRAL/KWRAOEUZ": "topicalization",
"TOEP": "topiary",
"TOEPB/TOP": "tonotopic",
"TOUPBS/PAO*EP": "townspeople",
"TOUPBS": "townspeople",
"TOR/TPHA": "tournaments",
"TOR/TPHAEU": "tornadic",
"TOR/TE/HROE": "tortelloni",
"TOR/TE": "tortellini",
"TOR/TE/HREU": "tortellini",
"TOR/TEU": "tortillas",
"TOR/KWRO/TPHA": "toronado",
"TOR/KWRO": "toronado",
"TOR/KWREPB": "torrential",
"TOR/KHAOU": "tortuous",
"TOR/PHA": "tourmaline",
"TOR/PAOE": "torpedo",
"TORT/TPAOE": "tortfeasor",
"TORT/TPAOES": "tortfeasor",
"TORT/HREU": "tortellini",
"TOP/TKPWRAF": "topographics",
"TOP/HRO/SKWREU": "topological",
"TOP/HRO": "topological",
"TOP/HROPBLG": "topological",
"TOPB/SEU/HRAOEU": "tonsillitis",
"TOPB/SEU": "tonsillectomy",
"TOPB/SEU/HREBG/TO": "tonsillectomy",
"TOPB/SEU/HREBG": "tonsillectomy",
"TOPB/SEU/HREBGT": "tonsillectomy",
"TOPBG/TPH": "tongue-in-cheek",
"TOPBS": "tonsillectomy",
"TOPBS/HREBG/TO": "tonsillectomy",
"TOPBS/HREBG": "tonsillectomy",
"TOPBS/HREBGT": "tonsillectomy",
"TOBG/SO/PHRAS": "toxoplasmic",
"TOBG/SO": "toxoplasmic",
"TOBG/SOE/PHRAS": "toxoplasmic",
"TOBG/SOE": "toxoplasmic",
"TOBG/SE/PHEU": "toxemia",
"TOBG/SE": "toxemia",
"TOBG/SEU/SKWRE": "toxigenic",
"TOBG/SEU": "toxicologist",
"TOBG/SEU/KHRO/SKWREU": "toxicological",
"TOBG/SEU/KHRO": "toxicological",
"TOBG/SEU/KHROPBLG": "toxicological",
"TOBG/SEU/KO/HRO": "toxicologist",
"TOBG/SEU/KO": "toxicological",
"TOBG/SEU/KO/HROPBLG": "toxicological",
"TOBG/SEU/KOL": "toxicologist",
"TOBG/SEUS": "toxicities",
"TOBG/SEPL": "toxemia",
"TOBGS/SKWRE": "toxigenic",
"TOBGS/KHRO/SKWREU": "toxicological",
"TOBGS/KHRO": "toxicological",
"TOBGS/KHROPBLG": "toxicological",
"TOBGS/KOE": "toxicosis",
"TOBGS/KOL": "toxicologist",
"TOBGS/PHRAS": "toxoplasmic",
"TOL/SRAP": "tolvaptan",
"TOT/*ER": "tottery",
"TOS/TA": "tostada",
"T*EUPBG": "tinkles",
"T*EPL/RAEUR": "temporary",
"T*EL/SKO": "telescopic",
"T*EL/SKOP": "telescopic",
"T*EL/SRAPB/SKWRE": "televangelist",
"T*EL/SRAPB": "televangelist",
"T*EL/SRAPBG": "televangelist",
"T*EL/TPO*": "telephotograph",
"T*EL/TPO*/TO/TKPWRA*": "telephotograph",
"T*EL/TPO*/TO": "telephotograph",
"T*EL/TPO*/TO/TKPWRAF": "telephotograph",
"T*EL/TPO*/TORG": "telephotograph",
"T*EL/TPO*/TOG/RA": "telephotograph",
"T*EL/TPO*/TOG": "telephotograph",
"T*EL/TPO*/TOG/RAF": "telephotograph",
"T*EL/TPO*E": "telephoto",
"T*EL/THOE": "telethonin",
"T*EL/KPHAOUPB": "telecommunication",
"T*EL/KO/PHAOU/TPHEU": "telecommunication",
"T*EL/KO/PHAOU": "telecommunication",
"T*EL/KO": "telecommute",
"T*EL/KO/PHAOUPB": "telecommunication",
"T*EL/KOPB": "teleconference",
"T*EL/KOPB/TPER": "teleconference",
"T*EL/PHAR/KET": "telemarketer",
"T*EL/PHAR": "telemarketer",
"T*EL/PHARBGT": "telemarketer",
"T*EL/PHE": "telemetry",
"T*EL/PHET": "telemetry",
"T*EL/PREUPBT": "teleprinter",
"T*EL/PA": "telepathic",
"T*EL/POR": "teleportation",
"T*EL/HRO": "teleology",
"TE/SE": "tessellate",
"TE/SEU/KHAOUR": "tessitura",
"TE/SEU": "tessitura",
"TE/SEU/KHUR": "tessitura",
"TE/SER": "tesseract",
"TE/TPHAOU": "tenuous",
"TE/TPHAPB": "tenancy",
"TE/TPHAPBS": "tenancy",
"TE/TPHAS": "tenacity",
"TE/TPHE": "tenements",
"TE/TRA/SAOEU": "tetracycline",
"TE/TRA/SAOEUBG": "tetracycline",
"TE/TRA/KHROR": "tetrachloride",
"TE/TRA/HRO": "tetralogy",
"TE/TRA/HAOE": "tetrahedral",
"TE/TRA/HAOED": "tetrahedral",
"TE/TRAL": "tetralogy",
"TE/TA": "tetanus",
"TE/KWEU": "tequila",
"TE/PHER": "temerity",
"TE/HRO/HRO/SKWREU": "teleological",
"TE/HRO/HRO": "teleological",
"TE/HRO": "teleological",
"TE/HRO/HROPBLG": "teleological",
"TE/HRE/SKO": "telescopic",
"TE/HRE/SKOP": "telescopic",
"TE/HRE/SRAPB/SKWRE": "televangelist",
"TE/HRE/SRAPB": "televangelist",
"TE/HRE/SRAPBG": "televangelist",
"TE/HRE/TPO*": "telephonic",
"TE/HRE/TPO*E": "telephoto",
"TE/HRE/KPHAOUPB": "telecommunication",
"TE/HRE/KO/PHAOU/TPHEU": "telecommunication",
"TE/HRE/KO/PHAOU": "telecommunication",
"TE/HRE/KO": "telecommute",
"TE/HRE/KO/PHAOUPB": "telecommunication",
"TE/HRE/KOPB": "teleconference",
"TE/HRE/KOPB/TPER": "teleconference",
"TE/HRE/PHAR/KET": "telemarketer",
"TE/HRE/PHAR": "telemarketer",
"TE/HRE/PHARBGT": "telemarketer",
"TE/HRE/PHE": "telemetry",
"TE/HRE/PHET": "telemetry",
"TE/HRE/PREUPBT": "teleprinter",
"TE/HRE/PA": "telepathic",
"TE/HRE/POR": "teleportation",
"TE/HRE/HRO": "teleology",
"TE/HRERG": "telegraphy",
"TE/HREP": "telepathy",
"TE/HREPB/SE/TPA*": "telencephalic",
"TE/HREPB/SE": "telencephalic",
"TE/HREPB": "telencephalic",
"TE/HREPB/SEF": "telencephalic",
"TE/HREPL": "telemetry",
"TE/REU": "terrific",
"TE/REUFBG": "terrifically",
"TE/RES/TREU": "terrestrial",
"TE/RES": "terrestrial",
"TEU/TPHAOEU": "tinnitus",
"TEU/TPHEU": "tinitus",
"TEU/TEU": "titillate",
"TEU/KWRAEUR": "tiara",
"TEU/KWRAR": "tiara",
"TEU/KHAOU": "titulus",
"TEU/PHO": "timolol",
"TEU/PHOE/TPHEU": "timonium",
"TEU/PHOE": "timonium",
"TEU/PHOEPB": "timonium",
"TEU/HRA/PEU": "tilapia",
"TEU/HRA": "tilapia",
"TEU/HRAP": "tilapia",
"TEU/RA/TPHO/SAU": "tyrannosaurus",
"TEU/RA/TPHO": "tyrannosaurus",
"TEU/RA": "tyrannosaurus",
"TEUFP": "titulus",
"TEUR": "tiramisu",
"TEUR/KWRA": "tiramisu",
"TEUR/KWRA/TPHO/SAU": "tyrannosaurus",
"TEUR/KWRA/TPHO": "tyrannosaurus",
"TEUR/KWRA/TPHEUBG": "tyrannically",
"TEUR/KWRA/PHEU": "tiramisu",
"TEUR/KWRAPB": "tyrannical",
"TEUR/PHEU": "tiramisu",
"TEUPL/PA": "tympanum",
"TEUPS": "tipsily",
"TEUBG/TABG": "tic-tac-toe",
"TEF/KAPB": "testificandum",
"TEF": "tephra",
"TEFT/TPEU/KAPB": "testificandum",
"TEFT/TPEU": "testificandum",
"TEFT/PHOE/TPHEU": "testimonial",
"TEFT/PHOE": "testimonial",
"TEFT/-PLT/KWRAEUR": "testamentary",
"TER/TKABG": "pterodactyl",
"TER/TKABGT": "pterodactyl",
"TER/TOR": "territories",
"TER/KWRA/KO*": "terracotta",
"TER/KWRAEUR": "terrarium",
"TER/KWRO/TKABG": "pterodactyl",
"TER/KWRO": "pterodactyl",
"TER/KWRO/TKABGT": "pterodactyl",
"TER/KWROE/TKABG": "pterodactyl",
"TER/KWROE": "pterodactyl",
"TER/KWROE/TKABGT": "pterodactyl",
"TER/KWREU/TOR": "territories",
"TER/KWREU/-BL": "terribly",
"TER/KWREUFBG": "terrifically",
"TER/KWREUB": "terribly",
"TER/KWREUBL": "terribly",
"TER/KWREFT": "terrestrial",
"TER/KWRES/TREU": "terrestrial",
"TER/KWRES": "terrestrial",
"TER/PHEU/TPHA/HREU": "terminality",
"TER/PHEU/TPHA": "terminalis",
"TER/PHEU": "terminus",
"TER/PHEU/TPHAOEUZ": "terminization",
"TER/PHEU/TPHAEU": "terminator",
"TER/PHEU/TPHO/HRO": "terminology",
"TER/PHEU/TPHO": "terminology",
"TER/PHEUPB": "terminably",
"TERPL/TPHAOEUZ": "terminization",
"TERPL/TPHAEU": "terminator",
"TERB/KWRAEUR": "tertiary",
"TERB": "tertiary",
"TERT/SAOEUBG": "tetracycline",
"TERT": "tertius",
"TEPB/TKO/TPHAOEU": "tendonitis",
"TEPB/TKO": "tendonitis",
"TEPB/TKEU/TPHAOEU": "tendinitis",
"TEPB/TKEU": "tendinous",
"TEPB/TKEU/TPHOE": "tendinosus",
"TEPB/TKEPB": "tendentiously",
"TEPB/TKEPB/-RBS": "tendentiously",
"TEPB/TKEPBT/-RBS": "tendentiously",
"TEPB/TKEPBT": "tendentiously",
"TEPB/TA": "tentacles",
"TEPB/TABG": "tentacles",
"TEPB/TOR": "tentorium",
"TEPBD/TPHOE": "tendinosus",
"TEPL": "temple",
"TEPL/POR": "temporal",
"TEPL/POR/KWRAEUR": "temporary",
"TEPL/PER/KWRA": "temperatures",
"TEPL/PES": "tempestuous",
"TEPL/PUR": "tempura",
"TEBG/TPHAOE/TEU": "technetium",
"TEBG/TPHAOE": "technetium",
"TEBG/TPHAOET": "technetium",
"TEBG/TPHO/KRA": "technocratic",
"TEBG/TPHO/HRO": "technologies",
"TEBG/TPHO/HROPBLG": "technological",
"TEBG/TPHOE/KRA": "technocratic",
"TEBG/TPHORBG": "technocracy",
"TEBG/TPHOBG": "technocracy",
"TEBG/TPHOBG/RA": "technocracy",
"TEBG/TPHOL": "technologies",
"TEBG/TPHEU": "technicolor",
"TEBG/TPHEU/KO": "technicolor",
"TEBG/TO": "tectonic",
"TEBG/TOR/KWREU": "tectorial",
"TEBG/TOR": "tectorium",
"TEBG/HRO": "technologic",
"TEG": "tegment",
"TET": "tetanus",
"TES/TA": "testament",
"TES": "tesseract",
"TES/TA/-PLT/KWRAEUR": "testamentary",
"TES/TAEU/TREU": "testatrices",
"TES/TAEU": "testator",
"TES/TAPB": "testandi",
"TES/TAPLT/KWRAEUR": "testamentary",
"TES/TOFT": "testosterone",
"TES/TOS/TER": "testosterone",
"TES/TOS": "testosterone",
"TES/TEU/TPEU": "testificandum",
"TES/TEU/TPEU/KAPB": "testificandum",
"TES/TEU/KAOU": "testicular",
"TES/TEU/PHOE/TPHEU": "testimonium",
"TES/TEU/PHOE": "testimonium",
"TES/TEUF/KAPB": "testificandum",
"TES/TEUF": "testificandum",
"TES/TEUBG": "testicular",
"TES/KHAOUR": "tessitura",
"TES/KHUR": "tessitura",
"TU": "tumult",
"TU/PHUL": "tumultuous",
"TUR/TPHA": "tournaments",
"TUR/TPHE": "tournedos",
"TUR/PWAOU": "turbulence",
"TUR/PWEU/TPHA": "turbinado",
"TUR/PWEU": "turbinate",
"TUR/PEU": "turpitude",
"TUR/PEPB": "turpentine",
"TURP": "turpitude",
"TURPB/A*": "turnaround",
"TURPBS": "turnstile",
"TURPL": "turmeric",
"TURB/TPHA": "turbinado",
"TURBG": "turcica",
"TUPBG/TPH": "tongue-in-cheek",
"TUPBGS": "tungsten",
"TUPBD": "tundra",
"TUBG/SAOE": "tuxedo",
"TUL": "tulgy",
"TULG": "tulgy",
"TUS": "tussled",
"K/TKEPB": "kdenlive",
"KPWEUPBGS": "combinatory",
"KPHRAEU": "complaisant",
"KPHRAEUFPB": "complacency",
"KPHROE": "explosives",
"KPHROEU/TA": "exploitative",
"KPHROEU": "exploitative",
"KPHROEUT/KWRA": "exploitative",
"KPHROES": "explosives",
"KPHROR/KWRA": "explorative",
"KPHROR/KWRA/TOR": "exploratory",
"KPHROR/KWRAT": "explorative",
"KPHREUS": "complicity",
"KPHAOE/TKEU": "comedian",
"KPHAOEL": "chameleon",
"KPHAOED": "comedically",
"KPHAOU": "cumulative",
"KPHAOU/TAEU": "commutator",
"KPHAOU/HRA": "cumulative",
"KPHAOUPB/TAEU": "commutative",
"KPHAOUPB/TAEUR": "communitarian",
"KPHAOUPB/TAEUT": "commutative",
"KPHAOUPB/KA": "communicative",
"KPHAOUPB/KAT": "communicative",
"KPHAPB": "commanders",
"KPHO/TKEU": "commodities",
"KPHO": "commodities",
"KPHOPB/KWRAL": "commonality",
"KPHOPL": "commemorates",
"KPHEU": "committal",
"KPHEURB": "commissural",
"KPHEUS": "commiserate",
"KPHEUZ": "commiserate",
"KPHEPB": "commentator",
"KPHEPB/SUR": "commensurably",
"KPHEPB/TAEU": "commentator",
"KPHEPL": "commemoratives",
"KPHEPL/RA": "commemoratives",
"KPHEPL/RAT": "commemoratives",
"KPRA/SKWRAOU/TKEU": "extrajudicial",
"KPRA/SKWRAOU": "extrajudicial",
"KPRA/SKWRAOU/TKEURB": "extrajudicial",
"KPRA/SRA": "extravagance",
"KPRA/SEPB/SOR": "extrasensory",
"KPRA/SEPB": "extrasensory",
"KPRA/SEPBS": "extrasensory",
"KPRA/SEPBS/O*R": "extrasensory",
"KPRA/TREFT": "extraterrestrial",
"KPRA/TER/TOER": "extraterritoriality",
"KPRA/TER": "extraterrestrial",
"KPRA/TER/KWREU/TOER": "extraterritoriality",
"KPRA/TER/KWREU": "extraterritoriality",
"KPRA/TER/KWREU/TOR": "extraterritoriality",
"KPRA/TER/KWREU/TOR/KWREU": "extraterritoriality",
"KPRA/TER/KWRES/TREU": "extraterrestrial",
"KPRA/TER/KWRES": "extraterrestrial",
"KPRA/KRE/HRAOU": "extracellular",
"KPRA/KRE": "extracellular",
"KPRA/KREUBG": "extracurricular",
"KPRA/KUR/KWREU/KAOU": "extracurricular",
"KPRA/KUR/KWREU": "extracurricular",
"KPRA/KUR": "extracurricular",
"KPRA/KUR/KWREUBG": "extracurricular",
"KPRA/PHAEUR": "extramarital",
"KPRA/PHAEUR/KWREU": "extramarital",
"KPRA/PO": "extrapolates",
"KPRA/POE": "extrapolates",
"KPRA/PEUR/PHEUD": "extrapyramidal",
"KPRA/PEUR": "extrapyramidal",
"KPRA/HRAOE": "extralegal",
"KPRA/OR/TKEU": "extraordinary",
"KPRA/OR": "extraordinary",
"KPRA/ORD": "extraordinariness",
"KPRA/OBG/KWRAOU": "extraocular",
"KPRA/OBG": "extraocular",
"KPRAEUPB": "extraneous",
"KPRAF": "extravagance",
"KPRAF/TKPWAPB": "extravaganza",
"KPRABG": "chiropractic",
"KPRE": "compressors",
"KPA/SEU": "capacitors",
"KPA": "exhalation",
"KPAOE": "xenon",
"KPAOE/TPHO/TPO*E/PWEU": "xenophobia",
"KPAOE/TPHO/TPO*E": "xenophobia",
"KPAOE/TPHO/TPOE": "xenophobic",
"KPAOE/TPHO*E/TPO*E/PWEU": "xenophobe",
"KPAOE/TPHO*E/TPO*E": "xenophobe",
"KPAOE/TPHO*E": "xenophobe",
"KPAOEU": "{xylo^}",
"KPAOEU/HRAOU": "xylulose",
"KPAOEU/HRO/TPOEPB": "xylophonist",
"KPAOEU/HROE/TPO*EPB": "xylophonist",
"KPAOER/TKER": "xeroderma",
"KPAOER": "xerographer",
"KPAOER/KWRO/TKPWRA": "xerographer",
"KPAOER/KWRO": "xerographer",
"KPAOER/KWRO/TKPWRAF": "xerographer",
"KPAOER/KWROE/TKPWRAF": "xerographics",
"KPAOER/KWROE": "xerographics",
"KPAOER/KWRORG": "xerographer",
"KPAOER/KWROG/RA": "xerographer",
"KPAOER/KWROG": "xerographer",
"KPAOEPB": "xenophobe",
"KPAOU": "computation",
"KPAOUB": "exuberance",
"KPAEU": "exhalant",
"KPAFR": "exacerbate",
"KPAPBLG": "exaggerate",
"KPOT": "exotica",
"KPOS": "composita",
"KPE": "xerographics",
"KPE/RO/TKPWRAF": "xerographics",
"KPE/RO": "xerographics",
"KPE/ROE/TKPWRAF": "xerographics",
"KPE/ROE": "xerographics",
"KPEUB": "exhibitor",
"KPEUL": "exhilarant",
"KPER/KWROE/TKPWRAF": "xerographics",
"KPER/KWROE": "xerographics",
"KPER": "xerographics",
"KPEPB": "competencies",
"KPEPBT": "competently",
"KPEPBD": "compendious",
"KPEPL/PHRAOEU": "exemplified",
"KPEPL": "exempli",
"KPEPL/PHREU/TPEU": "exemplification",
"KPEBG/TREU": "executrices",
"KPEBG": "executrix",
"KPET": "competitors",
"KPUL": "exultation",
"KPULS/REU": "compulsoriness",
"KWRA/TKA/KWRA": "yadda-yadda",
"KWRA/TKA/KWRA/TKA/KWRA": "yadda-yadda-yadda",
"KWRA/KEU/TOR": "yakitori",
"KWRA/KEU": "yackity-yack",
"KWRA/KEU/TEU": "yackity-yack",
"KWRA/PHA": "yamato",
"KWRAO": "yoo-hoo",
"KWRAO*": "yoo-hoo",
"KWRAO*UL": "yuletide",
"KWRA*/TKA/KWRA*": "yadda-yadda",
"KWRA*/TKA/KWRA*/TKA/KWRA*": "yadda-yadda-yadda",
"KWRA*/KEU/TOR": "yakitori",
"KWRA*/KEU": "yackity-yack",
"KWRA*/KEU/TEU": "yackity-yack",
"KWRA*/PHA": "yamato",
"KWRA*R/PHUL": "yarmulke",
"KWRA*BG/TOR": "yakitori",
"KWRA*BG/TEU": "yackity-yack",
"KWRA*D": "yadda-yadda",
"KWRAR/TER/PHA*S": "quartermaster",
"KWRAR/PHUL": "yarmulke",
"KWRABG/TOR": "yakitori",
"KWRABG/TEU": "yackity-yack",
"KWRAD": "yadda-yadda",
"KWRO/HRO": "{^ology}",
"KWRO/HEUPL": "yohimbe",
"KWRO*/HEUPL": "yohimbe",
"KWRO*E/HEUPL": "yohimbe",
"KWROE/HEUPL": "yohimbe",
"KWROPB": "yonder",
"KWR*E/SHEU": "yeshiva",
"KWR*EU/TER/PWEU": "ytterbium",
"KWR*EU/TER": "ytterbium",
"KWR*EU": "yippie",
"KWR*EU/TERB": "ytterbium",
"KWR*EUPB": "yin-yang",
"KWR*ERB": "ytterbium",
"KWR*ES/TER": "yesterdays",
"KWR*UPBGS": "youngsters",
"KWRE/SHEU": "yeshiva",
"KWREU/TER/PWEU": "ytterbium",
"KWREU/TER": "ytterbium",
"KWREU/TERB": "ytterbium",
"KWREUL": "{^ility}",
"KWREUS": "{^istic}",
"KWRERB": "ytterbium",
"KWRES/TER": "yesterday",
"KWRUPBGS": "youngsters",
"KWAOE/TPHOE": "quinoa",
"KWAOE/KWRE": "quiescence",
"KWAOEU/KWRE": "quietude",
"KWAOEUPBL": "finalizing",
"KWAEU/SA/TKEU": "quesadilla",
"KWAEU/SA": "quesadilla",
"KWAEUT": "Kuwaiti",
"KWAEUS/TKEU": "quesadilla",
"KWAEUS": "quesadilla",
"KWAU": "qualities",
"KWAU/TKRA/TEU": "quadratical",
"KWAU/TKRA": "quadratus",
"KWAU/TKRAOU/PHREU": "quadruplicate",
"KWAU/TKRAOU": "quadruplicate",
"KWAU/TKRAOUP/HREU": "quadruplicate",
"KWAU/TKRAOUP": "quadruples",
"KWAU/TKRAPB/TKPWAOU": "quadrangular",
"KWAU/TKRAPB": "quadrangular",
"KWAU/TKRAPBG/TKPWAOU": "quadrangular",
"KWAU/TKRAPBG": "quadrangles",
"KWAU/TKRAT": "quadratical",
"KWAU/TKRAD": "quadratical",
"KWAU/TKREU/SREU": "quadrivium",
"KWAU/TKREU": "quadrillion",
"KWAU/TKREU/PHRAOE": "quadriplegics",
"KWAU/TKREU/HREU": "quadrillion",
"KWAU/TKREUF": "quadrivium",
"KWAU/TKREUL": "quadrillion",
"KWAU/HREU": "qualities",
"KWAU/HREU/TPEU": "qualification",
"KWAU/HREU/TAEU": "qualitatively",
"KWAUR/TER/PHA*S": "quartermaster",
"KWAURPB": "quarantine",
"KWAUPB": "quantum",
"KWAUPB/TKAEUR": "quandary",
"KWAUPB/TAEU": "quantitatively",
"KWAUPB/TEU/TPEU": "quantification",
"KWAUPB/TEU/TAEU": "quantitatively",
"KWAUPBT/TAEU": "quantitatively",
"KWAUPBD/KWRAEUR": "quandary",
"KWAUL/TPEU": "qualification",
"KWAUL/TAEU": "qualitatively",
"KWAUG": "quagmire",
"KWAUT": "quadrate",
"KWAUD/KO*P": "quadcopter",
"KWAUD/KOP": "quadcopter",
"KWAUD/RA": "quadratus",
"KWAUD/RAOU/PHREU": "quadruplicate",
"KWAUD/RAOU": "quadruplicate",
"KWAUD/RAOUP/HREU": "quadruplicate",
"KWAUD/RAOUP": "quadruples",
"KWAUD/RAPB/TKPWAOU": "quadrangular",
"KWAUD/RAPB": "quadrangular",
"KWAUD/RAPBG/TKPWAOU": "quadrangular",
"KWAUD/RAPBG": "quadrangles",
"KWAUD/RAT": "quadratical",
"KWAUD/REU/SREU": "quadrivium",
"KWAUD/REU": "quadrillion",
"KWAUD/REU/PHRAOE": "quadriplegics",
"KWAUD/REU/HREU": "quadrillion",
"KWAUD/REUF": "quadrivium",
"KWAUD/REUL": "quadrillion",
"KWARPB": "quarantine",
"KWAPB": "quantum",
"KWABG/*ER": "quackery",
"KWAG": "quagmire",
"KWAT": "quatrain",
"KWOE/TEU/TKEU": "quotidian",
"KWOE/TEU": "quotidian",
"KWOE/TEUD": "quotidian",
"KWOERB": "quotient",
"KWOEPB": "quoniam",
"KWOR": "quorum",
"KWOPB": "quondam",
"KWEU/S*EU": "quizzical",
"KWEU/S*EUBG": "quizzically",
"KWEU/TPHA": "quinacrine",
"KWEU/TPHO": "quinoline",
"KWEU/TPHEU": "quinidine",
"KWEU/KWRE": "quiescent",
"KWEUF": "equivocal",
"KWEUFBG": "equivocally",
"KWEUPB/SE/TPHAOER": "quinceanera",
"KWEUPB/SE": "quinceanera",
"KWEUPB/SE/TPHER": "quinceanera",
"KWEUPB/TAOUP": "quintuplet",
"KWEUPB/TE/SEPB": "quintessential",
"KWEUPB/TE": "quintessence",
"KWEUPB/TE/SEPBT": "quintessential",
"KWEUPB/TUP": "quintuplet",
"KWEUPBT/SAOEGS": "quintessentially",
"KWEUPBT/SEPB": "quintessential",
"KWEUPBT/AO*E/SEPB": "quintessential",
"KWEUPBT/AO*E": "quintessential",
"KWEUPBT/*ES/KWREPB": "quintessential",
"KWEUPBT/*ES": "quintessence",
"KWEUPBS/TPHAOER": "quinceanera",
"KWEUPBS/TPHER": "quinceanera",
"KWEUB": "quibbles",
"KWEUBG/SO": "quixotic",
"KWEUBG/S*EUL": "quicksilver",
"KWER": "querulous",
"KWER/KWRU": "querulous",
"KWEPBGS/KWRAL": "conventionally",
"KWEPBS": "consequences",
"KWULS": "convulsive",
"KHRA/SREU/KAOU": "clavicular",
"KHRA/SREU": "clavicular",
"KHRA": "chlamydial",
"KHRA/SEU": "classical",
"KHRA/PHEU/TKEU": "chlamydial",
"KHRA/PHEU": "chlamydial",
"KHRA/PHEUD": "chlamydial",
"KHRAOE": "kleenex",
"KHRAOEU": "climates",
"KHRAOEU/TKO": "kaleidoscope",
"KHRAOEU/TKOE": "kaleidoscope",
"KHRAOEU/PHA/TO/HRO": "climatologist",
"KHRAOEU/PHA/TO": "climatologist",
"KHRAOEU/PHA": "climatic",
"KHRAOEU/PHA/TOL": "climatologist",
"KHRAOEU/PHA/TOLG": "climatologist",
"KHRAOEU/PHABG": "climactic",
"KHRAOEU/PHABGT": "climactically",
"KHRAOEUPL/TOL": "climatologist",
"KHRAOEUPL/TOLG": "climatologist",
"KHRAOEUS": "klystron",
"KHRAOEUD/SKO": "kaleidoscopic",
"KHRAOEUD/SKOP": "kaleidoscopic",
"KHRAOEPBLG": "collegiate",
"KHRAOUS": "collusive",
"KHRAEUR/SROEU": "clairvoyance",
"KHRAEUR": "clarity",
"KHRAEUR/TPEU": "clarification",
"KHRAEUR/KWREU": "clarity",
"KHRAUFRT/TPO*E": "claustrophobic",
"KHRAUFRT": "claustrophobe",
"KHRAUS/TRO/TPO*E": "claustrophobic",
"KHRAUS/TRO": "claustrophobe",
"KHRAUS/TROE/TPO*E": "claustrophobic",
"KHRAUS/TROE": "claustrophobe",
"KHRAUD": "claudication",
"KHRAF": "clavicles",
"KHRAPB/TKES": "clandestine",
"KHRAPBS": "chanciest",
"KHRAB/RA": "collaborative",
"KHRAB/RAEU": "collaboratively",
"KHRAB/RAT": "collaborative",
"KHRAT": "collateral",
"KHRO": "clomiphene",
"KHRO/TPHEU": "clonidine",
"KHRO/PHEU": "clomiphene",
"KHROE": "clomiphene",
"KHROE/PHEU": "clomiphene",
"KHROEUG": "cloyingly",
"KHROEUS": "cloistering",
"KHROEPL": "clomiphene",
"KHROR/KWRAOE/PHEU": "chloremia",
"KHROR/KWRAOE": "chloremia",
"KHROR/KWRAOEPL": "chloremia",
"KHROR/KWRO": "chloroquine",
"KHROR/KWROE": "chloroquine",
"KHROR/KWRE": "chlorella",
"KHROR/KWREU": "chlorinate",
"KHROPL": "clomp",
"KHROS": "colossus",
"KHROS/TO": "colostomy",
"KHRE/PHEPB": "clementine",
"KHRE": "clementine",
"KHREU": "clitoris",
"KHREU/TOR": "clitoris",
"KHREUG": "calligraphers",
"KHREUG/RA": "calligraphist",
"KHRER": "clerical",
"KHRER/SKWREU/WO*": "clergywomen",
"KHRERPBLG": "clergy",
"KHREP/TO/PHAEUPB": "kleptomaniac",
"KHREP/TO": "kleptomaniac",
"KHREP": "kleptomaniac",
"KHREP/TOE/PHAEUPB": "kleptomaniac",
"KHREP/TOE": "kleptomaniac",
"KHREPB/HREU": "cleanliness",
"KHREPB": "cleanliness",
"KHREPL": "clementine",
"KHREPT/PHAEUPB": "kleptomaniac",
"KHREPT": "kleptomaniac",
"KHREBG/TEU": "collectivize",
"KHREBG": "eclectic",
"KHREBGT/KWREU": "collectivize",
"KHRUPLS": "clumsiness",
"KHRUS": "clusters",
"KHA/TOE/PWREU": "chateaubriand",
"KHA/PHAOEL": "chameleon",
"KHA/PHO": "chamomile",
"KHA/PHOE": "chamomile",
"KHA/HRAEUS": "chalasia",
"KHA/REUS": "charisma",
"KHAOE/KWRAS": "chiasma",
"KHAOE/PHOE/THER/KWRA": "chemotherapy",
"KHAOE/PHOE/THER": "chemotherapy",
"KHAOE/PHOE": "chemotherapy",
"KHAOEU/KWRAS/PHA": "chiasmata",
"KHAOEU/KWRAS": "chiasmata",
"KHAOEU/PHAOER": "chimera",
"KHAOEU/RO/PRABG": "chiropractic",
"KHAOEU/RO": "chiropractor",
"KHAOEU/RO/PRABGT": "chiropractor",
"KHAOEU/ROE/PRABG": "chiropractic",
"KHAOEU/ROE": "chiropractor",
"KHAOEU/ROE/PRABGT": "chiropractor",
"KHAOEPB": "chignon",
"KHAOES/PW*UR": "cheeseburger",
"KHAOEZ/PW*UR": "cheeseburger",
"KHAOU/PWA": "chubasco",
"KHAOU/PWAS": "chubasco",
"KHA*LG/PAOEU": "chalcopyrite",
"KHAEU/KWRO": "chaotic",
"KHAEU": "chaos",
"KHAEU/KWROT": "chaotically",
"KHAEUR/KWRA/TER": "characterize",
"KHAEUR/KWRA": "characterize",
"KHAEUR/KWRABG/TE/REUS": "characteristic",
"KHAEUR/KWRABG/TE": "characteristic",
"KHAEUR/KWRABG": "character",
"KHAEUR/KWRABG/TER/KWREUS": "characteristic",
"KHAEUR/PHAPB": "chairmanship",
"KHAEUR/P*ER": "chairperson",
"KHAEUR/WO*": "chairwoman",
"KHAEURBG": "character",
"KHAEUPL": "chambers",
"KHAU": "chauffeur",
"KHAUL": "chalk",
"KHAFT": "chastity",
"KHAR/KWREUS": "charisma",
"KHAR/KWREUZ": "charisma",
"KHAR/HRA": "charlatan",
"KHARBG": "character",
"KHARL": "charlton",
"KHAPB/SE": "chancellor",
"KHAPBL/KWRO/PA": "channelopathy",
"KHAPBL/KWRO": "channelopathy",
"KHAPBL/KWROP/KWRA": "channelopathy",
"KHAPBL/KWROP": "channelopathy",
"KHAPBD": "chandler",
"KHAPL/PAOE/KWROPB": "championships",
"KHAPL/PAOE": "champions",
"KHAPL/PEU/KWROPB": "championships",
"KHAPL/PEU": "champions",
"KHABG": "chakra",
"KHAL/KO": "chalcopyrite",
"KHAL": "chalcopyrite",
"KHAL/KO/PAOEU": "chalcopyrite",
"KHAG": "chagrined",
"KHAS": "chastity",
"KHAS/TEU": "chastity",
"KHO/KO/HRA": "chocolatier",
"KHO/KO": "chocoholics",
"KHO": "choleric",
"KHO/KO/HO": "chocoholics",
"KHO/KO/HOL": "chocoholics",
"KHO/HRER": "choleric",
"KHOE": "cholesterol",
"KHOE/KWRA": "choana",
"KHOE/HRES": "cholesterol",
"KHOEUS/KWREU": "choicest",
"KHOEFP": "tchotchke",
"KHOEBG/HRAOE": "cochlea",
"KHOR/TKPWRAF": "choreography",
"KHOR/KWRORG": "choreography",
"KHORG": "choreography",
"KHORT": "chortles",
"KHOPL": "chomp",
"KHOBG/HRAOE": "cochlea",
"KHOBG/HO": "chocoholics",
"KHOBG/HOL": "chocoholics",
"KHOL/*ER": "choleric",
"KHE/SRAL": "chevalier",
"KHE": "cellist",
"KHE/PHEUS": "chemistry",
"KHEU/TPOR": "chifforobe",
"KHEU/KWRAS": "chiasmus",
"KHEU/KWEU": "chiquita",
"KHEU/KA": "chickadee",
"KHEU/KAEUPB": "chicanery",
"KHEU/KOR": "chicory",
"KHEU/KEU": "chiquita",
"KHEU/PHEU/KHUR": "chimichurri",
"KHEU/PHEU": "chimichurri",
"KHEU/POET": "chipotle",
"KHEU/WA": "chihuahua",
"KHEU/WAU": "chihuahua",
"KHEUF": "chifforobe",
"KHEUP/KWROET": "chipotle",
"KHEUPB/KHEU": "chinchilla",
"KHEUPB/KHER/KWREUPB": "chincherinchee",
"KHEUPB/KHER": "chincherinchee",
"KHEUPL/TPHAEU": "chimenea",
"KHEUPL": "chimp",
"KHEUPL/KHUR": "chimichurri",
"KHEUPL/PAPB": "chimpanzee",
"KHEUS": "chiseled",
"KHEUZ": "chisel",
"KHEF": "chevron",
"KHEPL/KWREUBG": "chemicals",
"KHEPLS": "chemistry",
"KHEB/KWRUB": "cherubic",
"KHEB": "cherubic",
"KHEBG/KWREU": "cheekily",
"KHEBG/*ER": "checkerboard",
"KHEL/A*T": "chelator",
"KHUR/REU": "chincherinchee",
"KHUG/A": "chug-a-lug",
"KHUT": "chutney",
"KRAO": "crooked",
"KRAOE": "cremated",
"KRAOE/KWRA": "creatine",
"KRAOE/KWRAEU/TEUF": "creatively",
"KRAOE/KWRAEU": "creatively",
"KRAOE/KWRO": "creosote",
"KRAOE/KWROE": "creosote",
"KRAOE/PHA/TOR": "crematorium",
"KRAOE/PHA": "crematorium",
"KRAOEU/SKWROE/SKWREPB": "cryogenics",
"KRAOEU/SKWROE": "cryogenics",
"KRAOEU/SKWREPB": "cryogenically",
"KRAOEU/THAOEPL": "cythemia",
"KRAOEU/TAOER": "criterion",
"KRAOEU/TO": "cytoplasmic",
"KRAOEU/TO/PHRAS": "cytoplasmic",
"KRAOEU/TOE": "cytoplasmic",
"KRAOEU/TOE/PHRAS": "cytoplasmic",
"KRAOEU/TOES": "cytosis",
"KRAOEU/KWROE/SKWREPB": "cryogenically",
"KRAOEU/KWROE": "cryogenically",
"KRAOEUBG": "crikey",
"KRAOEUT/KEU/TPHAOE": "cytokinesis",
"KRAOEUT/KEU": "cytokinesis",
"KRAOEPL/SEU": "creamsicle",
"KRAOEPL/SEUBG": "creamsicle",
"KRAOU/SAEU": "crusader",
"KRAOU/SEU": "cruciferous",
"KRAOU/SEU/TPER": "cruciferous",
"KRAOU/SEUF": "cruciferous",
"KRAOU/TKEU": "crudite",
"KRAOURB": "cruciate",
"KRAEU/TPHEU/KWRO/TO": "craniotomy",
"KRAEU/TPHEU/KWRO": "craniometry",
"KRAEU/TPHEU": "craniometry",
"KRAEU/TPHEU/KWRO/PHE": "craniometry",
"KRAEU/KWRO": "crayola",
"KRAEU/KWROE": "crayola",
"KRAEUPB/KWROPL": "craniometry",
"KRAEUPB/KWROT": "craniotomy",
"KRAEUD": "cradles",
"KRARB/WO*RT/KWREU": "crashworthiness",
"KRARB/WO*RT": "crashworthiness",
"KRAPB": "cranberry",
"KRAPB/PW*ER": "cranberry",
"KRABG/TEUL": "contractility",
"KRO/TPHO/PHE": "chronometer",
"KRO/TPHO": "chronological",
"KRO": "chromatic",
"KRO/TPHO/HRO": "chronology",
"KRO/TPHO/HROPBLG": "chronological",
"KRO/TPHOE/HRO/SKWREU": "chronological",
"KRO/TPHOE/HRO": "chronological",
"KRO/TPHOE": "chronological",
"KRO/TPHOE/HROPBLG": "chronological",
"KRO/TPHOPL": "chronometer",
"KRO/KO": "crocodile",
"KRO/KOE": "crocodiles",
"KRO/PHA": "chromatic",
"KRO*E": "krona",
"KROE/TPHO/PHE": "chronometer",
"KROE/TPHO": "chronology",
"KROE/TPHO/HRO": "chronology",
"KROE/TPHOE/PWAOEU/KWRO/HRO": "chronobiology",
"KROE/TPHOE/PWAOEU/KWRO": "chronobiology",
"KROE/TPHOE/PWAOEU": "chronobiology",
"KROE/TPHOE/HRO/SKWREU": "chronological",
"KROE/TPHOE/HRO": "chronological",
"KROE/TPHOE/HROPBLG": "chronological",
"KROE/TPHOPL": "chronometer",
"KROE/PHA/TO": "chromatolysis",
"KROE/PHA/TO/HREU": "chromatolysis",
"KROE/PHA/TOE": "chromatosis",
"KROE/PHA/TORG": "chromatography",
"KROE/PHO": "chromosomes",
"KROE/PHOE": "chromosomes",
"KROEPB/HROPBLG": "chronological",
"KROEPL/TKPWRAF": "chromatographics",
"KROEPL/TO": "chromatography",
"KROEPL/TO/TKPWRAF": "chromatography",
"KROEPL/TOE": "chromatosis",
"KROEPL/TORG": "chromatography",
"KROEPL/TOL": "chromatolysis",
"KROES": "cross-bridge",
"KROPB/HROPBLG": "chronological",
"KROB": "corroborant",
"KROB/RA": "corroborative",
"KROBG/*ER": "crockery",
"KROL": "corollary",
"KROS/TA": "crostata",
"KROS/TEU": "crostini",
"KROS/PWO*R": "cross-border",
"KR*EPBT/PHAOE": "centimeters",
"KR*EPBT/HREU": "centiliters",
"KR*UPL": "crumple",
"KRE/SKWRAOU": "credulous",
"KRE": "cellulose",
"KRE/SHEPB": "crescendo",
"KRE/SEPB": "crescentic",
"KRE/TKAOU": "credulous",
"KRE/TKAOUL": "credulity",
"KRE/TKEPB": "credentials",
"KRE/TPHAOU": "crenulation",
"KRE/TPHE": "crenelated",
"KRE/TER": "cetera",
"KRE/PHA": "crematorium",
"KRE/PHA/TOR": "crematorium",
"KRE/PHAFT": "cremasteric",
"KRE/PHAS": "cremaster",
"KRE/HRAOU": "cellulose",
"KREU/TPHAEUT": "criminative",
"KREU/TPHO": "crinoline",
"KREU/TEU": "critically",
"KREU/TEU/KAL": "critically",
"KREU/TEUBG/KWRAL": "critically",
"KREU/PHEU/TPHA": "criminative",
"KREU/PHEU": "criminis",
"KREU/PHEU/TPHAEU": "criminative",
"KREU/PHEU/TPHAL": "criminally",
"KREU/PHEU/TPHAT": "criminator",
"KREU/PHEU/TPHO/HRO": "criminologist",
"KREU/PHEU/TPHO/HROE": "criminologist",
"KREU/PHEU/TPHOL": "criminologist",
"KREU/PHEUPB": "criminis",
"KREUR": "critter",
"KREUP/TO": "cryptogram",
"KREUP/TO/TKPWRAF": "cryptographics",
"KREUP/TOE/K*UR/KWREPB": "cryptocurrency",
"KREUP/TOE/K*UR": "cryptocurrency",
"KREUP/TOE/K*URPB": "cryptocurrency",
"KREUP/TORG": "cryptography",
"KREUPB": "crinoline",
"KREUPL/TPHA": "criminative",
"KREUPL/TPHAEU": "criminative",
"KREUPL/TPHAT": "criminator",
"KREUPL/TPHOL": "criminologist",
"KREUPT/TKPWRAF": "cryptographics",
"KREUG": "cygwin",
"KREUS": "christened",
"KREUS/TA/HRO": "crystallography",
"KREUS/TA/HRO/TKPWRAF": "crystallography",
"KREUS/TA/HRORG": "crystallography",
"KREUS/TAL/TKPWRAF": "crystallography",
"KREFRB": "cervical",
"KRER/SREU": "cervical",
"KRER": "ceremonious",
"KRER/KWRA": "ceramic",
"KRER/KWRAPL": "ceramic",
"KRER/KWRE": "ceremonious",
"KRER/KWRE/PHOE/TPHEU": "ceremonious",
"KRER/KWRE/PHOE": "ceremonious",
"KRER/PHOE/TPHEU": "ceremonious",
"KRER/PHOE": "ceremonious",
"KRER/PHOEPB": "ceremonious",
"KRERPB/TREU": "centrifuge",
"KRERPB": "centrifuge",
"KREPB": "crenelated",
"KREPB/TREU/TPAOUPBLG": "centrifugation",
"KREPB/TREU": "centripetal",
"KREPB/TREU/PE": "centripetal",
"KREPB/TREUP": "centripetal",
"KREPB/TREUPT": "centripetal",
"KREPB/TA": "centavo",
"KREPB/TAOE": "centesis",
"KREPB/TE/SEU": "centesimi",
"KREPB/TE": "centenary",
"KREPB/TE/TPHAEUR": "centenary",
"KREPB/TEU/PHAOE": "centimeters",
"KREPB/TEU/HREU": "centiliters",
"KREPB/TEPB": "centennial",
"KREPB/TES": "centesimi",
"KREPB/KHUR": "centurion",
"KREPBT/TPHAEUR": "centenarian",
"KREBG": "corrective",
"KREL/KWRAOU": "cellulose",
"KRELS": "celsius",
"KRET": "cretinous",
"KRET/*EUPB": "cretinous",
"KRUR/KWRE": "crureus",
"KA": "caress",
"KA/SKWREU/HREU": "kajillion",
"KA/SKWREU": "kajillion",
"KA/SKWREUL": "kajillion",
"KA/SRA/KA": "kavakava",
"KA/SRAR": "calvarium",
"KA/SRAL": "cavalry",
"KA/SRO/SUR": "cavosurface",
"KA/SRO": "cavosurface",
"KA/SREU/TAEUR": "cavitary",
"KA/SREU": "cavities",
"KA/SRER": "cavernous",
"KA/SAOE": "casita",
"KA/SO/WAEUR": "cassowary",
"KA/SO": "cassowary",
"KA/SOE/WAEUR": "cassowary",
"KA/SOE": "cassowary",
"KA/SEU": "casio",
"KA/SER": "casserole",
"KA/TKEPB": "cadenza",
"KA/TKEPBZ": "cadenza",
"KA/TPHA/HREU/KAOU": "canalicula",
"KA/TPHA/HREU": "canalicula",
"KA/TPHAEUR": "canaries",
"KA/TPHAR": "canary",
"KA/TPHAS": "canasta",
"KA/TPHO": "cannoli",
"KA/TPHOE": "cannoli",
"KA/TPHE": "canopy",
"KA/TPHEU": "cannibal",
"KA/TPHEU/PWHREUS": "cannibalistic",
"KA/TPHEU/PWA/HREUS": "cannibalistic",
"KA/TPHEU/PWA": "cannibalistic",
"KA/TPHER": "cannery",
"KA/TPHU": "cannulas",
"KA/TPE/TAOER": "cafeterias",
"KA/TPE": "cafeterias",
"KA/TPEU": "caffeinated",
"KA/THAOE": "cathedral",
"KA/THAR": "cathartic",
"KA/THE": "catheters",
"KA/TA/STROF": "catastrophic",
"KA/TA": "cataracts",
"KA/TA/TO": "catatonic",
"KA/TA/TOPB": "catatonic",
"KA/TA/KHREUS": "cataclysmic",
"KA/TA/KA": "katakana",
"KA/TA/PWO": "catabolic",
"KA/TA/HREU": "catalytic",
"KA/TA/HREP": "cataleptic",
"KA/TABG": "cataclysm",
"KA/TAL": "catalysis",
"KA/TAS/TRO": "catastrophize",
"KA/TAS": "catastrophize",
"KA/TOPB": "catatonia",
"KA/TE/TKPWOR": "categorical",
"KA/TE": "catechism",
"KA/TER/PEU": "caterpillar",
"KA/TER": "caterpillar",
"KA/KHAOE": "kachina",
"KA/KHEU": "kachina",
"KA/KO/TPO*": "cacophonous",
"KA/KO": "cacophonous",
"KA/KOF": "cacophonous",
"KA/PWA": "cabaret",
"KA/PWAOD": "caboodle",
"KA/PWEU": "cabinets",
"KA/PHA/RA/TKER": "camaraderie",
"KA/PHA/RA": "camaraderie",
"KA/PHA": "camaraderie",
"KA/PHAOEL": "chameleon",
"KA/PHAR/KWRA/TKER": "camaraderie",
"KA/PHAR/KWRA": "camaraderie",
"KA/PHAR": "camaraderie",
"KA/PHO": "chamomile",
"KA/PHEU/KA": "kamikaze",
"KA/PHEU": "kamikaze",
"KA/PA/SAEU": "capsaicin",
"KA/PA/SAEUS": "capsaicin",
"KA/PA/SEU": "capacitive",
"KA/PA/KOE": "capicola",
"KA/PAS": "capacitors",
"KA/PE": "capella",
"KA/PEU/TA/HREUS": "capitalistic",
"KA/PEU/TA": "capitalistic",
"KA/PEU": "capillaries",
"KA/PEU/KHAOU": "capitulate",
"KA/PEU/KOE": "capicola",
"KA/PEU/PWA": "capybara",
"KA/PEU/HRAEUR": "capillary",
"KA/PEU/HRAR": "capillaries",
"KA/PU/KHEU": "cappucino",
"KA/PU": "cappucino",
"KA/HRA/TKEU": "caladium",
"KA/HRA/PHA": "calamari",
"KA/HRA/PHAR": "calamari",
"KA/HRA/PHEU": "calamitous",
"KA/HRAOE": "kalemic",
"KA/HRAOEU/TKO/SKO": "kaleidoscopic",
"KA/HRAOEU/TKO": "kaleidoscopic",
"KA/HRAOEU": "kaleidoscopic",
"KA/HRAOEU/TKO/SKOP": "kaleidoscopic",
"KA/HRAOEU/TKOE/SKO": "kaleidoscopic",
"KA/HRAOEU/TKOE": "kaleidoscopic",
"KA/HRAOEU/TKOE/SKOP": "kaleidoscopic",
"KA/HRAOEUD/SKO": "kaleidoscopic",
"KA/HRAOEUD": "kaleidoscopic",
"KA/HRAOEUD/SKOP": "kaleidoscopic",
"KA/HRAOEPL": "kalemic",
"KA/HRAOU/PHEU": "calumniate",
"KA/HRAOU": "calumniate",
"KA/HRAOUPL": "calumniate",
"KA/HRAPL": "calamitous",
"KA/HRO": "callosum",
"KA/HROR": "calorimeter",
"KA/HROR/PHE": "calorimeter",
"KA/HROS": "callosity",
"KA/HRE": "calleon",
"KA/HREU": "calipers",
"KA/HREU/TKPWRAF": "calligraphics",
"KA/HREU/KAR": "callicarpus",
"KA/HREURG": "calligraphy",
"KA/HREUP": "calypso",
"KA/HREUG/RA": "calligraphers",
"KA/HREUG": "calligraphers",
"KA/HREUG/RAF": "calligraphist",
"KA/HREUS/THE": "calisthenics",
"KA/HREUS": "calisthenics",
"KA/HREPB/TKAOU": "calendula",
"KA/HREPB": "caliente",
"KA/HREPBD": "calendula",
"KA/HRU/PHEU": "calumniate",
"KA/HRU": "calumniate",
"KA/HRUPL": "calumny",
"KA/RA": "karate",
"KA/RAU": "karate",
"KA/ROE": "carotene",
"KA/REUS": "charisma",
"KAO/KA/PWUR": "kookaburra",
"KAO/KA": "kookaburra",
"KAOE/TPHOE": "quinoa",
"KAOE/KWRAS": "chiastic",
"KAOE/PHOE/THER/KWRA/PAOU": "chemotherapeutic",
"KAOE/PHOE/THER/KWRA": "chemotherapy",
"KAOE/PHOE/THER": "chemotherapy",
"KAOEU": "chiasmata",
"KAOEU/KWRAS/PHA": "chiasmatic",
"KAOEU/KWRAS": "chiasmatic",
"KAOEU/KWROE": "coyote",
"KAOEU/PHAOER": "chimeras",
"KAOEU/RAL": "chirality",
"KAOEU/RO/PRABG": "chiropractic",
"KAOEU/RO": "chiropractors",
"KAOEU/RO/PRABGT": "chiropractors",
"KAOEU/ROE/PRABG": "chiropractic",
"KAOEU/ROE": "chiropractors",
"KAOEU/ROE/PRABGT": "chiropractors",
"KAOEU/E/KWRAS/PHA": "chiasmata",
"KAOEU/E/KWRAS": "chiasmata",
"KAOEU/E": "chiasmata",
"KAOEL/PWA": "kielbasa",
"KAOET": "ketyl",
"KAOU/SRER": "couverture",
"KAOU/TPHAEU": "cuneiform",
"KAOU/TPHAEU/KWREU": "cuneiform",
"KAOU/TAEUPB": "cutaneous",
"KAOU/KUPL": "cucumbers",
"KAOU/PWEU": "cubicula",
"KAOU/PWEU/KAOU": "cubicula",
"KAOU/PHAOU/HRA": "cumulative",
"KAOU/PHAOU": "cumulative",
"KAOU/PHU/HRA": "cumulative",
"KAOU/PHU": "cumulus",
"KAOU/PHU/HRAT": "cumulative",
"KAOU/PO": "cupola",
"KAOU/POE": "cupola",
"KAOU/HRAEUT": "cumulative",
"KAOUFR": "couverture",
"KAOUR/TOR": "curatorial",
"KAOUR/KWROS": "curiosities",
"KAOUR/A*T": "curator",
"KAOURL": "curlicue",
"KAOUP/PO": "cupola",
"KAOUPL/HRA": "cumulatively",
"KAOUPL/HRAEU": "cumulative",
"KAOUPL/HRAT": "cumulatively",
"KAOUBG": "cucumbers",
"KAOUS": "couscous",
"KAOR/TKEU": "coordinates",
"KAOR": "coordinates",
"KAORP": "cooperative",
"KAORPT": "cooperatives",
"KAORD/TPHAEUT": "coordinators",
"KAOBG/PWUR": "kookaburra",
"KA*": "calamata",
"KA*/HRA/PHA": "calamata",
"KA*/HRA": "calamata",
"KA*FL": "cavalry",
"KA*RB/TPHAEUR": "carbonara",
"KA*RB/HAOEU": "carbohydrates",
"KA*PBG": "cankerous",
"KAEU/SA/TKEU": "quesadilla",
"KAEU/SA": "quesadilla",
"KAEU/KWRO": "chaotic",
"KAEU/KWROT": "chaotically",
"KAEU/PA": "capably",
"KAEUR/KWRA": "caramel",
"KAEUR/KWRA/TER": "characterize",
"KAEUR/KWRAOE/KWROE": "karaoke",
"KAEUR/KWRAOE": "karaoke",
"KAEUR/KWRABG/TE/REUS": "characteristics",
"KAEUR/KWRABG/TE": "characteristics",
"KAEUR/KWRABG": "characters",
"KAEUR/KWRABG/TER/KWREUS": "characteristics",
"KAEUR/KWRO": "carousel",
"KAEUR/KWROE": "karaoke",
"KAEUR/KWRE/KWROE": "karaoke",
"KAEUR/KWRE": "karaoke",
"KAEUR/KWREU/KA": "caricatures",
"KAEUR/PWAOEU": "carabiner",
"KAEUR/PWEU": "carabiner",
"KAEUR/-LS": "carelessness",
"KAEURPL": "caramelize",
"KAEUS/TKEU": "quesadilla",
"KAEP": "capybara",
"KAEP/PWA": "capybara",
"KAU": "cauli",
"KAU/TER": "cautery",
"KAUFT": "caustically",
"KAUGS/KWRAEUR": "cautionary",
"KAUS/KWRAT": "causative",
"KAUD": "caudally",
"KAF/TAOER": "cafeterias",
"KAF/KWRO/SUR": "cavosurface",
"KAF/KWRO": "cavosurface",
"KAFRPB/KWROES": "cavernosus",
"KAFRB/TKAOEU": "carvedilol",
"KAFT/A*": "castaway",
"KAR/SEU/TPHO/SKWRE/TPHE": "carcinogenesis",
"KAR/SEU/TPHO/SKWRE": "carcinogenesis",
"KAR/SEU/TPHO": "carcinomatous",
"KAR/SEU": "carcinomatous",
"KAR/SEU/TPHOE": "carcinomatous",
"KAR/SEUPB": "carcinogens",
"KAR/TKEU/KWRO/SRAS/KAOU": "cardiovascular",
"KAR/TKEU/KWRO/SRAS": "cardiovascular",
"KAR/TKEU/KWRO": "cardiology",
"KAR/TKEU": "cardiologist",
"KAR/TKEU/KWRO/TKPWRAF": "cardiography",
"KAR/TKEU/KWRO/HRO": "cardiology",
"KAR/TKEU/KWRORG": "cardiography",
"KAR/TKEU/KWROL": "cardiologist",
"KAR/TPHEU": "carnitine",
"KAR/TPHEUF": "carnivorous",
"KAR/TO": "cartographics",
"KAR/TO/TKPWRAF": "cartographers",
"KAR/TOE/TKPWRAF": "cartographics",
"KAR/TOE": "cartographics",
"KAR/TORG": "cartography",
"KAR/TOG": "cartographers",
"KAR/TOG/RA": "cartographers",
"KAR/KWRA/PWAOEU": "carabiner",
"KAR/KWRA": "caramel",
"KAR/KWRA/PWEU": "carabiner",
"KAR/KWRAOE/KWROE": "karaoke",
"KAR/KWRAOE": "karaoke",
"KAR/KWRO/STA": "cariostatic",
"KAR/KWRO/HRO": "cariologist",
"KAR/KWROL": "cariologist",
"KAR/KWREU/KA": "caricature",
"KAR/KWREU": "caricature",
"KAR/KWREUS": "charisma",
"KAR/KWREUZ": "charisma",
"KAR/PWA/PHAOE": "carbamino",
"KAR/PWA": "carbamide",
"KAR/PWAPB": "carbanion",
"KAR/PWO/TPHAEUR": "carbonara",
"KAR/PWO/HAOEU": "carbohydrates",
"KAR/PWOE/HAOEU": "carbohydrates",
"KAR/PWOEPB": "carbonium",
"KAR/PWOBGS": "carboxyl",
"KAR/PW*UPBG": "carbuncle",
"KAR/PWUPB": "carbuncle",
"KAR/PHE": "carmelite",
"KAR/PHUS": "carmustine",
"KAR/PAFP": "carpaccio",
"KAR/PEPB": "carpenters",
"KAR/*UPBG": "caruncle",
"KAR/UPB": "caruncle",
"KARB/TPHAR": "carbonara",
"KARB/PHAOE": "carbamino",
"KARB/WO*R/THEU": "cashworthiness",
"KARB/WO*R": "cashworthiness",
"KARB/WO*RT/KWREU": "cashworthiness",
"KARB/WO*RT": "cashworthiness",
"KARB/HAOEU": "carbohydrates",
"KART/TKPWRAF": "cartographers",
"KARS/TPHO": "carcinoma",
"KARS": "carcinoma",
"KARS/TPHOE": "carcinoma",
"KARD/KWRO/SKWRE": "cardiogenic",
"KARD/KWRO/SKWREPB": "cardiogenic",
"KARD/KWRO/SRAS": "cardiovascular",
"KARD/KWRO/SRAS/KAOU": "cardiovascular",
"KARD/KWRO/HRO": "cardiology",
"KARD/KWRO/HROPBLG": "cardiology",
"KARD/KWRORG": "cardiography",
"KARD/KWROL": "cardiologist",
"KAP/TPHO": "capnograph",
"KAP/TA/HREUS": "capitalistic",
"KAP/TAPL": "capitalized",
"KAP/TO": "captopril",
"KAP/TEU": "captivate",
"KAP/KWREU/PWA": "capybara",
"KAP/KWREU": "capybara",
"KAP/KHEU": "cappucino",
"KAPB/TKPWA": "kangaroo",
"KAPB/TKPWAR": "kangaroo",
"KAPB/TKE": "candela",
"KAPB/TKEU/TKAOEU/KWRA": "candidiasis",
"KAPB/TKEU/TKAOEU": "candidiasis",
"KAPB/TKEU/TKAS": "candidacy",
"KAPB/TA": "cantaloupe",
"KAPB/TAOE": "cantina",
"KAPB/TEU": "cantilevers",
"KAPB/PWA/HREUS": "cannibalistic",
"KAPB/PWA": "cannibalistic",
"KAPB/HREUBG": "canalicula",
"KAPBG/TKPWA": "kangaroo",
"KAPBG": "kangaroo",
"KAPBG/TKPWAR": "kangaroo",
"KAPBG/KWRA": "kangaroo",
"KAPBG/KWRAR": "kangaroo",
"KAPBS": "cancerous",
"KAPBD/TKAOEUS": "candidiasis",
"KAPL/KA": "kamikaze",
"KAPL/KOR": "camcorder",
"KAPL/KORD": "camcorder",
"KAPL/PWO/SO*": "cambozola",
"KAPL/PWO": "cambozola",
"KAPL/PWO/SO*EL": "cambozola",
"KAPL/PWOEPBLG": "cambogia",
"KAPL/PWOED": "cambodia",
"KAPL/PA/TPHE": "campanello",
"KAPL/PA": "campanelle",
"KAPL/PA/TPHEL": "campanelle",
"KAPL/PAEUR": "campari",
"KAPL/PAR": "campari",
"KAPL/PAPB": "campagna",
"KAPL/RA/TKER": "camaraderie",
"KAPL/RAD": "camaraderie",
"KAPT": "captives",
"KAPT/TAL/KWRAOEUZ": "capitalizable",
"KAPT/TAL": "capitalizable",
"KAPS": "capsular",
"KABG": "cackles",
"KAL/SRA": "calvary",
"KAL/SRAEUR": "calvary",
"KAL/SRAR": "calvary",
"KAL/SEU": "calcium",
"KAL/TKPWRAF": "calligraphics",
"KAL/KAOU/HRAEU": "calculators",
"KAL/KAOU": "calculus",
"KAL/KU": "calculus",
"KAL/REUPL": "calorimeter",
"KALS/THE": "calisthenics",
"KALD": "caldron",
"KAT/STROF": "catastrophic",
"KAT/TKPWOR": "categorical",
"KAT/KWREU": "cattier",
"KAT/KWREU/WAPL": "cattywampus",
"KAT/KHREUS": "cataclysmic",
"KAT/KA": "katakana",
"KAT/PWO": "catabolic",
"KAT/PEUL": "caterpillar",
"KATS/TROF": "catastrophic",
"KAS": "castles",
"KAS/TPAOEU": "classification",
"KAS/TRO/TPA*": "castrophony",
"KAS/TRO": "castrophony",
"KAS/TROF": "castrophony",
"KAS/TEU": "castigate",
"KAS/PHA": "chiasmatic",
"KO/TKEU": "codices",
"KO/TPHAOEU": "connivance",
"KO/TPHO": "connotative",
"KO/TPHO/TAEU": "connotative",
"KO/TPHO/TAEUT": "connotative",
"KO/TPHOE": "connotation",
"KO/TPHEU/SRAP": "conivaptan",
"KO/TPHEU": "conifer",
"KO/TPHEUF": "coniferous",
"KO/TPHEBG": "connective",
"KO/TPHUPB": "conundrums",
"KO/TPE": "covenants",
"KO/PHAOE/TKEU": "comedian",
"KO/PHAOED": "comedically",
"KO/PHAOU/TPHEU/TAEUR": "communitarian",
"KO/PHAOU/TPHEU": "communicative",
"KO/PHAOU": "commutate",
"KO/PHAOU/TPHEU/KA": "communicability",
"KO/PHAOU/TPHEU/KAEU": "communicative",
"KO/PHAOU/TPHEU/KAT": "communicative",
"KO/PHAOU/TPHEUBG": "communicability",
"KO/PHAOU/TAEU": "commutative",
"KO/PHAOUPB/TAEUR": "communitarian",
"KO/PHAOUPB/KA": "communicative",
"KO/PHAOUPB/KAT": "communicative",
"KO/PHAPB": "commando",
"KO/PHO/TKEU": "commodities",
"KO/PHO": "commodities",
"KO/PHOPB/KWRAL": "commonality",
"KO/PHOD": "commodity",
"KO/PHE/PHOR/KWRA": "commemoratives",
"KO/PHE/PHOR": "commemoratives",
"KO/PHE": "commemoratives",
"KO/PHE/PHOR/KWRAT": "commemoratives",
"KO/PHEU": "comity",
"KO/PHEU/SAEUR": "commissary",
"KO/PHEU/SER": "commiserate",
"KO/PHEU/TA": "comitatus",
"KO/PHEU/TAEU": "comitatus",
"KO/PHEURB": "commisure",
"KO/PHEUS/KWRAEUR": "commissary",
"KO/PHEUS": "commissar",
"KO/PHEFT": "comestible",
"KO/PHEPB": "commentary",
"KO/PHEPB/SUR": "commensurably",
"KO/PHEPB/TAEU": "commentator",
"KO/PHEPB/TAEUR": "commentary",
"KO/PHEPBT/KWRAEUR": "commentary",
"KO/PHEPBT/A*T": "commentator",
"KO/PHEPBS/SUR": "commensurably",
"KO/PAOU": "copulation",
"KO/PEU/PA*S": "copypasta",
"KO/PEU/WRAO*EUT": "copywriter",
"KO/HRA": "collagen",
"KO/HRAOEPBLG": "collegiate",
"KO/HRAOU": "collusive",
"KO/HRAOUS": "collusive",
"KO/HRAPB": "colanders",
"KO/HRO": "coloboma",
"KO/HRO/PWA": "coloboma",
"KO/HROE/KWEU": "colloquial",
"KO/HROE": "colloquial",
"KO/HROEBG/WAL": "colloquially",
"KO/HROEBG": "colloquy",
"KO/HROEBG/WEU/KWRAUL": "colloquialism",
"KO/HROS": "colossus",
"KO/HROS/TO": "colostomy",
"KO/HREUPB": "colinfurze",
"KO/HREBG/TEU": "collectivist",
"KO/HREBG": "collectivist",
"KO/HREBG/TEUF": "collectivist",
"KO/HREBGT/KWREU": "collectivize",
"KO/HRUPL": "columnar",
"KO/HRUPL/PWEU": "columbia",
"KO/HO": "cojones",
"KO*EP/PA*S": "copypasta",
"KO*EP/PAS": "copypasta",
"KO*RPL": "compromise",
"KO*P/KWREU": "copywriting",
"KO*P": "copywriting",
"KO*PL/TPHAEU": "combinatory",
"KO*PL/TEPB": "competency",
"KO*PL/HREU/PHEPB/TAEUR": "complimentary",
"KO*PL/HREU/PHEPB": "complimentary",
"KO*PL/HREU": "compliments",
"KO*PL/RO": "compromise",
"KO*PL/ROE": "compromise",
"KOE/SPOPB": "cosponsor",
"KOE/SPOPBS": "cosponsor",
"KOE/SRAEU": "covalent",
"KOE/TPHUPB": "conundrums",
"KOE/KWRA": "coalesce",
"KOE/KWRARBG": "coarctation",
"KOE/KWREUPB/SEU/TKEPB/TAL": "coincidentally",
"KOE/KWREUPB/SEU/TKEPB": "coincidentally",
"KOE/KWREUPB/SEU": "coincidentally",
"KOE/KWREUPB": "coincidentally",
"KOE/KWRER": "coercive",
"KOE/PHAOED": "comedienne",
"KOE/PHOR": "comorbid",
"KOE/PAOEU": "copilot",
"KOE/WA": "coalesce",
"KOE/WORBG": "coworker",
"KOE/WEUPB": "coincidence",
"KOE/WEUPB/SEU/TKEPB/TAL": "coincidentally",
"KOE/WEUPB/SEU/TKEPB": "coincidentally",
"KOE/WEUPB/SEU": "coincidence",
"KOE/WEUPB/SEU/TKEPBT/TKEPBT": "coincidentally",
"KOE/WEUPBS": "coincidence",
"KOE/WER": "coercive",
"KOE/HRA/TER": "collateral",
"KOE/HRA/PWOR/KWRA": "collaboratively",
"KOE/HRA/PWOR": "collaborator",
"KOE/HRA/PWOR/KWRAEU": "collaboratively",
"KOE/HRA/PWOR/KWRAT": "collaborator",
"KOE/HRA/PWOR/RA": "collaborator",
"KOE/HRAEU": "collator",
"KOE/HRAPS": "collapsed",
"KOE/HRAB/RAEU": "collaboratively",
"KOE/HRO": "colossus",
"KOE/HROE": "coloboma",
"KOE/HROE/PWA": "coloboma",
"KOE/HROEBG": "colloquium",
"KOE/HROEBG/WEU/KWRAL": "colloquialism",
"KOE/HROEBG/WEU": "colloquium",
"KOE/HROR/KWREBG": "colorectal",
"KOE/HROR": "colorectal",
"KOE/HROR/KWREBGT": "colorectal",
"KOE/HROS": "colossus",
"KOE/HRE/STA": "cholestatic",
"KOE/HRE": "cholestasis",
"KOE/HRE/STAEU": "cholestasis",
"KOE/HRE/STAEUS": "cholestasis",
"KOE/HREUPB": "collinear",
"KOE/HRUPL/PWEU": "columbia",
"KOE/HRUPL": "columbia",
"KOE/HA/PWEU": "cohabitation",
"KOE/HA": "cohabiting",
"KOE/HA/PWEUT": "cohabiting",
"KOE/HAOE": "cohiba",
"KOE/HAOEB": "cohiba",
"KOE/HAB": "cohabitation",
"KOE/HABT": "cohabiting",
"KOE/A": "coalesce",
"KOE/AOE/TPEU": "coefficient",
"KOE/AOE": "coefficient",
"KOE/AOE/TPEURB": "coefficient",
"KOE/ABGS": "coaxial",
"KOE/AS": "coagulase",
"KOE/O/PER/KWRA": "cooperative",
"KOE/O/PER": "cooperator",
"KOE/O": "cooperator",
"KOE/O/PER/KWRAEU": "cooperative",
"KOE/O/PER/KWRAT": "cooperator",
"KOE/OR/TKEU/TPHAEU": "coordinators",
"KOE/OR/TKEU": "coordinates",
"KOE/OR": "coordinates",
"KOE/OP/RAEU": "cooperator",
"KOE/E/TPEU": "coefficient",
"KOE/E": "coefficient",
"KOE/E/TPEURB": "coefficient",
"KOE/EUPB": "coincidence",
"KOE/EUPB/SEU": "coincidence",
"KOE/EUPBS": "coincidence",
"KOE/ED": "coeducation",
"KOEUPBS": "coincidence",
"KOEUPBS/TKEPBT": "coincidentally",
"KOEUT": "coital",
"KOERS/KWRES": "coercible",
"KOERS": "coercing",
"KOEPBLG": "cogent",
"KOEBG/KWRO": "coconut",
"KOEBG/HRAOE": "cochlear",
"KOEL/STA": "cholestatic",
"KOEL/STAEU": "cholestasis",
"KOEL/STAEUS": "cholestasis",
"KOELD/HA*RT/-D": "coldheartedly",
"KOELD/HA*RT": "coldheartedly",
"KOELD/HA*RTD": "coldheartedly",
"KOES": "coaster",
"KOEZ": "coziness",
"KOUR/WAURD": "cowardice",
"KOUR/WARD": "cowardice",
"KOURPBT/SPWAO*U": "counter-intuitive",
"KOURPBT/SPWAOU": "counterintuitive",
"KOURPBT/KHROBG": "counter-clockwise",
"KOURPBT/RE/SRO": "counterrevolution",
"KOURPBT/RE": "counterrevolution",
"KOURPBT/RE/SROE": "counterrevolution",
"KOURPBT/REF": "counterrevolution",
"KOURPBT/*EUPB/TAOU": "counter-intuitive",
"KOURPBT/*EUPB": "counter-intuitive",
"KOURPBT/*EUPB/TAOU/WEU": "counter-intuitive",
"KOURPBT/EUPB/TAOU": "counterintuitive",
"KOURPBT/EUPB": "counterintuitive",
"KOURPBT/EUPB/TAOU/WEU": "counterintuitive",
"KOURPBD": "countermand",
"KOUPB/SEU": "councilors",
"KOUPB": "countess",
"KOUPB/SEUL/WO*": "councilwomen",
"KOUPB/TE": "countenance",
"KOUPBS": "counselors",
"KOF": "coffin",
"KOF/TPE": "covfefe",
"KOR/TKPWRAF": "choreography",
"KOR/TKO/TPHA": "cordonazo",
"KOR/TKO": "cordoba",
"KOR/TKEU": "cordial",
"KOR/TPHAOE": "corneum",
"KOR/TPHU/KOEP": "cornucopia",
"KOR/TPHU": "cornucopia",
"KOR/TEU": "corticoids",
"KOR/KWRA": "coracoid",
"KOR/KWRAPB": "coriander",
"KOR/KWRO": "corollary",
"KOR/KWRO/TKPWRAF": "choreographer",
"KOR/KWRO/PWOR/KWRA": "corroborative",
"KOR/KWRO/PWOR": "corroborative",
"KOR/KWRO/PWOR/KWRA/TOR": "corroboratory",
"KOR/KWRO/PWOR/KWRAT": "corroborative",
"KOR/KWRO/HRA": "corollary",
"KOR/KWRO/HRAEUR": "corollary",
"KOR/KWROE": "coriolis",
"KOR/KWROEU/TKAOEU": "choroiditis",
"KOR/KWROEU": "choroiditis",
"KOR/KWROEL": "coriolis",
"KOR/KWRORG": "choreography",
"KOR/KWROB": "corroborative",
"KOR/KWROB/RA": "corroborative",
"KOR/KWROB/RAT": "corroborative",
"KOR/KWRE": "correlative",
"KOR/KWRE/HRA": "correlative",
"KOR/KWRE/HRAT": "correlative",
"KOR/KWREU": "coriander",
"KOR/KWREU/KWRAPB": "coriander",
"KOR/KWREUPBLG": "corrigible",
"KOR/KWREBG": "corrective",
"KOR/KWRU": "corrugated",
"KOR/PAOU": "corpulence",
"KOR/POR": "corporable",
"KOR/HRA": "correlative",
"KOR/HRAT": "correlative",
"KOR/RE/SPOPB": "correspondent",
"KOR/RE": "correspondent",
"KOR/-T": "corticoids",
"KORPB/KOEP": "cornucopia",
"KORPBD": "chondrium",
"KORG": "corgi",
"KOP/KWREU/WRAO*EUT": "copywriter",
"KOPB/STREUBG": "constrictive",
"KOPB/STRUBG": "constructor",
"KOPB/STA/PWAOU/HRAEUR": "constabulary",
"KOPB/STA/PWAOU": "constabulary",
"KOPB/STA": "constabulary",
"KOPB/STAOU": "constitutively",
"KOPB/STAOUGS/KWRAL": "constitutionality",
"KOPB/STAOUT": "constitutively",
"KOPB/STAPBS": "constancy",
"KOPB/STAB": "constabulary",
"KOPB/STE": "constellation",
"KOPB/STEU": "constipation",
"KOPB/STEU/KHAOU": "constituency",
"KOPB/STEU/KHAOU/KWREPBS": "constituency",
"KOPB/STEU/KHAOU/WEPB": "constituency",
"KOPB/STEU/KHAOU/-PBS": "constituency",
"KOPB/STEU/KHU": "constituency",
"KOPB/STEU/KHU/KWREPBS": "constituency",
"KOPB/STEU/KHU/WEPB": "constituency",
"KOPB/STEU/KHU/-PBS": "constituency",
"KOPB/STEUFP/KWRAOU": "constituency",
"KOPB/STEUFP": "constituency",
"KOPB/STEUFP/KWRAOU/KWREPBS": "constituency",
"KOPB/STEUFP/KWRAOU/WEPB": "constituency",
"KOPB/STEUFP/KWRAOU/-PBS": "constituency",
"KOPB/STEUFP/KWRU": "constituency",
"KOPB/STEUFP/KWRU/KWREPBS": "constituency",
"KOPB/STEUFP/KWRU/WEPB": "constituency",
"KOPB/STEUFP/KWRU/-PBS": "constituency",
"KOPB/STEUFP/WEPBS": "constituency",
"KOPB/STER": "consternation",
"KOPB/SKWRAOE": "congenic",
"KOPB/SKWRAOEPB": "congenic",
"KOPB/SKWRAOU/TKPWA": "conjugative",
"KOPB/SKWRAOU": "conjugate",
"KOPB/SKWR*UPBG/TEU/SRAOEU": "conjunctivitis",
"KOPB/SKWR*UPBG/TEU": "conjunctival",
"KOPB/SKWR*UPBG": "conjuncture",
"KOPB/SKWR*UPBG/TEU/SRAOEUT": "conjunctivitis",
"KOPB/SKWR*UPBGS/KWRAL": "conjunctionally",
"KOPB/SKWR*UBGT": "conjunctives",
"KOPB/SKWRE/TPHEU": "congenital",
"KOPB/SKWRE": "congenital",
"KOPB/SKWRE/TPHEUT": "congenital",
"KOPB/SKWREPB": "congenita",
"KOPB/SKWREBG": "conjectures",
"KOPB/SKWREBGT": "conjectures",
"KOPB/SKWRES": "congestive",
"KOPB/SKWRU/TKPWA": "conjugative",
"KOPB/SKWRU": "conjugate",
"KOPB/SKWRUPBG/TEU/SRAOEU": "conjunctivitis",
"KOPB/SKWRUPBG/TEU": "conjunctival",
"KOPB/SKWRUPBG": "conjuncture",
"KOPB/SKWRUPBG/TEU/SRAOEUT": "conjunctivitis",
"KOPB/SKWRUPBGS/KWRAL": "conjunctionally",
"KOPB/SKWRUBGT": "conjunctives",
"KOPB/SKRAEU": "consecrator",
"KOPB/SPHA": "consummatory",
"KOPB/SPEU/KAOU": "conspicuous",
"KOPB/SPEU": "conspicuous",
"KOPB/SPEU/KU": "conspicuous",
"KOPB/SPEUR": "conspirators",
"KOPB/SPEUR/KWRA": "conspirators",
"KOPB/SPEUR/KWRA/TOR/KWREU": "conspiratorial",
"KOPB/SPEUR/KWRAEU": "conspirators",
"KOPB/SPEUBG": "conspicuous",
"KOPB/SHAOE/KWREPB": "conscientious",
"KOPB/SHAOE": "conscientious",
"KOPB/SHEU/KWREPB": "conscientiously",
"KOPB/SHEU": "conscientiously",
"KOPB/SHER": "concerto",
"KOPB/SHEPB": "conscientious",
"KOPB/SRA": "convalesce",
"KOPB/SRAOEPB/KWREPB": "conveniently",
"KOPB/SRAOEPB/KWREPBT": "conveniently",
"KOPB/SRAP": "conivaptan",
"KOPB/SRO": "convolute",
"KOPB/SROE": "convolute",
"KOPB/SREUF": "conviviality",
"KOPB/SRER": "conversant",
"KOPB/SREBG": "convective",
"KOPB/SRUL": "convulsant",
"KOPB/SAOEU": "consignor",
"KOPB/SAOU/PHA": "consummative",
"KOPB/SAOU": "consummative",
"KOPB/SAOU/PHAEU": "consummative",
"KOPB/SAOU/PHAEUT": "consummative",
"KOPB/SAOU/PHAT": "consummative",
"KOPB/SAPBG": "consanguinity",
"KOPB/SO": "consolidant",
"KOPB/SO/HREU": "consolidant",
"KOPB/SOE": "consolate",
"KOPB/SOR": "consortia",
"KOPB/S*UPL": "consumptive",
"KOPB/SE/KWEPB": "consequential",
"KOPB/SE": "consecutively",
"KOPB/SE/KRAEU": "consecrator",
"KOPB/SE/KAOU": "consecutively",
"KOPB/SE/KU": "consecutively",
"KOPB/SEU": "consignee",
"KOPB/SEU/TKER/KWRAB": "considerably",
"KOPB/SEUFT/KWREPBS": "consistency",
"KOPB/SEUL/KWRA": "conciliatorily",
"KOPB/SEUL": "conciliate",
"KOPB/SEUL/KWRA/TOR": "conciliatorily",
"KOPB/SEUL/KWRAEU": "conciliator",
"KOPB/SEUS/TEPB": "consistency",
"KOPB/SEUS": "consistent",
"KOPB/SEUD": "considerate",
"KOPB/SEFRB": "conservable",
"KOPB/SEFRB/TEUF": "conservatively",
"KOPB/SEFRB/KWRAPBS": "conservancy",
"KOPB/SER/SRA": "conservatives",
"KOPB/SER": "concerto",
"KOPB/SER/SRAPB": "conservancy",
"KOPB/SER/SRAT/KWREUF": "conservatively",
"KOPB/SER/SRAT": "conservatives",
"KOPB/SER/TAOE": "concertina",
"KOPB/SEP": "conceptual",
"KOPB/SEPB": "consensual",
"KOPB/SEPB/TREUS": "concentricity",
"KOPB/SEPBS": "consensual",
"KOPB/SEBG": "consecutively",
"KOPB/SU/PHA": "consummative",
"KOPB/SU": "consummate",
"KOPB/SU/PHAEU": "consummative",
"KOPB/SUPL": "consumptive",
"KOPB/SUL/TA": "consultative",
"KOPB/SUL/TAEU": "consultative",
"KOPB/SUL/TAEUT": "consultative",
"KOPB/SUL/TAPB": "consultancy",
"KOPB/SUL/TAPBS": "consultancy",
"KOPB/SUL/TAT": "consultative",
"KOPB/SULT/KWRAPBS": "consultancy",
"KOPB/TKPWHRO/PHER": "conglomerate",
"KOPB/TKPWHRO": "conglomerate",
"KOPB/TKPWHROPL": "conglomerate",
"KOPB/TKPWRA/KHAOU/HRA": "congratulatory",
"KOPB/TKPWRA/KHAOU": "congratulated",
"KOPB/TKPWRA": "congratulated",
"KOPB/TKPWRA/KHAOU/HRA/TOR": "congratulatory",
"KOPB/TKPWRA/KHU/HRA": "congratulatory",
"KOPB/TKPWRA/KHU": "congratulated",
"KOPB/TKPWRA/KHU/HRA/TOR": "congratulatory",
"KOPB/TKPWRAOU": "congruous",
"KOPB/TKPWRAFP/KWRAOU/HRA": "congratulatory",
"KOPB/TKPWRAFP/KWRAOU": "congratulated",
"KOPB/TKPWRAFP": "congratulate",
"KOPB/TKPWRAFP/KWRAOU/HRA/TOR": "congratulatory",
"KOPB/TKPWRAFP/KWRU/HRA": "congratulatory",
"KOPB/TKPWRAFP/KWRU": "congratulated",
"KOPB/TKPWRAFP/KWRU/HRA/TOR": "congratulatory",
"KOPB/TKPWRE": "congregate",
"KOPB/TKPWREGS": "congressional",
"KOPB/TKRAOEU": "chondritis",
"KOPB/TKRAOEUT": "chondritis",
"KOPB/TKRO": "chondrocyte",
"KOPB/TKROEU": "chondroitin",
"KOPB/TKROEUT": "chondroitin",
"KOPB/TKREU": "chondrium",
"KOPB/TKAOEU": "condyloid",
"KOPB/TKAOU": "conduit",
"KOPB/TKAOUS": "conducive",
"KOPB/TKO/PHEUPB": "condominium",
"KOPB/TKO": "condominium",
"KOPB/TKORD": "concordant",
"KOPB/TKE": "condescends",
"KOPB/TKEU/HRO": "condyloma",
"KOPB/TKEU": "condiment",
"KOPB/TKEU/HROE": "condyloma",
"KOPB/TKEURB/KWRO": "conditione",
"KOPB/TKEURB": "conditione",
"KOPB/TKEUBGS": "conditioned",
"KOPB/TKEPB": "condenser",
"KOPB/TKEPL/TPHA": "condemnatory",
"KOPB/TKEPL/TPHA/TOR": "condemnatory",
"KOPB/TKUBG": "conductivity",
"KOPB/TPHRA": "conflagration",
"KOPB/TPHRAOU": "confluence",
"KOPB/TPHRAG": "conflagration",
"KOPB/TPROPB": "confrontation",
"KOPB/TPOR": "conformist",
"KOPB/TPE/TKER/KWRA": "confederacy",
"KOPB/TPE/TKER": "confederate",
"KOPB/TPE": "confetti",
"KOPB/TPEU": "confidences",
"KOPB/TPEU/TKPWAOU/WEU": "contiguity",
"KOPB/TPEU/TKPWAOU": "contiguity",
"KOPB/TPEU/TKEPB/SHEU": "confidentiality",
"KOPB/TPEU/TKEPB": "confidentiality",
"KOPB/TPEU/TKEPB/-RBL": "confidentiality",
"KOPB/TPEUR/PHA": "confirmatory",
"KOPB/TPEUR": "confirmation",
"KOPB/TPEUR/PHA/TOR": "confirmatory",
"KOPB/TPEUS/KA": "confiscatory",
"KOPB/TPEUS": "confiscation",
"KOPB/TPEUS/KA/TOR": "confiscatory",
"KOPB/TPEUD": "confidante",
"KOPB/TPEBG": "confectio",
"KOPB/TPEBGS/KWRAEUR": "confectionary",
"KOPB/TPET": "confetti",
"KOPB/TPED": "confederate",
"KOPB/TRA/SEP": "contraceptives",
"KOPB/TRA/SEPT": "contraceptives",
"KOPB/TRA/SEBGS": "contrasexual",
"KOPB/TRA/TKEUBG": "contradictory",
"KOPB/TRA/TKEUBG/TOR": "contradictory",
"KOPB/TRA/PO": "contraposition",
"KOPB/TRA/POE": "contraposition",
"KOPB/TRA/AL": "contralto",
"KOPB/TRA/EUPB/TKEU": "contraindicated",
"KOPB/TRA/EUPB": "contraindicated",
"KOPB/TRA/EUPBD": "contraindicated",
"KOPB/TRAOEU": "contrivance",
"KOPB/TRAEUR": "contrary",
"KOPB/TRABG": "contractual",
"KOPB/TRABG/TEUL": "contractility",
"KOPB/TRABGT/KWREUL": "contractility",
"KOPB/TRO/SRER": "controversies",
"KOPB/TRO/SRERS": "controversies",
"KOPB/TROE/SRERS": "controversial",
"KOPB/TREU/PWAOU": "contributor",
"KOPB/TA/PHEU": "contaminants",
"KOPB/TA": "contaminants",
"KOPB/TAOU/PHA": "contumacy",
"KOPB/TAOU": "contumacy",
"KOPB/TAOU/PHAS": "contumacy",
"KOPB/TAOUPL": "contumely",
"KOPB/TAEUPBLG": "contagious",
"KOPB/TAEUT": "connotative",
"KOPB/TAPL": "contaminants",
"KOPB/T*EPL/RAEUPB": "contemporaneous",
"KOPB/T*EPL": "contemptuous",
"KOPB/TEU/TKPWAOU": "contiguous",
"KOPB/TEU": "continence",
"KOPB/TEU/TPHAOU/WEU": "continuity",
"KOPB/TEU/TPHAOUS": "continuously",
"KOPB/TEU/TPHEPB": "continental",
"KOPB/TEUPB/SKWREPB": "contingencies",
"KOPB/TEUPBG": "contingencies",
"KOPB/TEUG": "contiguous",
"KOPB/TER/PHEU/TPHAL": "conterminality",
"KOPB/TER/PHEU": "conterminality",
"KOPB/TER": "conterminality",
"KOPB/TERPL": "conterminality",
"KOPB/TEPB": "contentious",
"KOPB/TEPL": "contemptuous",
"KOPB/TEPL/PRAEUPB": "contemporaneous",
"KOPB/TEPL/POR/KWRAEUR": "contemporary",
"KOPB/TEPL/POR": "contemporary",
"KOPB/TEBGS": "contextual",
"KOPB/TUPBG/TEU": "conjunctiva",
"KOPB/TUPBG": "conjunctiva",
"KOPB/KPHEU": "concomitance",
"KOPB/KPHEUT": "concomitance",
"KOPB/KWAOEFT": "conquistadors",
"KOPB/KWAOES/TA": "conquistadors",
"KOPB/KWAOES": "conquistadors",
"KOPB/KWEUFT": "conquistadors",
"KOPB/KWEUS/TA": "conquistadors",
"KOPB/KWEUS": "conquistadors",
"KOPB/KHRAOU": "conclusively",
"KOPB/KHRAOU/SOR": "conclusory",
"KOPB/KHRAOUS": "conclusively",
"KOPB/KHOEU": "conchoidal",
"KOPB/KRES": "concrescence",
"KOPB/KA/TE": "concatenate",
"KOPB/KA": "concatenate",
"KOPB/KAOEFT": "conquistadors",
"KOPB/KAOES/TA": "conquistadors",
"KOPB/KAOES": "conquistadors",
"KOPB/KAOU": "concupiscence",
"KOPB/KAOU/PEU": "concupiscence",
"KOPB/KAOUP": "concupiscence",
"KOPB/KAT": "concatenate",
"KOPB/KO/PHEU": "concomitance",
"KOPB/KO": "concomitance",
"KOPB/KO/PHEUT": "concomitance",
"KOPB/KOEU": "conchoidal",
"KOPB/KEUFT": "consistently",
"KOPB/KEUFT/KWREPB": "consistently",
"KOPB/KEUS/TA": "conquistadors",
"KOPB/KEUS": "conquistadors",
"KOPBLG": "conjugative",
"KOPBG/TKPWA": "conjugative",
"KOPBG/KAOU": "concubine",
"KOPBG/RES/P*ER": "congressperson",
"KOPBG/RES/WO*": "congresswoman",
"KOPBT/SRERT": "controvertibility",
"KOPBTS": "constellation",
"KOPBS/TAOU": "constitutively",
"KOPBS/TAPB": "constancy",
"KOPBS/TE": "constellation",
"KOPBS/TEU": "constipate",
"KOPBS/TER": "consternation",
"KOPBS/KWREPB": "conscientious",
"KOPBS/KWEPB": "consequential",
"KOPBS/PHA": "consummatory",
"KOPBD": "condiment",
"KOPBD/HRO": "condyloma",
"KOPBD/HROE": "condyloma",
"KOPL/TA": "comitatus",
"KOPL/TAEU": "comitatus",
"KOPL/PWEU/TPHA": "combinatorial",
"KOPL/PWEU": "combination",
"KOPL/PWEU/TPHA/TOR": "combinatorial",
"KOPL/PWUS": "combustive",
"KOPL/PHRAEU": "complacence",
"KOPL/PHRAEU/SEPB": "complacency",
"KOPL/PHRAEUS": "complacency",
"KOPL/PHRAEUS/-PBS": "complacency",
"KOPL/PHRE/PHEPB/TAEUR": "complementary",
"KOPL/PHRE/PHEPB": "complementary",
"KOPL/PHRE": "complement",
"KOPL/PHRE/-PLT/KWRAEUR": "complementary",
"KOPL/PHREU": "compliments",
"KOPL/PHREU/PHEPB/TAEUR": "complimentary",
"KOPL/PHREU/PHEPB": "complimentary",
"KOPL/PHREPLT/KWRAEUR": "complementary",
"KOPL/PRAOE": "comprehend",
"KOPL/PRO": "compromise",
"KOPL/PROE": "compromise",
"KOPL/PRE": "comprehends",
"KOPL/PRE/HEPB/SEU": "comprehensibly",
"KOPL/PRE/HEPB": "comprehensibly",
"KOPL/PRE/HEPB/SEUF": "comprehensiveness",
"KOPL/PRE/HEPB/SEUB": "comprehensibly",
"KOPL/PRE/HEPBS": "comprehensible",
"KOPL/PREPB": "comprende",
"KOPL/PREPBD": "comprende",
"KOPL/PRES": "compressors",
"KOPL/PA": "comparison",
"KOPL/PA/REU": "comparison",
"KOPL/PAOEU": "compilation",
"KOPL/PAOU": "computers",
"KOPL/PAEU/TREU": "compatriot",
"KOPL/PAEU": "compatriot",
"KOPL/PAEUR/KWRA": "comparator",
"KOPL/PAEUR/KWREU": "comparisons",
"KOPL/PAEURT": "compatriot",
"KOPL/PAR": "comparison",
"KOPL/PART": "compartments",
"KOPL/PAPB": "companion",
"KOPL/PABG": "compacta",
"KOPL/PO": "compotation",
"KOPL/PO/SEU": "composita",
"KOPL/POE": "compotation",
"KOPL/PE/TEU": "competitive",
"KOPL/PE": "competent",
"KOPL/PE/TEUT/KWREUF": "competitiveness",
"KOPL/PE/TEUT": "competitors",
"KOPL/PE/TEPB": "competencies",
"KOPL/PEU": "compilation",
"KOPL/PEPB/SA": "compensatory",
"KOPL/PEPB": "compensated",
"KOPL/PEPB/SA/TOR": "compensatory",
"KOPL/PEPBS": "compensable",
"KOPL/PEPBD": "compendious",
"KOPL/PET": "competitor",
"KOPL/PUL": "compulsory",
"KOPL/PUL/SOR": "compulsory",
"KOB/-L": "cobblestone",
"KOBG/KWRER": "cockerel",
"KOBG/HRAOE": "cochlear",
"KOL/*ER": "choleric",
"KOG/TPHOE": "cognovit",
"KOG/TPHOEPL": "cognomen",
"KOG/TPHEU": "cognitive",
"KOS/PHO/TKPWO": "cosmogony",
"KOS/PHO": "cosmological",
"KOS/PHO/TO/HRO": "cosmotologist",
"KOS/PHO/TO": "cosmotologist",
"KOS/PHO/TOL": "cosmotologist",
"KOS/PHO/PO/HREU": "cosmopolitan",
"KOS/PHO/PO": "cosmopolitan",
"KOS/PHO/POL": "cosmopolitan",
"KOS/PHO/HRO": "cosmology",
"KOS/PHO/HROPBLG": "cosmological",
"KOS/PHOE/TO/HRO": "cosmotologist",
"KOS/PHOE/TO": "cosmotologist",
"KOS/PHOE": "cosmopolitan",
"KOS/PHOE/PO/HREU": "cosmopolitan",
"KOS/PHOE/PO": "cosmopolitan",
"KOS/PHOL": "cosmology",
"KOS/PHOG": "cosmogony",
"KOS/PHOT": "cosmotologist",
"KOS/PHE/TO/HRO": "cosmetologist",
"KOS/PHE/TO": "cosmetologist",
"KOS/PHE": "cosmetics",
"KOS/PHE/TOL": "cosmetologist",
"KOS/PHET": "cosmetically",
"K*EUL/SAOEUBG": "kilocycles",
"K*EUL/TKAL": "kilodalton",
"K*EUL/TPHAOU": "kilonewtons",
"K*EUL/PHAOE": "kilometers",
"K*UPL/*ER": "cummerbund",
"KE": "keloids",
"KE/TA": "ketamine",
"KE/PHEUBG": "chemically",
"KE/PHEUS": "chemistry",
"KEU/TPHAOE/SEU/SAOE/KWRO/HRO": "kinesiology",
"KEU/TPHAOE/SEU/SAOE/KWRO": "kinesiology",
"KEU/TPHAOE/SEU/SAOE": "kinesiology",
"KEU/TPHAOE/SEU": "kinesiology",
"KEU/TPHAOE": "kinesis",
"KEU/TPHAOE/SEU/KWRO/HRO": "kinesiology",
"KEU/TPHAOE/SEU/KWRO": "kinesiology",
"KEU/TPHAOES": "kinesics",
"KEU/TPHE": "kinematic",
"KEU/TPHE/PHA": "kinematic",
"KEU/TPHEUS": "kinesiology",
"KEU/TPHET": "kinetically",
"KEU/TPHES/THE": "kinesthetic",
"KEU/TPHES": "kinesthetic",
"KEU/KWRAS": "chiasmus",
"KEU/KHE": "kitchenette",
"KEU/PHAOER": "chimerism",
"KEU/PHOE": "kimono",
"KEU/HRO/SAOEUBG": "kilocycles",
"KEU/HRO/TKAL": "kilodalton",
"KEU/HRO/TPHAOU": "kilonewtons",
"KEU/HRO/KA/HROR": "kilocalories",
"KEU/HRO/KA": "kilocalories",
"KEU/HRO/PHAOE": "kilometers",
"KEU/HRO/PHE": "kilometers",
"KEU/HROE/SAOEUBG": "kilocycles",
"KEU/HROE/TKAL": "kilodalton",
"KEU/HROE/TPHAOU": "kilonewtons",
"KEU/HROE/KA/HROR": "kilocalories",
"KEU/HROE/KA": "kilocalories",
"KEU/HROE/PHAOE": "kilometers",
"KEU/HROPL": "kilometers",
"KEU/RA/TKPWA": "kiragana",
"KEU/RA": "kiragana",
"KEUFT": "kistka",
"KEUR/TKPWA": "kiragana",
"KEUR": "kiragana",
"KEURPBD/TKPWAR": "kindergarten",
"KEURPBD": "kindergarten",
"KEUPB/STHE": "kinesthetic",
"KEUPB/TKE/TKPWART": "kindergarten",
"KEUPB/TKE": "kindergarten",
"KEUPB/TKER/TKPWRAR": "kindergarten",
"KEUPB/TKER": "kindergarten",
"KEUPB/TKER/TKPWAR": "kindergarten",
"KEUPB/PHA": "kinematic",
"KEUPBS/THE": "kinesthetic",
"KEUPBS": "kinsmen",
"KEUPBD/TKPWAR": "kindergarten",
"KEUPBD/TKPWART": "kindergarten",
"KEUPL": "kimchi",
"KEUBG/SO": "quixotic",
"KEUL/KA/HROR": "kilocalories",
"KEUL/KA": "kilocalories",
"KEUL/KAL": "kilocalories",
"KEUGT": "contingencies",
"KEUD/TPHA": "kidnaper",
"KER/KWRA": "keratin",
"KER/KWRO": "kerosene",
"KER/KWROE": "kerosene",
"KEPBD": "kdenlive",
"KEPL/KWREUBG": "chemically",
"KEPLS": "chemistry",
"KET": "kettles",
"KUFRB/HREUPB": "curvilinear",
"KUR/SRA": "curvature",
"KUR/SRAEU": "curvaceous",
"KUR/SREU/HREUPB": "curvilinear",
"KUR/SREU": "curvilinear",
"KUR/TE": "courteous",
"KUR/TEU": "curtilage",
"KUR/KWREU/KAOU": "curriculum",
"KUR/KWREUBG": "curriculum",
"KUR/KAOU": "curcumin",
"KUR/HREU": "curlicue",
"KURPBS": "currency",
"KURS/REU": "cursoriness",
"KUPB/SUL": "consultor",
"KUPB": "cunning",
"KUPB/SULT": "consultor",
"KUPBLG": "cudgeling",
"KUPL/PWER": "cumbersome",
"KUPLT": "consumptive",
"KUBG": "cuckold",
"KUL/TKE": "cul-de-sac",
"KUL/TPHAEUR/KWREU": "culinarily",
"KUL/TPHAEUR": "culinarily",
"KUL/TEU": "cultivar",
"KUL/KHUR/KWRAL": "culturally",
"KUL/PHEU": "culminate",
"KUL/PHEUPB": "culmination",
"KUL/PA": "culpability",
"KUL/PAB": "culpably",
"KUT/HRER": "cutlery",
"KUT/-L": "cuttlefish",
"KUS/TO": "customers",
"KUS/TO/PHAEUR": "customary",
"KUS/TOED": "custodial",
"KUS/TOPL/KWRAEUR": "customary",
"P/TPE": "pfennig",
"P/WA": "poisson",
"PWHRAO": "blooket",
"PWHRAOEU": "blimey",
"PWHRAOEUPL": "blimey",
"PWHRAOBG": "blooket",
"PWHRAOD/TH*EUFRT": "bloodthirstiness",
"PWHRAOD/TH*EURS": "bloodthirsty",
"PWHRAOD/-LS": "bloodlessly",
"PWHRAEU": "blatant",
"PWHRAEUPL/WO*ERT": "blameworthiness",
"PWHRAEUPL/WO*R": "blameworthy",
"PWHRAEUT": "blatant",
"PWHRAR": "blarney",
"PWHRARPB": "blarney",
"PWHRAPB": "blankets",
"PWHRAPBG": "blankets",
"PWHRABG/PW*ER": "blackberries",
"PWHRABG/PHA*R": "black-market",
"PWHRABG/WA*": "Blackwater",
"PWHRABG/WA*U": "Blackwater",
"PWHRAS": "blastic",
"PWHRAS/TP*E": "blasphemous",
"PWHRAS/TO": "blastoma",
"PWHRO/TKPWO": "blogosphere",
"PWHRO/TKPWOE": "blogosphere",
"PWHROPBLG": "biological",
"PWHROBG/PW*US": "blockbuster",
"PWHROGS": "blogosphere",
"PWHROS": "blossomed",
"PWHR*EUT": "blithest",
"PWHREUPBLG/REPB": "belligerency",
"PWHREUPBLG": "belligerence",
"PWHREUPBLG/REPBT": "belligerently",
"PWHREUPL": "blimp",
"PWHREUG": "obligatory",
"PWHREUZ": "blizzards",
"PWHREPB": "blender",
"PWHREPL": "blemish",
"PWHRU/KO*": "blue-collar",
"PWHRU/PW*ER": "blueberry",
"PWHRUFT": "blustery",
"PWHRURL": "blurrily",
"PWHRUPB": "blunter",
"PWHRUS": "bluesy",
"PWRA/SRAOUR": "bravura",
"PWRA/SREU/SEU": "bravissimo",
"PWRA/SREU": "bravissimo",
"PWRA/SREUS": "bravissimo",
"PWRA/SRUR": "bravura",
"PWRA/SAOE": "brassiere",
"PWRA/SER": "brasserie",
"PWRA/KAOU": "barracuda",
"PWRAOEU": "bridal",
"PWRAOEUT/KWREPB": "brightener",
"PWRAOU/HRAEURPB": "crenation",
"PWRAOU/HA": "brouhaha",
"PWRAOUZ": "bruisability",
"PWRAOD/KA*S": "broadcaster",
"PWRAEUF/*ER": "bravery",
"PWRAPBD/PHA*S": "bandmasters",
"PWRAPL": "brambles",
"PWRABG": "bracken",
"PWRAT/KWREU": "brattier",
"PWRO/KO": "broccoli",
"PWRO/PHEU": "bromidic",
"PWRO/PHEUD": "bromidic",
"PWROE/PHEU": "bromidic",
"PWROE/PHEUD": "bromidic",
"PWROEPL": "bromium",
"PWROPB/KHAOEU": "bronchitis",
"PWROPB": "bronchi",
"PWROPB/KAOEU": "bronchitis",
"PWROBG": "broccoli",
"PWR*ET/TA*EUBG": "breathtaking",
"PWR*ET/KWRA": "breathalyze",
"PWR*ET/A*": "breathalyze",
"PWRE/SREU": "brevity",
"PWRE": "umbrella",
"PWREU/SO": "brisote",
"PWREU/TKPWA": "brigadier",
"PWREU/TKPWAPB": "brigantine",
"PWREU/HREU": "brilliance",
"PWREUFT": "bristly",
"PWREUL": "beryllium",
"PWREUG": "brigadier",
"PWREUT": "brittle",
"PWREUS": "brisket",
"PWREF": "brevity",
"PWREG": "bregma",
"PWA": "barista",
"PWA/SAO*": "bazooka",
"PWA/SAOUR": "basura",
"PWA/SO/TP*EU": "basophilic",
"PWA/SO": "basophil",
"PWA/S*EUL": "bazillion",
"PWA/SEU": "basilic",
"PWA/SEU/HREU": "basilica",
"PWA/SEUL": "basilicus",
"PWA/SEUS": "basicity",
"PWA/TKPWA": "bagatelle",
"PWA/TKEU": "badinage",
"PWA/TPHA": "bananas",
"PWA/TPHEU": "banisters",
"PWA/TPHEUS": "banisters",
"PWA/THE": "bathetic",
"PWA/TAL": "battalion",
"PWA/KHRA": "baclava",
"PWA/KHA/TPHAL": "bacchanalian",
"PWA/KHA": "bacchanalian",
"PWA/KA/HRAUR": "baccalaureate",
"PWA/KAR": "baccarat",
"PWA/HRO": "baclofen",
"PWA/HROE": "baloney",
"PWA/HREUS": "ballistics",
"PWA/HRER/KWREU": "ballerina",
"PWA/HRER": "ballerina",
"PWA/HRUFT": "balustrade",
"PWA/HRUS": "baluster",
"PWA/HA/HA": "bwahahaha",
"PWA/HA": "bwahahaha",
"PWA/REUS": "barista",
"PWAO/S*EU": "booziness",
"PWAO/TKPWAOE/WAO": "boogie-woogie",
"PWAO/PHER": "boomerang",
"PWAO*E": "biosphere",
"PWAOE/TEU": "beatific",
"PWAOE/TEUF": "beatific",
"PWAOE/KWRA": "beatific",
"PWAOE/KWRA/TEU": "beatitude",
"PWAOE/KWRA/TEUF": "beatific",
"PWAOE/KWRAPB": "bianco",
"PWAOEU/SKWRE/PHEU": "bigeminal",
"PWAOEU/SKWRE": "bigeminal",
"PWAOEU/SKWREPL": "bigeminal",
"PWAOEU/SREPB/TREU/KAOU": "biventricular",
"PWAOEU/SREPB/TREU": "biventricular",
"PWAOEU/SREPB": "biventricular",
"PWAOEU/SREPB/TREUBG": "biventricular",
"PWAOEU/SAOEU": "bicycles",
"PWAOEU/SEU": "bicycles",
"PWAOEU/SEUP": "bicipital",
"PWAOEU/SEPB/TEPB": "bicentennial",
"PWAOEU/SEPB": "bicentennial",
"PWAOEU/SEBGS/WAL": "bisexuality",
"PWAOEU/SEBGS": "bisexuality",
"PWAOEU/SUL": "bisulfite",
"PWAOEU/TPHAEUR": "binary",
"PWAOEU/TPHO/KAOU/HRAEUR": "binocularly",
"PWAOEU/TPHO/KAOU": "binoculars",
"PWAOEU/TPHO": "binoculars",
"PWAOEU/TPHO/KAOU/HRAEUR/KWREU": "binocularity",
"PWAOEU/TPHOEPL": "binomial",
"PWAOEU/TPHOPL": "binomial",
"PWAOEU/TPHOBG": "binoculars",
"PWAOEU/TPAOUR": "bifurcation",
"PWAOEU/TPOE": "bifocals",
"PWAOEU/TPUR": "bifurcates",
"PWAOEU/KWRO/TKPWRAF": "biographics",
"PWAOEU/KWRO/HRO": "biologist",
"PWAOEU/KWRO/HROPBLG": "biological",
"PWAOEU/KWROE/TKPWRAF": "biographics",
"PWAOEU/KWROE/HRO/SKWREU": "biological",
"PWAOEU/KWROE/HRO": "biological",
"PWAOEU/KWROE/HROPBLG": "biological",
"PWAOEU/KWRORG": "biography",
"PWAOEU/KWROP": "biopsies",
"PWAOEU/KWROPB": "bionic",
"PWAOEU/KWROPL": "biometry",
"PWAOEU/KWROPS": "biopsy",
"PWAOEU/KWROL": "biologist",
"PWAOEU/KWREPB": "biennium",
"PWAOEU/KA/PHER": "bicameral",
"PWAOEU/KA": "bicameral",
"PWAOEU/KAR/PWOPB": "bicarbonate",
"PWAOEU/KAR": "bicarbonate",
"PWAOEU/KAPL": "bicameral",
"PWAOEU/KOEFT": "bicoastal",
"PWAOEU/KOES": "bicoastal",
"PWAOEU/KUS": "bicuspid",
"PWAOEU/PHO*PBT": "bi-monthly",
"PWAOEU/PHOE": "bimodal",
"PWAOEU/PHOED": "bimodal",
"PWAOEU/PAR": "bipartisan",
"PWAOEU/PAR/TEU": "bipartisan",
"PWAOEU/PART": "bipartisanship",
"PWAOEU/PART/SAPBS": "bipartisanship",
"PWAOEU/PO": "bipolar",
"PWAOEU/POE": "bipolar",
"PWAOEU/HRAT": "bilaterality",
"PWAOEU/HRO": "biologic",
"PWAOEU/HROPBLG": "biological",
"PWAOEU/HREUPBG": "bilingual",
"PWAOEU/A*T": "biathlon",
"PWAOEU/ABGS": "biaxial",
"PWAOEUS": "bicycles",
"PWAOEF/STAEUBG": "beefsteak",
"PWAOEG": "beagles",
"PWAOES": "beeswax",
"PWAOES/KHEU": "bestiality",
"PWAOU/TKPWAEUPB/SREUL": "bougainvillea",
"PWAOU/TKPWAEUPB": "bougainvillea",
"PWAOU": "bwahahaha",
"PWAOU/TKPWAPB/SREUL": "bougainvilleas",
"PWAOU/TKPWAPB": "bougainvilleas",
"PWAOU/TKA": "budapest",
"PWAOU/TA": "butanol",
"PWAOU/TEU/-FL": "beautifully",
"PWAOU/PWO": "bubonic",
"PWAOU/PWOPB": "bubonic",
"PWAOU/HA/HA": "bwahahaha",
"PWAOU/HA": "bwahahaha",
"PWAOUR/KWRAU/KRA": "bureaucratize",
"PWAOUR/KWRAU": "bureaucrat",
"PWAOUR/KWRAUBG/RA": "bureaucratize",
"PWAOUR/KWRAUBG": "bureaucratize",
"PWAOUR/KWRO/KRA": "bureaucratic",
"PWAOUR/KWROE/KRA": "bureaucratic",
"PWAOUR/KWROBG": "bureaucracy",
"PWAOUR/KWROBG/RA": "bureaucracy",
"PWAOUG": "bugles",
"PWAOUD": "boudoir",
"PWAOR/KWREURB": "boorishly",
"PWAORPL": "boomerang",
"PWAOPB/TKO*G": "boondoggles",
"PWAOPB/TKOG": "boondoggles",
"PWAOPL/*ER": "boomerang",
"PWAOBG/PWAO*EUPBD": "bookbinders",
"PWAOBG/PHO*E": "bookmobile",
"PWAOG": "boogy",
"PWAOG/KWRAOE/WAOG": "boogie-woogie",
"PWA*T/WA*": "bathwater",
"PWAEU/KWROPB": "bayonet",
"PWAEU/PW*ER": "bayberry",
"PWAEU/HREU": "bailiwick",
"PWAEUR/KWRA/KAOU": "barracuda",
"PWAEUR/KWRA": "barracuda",
"PWAEUR/KWRO": "barometric",
"PWAEUR/KWRO/PHE": "barometer",
"PWAEUR/KWRO/PHET": "barometric",
"PWAEUR/KWROE/PHE": "barometric",
"PWAEUR/KWROE/PHET": "barometric",
"PWAEUR/KWROPL": "barometer",
"PWAEUR/KWREUS": "barista",
"PWAEUR/KAOU": "barracuda",
"PWAEUR/PHE": "barometric",
"PWAEUR/PHET": "barometric",
"PWAEURS": "barristers",
"PWAEUB/KWREU": "babyproof",
"PWAU/TKEU": "bawdiness",
"PWAFT": "bastion",
"PWAR/TPHA": "barnacles",
"PWAR/T*EPB": "bartenders",
"PWAR/T*EPBD": "bartendering",
"PWAR/KWREUFT": "barista",
"PWAR/KWREUS": "barista",
"PWAR/PWA": "barbarous",
"PWAR/PWAEUR": "barbarous",
"PWAR/PWAEUR/KWREU": "barbarian",
"PWAR/PWE": "barbecues",
"PWAR/PWEUFP": "barbiturate",
"PWAR/WEUFP": "barbiturate",
"PWAP": "baptism",
"PWAPB/TKA": "bandanna",
"PWAPB/TKAOE": "bandito",
"PWAPB/TKEU": "bandito",
"PWAPB/TKER": "bandersnatch",
"PWAPBT": "bantering",
"PWAPBS": "banisters",
"PWAPBD/PHA*S": "bandmasters",
"PWAPBD/WA*G": "bandwagon",
"PWAPBD/*ER": "bandersnatch",
"PWAPL/PWAOZ": "bamboozles",
"PWABG/STO*R": "backstory",
"PWABG/TKPWA": "backgammon",
"PWABG/TAOER/SAOEUD": "bactericidal",
"PWABG/TAOER": "bacteriological",
"PWABG/TAOER/KWRO/STA": "bacteriostatic",
"PWABG/TAOER/KWRO/HRO": "bacteriologist",
"PWABG/TAOER/KWROE/STA": "bacteriostatic",
"PWABG/TAOER/KWROL": "bacteriologist",
"PWABG/TAOER/KWRUR": "bacteriuria",
"PWABG/TAOER/HROPBLG": "bacteriological",
"PWABG/P*E": "backpedaled",
"PWABG/HRA": "baklava",
"PWABG/HRAUR": "baccalaureate",
"PWAL/KO": "balcony",
"PWAL/RAOE": "ballerina",
"PWALZ": "bazillion",
"PWAS/PHA": "basmati",
"PWAD/T*EPL": "badtempered",
"PWAD/KWREU": "baddies",
"PWAD/PHEUPB": "badminton",
"PWAD/RA*G": "bedraggle",
"PWAZ": "bazillion",
"PWAZ/-L": "bazillion",
"PWO": "borrow",
"PWO/TPHAPB": "bonanza",
"PWO/TPHE": "bonneville",
"PWO/TA": "botanic",
"PWO/TAPB": "botanical",
"PWO/HREU": "bolivar",
"PWO*E/TKPWRA": "biographer",
"PWO*E/TKPWRAEUD": "biodegradables",
"PWO*E/TKPWRAF": "biographer",
"PWO*E/TKWERS": "biodiversity",
"PWO*E/TKAOEU/SRERS": "biodiversity",
"PWO*E/TKAOEU": "biodiversity",
"PWO*E/TKE/TKPWRAEUD": "biodegradables",
"PWO*E/TKE": "biodegradables",
"PWO*E/TPAOED": "biofeedback",
"PWO*E/TRAPBS/TPORPL": "biotransformation",
"PWO*E/TRAPBS": "biotransformation",
"PWO*E/TEBG/TPHO/HRO": "biotechnology",
"PWO*E/TEBG/TPHO": "biotechnological",
"PWO*E/TEBG": "technical",
"PWO*E/TEBG/TPHO/HROPBLG": "biotechnological",
"PWO*E/TEBG/TPHOL": "biotechnology",
"PWO*E/TEBG/TPHEUBG": "technical",
"PWO*E/KHE/PHEUS": "biochemistry",
"PWO*E/KHE": "biochemistry",
"PWO*E/KHEPL": "biochemist",
"PWO*E/KE/PHEUS": "biochemistry",
"PWO*E/KE": "biochemistry",
"PWO*E/KEPL": "biochemistry",
"PWO*E/PHE": "biometric",
"PWO*E/PHET": "biometric",
"PWO*E/PHED": "biomedical",
"PWO*E/HRO": "biologic",
"PWO*E/HROPBLG": "biologically",
"PWO*E/AOE/KWEU/SRA": "bioequivalence",
"PWO*E/AOE/KWEU": "bioequivalence",
"PWO*E/AOE": "bioequivalence",
"PWO*E/AOE/KWEUF": "bioequivalence",
"PWO*E/E/KWEU/SRA": "bioequivalence",
"PWO*E/E/KWEU": "bioequivalence",
"PWO*E/E": "bioequivalence",
"PWO*E/E/KWEUF": "bioequivalence",
"PWO*E/EPB/SKWREU": "bioengineering",
"PWO*E/EPB": "bioengineering",
"PWOE/TKPWEU": "bogeyman",
"PWOE/TKAEU": "bodegas",
"PWOE/TA/TPHEU": "botanically",
"PWOE/TA": "botanically",
"PWOE/TA/TPHEU/KAL": "botanically",
"PWOE/TA/TPHEUBG": "botanically",
"PWOE/TAPB": "botanical",
"PWOE/KE": "biochemist",
"PWOEU/KWRAPB": "buoyancy",
"PWOEUFT": "boisterous",
"PWOEUL/*ER/PHA*EUBG": "boilermaker",
"PWOEUD": "boudoir",
"PWOELS": "bolsters",
"PWOEG/KWREU": "bogeyman",
"PWOEG": "bogeyman",
"PWOES": "boaster",
"PWOED/HRER": "bowdlerize",
"PWOUPB/TKA": "boundary",
"PWOUPB": "bounty",
"PWOUPB/TKAEUR": "boundary",
"PWOUPB/TKAR": "boundary",
"PWOUPBT": "bountiful",
"PWOR/TKE": "bordello",
"PWOR/KWRA": "borealis",
"PWOPL/PWAS": "bombastic",
"PWOG/KWREU": "bogginess",
"PW*ER": "{^berry}",
"PW*ED/TP*E": "bedfellow",
"PW*ED": "bedfellow",
"PWE/SKWRAOU": "bejeweled",
"PWE/TKPWO/TPHEU": "begonias",
"PWE/TKPWO": "begonias",
"PWE/TKPWOE/TPHEU": "begonias",
"PWE/TKPWOE": "begonias",
"PWE/TKPWOEPB": "begonias",
"PWE/TKPWOPB": "begonias",
"PWE/TKPWEUPBG": "beginnings",
"PWE/TKPWUL/-G": "beguilingly",
"PWE/TKPWUL": "beguilingly",
"PWE/TKPWULG": "beguilingly",
"PWE/TKE": "bedeviled",
"PWE/TKEU": "bedizens",
"PWE/TPHE/SRO": "benevolence",
"PWE/TPHE": "benefits",
"PWE/TPHE/TPABG": "benefactor",
"PWE/TPHE/TPABGT": "benefactor",
"PWE/TPHE/TPEU": "beneficence",
"PWE/TPHE/TPEURB/KWRAEUR": "beneficiaries",
"PWE/TPHE/TPEURB": "beneficence",
"PWE/TPHEF": "benevolence",
"PWE/TPUD": "befuddles",
"PWE/TRO": "betrothal",
"PWE/TROE": "betrothal",
"PWE/KWAOE": "bequeathal",
"PWE/WEUL": "bewilders",
"PWE/HRAOE": "beleaguer",
"PWE/HRAOU": "beluga",
"PWE/HRAEU": "belabors",
"PWE/HREU/SEU": "bellissimo",
"PWE/HREU/KOS": "bellicosity",
"PWE/HREUPBLG/REPBT": "belligerently",
"PWE/HREUPBLG": "belligerence",
"PWE/HREUT": "belittles",
"PWE/HREUS": "bellissima",
"PWE/HE": "behemoth",
"PWE/REUL": "beryllium",
"PWEU/TKPWA": "bigamous",
"PWEU/TPEU": "bifida",
"PWEU/TPUR": "bifurcates",
"PWEU/KWREU": "busiest",
"PWEU/KAOE": "bikini",
"PWEU/KEU": "bikini",
"PWEU/PWAOU": "bibulous",
"PWEU/PWE": "bibelot",
"PWEU/PWU": "bibulous",
"PWEU/PRO*": "byproduct",
"PWEU/PRO*E": "byproduct",
"PWEU/HREU/KWRAEUR": "biliary",
"PWEU/HREU": "biliary",
"PWEUFR": "bifurcate",
"PWEUPL": "bimbo",
"PWEUB/HREU/KWRO": "bibliophilist",
"PWEUB/HREU": "biblical",
"PWEUB/HREU/KWRO/TKPWRAF": "bibliographics",
"PWEUB/HREU/KWRO/TP*EU": "bibliophilism",
"PWEUB/HREU/KWRO/TP*EUL": "bibliophilist",
"PWEUB/HREU/KWROE": "bibliophilist",
"PWEUB/HREU/KWROE/TKPWRAF": "bibliographics",
"PWEUB/HREU/KWROE/TP*EU": "bibliophilism",
"PWEUB/HREU/KWROE/TP*EUL": "bibliophilist",
"PWEUB/HREU/KWROEG/RA": "bibliographer",
"PWEUB/HREU/KWROEG": "bibliographer",
"PWEUB/HREU/KWRORG": "bibliography",
"PWEUB/HREU/KWROG/RA": "bibliographer",
"PWEUB/HREU/KWROG": "bibliographer",
"PWEUBL": "biblical",
"PWEUBL/TKPWRAF": "bibliographer",
"PWEUBL/TP*EUL": "bibliophilist",
"PWEUBL/KWROEG": "bibliographer",
"PWEUBL/KWROG": "bibliographer",
"PWEUL/KWRAEUR": "biliary",
"PWEUS/TPHES/P*ER": "businessperson",
"PWEUS/KO": "biscotti",
"PWEUS/WO*": "businesswomen",
"PWEFP": "betcha",
"PWER/TKPWA": "bergamot",
"PWER/KWREUL": "beryllium",
"PWEPB": "beignet",
"PWEPB/TPABG": "benefactor",
"PWEPB/TPABGT": "benefactor",
"PWEPB/TPEURB": "beneficiaries",
"PWEPBL": "benevolence",
"PWEPBZ": "benzyl",
"PWEB": "pueblo",
"PWEBG": "beckoning",
"PWEL/KOS": "bellicosity",
"PWET/*ER": "betterment",
"PWES": "besmirch",
"PWES/KHEU/KWRAEUR": "bestiaries",
"PWES/KHEU": "bestiality",
"PWED/RA*G": "bedraggled",
"PWED/R*EUD": "bedridden",
"PWEZ": "bezel",
"PWU/TKPWA": "bugaboo",
"PWU/TPA": "buffalo",
"PWU/TPAOPB/*ER": "buffoonery",
"PWU/KA": "buckaroo",
"PWU/KAR": "buckaroo",
"PWU/HRE": "bulletins",
"PWUR/SAOEU": "bursitis",
"PWUR/TKPWUPB": "burgundy",
"PWUR/PW*ER": "burberry",
"PWURPBLG": "burgeon",
"PWURG/HRAEUR": "burglary",
"PWURG": "burglars",
"PWURS": "bursts",
"PWUPB/TKPWA": "bungalow",
"PWUPBLG/TAEUR": "budgetary",
"PWUPBD": "bundles",
"PWUL/KEU": "bulkiness",
"PWUL/-BG/KWREU": "bulkiest",
"PWULG/KWREU": "bulgier",
"PWULS": "bulls-eye",
"PHRA/SAOE": "placebos",
"PHRA": "placode",
"PHRA/SEPB": "placental",
"PHRA/TPHE/TAEUR": "planetarium",
"PHRA/TPHE": "planetarium",
"PHRA/TO": "platonic",
"PHRA/TEU": "platypus",
"PHRA/TEUS": "platysma",
"PHRA/KREPB": "placental",
"PHRAOEU/KWRA": "pliability",
"PHRAOEUFT": "pleistocene",
"PHRAOU": "plumeria",
"PHRAOU/TO/TPHO": "plutonomy",
"PHRAOU/TO/KRA": "plutocratic",
"PHRAOU/TOE/TPHEU": "plutonium",
"PHRAOU/TOE/KRA": "plutocratic",
"PHRAOU/TOEPB": "plutonium",
"PHRAOU/TOPB": "plutonomy",
"PHRAOU/TOBG": "plutocrat",
"PHRAOU/TOBG/RA": "plutocracy",
"PHRAOU/PHER": "plumeria",
"PHRAOU/PHER/KWREU": "plumeria",
"PHRAOUR/KWRAOEU": "pleuritis",
"PHRAOUR/KWREU": "pleurisy",
"PHRAOURS": "pleurisy",
"PHRAEU/SKWRA": "plagiarist",
"PHRAEU/SKWRAR": "plagiarist",
"PHRAEU/TO": "platonic",
"PHRAEUPBLG/KWRO": "plagioclase",
"PHRAEUPBLG": "plagiarist",
"PHRAEUPBLG/KWROE": "plagioclase",
"PHRAU": "plaudit",
"PHRAUS": "plausibility",
"PHRAFT": "plasterers",
"PHRAPB/TAEUR": "plantaris",
"PHRAS": "plasmids",
"PHRAS/TEU": "plastica",
"PHRAS/TEU/SAOEUZ": "plasticizer",
"PHRAS/TEU/SEU": "plasticity",
"PHRAS/TEUS": "plasticity",
"PHRAS/PHA/HRO": "plasmalogen",
"PHRAS/PHOL": "plasmalogen",
"PHROES": "plosive",
"PHR*ET": "plethora",
"PHRE": "polemic",
"PHRE/SAPB": "pleasantries",
"PHRE/TPHAEUR": "plenary",
"PHRE/TPHAR": "plenary",
"PHRE/THOR": "plethora",
"PHRE/PWE": "plebeian",
"PHREU": "plicae",
"PHREUF": "mellifluous",
"PHREUG": "polygonal",
"PHREUT": "politico",
"PHREUS/WO*": "policewomen",
"PHREUD": "meridian",
"PHREFPB": "pleasantries",
"PHREBG": "plexus",
"PHRU": "plutocrat",
"PHRU/TO/KRA": "plutocratic",
"PHRU/TO": "plutocrat",
"PHRU/TOE/KRA": "plutocratic",
"PHRU/TOE": "plutocratic",
"PHRU/TOBG": "plutocrat",
"PHRU/TOBG/RA": "plutocracy",
"PHRUR/KWRA/HREU": "plurality",
"PHRUR/KWRA": "plurality",
"PHRUR": "pluralism",
"PHRUPB": "plunders",
"PHRUPBD": "plunderage",
"PHRUPL/PWAEU": "plumbago",
"PHA/SKWROR": "majora",
"PHA/SKWREUS": "magisterial",
"PHA/SKWREUS/TAOER": "magisterial",
"PHA/SKWREFT": "majestically",
"PHA/SKWREPB": "magenta",
"PHA/SKWRES": "majestic",
"PHA/SHE": "machete",
"PHA/SRER": "maverick",
"PHA/SA/HA": "masaharu",
"PHA/SO": "masochistic",
"PHA/SO/KHEUS": "masochistic",
"PHA/SO/KEUS": "masochistic",
"PHA/SOE": "masochist",
"PHA/SER/KWRA": "maserati",
"PHA/SER": "macerate",
"PHA/SEBG/TO": "mastectomy",
"PHA/SEBG": "mastectomy",
"PHA/SEBG/TOPL": "mastectomy",
"PHA/SEBGT": "mastectomy",
"PHA/TKPWA": "magnanimity",
"PHA/TKPWA/TPHEU/PHEU": "magnanimity",
"PHA/TKPWA/TPHEU": "magnanimity",
"PHA/TKRA": "madrassa",
"PHA/TKREU": "madrigal",
"PHA/TKE/PHOEU": "mademoiselle",
"PHA/TKE": "mademoiselle",
"PHA/TKEPL": "mademoiselle",
"PHA/TPHA/SKWRAOER": "managerial",
"PHA/TPHA": "manacle",
"PHA/TPHAOE": "manita",
"PHA/TPHAOEU/KWRA": "maniacal",
"PHA/TPHAOEU": "maniacal",
"PHA/TPHAOEUBG": "maniacally",
"PHA/TPHAOU": "manumitt",
"PHA/TPHAOU/TPABG": "manufactures",
"PHA/TPHAOU/TPABGT": "manufactures",
"PHA/TPHAOURB": "manubrium",
"PHA/TPHAOUB/REU": "manubrium",
"PHA/TPHAOUB": "manubrium",
"PHA/TPHAPBLG/KWRAOER": "managerial",
"PHA/TPHABG": "manacle",
"PHA/TPHO/PHAOE": "manometer",
"PHA/TPHO": "manometric",
"PHA/TPHO/PHE": "manometer",
"PHA/TPHO/PHET": "manometric",
"PHA/TPHOPL": "manometer",
"PHA/TPHE": "mannequin",
"PHA/TPHEU": "manila",
"PHA/TPHEU/TPES": "manifesto",
"PHA/TPHEU/KO": "manicotti",
"PHA/TPHEU/PAOU/HRA": "manipulative",
"PHA/TPHEU/PAOU": "manipulative",
"PHA/TPHEU/PAOU/HRAEU": "manipulative",
"PHA/TPHEU/PAOU/HRAT": "manipulative",
"PHA/TPHEUP/HRA": "manipulative",
"PHA/TPHEUP": "manipulative",
"PHA/TPHEUP/HRAEU": "manipulator",
"PHA/TPHEUP/HRAT": "manipulative",
"PHA/TPEU/TPES": "manifestation",
"PHA/TPEU": "manifestation",
"PHA/THE/PHA/TEU": "mathematical",
"PHA/THE/PHA": "mathematician",
"PHA/THE": "mathematical",
"PHA/THE/PHAT": "mathematical",
"PHA/TREU": "matrilineal",
"PHA/TREU/TPHOE/TPHEU": "matrimonial",
"PHA/TREU/TPHOE": "matrimonial",
"PHA/TREU/KAOU": "matriculate",
"PHA/TREU/PHOE": "matrimony",
"PHA/TREU/PHOEPB": "matrimony",
"PHA/TREU/HREUPB": "matrilineal",
"PHA/TREUBG": "matriculate",
"PHA/TA": "matakauri",
"PHA/TA/KAOUR": "matakauri",
"PHA/TA/KAUR": "matakauri",
"PHA/TAOER": "materials",
"PHA/TEU": "maticus",
"PHA/TER/TPHEU": "maternity",
"PHA/TERPB": "maternity",
"PHA/KWEU/HRA/TKOR": "maquiladoras",
"PHA/KWEU/HRA": "maquiladoras",
"PHA/KWEU": "maquiladoras",
"PHA/KWEUL/TKOR": "maquiladoras",
"PHA/KWEUL": "maquiladoras",
"PHA/KHA/TPHEU": "mechanically",
"PHA/KHEU": "machination",
"PHA/KA/TKA": "macadamize",
"PHA/KA": "macaroni",
"PHA/KA/TKAEUPL": "macadamia",
"PHA/KA/TPHEU": "mechanically",
"PHA/KA/ROE": "macaroni",
"PHA/KAOES": "machismo",
"PHA/KAOU": "masculinization",
"PHA/KAOU/HREU/TPHAOEUZ": "masculinization",
"PHA/KAOU/HREU": "masculinization",
"PHA/KAR": "macaroni",
"PHA/KAR/KWROE": "macaroni",
"PHA/KAD": "macadamize",
"PHA/KE": "mackerel",
"PHA/KEU": "machinate",
"PHA/KEUPB": "mackintosh",
"PHA/KEUS": "machismo",
"PHA/KER": "mackerel",
"PHA/KU": "macular",
"PHA/PHAEUR": "mammary",
"PHA/PHAEUL": "mammalian",
"PHA/PHE": "mamelons",
"PHA/PHEU/HRAEUR": "mamillary",
"PHA/PHEU": "mamillary",
"PHA/PHEUL/KWRAEUR": "mamillary",
"PHA/PHEUL": "mamillary",
"PHA/PA": "mapathon",
"PHA/HRA/SA": "malasada",
"PHA/HRA": "malasada",
"PHA/HRAOE": "malicia",
"PHA/HRAOERB": "malicia",
"PHA/HRAEUR": "malarious",
"PHA/HRAR": "malarkey",
"PHA/HRARBG": "malarkey",
"PHA/HRAP/SORP": "malabsorptive",
"PHA/HRAP": "malabsorptive",
"PHA/HRAB/SORP": "malabsorptive",
"PHA/HRAB": "malabsorptive",
"PHA/HRAB/SORPT": "malabsorptive",
"PHA/HREU": "malicious",
"PHA/HREURB": "malicious",
"PHA/HREUPB": "malingers",
"PHA/HREUPBG": "malingers",
"PHA/HREUG": "malignancy",
"PHA/HREUG/TPHAPB": "malignancy",
"PHA/HREUG/TPHAPBS": "malignancy",
"PHA/HREF": "maleficence",
"PHA/HA/RA": "maharaja",
"PHA/HA": "maharaja",
"PHA/HAR/KWRA": "maharaja",
"PHA/HAR": "maharaja",
"PHA/HO/TKPWA": "mahogany",
"PHA/HO": "mahogany",
"PHA/HO/TKPWAPB": "mahogany",
"PHA/RAOE": "marina",
"PHA/REU": "marina",
"PHA/REUPL": "marimba",
"PHAO*EU/KWROE": "meiosis",
"PHAO*EU": "meiosis",
"PHAOE/SEU": "mesia",
"PHAOE/TKAOE": "media",
"PHAOE/TKEU/KWRA": "medialis",
"PHAOE/TKEU": "medius",
"PHAOE/TKEU/KWRAEU": "mediators",
"PHAOE/TKEU/KWRO": "mediocre",
"PHAOE/TKEU/KWROE": "mediocre",
"PHAOE/TKEU/KWROBG/REU": "mediocrity",
"PHAOE/TKEU/KWROBG": "mediocrity",
"PHAOE/TPHO/TRO": "menotropin",
"PHAOE/TPHO": "menotropin",
"PHAOE/TREU": "metrium",
"PHAOE/TAOE": "meteorologist",
"PHAOE/TAOE/KWROR/HRO": "meteorologic",
"PHAOE/TAOE/KWROR/HROPBLG": "meteorologically",
"PHAOE/KWRAEU": "meatus",
"PHAOE/KWRAEUT": "meatal",
"PHAOE/KWRAPB": "meanders",
"PHAOEU/STAOE/TPHEU": "myasthenia",
"PHAOEU/STAOE": "myasthenia",
"PHAOEU/STAOEPB": "myasthenia",
"PHAOEU/SAOE/HREU": "mycelium",
"PHAOEU/SAOE": "mycelium",
"PHAOEU/SAOEL": "mycelium",
"PHAOEU/SEU": "mysium",
"PHAOEU/TKPWRA": "migratory",
"PHAOEU/TKPWRA/TOR": "migratory",
"PHAOEU/TKREU/KWRA": "mydriatic",
"PHAOEU/TKREU": "mydriatic",
"PHAOEU/TPHOR/KWREU": "minorities",
"PHAOEU/TO": "mitochondrial",
"PHAOEU/TO/KORPBD": "mitochondrial",
"PHAOEU/TO/KOPB/TKREU": "mitochondrion",
"PHAOEU/TO/KOPB": "mitochondrial",
"PHAOEU/TOE/KOPB/TKREU": "mitochondrion",
"PHAOEU/TOE/KOPB": "mitochondrial",
"PHAOEU/KWRA/STAOE/TPHEU": "myasthenia",
"PHAOEU/KWRA/STAOE": "myasthenia",
"PHAOEU/KWRA": "myasthenia",
"PHAOEU/KWRA/STAOEPB": "myasthenia",
"PHAOEU/KWRALG": "myalgias",
"PHAOEU/KWRAS/TAOE/TPHEU": "myasthenia",
"PHAOEU/KWRAS/TAOE": "myasthenia",
"PHAOEU/KWRAS": "miasma",
"PHAOEU/KWRAS/TAOEPB": "myasthenia",
"PHAOEU/KWRO": "myopic",
"PHAOEU/KWRO/PA": "myopathy",
"PHAOEU/KWRO/PEU": "myopia",
"PHAOEU/KWRO*E": "meiosis",
"PHAOEU/KWROE": "myopic",
"PHAOEU/KWROE/PEU": "myopia",
"PHAOEU/KWROP": "myopic",
"PHAOEU/KWROT": "mioticallly",
"PHAOEU/KWRE": "myelin",
"PHAOEU/KRO/PHAOE": "micrometers",
"PHAOEU/KRO": "micrometers",
"PHAOEU/KRO/PHE": "micrometers",
"PHAOEU/KROE/SKO/PEUBG": "microscopically",
"PHAOEU/KROE/SKO": "microscopically",
"PHAOEU/KROE/SKOE": "microscopist",
"PHAOEU/KROE/SKOP": "microscopically",
"PHAOEU/KROE/SE/HRAOU": "microcellulose",
"PHAOEU/KROE/SE": "microcellulose",
"PHAOEU/KROE/SEL": "microcellulose",
"PHAOEU/KROE/TKAOEU": "microdilution",
"PHAOEU/KROE/TK*EU": "microdilution",
"PHAOEU/KROE/TPO*E/TOE": "microphotograph",
"PHAOEU/KROE/TPO*E": "microphotograph",
"PHAOEU/KROE/TPO*ET": "microphotograph",
"PHAOEU/KROE/TPEUL": "microfilm",
"PHAOEU/KROE/TAOU": "microtubules",
"PHAOEU/KROE/KRE/HRAOU": "microcellulose",
"PHAOEU/KROE/KRE": "microcellulose",
"PHAOEU/KROE/KREL": "microcellulose",
"PHAOEU/KROE/PWHROPBLG": "microbiological",
"PHAOEU/KROE/PWAOEU/KWRO/HRO/SKWREU": "microbiological",
"PHAOEU/KROE/PWAOEU/KWRO/HRO": "microbiological",
"PHAOEU/KROE/PWAOEU/KWRO": "microbiological",
"PHAOEU/KROE/PWAOEU": "microbiological",
"PHAOEU/KROE/PWAOEU/KWRO/HROPBLG": "microbiological",
"PHAOEU/KROE/PWAOEU/KWROE/HRO/SKWREU": "microbiological",
"PHAOEU/KROE/PWAOEU/KWROE/HRO": "microbiological",
"PHAOEU/KROE/PWAOEU/KWROE": "microbiological",
"PHAOEU/KROE/PWAOEU/KWROE/HROPBLG": "microbiological",
"PHAOEU/KROE/PWAOEU/HROPBLG": "microbiological",
"PHAOEU/KROE/PWEU": "microbials",
"PHAOEU/KROE/PHA": "micromanage",
"PHAOEU/KROE/PHAOE": "micrometers",
"PHAOEU/KROE/PHE": "micrometers",
"PHAOEU/KROPL": "micrometers",
"PHAOEU/KROS/KO": "microscopy",
"PHAOEU/KROS": "microscopy",
"PHAOEU/KO": "mycotic",
"PHAOEU/KOE": "mycosis",
"PHAOEU/HRAEU": "milady",
"PHAOEURBG/SKO": "microscopically",
"PHAOEURBG/SKO/PEUBG": "microscopically",
"PHAOEURBG/SKOE": "microscopist",
"PHAOEURBG/SKOP": "microscopically",
"PHAOEURBG/SE/HRAOU": "microcellulose",
"PHAOEURBG/SE": "microcellulose",
"PHAOEURBG/SEL": "microcellulose",
"PHAOEURBG/TKAOEU": "microdilution",
"PHAOEURBG/TK*EU": "microdilution",
"PHAOEURBG/TPO*E/TOE": "microphotograph",
"PHAOEURBG/TPO*E": "microphotograph",
"PHAOEURBG/TPO*ET": "microphotograph",
"PHAOEURBG/TPEUL": "microfilm",
"PHAOEURBG/TAOU": "microtubules",
"PHAOEURBG/KRE/HRAOU": "microcellulose",
"PHAOEURBG/KRE": "microcellulose",
"PHAOEURBG/KREL": "microcellulose",
"PHAOEURBG/PWHROPBLG": "microbiological",
"PHAOEURBG/PWAOEU/KWRO/HRO/SKWREU": "microbiological",
"PHAOEURBG/PWAOEU/KWRO/HRO": "microbiological",
"PHAOEURBG/PWAOEU/KWRO": "microbiological",
"PHAOEURBG/PWAOEU": "microbiological",
"PHAOEURBG/PWAOEU/KWRO/HROPBLG": "microbiological",
"PHAOEURBG/PWAOEU/KWROE/HRO/SKWREU": "microbiological",
"PHAOEURBG/PWAOEU/KWROE/HRO": "microbiological",
"PHAOEURBG/PWAOEU/KWROE": "microbiological",
"PHAOEURBG/PWAOEU/KWROE/HROPBLG": "microbiological",
"PHAOEURBG/PWAOEU/HROPBLG": "microbiological",
"PHAOEURBG/PWEU": "microbials",
"PHAOEURBG/PHA": "micromanage",
"PHAOEURBG/PHAOE": "micrometers",
"PHAOEURBG/PHE": "micrometers",
"PHAOEURG": "migratory",
"PHAOEURD/KWRA": "mydriatic",
"PHAOEUBG": "miking",
"PHAOEUBG/RO/PHE": "micrometers",
"PHAOEUBG/RO": "micrometers",
"PHAOEUBG/ROE/SKO/PEUBG": "microscopically",
"PHAOEUBG/ROE/SKO": "microscopically",
"PHAOEUBG/ROE/SKOE": "microscopist",
"PHAOEUBG/ROE/SKOP": "microscopically",
"PHAOEUBG/ROE/SE/HRAOU": "microcellulose",
"PHAOEUBG/ROE/SE": "microcellulose",
"PHAOEUBG/ROE/SEL": "microcellulose",
"PHAOEUBG/ROE/TKAOEU": "microdilution",
"PHAOEUBG/ROE/TK*EU": "microdilution",
"PHAOEUBG/ROE/TPO*E/TOE": "microphotograph",
"PHAOEUBG/ROE/TPO*E": "microphotograph",
"PHAOEUBG/ROE/TPO*ET": "microphotograph",
"PHAOEUBG/ROE/TPEUL": "microfilm",
"PHAOEUBG/ROE/TAOU": "microtubules",
"PHAOEUBG/ROE/KRE/HRAOU": "microcellulose",
"PHAOEUBG/ROE/KRE": "microcellulose",
"PHAOEUBG/ROE/KREL": "microcellulose",
"PHAOEUBG/ROE/PWHROPBLG": "microbiological",
"PHAOEUBG/ROE/PWAOEU/KWRO/HRO/SKWREU": "microbiological",
"PHAOEUBG/ROE/PWAOEU/KWRO/HRO": "microbiological",
"PHAOEUBG/ROE/PWAOEU/KWRO": "microbiological",
"PHAOEUBG/ROE/PWAOEU": "microbiological",
"PHAOEUBG/ROE/PWAOEU/KWRO/HROPBLG": "microbiological",
"PHAOEUBG/ROE/PWAOEU/KWROE/HRO/SKWREU": "microbiological",
"PHAOEUBG/ROE/PWAOEU/KWROE/HRO": "microbiological",
"PHAOEUBG/ROE/PWAOEU/KWROE": "microbiological",
"PHAOEUBG/ROE/PWAOEU/KWROE/HROPBLG": "microbiological",
"PHAOEUBG/ROE/PWAOEU/HROPBLG": "microbiological",
"PHAOEUBG/ROE/PWEU": "microbials",
"PHAOEUBG/ROE/PHA": "micromanage",
"PHAOEUBG/ROE/PHAOE": "micrometers",
"PHAOEUBG/ROE/PHE": "micrometers",
"PHAOEUG/RA": "migratory",
"PHAOEUG": "migrant",
"PHAOEUG/RA/TOR": "migratory",
"PHAOEUT/KORPBD": "mitochondrion",
"PHAOEUS/TAOE/TPHEU": "myasthenia",
"PHAOEUS/TAOE": "myasthenia",
"PHAOEUS/TAOEPB": "myasthenia",
"PHAOEPB/TROE": "menotropin",
"PHAOEPL/KWRET": "memetics",
"PHAOEL/KWROR": "meliorate",
"PHAOET/KWRO/HRO": "meteorology",
"PHAOET/KWRO": "meteorology",
"PHAOET/KWROR/HRO": "meteorologic",
"PHAOET/KWROR/HROPBLG": "meteorologically",
"PHAOED/KWRAEU": "mediators",
"PHAOED/KWROBG/REU": "mediocrity",
"PHAOED/KWROBG": "mediocrity",
"PHAOU/SA": "moussaka",
"PHAOU/SAOE": "museums",
"PHAOU/SEU": "mucilage",
"PHAOU/SEU/KO/HRO": "musicologist",
"PHAOU/SEU/KO": "musicologist",
"PHAOU/SEU/KOL": "musicologist",
"PHAOU/TPHEU/SEU/PA/HREU": "municipalities",
"PHAOU/TPHEU/SEU/PA": "municipalities",
"PHAOU/TPHEU/SEU": "municipalities",
"PHAOU/TPHEU": "munificence",
"PHAOU/TPHEU/TPEU": "munificence",
"PHAOU/TPHEUF": "munificence",
"PHAOU/TPHEUS/PA/HREU": "municipalities",
"PHAOU/TPHEUS/PA": "municipalities",
"PHAOU/TPHEUS": "municipalities",
"PHAOU/TA/SKWRE": "mutagenic",
"PHAOU/TA": "mutagen",
"PHAOU/TEU": "mutilated",
"PHAOU/KHA": "muchacho",
"PHAOU/KO/AD/HAOE": "mucoadhesive",
"PHAOU/KO/AD": "mucoadhesive",
"PHAOU/KO/AD/HAOES": "mucoadhesive",
"PHAOU/KOE/AD/HAOE": "mucoadhesive",
"PHAOU/KOE/AD": "mucoadhesive",
"PHAOU/KOE/AD/HAOES": "mucoadhesive",
"PHAOU/PHER": "numerologist",
"PHAOUFP": "mutual",
"PHAOUR/KWRA": "muramic",
"PHAOUPBS": "municipal",
"PHAOUBG": "mucocele",
"PHAOUT/SKWRE": "mutagenic",
"PHAOUS/KOL": "musicologist",
"PHAOUD": "mudra",
"PHA*R": "marathon",
"PHA*RPB/KWRAOEUZ": "marginization",
"PHA*RB/PHA": "marshmallows",
"PHA*T/PHA/TEU": "mathematically",
"PHA*T/PHA": "mathematician",
"PHA*T/PHAT": "mathematical",
"PHAEU/TRAR": "matriarchal",
"PHAEU/TROPB": "matronly",
"PHAEU/TREU": "matriarch",
"PHAEU/TREU/KWRAR": "matriarchal",
"PHAEU/TREUS": "matrices",
"PHAEU/KWRO": "mayonnaise",
"PHAEUR/SKAL": "marascalco",
"PHAEUR/TPHAEUR": "marinara",
"PHAEUR/TPHAR": "marinara",
"PHAEUR/KWRA/SKAL": "marascalco",
"PHAEUR/KWRA": "marathon",
"PHAEUR/KWREU/TEU": "mariticide",
"PHAEUR/KWREU/KWRA": "mariachi",
"PHAEUR/KWREU/KWRO": "marionette",
"PHAEUR/KWREU/KWROE": "marionette",
"PHAEUR/KWREU/WA": "marijuana",
"PHAEUR/KWREU/WAU": "marijuana",
"PHAEUR/KWREUT": "mariticide",
"PHAEUR/WA": "marijuana",
"PHAEUR/WAU": "marijuana",
"PHAEURPB": "marionette",
"PHAEUP": "maples",
"PHAEUPB/TE": "maintenance",
"PHAEUT/ROPB": "matronly",
"PHAEUT/REU": "matricide",
"PHAU/SO/HRAOE": "mausoleum",
"PHAU/SO": "mausoleum",
"PHAU/SOE/HRAOE": "mausoleum",
"PHAU/SOE": "mausoleum",
"PHAUR": "moire",
"PHAUPB": "manque",
"PHAUPBG": "manque",
"PHAUPL": "palmitate",
"PHAUBG/KWREURB": "mawkishly",
"PHAUS": "mausoleum",
"PHAUD": "maudlin",
"PHAF/KWRO": "mafioso",
"PHAF": "maverick",
"PHAF/KWROE": "mafioso",
"PHAFR": "maverick",
"PHAFRPB/KWRO": "marchioness",
"PHAFRPB/KWROPB": "marchioness",
"PHAFRB": "marvelous",
"PHAFRT/-FL": "masterfully",
"PHAFBG/HREU": "masculinize",
"PHAFT/KA": "masticatory",
"PHAFT/KA/TOR": "masticatory",
"PHAFT/PWA": "masturbatory",
"PHAFT/PWA/TOR": "masturbatory",
"PHAR/SKWRA": "margarine",
"PHAR/SKWRAR": "margarine",
"PHAR/SKWROR": "marjoram",
"PHAR/SKWREU/TPHAEUL": "marginalia",
"PHAR/SKWREU": "marginal",
"PHAR/SKWREU/TPHAL/KWRAOEUZ": "marginalization",
"PHAR/SKWREUPB/KWRAOEUZ": "marginization",
"PHAR/SRE": "marvelous",
"PHAR/SA": "marsala",
"PHAR/SAOU/PEU": "marsupial",
"PHAR/SAOU": "marsupial",
"PHAR/SAOUP": "marsupial",
"PHAR/TKPWA/KWREU": "margarita",
"PHAR/TKPWA": "margarita",
"PHAR/TKPWAR/KWREU": "margarita",
"PHAR/TKPWAR": "margarita",
"PHAR/TAOE": "martini",
"PHAR/TEU": "martinet",
"PHAR/TEUPB": "martingale",
"PHAR/TEUPBG": "martingale",
"PHAR/KWRA": "maraca",
"PHAR/KWRAOE": "marina",
"PHAR/KWREU": "marina",
"PHAR/KWREUPL": "marimba",
"PHAR/KE": "marketers",
"PHAR/PHA": "marmalades",
"PHAR/PHOE/HRAOE": "marmoleum",
"PHAR/PHOE": "marmoleum",
"PHAR/PHOEL": "marmoleum",
"PHAR/WAU": "marijuana",
"PHARPBLG": "margarine",
"PHARPBLG/TPHAEUL": "marginalia",
"PHARPL": "marmalades",
"PHARB/PHA": "marshmallows",
"PHARBGS": "marksmen",
"PHARG/REU": "margarita",
"PHARG": "margarita",
"PHART/HREUPB": "matrilineal",
"PHARS": "marsala",
"PHARZ": "marzipan",
"PHAPB/SHRA*U": "manslaughter",
"PHAPB/TKA": "mandala",
"PHAPB/TKA/TOER/KWREU": "mandatorily",
"PHAPB/TKA/TOR": "mandatory",
"PHAPB/TKAR": "mandarin",
"PHAPB/TKO": "mandolin",
"PHAPB/TKOE": "mandolin",
"PHAPB/TKOR": "mandorla",
"PHAPB/TKE": "mandelic",
"PHAPB/TKEL": "mandelic",
"PHAPB/TPABG": "manufactures",
"PHAPB/TPES": "manifesto",
"PHAPB/TAL": "mentalis",
"PHAPB/TEU": "mantilla",
"PHAPB/KWRAOU": "manumitt",
"PHAPB/KWRAOU/TPABG": "manufactures",
"PHAPB/KWRAOU/TPABGT": "manufactures",
"PHAPB/KWRAOURB": "manubrium",
"PHAPB/KWRAOUB/REU": "manubrium",
"PHAPB/KWRAOUB": "manubrium",
"PHAPB/KWRAPB": "magnante",
"PHAPB/KHAEU": "manchego",
"PHAPB/KO": "manicotti",
"PHAPB/PHRA": "manipulative",
"PHAPB/PHRAEU": "manipulator",
"PHAPB/PHE": "manometric",
"PHAPB/PHET": "manometric",
"PHAPB/PO*U": "manpower",
"PHAPB/HA*PBD": "manhandle",
"PHAPBLG/STAOER": "magisterial",
"PHAPBLG/TPHA": "imaginatively",
"PHAPBLG/TPHAT": "imaginatively",
"PHAPBLGS/TAOER": "magisterial",
"PHAPBLGS": "majesty",
"PHAPBG/KWRAOER": "managerial",
"PHAPBT": "mantles",
"PHAPBS": "emancipate",
"PHABG/SEU": "maxillary",
"PHABG/SEU/HRAEUR": "maxillary",
"PHABG/TKAEUPL": "macadamia",
"PHABG/KWRA": "macchiato",
"PHABGS/KWREU": "maxima",
"PHAL/SRO": "malevolence",
"PHAL/SROE": "malevolence",
"PHAL/TPHAOU": "malnutrition",
"PHAL/TPHAOUR": "malnourished",
"PHAL/TPHU": "malnutrition",
"PHAL/TPAOE": "malfeasance",
"PHAL/TPAOES": "malfeasance",
"PHAL/TPABG": "malefactor",
"PHAL/TPABGT": "malefactor",
"PHAL/TPOR": "malformation",
"PHAL/TPORPL": "malformed",
"PHAL/TRAOET": "maltreatment",
"PHAL/KOPB": "malcontent",
"PHAL/PRABG": "malpractice",
"PHAL/RO": "malrotation",
"PHAL/ROE": "malrotation",
"PHAL/A": "malalignment",
"PHAL/A/SKWRUFT": "maladjustment",
"PHAL/A/TKAP": "maladaptive",
"PHAL/A/TKAPT": "maladaptive",
"PHAL/A/PROP": "malapropism",
"PHAL/A/PORGS": "malapportionment",
"PHAL/A/HRAOEUPB": "malalignment",
"PHAL/AP/SORPT": "malabsorptive",
"PHAL/AP": "malabsorptive",
"PHAL/AB/SORP": "malabsorptive",
"PHAL/AB": "malabsorption",
"PHALG": "amalgamate",
"PHAG/TPHA/TPHEU": "magnanimous",
"PHAG/TPHAOE/SAOEPL": "magnesemia",
"PHAG/TPHAOE": "magneto",
"PHAG/TPHAOE/TOE/PHAOE": "magnetometer",
"PHAG/TPHAOE/TOE/PHE": "magnetometer",
"PHAG/TPHAOES": "magnesium",
"PHAG/TPHAPB": "magnanimous",
"PHAG/TPHOEL": "magnolia",
"PHAG/TPHE": "magnetic",
"PHAG/TPHEU": "magnitude",
"PHAG/TPHEU/TPEU": "magnification",
"PHAG/TPHEUF": "magnificence",
"PHAG/TPHEUPL": "magnanimity",
"PHAG/TPEU": "magnifique",
"PHAG/TPEUF/SEPBT": "magnificently",
"PHAG/TPEUF": "magnificently",
"PHAT/PHOEPB": "matrimonial",
"PHAT/REU": "matrilineal",
"PHAT/REU/HREUPB": "matrilineal",
"PHAS/TA": "mastaba",
"PHAS/TAL": "mastalgia",
"PHAS/TALG": "mastalgia",
"PHAS/TO": "mastodon",
"PHAS/TEU/KA": "masticatory",
"PHAS/TEU": "masticate",
"PHAS/TEU/KA/TOR": "masticatory",
"PHAS/TER/-FL": "masterfully",
"PHAS/TEBG/TO": "mastectomy",
"PHAS/TEBG": "mastectomy",
"PHAS/TEBG/TOPL": "mastectomy",
"PHAS/TEBGT": "mastectomy",
"PHAS/TUR/PWA": "masturbatory",
"PHAS/TUR": "masturbate",
"PHAS/TUR/PWA/TOR": "masturbatory",
"PHAS/KWER": "masquerades",
"PHAS/KHEUS": "masochistic",
"PHAS/KA": "mascara",
"PHAS/KAOU/HREU": "masculinity",
"PHAS/KAOU": "masculinity",
"PHAS/KAOU/HREU/TPHEU": "masculinity",
"PHAS/KAR": "mascarpone",
"PHAS/KEUS": "masochistic",
"PHAS/RA": "maserati",
"PHAD/RA": "madrassa",
"PHAD/REU": "madrigal",
"PHO/SKWRAOU/HRA": "modulatory",
"PHO/SKWRAOU": "modulus",
"PHO": "mojito",
"PHO/SKWRAOU/HRA/TOR": "modulatory",
"PHO/SKWRAOU/HRAEU": "modulator",
"PHO/SKWRAOU/HRAEUR": "modularity",
"PHO/SKWRAOU/HRAEUR/KWREU": "modularity",
"PHO/SA*/RE": "mozzarella",
"PHO/SA*": "mozzarella",
"PHO/TKAOU/HRA": "modulatory",
"PHO/TKAOU": "modulus",
"PHO/TKAOU/HRA/TOR": "modulatory",
"PHO/TKAOU/HRAEU": "modulator",
"PHO/TKAOU/HRAEUR": "modularity",
"PHO/TKAOU/HRAEUR/KWREU": "modularity",
"PHO/TKEU": "modicum",
"PHO/TKEU/TPEU": "modification",
"PHO/TKER/KWRAEU": "moderator",
"PHO/TKER": "moderate",
"PHO/TKES": "modesty",
"PHO/TPHAOU": "monuments",
"PHO/TPHAFT": "monasticism",
"PHO/TPHAR": "monarchist",
"PHO/TPHAS": "monastery",
"PHO/TPHAS/TEU": "monasticism",
"PHO/TPHAS/TER": "monastery",
"PHO/TPHO/SHRA": "monosyllabic",
"PHO/TPHO/SEU/HRA": "monosyllabic",
"PHO/TPHO/SEU": "monosyllable",
"PHO/TPHO/TKPWA": "monogamous",
"PHO/TPHO/THAOE": "monotheism",
"PHO/TPHO/TO": "monotonous",
"PHO/TPHO/TOPB": "monotonically",
"PHO/TPHO/KHROEPB": "monoclonal",
"PHO/TPHO/KRO/PHA": "monochromatic",
"PHO/TPHO/KRO": "monochromatic",
"PHO/TPHO/KAOU": "monocular",
"PHO/TPHO/PO": "monopolist",
"PHO/TPHO/POE": "monopolize",
"PHO/TPHO/POL": "monopolization",
"PHO/TPHO/HREU": "monolithic",
"PHO/TPHOE/SHRA": "monosyllabic",
"PHO/TPHOE/SRAEU": "monovalent",
"PHO/TPHOE/SEU/HRA": "monosyllabic",
"PHO/TPHOE/SEU": "monosyllable",
"PHO/TPHOE/THAOE": "monotheism",
"PHO/TPHOE/TO": "monotonic",
"PHO/TPHOE/KHROE": "monoclonal",
"PHO/TPHOER": "monorail",
"PHO/TPHOP": "monopolist",
"PHO/TPHOBG": "monocular",
"PHO/TPHOG": "monogamous",
"PHO/TPHOT": "monotonous",
"PHO/TPHE": "monetarily",
"PHO/TPHE/TAEUR": "monetary",
"PHO/TPHEU": "moniker",
"PHO/TPHER": "monero",
"PHO/TPOG": "monogamous",
"PHO/KA": "moccasin",
"PHO/KAOU": "mockument",
"PHO/KAOU/-PLT/KWRAEUR": "mockumentary",
"PHO/KAOUPLT/KWRAEUR": "mockumentary",
"PHO/HRAEUR/KWREU": "molarity",
"PHO/HRAEUR": "molarity",
"PHO/HRE": "molecules",
"PHO/HREU": "mollicute",
"PHO/HREU/TPEU": "mollification",
"PHO/HREUB/TKE": "molybdenum",
"PHO/HREUB": "molybdenum",
"PHO/HREUBD": "molybdenum",
"PHO/HRES": "molester",
"PHO/HEU": "mojito",
"PHO*PB/SHRA": "monosyllabic",
"PHO*PB/SEU/HRA": "monosyllabic",
"PHO*PB/SEU": "monosyllable",
"PHO*PB/TKPWA": "monogamous",
"PHO*PB/THAOE": "monotheism",
"PHO*PB/TO": "monotonous",
"PHO*PB/TOPB": "monotonically",
"PHO*PB/KHROEPB": "monoclonal",
"PHO*PB/KRO/PHA": "monochromatic",
"PHO*PB/KRO": "monochromatic",
"PHO*PB/KAOU": "monocular",
"PHO*PB/PO": "monopolist",
"PHO*PB/POE": "monopolize",
"PHO*PB/POL": "monopolization",
"PHO*PB/HREU": "monolithic",
"PHO*D/KWRO/HRO/SKWREU": "methodological",
"PHO*D/KWRO/HRO": "methodological",
"PHO*D/KWRO": "methodological",
"PHO*D/KWRO/HROPBLG": "methodological",
"PHO*D/HROPBLG": "methodological",
"PHOE/SAEU": "mosaic",
"PHOE/TKA/TPEU": "modafinil",
"PHOE/TKA": "modafinil",
"PHOE/TKEU/KWROE": "modiolus",
"PHOE/TKEU": "modicum",
"PHOE/TPHO/TO": "monotonous",
"PHOE/TPHO": "monotonous",
"PHOE/TPHOE/KHROE": "monoclonal",
"PHOE/TPHOE/KRO/PHA": "monochromatic",
"PHOE/TPHOE/KRO": "monochromatic",
"PHOE/TPHOT": "monotonous",
"PHOE/TPHER": "monero",
"PHOE/TOR/SAO*EU": "motorcycles",
"PHOE/TOR/SAO*EUBG": "motorcycles",
"PHOE/TOR/SAOEU": "motorcycles",
"PHOE/TOR/SAOEUBG": "motorcycled",
"PHOE/TEU/SRAEU": "motivator",
"PHOE/TEU/HREU": "motility",
"PHOE/KWRE": "moiety",
"PHOE/PWAOEUL/KWRAOEUZ": "mobilization",
"PHOE/PWEU": "mobilize",
"PHOE/PHEPB": "momentous",
"PHOE/PHEPB/TAEUR": "momentary",
"PHOE/HRA": "molasses",
"PHOE/HRAEUR": "molarity",
"PHOE/HRAEUR/KWREU": "molarity",
"PHOE/HRAL": "molality",
"PHOE/HRE/KAOU": "molecularly",
"PHOE/HRE": "molecularly",
"PHOE/HREBG": "molecularly",
"PHOE/HRES": "molester",
"PHOE/HEU": "mojito",
"PHOEU": "moyai",
"PHOEUR": "moire",
"PHOEUS": "moisture",
"PHOERT/SAO*EU": "motorcycles",
"PHOERT/SAO*EUBG": "motorcycles",
"PHOERT/SAOEU": "motorcycles",
"PHOERT/SAOEUBG": "motorcycled",
"PHOERT/SAOEUBG/-L": "motorcyclist",
"PHOEPB/KRO/PHA": "monochromatic",
"PHOEPB/KRO": "monochromatic",
"PHOEPBLG/SPARBG/-L": "✨",
"PHOEPBLG/SPARBG": "✨",
"PHOEPBLG": "🤨",
"PHOEPL": "momento",
"PHOEPLT/KWRAEUR": "momentary",
"PHOEB": "mobilize",
"PHOET/SRAEU": "motivator",
"PHOES": "mosey",
"PHOED/TPEU": "modafinil",
"PHOED/KWROE": "modiolus",
"PHOFRPB/WAEUR": "mortuary",
"PHOFRPB": "mortuary",
"PHOR/TKPWA": "mortgagee",
"PHOR/TPO*/HRO": "morphologic",
"PHOR/TPO*": "morphological",
"PHOR/TPO*/HROPBLG": "morphological",
"PHOR/TPO*E/SKWRE/TPHE": "morphogenetic",
"PHOR/TPO*E/SKWRE": "morphogenic",
"PHOR/TPO*E/SKWREPB": "morphogenesis",
"PHOR/TPO*L": "morphology",
"PHOR/TA/HREU": "mortality",
"PHOR/TA": "mortality",
"PHOR/TOR": "moratorium",
"PHOR/TEU": "mortification",
"PHOR/TEU/TPEU": "mortification",
"PHOR/KWRA": "moratorium",
"PHOR/KWRA/TOR": "moratorium",
"PHOR/KWRAL/ST-BG": "moralistically",
"PHOR/KWREU": "moribund",
"PHOR/KHAOU/WAEUR": "mortuary",
"PHOR/KHAOU": "mortuary",
"PHOR/PWEU/HREU": "morbilliform",
"PHOR/PWEU": "morbilliform",
"PHOR/PWEUL": "morbilliform",
"PHOR/HRAEUR/KWREU": "molarity",
"PHOR/HRAEUR": "molarity",
"PHORL/ST-BG": "moralistically",
"PHOPB/STRO/SEU": "monstrosity",
"PHOPB/STRO": "monstrosity",
"PHOPB/STROS": "monstrosity",
"PHOPB/SHRA": "monosyllabic",
"PHOPB/SRAEU": "monovalent",
"PHOPB/SEU/HRA": "monosyllabic",
"PHOPB/SEU": "monosyllable",
"PHOPB/TKPWA": "monogamous",
"PHOPB/TKPWO": "mongolism",
"PHOPB/TKPWOE": "mongolism",
"PHOPB/THAOE": "monotheism",
"PHOPB/TRAOE": "montreal",
"PHOPB/TAEUR": "monetary",
"PHOPB/TOPB": "monotonically",
"PHOPB/TE/HREU": "montelimar",
"PHOPB/TE": "montelimar",
"PHOPB/KWRAOU": "monuments",
"PHOPB/KWREU/S*UBG": "honeysuckle",
"PHOPB/KRAPL": "monochromatic",
"PHOPBLG": "modulus",
"PHOPBLG/HRA": "modulatory",
"PHOPBLG/HRA/TOR": "modulatory",
"PHOPBLG/HRAEU": "modulator",
"PHOPBLG/HRAEUR": "modularity",
"PHOPBLG/HRAEUR/KWREU": "modularity",
"PHOPBG/TKPWO": "mongolism",
"PHOPBG/TKPWOE": "mongolism",
"PHOPBT": "monetization",
"PHOPBS/TRO/SEU": "monstrosity",
"PHOPBS/TRO": "monstrosity",
"PHOPBS": "monsters",
"PHOPBS/TROS": "monstrosity",
"PHOBG/-PLT/KWRAEUR": "mockumentary",
"PHOBG/-PLT": "mockumentary",
"PHOBS": "mobsters",
"PHOT": "mottled",
"PHOS/KWAOE": "mosquitoes",
"PHOS/KWEU": "mosquitoes",
"PHOS/KAOE": "mosquitoes",
"PHOS/KEU": "mosquitoes",
"PHOD/TPEU": "modifications",
"PHOD/HRA": "modulatory",
"PHOD/HRA/TOR": "modulatory",
"PHOD/HRAEU": "modulator",
"PHOD/HRAEUR/KWREU": "modularity",
"PHOD/HRAEUR": "modularity",
"PHOD/RAEU": "moderator",
"PHODZ": "modesty",
"PHOZ/RE": "mozzarella",
"PHOZ": "mozzarella",
"PH*EUL/SROE": "millivoltage",
"PH*EUL/SE": "milliseconds",
"PH*EUL/PHAOE": "millimeters",
"PH*EUL/PHOE": "millimolar",
"PH*EUL/AOE/KWEU/SRA": "milliequivalent",
"PH*EUL/AOE/KWEU": "milliequivalent",
"PH*EUL/AOE": "milliequivalent",
"PH*EUL/AOE/KWEUF": "milliequivalent",
"PH*EUL/A*PL": "milliamperage",
"PH*EUL/APL": "milliamperage",
"PH*EUL/APL/PER": "milliamperage",
"PH*EUL/E/KWEU/SRA": "milliequivalent",
"PH*EUL/E/KWEU": "milliequivalent",
"PH*EUL/E": "milliequivalent",
"PH*EUL/E/KWEUF": "milliequivalent",
"PH*EUT/PHA*EUBG": "myth-making",
"PH*EUT/HROPBLG": "mythological",
"PH*EPLT/TP*ET": "methamphetamine",
"PH*EPLT": "methamphetamine",
"PH*EG/PAS": "megapascal",
"PH*EG/PEUBG": "megapixel",
"PH*EG/PEUBGS": "megapixel",
"PH*ET/TKO/HRO/SKWREU": "methodological",
"PH*ET/TKO/HRO": "methodologies",
"PH*ET/TKO": "methodological",
"PH*ET/TKO/HROPBLG": "methodological",
"PH*ET/TKOL": "methodologies",
"PH*ET/TP*E/TA": "methamphetamine",
"PH*ET/TP*E": "methamphetamine",
"PH*ET/TP*ET": "methamphetamine",
"PH*ET/A*PL/TP*ET": "methamphetamine",
"PH*ET/A*PL": "methamphetamine",
"PH*ET/A*PL/TPE/TA": "methamphetamine",
"PH*ET/A*PL/TPE": "methamphetamine",
"PH*ET/APL/TP*E/TA": "methamphetamine",
"PH*ET/APL/TP*E": "methamphetamine",
"PH*ET/APL": "methamphetamine",
"PH*ET/APL/TP*ET": "methamphetamine",
"PH*ET/-L/SE/HRAOU": "methylcellulose",
"PH*ET/-L/SE": "methylcellulose",
"PH*ET/-L/SEL": "methylcellulose",
"PH*ET/-L/KRE/HRAOU": "methylcellulose",
"PH*ET/-L/KRE": "methylcellulose",
"PH*ET/-L/KREL": "methylcellulose",
"PHE": "mellifluous",
"PHE/SRA/HRO": "mevalonic",
"PHE/SRA": "mevalonic",
"PHE/SA/HRA": "mesalamine",
"PHE/SA": "mesalamine",
"PHE/SA*": "mezzaluna",
"PHE/SA*/HRAOU": "mezzaluna",
"PHE/SAPB/SKWREU": "mesangium",
"PHE/SAPB": "mesangium",
"PHE/SAPBG": "mesangium",
"PHE/SEPB": "messenger",
"PHE/TKPWA/KO": "megacolon",
"PHE/TKPWA/PAS": "megapascal",
"PHE/TKPWA/PEUBG": "megapixel",
"PHE/TKPWA/PEUBGS": "megapixel",
"PHE/TKPWA/HRO/PHAEU/TPHEU": "megalomania",
"PHE/TKPWA/HRO/PHAEU": "megalomania",
"PHE/TKPWA/HRO/PHAEUPB": "megalomaniac",
"PHE/TKPWA/HROE/PHAEU/TPHEU": "megalomania",
"PHE/TKPWA/HROE/PHAEU": "megalomania",
"PHE/TKPWA/HROE/PHAEUPB": "megalomaniac",
"PHE/TKPWA/HREU": "megalithic",
"PHE/TKA/HREU": "medallion",
"PHE/TKA": "medallion",
"PHE/TKAOE": "medieval",
"PHE/TKEU/SEU": "medicinal",
"PHE/TKEU": "medical",
"PHE/TKEU/TAEU": "meditative",
"PHE/TKEU/KA": "medicament",
"PHE/TKEUS": "medicinal",
"PHE/TPHA/SKWRER": "menagerie",
"PHE/TPHA": "menagerie",
"PHE/TPHAPBLG": "menagerie",
"PHE/TPHO/TAEUR/KWREU": "monetarily",
"PHE/TPHO/TAEUR": "monetarily",
"PHE/TPHO": "menopause",
"PHE/TPHO/PAU": "menopausal",
"PHE/TPHOE/PAU": "menopausal",
"PHE/TPHOE": "menopause",
"PHE/TPHOR": "menorrhagia",
"PHE/TPHOR/KWRA/SKWREU": "menorrhagia",
"PHE/TPHOR/KWRAPBLG": "menorrhagia",
"PHE/TPHEUPB/SKWRAOEU": "meningitis",
"PHE/TPHEUPB": "meninges",
"PHE/TPHEUS": "meniscus",
"PHE/THA": "methalox",
"PHE/THAPL/TP*E/TA": "methamphetamine",
"PHE/THAPL/TP*E": "methamphetamine",
"PHE/THAPL": "meanmethamphetamine",
"PHE/THAPL/TP*ET": "meanmethamphetamine",
"PHE/THO/TKHROPBLG": "methodological",
"PHE/THO": "methodic",
"PHE/THO/TKO/HRO": "methodologies",
"PHE/THO/TKO": "methodologies",
"PHE/THO/TKOL": "methodology",
"PHE/THO/TKEU": "methodical",
"PHE/THOR": "methorphan",
"PHE/THOD/KWREUBG": "methodically",
"PHE/TRO/SEBG": "metrosexual",
"PHE/TRO/PO/HREU": "metropolitan",
"PHE/TRO/PO": "metropolis",
"PHE/TROE/SEBG": "metrosexual",
"PHE/TROE/PO/HREU": "metropolitan",
"PHE/TROE/PO": "metropolitan",
"PHE/TROP": "metropolis",
"PHE/TRE": "metronome",
"PHE/TREU": "metrical",
"PHE/TA/STA": "metastatic",
"PHE/TA/STAEU": "metastasis",
"PHE/TA/SO*": "metazoline",
"PHE/TA/SO*E": "metazoline",
"PHE/TA/TKA": "metadata",
"PHE/TA/TKAEU": "metadata",
"PHE/TA/TPO*": "metaphoric",
"PHE/TA/TPO*R/TPO*P/SEU": "metamorphopsia",
"PHE/TA/TPO*R/TPO*P": "metamorphopsia",
"PHE/TA/TP*EU/SEU": "metaphysical",
"PHE/TA/TP*EU": "metaphysics",
"PHE/TA/TAR": "metatarsus",
"PHE/TA/KAR": "metacarpals",
"PHE/TA/PWO/TROE": "metabotropic",
"PHE/TA/PWO": "metabolic",
"PHE/TA/PWOE/TROE": "metabotropic",
"PHE/TA/PWOE": "metabolized",
"PHE/TA/PWOL": "metabolically",
"PHE/TA/PHOR/TPO*": "metamorphoses",
"PHE/TA/PHOR": "metamorphic",
"PHE/TA/PHOR/TPO*E": "metamorphoses",
"PHE/TA/PHOR/TPO*PS": "metamorphopsia",
"PHE/TA/HRUR": "metallurgy",
"PHE/TA/HRURPBLG": "metallurgical",
"PHE/TAB": "metabolisms",
"PHE/TAS/TA": "metastasize",
"PHE/TAS": "metastasize",
"PHE/TAZ": "metazoline",
"PHE/TOE": "metopic",
"PHE/TEU": "meticulous",
"PHE/TEU/KAOU": "meticulous",
"PHE/TEUBG": "meticulous",
"PHE/KHREU": "meclizine",
"PHE/KHA": "mechanistic",
"PHE/KHA/TPHEU": "mechanical",
"PHE/KHA/TPHEUS": "mechanistic",
"PHE/KHAPB": "mechanical",
"PHE/KA": "mechanistic",
"PHE/KA/TPHEU": "mechanical",
"PHE/KA/TPHEUS": "mechanistic",
"PHE/KAPB": "mechanical",
"PHE/KOE/TPHEU": "meconium",
"PHE/KOE": "meconium",
"PHE/KOEPB": "meconium",
"PHE/PHO": "memorize",
"PHE/PHOR": "memory",
"PHE/PHOR/KWRA/PWEU/HREU": "memorabilia",
"PHE/PHOR/KWRA/PWEU": "memorabilia",
"PHE/PHOR/KWRA/PWEUL": "memorabilia",
"PHE/PHOR/KWRAPB": "memorandums",
"PHE/PHE": "memetics",
"PHE/PHEPB": "mementos",
"PHE/HRA": "melamine",
"PHE/HRAPB/KHO": "melancholic",
"PHE/HRAPB": "melancholiness",
"PHE/HRAPB/KO": "melancholic",
"PHE/HRAPB/KOL": "melancholiness",
"PHE/HRO/TKRA": "melodrama",
"PHE/HRO": "melodies",
"PHE/HRO/TKRA/PHA/TEU": "melodramatically",
"PHE/HRO/TKRAPL": "melodramatic",
"PHE/HROE/TKRA": "melodrama",
"PHE/HROE/TKRA/PHA/TEU": "melodramatically",
"PHE/HROE/TKRAPL": "melodramatic",
"PHE/HROD/KWREUBG": "melodically",
"PHE/HROD": "melodically",
"PHE/HREU": "mellitus",
"PHE/HREUF": "mellifluous",
"PHEU/SAO*U": "mizuna",
"PHEU/SO/SKWREU": "misogynist",
"PHEU/SO": "misogamist",
"PHEU/SO/TKPWA": "misogamist",
"PHEU/SOPBLG": "misogynist",
"PHEU/SOG": "misogamist",
"PHEU/SE/SKWRE": "miscegenetic",
"PHEU/SE": "miscellaneous",
"PHEU/SE/SKWRE/TPHE": "miscegenetic",
"PHEU/SE/HRAEU": "miscellany",
"PHEU/SE/HRAEUPB": "miscellaneous",
"PHEU/SER": "misery",
"PHEU/SEPBLG": "miscegenetic",
"PHEU/SEPBLG/TPHE": "miscegenetic",
"PHEU/TPHAOU": "minuet",
"PHEU/TPHAOURB": "minutiae",
"PHEU/TPHAR": "minaret",
"PHEU/TPHOR": "minora",
"PHEU/TPHEU/STAOER": "ministerial",
"PHEU/TPHEU/SAOE": "miniseries",
"PHEU/TPHEU/SAOER": "miniseries",
"PHEU/TPHEU/KWRA": "miniatures",
"PHEU/TPHEU/KHUR/KWRAOEUZ": "miniaturization",
"PHEU/TPHEUS": "ministers",
"PHEU/TPHER/KWRA/HRO": "mineralogy",
"PHEU/TPHER/KWRA": "mineralogy",
"PHEU/TPHER": "minerals",
"PHEU/TPHER/KWRAL/KWRAOEUZ": "mineralization",
"PHEU/TPHU": "minuscule",
"PHEU/TPHUS": "minuscule",
"PHEU/THO/HRO": "mythologically",
"PHEU/THO": "mythological",
"PHEU/THO/HRO/SKWREUBG": "mythologically",
"PHEU/THO/HROPBLG": "mythological",
"PHEU/THOE/HRO/SKWREU": "mythological",
"PHEU/THOE/HRO": "mythologically",
"PHEU/THOE": "mythological",
"PHEU/THOE/HRO/SKWREUBG": "mythologically",
"PHEU/THOE/HROPBLG": "mythological",
"PHEU/THOL": "mythology",
"PHEU/THEU": "mythical",
"PHEU/TO": "mitogen",
"PHEU/TOE": "mitogen",
"PHEU/TEU/TKPWA": "mitigative",
"PHEU/TEU": "mitigative",
"PHEU/TEU/TKPWAT": "mitigative",
"PHEU/KWRAS": "miasma",
"PHEU/PHAOE": "mimeo",
"PHEU/PHOE": "mimosa",
"PHEU/PHORD": "primordial",
"PHEU/PHE": "mimetic",
"PHEU/HRE/TPHEU": "millennium",
"PHEU/HRE": "millennium",
"PHEU/HREU/SROEL": "millivoltage",
"PHEU/HREU/SE": "milliseconds",
"PHEU/HREU/TREUS": "militaristic",
"PHEU/HREU/TAEUR": "military",
"PHEU/HREU/TAR": "militaristic",
"PHEU/HREU/TAR/KWREUS": "militaristic",
"PHEU/HREU/TAPB": "militancy",
"PHEU/HREU/KWRAEUR": "miliary",
"PHEU/HREU/KWRO": "millionaires",
"PHEU/HREU/PHAOE": "millimeters",
"PHEU/HREU/PHOE": "millimolar",
"PHEU/HREU/AOE/KWEU/SRA": "milliequivalent",
"PHEU/HREU/AOE/KWEU": "milliequivalent",
"PHEU/HREU/AOE": "milliequivalent",
"PHEU/HREU/AOE/KWEUF": "milliequivalent",
"PHEU/HREU/A*PL": "milliamperage",
"PHEU/HREU/APL": "milliamperage",
"PHEU/HREU/APL/PER": "milliamperage",
"PHEU/HREU/E/KWEU/SRA": "milliequivalent",
"PHEU/HREU/E/KWEU": "milliequivalent",
"PHEU/HREU/E": "milliequivalent",
"PHEU/HREU/E/KWEUF": "milliequivalent",
"PHEU/HREURB": "militia",
"PHEU/HREPB": "millennium",
"PHEU/RABG": "miraculous",
"PHEUFR": "misery",
"PHEUR/KWRA/KAOU": "miraculous",
"PHEUR/KWRABG": "miraculous",
"PHEUR/KWRAL": "mineralization",
"PHEUR/KWREU": "myriad",
"PHEUR/HREU": "mirliton",
"PHEURPBL/KWRAOEUZ": "mineralization",
"PHEURBG": "miracles",
"PHEURT": "myrtle",
"PHEUPB/STAOER": "ministerial",
"PHEUPB/STAOER/KWREU": "ministerial",
"PHEUPB/RAL/KWRAOEUZ": "mineralization",
"PHEUBG/SO/HRO": "mixologist",
"PHEUBG/SO": "mixolydian",
"PHEUBG/SO/HREU/TKEU": "mixolydian",
"PHEUBG/SO/HREU": "mixolydian",
"PHEUBG/SO/HREUD": "mixolydian",
"PHEUBG/SOE/HREU/TKEU": "mixolydian",
"PHEUBG/SOE/HREU": "mixolydian",
"PHEUBG/SOE": "mixolydian",
"PHEUBG/SOE/HREUD": "mixolydian",
"PHEUBGS/HREUD": "mixolydian",
"PHEUL/TREUS": "militaristic",
"PHEUL/TAEUR": "military",
"PHEUL/TAR": "militarist",
"PHEUL/TAPB": "militancy",
"PHEUL/KWRAEUR": "miliary",
"PHEUL/KWRO": "millionaires",
"PHEUL/HRAEU": "milady",
"PHEUL/HRAEUD": "milady",
"PHEUGS/KWRAEUR": "missionary",
"PHEUT/TKPWA": "mitigative",
"PHEUT/TKPWAT": "mitigative",
"PHEUTS": "mitzvah",
"PHEUS/TKPWAOEUD": "misguidedness",
"PHEUS/TKPWAOEUD/-D": "misguidedness",
"PHEUS/TKPHAOE": "misdemeanors",
"PHEUS/TKPHAOEPB": "misdemeanors",
"PHEUS/TKE/PHAOE": "misdemeanors",
"PHEUS/TKE": "misdemeanors",
"PHEUS/TKE/PHAOEPB": "misdemeanors",
"PHEUS/TPHOE": "misnomers",
"PHEUS/TPAOE": "misfeasor",
"PHEUS/TPAUR": "misfortune",
"PHEUS/TPOR": "misfortune",
"PHEUS/TRAOET": "mistreatment",
"PHEUS/TAOER": "mysterious",
"PHEUS/TEU/TPEU": "mystification",
"PHEUS/KHAOEF": "mischievous",
"PHEUS/KHEU": "mischievous",
"PHEUS/KRAR": "mischaracterize",
"PHEUS/KA*LG": "miscalculates",
"PHEUS/KAEUR/KWRABG/TER": "mischaracterize",
"PHEUS/KAEUR/KWRABG": "mischaracterize",
"PHEUS/KAEUR": "miscarried",
"PHEUS/KAEURBG": "mischaracterize",
"PHEUS/KAEURBG/TER": "mischaracterize",
"PHEUS/KARBG": "mischaracterize",
"PHEUS/KARBG/TER": "mischaracterize",
"PHEUS/KAL/KAOU": "miscalculates",
"PHEUS/KAL": "miscalculates",
"PHEUS/KOPB": "misconception",
"PHEUS/KOPBS": "misconstrued",
"PHEUS/PWE/HAEUF": "misbehavior",
"PHEUS/PWE": "misbehavior",
"PHEUS/PHA": "mismanaged",
"PHEUS/PHAPB": "mismanaged",
"PHEUS/PRO": "mispronounce",
"PHEUS/PROE": "mispronounce",
"PHEUS/PROEP": "misappropriation",
"PHEUS/HRAEU": "miscellany",
"PHEUS/HRAEUPB": "miscellaneous",
"PHEUS/HAPBD": "mishandling",
"PHEUS/RE/PRAOE/SEPB": "misrepresentation",
"PHEUS/RE/PRAOE": "misrepresent",
"PHEUS/RE": "misrepresent",
"PHEUS/RE/PRE/SEPB": "misrepresentation",
"PHEUS/RE/PRE": "misrepresent",
"PHEUS/REP/RAOE/SEPB": "misrepresentation",
"PHEUS/REP/RAOE": "misrepresent",
"PHEUS/REP": "misrepresent",
"PHEUS/REP/RE": "misrepresent",
"PHEUS/A/PRAOE": "misapprehend",
"PHEUS/A": "misalignment",
"PHEUS/A/PRO/PREU": "misappropriates",
"PHEUS/A/PRO": "misappropriates",
"PHEUS/A/PROE/PREU": "misappropriates",
"PHEUS/A/PROE": "misappropriates",
"PHEUS/A/PROEP": "misappropriates",
"PHEUS/A/PROEP/REU": "misappropriates",
"PHEUS/A/PRE": "misapprehend",
"PHEUS/A/HRAOEUPB": "misalignment",
"PHEUS/ARP": "misapprehend",
"PHEUS/AP/RAOE": "misapprehend",
"PHEUS/AP": "misapprehend",
"PHEUS/AP/RE": "misapprehend",
"PHEUS/APB/THRO": "misanthropic",
"PHEUS/APB": "misanthropy",
"PHEUS/APB/THROE": "misanthropic",
"PHEUS/APB/THROP": "misanthropy",
"PHEUS/EUPB": "misinterprets",
"PHEUS/EUPB/TER/PRE": "misinterpretation",
"PHEUS/EUPB/TER": "misinterprets",
"PHEUS/EUPBT/PRE": "misinterpretation",
"PHEUS/EUPBT": "misinterprets",
"PHEUS/EUPBT/PRET": "misinterpretation",
"PHEUS/URPBD": "misunderstands",
"PHEUS/UPB/TKER": "misunderstands",
"PHEUS/UPB": "misunderstands",
"PHEUS/-L": "mistletoe",
"PHEUD/SHEUP": "midshipmen",
"PHEUD/SU": "midsummer",
"PHEUD/WAOEUF/*ER": "midwifery",
"PHEUD/WEUPB": "midwinter",
"PHEUD/HRA/TER": "midlateral",
"PHEUD/HRA": "midlateral",
"PHEUD/HRAT": "midlateral",
"PHEF/HRO": "mevalonic",
"PHER": "merriment",
"PHER/SE/TPHAEUR": "mercenary",
"PHER/SE": "mercenary",
"PHER/TOR": "meritorious",
"PHER/TOBG": "meritocracy",
"PHER/TOBG/RA": "meritocracy",
"PHER/KWRO": "meropenem",
"PHER/KWRO/PE": "meropenem",
"PHER/KWRE/TREU": "meretricious",
"PHER/KWRE": "meretricious",
"PHER/KWRE/TREURB": "meretricious",
"PHER/KWREU/TKPW*": "merry-go-round",
"PHER/KWREU/TKEU": "meridian",
"PHER/KWREU/TO/KRA": "meritocracy",
"PHER/KWREU/TO": "meritorious",
"PHER/KWREU/TO/REU": "meritorious",
"PHER/KWREU/TOR": "meritorious",
"PHER/KWREU/TOBG/RA": "meritocracy",
"PHER/KWREU/TOBG": "meritocracy",
"PHER/KWREUD": "meridian",
"PHER/KHAPB": "merchandis",
"PHER/KHAPB/TKAOEUZ": "merchandised",
"PHER/KA/TOR": "mercatoria",
"PHER/KA": "mercatoria",
"PHER/KA/TOR/KWREU": "mercatoria",
"PHER/KAOUR": "mercurial",
"PHER/KAEU": "mercator",
"PHER/KAEUT": "mercator",
"PHER/KAP": "mercapto",
"PHER/KAPB": "mercantile",
"PHER/KUR": "mercury",
"PHER/PE": "meropenem",
"PHERT/SEBG": "metrosexual",
"PHERS": "merciless",
"PHERS/TPUL": "mercifulness",
"PHEPB/SUR": "mensuration",
"PHEPB/TKA/SEU": "mendacity",
"PHEPB/TKA": "mendacity",
"PHEPB/TKAEU": "mendacious",
"PHEPB/TKAS": "mendacity",
"PHEPB/TKEU": "mendicant",
"PHEPB/THO/HRA": "mentholatum",
"PHEPB/THO": "mentholatum",
"PHEPB/THOL/KWRA": "mentholatum",
"PHEPB/TA/HREU": "mentality",
"PHEPB/TA": "mentalis",
"PHEPB/RAPBLG": "menorrhagia",
"PHEPL/PWEUL": "memorabilia",
"PHEPL/RA/PWEUL": "memorabilia",
"PHEPL/RA": "memorabilia",
"PHEPL/RAPB": "memorandums",
"PHEBG/TOE": "hectometers",
"PHEBG/HREU": "meclizine",
"PHEL": "melancholy",
"PHEL/KHO": "melancholy",
"PHEL/KO": "melancholy",
"PHET/STA": "metastatic",
"PHET/STAEU": "metastasis",
"PHET/TPOR": "metformin",
"PHET/TP*EU/SEU": "metaphysical",
"PHET/TP*EU": "metaphysics",
"PHET/KAR": "metacarpals",
"PHET/PWO/TROE": "metabotropic",
"PHET/PWO": "metabotropic",
"PHET/PWOE/TROE": "metabotropic",
"PHET/PWOE": "metabotropic",
"PHET/PHOFR": "metamorphoses",
"PHET/PHOR": "metamorphic",
"PHET/HRUR": "metallurgy",
"PHET/HRURPBLG": "metallurgical",
"PHET/RO/SEBG": "metrosexual",
"PHET/RO/PO/HREU": "metropolitan",
"PHET/RO/PO": "metropolis",
"PHET/RO/POL": "metropolitan",
"PHET/ROE/SEBG": "metrosexual",
"PHET/ROE/PO/HREU": "metropolitan",
"PHET/ROE/PO": "metropolitan",
"PHET/ROE/POL": "metropolitan",
"PHETS/TA": "metastasize",
"PHETS": "metastasize",
"PHES/TEU": "mestiza",
"PHES/KA": "mescaline",
"PHES/PHER": "mesmerism",
"PHED/TAEU": "meditative",
"PHED/KA": "medicament",
"PHEZ": "mezzaluna",
"PHEZ/HRAOU": "mezzaluna",
"PHU/KHA": "muchacho",
"PHU/KAEUR": "muscaric",
"PHU/PHEU": "mummify",
"PHUR": "murmurs",
"PHUR/KWRA": "murano",
"PHUR/KWREU": "murinol",
"PHUPL/PWOE/SKWRUPL": "mumbo-jumbo",
"PHUPL/PWOE": "mumbo-jumbo",
"PHUL/TEU/SKWRAEUGS": "multigenerational",
"PHUL/TEU/SKWRE/TPHER/KWRAEUGS": "multigenerational",
"PHUL/TEU/SKWRE/TPHER": "multigenerational",
"PHUL/TEU/SKWRE": "multigenerational",
"PHUL/TEU/SKWREPB/RAEUGS": "multigenerational",
"PHUL/TEU/SKWREPB": "multigenerational",
"PHUL/TEU/SRAOEU/TA": "multivitamins",
"PHUL/TEU/SRAOEU": "multivitamins",
"PHUL/TEU/SRAOEUT": "multivitamins",
"PHUL/TEU/SRAEU/HREPB": "multivalency",
"PHUL/TEU/SRAEU": "multivalence",
"PHUL/TEU/SRAEUR": "multivarious",
"PHUL/TEU/SREU/SER": "multivisceral",
"PHUL/TEU/SREU": "multivitamins",
"PHUL/TEU/SREU/TA": "multivitamins",
"PHUL/TEU/SREUT": "multivitamins",
"PHUL/TEU/SREUS": "multivisceral",
"PHUL/TEU/SEPB": "multisensory",
"PHUL/TEU/SEPB/SOR": "multisensory",
"PHUL/TEU/SEPBS": "multisensory",
"PHUL/TEU/SEPBS/O*R": "multisensory",
"PHUL/TEU/TK*EU": "multidimension",
"PHUL/TEU/TPHO/TKAOU": "multinodular",
"PHUL/TEU/TPHO": "multinomial",
"PHUL/TEU/TPHO/PHEU": "multinomial",
"PHUL/TEU/TPHOE/PHEU": "multinomial",
"PHUL/TEU/TPHOE": "multinomial",
"PHUL/TEU/TPHOEPL": "multinomial",
"PHUL/TEU/TPHOPL": "multinomial",
"PHUL/TEU/TPHOD": "multinodular",
"PHUL/TEU/TPA/SET": "multifaceted",
"PHUL/TEU/TPA": "multifaceted",
"PHUL/TEU/TPAEUR": "multifarious",
"PHUL/TEU/TPAR": "multifarious",
"PHUL/TEU/TPABG": "multifactorial",
"PHUL/TEU/TPABG/TOR": "multifactorial",
"PHUL/TEU/TPOE": "multifocals",
"PHUL/TEU/TPUPBGS": "multifunctional",
"PHUL/TEU/KHUR": "multicultural",
"PHUL/TEU/KOP": "multicopter",
"PHUL/TEU/KUL/KHUR": "multicultural",
"PHUL/TEU/KUL": "multicultural",
"PHUL/TEU/PHRAEU": "multiplayer",
"PHUL/TEU/PHREU/SEU": "multiplicity",
"PHUL/TEU/PHREU": "multiplication",
"PHUL/TEU/PHREU/KA": "multiplicative",
"PHUL/TEU/PHREUBG": "multiplicative",
"PHUL/TEU/PHREUBGT": "multiplicative",
"PHUL/TEU/PHREUS": "multiplicity",
"PHUL/TEU/PHAOE/TKEU": "multimedia",
"PHUL/TEU/PHAOE": "multimedia",
"PHUL/TEU/PHAOED": "multimedia",
"PHUL/TEU/PHOE": "multimodal",
"PHUL/TEU/PHOED": "multimodal",
"PHUL/TEU/PHEU/HREU/KWRO": "multimillionaire",
"PHUL/TEU/PHEU/HREU": "multimillion",
"PHUL/TEU/PHEU": "multimillion",
"PHUL/TEU/PHEUL": "multimillion",
"PHUL/TEU/PHEUL/KWRO": "multimillionaire",
"PHUL/TEU/PHER": "multimeric",
"PHUL/TEU/PROPBG": "multipronged",
"PHUL/TEU/PAR": "multiparous",
"PHUL/TEU/PO/HREU": "multipolygon",
"PHUL/TEU/PO": "multipolygon",
"PHUL/TEU/PO*L": "multipolygon",
"PHUL/TEU/POE": "multipolar",
"PHUL/TEU/POL": "multipolygon",
"PHUL/TEU/POL/KWREU": "multipolygon",
"PHUL/TEU/PUR": "multipurpose",
"PHUL/TEU/HRA/TER": "multilateral",
"PHUL/TEU/HRA": "multilateral",
"PHUL/TEU/HRAT": "multilateral",
"PHUL/TEU/HRO/KAOU": "multilocular",
"PHUL/TEU/HRO": "multilocular",
"PHUL/TEU/HROE": "multilobar",
"PHUL/TEU/HROEB": "multilobar",
"PHUL/TEU/HROB": "multilobular",
"PHUL/TEU/HRE": "multilevel",
"PHUL/TEU/HREUPBG": "multilingual",
"PHUL/TEU/ABG/SEU": "multiaxial",
"PHUL/TEU/ABG": "multiaxial",
"PHUL/TEU/ABGS": "multiaxial",
"PHUL/PW*ER": "mulberry",
"PHUL/PWER": "mulberry",
"PHULT/SKWRAEUGS": "multigenerational",
"PHULT/SKWRE/TPHER/KWRAEUGS": "multigenerational",
"PHULT/SKWRE/TPHER": "multigenerational",
"PHULT/SKWRE": "multigenerational",
"PHULT/SKWREPB/RAEUGS": "multigenerational",
"PHULT/SKWREPB": "multigenerational",
"PHULT/SRAOEU/TA": "multivitamins",
"PHULT/SRAOEU": "multivitamins",
"PHULT/SRAOEUT": "multivitamins",
"PHULT/SRAEU/HREPB": "multivalency",
"PHULT/SRAEU": "multivalence",
"PHULT/SRAEUR": "multivarious",
"PHULT/SREU/SER": "multivisceral",
"PHULT/SREU": "multivitamins",
"PHULT/SREU/TA": "multivitamins",
"PHULT/SREUT": "multivitamins",
"PHULT/SREUS": "multivisceral",
"PHULT/SEPB": "multisensory",
"PHULT/SEPB/SOR": "multisensory",
"PHULT/SEPBS": "multisensory",
"PHULT/SEPBS/O*R": "multisensory",
"PHULT/TK*EU": "multidimension",
"PHULT/TPHO/TKAOU": "multinodular",
"PHULT/TPHO": "multinomial",
"PHULT/TPHO/PHEU": "multinomial",
"PHULT/TPHOE/PHEU": "multinomial",
"PHULT/TPHOE": "multinomial",
"PHULT/TPHOEPL": "multinomial",
"PHULT/TPHOPL": "multinomial",
"PHULT/TPHOD": "multinodular",
"PHULT/TPA/SET": "multifaceted",
"PHULT/TPA": "multifaceted",
"PHULT/TPAEUR": "multifarious",
"PHULT/TPAR": "multifarious",
"PHULT/TPABG": "multifactorial",
"PHULT/TPABG/TOR": "multifactorial",
"PHULT/TPOE": "multifocals",
"PHULT/KHUR": "multicultural",
"PHULT/KO": "multicolored",
"PHULT/KOP": "multicopter",
"PHULT/KUL/KHUR": "multicultural",
"PHULT/KUL": "multicultural",
"PHULT/PHRAEU": "multiplayer",
"PHULT/PHREU/SEU": "multiplicity",
"PHULT/PHREU": "multiplication",
"PHULT/PHREU/KA": "multiplicative",
"PHULT/PHREUBG": "multiplicative",
"PHULT/PHREUBGT": "multiplicative",
"PHULT/PHREUS": "multiplicity",
"PHULT/PHAOE/TKEU": "multimedia",
"PHULT/PHAOE": "multimedia",
"PHULT/PHAOED": "multimedia",
"PHULT/PHOE": "multimodal",
"PHULT/PHOED": "multimodal",
"PHULT/PHEU/HREU/KWRO": "multimillionaire",
"PHULT/PHEU/HREU": "multimillion",
"PHULT/PHEU": "multimillion",
"PHULT/PHEUL": "multimillion",
"PHULT/PHEUL/KWRO": "multimillionaire",
"PHULT/PHER": "multimeric",
"PHULT/PROPBG": "multipronged",
"PHULT/PAEUR": "multiparous",
"PHULT/PAR": "multipartite",
"PHULT/PO/HREU": "multipolygon",
"PHULT/PO": "multipolygon",
"PHULT/PO*L": "multipolygon",
"PHULT/POE": "multipolar",
"PHULT/POL": "multipolygon",
"PHULT/POL/KWREU": "multipolygon",
"PHULT/PUR": "multipurpose",
"PHULT/HRA/TER": "multilateral",
"PHULT/HRA": "multilateral",
"PHULT/HRAT": "multilateral",
"PHULT/HRO/KAOU": "multilocular",
"PHULT/HRO": "multilocular",
"PHULT/HROE": "multilobar",
"PHULT/HROEB": "multilobar",
"PHULT/HROB": "multilobular",
"PHULT/HRE": "multilevel",
"PHULT/HREUPBG": "multilingual",
"PHULT/ABG/SEU": "multiaxial",
"PHULT/ABG": "multiaxial",
"PHULT/ABGS": "multiaxial",
"PHUG/WUPL": "mugwump",
"PHUS/KA": "muscarine",
"PHUS/KAOU/HRAEUR": "muscularis",
"PHUS/KAOU": "muscular",
"PHUS/KAR": "muscaris",
"PHUS/KAR/KWREU": "muscarinic",
"PHUS/KO": "muscovite",
"PHUS/KE": "musketeer",
"PHUZ": "muzzles",
"PRA": "praline",
"PRAO*EPL": "preemptory",
"PRAO*EPL/TOR": "preemptory",
"PRAO*UFPL": "presumptively",
"PRAO*UPL": "presumptively",
"PRAOE/SKWRUPBLG": "prejudgment",
"PRAOE/SKREUP": "prescriptively",
"PRAOE/SKREUPT": "prescriptively",
"PRAOE/SRAEUR/KAEU": "prevaricator",
"PRAOE/SRAEUR": "prevaricate",
"PRAOE/SRAR/KWREU/KAEU": "prevaricator",
"PRAOE/SRAR/KWREU": "prevaricate",
"PRAOE/SRAR": "prevaricate",
"PRAOE/SREU": "previous",
"PRAOE/SREPB/TA": "preventative",
"PRAOE/SREPB": "preventive",
"PRAOE/SREPB/TA/TOR": "preventatory",
"PRAOE/SAOUPL/-BL": "presumably",
"PRAOE/S*UPL": "presumptively",
"PRAOE/S*UPLT": "presumptuous",
"PRAOE/S*UPLS": "presumptuous",
"PRAOE/SE/TPHEU": "presenilin",
"PRAOE/SE": "presenilin",
"PRAOE/SEU/TKEU": "presidiums",
"PRAOE/SEU": "precipitous",
"PRAOE/SEU/PEU/TAEU": "precipitator",
"PRAOE/SEU/PEU": "precipitous",
"PRAOE/SEUP/TAEU": "precipitator",
"PRAOE/SEUT": "precipitating",
"PRAOE/SEUD": "presidiums",
"PRAOE/SER/SRA": "preservatives",
"PRAOE/SER": "preservatives",
"PRAOE/SEP": "preceptors",
"PRAOE/SEPB": "presenilin",
"PRAOE/SEPT": "preceptors",
"PRAOE/SU/PO": "presupposition",
"PRAOE/SU": "presuppose",
"PRAOE/SU/POE": "presupposition",
"PRAOE/SUP": "presupposition",
"PRAOE/SUPL": "presumptively",
"PRAOE/SUPLT": "presumptuous",
"PRAOE/TKAOE/TER/PHEU": "predetermination",
"PRAOE/TKAOE/TER": "predetermines",
"PRAOE/TKAOE": "predetermination",
"PRAOE/TKAOE/TERPL": "predetermination",
"PRAOE/TKAOEU/TPHAS": "predynastic",
"PRAOE/TKAOEU": "predynastic",
"PRAOE/TKAOEUPB": "predynastic",
"PRAOE/TKAOEUPBS": "predynastic",
"PRAOE/TKO/PHEU": "predominance",
"PRAOE/TKO": "predominance",
"PRAOE/TKOPL": "predominance",
"PRAOE/TKE": "predetermination",
"PRAOE/TKE/SE": "predecessors",
"PRAOE/TKE/TER/PHEU": "predetermination",
"PRAOE/TKE/TER": "predetermines",
"PRAOE/TKE/TERPL": "predetermination",
"PRAOE/TKEU/KA": "predicaments",
"PRAOE/TKEU": "predilection",
"PRAOE/TKEUBG": "predicaments",
"PRAOE/TKEUS/PO": "predisposition",
"PRAOE/TKEUS": "predisposition",
"PRAOE/TKEFT/TPHAEUR": "predestinarians",
"PRAOE/TKEFT": "predestinarians",
"PRAOE/TKES/TEU/TPHAEUR": "predestinarians",
"PRAOE/TKES/TEU": "predestinarians",
"PRAOE/TKES": "predestine",
"PRAOE/TKES/TEU/TPHAEUR/KWREU": "predestinarians",
"PRAOE/TKES/TEU/TPHAR": "predestinarians",
"PRAOE/TPHAEU": "prenatal",
"PRAOE/TPHUPT": "prenuptial",
"PRAOE/TPARB": "prefabricates",
"PRAOE/TPAB/REU": "prefabricates",
"PRAOE/TPOR": "preformatted",
"PRAOE/TER": "pretermit",
"PRAOE/TEPB": "pretentious",
"PRAOE/KAEUR/KWREU": "precarious",
"PRAOE/KAEUR": "precarious",
"PRAOE/KO/SEU": "precocity",
"PRAOE/KO": "precocity",
"PRAOE/KOR/TKEU": "precordia",
"PRAOE/KOR": "precordia",
"PRAOE/KORD": "precordia",
"PRAOE/KOPB": "preconception",
"PRAOE/KOS": "precocity",
"PRAOE/KUR": "precursor",
"PRAOE/PWAOU/PWE": "prepubescent",
"PRAOE/PWAOU": "prepubescent",
"PRAOE/PHA": "prematurely",
"PRAOE/PHAEUR": "premarital",
"PRAOE/PHAR": "premarital",
"PRAOE/PHAR/KWREU": "premarital",
"PRAOE/PHO/TPHEU": "premonitory",
"PRAOE/PHO": "premonition",
"PRAOE/PHO/TPHEU/TOR": "premonitory",
"PRAOE/PHOE": "premolars",
"PRAOE/PHOPB": "premonitory",
"PRAOE/PHOPB/TOR": "premonitory",
"PRAOE/PHE/TKEU": "premeditate",
"PRAOE/PHE": "preeminent",
"PRAOE/PHE/PHEU": "preeminent",
"PRAOE/PHEU": "premiums",
"PRAOE/PRAOE/*EPL/TOR/KWREU": "peremptorily",
"PRAOE/PRAOE/*EPL/TOR": "peremptorily",
"PRAOE/PRAOE/*EPL": "peremptorily",
"PRAOE/PRAOE": "peremptorily",
"PRAOE/PAOU/PWER": "prepubertal",
"PRAOE/PAOU": "prepubertal",
"PRAOE/POPB/TKER": "preponderance",
"PRAOE/POPB": "preponderance",
"PRAOE/POPBD": "preponderance",
"PRAOE/HREU/PHEU/TPHAEUR": "preliminaries",
"PRAOE/HREU/PHEU": "preliminaries",
"PRAOE/HREU": "preliminaries",
"PRAOE/HREUPL/TPHAEUR": "preliminary",
"PRAOE/HEUS": "prehistory",
"PRAOE/HEUS/TOR": "prehistory",
"PRAOE/HEPB": "prehensile",
"PRAOE/RE/KWEU": "prerequisites",
"PRAOE/RE": "prerequisites",
"PRAOE/REBG": "prerequisites",
"PRAOE/REBG/WEU": "prerequisites",
"PRAOE/A": "prearranges",
"PRAOE/APL": "preamble",
"PRAOE/O/PER/KWRA": "preoperatively",
"PRAOE/O/PER": "preoperatively",
"PRAOE/O": "preoperatively",
"PRAOE/OR": "preorder",
"PRAOE/ORP": "preoperatively",
"PRAOE/OP/RA": "preoperatively",
"PRAOE/OP": "preoperatively",
"PRAOE/OBG/KWRAOU": "preoccupation",
"PRAOE/OBG": "preoccupation",
"PRAOE/*EPL": "preemptor",
"PRAOE/*EPLT/REU": "peremptoriness",
"PRAOE/E": "preeminence",
"PRAOE/E/PHEU": "preeminence",
"PRAOE/EPL": "preemptive",
"PRAOEU/SRA": "privateer",
"PRAOEU/KWROR/KWREU": "priorities",
"PRAOEU/PHAOE": "primeval",
"PRAOEU/PHAEUR": "primarily",
"PRAOEU/PHO/SKWRE/TPHEU": "primogeniture",
"PRAOEU/PHO/SKWRE": "primogeniture",
"PRAOEU/PHO": "primogeniture",
"PRAOEU/PHO/SKWREPB": "primogeniture",
"PRAOEU/PHOE/SKWRE/TPHEU": "primogeniture",
"PRAOEU/PHOE/SKWRE": "primogeniture",
"PRAOEU/PHOE": "primogeniture",
"PRAOEU/PHOE/SKWREPB": "primogeniture",
"PRAOEU/PHOR/TKEU": "primordium",
"PRAOEU/PHOR": "primordium",
"PRAOEU/PHORD": "primordium",
"PRAOEUPL/SKWREPB": "primogeniture",
"PRAOEFR/-BL": "preferably",
"PRAOEFPB/TA": "preventative",
"PRAOEFPB": "preventative",
"PRAOEFPB/TA/TOR": "preventatory",
"PRAOEPL": "preamble",
"PRAOEBG": "prequel",
"PRAOES": "priestess",
"PRAOED/SE": "predecessors",
"PRAOU/TKEPB": "prudential",
"PRAOUFPL/-BL": "presumably",
"PRAOUR/KWREU": "pruritic",
"PRA*PBGS": "prankster",
"PRAFT/TPHAEU": "procrastinator",
"PRAFT": "procrastinates",
"PRAP": "periapsis",
"PRAPB": "prandial",
"PRAPB/TKEU": "prandial",
"PRAPBD": "prandial",
"PRAB": "paraboloid",
"PRABG": "practically",
"PRABG/TEU/KA/HREU": "practicality",
"PRABG/TEU/KA": "practicality",
"PRABG/TEU": "practicum",
"PRABG/TEURB": "practitioners",
"PRABG/TEUBG": "practicability",
"PRABG/KEU/KAL": "practically",
"PRABG/KEU": "practically",
"PRAG/PHA": "pragmatic",
"PRAG/PHAT": "pragmatically",
"PRAS/TEU": "plasticize",
"PRAS": "plasticize",
"PRO/STHE": "prosthetics",
"PRO/STA": "prostatic",
"PRO/SKWRAOER": "progeria",
"PRO/SKWRE/TPHEU": "progenitive",
"PRO/SKWRE": "progenitive",
"PRO/SKWREPB": "progenitive",
"PRO/SKWREBG": "projective",
"PRO/SKWRES": "progestin",
"PRO/SPEBG": "prospectus",
"PRO/SHAOU": "prosciutto",
"PRO/SRAOE/TPHAOE": "provenience",
"PRO/SRAOE": "provenience",
"PRO/SRAOEU": "provisos",
"PRO/SRAPB": "provencal",
"PRO/SRO/KA": "provocatively",
"PRO/SRO": "provolone",
"PRO/SROBG": "provocatively",
"PRO/SRE": "provenance",
"PRO/SREU": "providence",
"PRO/SREUPB": "provincial",
"PRO/SAOE": "proscenium",
"PRO/SAOE/TPHEU": "proscenium",
"PRO/SAOEPB": "proscenium",
"PRO/SAEU": "prosaically",
"PRO/SO": "prosody",
"PRO/SE": "proselytize",
"PRO/SE/KAOU": "prosecutor",
"PRO/SE/KAOU/TOR/KWREU": "prosecutorial",
"PRO/SE/HREU": "proselytize",
"PRO/SEU/KWREUBG": "prosaically",
"PRO/SEU": "prosaically",
"PRO/SEL": "proselytize",
"PRO/TKPWRE": "progressives",
"PRO/TKPWAOU": "proguanil",
"PRO/TKROE": "prodromal",
"PRO/TKROEPL": "prodromal",
"PRO/TKAOU": "producer",
"PRO/TKEU": "prodigal",
"PRO/TKEUPBLG": "prodigious",
"PRO/TKUBG": "productivity",
"PRO/TPHREU/TKPWA": "profligacy",
"PRO/TPHREU": "profligacy",
"PRO/TPHREUG": "profligate",
"PRO/TPHAEU": "pronators",
"PRO/TPHUPB/SEU": "pronunciation",
"PRO/TPHUPB": "pronunciation",
"PRO/TPHUPBS": "pronunciation",
"PRO/TPAOUS": "profusely",
"PRO/TPAPB": "profanity",
"PRO/TP*E": "prophetic",
"PRO/TP*ES": "prophecy",
"PRO/TPE": "professor",
"PRO/TPEU/SHEPB": "proficiency",
"PRO/TPEU": "profiterole",
"PRO/TPEU/TER": "profiterole",
"PRO/TPEURB": "proficient",
"PRO/TPEURB/KWREPB": "proficiency",
"PRO/TPUPB": "profundus",
"PRO/TPUPBD": "profundity",
"PRO/TRABG": "protractor",
"PRO/TA": "protamine",
"PRO/TA/TKPWO": "protagonist",
"PRO/TAOE": "protean",
"PRO/TAOU/PWER": "protuberance",
"PRO/TAOU": "protuberance",
"PRO/TAOUB": "protuberance",
"PRO/TAG": "protagonist",
"PRO/TO": "protocols",
"PRO/TEBG": "protective",
"PRO/TES": "protestant",
"PRO/KHREUF": "proclivities",
"PRO/KHAOU": "prosciutto",
"PRO/KRAOE": "procreate",
"PRO/KRAFT/TPHAEU": "procrastinator",
"PRO/KRAFT": "procrastinates",
"PRO/KRAS/TEU/TPHAEU": "procrastinator",
"PRO/KRAS/TEU": "procrastinates",
"PRO/KRAS": "procrastinates",
"PRO/KAEUR/KWRO": "prokaryotic",
"PRO/KAEUR": "prokaryote",
"PRO/PWHRE/PHA": "problematic",
"PRO/PWHRE": "problematic",
"PRO/PWA": "probability",
"PRO/PWA/PWHREUS": "probabilistic",
"PRO/PWA/PWEU/HREU": "probabilities",
"PRO/PWA/PWEU": "probabilistic",
"PRO/PWA/PWEU/HREUS": "probabilistic",
"PRO/PWAOEU/KWRO": "probiotics",
"PRO/PWAOEU": "probiotics",
"PRO/PWAEU": "probative",
"PRO/PWAB": "probabilist",
"PRO/PHAOUL": "promulgate",
"PRO/PHE": "promenades",
"PRO/PHEU": "prominence",
"PRO/PHEUS/KAOU": "promiscuous",
"PRO/PHEUS/KAOU/WEU": "promiscuity",
"PRO/PHUL": "promulgate",
"PRO/PRAOEU": "propriety",
"PRO/PRAOEU/TAEUR": "proprietary",
"PRO/PRAOEU/KWRE": "propriety",
"PRO/PRAOEU/KWRE/TAEUR": "proprietary",
"PRO/PRAOEUR": "propriortor",
"PRO/PA/TKPWAEU": "propagator",
"PRO/PA": "propagandistic",
"PRO/PA/TKPWAPB": "propagandistic",
"PRO/PA/TKPWAPB/TKEUS": "propagandistic",
"PRO/POE": "proponents",
"PRO/PE": "propellant",
"PRO/PEURB": "propitiate",
"PRO/PEPB/SEU": "propensity",
"PRO/PEPB": "propensity",
"PRO/PEPBS": "propensity",
"PRO/HRABG": "prolactin",
"PRO/HROPB": "prolongate",
"PRO/HRE/TAEUR": "proletariat",
"PRO/HRE": "proletariat",
"PRO/HREU": "proliferate",
"PRO/HREU/TPER/KWRA": "proliferatively",
"PRO/HREU/TPER": "proliferate",
"PRO/HREU/TPER/KWRAEU": "proliferatively",
"PRO/HREUF/RA": "prolivatively",
"PRO/HREUF": "proliferate",
"PRO/HREUFR": "proliferatively",
"PRO/HEU/PWEU": "prohibitum",
"PRO/HEU": "prohibits",
"PRO/HEUB": "prohibitum",
"PRO/ABG": "proactively",
"PRO/ABGT": "proactively",
"PRO*B/KWRAT": "problematical",
"PROE/STA": "prostatic",
"PROE/SKWRAOER": "progeria",
"PROE/SKWRE/TPHEU": "progenitive",
"PROE/SKWRE": "progenitive",
"PROE/SKWREPB": "progenitive",
"PROE/SKWREBG": "projective",
"PROE/SKWRES": "progestin",
"PROE/SPEBG": "prospective",
"PROE/SHAOU": "prosciutto",
"PROE/SRO/KA": "provocateur",
"PROE/SRO": "provocateur",
"PROE/SROE": "provolone",
"PROE/SROBG": "provocateur",
"PROE/SREUPB": "provincial",
"PROE/SRER/PWEU": "proverbial",
"PROE/SRER": "proverbial",
"PROE/SAOE": "proscenium",
"PROE/SAOE/TPHEU": "proscenium",
"PROE/SAOEPB": "proscenium",
"PROE/SAEU": "prosaically",
"PROE/SE": "prosecco",
"PROE/TKPWRE": "progressives",
"PROE/TKPWAOU": "proguanil",
"PROE/TKROE": "prodromal",
"PROE/TKROEPL": "prodromal",
"PROE/TKAOU": "producer",
"PROE/TKEUPBLG": "prodigious",
"PROE/TKUBG": "productivity",
"PROE/TPHAEU": "pronators",
"PROE/TPHUPB/SEU": "pronunciation",
"PROE/TPHUPB": "pronunciation",
"PROE/TPHUPBS": "pronunciation",
"PROE/TPAPB": "profanity",
"PROE/TPE": "professor",
"PROE/TPEU/SHEPB": "proficiency",
"PROE/TPEU": "profiterole",
"PROE/TPEU/TER": "profiterole",
"PROE/TPEUFT": "profiterole",
"PROE/TPEURB": "proficient",
"PROE/TPEURB/KWREPB": "proficiency",
"PROE/TPUPB": "profundus",
"PROE/TPUPBD": "profundity",
"PROE/TRABG": "protractor",
"PROE/TA/TKPWO": "protagonist",
"PROE/TA": "protamine",
"PROE/TAOE": "protean",
"PROE/TAOU/PWER": "protuberance",
"PROE/TAOU": "protuberance",
"PROE/TAOUB": "protuberance",
"PROE/TAG": "protagonist",
"PROE/TO": "protocols",
"PROE/TOE/SO*E": "protozoa",
"PROE/TOE/TEU/PEU": "prototypical",
"PROE/TOE/TEU": "prototypically",
"PROE/TOE/TEU/PEUBG": "prototypically",
"PROE/TOE/TEUP": "prototypical",
"PROE/TOE/PHRAS": "protoplasmic",
"PROE/TE": "proteger",
"PROE/TEBG": "protective",
"PROE/KHREUF": "proclivities",
"PROE/KHAOU": "prosciutto",
"PROE/KRAOE": "procreate",
"PROE/KRAFT/TPHAEU": "procrastinator",
"PROE/KRAFT": "procrastinates",
"PROE/KRAS/TEU/TPHAEU": "procrastinator",
"PROE/KRAS/TEU": "procrastinates",
"PROE/KRAS": "procrastinates",
"PROE/KAEUR/KWRO": "prokaryotic",
"PROE/KAEUR": "prokaryote",
"PROE/PWA": "probative",
"PROE/PWAOEU/KWRO": "probiotics",
"PROE/PWAOEU": "probiotics",
"PROE/PWAEU": "probative",
"PROE/PRAOEU": "propriety",
"PROE/PRAOEU/TAEUR": "proprietary",
"PROE/PRAOEU/KWRE": "propriety",
"PROE/PRAOEU/KWRE/TAEUR": "proprietary",
"PROE/PRAOEUR": "propriortor",
"PROE/POE": "proponents",
"PROE/PE": "propellant",
"PROE/PEU/SHEU": "propitiate",
"PROE/PEU": "propitiate",
"PROE/PEURB": "propitiate",
"PROE/PEPB/SEU": "propensity",
"PROE/PEPB": "propensity",
"PROE/PEPBS": "propensity",
"PROE/HRABG": "prolactin",
"PROE/HROPB": "prolongate",
"PROE/HREU": "proliferate",
"PROE/HREU/TPER/KWRA": "proliferatively",
"PROE/HREU/TPER": "proliferate",
"PROE/HREU/TPER/KWRAEU": "proliferatively",
"PROE/HREUF/RA": "prolivatively",
"PROE/HREUF": "proliferate",
"PROE/HREUFR": "prolivatively",
"PROE/HEU/PWEU": "prohibitum",
"PROE/HEU": "prohibits",
"PROE/HEUB": "prohibitum",
"PROE/ABG": "proactively",
"PROE/ABGT": "proactively",
"PROEF": "provolone",
"PROER": "prorogue",
"PROERP": "proprius",
"PROEL/TAEUR": "proletariat",
"PROEG/RE": "progressives",
"PROET/SO*E": "protozoa",
"PROET/TEU/PEU": "prototypical",
"PROET/TEU": "prototypically",
"PROET/TEU/PEUBG": "prototypically",
"PROET/TEUP": "prototypical",
"PROES/THAOE": "prosthesis",
"PROF/HREU/TKPWA": "profligacy",
"PROF/HREU": "profligate",
"PROF/HREUG": "profligate",
"PROFS": "prophecy",
"PROR": "prorogue",
"PROP/TKPWAEU": "propagator",
"PROP/TKPWAPB": "propagandistic",
"PROP/TKPWAPB/TKEUS": "propagandistic",
"PROP/TO": "proptotic",
"PROP/TOE": "proptosis",
"PROPB/TO": "prontosil",
"PROPB": "pronto",
"PROB/PWHREUS": "probabilistic",
"PROB/HRE/PHA": "problematic",
"PROB/HRE": "problematical",
"PROB/HRE/PHA/TEU": "problematical",
"PROB/HRE/PHAT": "problematical",
"PROB/HREUS": "probabilistic",
"PROB/HREPL/KWRA/TEUBG": "problematical",
"PROB/HREPL/KWRA": "problematical",
"PROB/HREPL/KWRAT": "problematical",
"PROBL/-BL": "probably",
"PROBG": "proclamation",
"PROBG/SEU/PHEU": "proximity",
"PROBG/SEUPL": "proximity",
"PROBG/TO/HRO": "proctologist",
"PROBG/TO": "proctologist",
"PROBG/TOL": "proctologist",
"PROBG/HRA": "proclamation",
"PROBGT": "proctor",
"PROL/TAEUR": "proletarian",
"PROL": "proletarian",
"PROG/TPHA": "prognathic",
"PROG/TPHOE": "prognosis",
"PROG/TPHOFT/KAEU": "prognosticator",
"PROG/TPHOFT": "prognosticate",
"PROG/TPHOS/TEU/KAEU": "prognosticator",
"PROG/TPHOS/TEU": "prognosticate",
"PROG/TPHOS": "prognostic",
"PROG/RE": "progressives",
"PROT": "protamine",
"PROTS": "protestant",
"PROS/THAOE": "prosthesis",
"PROS/THE": "prosthetics",
"PROS/TEU": "prostituted",
"PROS/KAOU": "prosecutor",
"PROS/KAOU/TOR/KWREU": "prosecutorial",
"PROS/PEBG": "prospectus",
"PROS/HREU": "proselytize",
"PR*EPBT": "parenthesis",
"PR*EPL": "preemptory",
"PR*EPL/TOR": "preemptory",
"PR*UPL": "presumptively",
"PRE/SKWRAOU": "prejudices",
"PRE/SKWRU": "prejudice",
"PRE/SKWRUPBLG": "prejudgment",
"PRE/SKREUP": "prescriptively",
"PRE/SKREUPT": "prescriptively",
"PRE/SRA": "prevalence",
"PRE/SRAEUR/KWREU/KAEU": "prevaricator",
"PRE/SRAEUR/KWREU": "prevaricate",
"PRE/SRAEUR": "prevaricate",
"PRE/SRAEUR/KAEU": "prevaricator",
"PRE/SREPB/TA": "preventative",
"PRE/SREPB": "preventive",
"PRE/SREPB/TA/TOR": "preventatory",
"PRE/S*EU": "president",
"PRE/S*UPL": "presumptively",
"PRE/S*UPLT": "presumptuous",
"PRE/SE/TKEPB": "precedential",
"PRE/SE": "presenilin",
"PRE/SE/TPHEU": "presenilin",
"PRE/SEU/TKEU": "presidiums",
"PRE/SEU": "precipice",
"PRE/SEU/TKEPB": "presidential",
"PRE/SEU/TKEPBS": "presidency",
"PRE/SEU/PEU/TAEU": "precipitator",
"PRE/SEU/PEU": "precipitous",
"PRE/SEUP/TAEU": "precipitator",
"PRE/SEUD": "presidiums",
"PRE/SER/SRA": "preservatives",
"PRE/SER": "preservation",
"PRE/SEP": "preceptors",
"PRE/SEPB": "presenilin",
"PRE/SEPB/TEU": "presentiment",
"PRE/SU/PO": "presupposition",
"PRE/SU": "presuppose",
"PRE/SU/POE": "presupposition",
"PRE/SUP": "presupposition",
"PRE/SUPL": "presumptively",
"PRE/SUPLT": "presumptuous",
"PRE/TKA": "predators",
"PRE/TKAOE/TER/PHEU": "predetermination",
"PRE/TKAOE/TER": "predetermines",
"PRE/TKAOE": "predetermination",
"PRE/TKAOE/TERPL": "predetermination",
"PRE/TKAOEU/TPHAS": "predynastic",
"PRE/TKAOEU": "predynastic",
"PRE/TKAOEUPB": "predynastic",
"PRE/TKAOEUPBS": "predynastic",
"PRE/TKO/PHEU": "predominance",
"PRE/TKO": "predominance",
"PRE/TKOPL": "predominance",
"PRE/TKE": "predetermination",
"PRE/TKE/SE": "predecessors",
"PRE/TKE/TER/PHEU": "predetermination",
"PRE/TKE/TER": "predetermines",
"PRE/TKE/TERPL": "predetermination",
"PRE/TKEU/KA": "predicaments",
"PRE/TKEU": "predilection",
"PRE/TKEUBG": "predicaments",
"PRE/TKEUS/POE": "predisposition",
"PRE/TKEUS": "predisposition",
"PRE/TKEFT/TPHAEUR": "predestinarians",
"PRE/TKEFT": "predestinarians",
"PRE/TKES/TEU/TPHAEUR": "predestinarians",
"PRE/TKES/TEU": "predestinarians",
"PRE/TKES": "predestine",
"PRE/TKES/TEU/TPHAEUR/KWREU": "predestinarians",
"PRE/TKES/TEU/TPHAR": "predestinarians",
"PRE/TPHAOUPT": "prenuptial",
"PRE/TPHAEU": "prenatal",
"PRE/TPHEU": "perennial",
"PRE/TPREPB": "preferential",
"PRE/TPA": "prefatory",
"PRE/TPA/TOR": "prefatory",
"PRE/TPARB": "prefabricates",
"PRE/TPAB/REU": "prefabricates",
"PRE/TPOR": "preformatted",
"PRE/TPER/KWREPB": "preferential",
"PRE/TPEPB": "prefential",
"PRE/TER": "pretermit",
"PRE/TEPB": "pretentious",
"PRE/TEBG": "pretectal",
"PRE/KA": "precatory",
"PRE/KA/TOR": "precatory",
"PRE/KAEUR/KWREU": "precarious",
"PRE/KAEUR": "precarious",
"PRE/KAUGS/KWRAEUR": "precautionary",
"PRE/KO/SEU": "precocity",
"PRE/KO": "precocity",
"PRE/KOE": "precocious",
"PRE/KOR/TKEU": "precordia",
"PRE/KOR": "precordia",
"PRE/KORD": "precordia",
"PRE/KOPB": "preconception",
"PRE/KOPB/SEPGS": "preconception",
"PRE/KOG": "precognition",
"PRE/KOS": "precocity",
"PRE/KUR": "precursor",
"PRE/PWAOU": "prepubescent",
"PRE/PHA": "prematurely",
"PRE/PHAEUR": "premarin",
"PRE/PHAEUR/KWREU": "premarital",
"PRE/PHAR": "premarital",
"PRE/PHO/TPHEU": "premonitory",
"PRE/PHO": "premonition",
"PRE/PHO/TPHEU/TOR": "premonitory",
"PRE/PHOE": "premolars",
"PRE/PHOPB": "premonitory",
"PRE/PHOPB/TOR": "premonitory",
"PRE/PHE/TKEU": "premeditate",
"PRE/PHE": "premeditate",
"PRE/PHEU": "premium",
"PRE/PA": "preparatory",
"PRE/PA/TOR": "preparatory",
"PRE/PAOU/PWE": "prepubescent",
"PRE/PAOU": "prepubertal",
"PRE/PAOU/PWER": "prepubertal",
"PRE/PAR": "preparation",
"PRE/PO": "preposition",
"PRE/POE": "preposition",
"PRE/POFT": "preposterous",
"PRE/POPB/TKER": "preponderance",
"PRE/POPB": "preponderance",
"PRE/POPBD": "preponderance",
"PRE/POS": "preposterous",
"PRE/POS/KHER": "preposterous",
"PRE/HREU/PHEU/TPHAEUR": "preliminaries",
"PRE/HREU/PHEU": "preliminaries",
"PRE/HREU": "preliminaries",
"PRE/HREUPL/TPHAEUR": "preliminary",
"PRE/HEUS": "prehistory",
"PRE/HEUS/TOR": "prehistory",
"PRE/HEPB": "prehensile",
"PRE/RO/TKPWA": "prerogatives",
"PRE/RO": "prerogatives",
"PRE/ROG": "prerogatives",
"PRE/RE/KWEU": "prerequisites",
"PRE/RE": "prerequisites",
"PRE/REBG": "prerequisites",
"PRE/REBG/WEU": "prerequisites",
"PRE/A": "prearranges",
"PRE/APL": "preamble",
"PRE/O/PER/KWRA": "preoperatively",
"PRE/O/PER": "preoperatively",
"PRE/O": "preoperatively",
"PRE/OR": "preorder",
"PRE/ORP": "preoperatively",
"PRE/OP/RA": "preoperatively",
"PRE/OP": "preoperatively",
"PRE/OBG/KWRAOU": "preoccupation",
"PRE/OBG": "preoccupation",
"PRE/*EPL": "preemptor",
"PRE/*EPLT/REU": "peremptoriness",
"PRE/E": "preeminence",
"PRE/E/PHEU": "preeminence",
"PRE/EPL": "preemptive",
"PREU": "primitively",
"PREU/TKE": "pridella",
"PREU/PHOR/TKEU": "primordium",
"PREU/PHOR": "primordium",
"PREU/PHORD": "primordium",
"PREU/PHEU/TEU": "primitivism",
"PREU/PHEU": "primitively",
"PREUF": "peripheral",
"PREUFR": "periphery",
"PREURB": "propitiate",
"PREUPB/SEU": "principles",
"PREUPB": "princess",
"PREUPB/SEUP": "principle",
"PREUPBG": "pringles",
"PREUB": "prohibitively",
"PREUS": "prismatic",
"PREUS/PHA": "prismatic",
"PREF/TOR": "prefatory",
"PREFR/KWREPB": "preferential",
"PREFRPB": "preferential",
"PRER/KWRO/TKPWA": "prerogatives",
"PRER/KWRO": "prerogatives",
"PRER": "prerogatives",
"PRER/KWROG": "prerogatives",
"PRERTD/TOR": "predatory",
"PREP/TOR": "preparatory",
"PREPB/THET": "parenthetical",
"PREPL": "premarin",
"PREPL/TOR": "preemptory",
"PREBG": "prequel",
"PREG/TPHAPB": "pregnancies",
"PREG/TPHAPBS": "pregnancies",
"PRES/TKEPB": "precedential",
"PRED/SE": "predecessors",
"PRED": "predilection",
"PREZ/TKEPB": "presidential",
"PRUR/KWREU": "pruritic",
"PRUR": "pruritic",
"PRUPL": "presumptively",
"PA/SKWRA": "pajamas",
"PA/SKWRE": "pagetoid",
"PA/SREU/HREU": "pavilion",
"PA/SREU": "pavilion",
"PA/SREUL": "pavilion",
"PA/SEU": "pacifist",
"PA/SEU/SREU": "passivity",
"PA/SEU/TPEU": "pacification",
"PA/SEPB": "passengers",
"PA/TKPWOE": "pagoda",
"PA/TKA/TKPWO": "pedagogic",
"PA/TKA": "pedagogic",
"PA/TPHA/SAOE": "panacea",
"PA/TPHA": "panacea",
"PA/TPHO/THAOE": "panothenic",
"PA/TPHO": "panothenic",
"PA/TPHOR/KWRA": "panoramic",
"PA/TPHOR": "panoramic",
"PA/TPHOR/KWRAPL": "panoramic",
"PA/TPHOP/TEU": "panopticon",
"PA/TPHOP": "panoply",
"PA/TPH*ET": "panethnic",
"PA/TPHE": "pannecotta",
"PA/TPHE/KO": "pannecotta",
"PA/TPHEU": "panicle",
"PA/THO/HRO": "pathologies",
"PA/THO/HROPBLG": "pathological",
"PA/THOE/HRO/SKWREU": "pathological",
"PA/THOE/HRO": "pathologic",
"PA/THOE/HROPBLG": "pathological",
"PA/THOL": "pathologist",
"PA/THE": "pathetic",
"PA/TRO": "patronus",
"PA/TRO*PB": "patronness",
"PA/TROE": "patronus",
"PA/TREU": "patrimonial",
"PA/TREU/PHOE/TPHEU": "patrimonial",
"PA/TREU/PHOE": "patrimonial",
"PA/TAO": "patootie",
"PA/TAOT": "patootie",
"PA/TAPBT": "patently",
"PA/T*ERPBL": "paternalist",
"PA/TE": "patellar",
"PA/TEU/SER": "patisserie",
"PA/TEU": "patios",
"PA/TEUS": "patisserie",
"PA/TER/TPHEU": "paternity",
"PA/TEPB": "patency",
"PA/TEPBS": "patency",
"PA/KHAOU": "patchouli",
"PA/KHEUPB": "pachinko",
"PA/KHEUPBG": "pachinko",
"PA/KAPBLG": "packaging",
"PA/KEU": "pakistan",
"PA/KEUS": "pakistan",
"PA/PREU": "paprika",
"PA/PAOEU": "papyrus",
"PA/PAOU": "papular",
"PA/PEU": "papillar",
"PA/PEU/HRAEUR": "papillary",
"PA/HRA": "palapa",
"PA/HRA/TEU": "palatini",
"PA/HRAOEU/HRA/HREU": "palilalia",
"PA/HRAOEU/HRA": "palilalia",
"PA/HRAOEU": "palilalia",
"PA/HRAOEUL": "palilalia",
"PA/HRAEU": "palatial",
"PA/HRAEU/TKEU": "palladium",
"PA/HRAEUD": "palladium",
"PA/HRAPB": "palantype",
"PA/HR*EUPL": "palimpsest",
"PA/HREU": "palimony",
"PA/HREU/TKO/TO": "pallidotomy",
"PA/HREU/TKO": "pallidotomy",
"PA/HREU/KWRA": "palliative",
"PA/HREU/KWRAEU": "palliative",
"PA/HREU/KWRAT": "palliative",
"PA/HREU/PHOE": "palimony",
"PA/HREU/PHOEPB": "palimony",
"PA/HREUPB": "palindrome",
"PA/HREPB": "palanca",
"PA/HREPBG": "palanca",
"PA/HRES": "palestra",
"PA/RA/PHE": "parameters",
"PA/RA": "parameters",
"PA/RAOEU": "pariah",
"PA/RAL": "paralysis",
"PA/ROE/KHEU": "parochial",
"PA/ROE": "parolee",
"PA/ROE/KEU": "parochial",
"PA/R*EPBT": "parentheses",
"PA/REPB/THE": "parenthetically",
"PA/REPB": "parentis",
"PA/REPB/THE/TEU": "parenthetical",
"PA/REPB/THE/TEUBG": "parenthetically",
"PA/REPB/THET": "parenthetical",
"PA/REPB/TEU": "parenticide",
"PAOE/SEU": "precipice",
"PAOE/TKO": "pedometer",
"PAOE/TKO/TP*EU/HREU": "pedophilia",
"PAOE/TKO/TP*EU": "pedophilia",
"PAOE/TKO/TP*EUL": "pedophilia",
"PAOE/TKO/PHAOE": "pedometer",
"PAOE/TKO/PHE": "pedometer",
"PAOE/TKOE": "pedophilia",
"PAOE/TKOE/TP*EU/HREU": "pedophilia",
"PAOE/TKOE/TP*EU": "pedophilia",
"PAOE/TKOE/TP*EUL": "pedophilia",
"PAOE/TKOPL": "pedometer",
"PAOE/TKEU/KWRA": "pediatricians",
"PAOE/TKEU": "pediatrics",
"PAOE/TKEU/KWRAT": "pediatrics",
"PAOE/TPHA": "penalize",
"PAOE/TPHO/HRO": "penologist",
"PAOE/TPHO": "penologist",
"PAOE/TPHOL": "penologist",
"PAOE/TPHUPL": "penumbra",
"PAOE/KWRO": "peonies",
"PAOE/KWROE": "piolet",
"PAOEU/SA": "paisano",
"PAOEU/KWRAOUR": "pyuria",
"PAOEU/KWRAEU": "paella",
"PAOEU/KWRO": "pioneered",
"PAOEU/KWROE": "pioneered",
"PAOEU/PER": "piperazine",
"PAOEU/PER/KWRA": "piperazine",
"PAOEU/HROR": "pylorus",
"PAOEU/RA": "piracy",
"PAOEU/RAOU": "pyruvic",
"PAOEU/RAOUF": "pyruvic",
"PAOEU/RO/SKWRE": "pyrogenic",
"PAOEU/RO/TPO*S": "pyrophosphate",
"PAOEU/RO/TEBG": "pyrotechnic",
"PAOEU/RO/KHRAS": "pyroclastic",
"PAOEU/RO/PHAEU/TPHEU": "pyromaniac",
"PAOEU/RO/PHAEU": "pyromaniac",
"PAOEU/RO/PHAEUPB": "pyromaniac",
"PAOEU/ROE/SKWRE": "pyrogenic",
"PAOEU/ROE/TPO*S": "pyrophosphate",
"PAOEU/ROE/TEBG": "pyrotechnic",
"PAOEU/ROE/KHRAS": "pyroclastic",
"PAOEU/ROE/PHAEU/TPHEU": "pyromaniac",
"PAOEU/ROE/PHAEU": "pyromaniac",
"PAOEU/ROE/PHAEUPB": "pyromaniac",
"PAOEU/ROBG": "pyroxene",
"PAOEUR/SKWRE": "pyrogenic",
"PAOEUR/SKWREPB": "pyrogenic",
"PAOEUR/TPO*S": "pyrophosphate",
"PAOEUR/TEBG": "pyrotechnic",
"PAOEUR/KHRAS": "pyroclastic",
"PAOEUR/PHAEU/TPHEU": "pyromaniac",
"PAOEUR/PHAEU": "pyromaniac",
"PAOEUR/PHAEUPB": "pyromaniac",
"PAOEUP/KO": "pipecolic",
"PAOEUPB/A*P": "pineapples",
"PAOEUT": "piety",
"PAOER/TO": "peer-to-peer",
"PAOER/KWRO/TKEU": "periodicals",
"PAOER/KWRO": "periodicity",
"PAOER/KWRO/TKEUS": "periodicity",
"PAOERD/KWREUS": "periodicity",
"PAOEPB/PHEUS": "pianissimo",
"PAOEBG/A*": "peekaboo",
"PAOED/TP*EU/HREU": "pedophilia",
"PAOED/TP*EU": "pedophilia",
"PAOED/TP*EUL": "pedophilia",
"PAOED/KWRAT": "pediatrics",
"PAOU/SKWREU": "pugilistic",
"PAOU/SKWREU/HREUS": "pugilistic",
"PAOU/SKWREPB": "pungency",
"PAOU/SKWREPBS": "pungency",
"PAOU/SEU/HRA/TPHEU": "pusillanimous",
"PAOU/SEU/HRA": "pusillanimous",
"PAOU/SEU": "pusillanimous",
"PAOU/SEU/HRAPB": "pusillanimous",
"PAOU/TKAOEPB": "pudendal",
"PAOU/TKAOEPBD": "pudendal",
"PAOU/TKEU": "pewdiepie",
"PAOU/TKEPB": "pudendum",
"PAOU/TRA/TPABG": "putrefactive",
"PAOU/TRA": "putrefactive",
"PAOU/TRE": "putrefaction",
"PAOU/TRE/TPABG": "putrefactive",
"PAOU/TRE/TPABGT": "putrefactive",
"PAOU/TREU/TPEU": "putrification",
"PAOU/TREU": "putrification",
"PAOU/TA": "putatively",
"PAOU/TAT": "putatively",
"PAOU/PWE": "pubescence",
"PAOU/PWER": "puberty",
"PAOU/PEU/SROR": "pupivorous",
"PAOU/PEU": "pupilometer",
"PAOU/PEU/HRAEUR": "pupillary",
"PAOU/PEU/HRO": "pupilometer",
"PAOU/PEU/HRO/PHE": "pupilometer",
"PAOU/PEU/HRO*": "pupillometer",
"PAOU/PEU/HRO*/PHE": "pupillometer",
"PAOU/PEU/HRO*PL": "pupillometer",
"PAOU/PEU/HROPL": "pupilometer",
"PAOU/WAEUB": "pueblo",
"PAOUR/TPEU": "purification",
"PAOUR/KWREU": "purity",
"PAOUR/KWREU/TPEU": "purification",
"PAOUR/KWRU": "purulence",
"PAOURB": "puberty",
"PAOURT/TPABG": "putrefactive",
"PAOURT/TPABGT": "putrefactive",
"PAOURT/TPEU": "putrification",
"PAOUP/SROR": "pupivorous",
"PAOUP": "pupilometer",
"PAOUP/HRO*PL": "pupillometer",
"PAOUP/HROPL": "pupilometer",
"PAOUPBLG": "pugilistic",
"PAOUPBLG/HREUS": "pugilistic",
"PAOUPL/HRAEUR": "pupillary",
"PAOUL": "poultice",
"PAOUT": "putrid",
"PAOUT/RE": "putrefaction",
"PAOUT/RE/TPABG": "putrefactive",
"PAOUT/RE/TPABGT": "putrefactive",
"PAOUT/REU/TPEU": "putrification",
"PAOUT/REU": "putrification",
"PAOUS/HRAPB": "pusillanimous",
"PAOUS": "pusillanimous",
"PAOUD": "pewdiepie",
"PAOD": "poodles",
"PA*R/STHAOES": "paresthesia",
"PA*R/SHAOU": "parachutist",
"PA*R/SAOE/TA": "paracetamol",
"PA*R/SAOE": "paracetamol",
"PA*R/SAOET": "paracetamol",
"PA*R/SEU": "parasitic",
"PA*R/TKPWHRAOEUD": "paraglider",
"PA*R/TKOBG/SEU": "paradoxical",
"PA*R/TKOBG": "paradoxically",
"PA*R/TKOBG/SEUBG": "paradoxically",
"PA*R/TPHOEU": "paranoiac",
"PA*R/TPHOR": "paranormal",
"PA*R/TPHORPL": "paranormal",
"PA*R/TPAO*E/PHOE": "paraphimosis",
"PA*R/TPAO*E": "paraphimosis",
"PA*R/TPA*EU/SEU": "paraphasia",
"PA*R/TPA*EU": "paraphasia",
"PA*R/TPA*EUS": "paraphasia",
"PA*R/TP*EU/HREU": "paraphilia",
"PA*R/TP*EU": "paraphilia",
"PA*R/TP*EUL": "paraphilia",
"PA*R/TP*ER/TPHAEU/HREU": "paraphernalia",
"PA*R/TP*ER/TPHAEU": "paraphernalia",
"PA*R/TP*ER": "paraphernalia",
"PA*R/TP*ER/TPHAEUL": "paraphernalia",
"PA*R/PWO": "parabolic",
"PA*R/PWOE": "parabola",
"PA*R/PWOL": "parabolically",
"PA*R/PHRAOE/SKWREU": "paraplegia",
"PA*R/PHRAOE": "paraplegic",
"PA*R/PHRAOEPBLG": "paraplegia",
"PA*R/PHAOE/SEU": "paramecium",
"PA*R/PHAOE": "parameter",
"PA*R/PHAOE/TKEU": "paramedian",
"PA*R/PHAOES": "paramecium",
"PA*R/PHAOED": "paramedian",
"PA*R/PHE/TKEU": "paramedical",
"PA*R/PHE": "parameters",
"PA*R/PHED": "paramedical",
"PA*R/PRO/TPEGS": "paraprofessional",
"PA*R/PRO": "paraprofessional",
"PA*R/PROE/TPEBGS": "paraprofessional",
"PA*R/PROE": "paraprofessional",
"PA*R/HRAOE": "paralegals",
"PA*R/HRE/HRO": "parallelogram",
"PA*R/HRE": "parallelogram",
"PA*R/HRE/HROE": "parallelogram",
"PA*R/HREU": "paralytic",
"PA*PBT": "pantheon",
"PA*PBT/THAOE": "pantothenic",
"PA*PBT/KWREUS": "pantheistic",
"PA*T/HRO/SKWREU": "pathological",
"PA*T/HRO": "pathologic",
"PA*T/HROPBLG": "pathological",
"PAEU/SKWREU": "paginate",
"PAEU/SKWREPB": "pageantry",
"PAEU/TKPWA": "paganism",
"PAEU/TRO": "patroness",
"PAEU/TRO*PB": "patronness",
"PAEU/TREU": "patrilineal",
"PAEU/TREU/KWRAR": "patriarchal",
"PAEU/TREU/KWRO": "patriotic",
"PAEU/TREU/HREU/TPHAOE": "patrilineal",
"PAEU/TREU/HREU": "patrilineal",
"PAEU/TREU/HREUPB": "patrilineal",
"PAEU/TEPB": "patency",
"PAEU/TEPBS": "patency",
"PAEU/KWROE": "payola",
"PAEU/PA": "papacy",
"PAEU/PER": "paperwork",
"PAEU/HRAOE/KWROPB/TO/HRO": "paleontologists",
"PAEU/HRAOE/KWROPB/TO": "paleontologists",
"PAEU/HRAOE/KWROPB": "paleontologists",
"PAEU/HRAOE": "paleontologists",
"PAEU/HRAOE/KWROPB/TOL": "paleontologists",
"PAEUR/SEU": "parasitic",
"PAEUR/TKPWHRAOEUD": "paraglider",
"PAEUR/TP*EUL": "paraphilia",
"PAEUR/KWRA/STHAOES": "paresthesia",
"PAEUR/KWRA/SHAOU": "parachutist",
"PAEUR/KWRA/SAOE/TA": "paracetamol",
"PAEUR/KWRA/SAOE": "paracetamol",
"PAEUR/KWRA/SAOET": "paracetamol",
"PAEUR/KWRA/SEU": "parasitic",
"PAEUR/KWRA/TKPWHRAOEUD": "paraglider",
"PAEUR/KWRA/TKOBG/SEU": "paradoxical",
"PAEUR/KWRA/TKOBG": "paradoxically",
"PAEUR/KWRA/TKOBG/SEUBG": "paradoxically",
"PAEUR/KWRA/TPHOEU": "paranoiac",
"PAEUR/KWRA/TPHOR": "paranormal",
"PAEUR/KWRA/TPHORPL": "paranormal",
"PAEUR/KWRA/TPAO*E/PHOE": "paraphimosis",
"PAEUR/KWRA/TPAO*E": "paraphimosis",
"PAEUR/KWRA/TPA*EU/SEU": "paraphasia",
"PAEUR/KWRA/TPA*EU": "paraphasia",
"PAEUR/KWRA/TPA*EUS": "paraphasia",
"PAEUR/KWRA/TP*EU/HREU": "paraphilia",
"PAEUR/KWRA/TP*EU": "paraphilia",
"PAEUR/KWRA/TP*EUL": "paraphilia",
"PAEUR/KWRA/TP*ER/TPHAEU/HREU": "paraphernalia",
"PAEUR/KWRA/TP*ER/TPHAEU": "paraphernalia",
"PAEUR/KWRA/TP*ER": "paraphernalia",
"PAEUR/KWRA/TP*ER/TPHAEUL": "paraphernalia",
"PAEUR/KWRA/PWO": "parabolic",
"PAEUR/KWRA/PWOE": "parabola",
"PAEUR/KWRA/PWOL": "parabolically",
"PAEUR/KWRA/PHRAOE/SKWREU": "paraplegia",
"PAEUR/KWRA/PHRAOE": "paraplegic",
"PAEUR/KWRA/PHAOE/SEU": "paramecium",
"PAEUR/KWRA/PHAOE": "parameter",
"PAEUR/KWRA/PHAOE/TKEU": "paramedian",
"PAEUR/KWRA/PHAOES": "paramecium",
"PAEUR/KWRA/PHAOED": "paramedian",
"PAEUR/KWRA/PHE/TKEU": "paramedical",
"PAEUR/KWRA/PHE": "parameters",
"PAEUR/KWRA/PHED": "paramedical",
"PAEUR/KWRA/PRO/TPEGS": "paraprofessional",
"PAEUR/KWRA/PRO": "paraprofessional",
"PAEUR/KWRA/PROE/TPEBGS": "paraprofessional",
"PAEUR/KWRA/PROE": "paraprofessional",
"PAEUR/KWRA/HRAOE": "paralegals",
"PAEUR/KWRA/HRE/HRO": "parallelogram",
"PAEUR/KWRA/HRE": "parallelogram",
"PAEUR/KWRA/HRE/HROE": "parallelogram",
"PAEUR/KWRA/HREU": "paralytic",
"PAEUR/KWRAOE": "paresis",
"PAEUR/KWRABG/SEU": "paraxial",
"PAEUR/KWRABG": "paraxial",
"PAEUR/KWRABGS": "paraxial",
"PAEUR/KWRAL": "paralyses",
"PAEUR/KWRAS/THAOES": "paresthesia",
"PAEUR/KWRAS": "paresthesia",
"PAEUR/KWRO": "parodying",
"PAEUR/KWROE": "parodying",
"PAEUR/KWREPB/THE": "parenthetically",
"PAEUR/KWREPB/THE/TEU": "parenthetical",
"PAEUR/KWREPB/THE/TEUBG": "parenthetically",
"PAEUR/KWREPB/THET": "parenthetical",
"PAEUR/KWREPB/TEU": "parenticide",
"PAEURB": "patience",
"PAEURT/KWRO": "patriotic",
"PAEURT/HREU/TPHEU": "patrilineal",
"PAEURT/HREU": "patrilineal",
"PAEURT/HREUPB": "patrilineal",
"PAEUP": "papacy",
"PAEUPBLG/KWREPB": "pageantry",
"PAEUPBS": "painstaking",
"PAEUL/KWRO/HR*EUT": "paleolithic",
"PAEUL/KWRO/HREU": "paleolithic",
"PAEUL/KWROE/HR*EUT": "paleolithic",
"PAEUL/KWROE/HREU": "paleolithic",
"PAEUL/KWROPB/TO/HRO": "paleontologists",
"PAEUL/KWROPB/TO": "paleontologists",
"PAEUL/KWROPB": "paleontologists",
"PAEUL/KWROPB/TOL": "paleontologists",
"PAEUT/RAR": "patriarchal",
"PAEUT/REU": "patrilineal",
"PAEUT/REU/KWRAR": "patriarchal",
"PAEUT/REU/HREU/TPHAOE": "patrilineal",
"PAEUT/REU/HREU": "patrilineal",
"PAEUT/REU/HREUPB": "patrilineal",
"PAU/SEU": "paucity",
"PAU/HA": "puahala",
"PAUP": "pauperis",
"PAUPLS": "palmistry",
"PAUL/PHAEUR": "palmaris",
"PAUL/PHE": "palmetic",
"PAUL/PHEU": "palmitate",
"PAUL/PHEUFT": "palmistry",
"PAUL/PHEUS": "palmistry",
"PAFRB": "parvenu",
"PAFPL/HRE": "pamphleteer",
"PAFPL": "pamphlets",
"PAFT/KWRAEUR": "pastiera",
"PAFT/RA": "pastrami",
"PAFT/RE": "pasteurella",
"PAR/SRE": "parvenu",
"PAR/SO": "parsonage",
"PAR/SE": "parcener",
"PAR/SEU": "parsimony",
"PAR/TEU/SEU/PA": "participative",
"PAR/TEU/SEU": "participles",
"PAR/TEU/SEU/PA/TOR": "participatory",
"PAR/TEU/SEU/PAEU": "participative",
"PAR/TEU/SEU/PAT": "participative",
"PAR/TEU/SEU/PEU": "participial",
"PAR/TEU/SEUP": "participles",
"PAR/TEU/KAOU/HRAEUR": "particularity",
"PAR/TEU/KAOU": "particulate",
"PAR/TEU/KAOU/HRAEUR/KWREU": "particularity",
"PAR/TEUFP": "participles",
"PAR/TEUBG/HRAEUR": "particularly",
"PAR/TEUBG": "particles",
"PAR/TEUS/PA": "participative",
"PAR/TEUS": "participles",
"PAR/TEUS/PA/TOR": "participatory",
"PAR/TEUS/PAEU": "participative",
"PAR/TEUS/PAT": "participative",
"PAR/KWROE": "parolee",
"PAR/PHE": "parmesan",
"PAR/HRA/PHEPB/TAEUR": "parliamentary",
"PAR/HRA/PHEPB": "parliamentarian",
"PAR/HRA": "parliamentarian",
"PAR/HREU/PHEPB/TAEUR": "parliamentary",
"PAR/HREU/PHEPB": "parliamentarian",
"PAR/HREU": "parliamentarian",
"PARB/PHEU": "pashmina",
"PARB": "pashmina",
"PARL/PHEPB/TAEUR": "parliamentary",
"PARL/PHEPB": "parliamentarian",
"PART/PAEU": "participator",
"PART/HREUPB": "patrilineal",
"PARTS/PA": "participative",
"PARTS/PA/TOR": "participatory",
"PARTS/PAEU": "participative",
"PARTS/PAT": "participative",
"PARTS/PEU": "participial",
"PAP/HRAEUR": "papillary",
"PAP/REU": "paprika",
"PAPB/SAOE": "panacea",
"PAPB/SA*/TPHE": "panzanella",
"PAPB/SA*": "panzanella",
"PAPB/TKE/PHOE/TPHEU": "pandemonium",
"PAPB/TKE/PHOE": "pandemonium",
"PAPB/TKE": "pandemic",
"PAPB/TKE/PHOEPB": "pandemonium",
"PAPB/TKEPL": "pandemic",
"PAPB/THAOE": "pantheistic",
"PAPB/THAOE/KWREUS": "pantheistic",
"PAPB/THE": "pantheistic",
"PAPB/THE/KWREUS": "pantheistic",
"PAPB/TO/SKO": "pantoscopic",
"PAPB/TO": "pantomime",
"PAPB/TO/THAOE": "pantothenic",
"PAPB/TO/KRA": "pantocrator",
"PAPB/TOE/THAOE": "pantothenic",
"PAPB/TOE/ROUT": "pantorouter",
"PAPB/TORBG": "pantocrator",
"PAPB/KHE": "pancetta",
"PAPB/KRAOE": "pancreas",
"PAPB/KRAOE/KWRA/TAOEU": "pancreatitis",
"PAPB/KRAOE/KWRA": "pancreatic",
"PAPB/KO": "pannecotta",
"PAPB/WAEU": "panuelo",
"PAPB/WAL": "manually",
"PAPB/HE/HRE": "panhellenic",
"PAPB/HE": "panhellenic",
"PAPB/RA": "panoramic",
"PAPBT/SKO": "pantoscopic",
"PAPBT/PRA": "pantoprazole",
"PAPBT/PRO": "pantoprazole",
"PAPBS": "pansy",
"PAPBD/PHOEPB": "pandemonium",
"PAPBD": "panderer",
"PAPBZ/TPHE": "panzanella",
"PAPL/*F/HRE": "pamphleteer",
"PAPL/*F": "pamphlets",
"PAL/TKO/TO": "pallidotomy",
"PAL/TKO": "pallidotomy",
"PAL/TREU": "paltriness",
"PAL/KWRA": "palliative",
"PAL/PHAEUR": "palmaris",
"PAL/PHOE": "palimony",
"PAL/PHE": "palmetic",
"PAL/PHEU": "palmitate",
"PAL/PHEUFT": "palmistry",
"PAL/PHEUS": "palmistry",
"PAL/PA": "palpable",
"PAL/PA/TOR": "palpatory",
"PAL/PAOE": "palpebra",
"PAL/PAOEB": "palpebra",
"PAL/PE": "palpebrum",
"PAL/PEU": "palpitate",
"PALS": "palsy",
"PAT/REU": "patrimonial",
"PAT/REU/PHOE/TPHEU": "patrimonial",
"PAT/REU/PHOE": "patrimonial",
"PAS/SREU": "passivization",
"PAS/TPEU": "pacification",
"PAS/TRA": "pastrami",
"PAS/TEU": "pastillage",
"PAS/KHAOUR/KWRE": "pasteurella",
"PAS/KHAOUR": "pasteurella",
"PAS/KHUR/KWRE": "pasteurella",
"PO/SREU": "povidone",
"PO": "population",
"PO/SE": "possessiveness",
"PO/SEU/TRO": "positronic",
"PO/SEU": "possibilities",
"PO/SEU/TEU": "positivism",
"PO/SEU/PWEUL": "possibilities",
"PO/SEUB": "possibly",
"PO/TKO": "podocyte",
"PO/TAEU": "potatoes",
"PO/TEPB/SHEU": "potentiality",
"PO/TEPB": "potentials",
"PO/TEPBS": "potentiation",
"PO/PHE/TKPWRA": "pomegranate",
"PO/PHE": "pomelo",
"PO/PAOU": "populous",
"PO/PAOU/HRAEUR": "popularity",
"PO/PAOU/HRAEUR/KWREU": "popularity",
"PO/HRAOU": "pollutants",
"PO/HRAR": "polarize",
"PO/HRE/PHEU": "polemical",
"PO/HRE": "polemic",
"PO/HREU/SKWRE": "polygenic",
"PO/HREU/SHRA": "polysyllabic",
"PO/HREU/SAEU": "policymakers",
"PO/HREU/SEU/HRA": "polysyllabic",
"PO/HREU/TKPWA": "polygamous",
"PO/HREU/TKPWO": "polygonal",
"PO/HREU/TPHO/PHEU": "polynomials",
"PO/HREU/TPHO": "polynomials",
"PO/HREU/TPAOE": "polyphenol",
"PO/HREU/TEU": "politico",
"PO/HREU/TEUBG": "politically",
"PO/HREU/TEBG": "polytechnic",
"PO/HREU/PHOR": "polymorph",
"PO/HREU/POE": "polyposis",
"PO/HREU/PEP": "polypeptide",
"PO/HREU/PEBG/TO": "polypectomy",
"PO/HREU/PEBG": "polypectomy",
"PO/HREU/PEBGT": "polypectomy",
"PO/HREU/HAOE": "polyhedron",
"PO/HREU/HAOEU": "polyhydric",
"PO/HREU/HAOEUD": "polyhydric",
"PO/HREU/AOUR": "polyurethane",
"PO/HREU/AOUR/KWRE": "polyurethane",
"PO/HREU/ES": "polyesters",
"PO/HREU/UR": "polyurethane",
"PO/HREU/UR/KWRE": "polyurethane",
"PO/HREUPB": "polynya",
"PO/HREUT": "politico",
"PO/HREUTS": "politicization",
"PO/HREUS/WO*": "policewomen",
"PO/HREPL": "polemical",
"PO/OP": "population",
"PO*RPB/TKPWRAF": "pornographer",
"PO*L/SKWRE": "polygenic",
"PO*L/SHRA": "polysyllabic",
"PO*L/SEU/HRA": "polysyllabic",
"PO*L/SEU": "polysyllabic",
"PO*L/TKPWA": "polygamous",
"PO*L/TKPWO": "polygonal",
"PO*L/TPHO/PHEU": "polynomials",
"PO*L/TPHO": "polynomials",
"PO*L/TPHOEPL": "polynomial",
"PO*L/TPAOE": "polyphenol",
"PO*L/TEBG": "polytechnic",
"PO*L/KWRES": "polyester",
"PO*L/PHOR": "polymorph",
"PO*L/POE": "polyposis",
"PO*L/PEP": "polypeptide",
"PO*L/PEBG/TO": "polypectomy",
"PO*L/PEBG": "polypectomy",
"PO*L/PEBGT": "polypectomy",
"PO*L/HAOE": "polyhedron",
"PO*L/HAOEU": "polyhydric",
"PO*L/HAOEUD": "polyhydric",
"PO*L/HAOED": "polyhedron",
"PO*L/AOUR": "polyurethane",
"PO*L/AOUR/KWRE": "polyurethane",
"PO*L/ES": "polyesters",
"PO*L/UR": "polyurethane",
"PO*L/UR/KWRE": "polyurethane",
"POE": "polemical",
"POE/SE": "possessiveness",
"POE/TKAOEU": "podiatrist",
"POE/TKAOEU/KWRA": "podiatrist",
"POE/TKAOEU/KWRAT": "podiatrist",
"POE/TKAOEUT": "podiatrist",
"POE/TKEU": "podium",
"POE/TKEU/KWRAT": "podiatric",
"POE/TA/SEU": "potassium",
"POE/TA": "potassium",
"POE/TAEU": "potatoes",
"POE/TAS": "potassium",
"POE/TEPB": "potentials",
"POE/TEPB/SHOPL": "potentiometer",
"POE/TEPB/SHEU": "potentiometer",
"POE/TEPB/SHEU/KWRAL": "potentiality",
"POE/TEPB/SHEU/KWRO/PHE": "potentiometer",
"POE/TEPB/SHEU/KWRO": "potentiometer",
"POE/TEPB/SHEU/KWROPL": "potentiometer",
"POE/TEPBS": "potentiation",
"POE/KWRE": "poetic",
"POE/KWRE/TEU": "poetical",
"POE/WE": "poetic",
"POE/WE/TEU": "poetical",
"POE/HRA/REU/PHE": "polarimetry",
"POE/HRA/REU": "polarimetry",
"POE/HRA": "polarimetry",
"POE/HRA/REU/PHET": "polarimetry",
"POE/HRA/REUPL": "polarimetry",
"POE/HRAOU": "pollutants",
"POE/HRAEUR": "polarity",
"POE/HRAR/KWREU/PHE": "polarimetry",
"POE/HRAR/KWREU": "polarimetry",
"POE/HRAR/KWREU/PHET": "polarimetry",
"POE/HRAR/KWREUPL": "polarimetry",
"POE/HRE/PHEU": "polemical",
"POE/HRE": "polemic",
"POE/HREU/TEU": "politico",
"POE/HREU": "polio",
"POE/HREUT": "politico",
"POE/HREUTS": "politicization",
"POE/HREUS/WO*": "policewomen",
"POE/HREPB": "polenta",
"POE/HREPL": "polemical",
"POEUPB/KWRAPB": "poignancy",
"POEUPB": "poignancy",
"POEUPB/KWRAPBS": "poignancy",
"POEFT/STPHA*P": "postsynaptic",
"POEFT/S*EU/TPHAP": "postsynaptic",
"POEFT/S*EU": "postsynaptic",
"POEFT/TKPWRA*/SKWRAOU": "postgraduate",
"POEFT/TKPWRA*": "postgraduate",
"POEFT/PW*E": "postbellum",
"POEFT/PHA*S": "postmasters",
"POEFT/PHO*": "postmodern",
"POEFT/PHO*R": "postmortem",
"POEFT/PA*R": "postpartum",
"POEFT/PAR": "postpartum",
"POEFT/HAO*U": "posthumous",
"POEFT/HAOU": "posthumous",
"POEFT/RAOE": "postrema",
"POEFT/R*E/KOFR": "postrecovery",
"POEFT/R*E": "postrecovery",
"POEFT/A*UR": "postaural",
"POEFT/O*RP": "postoperatively",
"POEFT/O*P/KWRER/KWRA": "postoperatively",
"POEFT/O*P/KWRER": "postoperatively",
"POEFT/O*P": "postoperatively",
"POEFT/O*P/RA": "postoperatively",
"POEPB": "pony",
"POEL/TER": "poltergeist",
"POEL/REUPL": "polarimetry",
"POES/TAOER": "posteriorly",
"POES/TER": "posterity",
"POES/KHAOU": "posthumous",
"POED": "podium",
"POED/KWRAT": "podiatric",
"POU/TKER/KWRAOEUZ": "powderization",
"POUPBGS": "pouncingly",
"POUPBS/-G": "pouncingly",
"POUD": "powdery",
"POF": "povidone",
"POFR": "poverty",
"POR/SE": "porcelain",
"POR/TPHO/TKPWRA": "pornographer",
"POR/TPHO": "pornographer",
"POR/TPHO/TKPWRAF": "pornographer",
"POR/TPHOE/TKPWRAF": "pornographics",
"POR/TPHORG": "pornography",
"POR/TPHOG": "pornographer",
"POR/TPHOG/RA": "pornographer",
"POR/TA/PWE": "portabella",
"POR/TEU": "portico",
"POR/TEPB": "portentous",
"POR/KWRO/SEU": "porosity",
"POR/KWRO": "porotic",
"POR/KWROS": "porosity",
"POR/KHEU": "porcini",
"POR/KAOU": "porcupine",
"PORPB/TKPWRAF": "pornography",
"PORPB/TKWRAF": "pornographically",
"PORT/TPOE/HREU": "portfolios",
"PORT/TPOE": "portfolios",
"PORT/TPOEL": "portfolios",
"PORT/PWE": "portabella",
"PORT/PHAPB": "portmanteau",
"PORS": "porcelain",
"POP/PAOU": "popularity",
"POP/HRAEU": "popliteus",
"POP/HRAEUR": "popularity",
"POP/HRAEUR/KWREU": "popularity",
"POP/HREU": "popliteus",
"POPB/TEU/TPEU": "pontificate",
"POPB/TEU": "pontificate",
"POPL/TKPWRA": "pomegranate",
"POPL/TPA": "pompano",
"POPL/PA": "pompadour",
"POPL/PO/SEU": "pomposity",
"POPL/PO": "pomposity",
"POPL/POS": "pomposity",
"POBG/HREUPT": "apocalyptical",
"POBGS/SRAO*EU": "poxvirus",
"POL/SKWRE": "apologetic",
"POL/SKWRET": "apologetically",
"POL/TPHOPL": "polynomial",
"POL/TER": "poltergeist",
"POL/PHER/KWRAOEUZ": "polymerize",
"POL/PHER": "polymerize",
"POL/REUPL": "polarimetry",
"POLS": "pollsters",
"POT/PW*E": "potbelly",
"POT/*ER": "pottery",
"POS/TRAOE": "postrema",
"POS/TAOER": "posteriorly",
"POS/TEU": "positivism",
"POS/TER": "posterity",
"POS/KHAOU": "postulated",
"P*EU/P*ER": "pyperclip",
"P*ERPB": "personable",
"P*EPBT/PHAOE": "pentameter",
"P*EPBT/PHEU": "pentamidine",
"P*EPBT/APBG": "pentangle",
"P*UPBG/TEU/HREU": "punctilious",
"P*UPBG/TEU": "punctilious",
"P*UPBG/TEUL": "punctilious",
"P*UPBG/KHAOU": "punctuation",
"P*UPL/*ER/TPH*EU": "pumpernickel",
"P*ULG": "pulcher",
"PE/SKWROR": "pejoration",
"PE": "pellets",
"PE/SKWROR/KWRA": "pejorative",
"PE/SAEU": "peseta",
"PE/SAPB": "peasantry",
"PE/SEU": "pessimistic",
"PE/SEU/PHEUS": "pessimistic",
"PE/TKA/TKPWO": "pedagogic",
"PE/TKA": "pedagogue",
"PE/TKA/TKPWOPBLG": "pedagogical",
"PE/TKA/TKPWOPBLG/KWREUBG": "pedagogically",
"PE/TKAPB": "pedantic",
"PE/TKO": "pedometer",
"PE/TKO/TP*EU/HREU": "pedophilia",
"PE/TKO/TP*EU": "pedophilia",
"PE/TKO/TP*EUL": "pedophilia",
"PE/TKO/PHAOE": "pedometer",
"PE/TKO/PHE": "pedometer",
"PE/TKOE": "pedophilia",
"PE/TKOE/TP*EU/HREU": "pedophilia",
"PE/TKOE/TP*EU": "pedophilia",
"PE/TKOE/TP*EUL": "pedophilia",
"PE/TKOPL": "pedometer",
"PE/TKE": "pedestal",
"PE/TKEU": "pediment",
"PE/TKEFT/REU": "pedestrian",
"PE/TKEFT": "pedestrian",
"PE/TKER": "pederasts",
"PE/TKES/TREU": "pedestrians",
"PE/TKES": "pedestrians",
"PE/TPHAOE": "pennia",
"PE/TPHAOUR": "penury",
"PE/TPHAL": "penalties",
"PE/TPHEU/SEU": "penicillins",
"PE/TPHEU/TEPB/SHAEUR": "penitentiary",
"PE/TPHEU/TEPB": "penitential",
"PE/TPHEU/TEPB/SHEU/KWRAEUR": "penitentiary",
"PE/TPHEU/TEPB/SHEU": "penitentiary",
"PE/TPHEU/TEPBT/SHEU/KWRAEUR": "penitentiary",
"PE/TPHEU/TEPBT/SHEU": "penitentiary",
"PE/TPHEUPB": "peninsular",
"PE/TPHEUPB/SAOU": "peninsular",
"PE/TPHEUPBS": "peninsular",
"PE/TPHET": "penetrability",
"PE/TPHUPL": "penumbrum",
"PE/TPHUL/TEU": "penultimate",
"PE/TPHUL": "penultimate",
"PE/TRA/S*EU": "petrazzini",
"PE/TRA": "petrazzini",
"PE/TRO": "petrotic",
"PE/TROE": "petroglyph",
"PE/TREU": "petrified",
"PE/KHAOU": "petulance",
"PE/KA/TKEU": "peccadillo",
"PE/KA": "peccadillo",
"PE/KAOU": "peculiarities",
"PE/KAOU/HREU": "peculiarities",
"PE/KAOUL": "peculiarities",
"PE/KAEUR": "peccary",
"PE/PHO": "pemotrex",
"PE/PHE/TREBGS": "pemetrexed",
"PE/PHE": "pemetrexed",
"PE/PER/KWROE": "pepperoni",
"PE/HREU": "pelican",
"PE/RE": "peregrine",
"PEU/STARB": "pistachio",
"PEU/SEU": "pisiform",
"PEU/TPHAOE": "pineal",
"PEU/TPHABG": "pinnacles",
"PEU/TPHOE/KEU": "pinocchio",
"PEU/TPHOEBG": "pinocchio",
"PEU/TAOURB/KWRAEUR": "pituitary",
"PEU/TAOURB": "pituitary",
"PEU/TOE": "pitocin",
"PEU/KWRA/TPHEU/SEU": "pianissimo",
"PEU/KWRA/TPHEU": "pianissimo",
"PEU/KWRA/TPHEUS": "pianissimo",
"PEU/KWRAEU": "pietas",
"PEU/KWRAS": "piasters",
"PEU/KWRE": "piety",
"PEU/KAPB": "picanha",
"PEU/KO": "piccolo",
"PEU/KOE/SE": "picoseconds",
"PEU/PHEPB": "pimenton",
"PEU/HRA/PHEUD/KWREUBG": "pyramidical",
"PEU/HRA/PHEUD": "pyramidical",
"PEU/HRA": "pyramidical",
"PEU/HRAS": "pilaster",
"PEUF": "pivotal",
"PEUR": "pyramids",
"PEUR/KWRA": "pyramids",
"PEUR/KWRA/PHEU/TKA": "pyramidalis",
"PEUR/KWRA/PHEU": "pyramidical",
"PEUR/KWRA/PHEU/TKEU": "pyramidical",
"PEUR/KWRA/PHEU/TKEUBG": "pyramidical",
"PEUR/KWRAPB": "piranha",
"PEUR/PHEU/TKA": "pyramidalis",
"PEUR/PHEU": "pyramidal",
"PEUR/PHEUD/KWREUBG": "pyramidical",
"PEURB": "pish-posh",
"PEUP/KOE": "picosecond",
"PEUP/RA": "piperonyl",
"PEUPB/TKO": "pindolol",
"PEUPB/KWRA": "pinata",
"PEUPBLG/*ER": "piggery",
"PEUPL": "pimps",
"PEUB/HREU/KWRO/TP*EUL": "bibliophilist",
"PEUB/HREU/KWRO": "bibliophilist",
"PEUB/HREU": "bibliophilist",
"PEUB": "bibliophilist",
"PEUBG/SE": "pixelated",
"PEUBG/TPHO": "pyknotic",
"PEUBG/TOR": "pictorial",
"PEUBG/PO*": "pickpocket",
"PEUBGT/TKPWRAF": "pictographics",
"PEUBGS": "pixel",
"PEULS": "pilsner",
"PEUG/PHEPB/TOE": "pigmentosa",
"PEUG/PHEPB": "pigmentosa",
"PEUGS": "pigeonhole",
"PEUT/*ER/PAT": "pitter-patter",
"PEUT/*ER": "pitter-patter",
"PEUS/TARB": "pistachio",
"PEUD": "piddles",
"PEUZ/RAOE": "pizzeria",
"PEFR": "perforation",
"PEFPB": "peasantry",
"PEFBG": "peskily",
"PER/STROEU": "perestroika",
"PER/STAL": "peristaltic",
"PER/SPEU/KAOU": "perspicuous",
"PER/SPEU": "perspicuous",
"PER/SPEUR": "perspiration",
"PER/SPEUBG": "perspicuous",
"PER/SPEBG/TEU": "perspectival",
"PER/SPEBG": "perspectives",
"PER/SWAEU": "persuasively",
"PER/SRAEU": "pervasive",
"PER/SRAEUS": "pervasive",
"PER/SAOU/KA": "persecutory",
"PER/SAOU": "persecutory",
"PER/SAOU/KA/TOR": "persecutory",
"PER/SO/TPHEU": "personification",
"PER/SO": "personnel",
"PER/SO/TPHEU/TPEU": "personification",
"PER/SO*PB/TPEU": "personification",
"PER/SOE": "personam",
"PER/SOPB/TPEU": "personification",
"PER/S*EPB": "percentiles",
"PER/SE": "persecutes",
"PER/SE/SRER/KWRAEU": "perseverative",
"PER/SE/SRER": "perseverate",
"PER/SE/KAOU": "persecutor",
"PER/SEU": "percipient",
"PER/SEU/PEU": "percipient",
"PER/SEUFT/KWREPB": "persistency",
"PER/SEUP": "percipient",
"PER/SEUS/TEPB": "persistency",
"PER/SEUS": "persistence",
"PER/SEF/RAEU": "perseverative",
"PER/SEF": "perseverate",
"PER/SEP": "perceptible",
"PER/SEP/TEU": "perceptible",
"PER/SEPB": "percentiles",
"PER/SEPT": "perceptible",
"PER/TKPWREU": "peregrination",
"PER/TKPWO": "pergola",
"PER/TKPWOE": "pergola",
"PER/TPO*RPL": "performance",
"PER/TPOR": "performance",
"PER/TPOR/PHA": "performative",
"PER/TP*UPBG": "perfunctory",
"PER/TP*UPBG/TOR": "perfunctory",
"PER/TP*UPBGT/REU": "perfunctoriness",
"PER/TP*UPBGT": "perfunctoriness",
"PER/TPEUD": "perfidy",
"PER/TPUPBG": "perfunctory",
"PER/TPUPBG/TOR": "perfunctory",
"PER/TEU/TPHAEU": "pertinacious",
"PER/TEU": "pertinence",
"PER/TEU/TPHAEURB": "pertinacious",
"PER/TUR": "perturbation",
"PER/KWRAOU": "perusal",
"PER/KWRAP": "periapsis",
"PER/KWRO/TKOPB": "periodontics",
"PER/KWRO": "periodont",
"PER/KWROR": "peroration",
"PER/KWROBG": "peroxide",
"PER/KWRE/STROEU": "perestroika",
"PER/KWRE": "peregrine",
"PER/KWRE/TKPWREU": "peregrination",
"PER/KWREU/STAL": "peristalsis",
"PER/KWREU": "perimetry",
"PER/KWREU/TP*ER": "periphery",
"PER/KWREU/PHAOE": "perimeters",
"PER/KWREU/PHE": "perimeters",
"PER/KWREU/PHET": "perimetry",
"PER/KWREUF": "peripheral",
"PER/KWREUFR": "periphery",
"PER/KWREUPL": "perimeters",
"PER/KWREUS/TAL": "peristalsis",
"PER/KWREUS": "peristalsis",
"PER/KWRES/TROEU": "perestroika",
"PER/KWRES": "perestroika",
"PER/KHRAEU": "percolator",
"PER/KHRO*": "perchlorate",
"PER/KHRO*R": "perchlorate",
"PER/KHROR": "perchlorate",
"PER/KR*EPB": "percentiles",
"PER/KREPB": "percentiles",
"PER/KREPBT": "percentages",
"PER/KAOU/TAEUPB": "percutaneous",
"PER/KAOU": "percutaneous",
"PER/KO/HRAEU": "percolator",
"PER/KO": "percolate",
"PER/KOE/HRAEU": "percolator",
"PER/KOE": "percolator",
"PER/KOE/HRAEUT": "percolator",
"PER/KU": "percussive",
"PER/PHA/TPHEPB": "permanency",
"PER/PHAOE/KWRA": "permeability",
"PER/PHAOE": "permeables",
"PER/PHAOE/KWRAB": "permeabilize",
"PER/PHAOEB": "permeabilize",
"PER/PHAOU": "permutation",
"PER/PHORPL": "performant",
"PER/PHE": "permethin",
"PER/PHEU": "permissiveness",
"PER/PHEUS": "permissible",
"PER/PE": "perpetuates",
"PER/PE/TRAEU": "perpetrators",
"PER/PE/TAOU": "perpetuity",
"PER/PE/TAOU/WEU": "perpetuity",
"PER/PE/KHAOU": "perpetuates",
"PER/PEPB/TKEU/KAOU/HRAEUR": "perpendicularity",
"PER/PEPB/TKEU/KAOU": "perpendicular",
"PER/PEPB/TKEU": "perpendicular",
"PER/PEPB": "perpendicularly",
"PER/PEPB/TKEUBG/HRAEUR": "perpendicularity",
"PER/PEPB/TKEUBG": "perpendicularly",
"PER/PET": "perpetual",
"PER/O*BG": "peroxides",
"PER/OBG": "peroxides",
"PER/OBGS": "peroxides",
"PERP/TKEU/KAOU": "perpendicular",
"PERP/TKEU": "perpendicular",
"PERP/TKEUBG/HRAEUR": "perpendicularity",
"PERP/TKEUBG": "perpendicular",
"PERP/TRAEU": "perpetrators",
"PERP/TAOU": "perpetuity",
"PERP/TAOU/WEU": "perpetuity",
"PERPB/TPEU": "personification",
"PERPB/KWRAL": "personalize",
"PERPL/KWRA": "permeability",
"PERBG/HRAEU": "percolator",
"PERG": "pergola",
"PERT/TPHAEU": "pertinacious",
"PERT/TPHAEURB": "pertinacious",
"PERS/TROEU": "perestroika",
"PERS/TAL": "peristaltic",
"PERS/KAOU": "persecutor",
"PERS/PEU/KAOU": "perspicuous",
"PERS/PEU": "perspicuous",
"PERS/PEUR": "perspiration",
"PERS/PEUBG": "perspicuous",
"PERS/PEBG/TEU": "perspectival",
"PERS/PEBG": "perspectives",
"PERS/WAEU": "persuasively",
"PEP/ROE": "pepperoni",
"PEPB/SKWRAOU": "pendulous",
"PEPB/SEU": "penicillins",
"PEPB/TKAOU": "pendulous",
"PEPB/TKAEU": "pendejo",
"PEPB/TKEU/KAOU": "pendicular",
"PEPB/TKEU": "pendicular",
"PEPB/TKEUBG": "pendicular",
"PEPB/TKEPB": "pendente",
"PEPB/TKEPBS": "pendency",
"PEPB/TA/TKPWO": "pentagonal",
"PEPB/TA/PHAOE": "pentameter",
"PEPB/TA/PHE": "pentameter",
"PEPB/TA/PHEU": "pentamidine",
"PEPB/TA/APBG": "pentangle",
"PEPB/TAOE": "pentenal",
"PEPB/TAPBG": "pentangle",
"PEPB/TAPL": "pentameter",
"PEPB/TABG": "pentacle",
"PEPB/TAG": "pentagonal",
"PEPB/TEPB/SHAEUR": "penitentiary",
"PEPB/TEPB/SHEU": "penitentiary",
"PEPB/TEPBT/SHEU/KWRAEUR": "penitentiary",
"PEPB/TEPBT/SHEU": "penitentiary",
"PEPB/KWREU/RO*EU": "pennyroyal",
"PEPB/PHA*PB": "penmanship",
"PEPB/*UL/TEU": "penultimate",
"PEPB/*UL": "penultimate",
"PEPBLG": "pejoration",
"PEPBG": "pendulous",
"PEPL": "pemetrexed",
"PEB": "pebble",
"PEBG/TKEU": "peccadillo",
"PEBG/TOR": "pectoris",
"PEBG/TEU": "pectineus",
"PEBGT": "pectoris",
"PEBGT/RA": "pectoralis",
"PEL": "pelican",
"PET/RA/S*EU": "petrazzini",
"PET/RA": "petrazzini",
"PET/RO": "petrotic",
"PET/ROE": "petroglyph",
"PET/REU": "petrified",
"PES": "pestles",
"PES/TEU": "pestilence",
"PES/PHEUS": "pessimistic",
"PED/STREU": "pedestrians",
"PED/TKPWA": "pedagogic",
"PED/TKPWO": "pedagogic",
"PED/TKPWOPBLG": "pedagogical",
"PED/TP*EUL": "pedophilia",
"PED/*UPB/KAOU": "peduncular",
"PED/*UPB": "peduncular",
"PED/*UPBG/KAOU": "peduncular",
"PED/*UPBG": "peduncle",
"PED/UPB/KAOU": "pedunculate",
"PED/UPB": "pedunculate",
"PEDZ/TREU": "pedestrians",
"PU": "pulley",
"PU/PE": "puppeteer",
"PU/WA/HA": "puahala",
"PU/WA": "puahala",
"PUFT": "pustular",
"PUR/TKPWA": "purgative",
"PUR/TKPWA/TOR": "purgatory",
"PUR/PUR": "purpura",
"PURP/-FL": "purposefully",
"PURPS": "purposely",
"PURG": "purgative",
"PURG/TOR": "purgatory",
"PURT": "purty",
"PUPB/SKWREPB": "pungency",
"PUPB/SKWREPBS": "pungency",
"PUPB/KWREU": "pudgiest",
"PUPB/KHAOU": "punctuation",
"PUPBLG": "pudginess",
"PUPBG": "punctures",
"PUPBG/TEU/HREU": "punctilious",
"PUPBG/TEU": "punctilious",
"PUPBG/TEUL": "punctilious",
"PUPBG/KHAOU": "punctuation",
"PUPL": "pumps",
"PUPL/TPHOL": "pulmonology",
"PUPL/-P/*ER/TPH*EU": "pumpernickel",
"PUB/HREU/SEU": "publicity",
"PUB/HREUS": "publicity",
"PUBL": "publication",
"PUL/SREU": "pulvinar",
"PUL/SRER": "pulverize",
"PUL/SA": "pulsatile",
"PUL/PHO/TPHAEUR": "pulmonary",
"PUL/PHO": "pulmonic",
"PUL/PO/TKEPB": "pulpodental",
"PUL/PO/TKEPBT": "pulpodental",
"PUL/POE/TKEPB": "pulpodental",
"PUL/POE/TKEPBT": "pulpodental",
"PUL/-PL": "pulmonic",
"PUL/-PL/TPHOL": "pulmonology",
"PULS/A*UD": "pulseaudio",
"PUS/KHAOU": "pustular",
"WHA/SO*": "whatsoever",
"WHAOEL/PWA*": "wheelbarrow",
"WHAOEL/PWA*EUR": "wheelbarrow",
"WHAOED": "wheedles",
"WHAOPS": "whoopsy",
"WHAFP/PHA": "whatchamacallit",
"WHAFP": "whatchamacallit",
"WHATS": "whatsoever",
"WHO/TKU": "whodunit",
"WHE": "whether",
"WHEUFT": "whistler",
"WHEUPL/SEUBG": "whimsically",
"WHEUPLS": "whimsical",
"WHEUS": "whistles",
"WHEL": "whelps",
"WHUPL": "whumped",
"WRAPB": "wrangle",
"WRAPBG": "wrangles",
"WRAS": "wrassle",
"WROPBG/H*ED/-D": "wrongheadedly",
"WR*EUPBG": "wrinkles",
"WREU": "written",
"WREUG": "wriggles",
"WRER": "reversal",
"WRES": "wrestled",
"WA/SA": "wasabi",
"WA": "wallets",
"WA/TA/TPHA/TKPWA": "watanagashi",
"WA/TA/TPHA": "watanagashi",
"WA/TA": "watanagashi",
"WA/TER/KO*": "watercolor",
"WA/TER/PH*E": "watermelon",
"WA/HRA": "wallaby",
"WAOEU": "wily",
"WAOEZ": "weezer",
"WAOB": "woobly",
"WAOBG": "wookiee",
"WAOG": "woogie",
"WAOZ": "woozily",
"WA*RPBD": "wanderer",
"WAEFT/PWA*S": "wastebasket",
"WAEFT/WA*": "wastewater",
"WAEFT/WA*U": "wastewater",
"WAER/KWREU": "weariness",
"WAES": "wastage",
"WAU": "waltz",
"WAU/TER/KO*": "watercolor",
"WAU/TER/PH*E": "watermelon",
"WAU/HRA": "wallaby",
"WAUF": "waffling",
"WAUR/KWRAPB": "warranty",
"WAUR/KWREU": "warrior",
"WAURB/PWA*EU": "washbasin",
"WAURB/PWAEU": "washbasin",
"WAURT/KO*": "watercolor",
"WAURT/PH*E": "watermelon",
"WAURD": "wardrobe",
"WAUPB": "wannabe",
"WAUBG/KWRAOE/TAUBG": "walkie-talkie",
"WAUBG/KWRAOE": "walkie-talkie",
"WAUS": "wasp",
"WAR/KWRAPB": "warranty",
"WAR/KWREU": "warrior",
"WARB/PWA*EU": "washbasin",
"WARB/PWAEU": "washbasin",
"WAPBT/TKPWA": "watanagashi",
"WAG/*ER": "waggery",
"WAT/TPHA/TKPWA": "watanagashi",
"WAT/TPHA": "watanagashi",
"WO/PHEPB": "womenfolks",
"WO*PL": "womp-womp",
"WOE/PW*E": "woebegone",
"WOE/PWE": "woebegone",
"WOEL/SRER": "wolverine",
"WOEL": "wolves",
"WOR/KA/HO": "workaholic",
"WOR/KA": "workaholic",
"WORBG/PHA*PB": "workmanship",
"WORBG/HO": "workaholic",
"WORBG/A*": "workaround",
"WORBG/A*/HO": "workaholic",
"WORLD/KWREU": "worldliness",
"WOB/-L/KWREU": "wobbliness",
"WOL/SRER": "wolverine",
"WOL": "wolves",
"W*EULG": "wilkie",
"WE": "woefully",
"WE/PWEU": "webinars",
"WEU/SA*R": "wizardry",
"WEU/TPHOE": "winnowing",
"WEU/TEU": "witticism",
"WEU/KWREU": "wittiness",
"WEU/KEU/PAOE/TKEU": "wikipedia",
"WEU/KEU/PAOE": "wikipedia",
"WEURB/KWREU/WA*RB": "wishy-washy",
"WEURB/KWREU": "wishy-washy",
"WEURB/KWREU/WARB": "wishy-washy",
"WEUPBGS": "wingspan",
"WEUPBT": "wintry",
"WEUB": "wibbly",
"WEUBG/PAOED": "wikipedia",
"WEUL/TKE": "wildebeest",
"WEUL/KWREU": "wiliness",
"WEUT/-G": "wittingly",
"WEUS/TAOER": "wisteria",
"WEUZ": "wizard",
"WEFT/*ER": "westerly",
"WEB/KO*PL": "webcomics",
"WEB/PHAOEUS": "webmeister",
"WEB/PHA*S": "webmaster",
"WEL/TPAEUR": "welfarist",
"WEL/WEURB": "welwitschia",
"WES/TER": "westerly",
"WES": "western",
"WURS": "wurst",
"WUPL": "whumped",
"WUG": "wuggly",
"WUS": "wussler",
"W-R/A*": "whereabouts",
"W-R/*UP": "whereupon",
"HRA/SRA/TOR": "lavatories",
"HRA/SREPB": "lavender",
"HRA/SAO*U": "lazuli",
"HRA/SAEU": "laissez-faire",
"HRA/SAPB": "lasagna",
"HRA/SEU": "lassitude",
"HRA/SER": "lacerum",
"HRA/TKEU": "la-di-da",
"HRA/TPHO": "lanolin",
"HRA/TAOUD": "latitudinal",
"HRA/TEU/TAOU/TKEU": "latitudinal",
"HRA/TEU/TAOU": "latitudinal",
"HRA/TEU": "latitudes",
"HRA/TER/KWRA": "lateralis",
"HRA/KREU": "lacrimal",
"HRA/KREUPL": "lacrimal",
"HRA/KAOU": "lacuna",
"HRA/KO": "laconic",
"HRA/KOPB": "laconic",
"HRA/PWOR": "laborious",
"HRA/PWOR/KWRA": "laboratories",
"HRA/PWOR/KWRA/TOR": "laboratories",
"HRA/PHE": "lamellar",
"HRA/PHEU": "laminar",
"HRA/PHEU/TPHAEU": "laminator",
"HRA/PHEPB": "lamentation",
"HRA/PHEL": "lamellar",
"HRA/PAR/KWRO/SKO": "laparoscopic",
"HRA/PAR/KWRO": "laparoscope",
"HRA/PAR": "laparoscope",
"HRA/PEU/TKAEUR": "lapidary",
"HRA/PEU": "lapidary",
"HRAO*ES": "liesel",
"HRAOE": "leeward",
"HRAOE/TKPWA": "legalities",
"HRAOE/TKPWA/HREU": "legalities",
"HRAOE/TKER/HOE": "lederhosen",
"HRAOE/TKER": "lederhosen",
"HRAOE/TKER/HOES": "lederhosen",
"HRAOE/KWRAEU": "liaison",
"HRAOE/KWROE": "leotards",
"HRAOEU/SEPB": "licentious",
"HRAOEU/TKO": "lidocaine",
"HRAOEU/KWRA": "liabilities",
"HRAOEU/KWRAEU": "liaison",
"HRAOEU/KWRO": "lioness",
"HRAOEU/KEPB/TPEU/TPEU": "lichenification",
"HRAOEU/KEPB/TPEU": "lichenification",
"HRAOEU/PWRAEUR": "libraries",
"HRAOEU/PWAEUR": "library",
"HRAOEU/PWE": "libelous",
"HRAOEUB": "libeled",
"HRAOEUT/HA*RT": "light-hearted",
"HRAOEUT/H*ED/-D": "lightheadedness",
"HRAOERB/PHAEUPB": "leishmania",
"HRAOEPB/KWREPB": "leniency",
"HRAOEB": "libre",
"HRAOET/PHOE": "leitmotif",
"HRAOED/*ER/HOE": "lederhosen",
"HRAOED/*ER/HOES": "lederhosen",
"HRAOU/SEU": "lucida",
"HRAOU/SEPB": "lucency",
"HRAOU/TKEU": "ludicrous",
"HRAOU/TPHAOU": "lunula",
"HRAOU/TAOE": "luteal",
"HRAOU/TE": "lieutenant",
"HRAOU/TEU": "luteinize",
"HRAOU/KRA": "lucrative",
"HRAOU/KRAPB": "lucrandi",
"HRAOU/KRAT": "lucrative",
"HRAOU/KAOE/PHEU": "leukemia",
"HRAOU/KAOE": "leukemic",
"HRAOU/KAOEPL": "leukemic",
"HRAOU/KOT": "leucotomy",
"HRAOU/PWREU": "lubricious",
"HRAOU/PWREU/TPEU": "lubrificant",
"HRAOU/PWREU/KAEU": "lubricator",
"HRAOU/PWREUF": "lubrificant",
"HRAOU/PWREURB": "lubricious",
"HRAOU/PWREUS": "lubricity",
"HRAOU/PHE": "lumenal",
"HRAOU/PHEU": "luminous",
"HRAOU/PHEU/TPHE": "luminescent",
"HRAOU/PHEU/TPHES": "luminescent",
"HRAOU/WEU": "luigi",
"HRAOU/U/KO/TO": "leucotomy",
"HRAOU/U/KO": "leucotomy",
"HRAOU/U": "leucotomy",
"HRAOUFP": "luchador",
"HRAOUFPBS": "lucency",
"HRAOURB": "lubricants",
"HRAOURB/KAEU": "lubricator",
"HRAOURBG": "lucrative",
"HRAOUPBS": "lunacy",
"HRAOUPL/TPHAEUR": "luminary",
"HRAOUPL/TPHOS": "luminosity",
"HRAOUB/REU": "lubricious",
"HRAOUB/REU/TPEU": "lubrificant",
"HRAOUB/REU/KAEU": "lubricator",
"HRAOUB/REUF": "lubrificant",
"HRAOUB/REURB": "lubricious",
"HRAOUBG": "lukewarm",
"HRAOUS/KWREPB": "lucency",
"HRAOUS/REUS": "lubricity",
"HRAOP/TK*E": "loop-de-loop",
"HRAOP/TKE": "loop-de-loop",
"HRAOBG/A*": "lookalike",
"HRAOS/KWREU/TKPWAO*S": "loosey-goosey",
"HRAOS/KWREU": "loosey-goosey",
"HRA*": "llamas",
"HRA*EUD/TP*EUPB": "ladyfinger",
"HRA*EUD/KWREU": "ladyfinger",
"HRA*EUD/KWREU/TP*EUPB": "ladyfinger",
"HRAEU/SA*EU": "laissez-faire",
"HRAEU/TKEU/TP*EUPBG": "ladyfinger",
"HRAEU/TEPB": "latency",
"HRAEU/TEPBS": "latency",
"HRAEU/WO*": "laywomen",
"HRAEUD/KWREU/TP*EUPB": "ladyfinger",
"HRAEUD/KWREU/TP*EUPBG": "ladyfinger",
"HRAEB": "elaboration",
"HRAU/TKA": "laudatory",
"HRAU/TKA/TOR": "laudatory",
"HRAU/PHOPB": "laumontite",
"HRAU/A*": "law-abiding",
"HRAU/A*/PWAOEUD": "law-abiding",
"HRAUPB/SKWRER": "lingerie",
"HRAUPB/TKRO": "laundromat",
"HRAUPB/TKROE": "laundromat",
"HRAUPBG": "lingerie",
"HRAUPBD": "laundry",
"HRAUD/TOR": "laudatory",
"HRAF/TOR": "lavatories",
"HRAFRB": "larvicide",
"HRAR/SREU": "larvicide",
"HRAR/SE": "larcenous",
"HRARP/SKO": "laparoscopic",
"HRARP/SKOP": "laparoscopic",
"HRARB/TOR": "laboratories",
"HRARS": "larcenous",
"HRAP/RA/SKO": "laparoscopic",
"HRAP/RA": "laparoscopic",
"HRAP/RA/SKOP": "laparoscopic",
"HRAPB/TA": "lantana",
"HRAPL/TPHAEU": "laminator",
"HRAPL/PWHREU": "lamblia",
"HRAB/TOR": "laboratory",
"HRAB/PWOR/KWRA/TOR": "laboratories",
"HRAB/PWOR/KWRA": "laboratories",
"HRAB/PWOR": "laboratories",
"HRAB/RA": "laboratories",
"HRAB/RA/TOR/KWREU": "laboratories",
"HRAB/RA/TOR": "laboratories",
"HRAB/REUPB": "labyrinthine",
"HRABG/SA": "laxatives",
"HRABG/SEU": "laxity",
"HRABG/TEU/TPER": "lactiferous",
"HRABG/TEU": "lactiferous",
"HRABG/TEUFR": "lactiferous",
"HRABG/HR*US": "lackluster",
"HRABG/REU": "lacrimal",
"HRABGT/TPER": "lactiferous",
"HRAL": "baliage",
"HRAT/RA": "lateralis",
"HRAZ": "lazuli",
"HRO/SKWREU": "logical",
"HRO/SKWREUFT": "logistical",
"HRO/SKWREUS": "logistics",
"HRO/SRA/STA": "lovastatin",
"HRO/SRA": "lovastatin",
"HRO/TKPWA": "logarithms",
"HRO/TKPWA/R*EUT": "logarithms",
"HRO/TKPWAR": "logarithmic",
"HRO/TKPWAR/KWR*EUT": "logarithmic",
"HRO/KWAEU": "loquacious",
"HRO/KWAEURB": "loquacious",
"HRO/KWAS": "loquacity",
"HRO/KWEU": "loquitur",
"HRO/KAOU": "locutory",
"HRO/KAOU/TOR": "locutory",
"HRO/PWO/TO": "lobotomies",
"HRO/PWO": "lobotomies",
"HRO/PWOT": "lobotomies",
"HRO/PHUS": "lomustine",
"HROE/TKPWOE/TKPWRAF": "logographics",
"HROE/TKPWOE/KHROEPB": "logoclonia",
"HROE/KWAEU": "loquacious",
"HROE/KWAEURB": "loquacious",
"HROE/KWAS": "loquacity",
"HROE/KWEU": "loquitur",
"HROE/KREU": "locrian",
"HROE/KA": "locative",
"HROE/KAOU": "locular",
"HROE/KAEU": "locator",
"HROE/KAT": "locative",
"HROE/KOE/PHOE": "locomotives",
"HROE/KOE/PHOET": "locomotives",
"HROE/PWAOEL": "lobelia",
"HROE/PWOT": "lobotomies",
"HROE/PWEBG/TO": "lobectomy",
"HROE/PWEBG": "lobectomy",
"HROE/PWEBG/TOE": "lobectomy",
"HROE/PWEBGT": "lobectomy",
"HROEU": "lawyers",
"HROEU/KWRAL": "loyalty",
"HROER/KHRA*S": "lowerclassmen",
"HROERBG": "locrian",
"HROEPBLG": "loggia",
"HROEBG": "locally",
"HROEBG/PHOE": "locomotives",
"HROEBG/PHOET": "locomotives",
"HROEG/TKPWRAF": "logographics",
"HROEG": "logographics",
"HROF/STA": "lovastatin",
"HROF/KWREU/TKO*F": "lovey-dovey",
"HROF/KWREU": "lovey-dovey",
"HROR/KWRA/S*E": "lorazepam",
"HROR/KWRA": "lorazepam",
"HRORZ": "lorazepam",
"HROPB/SKWREU/TAOU/TKEU": "longitudinal",
"HROPB/SKWREU/TAOU": "longitudinal",
"HROPB/SKWREU": "longitudes",
"HROPB": "longus",
"HROPB/SKWREF": "longevity",
"HROPBLGS": "logistical",
"HROPBG/SKWREU/TAOU/TKEU": "longitudinal",
"HROPBG/SKWREU/TAOU": "longitudinal",
"HROPBG/SKWREU": "longitudes",
"HROPBG/SKWREF": "longevity",
"HROPBG/TK*EUS": "long-distance",
"HROBT": "lobotomy",
"HROBS": "lobsters",
"HROL/KWREU": "lollipop",
"HROL/-L/-L/-L": "lolllll",
"HROL/-L/-L": "lolllll",
"HROG/R*EUT": "logarithms",
"HROT/*ER": "lottery",
"HROZ": "lozenges",
"HR*EU/HRA": "dilatation",
"HR*EU": "dilatation",
"HR*EUT/TKPWRA": "lithographer",
"HR*EUTS": "lithosphere",
"HR*EPL": "lempira",
"HR*ET": "leatherette",
"HR*UPBLG": "lunging",
"HRE/SKWREU/TEU/PHA": "legitimatize",
"HRE/SKWREU/TEU": "legitimate",
"HRE/SKWREU": "legitimate",
"HRE/SKWREUT/PHA": "legitimatize",
"HRE/SKWREUS/HRAEU": "legislatures",
"HRE/SKWREPB/TKAEUR": "legendary",
"HRE/SKWREPB": "legendary",
"HRE/SKWREPBD/KWRAEUR": "legendary",
"HRE/SRA": "levator",
"HRE/SRAOEU": "leviathan",
"HRE/SRAOEU/KWRA": "leviathan",
"HRE/SREU": "levity",
"HRE/TKPWA": "legatos",
"HRE/THAR": "lethargic",
"HRE/KWE/TPABGT": "liquefactive",
"HRE/KWE": "liquefactive",
"HRE/PHO": "lemonade",
"HRE/PRO": "leprosy",
"HRE/PROE": "leprosy",
"HREU/SA": "lissamine",
"HREU/TKPWA": "ligament",
"HREU/TPHAOE": "linear",
"HREU/TPHOE/HRAOE": "linoleum",
"HREU/TPHOE": "linoleum",
"HREU/TPHOEL": "linoleum",
"HREU/TPHEU": "liniment",
"HREU/THO": "lithographics",
"HREU/THO/TKPWRA": "lithographer",
"HREU/THOE/TKPWRAF": "lithographics",
"HREU/THOE": "lithographics",
"HREU/THORG": "lithography",
"HREU/THOG/RA": "lithographer",
"HREU/THOG": "lithograph",
"HREU/THOS": "lithosphere",
"HREU/TA": "litany",
"HREU/TAPB": "litany",
"HREU/TEU": "litigable",
"HREU/TEU/TKPWA": "litigable",
"HREU/TEURB": "litigious",
"HREU/TER/KWRA": "literature",
"HREU/TUR": "liturgical",
"HREU/TUR/SKWREUBG": "liturgical",
"HREU/KWRAEU": "liaison",
"HREU/KWE": "liquefaction",
"HREU/KWE/TPABG": "liquefactive",
"HREU/KWEU/TKAEU": "liquidator",
"HREU/KWEU": "liquidity",
"HREU/KWEU/TKEU": "liquidity",
"HREU/KHURPBLG": "liturgical",
"HREU/KET": "lickety",
"HREU/PWRE": "libretto",
"HREU/PWEU": "libido",
"HREU/PWER": "liberals",
"HREU/PWER/TAEUR": "libertarian",
"HREU/PWER/KWRAEU": "liberator",
"HREU/PHAOU": "limulus",
"HREU/PHO": "limousine",
"HREU/PHEU": "limitation",
"HREU/PHER": "limerick",
"HREU/PHU": "limulus",
"HREU/PEU/TKAOEPL": "lipidemia",
"HREU/PEU": "lipidologist",
"HREU/PEU/TKO/HRO": "lipidologist",
"HREU/PEU/TKO": "lipidologist",
"HREU/PEU/TKOL": "lipidologist",
"HREUF/HREU": "livelihood",
"HREUR": "lyrical",
"HREUR/KWREU": "lyrical",
"HREURB": "liberties",
"HREUP/TKAOEPL": "lipidemia",
"HREUP/TKOL": "lipidologist",
"HREUPB/SKWRER": "lingerie",
"HREUPB": "liniment",
"HREUPB/TKPWAOU": "lingula",
"HREUPB/KWRAEUR": "linearity",
"HREUPBG/WAOE": "linguine",
"HREUPBG/WEU": "linguine",
"HREUPBG/WEUS": "linguistics",
"HREUPL/TPHAEUGS/KWRAEUR": "eliminationary",
"HREUPL/TPO*E": "lymphoma",
"HREUPL/PEU": "olympiad",
"HREUB/TAEUR": "libertarian",
"HREUB/RAEU": "liberator",
"HREUBG/TKAEU": "liquidator",
"HREUBG/TPABG": "liquefactive",
"HREUBG/TPABGT": "liquefactive",
"HREUBG/WE": "liquefaction",
"HREUBG/WE/TPABG": "liquefactive",
"HREUBG/WE/TPABGT": "liquefactive",
"HREUBG/WEU": "liquidity",
"HREUBG/WEU/TKAEU": "liquidator",
"HREUBG/WEU/TKEU": "liquidity",
"HREUBGT": "lickety",
"HREUG/TPHE": "lignelle",
"HREUG/PWER/KWRAL/KWRAOEUZ": "liberalization",
"HREUG/PWER/KWRAL": "liberalization",
"HREUG/PWER": "liberalization",
"HREUT/TKPWA": "litigable",
"HREUT/TER/KWRAEUR": "literary",
"HREUT/TER": "literary",
"HREUT/RA": "literature",
"HREUS/TAOER": "listeria",
"HREUS": "list",
"HREUZ": "lizards",
"HREF": "levies",
"HREFP": "lecherous",
"HREFB": "lesbians",
"HRERP": "leprosy",
"HRERBGT/STA": "electrostatic",
"HRERBGT/TPHE/TKPWA/TEU/SREU": "electronegativity",
"HRERBGT/TPHE/TKPWA/TEU": "electronegativity",
"HRERBGT/TPHE/TKPWA": "electronegativity",
"HRERBGT/TPHE": "electronegativity",
"HRERBGT/TPHE/TKPWA/TEUF": "electronegativity",
"HRERBGT/KARD": "electrocardiogram",
"HRERBGT/KARD/KWROE": "electrocardiogram",
"HRERBGT/PHAG": "electromagnet",
"HREP": "leprous",
"HREP/RO": "leprosy",
"HREP/ROE": "leprosy",
"HREPB/SO/PHAOE": "lensometer",
"HREPB/SO": "lensometer",
"HREPB/SO/PHE": "lensometer",
"HREPB/SOPL": "lensometer",
"HREPB/SEBG/TO/PHEU": "lensectomies",
"HREPB/SEBG/TO": "lensectomies",
"HREPB/SEBG": "lensectomies",
"HREPB/SEBGT/PHEU": "lensectomies",
"HREPB/SEBGT": "lensectomies",
"HREPB/TKUS": "horrendously",
"HREPB/TEU": "lenticule",
"HREPB/TEU/KAOU": "lenticular",
"HREPB/TEUBG": "lenticular",
"HREPB/TEBG/TO": "lentectomy",
"HREPB/TEBG": "lentectomy",
"HREPB/TEBGT": "lentectomy",
"HREPBLG/SHRAEU": "legislatures",
"HREPBLGT/PHA": "legitimatize",
"HREPBLGS/HRAEU": "legislatures",
"HREPBLGS": "legislates",
"HREPBLGD/KWRAEUR": "legendary",
"HREPL/TPHEUS": "lemniscus",
"HREPL/PEUR": "lempira",
"HREBG": "electrically",
"HREBG/SEU/KO/TKPWRAF": "lexicographer",
"HREBG/SEU/KORG": "lexicographer",
"HREBG/TREUS": "electricity",
"HREBGS/KO": "lexicography",
"HREBGS/KO/TKPWRAF": "lexicography",
"HREBGS/KORG": "lexicographer",
"HREBGS/KOG": "lexicographer",
"HREBGS/KOG/RA": "lexicographer",
"HRES/PWEU": "lesbians",
"HRU/PHEU/TPHAEUR": "luminaria",
"HRU/PHEU": "luminaria",
"HRU/HRA": "lullaby",
"HRUPB": "lunged",
"HRUPL/TPHAEUR": "luminaria",
"HRUPL": "lumped",
"HRUPL/-P/KWREU": "lumpiness",
"HRUBG/SHUR": "luxurious",
"HRUBG/SUR": "luxuries",
"HRUBGS/KWRUR": "luxurious",
"HRUG/SHUR": "luxury",
"HRUG/SUR": "luxury",
"HRUS": "luster",
"HA/SRA": "havarti",
"HA/SRAU": "havarti",
"HA/SRAR": "havarti",
"HA/SAOE/KWREPB": "hacienda",
"HA/SAOE": "hacienda",
"HA/SEU/KWREPB": "hacienda",
"HA/SEU": "hacienda",
"HA/KWRA": "hayashi",
"HA/KWRARB": "hayashi",
"HA/KA": "hackathon",
"HA/PWE/TPHAOU": "habenular",
"HA/PWE": "habanero",
"HA/PWE/TPHAEUR": "habanero",
"HA/PWE/TPHER": "habanero",
"HA/PWEU": "habilitative",
"HA/PWEU/TAPB": "habitancy",
"HA/PWEU/KHAOU": "habituated",
"HA/PWEU/HREU/TAEU": "habilitative",
"HA/PWEU/HREU": "habilitative",
"HA/PWEUFP": "habitual",
"HA/PWEUL": "habilitative",
"HA/PWEUT/KWRAPBS": "habitancy",
"HA/PWER/TKARB": "haberdasher",
"HA/PWEPB": "habenular",
"HA/PWEPB/KWRAOU": "habenular",
"HA/HRA/PAOE": "jalapeno",
"HA/HRA": "halala",
"HA/HRA/PAOEPB": "jalapeno",
"HA/HRAOU/SEU/TPHA": "hallucinative",
"HA/HRAOU/SEU": "hallucinogen",
"HA/HRAOU": "hallelujah",
"HA/HRAOU/SEU/TPHA/TOR": "hallucinatory",
"HA/HRAOU/SEU/TPHAT": "hallucinative",
"HA/HRAOU/SEU/TPHO/SKWRE": "hallucinogenic",
"HA/HRAOU/SEU/TPHO": "hallucinogen",
"HA/HRAOU/SEU/TPHOE/SKWRE": "hallucinogenic",
"HA/HRAOU/SEU/TPHOE": "hallucinogen",
"HA/HRAOUFPB": "hallucinates",
"HA/HRAOUS/SKWRE": "hallucinogenic",
"HA/HRAOUS": "hallucinative",
"HA/HRAOUS/TPHA": "hallucinative",
"HA/HRAOUS/TPHA/TOR": "hallucinatory",
"HA/HRAOUS/TPHAT": "hallucinative",
"HA/HRAOUS/TPHO/SKWRE": "hallucinogenic",
"HA/HRAOUS/TPHO": "hallucinogen",
"HA/HRAOUS/TPHOE/SKWRE": "hallucinogenic",
"HA/HRAOUS/TPHOE": "hallucinogen",
"HA/HRO/SKWRE": "halogenic",
"HA/HRO": "halogen",
"HA/HROE/SKWRE": "halogenic",
"HA/HRE/HRAOU": "hallelujah",
"HA/HRE": "hallelujah",
"HA/HREU/TOE": "halitosis",
"HA/HREU": "halibut",
"HA/HRU": "hallucis",
"HA/HRUBG": "hallucis",
"HAO/HREU": "hooligan",
"HAO*EURD/TPHROR": "hydrofluoric",
"HAO*EURD/TPHRUR": "hydrofluoric",
"HAO*EURD/TPO*E": "hydrophobic",
"HAO*EURD/KHROR": "hydrochloric",
"HAO*EURD/PHAOE": "hydrometer",
"HAO*EURD/HREU": "hydrolysis",
"HAO*EURD/HREBG": "hydroelectric",
"HAO*EURD/AOE/HREBG": "hydroelectric",
"HAO*EURD/AOE": "hydroelectric",
"HAO*EURD/E/HREBG": "hydroelectric",
"HAO*EURD/E": "hydroelectric",
"HAO*D/W*EUPBG": "hoodwinking",
"HAOE/TKO": "hedonistic",
"HAOE/TKO/TPHEUS": "hedonistic",
"HAOE/TKOPB": "hedonist",
"HAOE/PHA/TO/HRO": "hematologists",
"HAOE/PHA/TO": "hematological",
"HAOE/PHA": "hematologists",
"HAOE/PHA/TO/HROPBLG": "hematological",
"HAOE/PHA/TOE": "hematoma",
"HAOE/PHA/TOL": "hematologists",
"HAOE/PHO/TKPWHRO": "hemoglobin",
"HAOE/PHO": "hemophiliacs",
"HAOE/PHO/TKPWHROE": "hemoglobin",
"HAOE/PHO/TP*EU/HREU": "hemophiliacs",
"HAOE/PHO/TP*EU": "hemophiliacs",
"HAOE/PHO/TP*EUL": "hemophiliacs",
"HAOE/PHOE/TKPWHROE": "hemoglobin",
"HAOE/PHOE/TP*EU": "hemophilus",
"HAOE/PHOE/TP*EU/HREU": "hemophiliacs",
"HAOE/PHOE/TP*EUL": "hemophilus",
"HAOE/PHOE/TOE": "hemotoma",
"HAOE/PHOE/HREU": "hemolytic",
"HAOE/PHOEL": "hemolysis",
"HAOE/HREU": "helical",
"HAOE/HOEL": "hemolytic",
"HAOEU/SKWRAOE": "hygienic",
"HAOEU/TKRAU": "hydraulics",
"HAOEU/TKRAUL": "hydraulically",
"HAOEU/TKRO": "hydrolysis",
"HAOEU/TKRO/PHE": "hydrometer",
"HAOEU/TKRO/HREU": "hydrolysis",
"HAOEU/TKROE/STA": "hydrostatic",
"HAOEU/TKROE/TPHROR": "hydrofluoric",
"HAOEU/TKROE/TPHRUR": "hydrofluoric",
"HAOEU/TKROE/TPO*E": "hydrophobic",
"HAOEU/TKROE/TPO*EB": "hydrophobic",
"HAOEU/TKROE/KHROR": "hydrochloric",
"HAOEU/TKROE/PHAOE": "hydrometer",
"HAOEU/TKROE/PO": "hydroponic",
"HAOEU/TKROE/POPB": "hydroponic",
"HAOEU/TKROE/HREBG": "hydroelectric",
"HAOEU/TKROE/AOE/HREBG": "hydroelectric",
"HAOEU/TKROE/AOE": "hydroelectric",
"HAOEU/TKROE/E/HREBG": "hydroelectric",
"HAOEU/TKROE/E": "hydroelectric",
"HAOEU/TKROEPB": "hydronium",
"HAOEU/TKROPB": "hydronic",
"HAOEU/TKROPL": "hydrometer",
"HAOEU/TKROBG": "hydroxide",
"HAOEU/TKROBGS": "hydroxide",
"HAOEU/TKROL": "hydrolysis",
"HAOEU/TP*E": "hyphenate",
"HAOEU/KWRAOE": "hyena",
"HAOEU/KWRAEU": "hiatus",
"HAOEU/PWEUS": "hibiscus",
"HAOEU/PWER": "hibernal",
"HAOEU/PO/THE": "hypothecary",
"HAOEU/PO": "hypotenuse",
"HAOEU/PO/THE/TEU": "hypotheticals",
"HAOEU/PO/THE/KAEUR": "hypothecary",
"HAOEU/PO/THET": "hypotheticals",
"HAOEU/PO/TE": "hypotenuse",
"HAOEU/PO*T": "hypothecary",
"HAOEU/POE/TKPWHRO": "hypoglossal",
"HAOEU/POE/TKPWHROS": "hypoglossal",
"HAOEU/POE/TKPWAS": "hypogastric",
"HAOEU/POE/TKPWO/TPHAD": "hypogonadism",
"HAOEU/POE/TKPWO": "hypogonadism",
"HAOEU/POE/TKPWOE/TPHA": "hypogonadism",
"HAOEU/POE/TKPWOE": "hypogonad",
"HAOEU/POE/TKER": "hypodermics",
"HAOEU/POE/TKERPL": "hypodermics",
"HAOEU/POE/THE/TEU": "hypotheticals",
"HAOEU/POE/THE": "hypotheticals",
"HAOEU/POE/THERPL": "hypothermia",
"HAOEU/POE/KHROR": "hypochlorite",
"HAOEU/POE/KHOPB": "hypochondria",
"HAOEU/POE/KHOPB/TKREU": "hypochondria",
"HAOEU/POE/KOPB": "hypochondria",
"HAOEU/POE/KOPB/TKREU": "hypochondria",
"HAOEU/POBG": "hypocrisy",
"HAOEU/POBG/REU": "hypocrisy",
"HAOEU/POT": "hypotenuse",
"HAOEU/PER/SEPB/SEU": "hypersensitive",
"HAOEU/PER/SEPB": "hypersensitive",
"HAOEU/PER/SEPBS": "hypersensitivity",
"HAOEU/PER/THERPL": "hyperthermia",
"HAOEU/PER/TEPB": "hypertensive",
"HAOEU/PER/TEPBS": "hypertensive",
"HAOEU/PER/KREU/TEU": "hypercritical",
"HAOEU/PER/KREU": "hypercritic",
"HAOEU/PER/KREUT": "hypercritical",
"HAOEU/PER/PWO": "hyperbolic",
"HAOEU/PER/PWOE": "hyperbolar",
"HAOEU/PER/PWOL": "hyperbolar",
"HAOEU/PER/ABG": "hyperactivity",
"HAOEU/PER/ABGT": "hyperactive",
"HAOEU/PERB": "hyperbole",
"HAOEU/RO": "hieroglyphic",
"HAOEU/ROE": "hieroglyphic",
"HAOEURP/SEPB/SEU": "hypersensitive",
"HAOEURP/SEPB": "hypersensitive",
"HAOEURP/SEPBS": "hypersensitivity",
"HAOEURP/THERPL": "hyperthermia",
"HAOEURP/TEPB": "hypertensive",
"HAOEURP/TEPBS": "hypertensive",
"HAOEURP/KREU/TEU": "hypercritical",
"HAOEURP/KREU": "hypercritic",
"HAOEURP/KREUT": "hypercritical",
"HAOEURP/PWO": "hyperbolic",
"HAOEURP/PWOE": "hyperbolar",
"HAOEURP/PWOL": "hyperbolar",
"HAOEURP/ABG": "hyperactivity",
"HAOEURP/ABGT": "hyperactive",
"HAOEURB": "hibernate",
"HAOEURD/STA": "hydrostatics",
"HAOEUP/THET": "hypotheticals",
"HAOEUPBD/KWRA*R": "hindquarters",
"HAOEUPBD/KWA*UR": "hindquarters",
"HAOEUPBD/KWA*URT": "hindquarters",
"HAOEUPBD/KWA*R": "hindquarters",
"HAOEUPBD/KWA*RT": "hindquarters",
"HAOEUB": "hybrid",
"HAOEUD/KWREU": "hidey-hole",
"HAOEUD/ROE": "hidrosis",
"HAOEUD/A*": "hideaway",
"HAOER/KWREUPB/PW*E": "hereinbefore",
"HAOER/KWREUPB/A*": "hereinabove",
"HAOER/A*": "hereabouts",
"HAOERPB/PW*E": "hereinbefore",
"HAOERPB/A*": "hereinabove",
"HAOERS": "heresy",
"HAOEPL/TKPWHRO": "hemoglobin",
"HAOEPL": "hematologists",
"HAOEPL/TKPWHROE": "hemoglobin",
"HAOEPL/TP*EU/HREU": "hemophilia",
"HAOEPL/TP*EU": "hemophilia",
"HAOEPL/TP*EUL": "hemophiliacs",
"HAOEPL/THROPBLG": "hematological",
"HAOEPL/TO/HRO": "hematology",
"HAOEPL/TO": "hematological",
"HAOEPL/TO/HROPBLG": "hematological",
"HAOEPL/TOE": "hemotoma",
"HAOEPL/TOL": "hematologists",
"HAOEB": "heebie",
"HAOEB/KWRAOE/SKWRAOEB/KWRAOE": "heebie-jeebies",
"HAOEB/KWRAOE/SKWRAOEB": "heebie-jeebies",
"HAOEL/KWROE/SEPB": "heliocentric",
"HAOED/TPHEUS": "hedonistic",
"HAOEZ": "heezy",
"HAOU/PHA": "humanistic",
"HAOU/PHA/TPHEU/TAEUR": "humanitarian",
"HAOU/PHA/TPHEU": "humanity",
"HAOU/PHA/TPHEUS": "humanistic",
"HAOU/PHOPB": "humongous",
"HAOU/PHOPBG": "humongous",
"HAOU/PHEU": "humiliation",
"HAOU/PHEU/TKEU": "humidity",
"HAOU/PHEU/HREU": "humiliation",
"HAOU/PHEUL": "humiliate",
"HAOU/PHER": "humerus",
"HAOU/PHUPB": "humungous",
"HAOU/PHUPBG": "humungous",
"HAOU/ROE": "hureaulite",
"HAOUR/KWREUS": "heuristic",
"HAOURS": "heuristic",
"HAOUPL/TPHEUS": "humanistic",
"HAOUB": "hubris",
"HA*PBG/KWREU/PA*PBG": "hanky-panky",
"HAE": "{haemo^}",
"HAEU/HRO": "halogen",
"HAEUF": "haven",
"HAEURS": "hairsbreadth",
"HAEUPB": "heinous",
"HAEUB": "habeas",
"HAERBG": "hearkening",
"HAU/PAOE": "haupia",
"HAU/PEU": "haupia",
"HAUP": "haupia",
"HAF/P*EPB": "halfpenny",
"HAF/HA*RT/-D": "halfheartedly",
"HAF/HA*RT": "halfheartedly",
"HAF/HA*RTD": "halfheartedly",
"HAFP/*ER": "hatchery",
"HAR/SRES": "harvester",
"HAR/PWEUPB": "harbingers",
"HAR/PHA": "harmattan",
"HAR/PHO": "harmonics",
"HAR/PHOE": "harmony",
"HAR/PHOPB": "harmonica",
"HAR/HRE": "harlequin",
"HARP/SEU": "harpsichords",
"HARPS": "harpsichords",
"HARL": "harlequin",
"HAP/KWREU": "happiness",
"HAP/HRO": "haplotype",
"HAP/HA": "haphazard",
"HAP/HAZ": "haphazard",
"HAPB": "handkerchief",
"HAPB/TKEU": "handily",
"HAPB/KER": "handkerchief",
"HAPBG/KER": "handkerchief",
"HAPBD/KWREU/TKAPBD": "handy-dandy",
"HAPBD/KWREU/WO*": "handywoman",
"HAPBD/KER": "handkerchief",
"HAPBD/PHA*EUD": "handmaiden",
"HAPBD/WR*EU": "handwritten",
"HAPBD/WR*EUT": "handwritten",
"HAPBD/WA*RB": "handwashing",
"HAPL/PW*UR": "hamburgers",
"HAPL/PWUR": "hamburgers",
"HAPLS": "hamsters",
"HAPT": "hapten",
"HAB/TPHAEUR": "habanero",
"HAB/TAPB": "habitancy",
"HABT/KWRAPB": "habitancy",
"HABT/KWRAPBS": "habitancy",
"HAL/SKWRE": "halogenic",
"HAL": "halve",
"HAL/TO": "halitosis",
"HAL/TOE": "halitosis",
"HAL/PAOE": "jalapeno",
"HAL/PAOEPB": "jalapeno",
"HAL/HRAOU": "hallelujah",
"HALS": "halcyon",
"HAS/KWREPB": "hacienda",
"HO/TKU": "whodunit",
"HO/TPHOR/KWRAEUR": "honorary",
"HO/PHO/SKWRAOE/TPHAOE": "homogeneously",
"HO/PHO/SKWRAOE": "homogeneously",
"HO/PHO/SKWRAOE/TPHAOE/KWRUS": "homogeneously",
"HO/PHO/SKWRAOEPB": "homogeneously",
"HO/PHO/SKWRAOEPBS": "homogeneously",
"HO/PHO/SKWRE": "homogenous",
"HO/PHO/TPHEU": "homonymous",
"HO/PHO/HRO": "homologous",
"HO/PHOPBLG": "homogenous",
"HO/PHOL": "homologous",
"HO/PHEU": "hominid",
"HO/PHUPB/KAOU": "homunculus",
"HO/PHUPB": "homunculus",
"HO/PHUPBG/KAOU": "homunculus",
"HO/PHUPBG": "homunculus",
"HO/HRORG": "holography",
"HO/HREUS": "holistic",
"HO*US/WA*RPL": "housewarming",
"HO*L": "holly",
"HOE/KUS/PO*E": "hocus-pocus",
"HOE/KUS": "hocus-pocus",
"HOE/PHAOE": "{homeo^}",
"HOE/PHAOE/KWRO/PA": "homeopathic",
"HOE/PHOE/SKWRAOE/TPHAOE": "homogeneously",
"HOE/PHOE/SKWRAOE": "homogeneous",
"HOE/PHOE/SKWRAOE/TPHAOE/KWRUS": "homogeneously",
"HOE/PHOE/SKWRAOEPB": "homogeneous",
"HOE/PHOE/SEBGS": "homosexuality",
"HOE/PHOE/TPO*E": "homophobic",
"HOE/PHOE/PHAOEU/KWRAR": "homomyarian",
"HOE/PHOE/PHAOEU": "homomyarian",
"HOE/PHOE/AOE/RO": "homoerotic",
"HOE/PHOE/AOE": "homoerotic",
"HOE/PHOE/E/RO": "homoerotic",
"HOE/PHOE/E": "homoerotic",
"HOE/PHEU/SAOEU": "homicidal",
"HOE/PHEU": "homicidal",
"HOE/PHEU/SAOEUD": "homicidal",
"HOE/HOE": "ho-ho-ho",
"HOEUFRT/KWRO": "histrionics",
"HOEUFRT/KWROPB": "histrionics",
"HOEUP/TKPWHRO": "hypoglossal",
"HOEUP/TKPWHROS": "hypoglossal",
"HOEUP/TKPWAS": "hypogastric",
"HOEUP/TKPWO/TPHAD": "hypogonadism",
"HOEUP/TKPWO": "hypogonadism",
"HOEUP/TKPWOE/TPHA": "hypogonadism",
"HOEUP/TKPWOE": "hypogonad",
"HOEUP/TKER": "hypodermics",
"HOEUP/TKERPL": "hypodermics",
"HOEUP/THE/TEU": "hypotheticals",
"HOEUP/THE": "hypotheticals",
"HOEUP/THERPL": "hypothermia",
"HOEUP/THET": "hypotheticals",
"HOEUP/KHROR": "hypochlorite",
"HOEUP/KHOPB": "hypochondria",
"HOEUP/KHOPB/TKREU": "hypochondria",
"HOEUP/KOPB": "hypochondria",
"HOEUP/KOPB/TKREU": "hypochondria",
"HOEPBLG": "homepage",
"HOEPL/SKWRAOE": "homogeneous",
"HOEPL/SAOEU": "homicidal",
"HOEPL/SAOEUD": "homicidal",
"HOEPL/KWRO/PA": "homeopathic",
"HOEPL/KWROE/STA/TEUBG": "homeostatically",
"HOEPL/KWROE/STA": "homeostatically",
"HOEPL/KWROE/STAEU": "homeostasis",
"HOEPL/KWROE/STAT": "homeostatically",
"HOEPL/KWROE/SAEUS": "homeostasis",
"HOEPL/KWROE/PA": "homeopathic",
"HOEPL/KWROP": "homeopathy",
"HOEBG": "hokey",
"HOES/KWRER": "hosiery",
"HOU/SO*": "howsoever",
"HOUS/H*US": "househusbands",
"HOFT": "hostile",
"HOR/SO*PB": "horizontal",
"HOR/TKAOE/KWROE": "hordeolum",
"HOR/TKAOE": "hordeolum",
"HOR/TA": "hortatory",
"HOR/TA/TOR": "hortatory",
"HOR/TEU": "horticultural",
"HOR/TEU/KHUL": "horticulture",
"HOR/TEU/KUL": "horticultural",
"HOR/TEUR/KHUR": "horticulturalist",
"HOR/TEUR": "horticulturalist",
"HOR/KWRAOEU": "horizons",
"HOR/KWRO": "horology",
"HOR/KWRO/HRO": "horology",
"HOR/KWROE": "horoscope",
"HOR/KWROL": "horology",
"HOR/KWREU/SO*PB": "horizontal",
"HOR/KWREU": "horrible",
"HOR/KWREU/SO*PBT": "horizontally",
"HOR/KWREPB": "horrendous",
"HORB": "horribly",
"HORS/PO*U": "horsepower",
"HORS/RA*": "horseradish",
"HORS/RA*D": "horseradish",
"HORD/KWROE": "hordeolum",
"HOPBLG": "hodgepodge",
"HOL": "holocaust",
"HOL/TKPWRAF": "holographics",
"HOLS": "holsters",
"HOS": "hospitable",
"HOS/TEU/HREU": "hostility",
"HOS/TEU": "hostility",
"HOS/PEU": "hospitals",
"HOS/PEUT": "hospitable",
"H*EUT": "hitherto",
"H*UPBG/KWREU/TKOR": "hunky-dory",
"H*UPBG/KWREU": "hunky-dory",
"H*UPLT": "humpty",
"HE/SKWRE/PHO": "hegemonic",
"HE/SKWRE": "hegemon",
"HE": "hereditary",
"HE/SKWRE/PHOE": "hegemony",
"HE/SKWRE/PHOEPB": "hegemony",
"HE/SEU": "hesitance",
"HE/SEU/TAPB": "hesitancy",
"HE/TER": "{hetero^}",
"HE/TER/KWRO/SKWRAOE/TPHAOE": "heterogeneous",
"HE/TER/KWRO/SKWRAOE": "heterogenous",
"HE/TER/KWRO/SKWRAOEPB": "heterogenous",
"HE/TER/KWRO/SAO*EU": "heterozygote",
"HE/TER/KWRO/SEBG": "heterosexual",
"HE/TER/KWROE/SKWRAOE/TPHAOE": "heterogeneous",
"HE/TER/KWROE/SKWRAOE": "heterogenous",
"HE/TER/KWROE/SKWRAOEPB": "heterogenous",
"HE/TER/KWROE/SAO*EU": "heterozygote",
"HE/TER/KWROE/SEBG": "heterosexual",
"HE/PHA": "hematite",
"HE/PHOR": "hemorrhoids",
"HE/PHEU/STPAO*ER/KWREU": "hemispherical",
"HE/HRAEU": "hellacious",
"HE/HRAEURB": "hellacious",
"HE/HRE/TPHEUS": "hellenistic",
"HE/HRE": "hellenistic",
"HE/HREU/KOP": "helicopters",
"HE/RED": "hereditary",
"HEU/SRE": "heavily",
"HEU/TKAOE": "hideous",
"HEU/KOR": "hickory",
"HEU/PWA": "hibachi",
"HEU/PWAFP": "hibachi",
"HEU/PWEUS": "hibiscus",
"HEU/PO/TE": "hypotenuse",
"HEU/PO": "hypocrite",
"HEU/PO/KREU": "hypocrisy",
"HEU/POE/KREU/TEU": "hypocritical",
"HEU/POE/KREU": "hypocritical",
"HEU/POE/KAPL": "hippocampus",
"HEU/POE/PO/TA": "hippopotamus",
"HEU/POE/PO": "hippopotamos",
"HEU/POE/PO/TO": "hippopotamos",
"HEU/PORBG": "hypocrisy",
"HEU/POBG": "hypocrisy",
"HEU/POBG/REU": "hypocrisy",
"HEU/PEU/TEU": "hippity-hop",
"HEU/PER/ABG/TEUF": "hyperactivity",
"HEU/PER/ABG": "hyperactivity",
"HEU/PER": "hyperactivity",
"HEU/HRAEUR": "hilarious",
"HEU/HRAEUR/KWREU": "hilarious",
"HEUFT/HROPBLG": "histologic",
"HEUFT/REU/KWRO": "histrionics",
"HEUFT/REU": "histrionics",
"HEUFT/REU/KWROPB": "histrionics",
"HEUR": "hiragana",
"HEUR/TKPWA": "hiragana",
"HEUR/KWRA/TKPWA": "hiragana",
"HEUR/KWRA": "hiragana",
"HEUP/TPHO": "hypnotic",
"HEUP/TPHO/TKPWO": "hypnogogic",
"HEUP/TPHO/TKPWOPBLG": "hypnogogic",
"HEUP/TPHOE": "hypnotism",
"HEUP/TPHOT": "hypnotically",
"HEUP/POT": "hippopotamus",
"HEUPB": "hinny",
"HEUPT/KWREU": "hippity-hop",
"HEUPT": "hippity-hop",
"HEUPS": "hipsters",
"HEUL/PW*EU": "hillbilly",
"HEUS/TREU/KWRO": "histrionics",
"HEUS/TREU/KWROPB": "histrionics",
"HEUS/TA": "histamines",
"HEUS/TAOER": "hysteria",
"HEUS/TO": "histolysis",
"HEUS/TO/HRO/SKWREU": "histological",
"HEUS/TO/HRO": "histologic",
"HEUS/TO/HROPBLG": "histological",
"HEUS/TO/HREU": "histolysis",
"HEUS/TOE": "histogram",
"HEUS/TOER/KWRO": "histrionics",
"HEUS/TOER/KWROPB": "histrionics",
"HEUS/TOR": "historical",
"HEUS/TOR/KWREU/KWRO": "histrionics",
"HEUS/TOR/KWREU/KWROPB": "histrionics",
"HEUS/TOL": "histolysis",
"HEUS/TEU": "histidine",
"HEUS/TER": "hysterically",
"HEUS/TER/KWREU": "hysterical",
"HEUS/HAPBD": "mishandled",
"HEF": "heaviness",
"HEFRPB": "henchmen",
"HER/TPHEU": "hernias",
"HER/KWRAL": "heraldry",
"HER/KWRO": "heroism",
"HER/KWROE": "heroin",
"HER/KWRE/TKEU/TAEUR": "hereditary",
"HER/KWRE/TKEU": "heredity",
"HER/KWRE": "heretic",
"HER/KWRE/TEU": "heretical",
"HER/KWREU": "heritage",
"HER/KWRED": "heredity",
"HER/KAOU/HRAOE": "herculean",
"HER/KAOU": "herculean",
"HER/PWAEU": "herbaceous",
"HER/PWAEURB": "herbaceous",
"HER/PWEU": "herbicides",
"HER/PHA/TPRO": "hermaphroditic",
"HER/PHA": "hermaphroditic",
"HER/PHA/TPRO/TKEU": "hermaphroditic",
"HER/PHA/TPROE": "hermaphroditic",
"HER/PHA/TPROE/TKEU": "hermaphroditic",
"HER/PHE": "hermetic",
"HER/PHET": "hermetical",
"HER/PA": "herpatic",
"HER/PE/TO/HRO": "herpetology",
"HER/PE/TO": "herpetology",
"HER/PE": "herpetic",
"HER/PET": "herpetology",
"HERP": "herpetology",
"HERB/SROR": "herbivorous",
"HERT/SKWRAOE/TPHAOE": "heterogeneous",
"HERT/SKWRAOE": "heterogenous",
"HERT/SKWRAOEPB": "heterogenous",
"HERT/SAO*EU": "heterozygote",
"HERT/SEBG": "heterosexual",
"HEPBLG/PHO": "hegemonic",
"HEPBLG/PHOE": "hegemony",
"HEPBD": "hendy",
"HEPL/KWROR/KWRAPBLG": "hemorrhaging",
"HEPL/KWROR": "hemorrhaging",
"HEPL/ROEU": "hemorrhoidal",
"HEPLS": "hemispheres",
"HEBG/SA/TKPWO": "hexagonal",
"HEBG/SA/TKE/SEU": "hexadecimal",
"HEBG/SA/TKE": "hexadecimal",
"HEBG/SA/TKES": "hexadecimal",
"HEBG/SA/PHE": "hexameter",
"HEBG/SAPL": "hexameter",
"HEBG/SAG": "hexagonal",
"HEBG/SEU": "hexital",
"HEBG/TO": "hectoliters",
"HEBG/TO/PHAOE": "hectometers",
"HEBG/TO/PHE": "hectometers",
"HEBG/TO/HREU": "hectoliters",
"HEBG/TOE": "hectoliters",
"HEBG/TOE/PHAOE": "hectometers",
"HEBG/TOE/HREU": "hectoliters",
"HEBG/TOPL": "hectometers",
"HEBGT": "hectogram",
"HEL/TPHEUS": "hellenistic",
"HEL/KOP": "helicopters",
"HEG": "eggheads",
"HET/RO/SKWRAOE/TPHAOE": "heterogeneous",
"HET/RO/SKWRAOE": "heterogenous",
"HET/RO/SKWRAOEPB": "heterogenous",
"HET/RO/SAO*EU": "heterozygote",
"HET/ROE/SKWRAOE/TPHAOE": "heterogeneous",
"HET/ROE/SKWRAOE": "heterogenous",
"HET/ROE/SKWRAOEPB": "heterogenous",
"HET/ROE/SAO*EU": "heterozygote",
"HET/ROE/SEBG": "heterosexual",
"HES": "hessian",
"HED/KWRA*UR": "headquartered",
"HED/KWRA*R": "headquartered",
"HED/KWA*UR": "headquarters",
"HED/KWA*URT": "headquarters",
"HED/KWA*R": "headquarters",
"HED/KWA*RT": "headquarters",
"HED/PHA*S": "headmasters",
"HED/-D": "headedness",
"HU/PHUPB": "humungous",
"HU/HRA/PWA": "hullabaloo",
"HU/HRA": "hullabaloo",
"HUFT": "hustled",
"HUR": "hurr-hurr",
"HURD/KWREU/TKPWURD": "hurdy-gurdy",
"HURD/KWREU": "hurdy-gurdy",
"HURD": "hurdles",
"HUPL/-G": "hummingbird",
"HUPLG": "hummingbird",
"HUBG/-L/PW*ER": "huckleberry",
"HUBG/-L": "huckleberry",
"HUBGS": "hucksters",
"HUL/PWA": "hullabaloo",
"HUD": "huddles",
"RA": "rallied",
"RA/SRE": "ravelin",
"RA/SREU/KWROE": "ravioli",
"RA/SREU": "ravioli",
"RA/SREPB": "ravenously",
"RA/SREPB/KWRUS": "ravenously",
"RA/SAO": "rassoodocks",
"RA/SAOE": "racemic",
"RA/SE": "racemic",
"RA/SEU/SKWREU": "rasigiline",
"RA/SEU": "rasigiline",
"RA/SEUPBLG": "rasigiline",
"RA/TKPWA/PHU": "ragamuffin",
"RA/TKPWA": "ragamuffin",
"RA/TKEU": "radicals",
"RA/TKEU/KAOU": "radicular",
"RA/TKEUBG": "radically",
"RA/TPHEU/TEU": "ranitidine",
"RA/TPHEU": "ranitidine",
"RA/TPHEUT": "ranitidine",
"RA/TA/TAOU": "ratatouille",
"RA/TA": "ratatouille",
"RA/TEU": "ratification",
"RA/TEU/TPEU": "ratification",
"RA/KHAOEU": "rachitis",
"RA/KA": "recapitulate",
"RA/KA/PEUFP": "recapitulate",
"RA/KOPB": "raconteur",
"RA/KE": "racketeering",
"RA/PWEU": "rabbinic",
"RA/PWEU/TPHEU": "rabbinical",
"RA/PHE": "ramekin",
"RA/PHEU/TPEU": "ramification",
"RA/PROEFP": "rapprochement",
"RA/PAEU": "rapacious",
"RA/PAEURB": "rapacious",
"RA/PEU": "rapini",
"RA/PUPB": "rapunzel",
"RAO": "rookies",
"RAO*UPL/-L/TAOE": "rumpleteazer",
"RAO*UPL/-L": "rumpleteazer",
"RAO*UPL": "rumpleteazer",
"RAO*UT": "ruthless",
"RAOE/STREUBG": "restrictive",
"RAOE/STRUBG": "restructures",
"RAOE/STAB": "reestablish",
"RAOE/SKWRAOU/SRE": "rejuvenate",
"RAOE/SKWRAOU": "rejuvenate",
"RAOE/SKWRAOUF": "rejuvenate",
"RAOE/SKWRE/TPHER": "regenerate",
"RAOE/SKWRE": "regenerate",
"RAOE/SKWREPB": "regenerate",
"RAOE/SKWREPBS": "regency",
"RAOE/SKE": "reschedules",
"RAOE/SKEPBLG": "reschedules",
"RAOE/SPOPB": "respondendum",
"RAOE/SPOPB/TKEPB": "respondendum",
"RAOE/SPEBG": "respectively",
"RAOE/SRA": "revalue",
"RAOE/SRAO*EULT": "revitalize",
"RAOE/SRAOEU": "revitalize",
"RAOE/SRAOEU/TA/HRAOEUZ": "revitalization",
"RAOE/SRAOEU/TA": "revitalization",
"RAOE/SRAOEU/TAL": "revitalize",
"RAOE/SRAFBG": "revascularate",
"RAOE/SRAPL": "revamped",
"RAOE/SRAL": "revaluation",
"RAOE/SRAS/KAOU/HRA": "revascularate",
"RAOE/SRAS/KAOU": "revascularate",
"RAOE/SRAS": "revascularate",
"RAOE/SRAS/KAOU/HRAR": "revascularate",
"RAOE/SRO": "revocation",
"RAOE/SROE": "revocandi",
"RAOE/SROE/KAPB": "revocandi",
"RAOE/SREU/SREU/TPEU": "revivification",
"RAOE/SREU/SREU": "revivification",
"RAOE/SREU": "revisit",
"RAOE/SREUF": "revivification",
"RAOE/SRER/PWRA": "reverberatory",
"RAOE/SRER/PWRA/TOR": "reverberatory",
"RAOE/SRER/PWER/KWRA": "reverberatory",
"RAOE/SRER/PWER": "reverberate",
"RAOE/SRERB": "reverberate",
"RAOE/SRERB/TOR": "reverberatory",
"RAOE/SRERB/RA": "reverberatory",
"RAOE/SRERB/RA/TOR": "reverberatory",
"RAOE/SRERGS/KWRAEUR": "reversionary",
"RAOE/SRET": "revetment",
"RAOE/SAOEU": "recycled",
"RAOE/SAOEUBG": "recycled",
"RAOE/SAL": "reevaluate",
"RAOE/SOR": "resorcin",
"RAOE/SORP": "resorptive",
"RAOE/SE": "recessive",
"RAOE/SEU/SKWRAOU/WAEUR": "residuary",
"RAOE/SEU/SKWRAOU": "residuals",
"RAOE/SEU": "resilience",
"RAOE/SEU/TKAOU": "residuals",
"RAOE/SEU/TKEU": "residuary",
"RAOE/SEU/TKEU/WAEUR": "residuary",
"RAOE/SEU/PEU": "recipients",
"RAOE/SEU/HREU": "resilience",
"RAOE/SEUR/KAOU": "recirculates",
"RAOE/SEUR": "recirculates",
"RAOE/SEURP": "reciprocal",
"RAOE/SEURBG": "recirculates",
"RAOE/SEUP": "reciprocity",
"RAOE/SEUP/RO/SEU": "reciprocity",
"RAOE/SEUP/RO": "reciprocal",
"RAOE/SEUP/ROE": "reciprocal",
"RAOE/SEUP/ROS": "reciprocity",
"RAOE/SEUPBLG/WAEUR": "residuary",
"RAOE/SEUPBLG": "residuals",
"RAOE/SEUL": "resilience",
"RAOE/SEUS": "resistive",
"RAOE/SEUD": "residuals",
"RAOE/SEUD/WAEUR": "residuary",
"RAOE/SER": "researchers",
"RAOE/SEP/TA": "receptacles",
"RAOE/SEP": "receptive",
"RAOE/SEP/TABG": "receptacles",
"RAOE/SEPB": "recency",
"RAOE/SEPBS": "recency",
"RAOE/SEPL": "resembles",
"RAOE/SU/SEU/TAEU": "resuscitator",
"RAOE/SU/SEU": "resuscitates",
"RAOE/SU": "resuscitates",
"RAOE/SUR": "resurgence",
"RAOE/SURPBLG": "resurgence",
"RAOE/SUB": "resubmit",
"RAOE/SUL": "resultant",
"RAOE/SUS/TAEU": "resuscitator",
"RAOE/TKPWRAOE/SEU/SRAOEU": "regressivity",
"RAOE/TKPWRAOE/SEU": "regressivity",
"RAOE/TKPWRAOE": "regressivity",
"RAOE/TKPWRAOE/SEUF": "regressivity",
"RAOE/TKPWRAOES/TEUF": "regressivity",
"RAOE/TKPWRAOES": "regressivity",
"RAOE/TKPWRE": "regressive",
"RAOE/TKPWAEU/HREU": "regalia",
"RAOE/TKPWAEU": "regalia",
"RAOE/TKPWUR/SKWREU": "regurgitates",
"RAOE/TKPWUR": "regurgitates",
"RAOE/TKPWURPBLG": "regurgitate",
"RAOE/TKAOE": "redesigns",
"RAOE/TKAOEU": "redirect",
"RAOE/TKAOUP/HREU": "reduplication",
"RAOE/TKAOUP": "reduplication",
"RAOE/TKAOUPL": "reduplication",
"RAOE/TK*EU": "redirects",
"RAOE/TK*EPL": "redemption",
"RAOE/TKE/SRE": "redevelops",
"RAOE/TKE": "redeploy",
"RAOE/TKEU": "redirect",
"RAOE/TKEUS/TREU": "redistribute",
"RAOE/TKEUS": "rediscover",
"RAOE/TKEPL": "redemption",
"RAOE/TKUPB": "redundance",
"RAOE/TKUPB/TKAPB": "redundancy",
"RAOE/TKUBG": "reductive",
"RAOE/TPHREBG": "reflectivity",
"RAOE/TPHO/TKEU/HRA": "renodilatory",
"RAOE/TPHO/TKEU": "renodilatory",
"RAOE/TPHO": "renodilatory",
"RAOE/TPHO/TKEU/HRA/TOR": "renodilatory",
"RAOE/TPHO/TKEUL": "renodilatory",
"RAOE/TPHO/TKEUL/TOR": "renodilatory",
"RAOE/TPHOBG": "reinoculation",
"RAOE/TPHE/TKPWOERB": "renegotiates",
"RAOE/TPHE": "renegotiation",
"RAOE/TPHUPB/SEU": "renunciation",
"RAOE/TPHUPB": "renunciation",
"RAOE/TPHUPBS": "renunciation",
"RAOE/TPRABG": "refractively",
"RAOE/TPREU/SKWRER/KWRAEU": "refrigerators",
"RAOE/TPREU/SKWRER": "refrigerant",
"RAOE/TPREU": "refrigerant",
"RAOE/TPREUPBLG": "refrigerators",
"RAOE/TPREUPBLG/REU": "refrigerators",
"RAOE/TPAOEU": "refinances",
"RAOE/TPAOEUPB/*ER": "refinery",
"RAOE/TPAOU/SE": "refusenik",
"RAOE/TPAOU": "refueled",
"RAOE/TPAOU/TA": "refutative",
"RAOE/TPABG": "refactoring",
"RAOE/TPABG/TOR": "refractory",
"RAOE/TPABGT": "refactoring",
"RAOE/TPABGT/REU": "refractoriness",
"RAOE/TPOR/PHA": "reformatory",
"RAOE/TPOR": "reformation",
"RAOE/TPOR/PHA/TOR": "reformatory",
"RAOE/TPER": "referrals",
"RAOE/TPUR": "refurbished",
"RAOE/TPURB": "refurbished",
"RAOE/TRAO*EFB": "retrievable",
"RAOE/TRABG": "retractor",
"RAOE/TA/HREU/KWRA": "retaliatory",
"RAOE/TA/HREU": "retaliate",
"RAOE/TA": "retaliate",
"RAOE/TA/HREU/KWRA/TOR": "retaliatory",
"RAOE/TAR": "retardant",
"RAOE/TAR/TKAPB": "retardancy",
"RAOE/TAL": "retaliates",
"RAOE/TAL/TOR": "retaliatory",
"RAOE/TAL/KWRA": "retaliatory",
"RAOE/TAL/KWRA/TOR": "retaliatory",
"RAOE/TAL/HREU": "retaliates",
"RAOE/TOR/KWREU": "rhetorical",
"RAOE/TOR": "rhetorical",
"RAOE/TOR/KWREUBG": "rhetorically",
"RAOE/TORPL": "reformatory",
"RAOE/TORBG": "rhetorically",
"RAOE/TEU/KAOU": "reticular",
"RAOE/TEU": "reticular",
"RAOE/TEUBG": "reticular",
"RAOE/TEPB": "retentive",
"RAOE/KWRA/HREU": "reality",
"RAOE/KWRABGS/KWRAEUR": "reactionary",
"RAOE/KWRAL": "reality",
"RAOE/KWRO": "rheology",
"RAOE/KWRO/HRO": "rheology",
"RAOE/KWROE": "rheostat",
"RAOE/KWROL": "rheology",
"RAOE/KWREU": "reify",
"RAOE/KHRA/SEU": "reclassification",
"RAOE/KHRA": "reclassification",
"RAOE/KHRA/SEU/TPEU": "reclassification",
"RAOE/KHRAOU": "reclusive",
"RAOE/KHRAOUS": "reclusive",
"RAOE/KHRAS": "reclassification",
"RAOE/KHRAS/TPEU": "reclassification",
"RAOE/KRAOE": "recreates",
"RAOE/KRAOEU": "recitation",
"RAOE/KREU/PHEU": "recriminate",
"RAOE/KREU": "recriminate",
"RAOE/KREUFT": "recrystallize",
"RAOE/KREUPL": "recriminate",
"RAOE/KREUS/TA": "recrystallize",
"RAOE/KREUS": "recrystallize",
"RAOE/KREUS/TAL": "recrystallize",
"RAOE/KA/PEU/KHAOU": "recapitulates",
"RAOE/KA/PEU": "recapitulates",
"RAOE/KA": "recapitulates",
"RAOE/KAOU": "recuperates",
"RAOE/KAOU/PER/KWRA": "recuperative",
"RAOE/KAOU/PER": "recuperates",
"RAOE/KAOUP/RA": "recuperative",
"RAOE/KA*LG": "recalculates",
"RAOE/KAPB": "recantation",
"RAOE/KAPT": "recapitulates",
"RAOE/KAL/SEU": "recalcitrant",
"RAOE/KAL": "recalculates",
"RAOE/KAL/KAOU": "recalculates",
"RAOE/KALS": "recalcitrant",
"RAOE/KO/TPHOEU": "reconnoiters",
"RAOE/KO": "recollect",
"RAOE/KOPB": "reconquista",
"RAOE/KOPB/SAOEU": "reconcilably",
"RAOE/KOPB/SEU": "reconciliatory",
"RAOE/KOPB/SEU/HRA": "reconciliatory",
"RAOE/KOPB/SEU/HRA/TOR": "reconciliatory",
"RAOE/KOPB/SEU/HRAOEU/KWRA": "reconciliatory",
"RAOE/KOPB/SEU/HRAOEU": "reconciliatory",
"RAOE/KOPB/SEU/HRAOEU/KWRA/TOR": "reconciliatory",
"RAOE/KOPB/SEUL": "reconciliate",
"RAOE/KOPB/SEUL/TOR": "reconciliatory",
"RAOE/KOPB/SEUL/KWRA": "reconciliatory",
"RAOE/KOPB/SEUL/KWRA/TOR": "reconciliatory",
"RAOE/KOPB/TPEU": "reconfigure",
"RAOE/KOPB/KWEUS": "reconquista",
"RAOE/KOPB/KEUS": "reconquista",
"RAOE/KOPBS/TRUBG": "reconstructive",
"RAOE/KOPBS": "reconstruction",
"RAOE/KOPL/PWAOEU": "recombinant",
"RAOE/KOPL": "recompense",
"RAOE/KOPL/PWEU": "recombinant",
"RAOE/KOG/TPHEU": "recognizance",
"RAOE/KOG": "recognizance",
"RAOE/KEUPB": "rekindle",
"RAOE/KEUPBD": "rekindle",
"RAOE/KUPL/PWEPB": "recumbency",
"RAOE/KUPL": "recumbency",
"RAOE/KUPL/PWEPBS": "recumbency",
"RAOE/PWE/HREU": "rebellious",
"RAOE/PWE": "rebellious",
"RAOE/PHRE": "replenished",
"RAOE/PHAOE/TKEU": "remedial",
"RAOE/PHAOE": "remedial",
"RAOE/PHAOEUPB": "reminders",
"RAOE/PHAOED": "remediable",
"RAOE/PHAOU/TPHER/KWRA": "remunerative",
"RAOE/PHAOU/TPHER": "remunerates",
"RAOE/PHAOU": "remunerates",
"RAOE/PHAOUPB/RA": "remunerative",
"RAOE/PHAOUPB": "remunerates",
"RAOE/PHAEUR": "remarries",
"RAOE/PHO": "remodeled",
"RAOE/PHOE/TEU": "remotivate",
"RAOE/PHOE": "remotivate",
"RAOE/PHOPB/STRA": "remonstrative",
"RAOE/PHOPB": "remonstrance",
"RAOE/PHOPBS/TRA": "remonstrative",
"RAOE/PHOPBS": "remonstrance",
"RAOE/PHEU": "remittent",
"RAOE/PRAOEU": "reprisal",
"RAOE/PRO": "reprobation",
"RAOE/PRO/TKUBG": "reproductive",
"RAOE/PRO/TKUBGT": "reproductive",
"RAOE/PROE": "reprobation",
"RAOE/PROE/TKUBG": "reproductive",
"RAOE/PROE/TKUBGT": "reproductive",
"RAOE/PRE": "repressive",
"RAOE/PAOU": "repousse",
"RAOE/PAOUTD": "reputedly",
"RAOE/PAEU/TREU": "repatriate",
"RAOE/PAEUR": "reparable",
"RAOE/PAEURT": "repatriate",
"RAOE/PO/SEU": "repositories",
"RAOE/PO": "polarization",
"RAOE/PO/SEU/TOR": "repositories",
"RAOE/PO/PAOU": "repopulated",
"RAOE/PO/HRA/RAOEUZ": "polarization",
"RAOE/PO/HRA": "polarization",
"RAOE/PO/HRAR": "polarization",
"RAOE/PO/HRAR/KWRAOEUZ": "polarization",
"RAOE/POE/HRAR": "polarization",
"RAOE/POE/HRAR/KWRAOEUZ": "polarization",
"RAOE/POERL": "polarization",
"RAOE/POERL/KWRAOEUZ": "polarization",
"RAOE/POR": "reportage",
"RAOE/POP": "repopulated",
"RAOE/POS": "repository",
"RAOE/POS/TOR": "repository",
"RAOE/PE/TEU": "repetitively",
"RAOE/PE": "repellent",
"RAOE/PER": "repercussion",
"RAOE/PEPB": "repentance",
"RAOE/PEPBT": "repentance",
"RAOE/PET": "repetitively",
"RAOE/PUR/POS": "repurposing",
"RAOE/PUR": "repurposing",
"RAOE/PUL": "repulsiveness",
"RAOE/PULS": "repulsiveness",
"RAOE/PUG": "repugnance",
"RAOE/PUG/TPHAPB": "repugnancy",
"RAOE/WREUT": "rewritten",
"RAOE/HRABG": "relaxants",
"RAOE/HROE": "relocates",
"RAOE/HREU/SKWREU/KWRO/SEU": "religiosity",
"RAOE/HREU/SKWREU/KWRO": "religiosity",
"RAOE/HREU/SKWREU": "religiosity",
"RAOE/HREU/SKWREU/KWROS": "religiosity",
"RAOE/HREUPBLG": "religious",
"RAOE/HREUPBLG/KWROS": "religiosity",
"RAOE/HRUBG": "reluctance",
"RAOE/HRUBG/TAPB": "reluctancy",
"RAOE/HA/PWEU/HREU/TAEU": "rehabilitative",
"RAOE/HA/PWEU/HREU": "rehabilitated",
"RAOE/HA/PWEU": "rehabilitated",
"RAOE/HA": "rehabber",
"RAOE/HA/PWEUL/TAEU": "rehabilitative",
"RAOE/HA/PWEUL": "rehabilitated",
"RAOE/HAOEU": "rehydrate",
"RAOE/HAOEUD": "rehydrate",
"RAOE/HAOET": "reheater",
"RAOE/HABL/TAEU": "rehabilitative",
"RAOE/HABL": "rehabilitated",
"RAOE/HER": "rehearsal",
"RAOE/A": "rearrangement",
"RAOE/A/SEPL": "reassembles",
"RAOE/A/SES": "reassessment",
"RAOE/AOE/SRA/HRAOU": "revaluate",
"RAOE/AOE/SRA": "revaluate",
"RAOE/AOE": "reelection",
"RAOE/AOE/SRAL": "reevaluate",
"RAOE/AOU": "reunite",
"RAOE/AOUPB": "reunion",
"RAOE/AOBG": "reactors",
"RAOE/AEU": "reagin",
"RAOE/AR/PHA": "rearmament",
"RAOE/AR": "rearmament",
"RAOE/AB": "reabsorb",
"RAOE/ABG": "reactive",
"RAOE/ABG/TEU": "reactivate",
"RAOE/ABGS/KWRAEUR": "reactionary",
"RAOE/AD": "readmits",
"RAOE/OE": "reopens",
"RAOE/OR/TKPWA": "reorganize",
"RAOE/OR": "reorder",
"RAOE/OR/TKPWAPB": "reorganize",
"RAOE/E/SRA/HRAOU": "revaluate",
"RAOE/E/SRA": "revaluate",
"RAOE/E": "reelection",
"RAOE/E/SRAL": "reevaluate",
"RAOE/EU": "reiterate",
"RAOE/EU/TPHO/KAOU": "reinoculation",
"RAOE/EU/TPHO": "reinoculation",
"RAOE/EU/TPHOBG": "reinoculation",
"RAOE/EU/TER/KWRA": "reiterative",
"RAOE/EU/TER": "reiterate",
"RAOE/EURB": "reissues",
"RAOE/EUPB": "reincarnate",
"RAOE/EUPB/STEU": "reinstitutes",
"RAOE/EUPB/SREU/TKPWOR": "reinvigoration",
"RAOE/EUPB/SREU": "reinvitation",
"RAOE/EUPB/SREUG": "reinvigoration",
"RAOE/EUPB/SRES/TEU": "reinvestigate",
"RAOE/EUPB/SRES": "reinvestigate",
"RAOE/EUPB/TER": "reinterpretation",
"RAOE/EUPB/TER/PRE": "reinterpretation",
"RAOE/EUPB/TER/PRET": "reinterpretation",
"RAOE/EUPB/KWRO/KAOU": "reinoculation",
"RAOE/EUPB/KWRO": "reinoculation",
"RAOE/EUPB/KWROBG": "reinoculation",
"RAOE/EUPB/KAR": "reincarnate",
"RAOE/EUPBT": "reinterpretation",
"RAOE/EUPBT/PRE": "reinterpretation",
"RAOE/EUPBT/PRET": "reinterpretation",
"RAOE/EUPBS": "reinstalled",
"RAOE/EUPL": "reimburse",
"RAOE/EUT/RA": "reiterative",
"RAOE/EUT": "reiterates",
"RAOE/EPB/SKWREU": "reengineering",
"RAOE/EPB": "reenter",
"RAOE/ES/TAB": "reestablish",
"RAOE/ES": "reestablish",
"RAOE/UP/HO*EL": "reupholster",
"RAOE/UP": "reupholster",
"RAOE/UP/HO*ELS": "reupholster",
"RAOEU/TPHO/SE": "rhinoceros",
"RAOEU/TPHO": "rhinoceros",
"RAOEU/TPHO/SER": "rhinoceros",
"RAOEU/TPHOS": "rhinoceros",
"RAOEU/KWRO": "riotous",
"RAOEU/PWA/SRAOEU": "ribavirin",
"RAOEU/PWA": "ribavirin",
"RAOEU/PWOE": "ribosome",
"RAOEUFP": "righteousness",
"RAOEUFL/RAOE": "rivalries",
"RAOEUPB": "rhinestone",
"RAOEUB/SRAOEU": "ribavirin",
"RAOEUB": "ribosome",
"RAOEPB": "reincarnate",
"RAOEPB/STEU": "reinstitutes",
"RAOEPB/SREU": "reinvitation",
"RAOEPB/SREUG": "reinvigoration",
"RAOEPB/KAR": "reincarnate",
"RAOEPBLG": "regions",
"RAOEPBS": "reinstitutes",
"RAOEPBS/TEU": "reinstitutes",
"RAOEBG/HRAOU": "reclusive",
"RAOEG": "regrets",
"RAOEG/RET/-FL": "regretfulness",
"RAOET/PHU": "renewable",
"RAOET/RA": "reiterative",
"RAOES": "riesling",
"RAOES/TREUBG": "restrictive",
"RAOES/TRUBG": "restructures",
"RAOES/TAB": "reestablish",
"RAOES/PROS": "reciprocity",
"RAOES/POPB": "responsively",
"RAOES/PEBG": "respectively",
"RAOU/TKEU": "rudiments",
"RAOU/TKEU/-PLT/KWRAEUR": "rudimentary",
"RAOU/TKEU/-PLT/REU": "rudimentariness",
"RAOU/TKEUPLT/KWRAEUR": "rudimentary",
"RAOU/TKEUPLT/REU": "rudimentariness",
"RAOU/TA/PWAEU": "rutabaga",
"RAOU/TA": "rutabaga",
"RAOU/TEU": "routinize",
"RAOU/PWA": "rubato",
"RAOU/PWE": "rubella",
"RAOU/PWEU": "rubicund",
"RAOU/PHEU": "ruminant",
"RAOU/WE/HREU": "ruellia",
"RAOU/WE": "ruellia",
"RAOU/WEL": "ruellia",
"RAOUFT/A": "roustabout",
"RAOUFT": "roustabout",
"RAOUFT/A*": "roustabout",
"RAOUP": "rupiah",
"RAOUB": "rubric",
"RAOUL/KWREU": "ruliness",
"RAOUG": "rugelach",
"RAOUT/PWAEU": "rutabaga",
"RAOUD/-PLT/KWRAEUR": "rudimentary",
"RAOUD/-PLT/REU": "rudimentariness",
"RAOPL/KWREU": "roominess",
"RAOS": "rooster",
"RAE/SEPL": "reassembled",
"RAEU/SHAL": "raciality",
"RAEU/SREURB": "ravishment",
"RAEU/TKEU": "radius",
"RAEU/TKEU/KWRAEU": "radiators",
"RAEU/TKEU/KWRAEUT": "radiators",
"RAEU/TKEU/KWRO/TKPWRA": "radiographer",
"RAEU/TKEU/KWRO": "radiological",
"RAEU/TKEU/KWRO/TKPWRAF": "radiographer",
"RAEU/TKEU/KWRO/PHE": "radiometer",
"RAEU/TKEU/KWRO/PA/SEU": "radiopacity",
"RAEU/TKEU/KWRO/PA": "radiopacity",
"RAEU/TKEU/KWRO/PAS": "radiopacity",
"RAEU/TKEU/KWRO/HRO": "radiologic",
"RAEU/TKEU/KWRO/HROPBLG": "radiological",
"RAEU/TKEU/KWROE/TKPWRA": "radiographer",
"RAEU/TKEU/KWROE/PA/SEU": "radiopacity",
"RAEU/TKEU/KWROE/PA": "radiopacity",
"RAEU/TKEU/KWROE/PAS": "radiopacity",
"RAEU/TKEU/KWROE/ABG/TEU/SREU": "radioactivity",
"RAEU/TKEU/KWROE/ABG/TEU": "radioactivity",
"RAEU/TKEU/KWROE/ABG": "radioactivity",
"RAEU/TKEU/KWROE/ABGT": "radioactive",
"RAEU/TKEU/KWRORG": "radiography",
"RAEU/TKEU/KWROPL": "radiometer",
"RAEU/TKEU/KWROG/RA": "radiographer",
"RAEU/TKEU/KWROG": "radiographer",
"RAEU/PEU": "rapier",
"RAEURB/KWRAL": "raciality",
"RAEUPB/TPO*R": "rainforest",
"RAEUPB/WA*": "rainwater",
"RAEUPB/WA*U": "rainwater",
"RAEUB": "rabies",
"RAEUD/TKPWRAF": "radiographics",
"RAEUD/KWRAEU": "radiators",
"RAEUD/KWRO": "radiological",
"RAEUD/KWRO/PHE": "radiometer",
"RAEUD/KWRO/PA/SEU": "radiopacity",
"RAEUD/KWRO/PA": "radiopacity",
"RAEUD/KWRO/PAS": "radiopacity",
"RAEUD/KWRO/HRO/SKWREU": "radiological",
"RAEUD/KWRO/HRO": "radiologic",
"RAEUD/KWRO/HROPBLG": "radiological",
"RAEUD/KWROE/PA/SEU": "radiopacity",
"RAEUD/KWROE/PA": "radiopacity",
"RAEUD/KWROE/PAS": "radiopacity",
"RAEUD/KWROE/HRO/SKWREU": "radiological",
"RAEUD/KWROE/HRO": "radiologic",
"RAEUD/KWROE/HROPBLG": "radiological",
"RAEUD/KWROE/ABG/TEU/SREU": "radioactivity",
"RAEUD/KWROE/ABG/TEU": "radioactivity",
"RAEUD/KWROE/ABG": "radioactivity",
"RAEUD/KWROE/ABGT": "radioactive",
"RAEUD/KWROPL": "radiometer",
"RAEUD/KWROG/RA": "radiographer",
"RAEUD/KWROG": "radiographer",
"RAEL/KWREUS": "realistic",
"RAED/O*EPB": "readonly",
"RAUPB/TKAEU": "rendezvous",
"RAUPB": "rendezvous",
"RAUPBD": "rendezvous",
"RAF": "ravelin",
"RAF/KWROE": "ravioli",
"RAFP/PW*ER": "raspberries",
"RAFP/PWER": "raspberry",
"RAP/SKA/HREU": "rapscallion",
"RAP/SKA": "rapscallion",
"RAP/SKAL": "rapscallion",
"RAP/SO": "rhapsody",
"RAP/SOE": "rhapsody",
"RAPB/TKO": "randomize",
"RAPB/TEU": "rantipole",
"RAPB/KHER": "ranchero",
"RAPBLG": "rajma",
"RAPL/SHA": "ramshackle",
"RAPL/SHA*": "ramshackle",
"RAPL/SHA*BG": "ramshackle",
"RAPL/SHABG": "ramshackle",
"RAPL/TPEU": "ramification",
"RAPL/PW*UPBG": "rambunctious",
"RAPL/PWUPBG": "rambunctious",
"RAPS": "rapscallion",
"RAPS/KA/HREU": "rapscallion",
"RAPS/KA": "rapscallion",
"RAPS/KAL": "rapscallion",
"RAL": "rallied",
"RAG/PHU": "ragamuffin",
"RAT/TAOU": "ratatouille",
"RAS": "raspberry",
"RAS/PWER": "raspberry",
"RAZ/PHA": "razzmatazz",
"RAZ/-L/TKAZ": "razzle-dazzle",
"RAZ/-L": "razzle-dazzle",
"RO": "rollers",
"RO/TKPWA": "rogatory",
"RO/TKPWA/TOR": "rogatory",
"RO/TOR": "rhetorical",
"RO/TUPB": "rotundum",
"RO/KO": "rococo",
"RO/KE": "rocketry",
"RO/PHAPB": "romanza",
"RO/HRO": "rolodex",
"RO/HREUBG": "rollicking",
"RO/HRER/PWHRA*EUD": "rollerblading",
"RO*EUD/TKPWRAF": "radiographics",
"ROE/SAEU": "rosacea",
"ROE/SAEURB": "rosacea",
"ROE/TKEU/KWROE": "rhodiola",
"ROE/TKEU": "rhodiola",
"ROE/TKEPB/TEU": "rodenticide",
"ROE/TKEPB": "rodenticide",
"ROE/TAEUR": "rotary",
"ROE/TOE/TEU": "rototiller",
"ROE/TE": "rotenone",
"ROE/TEU/SER": "rotisserie",
"ROE/TEU": "rotini",
"ROE/TEUS": "rotisserie",
"ROE/TUPB": "rotundum",
"ROE/KOE": "rococo",
"ROE/PWO": "robotics",
"ROE/PWEU/KWROE": "robiola",
"ROE/PWEU": "robiola",
"ROE/PHAPB": "romantics",
"ROE/PHAPB/TEU": "romanticism",
"ROE/PHAPB/TEUBG/KWRAOEUZ": "romanticization",
"ROE/PHAPBT": "romantically",
"ROE/HROE": "rolodex",
"ROEU": "royalty",
"ROEUD/TKPWRA": "radiographer",
"ROEUD/PA/SEU": "radiopacity",
"ROEUD/PA": "radiopacity",
"ROEUD/PAS": "radiopacity",
"ROEUD/HRO/SKWREU": "radiological",
"ROEUD/HRO": "radiologic",
"ROEUD/HROPBLG": "radiological",
"ROEUD/ABG/TEU/SREU": "radioactivity",
"ROEUD/ABG/TEU": "radioactivity",
"ROEUD/ABG": "radioactivity",
"ROEUD/ABG/TEUF": "radioactivity",
"ROEB/KWROE": "robiola",
"ROEL/PHRA*EU": "role-playing",
"ROES/KWRAEUR": "rosary",
"ROEZ/KWRAEUR": "rosary",
"ROU/TEU": "routinize",
"ROUPB": "roundel",
"ROUPBD/A*": "roundabout",
"ROFT": "rostrum",
"RORL/PWHRA*EUD": "rollerblading",
"ROPB": "ronyl",
"ROB/ER": "robberies",
"ROG/TOR": "rogatory",
"ROS": "rosters",
"R*EUT/PHEU": "rhythmical",
"R*EF/REPB": "reverential",
"RE/STREUBG": "restrictive",
"RE/STRUBG": "restructures",
"RE/STAB": "reestablish",
"RE/STOR/KWRA": "restorative",
"RE/STEU": "restitution",
"RE/SKWRAOU/SRE": "rejuvenate",
"RE/SKWRAOU": "rejuvenate",
"RE/SKWRAOUF": "rejuvenate",
"RE/SKWRE/TPHER": "regenerate",
"RE/SKWRE": "regenerate",
"RE/SKWREU": "regimented",
"RE/SKWREUS": "registers",
"RE/SKWREPB": "regenerate",
"RE/SKE": "reschedules",
"RE/SPHREPB": "resplendent",
"RE/SPOPB": "respondendum",
"RE/SPOPB/TKEPB": "respondendum",
"RE/SPOPBD/-B": "respondents",
"RE/SPEUR/KWRA": "respiratory",
"RE/SPEUR": "respiration",
"RE/SPEUR/KWRA/TOR": "respiratory",
"RE/SPEUR/KWRAEU": "respirator",
"RE/SPEBG": "respectively",
"RE/SRA": "revalue",
"RE/SRAO*EULT": "revitalize",
"RE/SRAOEU": "revitalize",
"RE/SRAOEU/TA/HRAOEUZ": "revitalization",
"RE/SRAOEU/TA": "revitalization",
"RE/SRAOEU/TAL": "revitalize",
"RE/SRAFBG": "revascularate",
"RE/SRAPL": "revamped",
"RE/SRAL": "revaluate",
"RE/SRAS/KAOU/HRAR": "revascularate",
"RE/SRAS/KAOU": "revascularate",
"RE/SRAS": "revascularate",
"RE/SRO": "revolution",
"RE/SRO/HRAOUGS/KWRAEUR": "revolutionary",
"RE/SROE": "revolution",
"RE/SROE/KAPB": "revocandi",
"RE/SROE/HRAOUGS/KWRAEUR": "revolutionary",
"RE/SROL": "revolver",
"RE/SRE/SREPB": "reverential",
"RE/SRE": "revelatory",
"RE/SRE/HRA": "revelatory",
"RE/SRE/HRA/TOR": "revelatory",
"RE/SRE/HRAEU": "revelatory",
"RE/SRE/HRAEU/TOR": "revelatory",
"RE/SRE/HRAEUT": "revelatory",
"RE/SREU/SREU/TPEU": "revivification",
"RE/SREU/SREU": "revivification",
"RE/SREU": "revisit",
"RE/SREUF": "revivification",
"RE/SRER": "reverberate",
"RE/SRER/KWREPB": "reverential",
"RE/SRER/PWRA": "reverberatory",
"RE/SRER/PWRA/TOR": "reverberatory",
"RE/SRER/PWER/KWRA": "reverberatory",
"RE/SRER/PWER": "reverberate",
"RE/SRERB/TOR": "reverberatory",
"RE/SRERB/RA": "reverberatory",
"RE/SRERB/RA/TOR": "reverberatory",
"RE/SRERGS/KWRAEUR": "reversionary",
"RE/SREL/TOR": "revelatory",
"RE/SRET": "revetment",
"RE/SAOEU": "recycled",
"RE/SAOEU/TAL": "revitalization",
"RE/SAOEUBG": "recycled",
"RE/SAOU": "resumes",
"RE/SO/TPHAEU": "resonator",
"RE/SO": "resolute",
"RE/SO*": "resonate",
"RE/SOE/TPHAEU": "resonator",
"RE/SOE": "resolute",
"RE/SOR": "resorcin",
"RE/SORP": "resorptive",
"RE/SE": "recessive",
"RE/SEU/SKWRAOU/WAEUR": "residuary",
"RE/SEU/SKWRAOU": "residuals",
"RE/SEU": "resilience",
"RE/SEU/TKEU": "residuary",
"RE/SEU/TKEU/WAEUR": "residuary",
"RE/SEU/TKEPB": "residential",
"RE/SEU/PRO": "reciprocation",
"RE/SEU/PROE": "reciprocation",
"RE/SEU/PEU": "recipients",
"RE/SEU/HREU": "resilience",
"RE/SEUR/KAOU": "recirculates",
"RE/SEUR": "recirculates",
"RE/SEURP": "reciprocal",
"RE/SEURBG": "recirculates",
"RE/SEUP": "reciprocity",
"RE/SEUP/RO/SEU": "reciprocity",
"RE/SEUP/RO": "reciprocal",
"RE/SEUP/ROE": "reciprocal",
"RE/SEUP/ROS": "reciprocity",
"RE/SEUPBLG/WAEUR": "residuary",
"RE/SEUPBLG": "residuals",
"RE/SEUL": "resilience",
"RE/SEUG": "resignation",
"RE/SEUS": "resistive",
"RE/SEUD": "residuals",
"RE/SEUD/WAEUR": "residuary",
"RE/SER": "researchers",
"RE/SEP/TA": "receptacles",
"RE/SEP": "receptivity",
"RE/SEP/TABG": "receptacles",
"RE/SEPB": "recency",
"RE/SEPBS": "recency",
"RE/SEPL": "resembles",
"RE/SU/SEU/TAEU": "resuscitator",
"RE/SU/SEU": "resuscitates",
"RE/SU": "resuscitates",
"RE/SUR": "resurrection",
"RE/SUB": "resubmit",
"RE/SUL": "resultant",
"RE/SUS/TAEU": "resuscitator",
"RE/SUS": "resuspend",
"RE/TKPWRE": "regressivity",
"RE/TKPWRE/SEU/SREU": "regressivity",
"RE/TKPWRE/SEU": "regressivity",
"RE/TKPWRES/TEUF": "regressivity",
"RE/TKPWA": "regatta",
"RE/TKPWAOU/HRA": "regularizing",
"RE/TKPWAOU": "regulon",
"RE/TKPWAOU/HRA/TOR": "regulatory",
"RE/TKPWAOU/HRAEU": "regulative",
"RE/TKPWAOU/HRAEUR": "regularly",
"RE/TKPWAOU/HRAEUR/KWREU": "regularity",
"RE/TKPWAEU/HREU": "regalia",
"RE/TKPWEPB/TPAOEU": "regenpfeifer",
"RE/TKPWEPB": "regenpfeifer",
"RE/TKPWUR/SKWREU": "regurgitates",
"RE/TKPWUR": "regurgitates",
"RE/TKPWURPBLG": "regurgitates",
"RE/TKAOE": "redesigns",
"RE/TKAOEU": "redirect",
"RE/TKAOUP/HREU": "reduplication",
"RE/TKAOUP": "reduplication",
"RE/TKAOUPL": "reduplication",
"RE/TK*EU": "redirects",
"RE/TK*EPL": "redemption",
"RE/TKE/SRE": "redevelops",
"RE/TKE": "redeploy",
"RE/TKEUS/TREU": "redistribute",
"RE/TKEUS": "rediscover",
"RE/TKEPL": "redemption",
"RE/TKUPB": "redundance",
"RE/TKUPB/TKAPB": "redundancy",
"RE/TKUBG": "reductive",
"RE/TPHREBG": "reflectivity",
"RE/TPHA": "renaissance",
"RE/TPHAEU": "renaissance",
"RE/TPHAEU/KWREU": "renaissance",
"RE/TPHOE": "renovates",
"RE/TPHOBG": "reinoculation",
"RE/TPHE": "renegotiation",
"RE/TPHE/TKPWOERB": "renegotiates",
"RE/TPHEG": "reneging",
"RE/TPHUPB/SEU": "renunciation",
"RE/TPHUPB": "renunciation",
"RE/TPHUPBS": "renunciation",
"RE/TPRABG": "refractively",
"RE/TPRABG/TOR/KWREU": "refractoriness",
"RE/TPRABGT/REU": "refractoriness",
"RE/TPREU/SKWRER/KWRAEU": "refrigerators",
"RE/TPREU/SKWRER": "refrigerant",
"RE/TPREU": "refrigerant",
"RE/TPREUPBLG": "refrigerators",
"RE/TPREUPBLG/REU": "refrigerators",
"RE/TPREBGT": "reflective",
"RE/TPAOEU": "refinances",
"RE/TPAOEUPB/*ER": "refineries",
"RE/TPAOU": "refueled",
"RE/TPAOU/SE": "refusenik",
"RE/TPAOU/TA": "refutative",
"RE/TPABG": "refactoring",
"RE/TPABG/TOR": "refractory",
"RE/TPABGT": "refactoring",
"RE/TPOR/PHA": "reformatory",
"RE/TPOR": "reformation",
"RE/TPOR/PHA/TOR": "reformatory",
"RE/TPER": "referrals",
"RE/TPER/KWREPB": "referendum",
"RE/TPUR": "refurbished",
"RE/TPURB": "refurbished",
"RE/TRABG": "retractor",
"RE/TRO/SPEBG": "retrospectively",
"RE/TRO/ABG": "retroactive",
"RE/TRO/ABGT": "retroactive",
"RE/TROE/SPEBG": "retrospectively",
"RE/TROE/ABG": "retroactive",
"RE/TROE/ABGT": "retroactive",
"RE/TREU/PWAOU": "retributive",
"RE/TREU": "retribution",
"RE/TREU/PWAOU/TOR": "retributory",
"RE/TREU/PWAOU/TEU": "retributivism",
"RE/TA/HREU/KWRA": "retaliatory",
"RE/TA/HREU": "retaliates",
"RE/TA": "retaliates",
"RE/TA/HREU/KWRA/TOR": "retaliatory",
"RE/TAR": "retardant",
"RE/TAR/TKAPB": "retardancy",
"RE/TAL": "retaliates",
"RE/TAL/TOR": "retaliatory",
"RE/TAL/KWRA": "retaliatory",
"RE/TAL/KWRA/TOR": "retaliatory",
"RE/TO/TPHO/TO": "retinotopic",
"RE/TO/TPHO": "retinotopic",
"RE/TO": "retinotopic",
"RE/TOR": "rhetorical",
"RE/TEU": "reticulum",
"RE/TEU/TPHA/KAOU": "retinaculum",
"RE/TEU/TPHABG": "retinaculum",
"RE/TEU/TPHO/TO": "retinotopic",
"RE/TEU/TPHO": "retinology",
"RE/TEU/TPHO/PA": "retinopathy",
"RE/TEU/TPHO/HRO": "retinology",
"RE/TEU/TPHOP": "retinopathy",
"RE/TEU/TPHOS/KO": "retinoscopy",
"RE/TEU/TPHOS": "retinoscopy",
"RE/TEU/TPHEBG/TO": "retinectomy",
"RE/TEU/TPHEBG": "retinectomy",
"RE/TEU/TPHEBGT": "retinectomy",
"RE/TEU/KAOU": "reticulum",
"RE/TEUBG": "reticle",
"RE/TEPB": "retentive",
"RE/KWRA": "realize",
"RE/KWRABGS/KWRAEUR": "reactionary",
"RE/KWRAL": "reality",
"RE/KWRO/HRO": "rheology",
"RE/KWRO": "rheology",
"RE/KWROL": "rheology",
"RE/KWREU": "reify",
"RE/KWEU": "requiem",
"RE/KWEUT": "requital",
"RE/KHRA/SEU": "reclassification",
"RE/KHRA": "reclamation",
"RE/KHRA/SEU/TPEU": "reclassification",
"RE/KHRAOU": "reclusive",
"RE/KHRAS": "reclassification",
"RE/KHRAS/TPEU": "reclassification",
"RE/KRAOE": "recreant",
"RE/KRAOEU": "recitation",
"RE/KREU/PHEU": "recriminate",
"RE/KREU": "recriminate",
"RE/KREUFT": "recrystallize",
"RE/KREUPL": "recriminate",
"RE/KREUS/TA": "recrystallize",
"RE/KREUS": "recrystallize",
"RE/KREUS/TAL": "recrystallize",
"RE/KA/PEU/KHAOU": "recapitulates",
"RE/KA/PEU": "recapitulates",
"RE/KA": "recapitulates",
"RE/KA/PEUFP": "recapitulates",
"RE/KAOU": "recuperates",
"RE/KAOU/PER/KWRA": "recuperative",
"RE/KAOU/PER": "recuperates",
"RE/KAOUP/RA": "recuperative",
"RE/KA*LG": "recalculate",
"RE/KAPB": "recantation",
"RE/KAPT": "recapitulates",
"RE/KAL/SEU": "recalcitrant",
"RE/KAL": "recalculates",
"RE/KAL/KAOU": "recalculates",
"RE/KALS": "recalcitrant",
"RE/KO/TPHA": "reconnaissance",
"RE/KO": "recollection",
"RE/KO/TPHOEU": "reconnoiters",
"RE/KO/PHEPB": "recommendations",
"RE/KOE/PHEPB": "recommendations",
"RE/KOE": "recommends",
"RE/KOPB/SEU": "reconciliatory",
"RE/KOPB/SEU/HRA": "reconciliatory",
"RE/KOPB/SEU/HRA/TOR": "reconciliatory",
"RE/KOPB/SEU/HREU/KWRA": "reconciliatory",
"RE/KOPB/SEU/HREU": "reconciliatory",
"RE/KOPB/SEU/HREU/KWRA/TOR": "reconciliatory",
"RE/KOPB/SEUL": "reconciliate",
"RE/KOPB/SEUL/TOR": "reconciliatory",
"RE/KOPB/SEUL/KWRA": "reconciliatory",
"RE/KOPB/SEUL/KWRA/TOR": "reconciliatory",
"RE/KOPB/TPEU": "reconfigure",
"RE/KOPB/KWEUS": "reconquista",
"RE/KOPB/KEUS": "reconquista",
"RE/KOPBL": "recombining",
"RE/KOPBS/TRUBG": "reconstructive",
"RE/KOPBS": "reconstruction",
"RE/KOPL/PWAOEU": "recombinant",
"RE/KOPL": "recompense",
"RE/KOPL/PWEU": "recombinant",
"RE/KOB/SAOEUL": "reconcilably",
"RE/KOB": "reconcilably",
"RE/KOG": "recognition",
"RE/KOG/TPHAOEU": "recognizee",
"RE/KOG/TPHEU": "recognizance",
"RE/KEUPB": "rekindle",
"RE/KEUPBD": "rekindle",
"RE/KUPL/PWEPB": "recumbency",
"RE/KUPL": "recumbency",
"RE/KUPL/PWEPBS": "recumbency",
"RE/PWAOUT": "rebuttals",
"RE/PWE/HREU": "rebellious",
"RE/PWE": "rebellious",
"RE/PWU": "rebutter",
"RE/PHRE": "replenished",
"RE/PHREU": "replicas",
"RE/PHREF": "replevy",
"RE/PHAOE/TKEU": "remedial",
"RE/PHAOE": "remedial",
"RE/PHAOEUPB": "reminders",
"RE/PHAOED": "remediable",
"RE/PHAOU/TPHER/KWRA": "remunerative",
"RE/PHAOU/TPHER": "remunerates",
"RE/PHAOU": "remunerates",
"RE/PHAOUPB/RA": "remunerative",
"RE/PHAOUPB": "remunerates",
"RE/PHAEUR": "remarries",
"RE/PHO": "remodels",
"RE/PHOE/TEU": "remotivate",
"RE/PHOE": "remotivate",
"RE/PHOF": "removable",
"RE/PHOPB/STRA": "remonstrative",
"RE/PHOPB": "remonstrance",
"RE/PHOPBS/TRA": "remonstrative",
"RE/PHOPBS": "remonstrance",
"RE/PHOT": "remoteness",
"RE/PHE": "remedies",
"RE/PHEU": "remittent",
"RE/PHEU/TPHEU": "reminiscence",
"RE/PHEU/TEU": "remittitur",
"RE/PRAOE/SEPB": "representation",
"RE/PRAOE": "reprehends",
"RE/PRAOE/HEPBS": "reprehensible",
"RE/PRAOEU": "reprisal",
"RE/PRO": "reprobation",
"RE/PRO/TKUBG": "reproductive",
"RE/PRO/TKUBGT": "reproductive",
"RE/PROE": "reprobation",
"RE/PROE/TKUBG": "reproductive",
"RE/PROE/TKUBGT": "reproductive",
"RE/PRE": "reprehends",
"RE/PRE/SEPB/TA": "representatives",
"RE/PRE/SEPB": "representation",
"RE/PRE/SEPBT/A*T": "representatives",
"RE/PRE/HEPBS": "reprehensible",
"RE/PREU": "reprimand",
"RE/PA": "reparation",
"RE/PAOU": "reputation",
"RE/PAOU/TKEU": "repudiate",
"RE/PAOUTD": "reputedly",
"RE/PAOUD": "repudiate",
"RE/PAEU/TREU": "repatriate",
"RE/PAEUR/KWRA": "reparative",
"RE/PAEURT": "repatriate",
"RE/PAR": "reparation",
"RE/PO/S*EU/TOR": "repository",
"RE/PO/S*EU": "repository",
"RE/PO": "polarization",
"RE/PO/SEU": "repositories",
"RE/PO/SEU/TOR": "repositories",
"RE/PO/SEUS/TOR": "repository",
"RE/PO/SEUS": "repository",
"RE/PO/PAOU": "repopulated",
"RE/PO/HRA/RAOEUZ": "polarization",
"RE/PO/HRA": "polarization",
"RE/PO/HRAR": "polarization",
"RE/PO/HRAR/KWRAOEUZ": "polarization",
"RE/POE/HRAR": "polarization",
"RE/POE/HRAR/KWRAOEUZ": "polarization",
"RE/POERL": "polarization",
"RE/POERL/KWRAOEUZ": "polarization",
"RE/POR": "reportage",
"RE/POP": "repopulated",
"RE/POS": "repository",
"RE/POS/TOR": "repository",
"RE/POZ": "repository",
"RE/PE": "repellent",
"RE/PE/TEU": "repetitively",
"RE/PE/TEURB": "repetitious",
"RE/PER": "repercussion",
"RE/PER/TOR": "repertory",
"RE/PEPB": "repentance",
"RE/PEPBT": "repentance",
"RE/PET": "repetitively",
"RE/PUR/POS": "repurposing",
"RE/PUR": "repurposing",
"RE/PUB/HREU": "republican",
"RE/PUB": "republic",
"RE/PUL": "repulsiveness",
"RE/PULS": "repulsiveness",
"RE/PUG": "repugnance",
"RE/PUG/TPHAPB": "repugnancy",
"RE/WREUT": "rewritten",
"RE/HRA/TEU/SREU": "relativity",
"RE/HRA/TEU": "relativity",
"RE/HRA": "relatives",
"RE/HRABG": "relaxants",
"RE/HROE": "relocates",
"RE/HRE": "relegated",
"RE/HRE/SRAPB": "relevancy",
"RE/HREU": "reliquary",
"RE/HREU/SKWREU/KWRO/SEU": "religiosity",
"RE/HREU/SKWREU/KWRO": "religiosity",
"RE/HREU/SKWREU": "religiosity",
"RE/HREU/SKWREU/KWROS": "religiosity",
"RE/HREU/KWAEUR": "reliquary",
"RE/HREUPB": "relinquishes",
"RE/HREUPBLG": "religious",
"RE/HREUPBLG/KWROS": "religiosity",
"RE/HREUPBG": "relinquishes",
"RE/HRUBG": "reluctance",
"RE/HRUBG/TAPB": "reluctancy",
"RE/HA/PWEU/HREU/TAEU": "rehabilitative",
"RE/HA/PWEU/HREU": "rehabilitated",
"RE/HA/PWEU": "rehabilitated",
"RE/HA": "rehabber",
"RE/HA/PWEUL/TAEU": "rehabilitative",
"RE/HA/PWEUL": "rehabilitated",
"RE/HAOEU": "rehydrate",
"RE/HAOEUD": "rehydrate",
"RE/HAOET": "reheater",
"RE/HABL/TAEU": "rehabilitative",
"RE/HABL": "rehabilitated",
"RE/HER": "rehearsal",
"RE/A": "rearrangement",
"RE/A/SEPL": "reassembles",
"RE/A/SES": "reassessment",
"RE/AOE/SRA/HRAOU": "reevaluate",
"RE/AOE/SRA": "reevaluate",
"RE/AOE": "reelection",
"RE/AOE/SRAL": "reevaluate",
"RE/AOU": "reunite",
"RE/AOUPB": "reuniens",
"RE/AOBG": "reactors",
"RE/AEU": "reagin",
"RE/AR/PHA": "rearmament",
"RE/AR": "rearmament",
"RE/AB": "reabsorb",
"RE/ABG": "reactive",
"RE/ABG/TEU": "reactivate",
"RE/ABGS/KWRAEUR": "reactionary",
"RE/AD": "readmits",
"RE/OE": "reopens",
"RE/OR/TKPWA": "reorganize",
"RE/OR": "reorder",
"RE/OR/TKPWAPB": "reorganize",
"RE/E/SRA/HRAOU": "reevaluate",
"RE/E/SRA": "reevaluate",
"RE/E": "reelection",
"RE/E/SRAL": "reevaluate",
"RE/EU": "reiterate",
"RE/EU/TPHO/KAOU": "reinoculation",
"RE/EU/TPHO": "reinoculation",
"RE/EU/TPHOBG": "reinoculation",
"RE/EU/TER/KWRA": "reiterative",
"RE/EU/TER": "reiterate",
"RE/EURB": "reissues",
"RE/EUPB": "reincarnate",
"RE/EUPB/STEU": "reinstitutes",
"RE/EUPB/SREU/TKPW": "reinvigoration",
"RE/EUPB/SREU": "reinvitation",
"RE/EUPB/SREU/TKPWOR": "reinvigorating",
"RE/EUPB/SREUG": "reinvigoration",
"RE/EUPB/SRES/TEU": "reinvestigate",
"RE/EUPB/SRES": "reinvestigate",
"RE/EUPB/TER/PRE": "reinterpretation",
"RE/EUPB/TER": "reinterpret",
"RE/EUPB/KWRO/KAOU": "reinoculation",
"RE/EUPB/KWRO": "reinoculation",
"RE/EUPB/KWROBG": "reinoculation",
"RE/EUPB/KAR": "reincarnate",
"RE/EUPBT/PRE": "reinterpretation",
"RE/EUPBT": "reinterpret",
"RE/EUPBS": "reinstalled",
"RE/EUPL": "reimburse",
"RE/EUT": "reiterative",
"RE/EUT/RAT": "reiterative",
"RE/EPB/SKWREU": "reengineering",
"RE/EPB": "reenter",
"RE/ES/TAB": "reestablish",
"RE/ES": "reestablish",
"RE/UP/HO*EL": "reupholster",
"RE/UP": "reupholster",
"RE/UP/HO*ELS": "reupholster",
"REU/SKWREU/TKEU": "rigidity",
"REU/SKWREU": "rigidity",
"REU/SRAOU": "rivulet",
"REU/SREU/KWRER": "riviera",
"REU/SREU": "riviera",
"REU/SO": "risotto",
"REU/SOE": "rissole",
"REU/SOR/KWREU": "risorius",
"REU/SOR": "risorius",
"REU/TKPWA/TOE": "rigatoni",
"REU/TKPWA": "rigate",
"REU/TKEU/KAOU": "ridiculous",
"REU/TKEU": "ridicules",
"REU/TKEUBG": "ridiculous",
"REU/KO": "ricotta",
"REU/KOE": "ricochet",
"REU/KET/SEU": "rickettsial",
"REU/PHAPB/TA": "rimantadine",
"REU/PHAPB": "rimantadine",
"REU/PHAPBT": "rimantadine",
"REU/PAEUR": "riparian",
"REU/PAEUR/KWREU": "riparian",
"REU/HREU": "vilify",
"REUF/KWRER": "riviera",
"REUFP/WAL/KWREUS": "ritualistic",
"REUPB": "rinku",
"REUPB/TPOR": "rinforzo",
"REUBG": "rickrack",
"REUG/TOE": "rigatoni",
"REUG/PHA": "rigmarole",
"REUG/PHAR": "rigmarole",
"REUT/WAL": "ritualized",
"REUT": "ritualized",
"REUS": "risque",
"REF/KWRAOU": "refugee",
"REF/HRAEU": "revelatory",
"REF/HRAEU/TOR": "revelatory",
"REF/HRAEUT": "revelatory",
"REF/REPB": "referential",
"REFRP": "respiratory",
"REFRP/TOR": "respiratory",
"REFP/RA": "respiratory",
"REFP/RA/TOR": "respiratory",
"REFP/RAEU": "respirator",
"REFBG": "revocability",
"REFL/TOR": "revelatory",
"REFG": "resignation",
"REFGS/KWRAEUR": "revolutionary",
"RERP": "reprimands",
"RERBG/WEU": "requisites",
"RERBG": "recreation",
"RERT/SPEBG": "retrospectively",
"RERT/PWAOU": "retributive",
"RERT/PWAOU/TOR": "retributory",
"RERT/PWAOU/TEU": "retributivism",
"RERT/ABG": "retroactive",
"RERT/ABGT": "retroactive",
"REP/TOR": "repertory",
"REP/TEU/HREU": "reptilian",
"REP/TEU": "reptilian",
"REP/TEUL": "reptilian",
"REP/HREU": "replicas",
"REP/RAOE/SEPB": "representation",
"REP/RAOE": "reprehends",
"REP/RAOE/HEPBS": "reprehensible",
"REP/RE": "reprehends",
"REP/RE/SEPB/TA": "representatives",
"REP/RE/SEPB": "representation",
"REP/RE/HEPBS": "reprehensible",
"REP/REU": "reprimands",
"REPB/TKAEU": "rendezvous",
"REPBLGS": "registers",
"REPL/TPHEU": "reminiscence",
"REBG": "reckless",
"REBG/SAOEUL/U/-BL": "reconcilably",
"REBG/SAOEUL/U": "reconcilably",
"REBG/SEUL": "reconciliate",
"REBG/SEUL/TOR": "reconciliatory",
"REBG/TPHAOEU": "recognizee",
"REBG/TPHOEU": "reconnoiters",
"REBG/TAPB": "rectangles",
"REBG/TAPB/TKPWAOU": "rectangular",
"REBG/TAPBG/TKPWAOU": "rectangular",
"REBG/TEU": "rectilinear",
"REBG/TEU/TPEU": "rectification",
"REBG/TEU/HREU/TPHAOE": "rectilinear",
"REBG/TEU/HREU": "rectilinear",
"REBG/TEU/HREU/TPAOE": "rectilinear",
"REBG/TEU/HREUPB": "rectilinear",
"REBG/PHEPB": "recommendation",
"REBG/WEU/SEUGS": "requisitioning",
"REBG/WEU": "requiem",
"REBG/HRA": "reclamation",
"REBG/HRAOU": "reclusive",
"REBG/RAOE": "recreant",
"REBGT/HREU/TPHAOE": "rectilinear",
"REBGT/HREUPB": "rectilinear",
"REL": "realms",
"REL/SRAPB": "relevancy",
"REL/TEU/SREU": "relativity",
"REL/TEU": "relativity",
"REG/KWREPB": "regenpfeifer",
"REG/HRA": "regulative",
"REG/HRA/TOR": "regulatory",
"REG/HRAEU": "regulative",
"REG/HRAEUR": "regularity",
"REG/REFT/-FL": "regretfulness",
"REG/REFT": "regretfulness",
"RET/TPHA/KAOU": "retinacular",
"RET/TPHABG": "retinaculum",
"RET/TPHO/TO": "retinotopic",
"RET/TPHO/PA": "retinopathy",
"RET/TPHO/HRO": "retinology",
"RET/TPHOP": "retinopathy",
"RET/TPHOS/KO": "retinoscopy",
"RET/TPHOS": "retinoscopy",
"RET/TPHEBG/TO": "retinectomy",
"RET/TPHEBG": "retinectomy",
"RET/TPHEBGT": "retinectomy",
"RET/RO/SPEBG": "retrospectively",
"RET/RO/ABG": "retroactive",
"RET/RO/ABGT": "retroactive",
"RET/ROE/SPEBG": "retrospectively",
"RET/ROE/ABG": "retroactive",
"RET/ROE/ABGT": "retroactive",
"RET/REU": "retribution",
"RET/REU/PWAOU": "retributive",
"RET/REU/PWAOU/TOR": "retributory",
"RET/REU/PWAOU/TEU": "retributivism",
"RES/TKEPB": "residential",
"RES/TPHAEU": "resonator",
"RES/TREUBG": "restrictive",
"RES/TRUBG": "restructures",
"RES/TA": "restaurants",
"RES/TAU": "restaurants",
"RES/TAUR": "restaurants",
"RES/TAR": "restaurants",
"RES/TOR/KWRA": "restorative",
"RES/TEU": "restitution",
"RES/PHREPB": "resplendent",
"RES/PRA": "respiratory",
"RES/PRA/TOR": "respiratory",
"RES/PRAEU": "respirator",
"RES/PROS": "reciprocity",
"RES/POPB": "responsively",
"RES/PEUR/KWRA": "respiratory",
"RES/PEUR": "respirate",
"RES/PEUR/KWRA/TOR": "respiratory",
"RES/PEUR/KWRAEU": "respirator",
"RES/PEBG": "respectively",
"RU/TA/PWAEU": "rutabaga",
"RU/TA": "rutabaga",
"RU/PWEBG": "rudbeckia",
"RURS": "recursive",
"RUP": "ruptures",
"RUPB/A*": "runaround",
"RUPB/*FT": "run-of-the-mill",
"RUPB/-FT": "run-of-the-mill",
"RUB/A*/TK*UB": "rub-a-dub-dub",
"RUB/A*": "rub-a-dub-dub",
"RUB/A*/TKUB": "rub-a-dub-dub",
"RUB/*E": "rubbery",
"RUT/PWAEU": "rutabaga",
"RUS/TOE/HRAOE": "rustoleum",
"RUS/TOE": "rustoleum",
"RUS/TOEL": "rustoleum",
"RUD/PWEBG": "rudbeckia",
"A/STPAO*ER": "aspheric",
"A/STP*EUBGS": "asphyxiate",
"A/STHAOEPB": "asthenia",
"A/STRO/TPHO": "astronomer",
"A/STRO": "astrological",
"A/STRO/TPHOE": "astronomy",
"A/STRO/TPHOPL": "astronomically",
"A/STRO/TP*EU": "astrophysics",
"A/STRO/TP*EUS": "astrophysics",
"A/STRO/TUR": "astroturf",
"A/STRO/HRO": "astrologer",
"A/STRO/HROPBLG": "astrological",
"A/STROE/TP*EU": "astrophysics",
"A/STROE": "astroturf",
"A/STROE/TP*EUS": "astrophysics",
"A/STROE/TUR": "astroturf",
"A/STROPB": "astronomers",
"A/STROL": "astrologer",
"A/STREUPBLG": "astringency",
"A/STREUPBG": "astringency",
"A/STREUPBG/EPB": "astringency",
"A/STREUPBG/EPBT": "astringency",
"A/STO": "astonishes",
"A/STOPB": "astonishes",
"A/STEUG/PHA": "astigmatic",
"A/STEUG": "astigmat",
"A/SKWRAOUF": "adjuvant",
"A/SKWRAOUD": "adjudicates",
"A/SKWRAEUS/KWREPB": "adjacency",
"A/SKWRAEUS": "adjacency",
"A/SKWREU": "agitates",
"A/SKWREPB": "agendas",
"A/SKWREBGT": "adjectives",
"A/SPHRE": "asplenic",
"A/SPHREPB": "asplenic",
"A/SPAEUR": "asparagus",
"A/SPAEUR/KWRA": "asparagus",
"A/SPAR": "aspartic",
"A/SPER": "asperity",
"A/SRA": "avahi",
"A/SRAUPBT": "avant-garde",
"A/SRO/KA": "avocado",
"A/SRO": "avocation",
"A/SROE/KA": "avocado",
"A/SROE": "avocation",
"A/SRE": "avenue",
"A/SREU/TKE": "avidemux",
"A/SREU": "avidemux",
"A/SREPB": "avenger",
"A/SA/SEU": "assassinate",
"A/SA": "assassin",
"A/SAOE": "ascetic",
"A/SAOET": "ascetical",
"A/SAOUPL/-P": "assumpsit",
"A/SA*EUL": "azalea",
"A/SAS": "assassinate",
"A/SO": "assonance",
"A/SOE/SHEU": "associate",
"A/SOE": "associate",
"A/SOE/SEU": "associate",
"A/SOERB": "associate",
"A/SOERB/KWREU": "associate",
"A/SOES/KWRA": "associative",
"A/SOES": "associated",
"A/S*EU": "azimuth",
"A/S*EUPBG/RO": "asynchronous",
"A/S*UPL": "assumptive",
"A/SE": "ascetic",
"A/SEU/TKAOU": "assiduous",
"A/SEU": "asymmetric",
"A/SEU/PHE": "asymmetric",
"A/SEU/PHEU": "assimilate",
"A/SEU/PHET/REU": "asymmetrically",
"A/SEU/PHET": "asymmetric",
"A/SEU/PHET/REUBG": "asymmetric",
"A/SEUPL": "assimilation",
"A/SEUPL/TOT": "asymptotically",
"A/SEUS": "assistive",
"A/SEUD/SKWREPB": "acidogenic",
"A/SER": "acerbic",
"A/SEP": "aseptic",
"A/SEPB/TKAPB": "ascendancy",
"A/SEPB": "ascendant",
"A/SEPBD/KWRAPBS": "ascendancy",
"A/SEPL": "assembles",
"A/SEPT": "aseptically",
"A/SUPL": "assumptive",
"A/TKPWHRAOUT/TPHA": "agglutinative",
"A/TKPWHRAOUT": "agglutinative",
"A/TKPWHRAOUT/TPHAT": "agglutinative",
"A/TKPWHROPL": "agglomerate",
"A/TKPWRAEUR": "agrarian",
"A/TKPWRAPB": "agranular",
"A/TKPWRAPBD/KWRAOEUZ": "aggrandizement",
"A/TKPWRAPBD": "aggrandizement",
"A/TKPWRO/TPHO": "agronomy",
"A/TKPWRO": "agronomy",
"A/TKPWROPB": "agronomy",
"A/TKPWRE": "aggressive",
"A/TKPWO": "agonize",
"A/TKPWOR": "agoraphobia",
"A/TKPWOR/TPO*EB": "agoraphobia",
"A/TKRA": "adragant",
"A/TKREPB": "adrenaline",
"A/TKAOU": "adulate",
"A/TKAOUL": "adulation",
"A/TKAP": "adapter",
"A/TKO/HRE": "adolescence",
"A/TKOE": "adolescence",
"A/TKOE/HRE": "adolescence",
"A/TKOP": "adoptee",
"A/TKOPL": "accommodates",
"A/TKE/TPHOE": "adenosis",
"A/TKE": "adenosis",
"A/TKEPB": "addendum",
"A/TKUBG": "adductor",
"A/TPHREU/PWER": "aflibercept",
"A/TPHREU": "aflibercept",
"A/TPHREURB": "aflibercept",
"A/TPHA": "analytical",
"A/TPHA/TPHRA*BG": "anaphylaxis",
"A/TPHA/TP*EU/HRABG": "anaphylactic",
"A/TPHA/TP*EU": "anaphylactic",
"A/TPHA/TO": "anatomist",
"A/TPHA/TOPL": "anatomical",
"A/TPHA/KRO": "anachronous",
"A/TPHA/KRO/TPHEUS": "anachronistic",
"A/TPHA/KOPB": "anaconda",
"A/TPHA/PWO": "anabolic",
"A/TPHA/HRO": "analogous",
"A/TPHA/HROPBLG": "analogical",
"A/TPHA/HREUT": "analytical",
"A/TPHAOE": "anemic",
"A/TPHAOEU": "annihilate",
"A/TPHAOEUL": "annihilation",
"A/TPHAOEPL": "anemic",
"A/TPHAOU": "annular",
"A/TPHAF": "anaphora",
"A/TPHAR/KWROE": "anaerobic",
"A/TPHAR": "anarchist",
"A/TPHAL": "analogous",
"A/TPHAT": "anatomist",
"A/TPHO/SRAOU/HRA": "anovulatory",
"A/TPHO/SRAOU": "anovulation",
"A/TPHO": "analogs",
"A/TPHO/TPHEU": "anonymous",
"A/TPHO/TPHEUPL": "anonymity",
"A/TPHO/PHA": "anomalous",
"A/TPHOE": "annotate",
"A/TPHOF/HRA": "anovulatory",
"A/TPHOF": "anovulatory",
"A/TPHOFPL": "anosmia",
"A/TPHOR/KWRE": "anoretics",
"A/TPHOR": "anorexically",
"A/TPHOR/KWREBGS": "anorexically",
"A/TPHOPB/KWREU": "anonymous",
"A/TPHOPL": "anomalous",
"A/TPHOBGS": "anoxic",
"A/TPHEU/SRER": "anniversary",
"A/TPHEU/SRERS/KWRAEUR": "anniversary",
"A/TPHEU/SRERS": "anniversary",
"A/TPHEU/PHA/TRO": "animatronic",
"A/TPHEU/PHA": "animatronic",
"A/TPHEU/PHOR": "animorphic",
"A/TPHEU/PHOS": "animosity",
"A/TPHER": "anaerobes",
"A/TPHER/KWROE": "anaerobic",
"A/TPHERPBLG": "anergize",
"A/TPHEPL": "anemone",
"A/TPHEBG/TKOE": "anecdotal",
"A/TPHEBG": "anecdote",
"A/TPHES/TPHAOE/SEU": "anesthesia",
"A/TPHES/TPHAOE": "anesthesia",
"A/TPHES": "anesthetics",
"A/TPHES/THAOE/S*EU/KWRO/HRO": "anesthesiologist",
"A/TPHES/THAOE/S*EU/KWRO": "anesthesiologist",
"A/TPHES/THAOE/S*EU": "anesthesiologist",
"A/TPHES/THAOE": "anesthesiologist",
"A/TPHES/THAOE/SEU/KWRO/HRO": "anesthesiologist",
"A/TPHES/THAOE/SEU/KWRO": "anesthesiologist",
"A/TPHES/THAOE/SEU": "anesthesiologist",
"A/TPHES/THE": "anesthetics",
"A/TPHUPBS": "annunciate",
"A/TPRO/TKAOES": "aphrodisiac",
"A/TPRO": "aphrodisiac",
"A/TPROE/TKAOES": "aphrodisiac",
"A/TPAOEU": "affiant",
"A/TPAOEB": "afebrile",
"A/TPA*/TPO*": "anaphora",
"A/TPA*": "anaphora",
"A/TPO*": "aphorism",
"A/TPO*R": "aphorism",
"A/TPEU/TKAEU": "affidavit",
"A/TPEU": "affidavit",
"A/TPEUR": "affirmation",
"A/TPEURB/TPHA": "aficionado",
"A/TPEURB": "afibrillate",
"A/TPEURB/KWRO/TPHA": "aficionado",
"A/TPEURB/KWRO": "aficionado",
"A/TPEUPB": "affinities",
"A/TPEUB/REU": "afibrillate",
"A/TPEUB": "afibrillate",
"A/TPEUL": "affiliate",
"A/TPER": "aferrin",
"A/TPEBG": "affective",
"A/TPEBGS/A*T": "affectionately",
"A/THOR/TAEU": "authoritative",
"A/THOR": "authorized",
"A/TRABG": "attractively",
"A/TRO": "atrophy",
"A/TROE": "atrocious",
"A/TROF": "atrophy",
"A/TROS": "atrocities",
"A/TREU": "attributed",
"A/TA": "attache",
"A/TAOEPB": "attendee",
"A/TOEP": "atopia",
"A/TOR": "{^atorium}",
"A/TORPB": "attorney",
"A/TE/TPHAOU": "attenuate",
"A/TE": "attenuate",
"A/TEU/PEU": "atypical",
"A/TEU": "atypical",
"A/TEUP": "atypical",
"A/TEPB": "attenuate",
"A/TEPBT": "attentively",
"A/KWA": "aquamarine",
"A/KWA/PHA": "aquamarine",
"A/KWA/PHAR": "aquamarine",
"A/KWAOES": "acquiescence",
"A/KWAEUR": "aquarium",
"A/KWAEUPB": "acquaintance",
"A/KWAU": "aquatic",
"A/KWEU": "aquitard",
"A/KWEUS": "acquisitive",
"A/KHRA": "acclamation",
"A/KHRAOEU/PHA": "acclimatize",
"A/KHRAOEU": "acclimatize",
"A/KHRAOEU/PHAT": "acclimatize",
"A/KHRAOEUPL": "acclimatize",
"A/KHRAOEUPLT": "acclimatization",
"A/KHREU/PHA": "acclimatize",
"A/KHREU": "acclimatization",
"A/KHREU/PHAT/KWRAOEUZ": "acclimatization",
"A/KHREU/PHAT": "acclimatization",
"A/KHREUPL": "acclimation",
"A/KRA": "accuracy",
"A/KROE": "acrolein",
"A/KROE/PHEG": "acromegaly",
"A/KROEPL": "acromial",
"A/KREU": "acrylics",
"A/KREUPL": "acrimonious",
"A/KA/TKAOEPL": "academia",
"A/KA": "academics",
"A/KA/TKE": "academics",
"A/KAOU/TER": "accouterments",
"A/KAOU": "acupuncture",
"A/KAOU/PHU": "accumulate",
"A/KAOU/PRE": "acupressure",
"A/KAOU/PRERB": "acupressure",
"A/KAOU/P*UPBG": "acupuncture",
"A/KAOUFT": "acoustical",
"A/KAOUR": "accurate",
"A/KAOURT": "accouterments",
"A/KAOUPL": "accumulated",
"A/KAEU": "acacia",
"A/KAPB": "acanthus",
"A/KAD": "academy",
"A/KO/PHO": "accommodate",
"A/KO": "accommodate",
"A/KO/PHOE": "accommodate",
"A/KOE": "accolades",
"A/KOURT": "accouterments",
"A/KOUPBS": "accountability",
"A/KOPL": "accomplice",
"A/KE/TKAOEPL": "acedemia",
"A/KE": "acedemia",
"A/KEUPL": "akimbo",
"A/KUFP": "acculturation",
"A/KUR": "accurate",
"A/KUPL": "accumbens",
"A/KUL/KHUR": "acculturation",
"A/KUL": "acculturation",
"A/KUS": "accustomed",
"A/K-T": "accountability",
"A/PWHRAEU": "ablative",
"A/PWRAOEF": "abbreviated",
"A/PWRAEUS": "abrasive",
"A/PWROE": "abrogate",
"A/PWA/TKEU": "abadiccio",
"A/PWA": "abalone",
"A/PWA/TKEUFP": "abadiccio",
"A/PWA/TA": "abatacept",
"A/PWAOEL": "abelia",
"A/PWAEU": "abeyance",
"A/PWAPB": "abandons",
"A/PWAT": "abatacept",
"A/PWO": "abolished",
"A/PWOPL": "abominable",
"A/PWER": "aberration",
"A/PWEPB": "appends",
"A/PWUPB": "abundance",
"A/PWUPBD": "abundance",
"A/PHRA": "applanate",
"A/PHRAEU": "applanate",
"A/PHRAPB": "applanate",
"A/PHREU": "application",
"A/PHREUBG": "applicability",
"A/PHA": "amaryllis",
"A/PHA/REU": "amaryllis",
"A/PHAOE": "amoebae",
"A/PHAOEB": "amoebic",
"A/PHAOEL": "ameliorated",
"A/PHAOEL/KWROR": "ameliorate",
"A/PHAOU": "amulets",
"A/PHAOUGS": "amusingly",
"A/PHAOUGZ": "amusingly",
"A/PHAFT": "amastigote",
"A/PHAR": "amaryllis",
"A/PHAR/KWROE": "amaurosis",
"A/PHAR/KWRE": "amaretto",
"A/PHAR/KWREU": "amaryllis",
"A/PHAPB": "amanitin",
"A/PHAL/TKPWA": "amalgamate",
"A/PHAL": "amalgam",
"A/PHALG": "amalgamate",
"A/PHOEPB": "ammonium",
"A/PHOUPBS": "announcements",
"A/PHOR": "amorous",
"A/PHORT": "amortizations",
"A/PHEU": "amicus",
"A/PHEU/KA": "amicably",
"A/PHEU/KAB": "amicably",
"A/PHEUBG": "amicability",
"A/PHEUL": "amiloride",
"A/PHEUG": "amygdala",
"A/PHEUG/TKA": "amygdala",
"A/PRAOE/SHAOE": "appreciate",
"A/PRAOE": "appreciate",
"A/PRAOERB/KWRA": "appreciative",
"A/PRAOERB/KWRAT": "appreciative",
"A/PRO/PREU": "appropriate",
"A/PRO": "appropriate",
"A/PROE/PREU": "appropriate",
"A/PROE": "appropriate",
"A/PROERB": "approachable",
"A/PROEP": "appropriate",
"A/PROEP/REU": "appropriate",
"A/PROEPT": "appropriately",
"A/PROBG/SEU": "approximate",
"A/PROBG": "approximate",
"A/PRE/HEPB": "apprehensive",
"A/PRE": "apprehensive",
"A/PREPB": "apprentice",
"A/PA/THE": "apathetic",
"A/PA": "apparition",
"A/PA/THET": "apathetically",
"A/PA/RA": "apparatus",
"A/PAR": "apparition",
"A/PAR/KWRA": "apparatus",
"A/PO/STO": "apostolic",
"A/PO": "apologetic",
"A/PO/THE/KAEUR": "apothecary",
"A/PO/THE": "apothecary",
"A/PO/KA": "apocalypse",
"A/PO/HRO": "apologetic",
"A/PO/HRO/SKWRE": "apologetic",
"A/PO*T": "apothecary",
"A/PO*T/KWROE": "apotheosis",
"A/PO*T/KAEUR": "apothecary",
"A/POEUPB": "appointee",
"A/POBG": "apocalypse",
"A/POL": "apologetically",
"A/POL/SKWRE": "apologetic",
"A/POL/SKWRET": "apologetically",
"A/POT": "apotosis",
"A/POS/TRO": "apostrophe",
"A/POS": "apostle",
"A/POS/TROE": "apostrophe",
"A/POS/TO": "apostolic",
"A/PE/TAOEU": "appetizers",
"A/PE": "appellor",
"A/PE/TAOEUZ": "appetizers",
"A/PER": "apertures",
"A/PEPB": "appendix",
"A/PEPB/TKEU/SAOEU": "appendicitis",
"A/PEPB/TKEU": "appendices",
"A/PEPB/TKEUBG": "appendicular",
"A/PEPBD/SAOEU": "appendicitis",
"A/PEL": "appellate",
"A/WAEUBG": "awakened",
"A/HRA/KREU": "alacrity",
"A/HRA/PWAS": "alabaster",
"A/HRAO*EF": "alleviated",
"A/HRAOE": "ally-oop",
"A/HRAOE/KWRA/TOR": "aleatory",
"A/HRAOEF": "alleviated",
"A/HRAOEPBLG": "allegiance",
"A/HRAOU": "alleluia",
"A/HRAOUPL": "aluminum",
"A/HRAOUS": "allusive",
"A/HRAR": "alaria",
"A/HRABG/REU": "alacrity",
"A/HRABG": "alacrity",
"A/HROE/SKWREPB": "allogenic",
"A/HRE/TKPWOR": "allegorical",
"A/HREU/TKPWAEU": "alligators",
"A/HREU/PHOEPB": "alimony",
"A/HREU/PHEPB/TAEUR": "alimentary",
"A/HREU/PHEPB": "alimentary",
"A/HREU/-PLT/KWRAEUR": "alimentary",
"A/HREU/-PLT": "alimentary",
"A/HREUPLT/KWRAEUR": "alimentary",
"A/HREUPLT": "alimentary",
"A/HREUT/RA": "alliterative",
"A/HREUT": "alliterate",
"A/HRER": "allergic",
"A/HRERPBLG": "allergic",
"A/HREPB/TKROPB": "alendronate",
"A/HREPB": "alendronate",
"A/HREPL": "alembic",
"A/HRU": "alumna",
"A/HEUPL": "ahimsa",
"A/RAOE": "arena",
"A/RAOUG": "arugula",
"A/RABG": "arachnid",
"A/RABG/TPHO/TPO*EB": "arachnophobia",
"A/RO": "aurora",
"A/ROE/PHA/TH*ER": "aromatherapy",
"A/ROE/PHA/TAOEUZ": "aromatization",
"A/ROR": "aurora",
"A/ROPB/TKEUS": "arrondissement",
"A/ROPB": "arrondissement",
"A/R*EUT/PHE": "arithmetic",
"A/R*EUT": "arithmetical",
"A/R*EUT/PHEU": "arrhythmia",
"A/R*EUT/PHET": "arithmetical",
"A/REUS/TO": "aristocrat",
"A/REUS": "aristocracy",
"A/REUS/TOBG/RA": "aristocracy",
"A/REUS/TOBG": "aristocracy",
"A/RES": "arrestee",
"AO*ET": "ethos",
"AO*UT/TPHAEU": "euthanasia",
"AO*UT": "euthyroid",
"AO*UT/TPHAEURB": "euthanasia",
"AOE/STAB": "establish",
"AOE/SKWRA/KAOU": "ejaculates",
"AOE/SKWRA": "ejaculates",
"AOE/SKWRABG": "ejaculates",
"AOE/SKWREBG": "ejecta",
"AOE/SKWRUS": "ejusdem",
"AOE/SRA/SKWREU/TPHA": "evaginatus",
"AOE/SRA/SKWREU": "evagination",
"AOE/SRA": "evaluable",
"AOE/SRA/KAOU/WAEU": "evacuator",
"AOE/SRA/KAOU": "evacuates",
"AOE/SRA/PO": "evaporative",
"AOE/SRA/POR": "evaporated",
"AOE/SRA/POR/KWRA": "evaporative",
"AOE/SRA/POR/KWRAEU": "evaporative",
"AOE/SRA/HRAOU/WA": "evaluative",
"AOE/SRA/HRAOU": "evaluative",
"AOE/SRA/HRAOU/WAEU": "evaluator",
"AOE/SRA/HRAOU/WAT": "evaluative",
"AOE/SRAEU": "evasive",
"AOE/SRAEUS": "evasive",
"AOE/SRAP": "evaporated",
"AOE/SRAP/RAEU": "evaporative",
"AOE/SRAPB/SKWRE": "evangelistic",
"AOE/SRAPB": "evangelical",
"AOE/SRAPB/SKWRE/HREU": "evangelion",
"AOE/SRAPB/SKWRE/HREUS": "evangelistic",
"AOE/SRAPB/SKWREL": "evangelical",
"AOE/SRAPBLG/TPHA": "evaginatus",
"AOE/SRAPBLG": "evagination",
"AOE/SRAPBG": "evangelist",
"AOE/SRABG/WAEU": "evacuator",
"AOE/SRABG": "evacuates",
"AOE/SRAL/WAEU": "evaluator",
"AOE/SRO/KA": "evocative",
"AOE/SRO": "evocative",
"AOE/SRO/KAT": "evocative",
"AOE/SROE": "evocation",
"AOE/SROBG": "evocative",
"AOE/SREU/SER": "evisceration",
"AOE/SREU": "evisceration",
"AOE/SREUBG": "evictor",
"AOE/SREUS": "evisceration",
"AOE/SREPBT/WAUL": "eventually",
"AOE/SREPBT/WAL": "eventually",
"AOE/SAOE": "easiest",
"AOE/SO/TPA*": "esophaguses",
"AOE/SO": "esophaguses",
"AOE/SOF": "esophaguses",
"AOE/S*EU": "easiest",
"AOE/SEU/KWREU": "easiness",
"AOE/SEPB": "essentials",
"AOE/SEPB/-RBL/KWRAOEUZ": "essentialization",
"AOE/TKPWRAOE": "egregious",
"AOE/TKPWRAOEPBLG": "egregious",
"AOE/TKPWA/HREU": "egalitarianism",
"AOE/TKPWA": "egalitarianism",
"AOE/TKPWA/HREU/TAEUR": "egalitarian",
"AOE/TKPWA/HREU/TAERPB": "egalitarianism",
"AOE/TKPWAL": "egalitarian",
"AOE/TKPWO/SEPB": "egocentric",
"AOE/TKPWO/SEPBT": "egocentric",
"AOE/TKPWO/PHAEUPB": "egomaniac",
"AOE/TKPWOE/SEPB": "egocentric",
"AOE/TKPWOE/SEPBT": "egocentric",
"AOE/TKPWOE/TEUS": "egotistic",
"AOE/TKPWOE/KWREUS": "egoistic",
"AOE/TKPWOE/PHAEUPB": "egomaniac",
"AOE/TKPWOE/WEUS": "egoistic",
"AOE/TKAOE": "edema",
"AOE/TKAEU": "edacious",
"AOE/TKAEURB": "edacious",
"AOE/TKEPB/TAOU": "edentulous",
"AOE/TKEPB": "edentate",
"AOE/TKEPBT": "edentulous",
"AOE/TPHRAOU": "effluence",
"AOE/TPHROR/TPHEU": "eflornithine",
"AOE/TPHROR": "efflorescence",
"AOE/TPHROR/KWRE": "efflorescence",
"AOE/TPHROR/KWRES": "efflorescence",
"AOE/TPHRORPB": "eflornithine",
"AOE/TPHA": "enameled",
"AOE/TPHAOU/KHRAOE": "enucleation",
"AOE/TPHAOU": "enucleate",
"AOE/TPHAOU/PHER": "enumerates",
"AOE/TPHAOU/HRAOE": "enucleate",
"AOE/TPHAOUPL": "enumerated",
"AOE/TPHAOUBG": "enucleation",
"AOE/TPHAPL": "enamor",
"AOE/TPHOE": "enoki",
"AOE/TPHOR": "enormous",
"AOE/TPHORPL": "enormous",
"AOE/TPHEUG": "enigmatically",
"AOE/TPHEUG/PHAT": "enigmatically",
"AOE/TPHUPB/SEU/KWRA": "enunciative",
"AOE/TPHUPB/SEU": "enunciative",
"AOE/TPHUPB": "enunciative",
"AOE/TPHUPB/SEU/KWRAT": "enunciative",
"AOE/TPHUPBS": "enunciative",
"AOE/TPHUPBS/KWRA": "enunciative",
"AOE/TPHUPBS/KWRAT": "enunciative",
"AOE/TPROPB/TER": "effrontery",
"AOE/TPROPB": "effrontery",
"AOE/TPROPBT": "effrontery",
"AOE/TPA/SREUR": "efavirenz",
"AOE/TPA": "efavirenz",
"AOE/TPAOU": "effusive",
"AOE/TPAOUS": "effusive",
"AOE/TPAF": "efavirenz",
"AOE/TPOR/KWRES": "efflorescence",
"AOE/TPOR": "efflorescence",
"AOE/TPE/PHEU": "effeminate",
"AOE/TPE": "effeminate",
"AOE/TPEU": "efficiencies",
"AOE/TPEU/SHEPB": "efficiencies",
"AOE/TPEU/SHEPBS": "efficiencies",
"AOE/TPEURB/KWREPB": "efficiencies",
"AOE/TPEURB": "efficiencies",
"AOE/TPEURB/KWREPBS": "efficiencies",
"AOE/TPEPL": "effeminate",
"AOE/TPEBG": "effectively",
"AOE/TPUL": "effulgent",
"AOE/THA": "ethanol",
"AOE/THAOER": "ethereum",
"AOE/TO/PHEU": "etomidate",
"AOE/TO": "etomidate",
"AOE/TOPL": "etomidate",
"AOE/TERPB": "eternity",
"AOE/KWRO/SEU/TPHO": "eosinophil",
"AOE/KWRO/SEU": "eosinophil",
"AOE/KWRO": "eotax",
"AOE/KWA/TPHEU/PHEU": "equanimity",
"AOE/KWA/TPHEU": "equanimity",
"AOE/KWA": "equatorial",
"AOE/KWA/TOR": "equatorial",
"AOE/KWAOEU": "equinovarus",
"AOE/KWAOEU/TPHO/SRAR": "equinovarus",
"AOE/KWAOEU/TPHO": "equinovarus",
"AOE/KWAOEU/TPHOE/SRAR": "equinovarus",
"AOE/KWAOEU/TPHOE": "equinovarus",
"AOE/KWAEU": "equator",
"AOE/KWAU/TPHEU/PHEU": "equanimity",
"AOE/KWAU/TPHEU": "equanimity",
"AOE/KWAU": "equalitarian",
"AOE/KWAU/TPHEUPL": "equanimity",
"AOE/KWAU/HREU/TAEUR": "equalitarian",
"AOE/KWAU/HREU": "equalitarian",
"AOE/KWE": "equerry",
"AOE/KWEU/SRA": "equivalence",
"AOE/KWEU/SRO": "equivocal",
"AOE/KWEU/SROE": "equivocal",
"AOE/KWEU/TKEUS": "equidistant",
"AOE/KWEU/POE": "equipotent",
"AOE/KWEU/HRA/TER": "equilateral",
"AOE/KWEU/HRA": "equilateral",
"AOE/KWEU/HRAT": "equilateral",
"AOE/KWEU/HREU": "equilibrium",
"AOE/KWEU/HREU/PWREU": "equilibrium",
"AOE/KWEU/HREURB": "equilibrium",
"AOE/KWEU/HREUB": "equilibrium",
"AOE/KWEU/HREUB/REU": "equilibrium",
"AOE/KWEU/A/TPHAL/SKWRAOE": "equianalgesic",
"AOE/KWEU/A/TPHAL": "equianalgesic",
"AOE/KWEU/A": "equianalgesic",
"AOE/KWEUF": "equivalence",
"AOE/KWEUFBG": "equivocally",
"AOE/KWEUL": "equilibrium",
"AOE/KWEUL/HREUB/REU": "equilibrium",
"AOE/KWEUL/HREUB": "equilibrium",
"AOE/KWEFT": "equestrian",
"AOE/KWEFT/REU": "equestrian",
"AOE/KWER": "equerry",
"AOE/KWES/TRAOE": "equestrian",
"AOE/KWES": "equestrian",
"AOE/KHRAOE/SEU/KWRAFT": "ecclesiastical",
"AOE/KHRAOE/SEU": "ecclesiastic",
"AOE/KHRAOE": "ecclesiastic",
"AOE/KHRAOE/SEU/KWRAS": "ecclesiastic",
"AOE/KHRAOES": "ecclesiastic",
"AOE/KHRAOES/KWRAFT": "ecclesiastical",
"AOE/KHRAOES/KWRAS": "ecclesiastic",
"AOE/KHRAOES/KWREU/KWRAFT": "ecclesiastical",
"AOE/KHRAOES/KWREU": "ecclesiastic",
"AOE/KHRAOES/KWREU/KWRAS": "ecclesiastic",
"AOE/KHREBG": "eclectic",
"AOE/KAOEU": "echinus",
"AOE/KAOEUPB": "echinus",
"AOE/KO": "ecological",
"AOE/KO/SEUS": "ecosystems",
"AOE/KO/TKPWRAF": "ecography",
"AOE/KO/TPHO": "econometric",
"AOE/KO/TPHO/PHE": "econometric",
"AOE/KO/TPHO/PHERT": "econometrically",
"AOE/KO/TPHO/PHET": "econometric",
"AOE/KO/TPHOE/PHE": "econometric",
"AOE/KO/TPHOE": "econometric",
"AOE/KO/TPHOE/PHERT": "econometrically",
"AOE/KO/TPHOE/PHET": "econometric",
"AOE/KO/HRO": "ecologic",
"AOE/KO/HROPBLG": "ecological",
"AOE/KOE": "ecological",
"AOE/KOE/SEUS": "ecosystems",
"AOE/KOE/TPHO/PHE": "econometric",
"AOE/KOE/TPHO": "econometric",
"AOE/KOE/TPHO/PHERT": "econometrically",
"AOE/KOE/TPHO/PHET": "econometric",
"AOE/KOE/TPHOE/PHE": "econometric",
"AOE/KOE/TPHOE": "econometric",
"AOE/KOE/TPHOE/PHERT": "econometrically",
"AOE/KOE/TPHOE/PHET": "econometric",
"AOE/KOE/HRO": "ecologic",
"AOE/KOE/HROPBLG": "ecological",
"AOE/KORG": "ecography",
"AOE/KOPB": "economies",
"AOE/KOL": "ecologist",
"AOE/KEUD": "echidna",
"AOE/PWO": "ebonic",
"AOE/PWOE": "ebola",
"AOE/PWOPB": "ebonic",
"AOE/PWUL": "ebullient",
"AOE/PHAOE": "emilio",
"AOE/PHAOE/HREU": "emilio",
"AOE/PHAOEL": "emilio",
"AOE/PHAEU/SHEU": "emaciate",
"AOE/PHAEU": "emaciate",
"AOE/PHAEURB": "emaciate",
"AOE/PHAPB/SEU/PAEU": "emancipator",
"AOE/PHAPB/SEU": "emancipate",
"AOE/PHAPBS/PAEU": "emancipator",
"AOE/PHAPBS": "emancipate",
"AOE/PHAS": "emasculate",
"AOE/PHAS/KAOU": "emasculate",
"AOE/PHO": "emolument",
"AOE/PHOE/TEU/KWRO/PHO": "emotiomotor",
"AOE/PHOE/TEU/KWRO": "emotiomotor",
"AOE/PHOE/TEU": "emoticon",
"AOE/PHOE/TEU/KWROPL": "emotiomotor",
"AOE/PHOEL": "emollient",
"AOE/PHOET/KWROPL": "emotiomotor",
"AOE/PHOL/KWRAOU": "emolument",
"AOE/PHOL": "emollient",
"AOE/PHE": "emetics",
"AOE/PHEU/HREU": "emilio",
"AOE/PHEU": "emilio",
"AOE/PHEUL": "emilio",
"AOE/PHER/SKWREPB": "emergencies",
"AOE/PHER": "emeritus",
"AOE/PHER/KWREU": "emeritus",
"AOE/PHERPBLG/KWREPB": "emergency",
"AOE/PHUL": "emulsification",
"AOE/PHUL/SEU": "emulsification",
"AOE/PHUL/SEU/TPEU": "emulsification",
"AOE/PHULS": "emulsification",
"AOE/PAU": "epaulets",
"AOE/POE": "epoetin",
"AOE/POE/WE": "epoetin",
"AOE/POEU": "epoetin",
"AOE/POBGS": "epoxy",
"AOE/P*EPBT": "epenthesis",
"AOE/PEU/TPA*": "epiphanic",
"AOE/PEU": "epitomize",
"AOE/PEU/TP*EU": "epiphytic",
"AOE/PEU/TO": "epitomize",
"AOE/PEUF": "epiphytic",
"AOE/PEUFT/PHO/HROPBLG": "epistemological",
"AOE/PEUFT/PHO": "epistemological",
"AOE/PEUFT": "epistolary",
"AOE/PEUT": "epitomize",
"AOE/PEUS/TO/HRAEUR": "epistolary",
"AOE/PEUS/TO": "epistolography",
"AOE/PEUS": "epistles",
"AOE/PEUS/TO/HRO": "epistolography",
"AOE/PEUS/TO/HRO/TKPWRAF": "epistolography",
"AOE/PEUS/TO/HRORG": "epistolography",
"AOE/PEUS/TOE/HRAEUR": "epistolary",
"AOE/PEUS/TOE": "epistolary",
"AOE/PEUS/TE/PHO/HRO": "epistemologically",
"AOE/PEUS/TE/PHO": "epistemologically",
"AOE/PEUS/TE": "epistemologically",
"AOE/PEUS/TE/PHO/HRO/SKWREUBG": "epistemologically",
"AOE/PEUS/TE/PHO/HROPBLG": "epistemologically",
"AOE/PEPB/TKEU": "ependymal",
"AOE/PEPB": "epenthesis",
"AOE/PEPB/THE": "epenthesis",
"AOE/PEPBD": "ependymal",
"AOE/HRA": "elaborate",
"AOE/HRA/PWOR": "elaborate",
"AOE/HRAOU/SEU": "elucidated",
"AOE/HRAOU": "elusiveness",
"AOE/HRAU": "elaunin",
"AOE/HRAUPB": "elaunin",
"AOE/HRAFT": "elastomeric",
"AOE/HRAB": "elaborate",
"AOE/HRAS": "elasticity",
"AOE/HRAS/TO": "elastomeric",
"AOE/HRAS/TEUS": "elasticity",
"AOE/HRAD": "eladic",
"AOE/HROPB": "elongate",
"AOE/HROPBG": "elongate",
"AOE/HROBG/TROPB": "electronics",
"AOE/HROBG": "electronics",
"AOE/HRE": "eleven",
"AOE/HREU": "eliminated",
"AOE/HREU/TPHEU": "elimination",
"AOE/HREU/PHEU": "eliminated",
"AOE/HREU/PHEU/TPHAEUGS/KWRAEUR": "eliminationary",
"AOE/HREUP": "elliptic",
"AOE/HREUP/TEU": "elliptical",
"AOE/HREUPL": "eliminates",
"AOE/HREUPL/TPHAEUGS/KWRAEUR": "eliminationary",
"AOE/HREUBG": "elixir",
"AOE/HREUBGS": "elixir",
"AOE/HREUS": "elicited",
"AOE/HREFPBT": "eleventh",
"AOE/HRERBGT": "electrification",
"AOE/HREBG": "electives",
"AOE/HREBG/TRO/STA": "electrostatic",
"AOE/HREBG/TRO/TPHE/TKPWA/TEU/SREU": "electronegativity",
"AOE/HREBG/TRO/TPHE/TKPWA/TEU": "electronegativity",
"AOE/HREBG/TRO/TPHE/TKPWA": "electronegativity",
"AOE/HREBG/TRO/TPHE": "electronegativity",
"AOE/HREBG/TRO/TPHE/TKPWA/TEUF": "electronegativity",
"AOE/HREBG/TRO/KARD/KWRO": "electrocardiogram",
"AOE/HREBG/TRO/KARD": "electrocardiogram",
"AOE/HREBG/TRO/PHAG": "electromagnet",
"AOE/HREBG/TRO/HRO": "electrolysis",
"AOE/HREBG/TRO/HROE": "electrolysis",
"AOE/HREBG/TRO/HREU": "electrolytic",
"AOE/HREBG/TROE/STA": "electrostatic",
"AOE/HREBG/TROE/TPHE/TKPWA/TEU/SREU": "electronegativity",
"AOE/HREBG/TROE/TPHE/TKPWA/TEU": "electronegativity",
"AOE/HREBG/TROE/TPHE/TKPWA": "electronegativity",
"AOE/HREBG/TROE/TPHE": "electronegativity",
"AOE/HREBG/TROE/TPHE/TKPWA/TEUF": "electronegativity",
"AOE/HREBG/TROE/KARD/KWROE": "electrocardiogram",
"AOE/HREBG/TROE/KARD": "electrocardiogram",
"AOE/HREBG/TROE/PHAG": "electromagnet",
"AOE/HREBG/TROE/HREU": "electrolytic",
"AOE/HREBG/TROL": "electrolysis",
"AOE/HREBG/TREU": "electrical",
"AOE/HREBG/TREU/TPEU": "electrification",
"AOE/HREBG/TREUS": "electricity",
"AOE/RA/TKEU": "eradicated",
"AOE/RA": "erratum",
"AOE/RA/TEUBG/KWRAL": "erratically",
"AOE/RAEU": "erasures",
"AOE/RAT": "erratically",
"AOE/RAD": "eradicated",
"AOE/RO/SKWRE": "erogenous",
"AOE/RO": "erotic",
"AOE/RO/TEU": "erotica",
"AOE/ROE": "erosive",
"AOE/ROEPB": "erroneous",
"AOE/ROES": "erosive",
"AOE/ROPB": "erroneous",
"AOE/ROPBLG": "erogenous",
"AOE/ROT": "erotica",
"AOE/REBG": "erectus",
"AOE/RUP": "eruptive",
"AOEU/SROR": "ivory",
"AOEU/SO/SRO/HRO/PHE": "isovolumetric",
"AOEU/SO/SRO/HRO": "isovolumetric",
"AOEU/SO/SRO": "isovolumetric",
"AOEU/SO": "isolated",
"AOEU/SO/SRO/HRO/PHET": "isovolumetric",
"AOEU/SO/SAOE": "isosceles",
"AOEU/SO/SE": "isosceles",
"AOEU/SO/TRO": "isotropic",
"AOEU/SO/TROEP": "isotropic",
"AOEU/SO/TROP": "isotropic",
"AOEU/SO/TO": "isotopic",
"AOEU/SO/TOE": "isotopic",
"AOEU/SO/TOPB": "isotonic",
"AOEU/SO/PHOR": "isomorphic",
"AOEU/SO/PHE": "isometric",
"AOEU/SO/PHET": "isometric",
"AOEU/SO/PROEP": "isopropyl",
"AOEU/SO/PROP": "isopropyl",
"AOEU/SOE/SRO/HRAOU/PHE": "isovolumetric",
"AOEU/SOE/SRO/HRAOU": "isovolumetric",
"AOEU/SOE/SRO": "isovolumetric",
"AOEU/SOE/THER": "isothermal",
"AOEU/SOE/TO": "isotopic",
"AOEU/SOE/TOE": "isotopic",
"AOEU/SOE/TOPB": "isotonic",
"AOEU/SOE/KHOR": "isochoric",
"AOEU/SOE/KOR": "isochoric",
"AOEU/SOE/PWAEUR": "isobaric",
"AOEU/SOE/PHOR": "isomorphic",
"AOEU/SOE/PHE": "isometric",
"AOEU/SOE/PROEP": "isopropyl",
"AOEU/SOE/PROP": "isopropyl",
"AOEU/SOT": "isotonize",
"AOEU/SOS": "isosceles",
"AOEU/SEU": "icicles",
"AOEU/TKPW*EPB/SR*EBG": "eigenvector",
"AOEU/TKPWEPB/SRA*": "eigenvalue",
"AOEU/TKPWEPB/SR*EBG": "eigenvector",
"AOEU/TKAOE": "idealist",
"AOEU/TKAOE/KWRO/HRO": "ideologically",
"AOEU/TKAOE/KWRO": "ideologue",
"AOEU/TKAOE/KWRO/HRO/SKWREUBG": "ideologically",
"AOEU/TKAOE/KWRO/HROPBLG": "ideologically",
"AOEU/TKAOE/KWROE": "ideologue",
"AOEU/TKAOE/KWROE/HRO": "ideological",
"AOEU/TKAOE/KWROE/HRO/SKWREUBG": "ideological",
"AOEU/TKAOE/KWROE/HROPBLG": "ideological",
"AOEU/TKAOE/KWROL": "ideology",
"AOEU/TKO/HRA": "idolater",
"AOEU/TKO": "idolater",
"AOEU/TKO/HRAEU": "idolater",
"AOEU/TKOE/HRA": "idolater",
"AOEU/TKOE": "idolater",
"AOEU/TKOE/HRAEU": "idolater",
"AOEU/TKE": "eidetic",
"AOEU/TKEU": "idylls",
"AOEU/TKEUL": "idylls",
"AOEU/TKEPB": "identically",
"AOEU/TKEPB/TEU/TPEU": "identification",
"AOEU/TKEPB/TEUBG": "identically",
"AOEU/TKEPBT": "identical",
"AOEU/TPHOE": "inotrope",
"AOEU/TPEPBT/TPEU": "identification",
"AOEU/TPEPBT": "identification",
"AOEU/TEU/TPHE/RAEUR": "itinerary",
"AOEU/TEU/TPHE": "itinerant",
"AOEU/TEU": "itinerant",
"AOEU/TEU/TPHER/KWRAEUR": "itinerary",
"AOEU/TEU/TPHER": "itinerant",
"AOEU/TEUPB": "itinerant",
"AOEU/TEPB/TEU": "identities",
"AOEU/TEPB": "identically",
"AOEU/TEPB/TEUBG/KWRAL": "identically",
"AOEU/TEPB/TEUBG": "identically",
"AOEU/TEPBT": "identically",
"AOEU/KWRO": "iota",
"AOEU/KWRO/TPHO": "ionosphere",
"AOEU/KWRO/TPHOE": "ionosphere",
"AOEU/KWROE": "aioli",
"AOEU/KWROEPB": "aeonium",
"AOEU/KWROPBS": "ionosphere",
"AOEU/KO/SA/HAOE": "icosahedron",
"AOEU/KO/SA": "icosahedron",
"AOEU/KO": "iconic",
"AOEU/KO/TPHO": "iconoclast",
"AOEU/KO/TPHO/TKPWRAF": "iconographics",
"AOEU/KO/TPHORG": "iconography",
"AOEU/KOPB/TKPWRAF": "iconographics",
"AOEU/KOS/HAOE": "icosahedron",
"AOEU/KOS": "icosahedron",
"AOEU/W*EUT": "eyewitness",
"AOEU/HRAPB": "islander",
"AOEU/RO/TPHEU": "ironical",
"AOEU/RO": "ironic",
"AOEU/OE": "aioli",
"AOEU/OEPB": "aeonium",
"AOEUPB": "ionic",
"AOEUPB/KWROE": "inotrope",
"AOEUPBS": "ionosphere",
"AOEUT": "itemize",
"AOEUS/TO": "isotopic",
"AOEUS/TOE": "isotopic",
"AOEUS/TOPB": "isotonic",
"AOEUS/PROP": "isopropyl",
"AOEUD/KWRO/HRO": "ideologically",
"AOEUD/KWRO": "ideologue",
"AOEUD/KWRO/HRO/SKWREUBG": "ideologically",
"AOEUD/KWRO/HROPBLG": "ideologically",
"AOEUD/KWROE": "ideologue",
"AOEUD/KWROE/HRO": "ideological",
"AOEUD/KWROE/HRO/SKWREUBG": "ideological",
"AOEUD/KWROE/HROPBLG": "ideological",
"AOEUD/KWROL": "ideology",
"AOEFT/*ER": "easterly",
"AOER/SPHR*EUT": "earsplitting",
"AOER/W*EUT": "earwitness",
"AOEPBS": "eensy",
"AOEPBS/KWREU/WAOEPBS": "eensy-weensy",
"AOEB": "ebola",
"AOEBG/TKPWRAF": "ecography",
"AOEBG/TPHO/PHE": "econometric",
"AOEBG/TPHO": "econometric",
"AOEBG/TPHO/PHEU": "economically",
"AOEBG/TPHO/PHERT": "econometrically",
"AOEBG/TPHO/PHET": "econometric",
"AOEBG/TPHOE/PHE": "econometric",
"AOEBG/TPHOE": "econometric",
"AOEBG/TPHOE/PHERT": "econometrically",
"AOEBG/TPHOE/PHET": "econometric",
"AOEBG/TPHOPL": "economical",
"AOEBG/PHE": "econometric",
"AOEBG/PHET": "econometric",
"AOEBG/HRAT": "equilateral",
"AOEBG/HROPBLG": "ecological",
"AOEBG/HREURB": "equilibriate",
"AOEBG/HREURBG": "equilibria",
"AOEBG/HREUB": "equilibriate",
"AOEG/SEPB": "egocentric",
"AOEG/SEPBT": "egocentric",
"AOEG/TEUS": "egotistic",
"AOEG/PHAEUPB": "egomaniac",
"AOET/KWROE": "etiolate",
"AOET/*ER": "eatery",
"AOES/TROEP": "esotropia",
"AOES/TER": "easterner",
"AOES/KWREU/KWREU": "easiness",
"AOED": "edition",
"AOU/STA": "eustatic",
"AOU/SKWRE": "eugenics",
"AOU/SKWREPB": "eugenics",
"AOU/SRAOE": "uveal",
"AOU/SRAOU": "uvulae",
"AOU/SRU": "uvulae",
"AOU/SAOUR": "usurious",
"AOU/SUR": "usurious",
"AOU/TPHA/TPHEU/PHEU": "unanimity",
"AOU/TPHA/TPHEU": "unanimous",
"AOU/TPHA": "unanimity",
"AOU/TPHA/TPHEUPL": "unanimity",
"AOU/TPHAEUR": "unary",
"AOU/TPHAPB": "unanimous",
"AOU/TPHEU/SRER": "universities",
"AOU/TPHEU/SRER/SEU": "universities",
"AOU/TPHEU/TKPHEPBGS": "unidimensional",
"AOU/TPHEU/TKAOEU/PHEPBGS": "unidimensional",
"AOU/TPHEU/TKAOEU": "unidirection",
"AOU/TPHEU/TK*EU/PHEPBGS": "unidimensional",
"AOU/TPHEU/TK*EU": "unidirection",
"AOU/TPHEU/TPEU": "unification",
"AOU/TPHEU/TAEUR": "unitary",
"AOU/TPHEU/KA/PHER": "unicameral",
"AOU/TPHEU/KA": "unicameral",
"AOU/TPHEU/KAPL": "unicameral",
"AOU/TPHEU/PHOE": "unimodal",
"AOU/TPHEU/POE": "unipolar",
"AOU/TPHEU/HRA/TER": "unilateral",
"AOU/TPHEU/HRA": "unilateral",
"AOU/TPHEU/HRAT": "unilateral",
"AOU/TPO*": "euphoric",
"AOU/TPO*R": "euphoric",
"AOU/TPO*RB": "euphoria",
"AOU/TPO*PB": "euphonic",
"AOU/TP*E": "euphemistic",
"AOU/TP*E/PHEUFT": "euphemistically",
"AOU/TP*E/PHEUS": "euphemistic",
"AOU/THA/TPHAEU": "euthanasia",
"AOU/THA": "euthanasia",
"AOU/THA/TPHAEURB": "euthanasia",
"AOU/THE": "euthenics",
"AOU/THEUR": "euthyroid",
"AOU/THEPB": "euthenics",
"AOU/TREU/KAOU": "utriculus",
"AOU/TREU": "utricle",
"AOU/TREUBG": "utricle",
"AOU/TOE/PEU": "utopias",
"AOU/TOE": "utopias",
"AOU/TOEP": "utopias",
"AOU/TEU": "utilities",
"AOU/TEU/HREU/TAEUR": "utilitarian",
"AOU/TEU/HREU": "utilities",
"AOU/TEUL/TAEUR": "utilitarian",
"AOU/TER": "ureteric",
"AOU/TEPB": "utensils",
"AOU/TEBG": "eutectic",
"AOU/TEBGS": "eutexia",
"AOU/KHREUP": "eucalyptus",
"AOU/KHREUP/TU": "eucalyptusy",
"AOU/KA/HREUP": "eucalyptus",
"AOU/KA": "eucalyptus",
"AOU/KAEUR/KWRO": "eukaryotic",
"AOU/KAEUR": "eukaryot",
"AOU/KAEUR/KWROE": "eukaryotic",
"AOU/KAR/KWRO": "eukaryotic",
"AOU/KAR": "eukaryot",
"AOU/KAR/KWROE": "eukaryotic",
"AOU/KU/HRAEU": "ukulele",
"AOU/KU": "ukulele",
"AOU/KU/HRE": "ukulele",
"AOU/PWEU/KWEU": "ubiquitous",
"AOU/PWEU": "ubiquin",
"AOU/PWEU/KWEU/TAOEUZ": "ubiquitization",
"AOU/PWEU/KWEU/TEUZ": "ubiquitization",
"AOU/PWEUBG": "ubiquity",
"AOU/PWEUBG/WEU": "ubiquitous",
"AOU/PHA": "umami",
"AOU/HRO": "eulogy",
"AOU/HROE": "eulogy",
"AOUF": "uvulae",
"AOUF/PHEUS": "euphemistic",
"AOUFR": "euphoria",
"AOUR/KWRAOE": "uremic",
"AOUR/KWRAEU/TPHEU": "uranium",
"AOUR/KWRAEU": "uranium",
"AOUR/KWRAEUPB": "uranium",
"AOUR/KWRO/HRO": "urologic",
"AOUR/KWRO": "urologic",
"AOUR/KWROL": "urologist",
"AOUR/KWRE": "ureter",
"AOUR/KWRE/TE": "ureteric",
"AOUR/KWREU/TPHAEUR": "urinary",
"AOUR/KWREU": "urinal",
"AOUR/HRO": "urologic",
"AOUR/HROPBLG": "urological",
"AOUPB/SRER": "universities",
"AOUPB/SRER/SEU": "universities",
"AOUPB/TKPHEPBGS": "unidimensional",
"AOUPB/TKAOEU/PHEPBGS": "unidimensional",
"AOUPB/TKAOEU": "unidirection",
"AOUPB/TK*EU/PHEPBGS": "unidimensional",
"AOUPB/TK*EU": "unidirection",
"AOUPB/TPEU": "unification",
"AOUPB/TAEUR": "unitary",
"AOUPB/KA/PHER": "unicameral",
"AOUPB/KA": "unicameral",
"AOUPB/KAPL": "unicameral",
"AOUPB/PHOE": "unimodal",
"AOUPB/POE": "unipolar",
"AOUPB/HRA/TER": "unilateral",
"AOUPB/HRA": "unilateral",
"AOUPB/HRAT": "unilateral",
"AOUPL": "umlaut",
"AOUB": "ubiquin",
"AOUB/KWEU": "ubiquitin",
"AOUBG/HRAEU": "ukulele",
"AOUBG": "euclidean",
"AOUBG/HRE": "ukulele",
"AOUBG/HREUP": "eucalyptus",
"AOUBG/HREUD": "euclidean",
"AOUL": "eulogy",
"AOUS/KWRAOUR": "usury",
"AOUS/KWRUR": "usury",
"AORS": "oarsmen",
"AOPL": "oomph",
"AOD": "oodle",
"A*EUR/PHET": "arithmetical",
"A*EURT/PHE": "arithmetic",
"A*EURT": "arithmetical",
"A*EURT/PHET": "arithmetical",
"A*EUPBG": "anchorage",
"A*EUPBT/SREPB": "antivenin",
"A*EUPBT/THE": "antithesis",
"A*EUPBT/TOBGS": "antitoxin",
"A*EUPBT/PHOPB": "antimony",
"A*EUT/KWREUS": "atheistic",
"A*RT/PHE": "arithmetic",
"A*RT": "arthritic",
"A*RT/RAOEU": "arthritis",
"A*RT/RAOEUT": "arthritis",
"A*RT/REU": "arthritic",
"A*PL/HRAR": "ampullaris",
"A*LG": "{alkyl^}",
"A*LG/HROE": "alkalosis",
"A*LG/HO": "alcoholic",
"A*T/HRE/TEU": "athleticism",
"A*T/HRE": "athletic",
"A*T/HRET": "athletically",
"A*T/-LT": "athletically",
"AE/KWROEL": "aeolian",
"AE": "aeolian",
"AEU/THAOE": "atheistic",
"AEU/THAOE/KWREUS": "atheistic",
"AEU/KWROE": "aoki",
"AEU/KWROEL": "aeolian",
"AEU/KWROR": "aortic",
"AEU/KWAEU": "equator",
"AEU/HREU": "alien",
"AEU/HRER": "aileron",
"AEUF/KWRAEUR": "aviary",
"AEUF": "avium",
"AEUF/KWRO": "avionics",
"AEUF/KWROPB": "avionics",
"AEUR/STORBG": "aristocracy",
"AEUR/STOBG/RA": "aristocracy",
"AEUR/STOBG": "aristocracy",
"AEUR/TKAOEUPB": "aerodynamics",
"AEUR/TPHAU": "aeronautic",
"AEUR/TPHAUT": "aeronautical",
"AEUR/KWRO/TKPWAPBT": "arrogantly",
"AEUR/KWRO": "arrogance",
"AEUR/KWROE/PHA": "aromatic",
"AEUR/KWROEL": "areolar",
"AEUR/KWR*EUPLT": "arrhythmia",
"AEUR/KWR*EUT/PHE": "arithmetic",
"AEUR/KWR*EUT": "arithmetical",
"AEUR/KWR*EUT/PHEU": "arrhythmia",
"AEUR/KWR*EUT/PHET": "arithmetical",
"AEUR/PWA": "aerobatics",
"AEUR/WO*RT": "airworthiest",
"AEUR/ROE/TPHAUT": "aeronautical",
"AEUR/ROE": "aerobics",
"AEUR/OP": "airoptics",
"AEURT": "atrium",
"AEURS": "aristocracy",
"AEURS/TO": "aristocrat",
"AEURS/TORBG": "aristocracy",
"AEURS/TOBG/RA": "aristocracy",
"AEURS/TOBG": "aristocracy",
"AEUPB": "anus",
"AEUPBG": "angler",
"AEUPBT/TUS": "antitussin",
"AEUPBS": "answerable",
"AEUPLS": "aimlessly",
"AEUBG/KWREU/PWRA*EBG": "achey-breaky",
"AEUL/KWRE": "alienation",
"AEUL/KWREPB/A*T": "alienator",
"AEUT/REU": "atrium",
"AEUS/PHE": "asymmetric",
"AEUS/PHET/REU": "asymmetrical",
"AEUS/PHET": "asymmetric",
"AEUD/KWRA/PWA": "adiabatic",
"AEUD/KWRA": "adiabatic",
"AER": "aeroplane",
"AER/KWRO/TPHAU": "aeronautic",
"AER/KWROE/TPHAU": "aeronautic",
"AU/TKAS": "audacity",
"AU/TKEU": "audiologist",
"AU/TKEU/TOR/KWRAL": "auditorially",
"AU/TKEU/TOR": "auditorily",
"AU/TKEU/KWRO/HRO": "audiologist",
"AU/TKEU/KWRO": "audiologist",
"AU/THOR/TAEU": "authoritatively",
"AU/THOR/KWREU/TAEU": "authoritatively",
"AU/THOR/KWREU": "authoritative",
"AU/THOR/KWREU/TAEUR": "authoritarian",
"AU/THOR/REU": "authorities",
"AU/THEPB/TEU/KAEU": "authenticator",
"AU/THEPB/TEU": "authenticate",
"AU/THEPB": "authenticity",
"AU/THEPB/TEUS": "authenticity",
"AU/THEPBT": "authenticate",
"AU/THEPBTS": "authenticity",
"AU/TO": "autopilot",
"AU/TO/SKWRE": "autogenous",
"AU/TO/TPHO": "autonomous",
"AU/TO/KRA": "autocracy",
"AU/TO/PHA": "automaticity",
"AU/TO/PHA/TEUS": "automaticity",
"AU/TO/PHOE": "automotive",
"AU/TO/PHOET": "automotive",
"AU/TOE/PWAOEU/KWRO": "autobiography",
"AU/TOE/PWAOEU": "autobiography",
"AU/TOE/PWAOEU/KWRO/TKPWRAF": "autobiography",
"AU/TOE/PWAOEU/KWROE/TKPWRAF": "autobiographics",
"AU/TOE/PWAOEU/KWROE": "autobiographics",
"AU/TOE/PWAOEU/KWRORG": "autobiography",
"AU/TOE/PWO*E": "autobiographics",
"AU/TOE/PWO*E/TKPWRAF": "autobiographics",
"AU/TOE/PHA": "automaticity",
"AU/TOE/PHA/TEUS": "automaticity",
"AU/TOE/PHOET": "automotive",
"AU/TOP": "autopsies",
"AU/TOPB": "autonomous",
"AU/TOPL": "automata",
"AU/TEUS": "autistic",
"AU/ROR": "aurora",
"AU/REU/KAOU/HRAEU": "auricularis",
"AU/REU/KAOU": "auricular",
"AU/REU": "auricular",
"AU/REUBG": "auricles",
"AUF/SAO*E": "off-season",
"AUF/TO*": "off-topic",
"AUF/KA*PL": "off-campus",
"AUF/K*EUL": "off-kilter",
"AUF/*T": "off-the-chart",
"AUR/KWROR": "aurora",
"AUR/KWREU/KAOU/HRAEUR": "auricularis",
"AUR/KWREU/KAOU": "auricular",
"AUR/KWREU": "auricular",
"AUR/KWREUBG": "auricles",
"AURBG": "auricles",
"AUPB/HRAO*BG": "onlookers",
"AUPB/*T": "on-the-go",
"AUPLS": "almshouse",
"AUPS": "upsilon",
"AUBG/SEU/HREU/KWRAEUR": "auxiliary",
"AUBG/SEU/HREU": "auxiliary",
"AUBG/SEU": "auxiliary",
"AUBG/SEUL": "auxiliary",
"AUT/PHOE": "automotive",
"AUS": "auspicious",
"AUD": "audibility",
"AUD/TOR": "auditorily",
"AUD/KWRO/PHE": "audiometer",
"AUD/KWROPL": "audiometer",
"AUD/KWROL": "audiologist",
"AF/TKAEU": "affidavit",
"AF/KA": "avocado",
"AF/HREU/PWER": "aflibercept",
"AF/HREU": "aflibercept",
"AF/REU": "avaricious",
"AF/REURB": "avaricious",
"AFR/TKAOES": "aphrodisiac",
"AFRPB/PW*EU": "archbishop",
"AFRPB/PWEU": "archbishop",
"AFRPB/HRE": "archuleta",
"AFRPB/A*EUPB": "archangel",
"AFRPB/A*PBG": "archangel",
"AFPL": "amphibole",
"AFL/KWRAEUR": "alveolary",
"AFL/KWRAR": "alveolary",
"AR/STO": "aristocrat",
"AR/STORBG": "aristocracy",
"AR/STOBG/RA": "aristocracy",
"AR/STOBG": "aristocracy",
"AR/SE": "arsenic",
"AR/TKPWA": "arigato",
"AR/TKPWAOU/PHEPB/TA": "argumentative",
"AR/TKPWAOU/PHEPB": "argumentative",
"AR/TKAOU/WEU": "arduino",
"AR/TKAOU": "arduino",
"AR/TAOER": "arterial",
"AR/TAOES": "artesian",
"AR/TE": "artemis",
"AR/TEU": "artillery",
"AR/TEU/TPEU": "artificiality",
"AR/TEU/TPEURB": "artificiality",
"AR/TEU/KAOU": "articulates",
"AR/TEU/HRER": "artillery",
"AR/TEUBG": "articulates",
"AR/TEUL": "artillery",
"AR/TEUS": "artistic",
"AR/TER": "artery",
"AR/KWRAOE": "aria",
"AR/KWROE": "areolar",
"AR/KWROEL": "areolar",
"AR/KHAOE/KWRO/HRO": "archaeologist",
"AR/KHAOE/KWRO": "archaeological",
"AR/KHAOE": "archaeologist",
"AR/KHAOE/KWRO/HROPBLG": "archaeological",
"AR/KHAOE/KWROL": "archaeologist",
"AR/KHAEU": "archaic",
"AR/KHEU/TAOEUP": "archetypal",
"AR/KHEU": "architect",
"AR/KA": "arcanum",
"AR/KAOE/KWRO/HRO": "archaeologic",
"AR/KAOE/KWRO": "archaeological",
"AR/KAOE": "archaeologists",
"AR/KAOE/KWRO/HROPBLG": "archaeological",
"AR/KAOE/KWROL": "archaeologists",
"AR/KAEU": "archaic",
"AR/KEU": "architect",
"AR/KEU/TAOEUP": "archetypal",
"AR/PWEU/TRAEUR": "arbitrary",
"AR/PWEU": "arbiter",
"AR/PWEU/TRAR": "arbitrary",
"AR/PHA/TKPWE": "armageddon",
"AR/PHA": "armaments",
"AR/PHA/TKEU": "armadillo",
"AR/PE/SKWREU": "arpeggio",
"AR/PE": "arpeggio",
"AR/PEPBLG": "arpeggio",
"ARP/PWAEUT": "approbative",
"ARP/HEPB": "apprehensive",
"ARP/HEPBS": "apprehensible",
"ARPL/TKEU": "armadillo",
"ARBG/TEBG": "architectural",
"ARBG/TEBG/TOPB": "architectonic",
"ARBG/KWRO/HRO": "archaeology",
"ARBG/KWRO": "archaeology",
"ARBG/KWROL": "archaeologists",
"ARBG/PHEG": "acromegaly",
"ARBG/PEL": "archipelago",
"ARBG/HRO/SKWREUBG": "archaeologically",
"ARBG/HRO": "archaeologically",
"ARBG/HROPBLG": "archaeological",
"ARG/KUL": "agricultural",
"ART/TPEU": "artificiality",
"ART/TPEURB": "artificially",
"ART/-F/KHORGD": "{>}artofchording.com",
"ART/-F": "{>}artofchording.com",
"ART/-LS": "artlessness",
"ARS": "aristocracy",
"ARS/TO": "aristocrat",
"ARS/TORBG": "aristocracy",
"ARS/TOBG/RA": "aristocracy",
"ARS/TOBG": "aristocracy",
"ARD/WEU": "arduino",
"AP/STO": "apostolic",
"AP/THE": "apathetic",
"AP/THET": "apathetically",
"AP/TAOEUZ": "appetizers",
"AP/TEU": "aptitude",
"AP/PWAEUT": "approbative",
"AP/HREU": "applicant",
"AP/HREU/KAEUT": "applicator",
"AP/HEPBS": "apprehensible",
"AP/RA": "apparatus",
"AP/RAOE": "apprehends",
"AP/RAOE/HEPBS": "apprehensible",
"AP/RAT": "apparatus",
"AP/RO": "approbate",
"AP/ROE": "approbative",
"AP/ROE/PWAEUT": "approbative",
"AP/RE/HEPB": "apprehensive",
"AP/RE": "apprehends",
"AP/RE/HEPBS": "apprehensible",
"AP/REU": "apricot",
"APB/STHAOES": "anesthesiology",
"APB/SKWREU/KWRO": "angiography",
"APB/SKWREU/KWRO/TKPWRAF": "angiography",
"APB/SKWREU/KWROE": "angiography",
"APB/SKWREU/KWROE/TKPWRAF": "angiography",
"APB/SKWREU/KWRORG": "angiography",
"APB/SKWREU/KWROP": "angioplasty",
"APB/SKWREU/KWROP/HRAFT": "angioplasty",
"APB/SKWREU/KWROP/HRAS": "angioplasty",
"APB/SKWREU/KWROG": "angiogram",
"APB/SKWREL": "angelically",
"APB/SRER": "anniversary",
"APB/SRERS": "anniversary",
"APB/SEFT": "ancestors",
"APB/SES": "ancestors",
"APB/TKPWAOU": "anguli",
"APB/TKPWAOU/HRAEUR": "angularity",
"APB/TKPWAOU/HRAEUR/KWREU": "angularity",
"APB/TKPWOR": "angora",
"APB/TKRO": "androgens",
"APB/TKROL": "andrology",
"APB/TKAPB": "andante",
"APB/TPHRA*BG": "anaphylaxis",
"APB/TPHRABG": "anaphylactic",
"APB/THRO/PHOR": "anthromorphic",
"APB/THRO/PO/PHOR": "anthropomorphize",
"APB/THRO/PO": "anthropologically",
"APB/THRO/PO/HROPBLG": "anthropologically",
"APB/THROE/PO/PHOR": "anthropomorphize",
"APB/THROE/PO": "anthropomorphize",
"APB/THROP/PHOR": "anthropomorphize",
"APB/THROP": "anthropomorphize",
"APB/THO/HRO": "anthologist",
"APB/THO": "anthologist",
"APB/THOL": "anthologist",
"APB/TA/TKPWO": "antagonistic",
"APB/TA": "antagonistic",
"APB/TA/TKPWO/TPHEUS": "antagonistic",
"APB/TAOE/PWEL": "antebellum",
"APB/TAOER": "anterior",
"APB/TAG": "antagonistic",
"APB/TAG/TPHEUS": "antagonistic",
"APB/TOPL": "anatomical",
"APB/TE": "antelope",
"APB/TEU/SREPB": "antivenin",
"APB/TEU/SEU/PA": "anticipatory",
"APB/TEU/SEU": "anticipated",
"APB/TEU/SEU/PA/TOR": "anticipatory",
"APB/TEU/THE": "antithesis",
"APB/TEU/TOBGS": "antitoxin",
"APB/TEU/PWO": "antibodies",
"APB/TEU/PHO": "antimony",
"APB/TEU/PHOE": "antimony",
"APB/TEU/PHOPB": "antimony",
"APB/TEU/HEUFT": "antihistamine",
"APB/TEU/OBG/SEU": "antioxidant",
"APB/TEU/OBG": "antioxidant",
"APB/TEU/OBGS": "antioxidants",
"APB/TEU/EUPB/TPHRA": "anti-inflammatory",
"APB/TEU/EUPB": "antiinflammatory",
"APB/TEU/EUPB/TPHRAPL": "antiinflammatory",
"APB/TEUBG/WEU": "antiquity",
"APB/TEUS": "anticipated",
"APB/KWRAOU": "annual",
"APB/KWREBG": "anecdotes",
"APB/KHOEF": "anchovy",
"APB/KRO": "anachronistic",
"APB/KRO/TPHEUS": "anachronistic",
"APB/KOPB": "anaconda",
"APB/PHA/TRO": "animatronic",
"APB/PHA": "animatronic",
"APB/PHOR": "animorphic",
"APB/PHOS": "animosity",
"APB/PEUS/PA": "anticipatory",
"APB/PEUS": "anticipatory",
"APB/HROPBLG": "analogical",
"APB/HREU": "analytics",
"APB/HREUT": "analytical",
"APB/RE": "anoretics",
"APB/REBGS": "anorexically",
"APBG": "angles",
"APBG/SKWREU/KWRO": "angiography",
"APBG/SKWREU": "angiography",
"APBG/SKWREU/KWRO/TKPWRAF": "angiography",
"APBG/SKWREU/KWROE": "angiography",
"APBG/SKWREU/KWROE/TKPWRAF": "angiography",
"APBG/SKWREU/KWRORG": "angiography",
"APBG/SAOEU/KWRE": "anxiety",
"APBG/SAOEU": "anxiety",
"APBG/TKPWAOU/HRAEUR": "angularity",
"APBG/TKPWAOU": "angularity",
"APBG/TKPWAOU/HRAR/KWREU": "angularity",
"APBG/TKPWAOU/HRAR": "angularity",
"APBG/TKPWOR": "angora",
"APBG/KWRAOU/HRAEUR/KWREU": "angularity",
"APBG/KWRAOU/HRAEUR": "angularity",
"APBG/KWRAOU": "angularity",
"APBG/KWRO": "angiography",
"APBG/KWRO/TKPWRAF": "angiography",
"APBG/KWROE": "angiography",
"APBG/KWROE/TKPWRAF": "angiography",
"APBG/KWROEG": "angiography",
"APBG/KWROR": "angora",
"APBG/KWRORG": "angiography",
"APBT/KWRE": "antyesti",
"APBT/KWRES": "antyesti",
"APBT/PWEL": "antebellum",
"APBT/PHO": "antimony",
"APBT/PHOE": "antimony",
"APBT/OBGS": "antioxidants",
"APBTS/PA": "anticipatory",
"APBTS": "anticipated",
"APBTS/PA/TOR": "anticipatory",
"APBS/THAOES": "anesthesiologist",
"APBS": "answering",
"APBS/THAOEZ": "anesthesiologist",
"APBS/THE": "anesthetics",
"APL/TKEBGS": "ambidextrous",
"APL/TPHAOE": "amnesia",
"APL/TPHAOERB": "amnesia",
"APL/TPHAOES": "amnesiac",
"APL/TPHEU": "amnion",
"APL/TPHEFT": "amnesty",
"APL/TPHES": "amnestic",
"APL/TPO*": "amphora",
"APL/TPO*R": "amphora",
"APL/TP*EU/TP*EU": "amphiphilic",
"APL/TP*EU/THAOE": "amphitheaters",
"APL/TP*EUB": "amphibious",
"APL/TP*ET": "amphetamines",
"APL/KWRA": "amiably",
"APL/KWRAB": "amiably",
"APL/KA": "amicably",
"APL/KAB": "amicably",
"APL/PWHRA": "ambulatory",
"APL/PWROES": "ambrosio",
"APL/PWA/SA": "ambassador",
"APL/PWA": "ambassadorship",
"APL/PWA/TKOR": "ambassadorship",
"APL/PWAOU/HRA": "ambulatory",
"APL/PWAOU": "ambulette",
"APL/PWAOUL": "ambulatory",
"APL/PWAS": "ambassadors",
"APL/PWEU/SRA": "ambivalence",
"APL/PWEU/TKPWAOU": "ambiguous",
"APL/PWEU/TKEBGS": "ambidexterous",
"APL/PWEUF": "ambivalence",
"APL/PWEUG": "ambiguous",
"APL/PHREU/TPEU": "amplification",
"APL/PAOU": "ampullula",
"APL/PAOU/HRAEUR": "ampullary",
"APL/PAOU/HRAR": "ampullaris",
"APL/PAOU/HRU": "ampullula",
"APL/PER": "ampersand",
"APL/RE": "amaretto",
"APL/REU": "amaryllis",
"APS/TO": "apostolic",
"APS": "apostolic",
"AB/STEU": "abstinence",
"AB/SKOPB": "abscondee",
"AB/SO": "absolute",
"AB/SOR": "absorbance",
"AB/SORP": "absorptive",
"AB/SORPT": "absorptive",
"AB/SOPB": "absonant",
"AB/SEU": "abscisic",
"AB/SEUS": "abscisic",
"AB/SEPB": "absentee",
"AB/SUR": "absurdum",
"AB/TKAOUS": "abducens",
"AB/TKOE": "abdomen",
"AB/TKOPL": "abdominis",
"AB/TKEU": "abdicate",
"AB/TKUBG": "abductee",
"AB/TPHOR": "abnormality",
"AB/TPHORPL": "abnormally",
"AB/RAOE": "abreaction",
"AB/ROPL": "aberrometer",
"ABG/SO/HROT": "axolotl",
"ABG/SO": "axolotl",
"ABG/SOE/HROT": "axolotl",
"ABG/SOE": "axolotl",
"ABG/SE": "accelerate",
"ABG/SE/SOR": "accessories",
"ABG/SE/HRER": "accelerate",
"ABG/SEUP": "accipient",
"ABG/SEP": "acceptor",
"ABG/SEPB": "accentuate",
"ABG/SEL/ROE": "accelerograph",
"ABG/SES/KWROR": "accessorize",
"ABG/TKAOEPL": "academia",
"ABG/TKE": "academics",
"ABG/TKEPL": "academically",
"ABG/TPHO": "acknowledge",
"ABG/THAOES": "akathisia",
"ABG/THE": "akathetic",
"ABG/TEU": "activity",
"ABG/TEU/SREU": "activity",
"ABG/TEUPB": "actinic",
"ABG/KWEUS": "acquisition",
"ABG/KWEUZ": "acquisitive",
"ABG/KHUR/KWRAEUR": "actuarial",
"ABG/KHUR": "acturial",
"ABG/WA": "aquiline",
"ABG/WA/TPO*EB": "aquaphobia",
"ABG/WAOE": "acquiescing",
"ABG/WEU": "aquitard",
"ABG/WEUS": "acquisitive",
"ABG/WEUZ": "acquisitive",
"ABG/RA": "accuracy",
"ABG/RAS": "accuracy",
"ABG/ROE": "acrolein",
"ABG/REUPL": "acrimonious",
"ABGT/TEUF": "activities",
"ABGS/KWRO/PHA": "axiomatic",
"ABGS/HROT": "axolotl",
"ABTS": "abstinence",
"ABS": "absolute",
"ABD": "abdomen",
"AL/SKWRAOES": "algesic",
"AL/SKWRE": "algebraic",
"AL/SKWREPB": "allogenic",
"AL/SRAOE": "alveolary",
"AL/SRAOE/HRAEUR": "alveolary",
"AL/TKPWRE": "allegretto",
"AL/TKPWAEU": "alligators",
"AL/TKPWOR": "allegorical",
"AL/TKPWORBG": "allegorically",
"AL/TKPWEU": "alginate",
"AL/TKPWEUPB": "alginate",
"AL/TKO": "aldolase",
"AL/TPAL": "alfalfa",
"AL/TRAOU": "altruistic",
"AL/TRAOU/WEUS": "altruistic",
"AL/TRAOUS": "altruistic",
"AL/TO/TKPWE": "altogether",
"AL/TEU/PHE": "altimeter",
"AL/TEU": "altimeter",
"AL/TEUPL": "altimeter",
"AL/TER/TPHA": "alternatives",
"AL/TER/TPHAEU": "alternator",
"AL/TERPB": "alternatives",
"AL/KWRA/TOR": "aleatory",
"AL/KHE": "alchemist",
"AL/KREU": "alacrity",
"AL/KA/HROE": "alkalosis",
"AL/KA/HREUPB": "alkalinity",
"AL/KO": "alcohol",
"AL/KO/HO": "alcoholic",
"AL/KOE": "alcoa",
"AL/KE": "alchemist",
"AL/PWAOE": "albeit",
"AL/PWAOUT": "albuterol",
"AL/PWAS": "alabaster",
"AL/PWEU": "albican",
"AL/PWEUPB": "albinism",
"AL/PHA": "almanacs",
"AL/PHAOEUT": "almightily",
"AL/PHEPB/TAEUR": "alimentary",
"AL/PHEPB": "alimentary",
"AL/PA": "alpaca",
"AL/PAOUR": "allopurinol",
"AL/RE": "already",
"AL/-PLS": "almshouse",
"ALG": "algorithm",
"ALT/TPHAEUT": "alternating",
"ALT/TPHAT": "alternately",
"ALT/RA": "alterably",
"ALZ": "alzheimer's",
"AG/TPHOES": "agnosia",
"AG/TPHOS": "agnostics",
"AG/RA": "agoraphobia",
"AG/RA/TPO*EB": "agoraphobia",
"AG/RO/TPHO": "agronomy",
"AG/RO": "agronomy",
"AG/RE": "aggrecan",
"AG/REU/KUL": "agricultural",
"AG/REU": "agribusiness",
"AT/PHO": "atmospheric",
"AT/PHO*E": "atmosphere",
"AT/PHOE": "atmospheric",
"AT/PHOES": "atmospheric",
"AT/PHOS": "atmospheric",
"AT/HRAPB": "atlantic",
"AT/REU": "attributed",
"ATS": "atmospheric",
"AS/TP*EUBGS": "asphyxiant",
"AS/THE": "aesthetician",
"AS/THET": "aesthetically",
"AS/TRO/TPHO": "astronomer",
"AS/TRO/TPHOPL": "astronomically",
"AS/TRO/TP*EU": "astrophysics",
"AS/TRO/TP*EUS": "astrophysics",
"AS/TRO/TUR": "astroturf",
"AS/TRO/HRO": "astrologer",
"AS/TRO/HROPBLG": "astrological",
"AS/TROE/TP*EU": "astrophysics",
"AS/TROE/TP*EUS": "astrophysics",
"AS/TROE/TUR": "astroturf",
"AS/TROPB": "astronomer",
"AS/TROL": "astrologer",
"AS/TREUFBGS": "asterixis",
"AS/TAB": "acetabular",
"AS/KAOU": "osculate",
"AS/PHRE": "asplenic",
"AS/PHREPB": "asplenic",
"AS/PRAEU": "aspirator",
"AS/PAR": "aspartic",
"AS/POR": "asportation",
"AS/PORT": "asportation",
"AS/PEUR": "aspirins",
"AS/PER": "asperity",
"AS/ROE": "acerola",
"AD/SKWRAOUF": "adjuvant",
"AD/SKWRAOUD": "adjudicator",
"AD/SKWRAOUD/KAEUT": "adjudicator",
"AD/SKWREBG": "adjectival",
"AD/SKWREBGT": "adjectives",
"AD/SRAPB": "advantage",
"AD/SRO": "advocate",
"AD/SROE/KA": "advocacy",
"AD/SROE": "advocate",
"AD/SRER/SAEUR": "adversary",
"AD/SRER": "advertorial",
"AD/SRER/TOR": "advertorial",
"AD/SRERS/KWRAEUR": "adversary",
"AD/SREPB": "adventures",
"AD/TPHOE": "adenosis",
"AD/KWREU": "additive",
"AD/KWA": "adequacy",
"AD/KWAU": "adequacy",
"AD/KWE": "adequacy",
"AD/PHO": "admonitory",
"AD/PHEU/TPHEU": "administrate",
"AD/PHEU": "administration",
"AD/PHEU/TPHEUS": "administration",
"AD/PHEUR": "admirable",
"AD/PHEURPB": "administered",
"AD/PHEUPB/STRA": "administrability",
"AD/PHEUPB/STRAEU/TEUF": "administratively",
"AD/PHEUPB/STRAEU": "administratis",
"AD/PHEUPB/STRAEUT/KWREUF": "administratively",
"AD/PHEUS": "admissibility",
"AD/WAOE": "adwaita",
"AD/HRAOUPL": "adluminal",
"AD/HRE": "adolescence",
"AD/HRES": "adolescent",
"AD/HAOE": "adhesive",
"AD/HAOES": "adhesin",
"AZ/PHA": "asthmatic",
"AZ": "azimuth",
"O/SRAOU/HRA": "ovulatory",
"O/SRAOU": "ovular",
"O": "olives",
"O/SRAOU/HRA/TOR": "ovulatory",
"O/SAOU/WAEUR": "ossuary",
"O/SAOU": "ossuary",
"O/SE": "ocelot",
"O/SEU": "oscillate",
"O/SEU/TPEU": "ossification",
"O/SEU/HRA": "oscillatory",
"O/SEU/HRA/TOR": "oscillatory",
"O/SEU/HRAEU": "oscillator",
"O/TKEU": "odyssey",
"O/TPEU": "officiant",
"O/TPEURB": "officious",
"O/TPEURBS": "officiousness",
"O/TPEPB": "offenders",
"O/TPEPBD": "offenders",
"O/PWHREUF": "oblivion",
"O/PWE": "obelisk",
"O/PAOU": "opulence",
"O/PO": "opposites",
"O/POEPB": "opponents",
"O/POR/TAOU/TPHEU": "opportunities",
"O/POR/TAOU": "opportunistic",
"O/POR": "opportune",
"O/POR/TAOU/TPHEUS": "opportunistic",
"O/PE": "operetta",
"O/PE/RA/TOR": "operatory",
"O/PE/RAEU": "operators",
"O/PE/RAPB": "operandi",
"O/PE/RE": "operetta",
"O/PER": "operably",
"O/PER/KWRA/TOR": "operatory",
"O/PER/KWRAEU": "operators",
"O/PER/KWRAPB": "operandi",
"O/PER/KWRE": "operetta",
"O/HREU": "oligarchs",
"O/HREU/SRAEUR": "olivary",
"O/HREU/TKPWAR": "oligarchic",
"O*RT/TKPWRA": "orthographer",
"O*RT/TKPWRAF": "orthographer",
"O*RT/TKPWO": "orthogonal",
"O*RT/TKPWOPB": "orthogonal",
"O*RT/TKOPB": "orthodontics",
"O*RT/TKOPBT": "orthodontia",
"O*RT/TPHORG": "orthography",
"O*RT/PAOE": "orthopedics",
"O*RT/PAOED": "orthopedically",
"O*RT/HRO/SKWREU": "orthological",
"O*RT/HRO": "orthological",
"O*RT/HROPBLG": "orthological",
"O*T": "other",
"OE/SRAEU": "ovalis",
"OE/SRAEUR": "ovaries",
"OE/SRAR": "ovaries",
"OE/SRER/SAO*E": "overzealous",
"OE/SRER/SAOE": "oversees",
"OE/SRER/SAE": "overseas",
"OE/SRER/S*E": "overzealous",
"OE/SRER/S*EUPL": "oversimplification",
"OE/SRER/S*EUPL/HREU": "oversimplification",
"OE/SRER/S*EUPL/HREU/TPEU": "oversimplification",
"OE/SRER/SEUPL/PHREU": "oversimplification",
"OE/SRER/SEUPL": "oversimplification",
"OE/SRER/SEUPL/PHREU/TPEU": "oversimplification",
"OE/SRER/SU": "oversupply",
"OE/SRER/KO*PL": "overcompensate",
"OE/SRER/KOPL/PEPB": "overcompensate",
"OE/SRER/PRO/TEBG": "overprotective",
"OE/SRER/PRO": "overprotective",
"OE/SRER/PRO/TEBGT": "overprotective",
"OE/SRER/PREBG": "overprotective",
"OE/SRER/PREBGT": "overprotective",
"OE/SRER/WHEL": "overwhelms",
"OE/SRER/WR*EU": "overwritten",
"OE/SRER/WEL": "overwhelms",
"OE/SRER/RAOE": "overreaction",
"OE/SRER/RE": "overreaction",
"OE/SRER/A": "overachieve",
"OE/SRER/AOET": "overeaten",
"OE/SRER/AFRPB": "overarching",
"OE/SRER/EUPB": "overindulge",
"OE/SRER/EFPL": "overemphasize",
"OE/SRER/EFT": "overestimate",
"OE/SRER/EPL/TPA*": "overemphasize",
"OE/SRER/EPL": "overemphasize",
"OE/SRER/ES/TEU": "overestimate",
"OE/SRER/ES": "overestimate",
"OE/SAOE/KWRA": "oceanic",
"OE/SAOE": "oceanic",
"OE/SEU/HRO": "oscilloscope",
"OE/SEU": "oscilloscope",
"OE/SEU/HROE": "oscilloscope",
"OE/SEUL": "oscilloscope",
"OE/TKO/PHAOE": "odometer",
"OE/TKO": "odometer",
"OE/TKO/PHE": "odometer",
"OE/TKOR/KWREUF": "odoriferous",
"OE/TKOPL": "odometer",
"OE/TKEU": "odious",
"OE/TPEPB": "offenders",
"OE/TAOEU": "otitis",
"OE/TEU": "otium",
"OE/KWRAEU": "oasis",
"OE/KWAEULGS": "occasionalism",
"OE/KWAEUGS": "occasionally",
"OE/KHRAOU": "occludens",
"OE/KHRAOUS": "occlusive",
"OE/KUL": "occulta",
"OE/PWHROPB/TKPWA": "oblongata",
"OE/PWHROPB": "oblongata",
"OE/PWHROPBG/TKPWA": "oblongata",
"OE/PWHREU": "obliterate",
"OE/PWHREU/SREU": "oblivious",
"OE/PWHREU/TKPWA": "obligatoriness",
"OE/PWHREU/TKPWA/TOR/KWREU": "obligatoriness",
"OE/PWHREU/TKPWA/TOR": "obligatoriness",
"OE/PWHREU/TER": "obliterate",
"OE/PWHREUF": "oblivious",
"OE/PWHREUG/TKPWA": "obligatory",
"OE/PWHREUG": "obligatoriness",
"OE/PWHREUT": "obliterans",
"OE/PWAOE/TKEU": "obedience",
"OE/PWAOE": "obedience",
"OE/PWAOED": "obedience",
"OE/PWEU": "obituary",
"OE/PWEU/KHAOU/WAEUR": "obituary",
"OE/PWEU/KHAOU": "obituary",
"OE/PWEUFP/WAEUR": "obituary",
"OE/PWEUFP": "obituary",
"OE/PHAOE": "omega",
"OE/PHAOEU": "omitis",
"OE/PHAEU": "omega",
"OE/PHE": "omega",
"OE/PRE": "oppressive",
"OE/PA/SEU": "opacities",
"OE/PA": "opalescent",
"OE/PA/SEU/TPEU": "opacification",
"OE/PA/HRE": "opalescent",
"OE/PAS": "opacities",
"OE/PAS/TPEU": "opacification",
"OE/PO": "opossum",
"OE/POE": "opponens",
"OE/PEU": "opium",
"OE/PEUPB/KWRO": "opinionated",
"OE/PEUPB": "opinions",
"OE/PER/KAOU": "operculum",
"OE/PER": "operculum",
"OE/PERBG": "operculum",
"OE/WAEU": "oasis",
"OE/HRAOE": "oleate",
"OE/HREUPL/PEU": "olympiad",
"OE/HREUPL": "olympiad",
"OEURPB": "orientate",
"OEUPBT": "ointments",
"OEULS": "oscilloscope",
"OEUT/SKWRE": "autogenous",
"OEUT/TPHO": "autonomous",
"OEUT/KRA": "autocracy",
"OEUT/PWAOEU/KWRO": "autobiography",
"OEUT/PWAOEU": "autobiography",
"OEUT/PWAOEU/KWRO/TKPWRAF": "autobiography",
"OEUT/PWAOEU/KWRORG": "autobiography",
"OEUT/PWO*E": "autobiography",
"OEUT/PHA": "automaticity",
"OEUT/PHA/TEUS": "automaticity",
"OEUT/PHAT": "automatically",
"OEUT/PHOE": "automobiles",
"OEUT/PHOET": "automotive",
"OEUT/PHOPL": "autonomist",
"OEUS/THER": "isothermal",
"OEUS/TO": "isotopic",
"OEUS/TOE": "isotopic",
"OEUS/KHOR": "isochoric",
"OEUS/KOR": "isochoric",
"OEUS/PWAEUR": "isobaric",
"OEFR/SAO*E": "overzealous",
"OEFR/SAOE": "oversees",
"OEFR/SAE": "overseas",
"OEFR/S*E": "overzealous",
"OEFR/S*EUPL": "oversimplification",
"OEFR/S*EUPL/HREU": "oversimplification",
"OEFR/S*EUPL/HREU/TPEU": "oversimplification",
"OEFR/SEUPL/PHREU": "oversimplification",
"OEFR/SEUPL": "oversimplification",
"OEFR/SEUPL/PHREU/TPEU": "oversimplification",
"OEFR/SU": "oversupply",
"OEFR/KO*PL": "overcompensate",
"OEFR/KOPL/PEPB": "overcompensate",
"OEFR/PRO/TEBG": "overprotective",
"OEFR/PRO": "overprotective",
"OEFR/PRO/TEBGT": "overprotective",
"OEFR/PREBG": "overprotective",
"OEFR/PREBGT": "overprotective",
"OEFR/WHEL": "overwhelms",
"OEFR/WR*EU": "overwritten",
"OEFR/WEL": "overwhelms",
"OEFR/RAOE": "overreaction",
"OEFR/RE": "overreaction",
"OEFR/A": "overachieve",
"OEFR/AOET": "overeaten",
"OEFR/AFRPB": "overarching",
"OEFR/EUPB": "overindulge",
"OEFR/EFPL": "overemphasize",
"OEFR/EFT": "overestimate",
"OEFR/EPL/TPA*": "overemphasize",
"OEFR/EPL": "overemphasize",
"OEFR/ES/TEU": "overestimate",
"OEFR/ES": "overestimate",
"OERB/TPHOG/RA": "oceanographer",
"OERB/TPHOG": "oceanographer",
"OERB/KWRA": "oceanic",
"OERB/KWRAPB": "oceanic",
"OERB/KWRE/TPHO/TKPWRAF": "oceanographer",
"OERB/KWRE/TPHO": "oceanographer",
"OERB/KWRE": "oceanographer",
"OERB/KWRE/TPHOG/RA": "oceanographer",
"OERB/KWRE/TPHOG": "oceanographer",
"OEP/STOEUPB": "openstenoproject",
"OEP/HRE": "opalescent",
"OEB/HROPB/TKPWA": "oblongata",
"OEB/HROPB": "oblongata",
"OEB/HROPBG/TKPWA": "oblongata",
"OEB/HREU": "obliterate",
"OEB/HREU/SREU": "oblivious",
"OEB/HREU/TKPWA": "obligatoriness",
"OEB/HREU/TKPWA/TOR": "obligatoriness",
"OEB/HREU/TER": "obliterate",
"OEB/HREUF": "oblivious",
"OEB/HREUG": "obligatoriness",
"OEB/HREUT": "obliterans",
"OEBG/KWREU": "okey-doke",
"OEBG/HRAOU": "occludens",
"OEBG/HRAOUS": "occlusive",
"OELD/KWREU": "oldies",
"OEGS/TKPWRAF": "oceanography",
"OEGS/KWRA": "oceanic",
"OEGS/KWRAPB": "oceanic",
"OEGS/KWRO": "oceanographer",
"OEGS/KWRO/TKPWRAF": "oceanographer",
"OEGS/KWROG": "oceanographer",
"OEGS/KWROG/RA": "oceanographer",
"OES": "ocelot",
"OUT/PHA/TPHAOU": "outmaneuver",
"OUT/PHA": "outmaneuver",
"OUT/HRAOEU": "outliers",
"OUT/RAEUPBLG": "outrageous",
"OUT/*F": "out-of-tune",
"OF/PWEU": "off-by-one",
"OF/HRA": "ovulatory",
"OF/-T": "off-the-record",
"OFBS": "obfuscate",
"OFT/TPHA": "ostinato",
"OFT/KWROL": "osteology",
"OFT/RA": "ostracon",
"OR/TKPWA": "origami",
"OR/TKPWAPBD": "organdy",
"OR/TKPWAS": "orgasmic",
"OR/TKEU/TPHAEUR": "ordinarily",
"OR/TKEU": "ordinal",
"OR/TPHA/PHEPB": "ornamentation",
"OR/TPHA": "ornaments",
"OR/TPHEU/THO/HRO": "ornithology",
"OR/TPHEU/THO": "ornithology",
"OR/TPHEU": "ornithology",
"OR/TPHEU/THOL": "ornithology",
"OR/THO/TKPWRAF": "orthographer",
"OR/THO/PAOE": "orthopedics",
"OR/THO/HRO/SKWREU": "orthological",
"OR/THO/HRO": "orthological",
"OR/THO/HROPBLG": "orthological",
"OR/THOE/TKPWRA": "orthographer",
"OR/THOE/TKPWRAF": "orthographer",
"OR/THOE/TKPWO": "orthogonal",
"OR/THOE/TKPWOPB": "orthogonal",
"OR/THOE/TKOPB": "orthodontics",
"OR/THOE/TKOPB/SHEU": "orthodontia",
"OR/THOE/TKOPBT": "orthodontia",
"OR/THOE/PAOE": "orthopedics",
"OR/THOE/PAOED": "orthopedically",
"OR/THOERG": "orthography",
"OR/THORG": "orthography",
"OR/TOR": "oratory",
"OR/KWRA/KAOU": "oracular",
"OR/KWRAEU": "orator",
"OR/KWRAPB/TKPWAOU": "orangutan",
"OR/KWRAPB": "orangutan",
"OR/KWRAPBG/TKPWAOU": "orangutan",
"OR/KWRAPBG": "orangutan",
"OR/KWRAPBG/KWRAOU": "orangutan",
"OR/KWRABG": "oracles",
"OR/KWRE/TKPWA": "oregano",
"OR/KWRE": "oregano",
"OR/KWREU/SKWREU/TPHAEU": "originator",
"OR/KWREU/SKWREU": "originals",
"OR/KWREU": "orifice",
"OR/KWREU/TKPWA": "origami",
"OR/KWREUPBLG/TPHAEU": "originator",
"OR/KWREUPBLG": "originals",
"OR/KWREPB": "oriental",
"OR/KWREG": "oregano",
"OR/KHE": "orchestral",
"OR/KHES": "orchestral",
"OR/KAOEU": "orchitis",
"OR/KE": "orchestral",
"OR/KEU/KWREBG/TO": "orchiectomy",
"OR/KEU/KWREBG": "orchiectomy",
"OR/KEU": "orchiectomy",
"OR/KEU/KWREBGT": "orchiectomy",
"OR/KES": "orchestral",
"OR/PWEU/TO/PA": "orbitopathy",
"OR/PWEU/TO": "orbitopathy",
"OR/PWEU": "orbicular",
"OR/PWEU/TOP": "orbitopathy",
"OR/PWEU/KAOU": "orbicular",
"OR/PWEU/KAOU/HRAEUR": "orbicularis",
"OR/PWEUBG": "orbicularis",
"ORP/TAOU/TPHEU": "opportunities",
"ORP/TAOU": "opportunistic",
"ORP": "operable",
"ORP/TAOU/TPHEUS": "opportunistic",
"ORP/TOR": "operatory",
"ORPB/THOL": "ornithology",
"ORPB": "ornaments",
"ORPB/PHEPB": "ornamentation",
"ORPBLG/TPHAEU": "originator",
"ORPGS/KWRAL": "operationalize",
"ORBG": "oracles",
"ORBG/KWREBGT": "orchiectomy",
"ORBS": "observation",
"ORG/TPHAEUZ": "organizational",
"ORD/TPHAEUR": "ordinary",
"OP/THAL/PHO/HROPBLG": "ophthalmological",
"OP/THAL/PHO": "ophthalmological",
"OP/THAL": "ophthalmological",
"OP/TAOURPB": "opportunity",
"OP/TO": "optometric",
"OP/TO/KEU/TPHE": "optokinetic",
"OP/TO/KEU": "optokinetic",
"OP/TO/PHE": "optometric",
"OP/TO/PHET": "optometric",
"OP/TOE": "optotype",
"OP/TOPL": "optometrists",
"OP/TEU": "optimus",
"OP/TEU/PHEU": "optimization",
"OP/TEU/PHEUS": "optimistic",
"OP/PEUPB": "opinion",
"OP/RA/TOR": "operatory",
"OP/RAEU": "operators",
"OP/RAPB": "operandi",
"OP/RE": "operetta",
"OPB/KWRO/PHA/TO/PAOE": "onomatopoeic",
"OPB/KWRO/PHA/TO": "onomatopoeic",
"OPB/KWRO/PHA": "onomatopoeic",
"OPB/KWRO": "onomatopoeic",
"OPB/KWRO/PHA/TOE/PAOE": "onomatopoeic",
"OPB/KWRO/PHA/TOE": "onomatopoeic",
"OPB/KWROE/PHA/TO/PAOE": "onomatopoeic",
"OPB/KWROE/PHA/TO": "onomatopoeic",
"OPB/KWROE/PHA": "onomatopoeic",
"OPB/KWROE": "onomatopoeic",
"OPB/KWROE/PHA/TOE/PAOE": "onomatopoeic",
"OPB/KWROE/PHA/TOE": "onomatopoeic",
"OPB/KO/HRO": "oncology",
"OPB/KOL": "oncology",
"OPB/PHA/TO/PAOE": "onomatopoeic",
"OPB/PHA/TO": "onomatopoeic",
"OPB/PHA": "onomatopoeic",
"OPB/PHA/TOE/PAOE": "onomatopoeic",
"OPB/PHA/TOE": "onomatopoeic",
"OPB/PHAT/PAOE": "onomatopoeic",
"OPB/PHAT": "onomatopoeic",
"OPB/RAPL": "onramp",
"OPB/-T": "on-the-go",
"OPL/TPH*EUP": "omnipotent",
"OPL/TPHEU/SEU": "omniscience",
"OPL/TPHEU/PRE": "omnipresence",
"OPL/TPHEU/PO": "omnipotence",
"OPL/TPHEU/POE": "omnipotence",
"OPL/TPHEURB": "omniscience",
"OPL/TPHEUP": "omnipotence",
"OPL/TPHEUS": "omniscience",
"OPL/KWRAOEU": "omitis",
"OPL/KWREU": "omicron",
"OPL/PWO": "embouchure",
"OPT/KEU/TPHE": "optokinetic",
"OPT/KEU": "optokinetic",
"OPT/PHE": "optometric",
"OPT/PHEUS": "optimistic",
"OPT/PHET": "optometric",
"OB/STRAOU": "obstruent",
"OB": "obliterate",
"OB/STRUBG": "obstructive",
"OB/STA": "obstacles",
"OB/STAPB": "obstante",
"OB/STABG": "obstacles",
"OB/STE/TREU": "obstetrical",
"OB/STE": "obstetrician",
"OB/STEU/TPHA": "obstinacy",
"OB/STEU": "obstinate",
"OB/STERT": "obstetrical",
"OB/STET": "obstetrics",
"OB/STET/REU": "obstetrical",
"OB/SKWREBG": "objectives",
"OB/SKWREBG/TEU/SREU": "objectivity",
"OB/SKWREBG/TEU": "objectivity",
"OB/SKWRUR": "objurgate",
"OB/SKUR": "obscurant",
"OB/SRAEU": "obviator",
"OB/SREU/KWRAEU": "obviator",
"OB/SREU": "obvious",
"OB/SAOE": "obsequious",
"OB/SAOEBG": "obsequious",
"OB/SO": "obsolescence",
"OB/SO/HRE": "obsolescence",
"OB/SE/TPHEU": "obscenities",
"OB/SE": "obscenities",
"OB/SEU/TKEU": "obsidian",
"OB/SEU": "obsidian",
"OB/SEUD": "obsidian",
"OB/SEFRB/TOR": "observatory",
"OB/SER/SRA": "observatory",
"OB/SER": "observers",
"OB/SER/SRA/TOR": "observatory",
"OB/SEPB": "obscenities",
"OB/TKAOUR": "obdurate",
"OB/TKUR": "obdurate",
"OB/TPHOBG": "obnoxious",
"OB/TPAOU": "obfuscate",
"OB/TPAOUS": "obfuscate",
"OB/TPUS": "obfuscate",
"OB/TRAOU": "obtrusiveness",
"OB/TRAOUS": "obtrusiveness",
"OB/TAOUR/KWRAEU": "obturator",
"OB/TAOUR": "obturate",
"OB/TUR/KWRAEU": "obturator",
"OB/TUR": "obturate",
"OB/HROPB/TKPWA": "oblongata",
"OB/HROPB": "oblongata",
"OB/HROPBG/TKPWA": "oblongata",
"OB/HREU": "obliterate",
"OB/HREU/SREU": "oblivious",
"OB/HREU/TKPWA": "obligatoriness",
"OB/HREU/TKPWA/TOR": "obligatoriness",
"OB/HREU/TER": "obliterate",
"OB/HREUF": "oblivious",
"OB/HREUG": "obligatoriness",
"OB/HREUT": "obliterate",
"OBL": "obligations",
"OBG/SA": "oxalis",
"OBG/SEU": "occipital",
"OBG/SEU/TKAEU": "oxidatively",
"OBG/SEU/TKEPB": "occidental",
"OBG/SEU/PHOR": "oxymoron",
"OBG/SEU/PHE": "oximeter",
"OBG/SEU/PEU": "occipital",
"OBG/SEUP": "occipital",
"OBG/SEUPL": "oximeter",
"OBG/TA": "octahedral",
"OBG/TA/HAOE": "octahedral",
"OBG/TAOUP": "octuplet",
"OBG/TAG": "octagonal",
"OBG/TO": "octopus",
"OBG/TUP": "octuplet",
"OBG/KWRAOU": "oculus",
"OBG/KWRAOU/PAPB": "occupancy",
"OBG/KWRAOU/PAPBS": "occupancy",
"OBG/PAPB": "occupancy",
"OBG/PAPBS": "occupancy",
"OBGT": "octahedral",
"OBGT/HAOE": "octahedral",
"OBGS/TKAEU": "oxidatively",
"OBGS/TKEPB": "occidental",
"OBGS/KWREU/PHOR": "oxymoron",
"OBT/RAEU": "obturator",
"OBS/STEU/TPHA": "obstinacy",
"OBS/STEU": "obstinacy",
"OBS/STERT": "obstetrical",
"OBS/TPHA": "obstinacy",
"OBS/TRUBG": "obstructive",
"OBS/TA": "obstacles",
"OBS/TAPB": "obstante",
"OBS/TABG": "obstacles",
"OBS/TE/TREU": "obstetrical",
"OBS/TE": "obstetrician",
"OBS/TEU": "obstinate",
"OBS/TERT": "obstetrical",
"OBS/TET": "obstetrics",
"OBS/TET/REU": "obstetrical",
"OBS/HRE": "obsolescence",
"OBS/HRES": "obsolescence",
"OBD": "obdurate",
"OL/SRAEUR": "olivary",
"OL/TKPWAR": "oligarchic",
"OT/AL/SKWREU": "otalgia",
"OT/AL": "otalgia",
"OT/ALG": "otalgia",
"OS": "ocelot",
"OS/TRA": "ostracon",
"OS/TOL": "osteology",
"OS/TE/KWRO/HRO": "osteology",
"OS/TE/KWRO": "osteology",
"OS/TE": "osteology",
"OS/TE/KWROL": "osteology",
"OS/TEU/TPHA": "ostinato",
"OS/TEU": "ostial",
"OS/TEPB/SEUB": "ostensibly",
"OS/TEPB": "ostentation",
"OS/TEPB/TAEU": "ostentatious",
"OS/TEPB/TAEURB": "ostentatious",
"OS/TEPBT": "ostentation",
"OS/TEPBS": "ostensible",
"OS/KAOU": "osculation",
"OS/PHO": "osmolyte",
"OS/PHOE": "osmolality",
"OS/PHOE/HRA/HREU": "osmolality",
"OS/PHOE/HRA": "osmolality",
"OS/PHOE/HRAEUR": "osmolarity",
"OS/PHOE/HRAEUR/KWREU": "osmolarity",
"OS/PHOE/HRAL": "osmolality",
"OS/PHOT": "osmotically",
"OS/PHEU": "osmia",
"OS/HRA": "oscillatory",
"OS/HRA/TOR": "oscillatory",
"OS/HRAEU": "oscillator",
"*EURPBG": "increments",
"*EUPBG/PWA": "incubatory",
"*EUPBG/PWA/TOR": "incubatory",
"*EUPBG/PWAEU": "incubator",
"*EUPL/KA": "implicative",
"*EUPL/KAT": "implicative",
"*EUPL/HREU": "implication",
"*EFL": "elfish",
"*ERT/SHA*EUBG": "earthshaking",
"*EPL/THE": "empathetic",
"*EPL/THET": "empathetically",
"*ET": "ethyl",
"*ET/TPHO": "ethnology",
"*ET/TPHO/SEPB": "ethnocentric",
"*ET/TPHO/TKPWRA": "ethnographer",
"*ET/TPHO/TKPWRAF": "ethnographer",
"*ET/TPHO/HRO": "ethnology",
"*ET/TPHOE/SEPB": "ethnocentric",
"*ET/TPHOE": "ethnographic",
"*ET/TPHOE/TKPWRAF": "ethnographic",
"*ET/TPHORG": "ethnography",
"*ET/TPHOG": "ethnographer",
"*ET/TPHOG/RA": "ethnographer",
"*ET/TPHEU/SEU": "ethnicities",
"*ET/TPHEU": "ethnical",
"*ET/TPHEUS": "ethnicities",
"*ET/KWRA": "ethanol",
"*ET/KWREU": "ethical",
"*UPBG": "uncles",
"*UPL": "umpteen",
"E/STAB": "establish",
"E/SKWRA/KAOU": "ejaculates",
"E/SKWRA": "ejaculates",
"E/SKWRAOU": "educable",
"E/SKWRAOU/KAEU": "educator",
"E/SKWRABG": "ejaculates",
"E/SKWREBG": "ejecta",
"E/SKWRUS": "ejusdem",
"E/SHE": "echelon",
"E/SRA/SKWREU/TPHA": "evaginatus",
"E/SRA/SKWREU": "evagination",
"E/SRA": "evaluable",
"E/SRA/TPHE": "evanescence",
"E/SRA/KAOU/WAEU": "evacuator",
"E/SRA/KAOU": "evacuates",
"E/SRA/PO": "evaporative",
"E/SRA/POR": "evaporated",
"E/SRA/POR/KWRA": "evaporative",
"E/SRA/POR/KWRAEU": "evaporative",
"E/SRA/HRAOU/WA": "evaluative",
"E/SRA/HRAOU": "evaluative",
"E/SRA/HRAOU/WAEU": "evaluator",
"E/SRA/HRAOU/WAT": "evaluative",
"E/SRAEU": "evasive",
"E/SRAEUS": "evasive",
"E/SRAP": "evaporated",
"E/SRAP/RAEU": "evaporative",
"E/SRAPB/SKWRE": "evangelistic",
"E/SRAPB": "evangelical",
"E/SRAPB/SKWRE/HREU": "evangelion",
"E/SRAPB/SKWRE/HREUS": "evangelistic",
"E/SRAPB/SKWREL": "evangelical",
"E/SRAPBLG/TPHA": "evaginatus",
"E/SRAPBLG": "evagination",
"E/SRAPBG": "evangelist",
"E/SRABG/WAEU": "evacuator",
"E/SRABG": "evacuates",
"E/SRAL/WAEU": "evaluator",
"E/SRO/KA": "evocative",
"E/SRO": "evolution",
"E/SRO/KAT": "evocative",
"E/SRO/HRAOUGS/KWRAEUR": "evolutionary",
"E/SROE": "evolution",
"E/SROE/HRAOUGS/KWRAEUR": "evolutionary",
"E/SROBG": "evocative",
"E/SREU/SER": "evisceration",
"E/SREU": "evidence",
"E/SREU/TKEPB/SHEU/KWRAEUR": "evidentiary",
"E/SREU/TKEPB/SHEU": "evidentiary",
"E/SREU/TKEPB": "evidential",
"E/SREUBG": "evictor",
"E/SREUS": "evisceration",
"E/SREPB": "eventual",
"E/SREPBT/WAUL": "eventually",
"E/SREPBT/WAL": "eventually",
"E/SO/TPA*": "esophaguses",
"E/SO": "esoteric",
"E/SO/TROEP": "esotropia",
"E/SO/TER": "esoteric",
"E/SOE/TER": "esoteric",
"E/SOE": "esoteric",
"E/SOF": "esophaguses",
"E/SEPB": "essentials",
"E/SEPB/-RBL/KWRAOEUZ": "essentialization",
"E/TKPWRAOE": "egregious",
"E/TKPWRAOEPBLG": "egregious",
"E/TKPWA/HREU": "egalitarianism",
"E/TKPWA": "egalitarianism",
"E/TKPWA/HREU/TAEUR": "egalitarian",
"E/TKPWA/HREU/TAERPB": "egalitarianism",
"E/TKPWAL": "egalitarian",
"E/TKAOE": "edema",
"E/TKAOU": "educable",
"E/TKAOU/KAEU": "educator",
"E/TKAOU/KAEUGS/KWRAL": "educationally",
"E/TKAEU": "edacious",
"E/TKAEURB": "edacious",
"E/TKEU/TOR": "editorials",
"E/TKEUT/O*R": "editorials",
"E/TKEPB/TAOU": "edentulous",
"E/TKEPB": "edentate",
"E/TKEPBT": "edentulous",
"E/TPHRAOU": "effluence",
"E/TPHROR/TPHEU": "eflornithine",
"E/TPHROR": "efflorescence",
"E/TPHROR/KWRE": "efflorescence",
"E/TPHROR/KWRES": "efflorescence",
"E/TPHRORPB": "eflornithine",
"E/TPHA": "enameled",
"E/TPHAOU/KHRAOE": "enucleation",
"E/TPHAOU": "enucleate",
"E/TPHAOU/PHER": "enumerates",
"E/TPHAOU/HRAOE": "enucleate",
"E/TPHAOUPL": "enumerated",
"E/TPHAOUBG": "enucleation",
"E/TPHAPL": "enamor",
"E/TPHOE": "enoki",
"E/TPHOR": "enormous",
"E/TPHORPL": "enormous",
"E/TPHE": "enemies",
"E/TPHEUG": "enigmatically",
"E/TPHEUG/PHAT": "enigmatically",
"E/TPHER": "enervate",
"E/TPHER/SKWRE/TEU": "energetically",
"E/TPHER/SKWRE": "energetic",
"E/TPHUR/KWRAOE": "enuresis",
"E/TPHUR": "enuresis",
"E/TPHUPB/SEU/KWRA": "enunciative",
"E/TPHUPB/SEU": "enunciative",
"E/TPHUPB": "enunciative",
"E/TPHUPB/SEU/KWRAT": "enunciative",
"E/TPHUPBS": "enunciative",
"E/TPHUPBS/KWRA": "enunciative",
"E/TPHUPBS/KWRAT": "enunciative",
"E/TPROPB/TER": "effrontery",
"E/TPROPB": "effrontery",
"E/TPROPBT": "effrontery",
"E/TPA/SREUR": "efavirenz",
"E/TPA": "efavirenz",
"E/TPAO*E/PHER": "ephemerality",
"E/TPAO*E": "ephemerality",
"E/TPAO*EPL": "ephemerality",
"E/TPAOU": "effusive",
"E/TPAOUS": "effusive",
"E/TPAF": "efavirenz",
"E/TPOR/KWRES": "efflorescence",
"E/TPOR": "efflorescence",
"E/TP*E/PHER": "ephemerality",
"E/TP*E": "ephemerality",
"E/TP*EPL": "ephemerality",
"E/TPE/PHEU": "effeminate",
"E/TPE": "effeminate",
"E/TPEU": "efficacy",
"E/TPEU/SHEPB": "efficiencies",
"E/TPEU/SHEPBS": "efficiencies",
"E/TPEU/KA": "efficacy",
"E/TPEU/KAEU": "efficacious",
"E/TPEU/KAEURB": "efficacious",
"E/TPEU/KAS": "efficacy",
"E/TPEURB/KWREPB": "efficiencies",
"E/TPEURB": "efficiencies",
"E/TPEURB/KWREPBS": "efficiencies",
"E/TPER": "effervesce",
"E/TPEPL": "effeminate",
"E/TPEBG": "effectively",
"E/TPUL": "effulgent",
"E/THA": "ethanol",
"E/THAOER": "ethereum",
"E/TO/PHEU": "etomidate",
"E/TO": "etomidate",
"E/TOPL": "etomidate",
"E/TEU/KWRO/HRO": "etiologies",
"E/TEU/KWRO": "etiologies",
"E/TEU": "etymologist",
"E/TEU/KWRO/HRO/SKWREUBG": "etiologically",
"E/TEU/KWROL": "etiologies",
"E/TEU/PHO/HRO": "etymologically",
"E/TEU/PHO": "etymological",
"E/TEU/PHO/HRO/SKWREUBG": "etymologically",
"E/TEU/PHO/HROPBLG": "etymological",
"E/TERPB": "eternity",
"E/KWRO/SEU/TPHO": "eosinophil",
"E/KWRO/SEU": "eosinophil",
"E/KWRO": "eotax",
"E/KWA/TPHEU/PHEU": "equanimity",
"E/KWA/TPHEU": "equanimity",
"E/KWA": "equatorial",
"E/KWA/TOR": "equatorial",
"E/KWAOEU": "equinovarus",
"E/KWAOEU/TPHO/SRAR": "equinovarus",
"E/KWAOEU/TPHO": "equinovarus",
"E/KWAOEU/TPHOE/SRAR": "equinovarus",
"E/KWAOEU/TPHOE": "equinovarus",
"E/KWAEU": "equator",
"E/KWAU/TPHEU/PHEU": "equanimity",
"E/KWAU/TPHEU": "equanimity",
"E/KWAU": "equalitarian",
"E/KWAU/TPHEUPL": "equanimity",
"E/KWAU/HREU/TAEUR": "equalitarian",
"E/KWAU/HREU": "equalitarian",
"E/KWE": "equerry",
"E/KWEU/SRA": "equivalence",
"E/KWEU/SRO": "equivocal",
"E/KWEU/SROE": "equivocal",
"E/KWEU/TKEUS": "equidistant",
"E/KWEU/POE": "equipotent",
"E/KWEU/HRA/TER": "equilateral",
"E/KWEU/HRA": "equilateral",
"E/KWEU/HRAT": "equilateral",
"E/KWEU/HREU": "equilibrium",
"E/KWEU/HREU/PWREU": "equilibrium",
"E/KWEU/HREURB": "equilibrium",
"E/KWEU/HREUB": "equilibrium",
"E/KWEU/HREUB/REU": "equilibrium",
"E/KWEU/A/TPHAL/SKWRAOE": "equianalgesic",
"E/KWEU/A/TPHAL": "equianalgesic",
"E/KWEU/A": "equianalgesic",
"E/KWEUF": "equivalence",
"E/KWEUFBG": "equivocally",
"E/KWEUL": "equilibrium",
"E/KWEUL/HREUB/REU": "equilibrium",
"E/KWEUL/HREUB": "equilibrium",
"E/KWEFT": "equestrian",
"E/KWEFT/REU": "equestrian",
"E/KWER": "equerry",
"E/KWES/TRAOE": "equestrian",
"E/KWES": "equestrian",
"E/KHRAOE/SEU/KWRAFT": "ecclesiastical",
"E/KHRAOE/SEU": "ecclesiastic",
"E/KHRAOE": "ecclesiastic",
"E/KHRAOE/SEU/KWRAS": "ecclesiastic",
"E/KHRAOES": "ecclesiastic",
"E/KHRAOES/KWRAFT": "ecclesiastical",
"E/KHRAOES/KWRAS": "ecclesiastic",
"E/KHRAOES/KWREU/KWRAFT": "ecclesiastical",
"E/KHRAOES/KWREU": "ecclesiastic",
"E/KHRAOES/KWREU/KWRAS": "ecclesiastic",
"E/KHREBG": "eclectic",
"E/KAOEU": "echinus",
"E/KAOEUPB": "echinus",
"E/KAOU/PHE/TPHEU": "ecumenical",
"E/KAOU/PHE": "ecumenism",
"E/KAOU": "ecumenical",
"E/KAOU/PHEPB": "ecumenical",
"E/KO": "ecological",
"E/KO/SEUS": "ecosystems",
"E/KO/TKPWRAF": "ecography",
"E/KO/TPHO": "econometric",
"E/KO/TPHO/PHE/TREU": "econometrically",
"E/KO/TPHO/PHE": "econometric",
"E/KO/TPHO/PHERT": "econometrically",
"E/KO/TPHO/PHET": "econometric",
"E/KO/TPHOE/PHE/TREU": "econometrically",
"E/KO/TPHOE/PHE": "econometric",
"E/KO/TPHOE": "econometric",
"E/KO/TPHOE/PHERT": "econometrically",
"E/KO/TPHOE/PHET": "econometric",
"E/KO/TPHOPL": "economical",
"E/KO/HRO": "ecologic",
"E/KO/HROPBLG": "ecological",
"E/KOE/SEUS": "ecosystems",
"E/KOE/TPHO/PHE/TREU": "econometrically",
"E/KOE/TPHO/PHE": "econometric",
"E/KOE/TPHO": "econometric",
"E/KOE/TPHO/PHEU": "economically",
"E/KOE/TPHO/PHERT": "econometrically",
"E/KOE/TPHO/PHET": "econometric",
"E/KOE/TPHOE/PHE/TREU": "econometrically",
"E/KOE/TPHOE/PHE": "econometric",
"E/KOE/TPHOE": "econometric",
"E/KOE/TPHOE/PHERT": "econometrically",
"E/KOE/TPHOE/PHET": "econometric",
"E/KOE/HRO": "ecologic",
"E/KOE/HROPBLG": "ecological",
"E/KORG": "ecography",
"E/KOPB": "economies",
"E/KOL": "ecologist",
"E/KEUD": "echidna",
"E/PWO": "ebonic",
"E/PWOE": "ebola",
"E/PWOPB": "ebonic",
"E/PWUL": "ebullient",
"E/PHA": "emanates",
"E/PHAOE": "emilio",
"E/PHAOE/HREU": "emilio",
"E/PHAOEL": "emilio",
"E/PHAOU/HRAEU": "emulator",
"E/PHAEU/SHEU": "emaciate",
"E/PHAEU": "emaciate",
"E/PHAEURB": "emaciate",
"E/PHAPB/SEU/PAEU": "emancipator",
"E/PHAPB/SEU": "emancipate",
"E/PHAPBS/PAEU": "emancipator",
"E/PHAPBS": "emancipate",
"E/PHAS": "emasculate",
"E/PHAS/KAOU": "emasculate",
"E/PHO": "emolument",
"E/PHOE/TEU/KWRO/PHO": "emotiomotor",
"E/PHOE/TEU/KWRO": "emotiomotor",
"E/PHOE/TEU": "emoticon",
"E/PHOE/TEU/KWROPL": "emotiomotor",
"E/PHOEL": "emollient",
"E/PHOET/KWROPL": "emotiomotor",
"E/PHOL/KWRAOU": "emolument",
"E/PHOL": "emollient",
"E/PHE": "emetics",
"E/PHEU/SAEUR": "emissaries",
"E/PHEU": "emilio",
"E/PHEU/HREU": "emilio",
"E/PHEUL": "emilio",
"E/PHER/SKWREPB": "emergencies",
"E/PHER": "emeritus",
"E/PHER/KWREU": "emeritus",
"E/PHERPBLG/KWREPB": "emergency",
"E/PHUL": "emulsification",
"E/PHUL/SEU": "emulsification",
"E/PHUL/SEU/TPEU": "emulsification",
"E/PHULS": "emulsification",
"E/PAU": "epaulets",
"E/POE": "epoetin",
"E/POE/WE": "epoetin",
"E/POEU": "epoetin",
"E/POBGS": "epoxy",
"E/P*EUT": "epithelize",
"E/P*EPBT": "epenthesis",
"E/PEU/SPAEUD": "epispadias",
"E/PEU/SO": "episodic",
"E/PEU/SOD": "episodic",
"E/PEU/SEPB": "epicenters",
"E/PEU/TKAOE/PHEU/KWRO/HRO": "epidemiologic",
"E/PEU/TKAOE/PHEU/KWRO": "epidemiologic",
"E/PEU/TKAOE/PHEU": "epidemiologic",
"E/PEU/TKAOE": "epidemiologic",
"E/PEU/TKAOEPL": "epidemiology",
"E/PEU/TKE/PHEU/KWRO/HRO": "epidemiologic",
"E/PEU/TKE/PHEU/KWRO": "epidemiologic",
"E/PEU/TKE/PHEU": "epidemiologic",
"E/PEU/TKE": "epidemics",
"E/PEU/TKEU/TKEU/PHAOEU": "epididymitis",
"E/PEU/TKEU/TKEU": "epididymal",
"E/PEU/TKEU": "epididymis",
"E/PEU/TKEU/TEU": "epididymis",
"E/PEU/TKEUD": "epididymis",
"E/PEU/TKER": "epidermis",
"E/PEU/TKEPL": "epidemics",
"E/PEU/TPA*": "epiphanic",
"E/PEU/TPO*R": "epiphora",
"E/PEU/TP*EU": "epiphytic",
"E/PEU/THE": "epithelize",
"E/PEU/TO": "epitomize",
"E/PEU/KREU": "epicritic",
"E/PEU/KREPB": "epicenters",
"E/PEU/KAR/TKEU": "epicardium",
"E/PEU/KAR": "epicardium",
"E/PEU/KOPB": "epicondyle",
"E/PEU/HREP": "epileptics",
"E/PEU/HREP/TEU": "epilepticus",
"E/PEU/HREPT": "epilepticus",
"E/PEUF": "epiphytic",
"E/PEUFT/PHO/HROPBLG": "epistemological",
"E/PEUFT/PHO": "epistemological",
"E/PEUFT": "epistolary",
"E/PEUBG/KARD": "epicardium",
"E/PEUT": "epitomize",
"E/PEUS/TO/HRAEUR": "epistolary",
"E/PEUS/TO": "epistolography",
"E/PEUS": "epistles",
"E/PEUS/TO/HRO": "epistolography",
"E/PEUS/TO/HRO/TKPWRAF": "epistolography",
"E/PEUS/TO/HRORG": "epistolography",
"E/PEUS/TOE/HRAEUR": "epistolary",
"E/PEUS/TOE": "epistolary",
"E/PEUS/TE/PHO/HRO": "epistemologically",
"E/PEUS/TE/PHO": "epistemological",
"E/PEUS/TE": "epistemological",
"E/PEUS/TE/PHO/HRO/SKWREUBG": "epistemologically",
"E/PEUS/TE/PHO/HROPBLG": "epistemological",
"E/PEPB/TKEU": "ependymal",
"E/PEPB": "epenthesis",
"E/PEPB/THE": "epenthesis",
"E/PEPBD": "ependymal",
"E/HRA": "elaborate",
"E/HRA/PWOR": "elaborate",
"E/HRAOU/SEU": "elucidated",
"E/HRAOU": "elusiveness",
"E/HRAU": "elaunin",
"E/HRAUPB": "elaunin",
"E/HRAFT": "elastomeric",
"E/HRAB": "elaborate",
"E/HRAS": "elasticity",
"E/HRAS/TO": "elastomeric",
"E/HRAS/TEUS": "elasticity",
"E/HRAD": "eladic",
"E/HRO": "elocution",
"E/HROPB": "elongate",
"E/HROPBG": "elongate",
"E/HROBG/TROPB": "electronics",
"E/HROBG": "electronics",
"E/HRE/SKWRAOEU": "elegiac",
"E/HRE": "elements",
"E/HRE/SRAEU": "elevator",
"E/HRE/-PLT/KWRAEUR": "elementary",
"E/HREU/SKWREU": "eligibility",
"E/HREU": "eliminated",
"E/HREU/TPHEU": "elimination",
"E/HREU/PHEU": "eliminated",
"E/HREU/PHEU/TPHAEUGS/KWRAEUR": "eliminationary",
"E/HREUP": "elliptic",
"E/HREUP/TEU": "elliptical",
"E/HREUPL": "eliminates",
"E/HREUPL/TPHAEUGS/KWRAEUR": "eliminationary",
"E/HREUBG": "elixir",
"E/HREUBGS": "elixir",
"E/HREUS": "elicited",
"E/HREFPBT": "eleventh",
"E/HRERBGT": "electrification",
"E/HREBG": "electives",
"E/HREBG/TRO/STA": "electrostatic",
"E/HREBG/TRO/TPHE/TKPWA/TEU/SREU": "electronegativity",
"E/HREBG/TRO/TPHE/TKPWA/TEU": "electronegativity",
"E/HREBG/TRO/TPHE/TKPWA": "electronegativity",
"E/HREBG/TRO/TPHE": "electronegativity",
"E/HREBG/TRO/TPHE/TKPWA/TEUF": "electronegativity",
"E/HREBG/TRO/KARD/KWRO": "electrocardiogram",
"E/HREBG/TRO/KARD": "electrocardiogram",
"E/HREBG/TRO/PHAG": "electromagnet",
"E/HREBG/TRO/HRO": "electrolysis",
"E/HREBG/TRO/HROE": "electrolysis",
"E/HREBG/TRO/HREU": "electrolytic",
"E/HREBG/TROE/STA": "electrostatic",
"E/HREBG/TROE/TPHE/TKPWA/TEU/SREU": "electronegativity",
"E/HREBG/TROE/TPHE/TKPWA/TEU": "electronegativity",
"E/HREBG/TROE/TPHE/TKPWA": "electronegativity",
"E/HREBG/TROE/TPHE": "electronegativity",
"E/HREBG/TROE/TPHE/TKPWA/TEUF": "electronegativity",
"E/HREBG/TROE/KARD/KWROE": "electrocardiogram",
"E/HREBG/TROE/KARD": "electrocardiogram",
"E/HREBG/TROE/PHAG": "electromagnet",
"E/HREBG/TROE/HREU": "electrolytic",
"E/HREBG/TROL": "electrolysis",
"E/HREBG/TREU": "electrical",
"E/HREBG/TREU/TPEU": "electrification",
"E/HREBG/TREUS": "electricity",
"E/RA/TKEU": "eradicated",
"E/RA": "erratum",
"E/RA/TEUBG/KWRAL": "erratically",
"E/RAEU": "erasures",
"E/RAT": "erratically",
"E/RAD": "eradicated",
"E/RO/SKWRE": "erogenous",
"E/RO": "erotic",
"E/RO/TEU": "erotica",
"E/ROE": "erosive",
"E/ROEPB": "erroneous",
"E/ROES": "erosive",
"E/ROPB": "erroneous",
"E/ROPBLG": "erogenous",
"E/ROT": "erotica",
"E/REBG": "erectus",
"E/RUP": "eruptive",
"EU/TA/HREU": "italicize",
"EU/TA": "italics",
"EU/TAL": "italicize",
"EU/TEUPB": "itinerary",
"EU/TER/KWRA": "iterative",
"EU/TER": "iterative",
"EU/TER/KWRAEU": "iterator",
"EU/TER/KWRAT": "iterative",
"EU/PWEU": "ibidem",
"EU/HRAOU": "illuminism",
"EU/HRAOU/SOR": "illusory",
"EU/HRAOU/PHEU/TPHAEU": "illuminator",
"EU/HRAOU/PHEU": "illuminist",
"EU/HRAOU/PHEUPB": "illuminism",
"EU/HRAOUPL/TPHAEU": "illuminator",
"EU/HRAOUPL": "illuminist",
"EU/HRAOUGS/KWRAEUR": "illusionary",
"EU/HRAOUS": "illusive",
"EU/HREPBLG": "illegible",
"EU/HRUS/STRAEU": "illustrative",
"EU/HRUS": "illustrious",
"EU/HRUS/STRAEUT": "illustrative",
"EU/HRUS/TRA": "illustrative",
"EU/HRUS/TRAEU": "illustrators",
"EU/HRUS/TRAT": "illustrative",
"EU/HRUS/TREU": "illustrious",
"EUR/SPOPBS": "irresponsible",
"EUR/SPEBG": "irrespectively",
"EUR/SPEBGT": "irrespectively",
"EUR/SRERS": "irreversibility",
"EUR/SEUFT": "irresistible",
"EUR/TKPWAEU": "irrigator",
"EUR/TKPWARD": "irregardless",
"EUR/TKOT": "iridotomy",
"EUR/TKES": "iridescence",
"EUR/TPRAPBLG": "irrefragable",
"EUR/TRAOEF": "irretrievable",
"EUR/TA": "irritative",
"EUR/TAT": "irritative",
"EUR/KWRAEUD": "irradiate",
"EUR/KWRAGS": "irrationally",
"EUR/KWRE/SROEBG": "irrevocable",
"EUR/KWRE": "irrebuttable",
"EUR/KWRE/SRE": "irreverence",
"EUR/KWRE/SRER": "irreverence",
"EUR/KWRE/TKPWARD": "irregardless",
"EUR/KWRE/TKAOEPL": "irredeemably",
"EUR/KWRE/TKAOEPL/-BL": "irredeemably",
"EUR/KWRE/TKAOUS": "irreducible",
"EUR/KWRE/TPRAPBLG": "irrefragable",
"EUR/KWRE/KOFR": "irrecoverable",
"EUR/KWRE/KOPB": "irreconcilably",
"EUR/KWRE/KOPB/SAOEUL": "irreconcilable",
"EUR/KWRE/KOPB/SEUBL": "irreconcilably",
"EUR/KWRE/KOPBS": "irreconcilably",
"EUR/KWRE/PWAOUT": "irrebuttable",
"EUR/KWREU/TKPWAEU": "irrigator",
"EUR/KWREU": "irritative",
"EUR/KWREU/TKO/TO": "iridotomy",
"EUR/KWREU/TKO": "iridotomy",
"EUR/KWREU/TKOT": "iridotomy",
"EUR/KWREU/TKE": "iridescence",
"EUR/KWREU/TKES": "iridescence",
"EUR/KWREU/TA": "irritative",
"EUR/KWREU/TAEU": "irritative",
"EUR/KWREU/TAT": "irritative",
"EUR/KWREUT": "irritable",
"EUR/PHRAEUS": "irreplaceable",
"EUR/PHAOED": "irremediable",
"EUR/PRES": "irrepressible",
"EUR/PAOEL": "irrepealable",
"EUR/RAOE/PHAOE/TKEU": "irremediable",
"EUR/RAOE/PHAOE": "irremediable",
"EUR/RAOE": "irremediable",
"EUR/RAOE/PHAOED": "irremediable",
"EUR/RAEU/TKEU": "irradiate",
"EUR/RAEU": "irradiate",
"EUR/RAEUD": "irradiate",
"EUR/RAGS": "irrationally",
"EUR/RE/SPOPBS": "irresponsibility",
"EUR/RE": "irrelevance",
"EUR/RE/SPEBG": "irrespectively",
"EUR/RE/SPEBGT": "irrespectively",
"EUR/RE/SRO": "irrevocable",
"EUR/RE/SROEBG": "irrevocable",
"EUR/RE/SROBG": "irrevocable",
"EUR/RE/SRE": "irreverence",
"EUR/RE/SRER": "irreverence",
"EUR/RE/SRERS": "irreversibility",
"EUR/RE/SO": "irresolute",
"EUR/RE/SOE": "irresolute",
"EUR/RE/SEUFT": "irresistible",
"EUR/RE/TKPWAOU/HRAEUR": "irregularities",
"EUR/RE/TKPWAOU": "irregularly",
"EUR/RE/TKPWARD": "irregardless",
"EUR/RE/TKAOEPL": "irredeemably",
"EUR/RE/TKAOEPL/-BL": "irredeemably",
"EUR/RE/TKAOUS": "irreducible",
"EUR/RE/TPRAPBLG": "irrefragable",
"EUR/RE/TRAOEF": "irretrievable",
"EUR/RE/KOFR": "irrecoverable",
"EUR/RE/KOPB/SAOEUL": "irreconcilable",
"EUR/RE/KOPB": "irreconcilable",
"EUR/RE/KOPB/SEUL": "irreconcilable",
"EUR/RE/PWAOUT": "irrebuttable",
"EUR/RE/PHRAEUS": "irreplaceable",
"EUR/RE/PHAOE/TKEU": "irremediable",
"EUR/RE/PHAOE": "irremediable",
"EUR/RE/PHAOED": "irremediable",
"EUR/RE/PRES": "irrepressible",
"EUR/RE/PAOEL": "irrepealable",
"EUR/RE/PAEUR": "irreparable",
"EUR/RE/PAR": "irreparably",
"EUR/RE/HRE/SRAPB": "irrelevancies",
"EUR/RE/HRE": "irrelevance",
"EUR/REU/TKPWAEU": "irrigator",
"EUR/REU": "irritative",
"EUR/REU/TA": "irritative",
"EUR/REU/TABL": "irritability",
"EUR/REU/TAT": "irritative",
"EUR/REUT": "irritable",
"EUR/REF": "irrevocable",
"EUR/REFR": "irreverence",
"EUR/REFRPB": "irreverently",
"EUR/REP": "irreparable",
"EUR/REBG": "irreconcilable",
"EUR/REL/SRAPB": "irrelevancies",
"EUR/REL": "irrelevance",
"EUR/RES": "irresolute",
"EUR/R-PT": "irrespectively",
"EURPBG": "increment",
"EURPBT/SPEBG": "introspective",
"EURPBT/TKUBG": "introductory",
"EURPBT/TKUBG/TOR": "introductory",
"EURPBT/TKUBGT": "introductory",
"EURB": "wishbone",
"EURBT": "irrebuttable",
"EURT": "irritability",
"EURS": "irresolute",
"EUP": "iptables",
"EUP/SEU/HRA/TER": "ipsilateral",
"EUP/SEU/HRA": "ipsilateral",
"EUP/SEU": "ipsilateral",
"EUP/SEU/HRAT": "ipsilateral",
"EUPB/STKPAOUT": "indisputable",
"EUPB/STKPEPBS": "indispensable",
"EUPB/STKWEURB": "indistinguishable",
"EUPB/STKRAOEUB": "indescribably",
"EUPB/STKRAOEUB/-BL": "indescribably",
"EUPB/STKRUBGT": "indestructible",
"EUPB/STKAOEU": "indecisive",
"EUPB/STPEU/SHEPB": "insufficiency",
"EUPB/STPEU": "insufficient",
"EUPB/STPEURB": "insufficient",
"EUPB/STPEURB/KWREPB": "insufficiency",
"EUPB/STRAOU": "instrument",
"EUPB/STRAOU/-PLT/KWRAL": "instrumentally",
"EUPB/STRAOUPLT/KWRAL": "instrumentally",
"EUPB/STRU": "instrument",
"EUPB/STRU/-PLT/KWRAL": "instrumentally",
"EUPB/STRUPLT/KWRAL": "instrumentally",
"EUPB/STRUBG": "instructors",
"EUPB/STA": "instagram",
"EUPB/STAEUBL": "instability",
"EUPB/STAPB/SHEU": "instantiate",
"EUPB/STAPB": "instantaneous",
"EUPB/STAPB/TAEUPB": "instantaneous",
"EUPB/STABL": "instability",
"EUPB/ST*EUPBG": "instinctively",
"EUPB/STEU/TKPWAEU": "instigator",
"EUPB/STEU": "institutes",
"EUPB/STEUPBG": "instinctively",
"EUPB/SKWRAOEPB": "ingenious",
"EUPB/SKWR*UPBGT": "injunctive",
"EUPB/SKWRE": "ingenuity",
"EUPB/SKWRE/TPHAOU/WEU": "ingenuity",
"EUPB/SKWREPB": "ingenuous",
"EUPB/SKWREBG": "injector",
"EUPB/SKWRES": "ingestive",
"EUPB/SKWRUFT": "injustice",
"EUPB/SKWRUPBG": "injunctive",
"EUPB/SKWRUPBGT": "injunctive",
"EUPB/SKWRUS": "injustice",
"EUPB/SKRAOUT": "inscrutable",
"EUPB/SKAO*US": "inexcusable",
"EUPB/SKAOUS": "inexcusable",
"EUPB/SKA*EUP": "inescapable",
"EUPB/SPHREUBG": "inexplicable",
"EUPB/SPHOUPBT": "insurmountable",
"EUPB/SPAOEUR/KWRA": "inspiratory",
"EUPB/SPAOEUR/KWRA/TOR": "inspiratory",
"EUPB/SPEUR": "inspiration",
"EUPB/SPEUR/KWRA": "inspiratory",
"EUPB/SPEUR/KWRA/TOR": "inspiratory",
"EUPB/SPEBG": "inspectors",
"EUPB/SRA/SKWREU": "invaginate",
"EUPB/SRA": "invalids",
"EUPB/SRA/HRAOU": "invaluable",
"EUPB/SRA/HREU": "invalidated",
"EUPB/SRAOEU": "inviolable",
"EUPB/SRAOEU/KWRO": "inviolability",
"EUPB/SRAOEU/KWROE": "inviolability",
"EUPB/SRAOEUL": "inviolability",
"EUPB/SRAOUL": "invaluable",
"EUPB/SRAEUR/KWRA/-BL": "invariably",
"EUPB/SRAEUR/KWRA": "invariably",
"EUPB/SRAEUR": "invariably",
"EUPB/SRAEUR/KWRABL": "invariably",
"EUPB/SRAEURBL/SRAEU": "invasin",
"EUPB/SRAEUG": "inveigles",
"EUPB/SRAEUS": "invasively",
"EUPB/SRAPBLG": "invaginate",
"EUPB/SRAL": "invaluable",
"EUPB/SRO": "involuntary",
"EUPB/SRO/HRUPB": "involuntary",
"EUPB/SRO/HRUPB/TAEUR": "involuntary",
"EUPB/SROE/KA": "invocative",
"EUPB/SROE": "involution",
"EUPB/SROE/KAT": "invocative",
"EUPB/SROL": "involuntary",
"EUPB/SRE/TER": "inveterate",
"EUPB/SRE": "inveterate",
"EUPB/SREU/TKPWOR": "invigorate",
"EUPB/SREU": "invitation",
"EUPB/SREU/TKEU": "invidious",
"EUPB/SREUPBS": "invincibility",
"EUPB/SREUG": "invigorate",
"EUPB/SREUS": "invisibility",
"EUPB/SREUD": "invidious",
"EUPB/SREFT/TKPWA": "investigative",
"EUPB/SREFT/TKPWA/TOR": "investigatory",
"EUPB/SREFT/TKPWAEU": "investigators",
"EUPB/SRER/TE": "invertebrate",
"EUPB/SRER": "invertus",
"EUPB/SREPB": "inventus",
"EUPB/SREBG": "invective",
"EUPB/SREBGT": "invective",
"EUPB/SRET": "inveterate",
"EUPB/SRES": "investitures",
"EUPB/SRES/TEU/TKPWA": "investigative",
"EUPB/SRES/TEU": "investitures",
"EUPB/SRES/TEU/TKPWA/TOR": "investigatory",
"EUPB/SRES/TEU/TKPWAEU": "investigative",
"EUPB/SRES/TEU/TKPWAT": "investigative",
"EUPB/SAOU": "insulins",
"EUPB/SAOU/HRAEU": "insulator",
"EUPB/SAOURP": "insuperable",
"EUPB/SAOUS": "insouciance",
"EUPB/SAEU": "insatiable",
"EUPB/SAEURB": "insatiable",
"EUPB/SAPB": "insanity",
"EUPB/SO": "insomuch",
"EUPB/SOE": "insolence",
"EUPB/SOPL": "insomnia",
"EUPB/SOPL/TPHEU": "insomniac",
"EUPB/SOL/SREPB": "insolvency",
"EUPB/SOL": "insolvent",
"EUPB/SE": "inseparable",
"EUPB/SE/PHEU": "inseminate",
"EUPB/SE/PAR": "inseparable",
"EUPB/SEU": "insipid",
"EUPB/SEU/TKEU": "insidious",
"EUPB/SEU/TKEPB/TAL": "incidentally",
"EUPB/SEU/TKEPB": "incidentals",
"EUPB/SEU/TPHAOU": "insinuates",
"EUPB/SEU/TPHER/KWRAEU": "incinerator",
"EUPB/SEU/TPHER": "incinerates",
"EUPB/SEU/PEU": "insipidus",
"EUPB/SEUP": "incipient",
"EUPB/SEUPB": "incinerated",
"EUPB/SEUPB/SER": "insincerity",
"EUPB/SEUPB/RAEU": "incinerator",
"EUPB/SEUG/TPHEU/TPEU": "insignificant",
"EUPB/SEUG/TPHEU": "insignificance",
"EUPB/SEUGT/TPHEU/TPEU": "insignificance",
"EUPB/SEUGT/TPHEU": "insignificance",
"EUPB/SEUGT": "insignificance",
"EUPB/SEUS": "incisive",
"EUPB/SEUD": "insidious",
"EUPB/SERP": "inseparable",
"EUPB/SEP": "inseparable",
"EUPB/SEPB": "incentives",
"EUPB/SEPB/SEU": "insensitivity",
"EUPB/SEPB/TEU": "incentivize",
"EUPB/SEPBD": "incendiary",
"EUPB/SEPBD/KWREU": "incendiary",
"EUPB/SEPL": "inseminate",
"EUPB/SEPT": "inceptive",
"EUPB/SEBG/TEU": "insecticides",
"EUPB/SEBG": "insecticides",
"EUPB/SES": "incessant",
"EUPB/SU/TPEU/SHEPB": "insufficiency",
"EUPB/SU/TPEU": "insufficient",
"EUPB/SU": "insula",
"EUPB/SU/TPEURB/KWREPB": "insufficiency",
"EUPB/SU/TPEURB": "insufficient",
"EUPB/SUF": "insufflation",
"EUPB/SUFR": "insufferable",
"EUPB/SUR/SKWREPB": "insurgency",
"EUPB/SUR": "insurmountable",
"EUPB/SUR/PHOUPBT": "insurmountable",
"EUPB/SUB/OR/TKEU": "insubordinate",
"EUPB/SUB/OR": "insubordinate",
"EUPB/SUB": "insubordinate",
"EUPB/SUB/ORD": "insubordinate",
"EUPB/TKPWRA/TEU": "ingratitude",
"EUPB/TKPWRA": "ingratitude",
"EUPB/TKPWRAOE/TKEU": "ingredients",
"EUPB/TKPWRAOE": "ingredients",
"EUPB/TKPWRAOED": "ingredients",
"EUPB/TKPWRAEURB": "ingratiate",
"EUPB/TKPWRAT": "ingratitude",
"EUPB/TKA/PA": "indapamide",
"EUPB/TKA": "indapamide",
"EUPB/TKAOE/SAOEU/SEUF": "indecisiveness",
"EUPB/TKAOE/SAOEU": "indecisiveness",
"EUPB/TKAOEU/SKWREFT": "indigestible",
"EUPB/TKAOEU": "indictor",
"EUPB/TKAOUBT": "indubitable",
"EUPB/TKAP": "indapamide",
"EUPB/TKOE": "indolence",
"EUPB/TKORBG": "indoctrinates",
"EUPB/TKOBG/TREU": "indoctrinates",
"EUPB/TKOBG": "indoctrinates",
"EUPB/TK*EU/SKWREFT": "indigestible",
"EUPB/TK*EU": "indirect",
"EUPB/TKE/SKRAOEUB": "indescribably",
"EUPB/TKE": "indelicate",
"EUPB/TKE/SKRAOEUB/-BL": "indescribably",
"EUPB/TKE/SAOEU": "indecisiveness",
"EUPB/TKE/SAOEUS": "indecisiveness",
"EUPB/TKE/TPA/TAOEG": "indefatigably",
"EUPB/TKE/TPA": "indefatigably",
"EUPB/TKE/TPA/TEUG": "indefatigably",
"EUPB/TKE/TPEU": "indefinite",
"EUPB/TKE/TER/PHEU/TPHA": "indeterminacy",
"EUPB/TKE/TER/PHEU": "indeterminacy",
"EUPB/TKE/TER": "indeterminacy",
"EUPB/TKE/TER/PHEUPB": "indeterminacy",
"EUPB/TKE/TERPL": "indeterminacy",
"EUPB/TKE/PEPB": "independence",
"EUPB/TKE/HREU": "indelicate",
"EUPB/TKEU/SKWRE": "indigenous",
"EUPB/TKEU": "indicative",
"EUPB/TKEU/SREU/SKWRAOU": "individuat",
"EUPB/TKEU/SREU": "individual",
"EUPB/TKEU/SREUPBLG/KWRAOU": "individuat",
"EUPB/TKEU/SREUPBLG": "individuat",
"EUPB/TKEU/SREUS": "indivisible",
"EUPB/TKEU/SREUD": "individuat",
"EUPB/TKEU/TKEU/SREUPBLG": "individuate",
"EUPB/TKEU/TKEU": "individuate",
"EUPB/TKEU/TKEL": "infidelity",
"EUPB/TKEU/KA": "indicative",
"EUPB/TKEU/KAEU": "indicators",
"EUPB/TKEU/KAT": "indicative",
"EUPB/TKEURB": "indicia",
"EUPB/TKEUPBLG": "indigenous",
"EUPB/TKEUBG": "indicative",
"EUPB/TKEUG": "indignity",
"EUPB/TKEUG/TPHEU": "indignities",
"EUPB/TKEUS": "indispensable",
"EUPB/TKEUS/TEUPBG/WEURB": "indistinguishable",
"EUPB/TKEUS/TEUPBG": "indistinguishable",
"EUPB/TKEUS/KREU/PHEU": "indiscriminate",
"EUPB/TKEUS/KREU": "indiscriminate",
"EUPB/TKEUS/KREUPL": "indiscriminate",
"EUPB/TKEUS/PAOUT": "indisputable",
"EUPB/TKEUS/PEPBS": "indispensable",
"EUPB/TKEF": "indefinite",
"EUPB/TKERPL": "indeterminacy",
"EUPB/TKEPB": "indentured",
"EUPB/TKEPB/KHUR": "indenturing",
"EUPB/TKEPL/TPHEU": "indemnities",
"EUPB/TKEPL": "indemnitee",
"EUPB/TKEPL/TPHEU/TPEU": "indemnification",
"EUPB/TKEPL/TPHEUF": "indemnification",
"EUPB/TKEL": "indelible",
"EUPB/TKES/TRUBGT": "indestructible",
"EUPB/TKES": "indestructible",
"EUPB/TKUFT/REU": "industrial",
"EUPB/TKUFT": "industrial",
"EUPB/TKUR": "induration",
"EUPB/TKUBG": "inductive",
"EUPB/TKUL": "indulgence",
"EUPB/TKUS": "industrial",
"EUPB/TPHRA/PHA": "inflammatories",
"EUPB/TPHRA": "inflammation",
"EUPB/TPHRA/PHA/TOR": "inflammatories",
"EUPB/TPHRA/PHAEUGS/KWRAEUR": "inflammationary",
"EUPB/TPHRAOU/WEPB": "influential",
"EUPB/TPHRAOU": "influence",
"EUPB/TPHRAOUPB": "influential",
"EUPB/TPHRAOUPBT": "influential",
"EUPB/TPHRAEU": "inflator",
"EUPB/TPHRAEUGS/KWRAEUR": "inflationary",
"EUPB/TPHRAPL": "inflammable",
"EUPB/TPHAOU/PHER": "innumerable",
"EUPB/TPHAOU": "innumerable",
"EUPB/TPHAOUPL": "innumerable",
"EUPB/TPHO/PHEU": "innominate",
"EUPB/TPHO": "innominate",
"EUPB/TPHOE": "innovation",
"EUPB/TPHOPL": "innominate",
"EUPB/TPHEURB/KWRAEUT": "initiator",
"EUPB/TPHEURB": "initiator",
"EUPB/TPRA/STRUBG": "infrastructure",
"EUPB/TPRA/T*EPL": "infratemporal",
"EUPB/TPRA/TEPL/POR": "infratemporal",
"EUPB/TPRA/TEPL": "infratemporal",
"EUPB/TPRAOE": "infrequently",
"EUPB/TPRAOE/KWEPBT": "infrequently",
"EUPB/TPRAR": "infrared",
"EUPB/TPREPB": "inferential",
"EUPB/TPA": "infamous",
"EUPB/TPA/KHAOU": "infatuate",
"EUPB/TPAOEUPBT/TES": "infinitesimal",
"EUPB/TPAOEUT": "infighting",
"EUPB/TPAOER": "inferiority",
"EUPB/TPAOU": "infeudation",
"EUPB/TPAOUR": "infuriate",
"EUPB/TPAUL": "infallible",
"EUPB/TPAFP": "infatuate",
"EUPB/TPAPB": "infantile",
"EUPB/TPAPBS": "infancy",
"EUPB/TPAPL": "infamy",
"EUPB/TPAL": "infallible",
"EUPB/TPOE/TKPWRAF": "infographics",
"EUPB/TPOR/KHAOUPB": "infortunium",
"EUPB/TPOR": "informative",
"EUPB/TPOR/PHA": "informatic",
"EUPB/TPOR/PHAT": "informative",
"EUPB/TP*EUPBT/TES": "infinitesimal",
"EUPB/TPE/TPEBG": "ineffectiveness",
"EUPB/TPE": "ineffectual",
"EUPB/TPE/TPEBGT": "ineffectual",
"EUPB/TPEU": "infinite",
"EUPB/TPEU/TPHAOEU": "infinitum",
"EUPB/TPEU/TPHEU/TE/SEU": "infinitesimal",
"EUPB/TPEU/TPHEU/TE": "infinitesimal",
"EUPB/TPEU/TPHEU": "infinitesimal",
"EUPB/TPEU/TPHEU/TES": "infinitesimal",
"EUPB/TPEURPL/KWRAEUR": "infirmary",
"EUPB/TPEUPB": "infinite",
"EUPB/TPEUPB/TES": "infinitesimal",
"EUPB/TPEUPBT/TES": "infinitesimal",
"EUPB/TPEUL": "infiltrates",
"EUPB/TPER/KWREPB": "inferential",
"EUPB/TPERPB": "inferential",
"EUPB/TPEBG": "infectious",
"EUPB/TPES": "infestation",
"EUPB/THREBG": "intellectuals",
"EUPB/TRA/TPAOUS": "intrafusal",
"EUPB/TRA/O/PER/KWRA": "intraoperatively",
"EUPB/TRA/O/PER": "intraoperatively",
"EUPB/TRA/O": "intraoperatively",
"EUPB/TRA/ORP": "intraoperatively",
"EUPB/TRA/OP": "intraoperatively",
"EUPB/TRA/OP/RA": "intraoperatively",
"EUPB/TRA/OP/RAT": "intraoperatively",
"EUPB/TRA/OBG/KWRAOU": "intraocular",
"EUPB/TRA/OBG": "intraocular",
"EUPB/TRAOU": "intrusively",
"EUPB/TRAOUS": "intrusively",
"EUPB/TRAPB/S*EU": "intransitively",
"EUPB/TRAPB": "intransitively",
"EUPB/TRAPB/SEU": "intransitively",
"EUPB/TRAPBS": "intransitively",
"EUPB/TRO/SPEBG": "introspective",
"EUPB/TRO/TKUBG": "introductory",
"EUPB/TRO/TKUBG/TOR": "introductory",
"EUPB/TRO/TKUBGT": "introductory",
"EUPB/TROE/SPEBG": "introspective",
"EUPB/TROE/TKUBG": "introductory",
"EUPB/TROE/TKUBG/TOR": "introductory",
"EUPB/TROE/TKUBGT": "introductory",
"EUPB/TROEFRT": "incontrovertible",
"EUPB/TRE": "intrepid",
"EUPB/TREU/KA": "intricacy",
"EUPB/TREU": "intricate",
"EUPB/TREUPB": "intrinsic",
"EUPB/TREUPB/SEU/KAL": "intrinsically",
"EUPB/TREUPB/SEU": "intrinsically",
"EUPB/TREUPBS": "intrinsically",
"EUPB/TREUPBZ": "intrinsic",
"EUPB/TAOER": "interiority",
"EUPB/TAOU": "intuited",
"EUPB/TAOU/KWREU": "intuitively",
"EUPB/TAOU/WEU": "intuitively",
"EUPB/TAPBG": "intangibles",
"EUPB/TO/HRER/KWRA": "intolerably",
"EUPB/TO/HRER": "intolerable",
"EUPB/TOE": "intonate",
"EUPB/TOBG/SEU": "intoxicants",
"EUPB/TOBG": "intoxicants",
"EUPB/TOBGS": "intoxicants",
"EUPB/TOL": "intolerably",
"EUPB/T*EPL": "intemperance",
"EUPB/TE": "intellect",
"EUPB/TE/TKPWRAEU": "integrative",
"EUPB/TE/TKPWRAT": "integrative",
"EUPB/TE/TKPWREU": "integrity",
"EUPB/TE/HREU/SKWREU": "intelligibility",
"EUPB/TE/HREU": "intelligence",
"EUPB/TE/HREBG": "intellectuals",
"EUPB/TEU/PHA": "intimacy",
"EUPB/TEU": "intimidated",
"EUPB/TEU/PHAEUT": "intimating",
"EUPB/TEU/PHEU": "intimidated",
"EUPB/TEUPL": "intimidate",
"EUPB/TER/STE": "interstellar",
"EUPB/TER/STEL": "interstellar",
"EUPB/TER/SRAOE": "intervenor",
"EUPB/TER/SRER/TE": "intervertebral",
"EUPB/TER/SRER": "intervertebral",
"EUPB/TER/SRERT": "intervertebral",
"EUPB/TER/SE": "intercessor",
"EUPB/TER/SEP": "interceptor",
"EUPB/TER/TKPWA": "interrogatives",
"EUPB/TER/TKPWAEU": "interrogator",
"EUPB/TER/TKPWAT": "interrogatives",
"EUPB/TER/TKPWO/SRERPB/-PLT": "intergovernmental",
"EUPB/TER/TKPWO/SRERPB": "intergovernmental",
"EUPB/TER/TKPWO": "intergovernmental",
"EUPB/TER/TKPWOFRPB/-PLT": "intergovernmental",
"EUPB/TER/TKPWOFRPB": "intergovernmental",
"EUPB/TER/TKPWOFRPLT": "intergovernmental",
"EUPB/TER/TKPWOFPLT": "intergovernmental",
"EUPB/TER/TKE/SRE/HROP": "interdevelopment",
"EUPB/TER/TKE/SRE": "interdevelopment",
"EUPB/TER/TKE": "interdevelopment",
"EUPB/TER/TKEU/SKWREU": "interdigital",
"EUPB/TER/TKEU": "interdigital",
"EUPB/TER/TKEUPBLG": "interdigital",
"EUPB/TER/TKEPB": "interdental",
"EUPB/TER/TKEPBT": "interdental",
"EUPB/TER/TPHAL": "internalize",
"EUPB/TER/TPHAGS": "internationally",
"EUPB/TER/TPHAT": "internationalize",
"EUPB/TER/TPROPL": "interferometer",
"EUPB/TER/TPER/KWRO/PHAOE": "interferometer",
"EUPB/TER/TPER/KWRO": "interferometer",
"EUPB/TER/TPER": "interferometer",
"EUPB/TER/TPER/KWRO/PHE": "interferometer",
"EUPB/TER/TPER/KWROPL": "interferometer",
"EUPB/TER/KHRUPL": "intercolumniation",
"EUPB/TER/KA": "intercalat",
"EUPB/TER/KAL": "intercalcated",
"EUPB/TER/KO/HRUPL/TPHEU": "intercolumniation",
"EUPB/TER/KO/HRUPL": "intercolumniation",
"EUPB/TER/KO": "intercolumniation",
"EUPB/TER/KOES": "intercostal",
"EUPB/TER/KOFT": "intercostals",
"EUPB/TER/KOPB": "intercontinental",
"EUPB/TER/KOPB/TKAOEU": "intercondyloid",
"EUPB/TER/KOPB/TKAOEUL": "intercondylar",
"EUPB/TER/KOPB/TEU/TPHEPB": "intercontinental",
"EUPB/TER/KOPB/TEU": "intercontinental",
"EUPB/TER/KOPB/TEU/TPHEPBT": "intercontinental",
"EUPB/TER/KOPBT/TPHEPBT": "intercontinental",
"EUPB/TER/KOPBT": "intercontinental",
"EUPB/TER/KOPBD": "intercondyloid",
"EUPB/TER/KOS": "intercostals",
"EUPB/TER/PHAOE": "intermedius",
"EUPB/TER/PHAOED/KWRAEUR": "intermediary",
"EUPB/TER/PHAOUR": "intermural",
"EUPB/TER/PHEU/TEPB": "intermittency",
"EUPB/TER/PHEU": "intermittence",
"EUPB/TER/PHEUPB": "interminable",
"EUPB/TER/PHEUT": "intermittence",
"EUPB/TER/PHED": "intermeddler",
"EUPB/TER/PHED/-L": "intermeddler",
"EUPB/TER/PROBG/SEU": "interproximally",
"EUPB/TER/PROBG": "interproximally",
"EUPB/TER/PROBG/SEU/PHAL": "interproximally",
"EUPB/TER/PROBGS": "interproximally",
"EUPB/TER/PROBGS/PHAL": "interproximally",
"EUPB/TER/PRE": "interpretive",
"EUPB/TER/PO": "interpolate",
"EUPB/TER/POE": "interpolate",
"EUPB/TER/HRO/KAOU": "interlocular",
"EUPB/TER/HRO": "interlocular",
"EUPB/TER/HROE": "interlobar",
"EUPB/TER/HROEP": "interloper",
"EUPB/TER/HROEB": "interlobar",
"EUPB/TER/HROBG/KAOU": "interlocutory",
"EUPB/TER/REG": "interregnim",
"EUPB/TER/ABG": "interactive",
"EUPB/TER/O": "interoperability",
"EUPB/TER/O/PER/KWRA": "interoperability",
"EUPB/TER/O/PER": "interoperability",
"EUPB/TER/OP": "interoperability",
"EUPB/TER/UR": "interurban",
"EUPB/TERP": "interpolate",
"EUPB/TERPB/KWRAL": "internalize",
"EUPB/TERG": "integrity",
"EUPB/TEPB/SEU": "intensify",
"EUPB/TEPB": "inattentive",
"EUPB/TEPBS/TPEU": "intensification",
"EUPB/TEPL/PER": "intemperance",
"EUPB/TEPL": "intemperance",
"EUPB/TEG": "integrity",
"EUPB/TEG/REU": "integrity",
"EUPB/TES": "intestines",
"EUPB/KPREPBS": "incomprehensibility",
"EUPB/KPAUFT": "inexhaustible",
"EUPB/KPAS": "incapacitates",
"EUPB/KWRAOU/WEPB": "innuendoes",
"EUPB/KWRAOU": "inulin",
"EUPB/KWRO/SRA": "innovative",
"EUPB/KWRO": "inoculum",
"EUPB/KWRO/SRAEU": "innovative",
"EUPB/KWRO/SRAT": "innovative",
"EUPB/KWRO/KAOU": "inoculum",
"EUPB/KWROE/SRA": "innovative",
"EUPB/KWROE": "inotropic",
"EUPB/KWROE/SRAEU": "innovative",
"EUPB/KWROE/SRAT": "innovative",
"EUPB/KWROE/TROEP": "inotropic",
"EUPB/KWROBG": "inoculum",
"EUPB/KWR*UPBG": "injunctive",
"EUPB/KWRE/SREU": "inevitability",
"EUPB/KWRE": "inevitability",
"EUPB/KWRE/SREUT": "inevitability",
"EUPB/KWREU/KWEU": "iniquitous",
"EUPB/KWREU": "iniquitous",
"EUPB/KWREURB": "initiated",
"EUPB/KWREURB/KWRA": "initiatives",
"EUPB/KWREURB/KWRA/TOR": "initiatory",
"EUPB/KWREURB/KWRAEU": "initiator",
"EUPB/KWREUBG/WEU": "iniquitous",
"EUPB/KWREUBG": "iniquitous",
"EUPB/KWREF/KWREU/TA": "inevitability",
"EUPB/KWREF/KWREU": "inevitability",
"EUPB/KWREF": "inevitability",
"EUPB/KWREFT": "inevitability",
"EUPB/KWRER": "innervates",
"EUPB/KWRERB": "inertia",
"EUPB/KWREP": "ineptitude",
"EUPB/KWREP/TEU": "ineptitude",
"EUPB/KWRUPB": "inundated",
"EUPB/KWEU/SEU": "inquisitively",
"EUPB/KWEU": "inquinat",
"EUPB/KWEUR": "inquiries",
"EUPB/KWEUS": "inquisite",
"EUPB/KHRAOU": "inclusively",
"EUPB/KHRAOUGS/KWRAEUR": "inclusionary",
"EUPB/KHRAOUS": "inclusively",
"EUPB/KHRE": "inclement",
"EUPB/KHREU": "inclination",
"EUPB/KHREUPB": "inclination",
"EUPB/KHOE": "inchoate",
"EUPB/KRAOE": "incretin",
"EUPB/KRE/SKWRAOU": "incredulous",
"EUPB/KRE": "increments",
"EUPB/KRE/TKAOU/HREU": "incredulity",
"EUPB/KRE/TKAOU": "incredulous",
"EUPB/KRE/TKAOUL": "incredulity",
"EUPB/KREU/PHEU": "incriminates",
"EUPB/KREU": "incriminates",
"EUPB/KREUPL": "incriminates",
"EUPB/KREPBLG": "incredulous",
"EUPB/KRED": "incredibility",
"EUPB/KRUFT": "incrustation",
"EUPB/KRUS": "incrustation",
"EUPB/KA/PA/SEU": "incapacitates",
"EUPB/KA/PA": "incapacitates",
"EUPB/KA": "incapacitates",
"EUPB/KA/PAS": "incapacitates",
"EUPB/KAO": "inconsistent",
"EUPB/KAOU/PWA": "incubatory",
"EUPB/KAOU": "incubate",
"EUPB/KAOU/PWA/TOR": "incubatory",
"EUPB/KAOU/PWAEU": "incubator",
"EUPB/KAOUR": "incurably",
"EUPB/KAOUR/-BL": "incurably",
"EUPB/KA*LG": "incalculable",
"EUPB/KAEUP": "incapability",
"EUPB/KAR/SER": "incarcerated",
"EUPB/KAR": "incarnate",
"EUPB/KARPB": "incarnate",
"EUPB/KARS": "incarcerated",
"EUPB/KAPB/TKE": "incandescent",
"EUPB/KAPB": "incunabula",
"EUPB/KAPB/TKES": "incandescent",
"EUPB/KAL/KAOU": "incalculable",
"EUPB/KAL": "incalculable",
"EUPB/KAL/KAOUL": "incalculable",
"EUPB/KALG": "incalculable",
"EUPB/KO/HAOER": "incoherence",
"EUPB/KO": "incoherence",
"EUPB/KO*PL": "incompetence",
"EUPB/KOE": "incoherence",
"EUPB/KOE/WAEU": "inchoative",
"EUPB/KOE/HAOER": "incoherence",
"EUPB/KOET": "inchoative",
"EUPB/KOR/KWREUPBLG": "incorrigible",
"EUPB/KOR": "incorporated",
"EUPB/KOR/POR/KWRAEU": "incorporator",
"EUPB/KOR/POR": "incorporated",
"EUPB/KORP": "incorporated",
"EUPB/KORPBLG": "incorrigible",
"EUPB/KOPB/SRAOEPB": "inconvenience",
"EUPB/KOPB": "inconsistently",
"EUPB/KOPB/SAOEF": "inconceivable",
"EUPB/KOPB/SO": "inconsolable",
"EUPB/KOPB/SOE": "inconsolable",
"EUPB/KOPB/SOEL": "inconsolable",
"EUPB/KOPB/SOL": "inconsolable",
"EUPB/KOPB/SE/KWEPB": "inconsequential",
"EUPB/KOPB/SE": "inconsequential",
"EUPB/KOPB/SE/KWEPBT": "inconsequential",
"EUPB/KOPB/SEUFT": "inconsistency",
"EUPB/KOPB/SEUFT/KWREPBS": "inconsistency",
"EUPB/KOPB/SEUS/TEPB": "inconsistencies",
"EUPB/KOPB/SEUS": "inconsistent",
"EUPB/KOPB/TKPWRAOU": "incongruous",
"EUPB/KOPB/TKPWRAOU/KWREU": "incongruity",
"EUPB/KOPB/TKPWRAOU/WEU": "incongruity",
"EUPB/KOPB/TRO": "incontrovertible",
"EUPB/KOPB/TRO/SRERT": "incontrovertible",
"EUPB/KOPB/TROE": "incontrovertible",
"EUPB/KOPB/TROE/SRERT": "incontrovertible",
"EUPB/KOPB/TEU": "incontinence",
"EUPB/KOPB/KEUFT/KWREPB": "inconsistently",
"EUPB/KOPB/KEUFT": "inconsistently",
"EUPB/KOPBT": "incontinence",
"EUPB/KOPBS/TAPB": "inconstancy",
"EUPB/KOPBS": "inconsolable",
"EUPB/KOPBS/KWEPB": "inconsequential",
"EUPB/KOPL/PRE/HEPBS": "incomprehensibility",
"EUPB/KOPL/PRE": "incomprehensibility",
"EUPB/KOPL/PAEUR": "incomparable",
"EUPB/KOPL/PAT": "incompatible",
"EUPB/KOPL/PE": "incompetence",
"EUPB/KOBG/SEU": "intoxicant",
"EUPB/KOBG": "intoxicant",
"EUPB/KOG/TPHAOE": "incognito",
"EUPB/KOG": "incognito",
"EUPB/KOG/TPHEU": "incognito",
"EUPB/KUPL/PWEPB": "incumbency",
"EUPB/KUPL": "incumbency",
"EUPB/KUPL/PWEPBS": "incumbency",
"EUPB/KUL": "inculpate",
"EUPB/KUL/PA": "inculpatory",
"EUPB/KUL/PA/TOR": "inculpatory",
"EUPB/PWRAOED": "inbreeding",
"EUPB/PROEP": "inappropriately",
"EUPB/PROEP/KWRAT": "inappropriately",
"EUPB/WEPB": "innuendoes",
"EUPB/HA/PWEU": "inhabitants",
"EUPB/HA": "inhalation",
"EUPB/HA/HRA": "inhalatory",
"EUPB/HA/HRA/TOR": "inhalatory",
"EUPB/HAOU": "inhumanity",
"EUPB/HAOU/PHAPB": "inhumanity",
"EUPB/HAEU/HRA": "inhalator",
"EUPB/HAEU": "inhalator",
"EUPB/HAEU/HRAEU": "inhalator",
"EUPB/HAEU/HRAEUT": "inhalator",
"EUPB/HAEU/HRAT": "inhalator",
"EUPB/HAEUL/KWRAEUT": "inhalator",
"EUPB/HAB": "inhabitants",
"EUPB/HAL": "inhalation",
"EUPB/HOS/PEUT": "inhospitable",
"EUPB/HOS": "inhospitable",
"EUPB/HEU/PWEU": "inhibitive",
"EUPB/HEU": "inhibited",
"EUPB/HEUB": "inhibin",
"EUPB/HER": "inherent",
"EUPB/HER/KWREU/TA": "inheritable",
"EUPB/HER/KWREU": "inheritor",
"EUPB/A/TKE/KWA": "inadequacies",
"EUPB/A/TKE": "inadequate",
"EUPB/A": "inappropriate",
"EUPB/A/TKE/KWAU": "inadequacies",
"EUPB/A/TPHEU": "inanimate",
"EUPB/A/TEPB": "inattentive",
"EUPB/A/TEPBT": "inattentive",
"EUPB/A/KRA": "inaccuracy",
"EUPB/A/KAOUR": "inaccurate",
"EUPB/A/PRO/PREU": "inappropriate",
"EUPB/A/PRO": "inappropriate",
"EUPB/A/PROE/PREU": "inappropriate",
"EUPB/A/PROE": "inappropriate",
"EUPB/A/PROEP": "inappropriate",
"EUPB/A/PROEP/REU": "inappropriate",
"EUPB/AOE/TPAEUS": "ineffaceably",
"EUPB/AOE": "ineluctable",
"EUPB/AOE/TPAEUS/-BL": "ineffaceably",
"EUPB/AOE/TPEU": "inefficiencies",
"EUPB/AOE/TPEU/SHEPB": "inefficiencies",
"EUPB/AOE/TPEU/SHEPBS": "inefficiencies",
"EUPB/AOE/TPEURB/KWREPB": "inefficiencies",
"EUPB/AOE/TPEURB": "inefficiencies",
"EUPB/AOE/TPEURB/KWREPBS": "inefficiencies",
"EUPB/AOE/TPEBG": "ineffectiveness",
"EUPB/AOE/TPEBGT": "ineffectual",
"EUPB/AOE/KWAUL": "inequality",
"EUPB/AOE/PWREU": "inebriety",
"EUPB/AOE/PWREU/KWRE": "inebriety",
"EUPB/AOE/HRAS": "inelastic",
"EUPB/AOE/HRUBGT": "ineluctable",
"EUPB/AOERB": "inebriety",
"EUPB/AOERB/KWRE": "inebriety",
"EUPB/AOEB": "inebriety",
"EUPB/AOEB/REU": "inebriety",
"EUPB/AOEB/REU/KWRE": "inebriety",
"EUPB/AEUL/KWREPB": "inalienable",
"EUPB/AEUL": "inalienable",
"EUPB/AUG": "inaugural",
"EUPB/AUS/PEU": "inauspicious",
"EUPB/AUS": "inauspicious",
"EUPB/AUS/PEURB": "inauspicious",
"EUPB/AR/TEU/KAOU": "inarticulate",
"EUPB/AR/TEU": "inarticulate",
"EUPB/AR": "inarticulate",
"EUPB/ART": "inarticulate",
"EUPB/APB": "inanimate",
"EUPB/ABG": "inaccurate",
"EUPB/ABG/SES": "inaccessibility",
"EUPB/ABG/TEU": "inactivate",
"EUPB/ABG/RA": "inaccuracy",
"EUPB/ABGT": "inactively",
"EUPB/AS": "inasmuch",
"EUPB/AD/SRER": "inadvertence",
"EUPB/AD": "inadmissible",
"EUPB/AD/SRERT": "inadvertently",
"EUPB/AD/KWA": "inadequacies",
"EUPB/AD/KWAU": "inadequacies",
"EUPB/AD/PHEUS": "inadmissible",
"EUPB/O/PER": "inoperable",
"EUPB/O": "inoperable",
"EUPB/OE/TPEPB": "inoffensive",
"EUPB/OE": "inoffensive",
"EUPB/OE/TPEPBS": "inoffensive",
"EUPB/OFPBS": "inoffensive",
"EUPB/OR/TKPWA": "inorganic",
"EUPB/OR": "inordinate",
"EUPB/OR/TKPWAPB": "inorganic",
"EUPB/OR/TKEU": "inordinate",
"EUPB/ORP": "inoperable",
"EUPB/ORD": "inordinate",
"EUPB/OP": "inoperable",
"EUPB/E/SREU/TA": "inevitability",
"EUPB/E/SREU": "inevitability",
"EUPB/E": "ineluctable",
"EUPB/E/SREUT": "inevitable",
"EUPB/E/TPAEUS": "ineffaceably",
"EUPB/E/TPAEUS/-BL": "ineffaceably",
"EUPB/E/TPEU": "inefficiencies",
"EUPB/E/TPEU/SHEPB": "inefficiencies",
"EUPB/E/TPEU/SHEPBS": "inefficiencies",
"EUPB/E/TPEURB/KWREPB": "inefficiencies",
"EUPB/E/TPEURB": "inefficiencies",
"EUPB/E/TPEURB/KWREPBS": "inefficiencies",
"EUPB/E/TPEBG": "ineffectiveness",
"EUPB/E/TPEBGT": "ineffectual",
"EUPB/E/KWAUL": "inequality",
"EUPB/E/KWAL": "inequality",
"EUPB/E/PWREU": "inebriety",
"EUPB/E/PWREU/KWRE": "inebriety",
"EUPB/E/HRAS": "inelastic",
"EUPB/E/HREU/SKWREU": "ineligibility",
"EUPB/E/HREU": "ineligibility",
"EUPB/E/HRUBGT": "ineluctable",
"EUPB/EUPB": "insincerity",
"EUPB/EUPL/KWREU": "inimitable",
"EUPB/EUPL": "inimitable",
"EUPB/EUPL/KWREUT": "inimitable",
"EUPB/EUPLT": "inimitable",
"EUPB/EUBG": "iniquitous",
"EUPB/EUBG/WEU": "iniquitous",
"EUPB/EUG/TPHAPBT": "indignantly",
"EUPB/EUG": "indignantly",
"EUPB/EF": "ineffable",
"EUPB/EFT": "inevitability",
"EUPB/ERB": "inebriety",
"EUPB/ERB/KWRE": "inebriety",
"EUPB/EP": "ineptitude",
"EUPB/EP/TEU": "ineptitude",
"EUPB/EB": "inebriety",
"EUPB/EB/REU": "inebriety",
"EUPB/EB/REU/KWRE": "inebriety",
"EUPB/EBG/SAUFT": "inexhaustible",
"EUPB/EBG": "inequitable",
"EUPB/EBG/SOR": "inexorable",
"EUPB/EBG/WEU": "inequities",
"EUPB/EBG/WEUT": "inequitable",
"EUPB/EBGS/TREUBG": "inextricable",
"EUPB/EBGS": "inexorable",
"EUPB/EBGS/KAOUS": "inexcusable",
"EUPB/EBGS/PHREUBG": "inexplicable",
"EUPB/EBGS/PRES": "inexpressible",
"EUPB/EBGS/PAOER": "inexperience",
"EUPB/EBGS/HAUFT": "inexhaustible",
"EUPB/ELG": "ineligibility",
"EUPB/ES/TEU": "inestimable",
"EUPB/ES": "inescapable",
"EUPB/ES/KAEUP": "inescapable",
"EUPB/ED": "inedible",
"EUPBG": "ingle",
"EUPBT/STE": "interstellar",
"EUPBT/STEL": "interstellar",
"EUPBT/SRAOE": "intervenor",
"EUPBT/SRER/TE": "intervertebral",
"EUPBT/SRER": "intervertebral",
"EUPBT/SRERT": "intervertebral",
"EUPBT/SE": "intercessor",
"EUPBT/SEP": "interceptor",
"EUPBT/TKPWRAEU": "integrative",
"EUPBT/TKPWRAT": "integrative",
"EUPBT/TKPWA": "interrogatives",
"EUPBT/TKPWAEU": "interrogator",
"EUPBT/TKPWAT": "interrogatives",
"EUPBT/TKPWO/SRERPB/-PLT": "intergovernmental",
"EUPBT/TKPWO/SRERPB": "intergovernmental",
"EUPBT/TKPWO": "intergovernmental",
"EUPBT/TKPWOFRPB/-PLT": "intergovernmental",
"EUPBT/TKPWOFRPB": "intergovernmental",
"EUPBT/TKPWOFRPLT": "intergovernmental",
"EUPBT/TKPWOFPLT": "intergovernmental",
"EUPBT/TKE/SRE/HROP": "interdevelopment",
"EUPBT/TKE/SRE": "interdevelopment",
"EUPBT/TKE": "interdevelopment",
"EUPBT/TKEU/SKWREU": "interdigital",
"EUPBT/TKEU": "interdigital",
"EUPBT/TKEUPBLG": "interdigital",
"EUPBT/TKEPB": "interdental",
"EUPBT/TKEPBT": "interdental",
"EUPBT/TPHAGS": "internationally",
"EUPBT/TPROPL": "interferometer",
"EUPBT/TPER/KWRO/PHAOE": "interferometer",
"EUPBT/TPER/KWRO": "interferometer",
"EUPBT/TPER": "interferometer",
"EUPBT/TPER/KWRO/PHE": "interferometer",
"EUPBT/TPER/KWROPL": "interferometer",
"EUPBT/KHRUPL": "intercolumniation",
"EUPBT/KA": "intercalat",
"EUPBT/KAL": "intercalcated",
"EUPBT/KO/HRUPL/TPHEU": "intercolumniation",
"EUPBT/KO/HRUPL": "intercolumniation",
"EUPBT/KO": "intercolumniation",
"EUPBT/KOES": "intercostal",
"EUPBT/KOFT": "intercostals",
"EUPBT/KOPB": "intercontinental",
"EUPBT/KOPB/TKAOEU": "intercondyloid",
"EUPBT/KOPB/TKAOEUL": "intercondylar",
"EUPBT/KOPB/TEU/TPHEPB": "intercontinental",
"EUPBT/KOPB/TEU": "intercontinental",
"EUPBT/KOPB/TEU/TPHEPBT": "intercontinental",
"EUPBT/KOPBT/TPHEPBT": "intercontinental",
"EUPBT/KOPBT": "intercontinental",
"EUPBT/KOPBD": "intercondyloid",
"EUPBT/KOS": "intercostals",
"EUPBT/PHA": "intimacy",
"EUPBT/PHAOE": "intermedius",
"EUPBT/PHAOED/KWRAEUR": "intermediary",
"EUPBT/PHAOUR": "intermural",
"EUPBT/PHAEUT": "intimating",
"EUPBT/PHEU/TEPB": "intermittency",
"EUPBT/PHEU": "intermittence",
"EUPBT/PHEUPB": "interminable",
"EUPBT/PHEUT": "intermittence",
"EUPBT/PHED": "intermeddler",
"EUPBT/PHED/-L": "intermeddler",
"EUPBT/PROBG/SEU": "interproximally",
"EUPBT/PROBG": "interproximally",
"EUPBT/PROBG/SEU/PHAL": "interproximally",
"EUPBT/PROBGS": "interproximally",
"EUPBT/PROBGS/PHAL": "interproximally",
"EUPBT/PRE": "interpretive",
"EUPBT/PO": "interpolate",
"EUPBT/POE": "interpolate",
"EUPBT/HRO/KAOU": "interlocular",
"EUPBT/HRO": "interlocular",
"EUPBT/HROE": "interlobar",
"EUPBT/HROEP": "interloper",
"EUPBT/HROEB": "interlobar",
"EUPBT/HROBG/KAOU": "interlocutory",
"EUPBT/HREBG": "intellectuals",
"EUPBT/RA/TKPWA": "interrogatives",
"EUPBT/RA": "interrogatives",
"EUPBT/RO/TKPWA": "interrogatories",
"EUPBT/RO": "interrobang",
"EUPBT/RO/TKPWA/TOR": "interrogatories",
"EUPBT/RO/TKPWAEU": "interrogator",
"EUPBT/RO/TKPWAT": "interrogatives",
"EUPBT/ROE/TKPWA": "interrogatives",
"EUPBT/ROE": "interrobang",
"EUPBT/ROE/TKPWA/TOR": "interrogatories",
"EUPBT/ROE/TKPWAEU": "interrogator",
"EUPBT/ROE/TKPWAT": "interrogatives",
"EUPBT/REG": "interregnim",
"EUPBT/ABG": "interactive",
"EUPBT/O": "interoperability",
"EUPBT/O/PER/KWRA": "interoperability",
"EUPBT/O/PER": "interoperability",
"EUPBT/OP": "interoperability",
"EUPBT/UR": "interurban",
"EUPBTS": "instigation",
"EUPBS/TAOUGS/KWRAL": "institutionalize",
"EUPBS/TEU": "institutionalize",
"EUPBS/TEU/TAOUGS/KWRAL": "institutionalize",
"EUPBS/TEU/TAOUGS": "institutionalize",
"EUPBS/PEUR": "inspiration",
"EUPBS/PEUR/KWRA": "inspiratory",
"EUPBS/PEUR/KWRA/TOR": "inspiratory",
"EUPBS/HRAEU": "insulator",
"EUPBD/STREU/KWRAL": "industrialize",
"EUPBD/SKREUPL": "indiscriminate",
"EUPBD/SREUPBLG": "individual",
"EUPBD/SREUD": "individual",
"EUPBD/SAOEU": "indecisive",
"EUPBD/KA": "indicative",
"EUPBD/KAT": "indicative",
"EUPBD/PEPB": "independence",
"EUPBDZ": "indisputable",
"EUPBDZ/TREU/KWRAL": "industrialize",
"EUPBDZ/PAOUT": "indisputable",
"EUPL/KWRA/SKWREU/TPHA": "imaginatively",
"EUPL/KWRA/SKWREU": "imaginatively",
"EUPL/KWRA": "immaculate",
"EUPL/KWRA/SKWREU/TPHAEUR": "imaginary",
"EUPL/KWRA/SKWREU/TPHAT": "imaginatively",
"EUPL/KWRA/TAOER": "immaterial",
"EUPL/KWRA/KAOU": "immaculate",
"EUPL/KWRAOE/TKEU/KWRA": "immediacy",
"EUPL/KWRAOE/TKEU": "immediacy",
"EUPL/KWRAOE": "immediacy",
"EUPL/KWRAOE/TKEU/KWRAS": "immediacy",
"EUPL/KWRAOED/KWRA": "immediacy",
"EUPL/KWRAOED": "immediate",
"EUPL/KWRAOU": "immunologist",
"EUPL/KWRAOU/TPHO/HRO": "immunologist",
"EUPL/KWRAOU/TPHO": "immunologist",
"EUPL/KWRAOUT": "immutable",
"EUPL/KWRO/TKES": "immodesty",
"EUPL/KWRO": "immolate",
"EUPL/KWROE": "immobility",
"EUPL/KWROE/PWEUL": "immobilize",
"EUPL/KWROR": "immorality",
"EUPL/KWROR/RAL": "immorality",
"EUPL/KWRORT": "immortalize",
"EUPL/KWRE/SHUR": "immeasurably",
"EUPL/KWRE": "immeasurably",
"EUPL/KWRE/SHURBL": "immeasurably",
"EUPL/KWREU": "imitable",
"EUPL/KWREU/TAEU": "imitative",
"EUPL/KWREUT": "imitable",
"EUPL/KWREUS": "immiscible",
"EUPL/KWRERB/KWRUR": "immeasurably",
"EUPL/KWRERB": "immeasurably",
"EUPL/P/WEU": "impuissant",
"EUPL/P": "impuissant",
"EUPL/PWROEU": "embroider",
"EUPL/PWROEL": "imbroglio",
"EUPL/PWREU": "imbricate",
"EUPL/PWA": "imbalance",
"EUPL/PWE": "imbecility",
"EUPL/PWEU": "impuissant",
"EUPL/PHRAOED": "impleader",
"EUPL/PHRAUS": "implausible",
"EUPL/PHRAPB": "implantation",
"EUPL/PHRABG": "implacability",
"EUPL/PHRE/PHEPB": "implementation",
"EUPL/PHRE": "implements",
"EUPL/PHREU/SEU": "implicity",
"EUPL/PHREU": "implicative",
"EUPL/PHREU/KA": "implicative",
"EUPL/PHREU/KAEU": "implicative",
"EUPL/PHREU/KAT": "implicative",
"EUPL/PHREUS": "implicit",
"EUPL/PHA": "immaculate",
"EUPL/PHA/TAOER": "immaterial",
"EUPL/PHA/KAOU": "immaculate",
"EUPL/PHAOE/TKEU/KWRA": "immediacy",
"EUPL/PHAOE/TKEU": "immediacy",
"EUPL/PHAOE": "immediacy",
"EUPL/PHAOEU": "immigrants",
"EUPL/PHAOED/KWRA": "immediacy",
"EUPL/PHAOU": "immunologist",
"EUPL/PHAOU/TPHO/HRO": "immunologist",
"EUPL/PHAOU/TPHO": "immunologist",
"EUPL/PHAOUT": "immutable",
"EUPL/PHABG": "immaculate",
"EUPL/PHO/TKES": "immodesty",
"EUPL/PHO": "immolate",
"EUPL/PHOE": "immobile",
"EUPL/PHOE/PWEU": "immobilize",
"EUPL/PHOE/PWEUL": "immobilize",
"EUPL/PHOEB": "immobilize",
"EUPL/PHOR": "immorality",
"EUPL/PHOR/RAL": "immorality",
"EUPL/PHORT": "immortally",
"EUPL/PH*ERB": "immeasurably",
"EUPL/PH*ERB/-BL": "immeasurably",
"EUPL/PHE/SHUR": "immeasurably",
"EUPL/PHE": "immeasurably",
"EUPL/PHE/SHUR/-BL": "immeasurably",
"EUPL/PHEU": "imminence",
"EUPL/PHEUS": "immiscible",
"EUPL/PHERB/KWRUR": "immeasurably",
"EUPL/PHERB": "immeasurably",
"EUPL/PHERB/KWRUR/-BL": "immeasurably",
"EUPL/PRAOU/TKEPBT": "imprudently",
"EUPL/PRAOU": "imprudently",
"EUPL/PRABG/TEU": "impractical",
"EUPL/PRABG": "impractical",
"EUPL/PRO/SRAOEU": "improvisation",
"EUPL/PRO": "improperly",
"EUPL/PRO/SREU/SA": "improvisatory",
"EUPL/PRO/SREU": "improvident",
"EUPL/PRO/SREU/SA/TOR": "improvisatory",
"EUPL/PRO/SREUS": "improvisatory",
"EUPL/PRO/PWA": "improbable",
"EUPL/PRO/PRAOEU/KWRE": "impropriety",
"EUPL/PRO/PRAOEU": "impropriety",
"EUPL/PRO*PL": "impromptu",
"EUPL/PROE": "impropriety",
"EUPL/PROE/PRAOEU": "impropriety",
"EUPL/PROE/PRAOEU/KWRE": "impropriety",
"EUPL/PROFR/KWREURB": "impoverishment",
"EUPL/PROFR": "impoverishment",
"EUPL/PROFS": "improvisatory",
"EUPL/PROPL": "impromptu",
"EUPL/PRE": "imprecate",
"EUPL/PREU": "imprisons",
"EUPL/PREG/TPHA": "impregnable",
"EUPL/PREG": "impregnable",
"EUPL/PA": "impala",
"EUPL/PAOE": "impediments",
"EUPL/PAOE/TKEU": "impediments",
"EUPL/PAOEU": "impious",
"EUPL/PAOER": "imperious",
"EUPL/PAOERB": "impeachable",
"EUPL/PAOED/KWREU": "impediments",
"EUPL/PAOU": "imputation",
"EUPL/PAOU/TPHEU": "impunity",
"EUPL/PAEU": "impatient",
"EUPL/PAEURB": "impatient",
"EUPL/PAR/SHEU/KWRAL": "impartiality",
"EUPL/PAR/SHEU": "impartiality",
"EUPL/PAR": "impartiality",
"EUPL/PARB/KWRAL": "impartiality",
"EUPL/PARB": "impartiality",
"EUPL/PAL/PA": "impalpable",
"EUPL/PAL": "impalpable",
"EUPL/PO/SRER": "impoverished",
"EUPL/PO": "impotence",
"EUPL/PO/SEU/PWEUL": "impossibilities",
"EUPL/PO/SEU": "impossibilities",
"EUPL/PO/SEU/-BL": "impossibilities",
"EUPL/PO/SEUBL": "impossibilities",
"EUPL/PO/TEPB": "impotency",
"EUPL/POE": "impotence",
"EUPL/POE/TEPB": "impotency",
"EUPL/POEZ": "imposuit",
"EUPL/POF": "impoverished",
"EUPL/POFR": "impoverished",
"EUPL/POR": "importune",
"EUPL/POZ": "imposuit",
"EUPL/PE": "impecunious",
"EUPL/PE/TKEU": "impediment",
"EUPL/PE/TPHA/TRA": "impenetrably",
"EUPL/PE/TPHA": "impenetrably",
"EUPL/PE/TPHA/TRA/-BL": "impenetrably",
"EUPL/PE/TPHA/TRABL": "impenetrably",
"EUPL/PE/TPHE/TRA": "impenetrable",
"EUPL/PE/TPHE": "impenetrable",
"EUPL/PE/TPHEU": "impenitence",
"EUPL/PE/TAOEU": "impetigo",
"EUPL/PE/KHAOU": "impetuous",
"EUPL/PE/KAOU": "impecunious",
"EUPL/PE/KAOUPB": "impecunious",
"EUPL/PEFRB": "impervious",
"EUPL/PEFP": "impetuous",
"EUPL/PER/SREU": "impervious",
"EUPL/PER": "impermissible",
"EUPL/PER/SO/TPHAEU": "impersonator",
"EUPL/PER/SO": "impersonate",
"EUPL/PER/SOPB": "impersonal",
"EUPL/PER/SEPT": "imperceptible",
"EUPL/PER/TPOR": "imperforate",
"EUPL/PER/TEU": "impertinent",
"EUPL/PER/KWRA": "imperatives",
"EUPL/PER/KWREURB": "imperishable",
"EUPL/PER/PHEUS": "impermissible",
"EUPL/PERT": "impertinent",
"EUPL/PERS/TPHAEU": "impersonator",
"EUPL/PERS": "impersonate",
"EUPL/PEPB/TRA": "impenetrably",
"EUPL/PEPB": "impenitence",
"EUPL/PEBG": "impeccability",
"EUPL/PET": "impetuous",
"EUPL/PED/KWREU": "impediment",
"EUPL/PED": "impediments",
"EUPL/PUL/SEU/SREU": "impulsivity",
"EUPL/PUL/SEU": "impulsivity",
"EUPL/PUL": "impulsivity",
"EUPL/EBG/-BL": "impeccably",
"EUPL/EBG": "impeccably",
"EUPS": "ipsilateral",
"EUPS/HRAT": "ipsilateral",
"EUBG": "icky",
"EUL/STRAEU": "illustrative",
"EUL/SKWREUT": "illegitimacy",
"EUL/SKWRET": "illegitimatize",
"EUL/SKWRET/PHA": "illegitimatize",
"EUL/HRAOE": "illegality",
"EUL/HRAOU": "illuminism",
"EUL/HRAOU/SOR": "illusory",
"EUL/HRAOU/PHEU/TPHAEU": "illuminator",
"EUL/HRAOU/PHEU": "illuminist",
"EUL/HRAOU/PHEUPB": "illuminism",
"EUL/HRAOUPL/TPHAEU": "illuminator",
"EUL/HRAOUPL": "illuminist",
"EUL/HRAOUS": "illusive",
"EUL/HRO/SKWREU": "illogical",
"EUL/HRO": "illogically",
"EUL/HRO/SKWREUBG/KWRAL": "illogically",
"EUL/HRO/SKWREUBG": "illogically",
"EUL/HROPBLG/KWREUBG": "illogical",
"EUL/HROPBLG": "illogical",
"EUL/HRE/SKWREU/TEU/PHA": "illegitimatize",
"EUL/HRE/SKWREU/TEU": "illegitimate",
"EUL/HRE/SKWREU": "illegitimate",
"EUL/HRE": "illegitimate",
"EUL/HRE/SKWREU/TEU/PHAEUT": "illegitimately",
"EUL/HRE/SKWREUT": "illegitimate",
"EUL/HREU/TER/KWRA": "illiteracy",
"EUL/HREU/TER": "illiterate",
"EUL/HREU": "illiterate",
"EUL/HREUT": "illiterate",
"EUL/HREUT/RA": "illiteracy",
"EUL/HREPBLG": "illegible",
"EUL/HREPBLGT": "illegitimate",
"EUL/HRUS/TRA": "illustrative",
"EUL/HRUS": "illustrious",
"EUL/HRUS/TRAEU": "illustrators",
"EUL/HRUS/TRAT": "illustrative",
"EUL/HRUS/TREU": "illustrious",
"EUL/REL": "irrelevant",
"EULS/TRA": "illustrative",
"EULS": "illustrative",
"EULS/TRAEU": "illustrative",
"EULS/TRAT": "illustrative",
"EUG/TPHAOE": "igneous",
"EUG": "wiggled",
"EUG/TPHO/PHEU": "ignominiously",
"EUG/TPHO": "ignominiously",
"EUG/TPHOR/KWRA": "ignoramus",
"EUG/TPHOR/KWRAPB": "ignorantiam",
"EUG/TPHOR/KWRAPB/SHEU": "ignorantiam",
"EUG/TPHOPL": "ignominious",
"EUG/WA": "iguana",
"EUG/WAU": "iguana",
"EUT/RA": "itracon",
"EUT/RAT": "iterative",
"EUS": "isthmus",
"EUS/*T": "isthmus",
"EUD/KWRO/S*EUPBG": "idiosyncrasy",
"EUD/KWRO": "idiopath",
"EUD/KWRO/S*EUPBG/RA": "idiosyncratic",
"EUD/KWRO/SEUPB/KRA": "idiosyncratic",
"EUD/KWRO/SEUPB": "idiosyncratic",
"EUD/KWRO/SEUPBG/KRA": "idiosyncratic",
"EUD/KWRO/SEUPBG": "idiosyncrasy",
"EUD/KWRO/TEU": "idiotypic",
"EUD/KWRO/TEUP": "idiotypic",
"EUD/KWRO/PHA": "idiomatic",
"EUD/KWRO/PA": "idiopathic",
"EUD/KWROE/S*EUPBG/RA": "idiosyncratic",
"EUD/KWROE/S*EUPBG": "idiosyncrasy",
"EUD/KWROE": "idiomatic",
"EUD/KWROE/SEUPB/KRA": "idiosyncratic",
"EUD/KWROE/SEUPB": "idiosyncratic",
"EUD/KWROE/SEUPBG/KRA": "idiosyncratic",
"EUD/KWROE/SEUPBG": "idiosyncrasy",
"EUD/KWROE/TEU": "idiotypic",
"EUD/KWROE/TEUP": "idiotypic",
"EUD/KWROE/PHA": "idiomatic",
"EF": "effing",
"EF/TKEPB/SHEU/KWRAEUR": "evidentiary",
"EF/TKEPB/SHEU": "evidentiary",
"EF/TKEPB": "evidentiary",
"EF/TKEPB/-RBL": "evidentiary",
"EF/KA": "efficacy",
"EF/KAEU": "efficacious",
"EF/KAEURB": "efficacious",
"EF/KAS": "efficacy",
"EF/HRAOUGS/KWRAEUR": "evolutionary",
"EF/ROPB/TER": "effrontery",
"EF/ROPB": "effrontery",
"EF/ROPBT": "effrontery",
"EFR/KWREU": "everywhere",
"EFPL": "ephemerality",
"EFBG": "escapades",
"EFT/PHAEU": "estimator",
"EFT": "estrogen",
"EFT/RO": "estrogen",
"EFT/ROE": "estrogen",
"ER/SEUP": "erysipelas",
"ER/TKPWO/TPHO": "ergonomics",
"ER/TKPWO": "ergotism",
"ER/TKPWO/TPHOPL": "ergonomics",
"ER/THAOE": "erythemal",
"ER/TO/TPAO*EL": "erotophilia",
"ER/TO": "erotophilia",
"ER/TO/TP*EUL": "erotophilia",
"ER/TOE/TPAO*EL": "erotophilia",
"ER/TOE": "erotophilia",
"ER/TOE/TP*EUL": "erotophilia",
"ER/KWRA/TKEU": "eradicated",
"ER/KWRA/TO/HRO": "eratology",
"ER/KWRA/TO": "eratology",
"ER/KWRA/TEUBG/KWRAL": "erratically",
"ER/KWRAOER": "eerily",
"ER/KWRAOU": "erudition",
"ER/KWRAEU": "erasures",
"ER/KWRAT": "erratically",
"ER/KWRAD": "eradicated",
"ER/KWRO/SKWRE": "erogenous",
"ER/KWRO": "erotic",
"ER/KWRO/TEU": "erotica",
"ER/KWROE": "erotism",
"ER/KWROEPB": "erroneous",
"ER/KWROES": "erosive",
"ER/KWROPB": "erroneous",
"ER/KWROPBLG": "erogenous",
"ER/KWROT": "erotica",
"ER/KWREU/SEUP": "erysipelas",
"ER/KWREU": "erysipelas",
"ER/KWREBG": "erectus",
"ER/KWRUP": "eruptive",
"ER/PWEU": "herbivore",
"ER/HRO/TEU": "erlotinib",
"ER/HRO": "erlotinib",
"ER/HROT": "erlotinib",
"ERPBLG": "erogenous",
"ERB": "echelon",
"ERG/TPHO": "ergonomist",
"ERT/SREUR": "etravirine",
"EP/SPAEUD": "epispadias",
"EP/SO": "episodic",
"EP/SOD": "episodic",
"EP/SEU": "epsilon",
"EP/SEPB": "epicenters",
"EP/TKWAOEPL": "epidemiologist",
"EP/TKAOE/PHEU/KWRO/HRO": "epidemiology",
"EP/TKAOE/PHEU/KWRO": "epidemiology",
"EP/TKAOE/PHEU": "epidemiology",
"EP/TKAOE": "epidemiology",
"EP/TKAOEPL/KWRO/HRO": "epidemiologic",
"EP/TKAOEPL/KWRO": "epidemiologic",
"EP/TKAOEPL": "epidemiologic",
"EP/TKE/PHEU/KWRO/HRO": "epidemiologic",
"EP/TKE/PHEU/KWRO": "epidemiologic",
"EP/TKE/PHEU": "epidemiologic",
"EP/TKE": "epidemics",
"EP/TKEUD/PHAOEU": "epididymitis",
"EP/TKEUD": "epididymis",
"EP/TKER": "epidermis",
"EP/TKEPL": "epidemics",
"EP/TPA*": "epiphanic",
"EP/TPA*PB": "epiphanic",
"EP/TPO*R": "epiphora",
"EP/THAOEL": "epithelize",
"EP/KREU": "epicritic",
"EP/KREPB": "epicenters",
"EP/KARD": "epicardium",
"EP/KAP/SAOU": "encapsulate",
"EP/KAP": "encapsulate",
"EP/KAPS/KWRAOU": "encapsulate",
"EP/KAPS": "encapsulation",
"EP/KOPB": "epicondyle",
"EP/HREP/TEU": "epilepticus",
"EP/HREP": "epileptics",
"EP/HREPT": "epilepticus",
"EPB/SKWRAPL": "enjambment",
"EPB/SKWREU": "engineers",
"EPB/SKWREPB": "engenders",
"EPB/SRAOEU": "enviably",
"EPB/SRAOEUR": "environments",
"EPB/SRE": "enveloped",
"EPB/SREUS": "envisage",
"EPB/SAO*EU/PHA": "enzymatic",
"EPB/SAO*EU": "enzymatic",
"EPB/SAO*EUPL/KWRAT": "enzymatically",
"EPB/SAOEU/KHRO/PAOE/TKEU": "encyclopedia",
"EPB/SAOEU/KHRO/PAOE": "encyclopedic",
"EPB/SAOEU/KHRO": "encyclopedia",
"EPB/SAOEU": "enzymatically",
"EPB/SAOEU/KHRO/PAOED": "encyclopedia",
"EPB/SAOEU/KHROE/PAOE/TKEU": "encyclopedia",
"EPB/SAOEU/KHROE/PAOE": "encyclopedic",
"EPB/SAOEU/KHROE": "encyclopedia",
"EPB/SAOEU/KHROE/PAOED": "encyclopedia",
"EPB/SAOEU/PHAT": "enzymatically",
"EPB/SAOEUBG/PAOED": "encyclopedia",
"EPB/SAOEUBG": "encyclopedia",
"EPB/SAOEUBG/HRO/PAOE/TKEU": "encyclopedia",
"EPB/SAOEUBG/HRO/PAOE": "encyclopedic",
"EPB/SAOEUBG/HRO": "encyclopedia",
"EPB/SAOEUBG/HRO/PAOED": "encyclopedia",
"EPB/SAOEUBG/HROE/PAOE/TKEU": "encyclopedia",
"EPB/SAOEUBG/HROE/PAOE": "encyclopedic",
"EPB/SAOEUBG/HROE": "encyclopedia",
"EPB/SAOEUBG/HROE/PAOED": "encyclopedia",
"EPB/SOEURBGS": "encirclement",
"EPB/SOR": "ensorecell",
"EPB/SEU/SKWREPBS": "exigencies",
"EPB/SEU": "ensiform",
"EPB/SEUR/K-L": "encirclement",
"EPB/SEUR": "encirclement",
"EPB/SEURBG/-L": "encirclement",
"EPB/SEURBG": "encirclement",
"EPB/SEPBT": "incentive",
"EPB/SEPL": "ensembles",
"EPB/TKPWRAEUF": "engraver",
"EPB/TKAEUPB": "endangers",
"EPB/TKO/SKO/PEUBG": "endoscopically",
"EPB/TKO/SKO": "endoscopically",
"EPB/TKO/SKOP": "endoscopically",
"EPB/TKO/PHRAS": "endoplasmic",
"EPB/TKOE/SKO/PEUBG": "endoscopically",
"EPB/TKOE/SKO": "endoscopically",
"EPB/TKOE/SKOP": "endoscopically",
"EPB/TKOE/PHRAS": "endoplasmic",
"EPB/TKOR": "endorph",
"EPB/TKE": "endemic",
"EPB/TKEPL": "endemic",
"EPB/TPRAPB/KHAOEUS": "enfranchisement",
"EPB/TPRAPB": "enfranchisement",
"EPB/THAOU/S*EU": "enthusiasm",
"EPB/THAOU": "enthusiasm",
"EPB/THAOU/SEU": "enthusiasm",
"EPB/THAOUS/KWRAS": "enthusiastic",
"EPB/THAOUZ/KWRAS": "enthusiastic",
"EPB/THAL": "enthalpy",
"EPB/TRO": "entropy",
"EPB/TROE": "entropy",
"EPB/TRE": "entrepreneurial",
"EPB/TRE/PRE": "entrepreneurs",
"EPB/TRE/PRU": "entrepreneurial",
"EPB/TAOEUT": "entitles",
"EPB/TAOUR": "entourage",
"EPB/TAUPB": "entente",
"EPB/TAPBG": "entangles",
"EPB/TAB/HRA": "entablature",
"EPB/TAB": "entablature",
"EPB/TABL": "entablature",
"EPB/TO/PHO/HRO": "entomologist",
"EPB/TO/PHO": "entomological",
"EPB/TO/PHO/HROPBLG": "entomological",
"EPB/TO/PHOL": "entomology",
"EPB/TOE/PHO/HRO": "entomologist",
"EPB/TOE/PHO": "entomologist",
"EPB/TOE/PHOL": "entomology",
"EPB/TOR": "entourage",
"EPB/TEU": "entities",
"EPB/TEPB": "entente",
"EPB/KWRER/SKWRAOEUZ": "energizer",
"EPB/KWRER": "energizer",
"EPB/KHROE": "enclosures",
"EPB/KHAPB": "enchantress",
"EPB/KHEU/HRA": "enchilada",
"EPB/KHEU": "enchilada",
"EPB/KHEUL": "enchilada",
"EPB/KRUFT": "encrustation",
"EPB/KRUS": "encrustation",
"EPB/KA*PLT": "encampments",
"EPB/KAEUS": "encasement",
"EPB/KAUS": "encaustic",
"EPB/KAP/SAOU": "encapsulated",
"EPB/KAP": "encapsulated",
"EPB/KAPS/KWRAOU": "encapsulated",
"EPB/KAPS": "encapsulated",
"EPB/KOED": "encoder",
"EPB/KOUPB": "encounters",
"EPB/KOUPBT": "encounters",
"EPB/KOPL": "encompass",
"EPB/KUPL": "encumbers",
"EPB/HRAOEUF": "enlivens",
"EPB/HRAOEUT": "enlightenment",
"EPB/HREUF": "enlivening",
"EPB/HREUS": "enlistee",
"EPB/RAOE": "enuresis",
"EPB/RAP": "enraptured",
"EPB/RO": "enrollees",
"EPB/ROE": "enrollees",
"EPB/APB/TEU/KWROE": "enantiomer",
"EPB/APB/TEU": "enantiomer",
"EPB/APB": "enantiomer",
"EPB/APBT/KWROE": "enantiomer",
"EPB/APBT": "enantiomer",
"EPB/*ER": "energy",
"EPBLG/KWRAOU/KAEUT": "educator",
"EPBLG/KWRAOU": "educator",
"EPBT": "enteric",
"EPBT/PHROPBLG": "entomological",
"EPBT/PHO/HROPBLG": "entomological",
"EPBT/PHO": "entomological",
"EPBT/PHOL": "entomologist",
"EPBT/PRAOEUZ": "enterprising",
"EPBS": "ensiform",
"EPBD/SKPOP": "endoscopically",
"EPBD/SKOP": "endoscopic",
"EPBZ": "enzymatic",
"EPL/SEPL/PHRAEUR": "exemplarily",
"EPL/SEPL": "exemplarily",
"EPL/TPA*": "emphatic",
"EPL/TPA*T": "emphatically",
"EPL/KWRAOU/HRAEUT": "emulator",
"EPL/KWRAOU": "emulator",
"EPL/PWHRAEU": "emblazon",
"EPL/PWHRAEUZ": "emblazon",
"EPL/PWHRE/PHA": "emblematic",
"EPL/PWHRE": "emblement",
"EPL/PWRAOE": "embryo",
"EPL/PWRAEU": "embrasure",
"EPL/PWRAEURB": "embrasure",
"EPL/PWRAEUS/*ER": "embracery",
"EPL/PWROE/SKWRE/TPHE": "embryogenesis",
"EPL/PWROE/SKWRE": "embryogenesis",
"EPL/PWROE/SKWREPB": "embryogenesis",
"EPL/PWROE/HRO": "embryology",
"EPL/PWROE/HROPBLG": "embryological",
"EPL/PWROEU": "embroidering",
"EPL/PWROEUD": "embroideries",
"EPL/PWREU": "embryology",
"EPL/PWREU/KWRO/HRO": "embryology",
"EPL/PWREU/KWROE/SKWRE/TPHEU": "embryogenesis",
"EPL/PWREU/KWROE/SKWRE": "embryogenesis",
"EPL/PWREU/KWROE/SKWREPB": "embryogenesis",
"EPL/PWREU/KWROE/HRO/SKWREU": "embryological",
"EPL/PWREU/KWROE/HRO": "embryological",
"EPL/PWREU/KWROE/HRO/SKWREUBG": "embryological",
"EPL/PWREU/KWROE/HROPBLG": "embryological",
"EPL/PWREU/KWROL": "embryology",
"EPL/PWA": "embassy",
"EPL/PWA*PBG": "embankment",
"EPL/PWAEUR": "embarrass",
"EPL/PWAR": "embarkation",
"EPL/PWO": "embolus",
"EPL/PWO/THROPL/PWOL": "embothrombolic",
"EPL/PWO/THROPL": "embothrombolic",
"EPL/PWO/HREU": "emboliform",
"EPL/PWO*T/ROPL/PWOL": "embothrombolic",
"EPL/PWO*T/ROPL": "embothrombolic",
"EPL/PWO*T": "embothrombolic",
"EPL/PWOE": "emboli",
"EPL/PWOL": "emboliform",
"EPL/PWE": "embellish",
"EPL/PWEZ": "embezzles",
"EPL/PA/TPHA": "empanada",
"EPL/PA": "empathetically",
"EPL/PA/THE": "empathetic",
"EPL/PA/THET": "empathetically",
"EPL/POU": "empowers",
"EPL/POR": "emporium",
"EPL/PEUR": "empirical",
"EPL/PEUR/KWREU": "empirical",
"EPL/PER": "emperor",
"EPL/HRAEU": "emulator",
"EPS/TABGS": "epistaxis",
"EBG/STREU": "extricate",
"EBG": "equitable",
"EBG/STA": "ecstatic",
"EBG/STAT": "ecstatically",
"EBG/STAS": "ecstasy",
"EBG/SA/SKWRER": "exaggerated",
"EBG/SA": "examines",
"EBG/SA/SER": "exacerbate",
"EBG/SA/PHEU": "examination",
"EBG/SAO*E": "eczema",
"EBG/SAOEU/TA": "excitatory",
"EBG/SAOEU": "excitatory",
"EBG/SAOEU/TA/TOR": "excitatory",
"EBG/SAOU/TKA": "exudative",
"EBG/SAOU": "exhumation",
"EBG/SAOU/TKAEU": "exudative",
"EBG/SAOU/TKAT": "exudative",
"EBG/SAOU/PWER": "exuberance",
"EBG/SAOUB": "exuberance",
"EBG/SA*PL": "example",
"EBG/SAPBLG": "exaggerated",
"EBG/SAL": "exaltation",
"EBG/SAS": "exasperate",
"EBG/SAS/PER": "exasperate",
"EBG/SO/SKWRE": "exogenous",
"EBG/SO/SKEL": "exoskeleton",
"EBG/SO/TPHER": "exonerates",
"EBG/SO/TOBGS": "exotoxin",
"EBG/SO/TEU": "exotica",
"EBG/SO/TER": "exoteric",
"EBG/SOE/SKEL": "exoskeleton",
"EBG/SOE/TER": "exoteric",
"EBG/SOR": "exorable",
"EBG/SOR/PWEU": "exorbitance",
"EBG/SOR/PWEUT": "exorbitant",
"EBG/SORB": "exorbitant",
"EBG/SORBT": "exorbitance",
"EBG/SOPB": "exonerates",
"EBG/SOPBLG": "exogenous",
"EBG/SOT": "exotica",
"EBG/S*E": "eczema",
"EBG/SE/SKWRAOE": "exegesis",
"EBG/SE": "excellence",
"EBG/SE/KAOU/TREU": "executrices",
"EBG/SE/KAOU": "executives",
"EBG/SE/PHES": "exemestane",
"EBG/SEU/SKWREPB": "exigencies",
"EBG/SEU": "exhibitionist",
"EBG/SEU/TEPB": "existential",
"EBG/SEU/PWEU": "exhibitor",
"EBG/SEU/PWEUGS": "exhibitionist",
"EBG/SEUB": "exhibitor",
"EBG/SEUL": "exhilarate",
"EBG/SEUS": "existence",
"EBG/SER/SKWRO": "exergonic",
"EBG/SER": "exercises",
"EBG/SER/SKWROPB": "exergonic",
"EBG/SEPB/TREU/S*EU": "eccentricity",
"EBG/SEPB/TREU": "eccentricity",
"EBG/SEPB": "eccentricity",
"EBG/SEPB/TREU/SEU": "eccentricity",
"EBG/SEPB/TREUBG/KWRAL": "eccentrically",
"EBG/SEPB/TREUS": "eccentricity",
"EBG/SEPL": "exempli",
"EBG/SEPL/PHRAEUR": "exemplary",
"EBG/SEPL/PHREU/TPEU": "exemplification",
"EBG/SEPLS": "exemestane",
"EBG/SELS": "excelsior",
"EBG/SUL": "exultation",
"EBG/TKPWRAF": "ecography",
"EBG/TKEU": "ecdysis",
"EBG/TPHAEU": "echinacea",
"EBG/TPHO/PHE": "econometric",
"EBG/TPHO": "econometric",
"EBG/TPHO/PHEU": "economically",
"EBG/TPHO/PHERT": "econometrically",
"EBG/TPHO/PHET": "econometric",
"EBG/TPHOE/PHE": "econometric",
"EBG/TPHOE": "econometric",
"EBG/TPHOE/PHERT": "econometrically",
"EBG/TPHOE/PHET": "econometric",
"EBG/TPHOPL": "economical",
"EBG/TROEP": "ectropion",
"EBG/TA": "ectatic",
"EBG/TAEU": "ectasia",
"EBG/TAEURB": "ectasia",
"EBG/TOP": "ectopic",
"EBG/PHE": "econometric",
"EBG/PHEPB": "ecumenical",
"EBG/PHET": "econometric",
"EBG/WA/TOR": "equatorial",
"EBG/WA": "equatorial",
"EBG/WEU/TKEUS": "equidistant",
"EBG/WEU/TPHO/SRAR": "equinovarus",
"EBG/WEU/TPHO": "equinovarus",
"EBG/WEU/TPHOE/SRAR": "equinovarus",
"EBG/WEU/TPHOE": "equinovarus",
"EBG/WEU/HRA/TER": "equilateral",
"EBG/WEU/HRA": "equilateral",
"EBG/WEU/HAT": "equilateral",
"EBG/WEU/A/TPHAL/SKWRAOE": "equianalgesic",
"EBG/WEU/A/TPHAL": "equianalgesic",
"EBG/WEU/A": "equianalgesic",
"EBG/WEUT": "equitable",
"EBG/WER": "equerry",
"EBG/HRAOE/SEU/KWRAFT": "ecclesiastical",
"EBG/HRAOE/SEU": "ecclesiastic",
"EBG/HRAOE": "ecclesiastic",
"EBG/HRAOE/SEU/KWRAS": "ecclesiastic",
"EBG/HRAOES": "ecclesiastic",
"EBG/HRAOES/KWRAFT": "ecclesiastical",
"EBG/HRAOES/KWRAS": "ecclesiastic",
"EBG/HRAOES/KWREU/KWRAFT": "ecclesiastical",
"EBG/HRAOES/KWREU": "ecclesiastic",
"EBG/HRAOES/KWREU/KWRAS": "ecclesiastic",
"EBG/HRAT": "equilateral",
"EBG/HROPBLG": "ecological",
"EBG/HREURB": "equilibriate",
"EBG/HREURBG": "equilibria",
"EBG/HREUB": "equilibriate",
"EBG/HREBG": "eclectic",
"EBGT": "ectoplasm",
"EBGS/SKEL": "exoskeleton",
"EBGS/SAOEU/TA": "excitatory",
"EBGS/SAOEU": "excitatory",
"EBGS/SAOEU/TA/TOR": "excitatory",
"EBGS/SAOEU/TOR": "excitatory",
"EBGS/SE": "excellency",
"EBGS/SE/HREPBS": "excellency",
"EBGS/SEUP": "excipient",
"EBGS/SEBG": "executive",
"EBGS/SELS": "excelsior",
"EBGS/TPOEL/KWRA": "exfoliative",
"EBGS/TPOEL": "exfoliative",
"EBGS/TPOEL/KWRAEU": "exfoliative",
"EBGS/TPOEL/KWRAT": "exfoliative",
"EBGS/TRA/SKWRAOU/TKEU": "extrajudicial",
"EBGS/TRA/SKWRAOU": "extrajudicial",
"EBGS/TRA/SKWRAOU/TKEURB": "extrajudicial",
"EBGS/TRA/SRA": "extravagance",
"EBGS/TRA/SRA/TKPWAPB": "extravaganza",
"EBGS/TRA/SEPB": "extrasensory",
"EBGS/TRA/SEPB/SOR": "extrasensory",
"EBGS/TRA/SEPBS": "extrasensory",
"EBGS/TRA/SEPBS/O*R": "extrasensory",
"EBGS/TRA/TKAOEUT": "extraditable",
"EBGS/TRA/TREFT": "extraterrestrial",
"EBGS/TRA/TER/TOER": "extraterritoriality",
"EBGS/TRA/TER": "extraterrestrial",
"EBGS/TRA/TER/KWREU/TOER": "extraterritoriality",
"EBGS/TRA/TER/KWREU": "extraterritoriality",
"EBGS/TRA/TER/KWREU/TOR": "extraterritoriality",
"EBGS/TRA/TER/KWREU/TOR/KWREU": "extraterritoriality",
"EBGS/TRA/TER/KWRES/TREU": "extraterrestrial",
"EBGS/TRA/TER/KWRES": "extraterrestrial",
"EBGS/TRA/KRE/HRAOU": "extracellular",
"EBGS/TRA/KRE": "extracellular",
"EBGS/TRA/KREUBG": "extracurricular",
"EBGS/TRA/KUR/KWREU/KAOU": "extracurricular",
"EBGS/TRA/KUR/KWREU": "extracurricular",
"EBGS/TRA/KUR": "extracurricular",
"EBGS/TRA/KUR/KWREUBG": "extracurricular",
"EBGS/TRA/PHAOUR": "extramural",
"EBGS/TRA/PHAEUR": "extramarital",
"EBGS/TRA/PHAEUR/KWREU": "extramarital",
"EBGS/TRA/PO": "extrapolates",
"EBGS/TRA/POE": "extrapolates",
"EBGS/TRA/PEUR/KWRA/PHEU": "extrapyramidal",
"EBGS/TRA/PEUR/KWRA": "extrapyramidal",
"EBGS/TRA/PEUR": "extrapyramidal",
"EBGS/TRA/PEUR/KWRA/PHEUD": "extrapyramidal",
"EBGS/TRA/PEUR/PHEUD": "extrapyramidal",
"EBGS/TRA/HRAOE": "extralegal",
"EBGS/TRA/OR/TKEU": "extraordinarily",
"EBGS/TRA/OR": "extraordinarily",
"EBGS/TRA/ORD": "extraordinarily",
"EBGS/TRA/ORD/TPHAER": "extraordinariness",
"EBGS/TRA/OBG/KWRAOU": "extraocular",
"EBGS/TRA/OBG": "extraocular",
"EBGS/TRAOE/PHO": "extremophile",
"EBGS/TRAOE": "extremis",
"EBGS/TRAOE/PHOE": "extremophile",
"EBGS/TRAEUPB": "extraneous",
"EBGS/TRAF": "extravagance",
"EBGS/TRAF/TKPWAPB": "extravaganza",
"EBGS/TRAP": "extrapolates",
"EBGS/TRO": "extroverted",
"EBGS/TROE": "extrovert",
"EBGS/TROR/TKEU": "extraordinaire",
"EBGS/TROR": "extraordinaire",
"EBGS/TRORD": "extraordinarily",
"EBGS/TRE/PHEU": "extremities",
"EBGS/TRE": "extremis",
"EBGS/TREU": "extricate",
"EBGS/TREUPB": "extrinsic",
"EBGS/TREPL": "extremis",
"EBGS/TREPL/KWREU": "extremities",
"EBGS/TA": "ecstatic",
"EBGS/TAOER": "exteriority",
"EBGS/TAT": "ecstatically",
"EBGS/TAS": "ecstasy",
"EBGS/TOR": "extorsion",
"EBGS/TORGS/KWRAEUR": "extortionary",
"EBGS/TOBGS": "exotoxin",
"EBGS/T*EPL": "extemporaneous",
"EBGS/T*EPL/RAEU": "extemporaneous",
"EBGS/T*EPL/RAEUPB": "extemporaneous",
"EBGS/TE/TPHAOU": "extenuate",
"EBGS/TE": "extenuate",
"EBGS/TEUR": "extirpate",
"EBGS/TEUPBG": "extinguished",
"EBGS/TER": "exterminates",
"EBGS/TER/PHEU/TPHAEU": "exterminator",
"EBGS/TER/PHEU": "exterminates",
"EBGS/TERPB/KWRAL": "externalize",
"EBGS/TERPL/TPHAEU": "exterminator",
"EBGS/TERPL": "exterminates",
"EBGS/TEPB": "extenuate",
"EBGS/TEPBS": "extensibility",
"EBGS/TEPL/POR": "extempore",
"EBGS/TEPL": "extempore",
"EBGS/TEPL/POR/KWRAEU": "extemporaneous",
"EBGS/TEPL/POR/KWRAEUPB": "extemporaneous",
"EBGS/KPHAOUPB": "excommunicate",
"EBGS/KWEU/SEUFT": "exquisitely",
"EBGS/KWEU": "exquisite",
"EBGS/KHRA/PHA/TOR": "exclamatory",
"EBGS/KHRA/PHA": "exclamatory",
"EBGS/KHRA": "exclamation",
"EBGS/KHRAOU": "exclusives",
"EBGS/KHRAOUGS/KWRAEUR": "exclusionary",
"EBGS/KHRAOUS": "exclusives",
"EBGS/KHRAOUZ": "exclusio",
"EBGS/KHRAPL": "exclamation",
"EBGS/KRAOE": "excreta",
"EBGS/KRAOU/SHEU": "excruciate",
"EBGS/KRAOU": "excruciate",
"EBGS/KRAOURB": "excruciate",
"EBGS/KRE": "excrement",
"EBGS/KRE/TOR": "excretory",
"EBGS/KRES": "excrescence",
"EBGS/KA/SRAEU": "excavator",
"EBGS/KA": "excavated",
"EBGS/KAOU": "executory",
"EBGS/KAOU/TOR": "executory",
"EBGS/KO/PHAOU/TPHEU": "excommunicate",
"EBGS/KO/PHAOU": "excommunicate",
"EBGS/KO": "excommunicate",
"EBGS/KO/PHAOUPB": "excommunicate",
"EBGS/KOR": "excoriate",
"EBGS/KUR": "excursus",
"EBGS/KURS": "excursus",
"EBGS/KUL/PA": "exculpatory",
"EBGS/KUL": "exculpate",
"EBGS/KUL/PA/TOR": "exculpatory",
"EBGS/PHRA/TPHA/TOR": "explanatory",
"EBGS/PHRA/TPHA": "explanatory",
"EBGS/PHRA": "explanation",
"EBGS/PHRAOE": "expletives",
"EBGS/PHRAOET": "expletives",
"EBGS/PHRAEU": "explanation",
"EBGS/PHRAPB": "explanation",
"EBGS/PHRAPB/TOR": "explanatory",
"EBGS/PHROEU/TA": "exploitative",
"EBGS/PHROEU": "exploitative",
"EBGS/PHROEUT/KWRA": "exploitative",
"EBGS/PHROES": "explosives",
"EBGS/PHROR/KWRA": "explorative",
"EBGS/PHROR/KWRA/TOR": "exploratory",
"EBGS/PHROR/KWRAT": "explorative",
"EBGS/PHREU": "explicative",
"EBGS/PHREU/KA": "explicative",
"EBGS/PHREU/KAT": "explicative",
"EBGS/PHREUBG": "explicable",
"EBGS/PHREUS": "explicit",
"EBGS/PRA": "expiratory",
"EBGS/PRA/TOR": "expiratory",
"EBGS/PRO/PREU": "expropriate",
"EBGS/PRO": "expropriate",
"EBGS/PROE/PREU": "expropriate",
"EBGS/PROE": "expropriate",
"EBGS/PROERP": "expropriate",
"EBGS/PRORP": "expropriate",
"EBGS/PRE": "expressivity",
"EBGS/PA/TREU": "expatriate",
"EBGS/PA": "expatriate",
"EBGS/PAOE": "expiable",
"EBGS/PAOE/TKEU": "expeditious",
"EBGS/PAOE/TKEURB": "expeditious",
"EBGS/PAOER/KWREPB": "experiential",
"EBGS/PAOER": "experiences",
"EBGS/PAOERPB": "experiential",
"EBGS/PAOED/KWREPB": "expediency",
"EBGS/PAOED": "expedience",
"EBGS/PAEU/TREU": "expatriate",
"EBGS/PAEU": "expatriate",
"EBGS/PAEURT": "expatriate",
"EBGS/PAPB": "expansiveness",
"EBGS/PAT": "expatriate",
"EBGS/PO/SEU": "expository",
"EBGS/PO": "exponential",
"EBGS/PO/SEU/TOR": "expository",
"EBGS/PO/TPHEPB/SHEU": "exponentiation",
"EBGS/PO/TPHEPB": "exponential",
"EBGS/POE/TPHEPB/SHEU": "exponentiation",
"EBGS/POE/TPHEPB": "exponential",
"EBGS/POERB": "exposures",
"EBGS/POFT": "expostulate",
"EBGS/POR": "exportation",
"EBGS/POS/TAOU": "expostulate",
"EBGS/POS": "expostulate",
"EBGS/POS/TU": "expostulate",
"EBGS/POS/KWREU/TOR": "expository",
"EBGS/POS/KWREU": "expository",
"EBGS/POS/KHAOU": "expostulate",
"EBGS/POS/KHU": "expostulate",
"EBGS/PE": "expedition",
"EBGS/PE/TKEU": "expeditious",
"EBGS/PE/TKEURB": "expeditious",
"EBGS/PEU": "expiable",
"EBGS/PEU/KWRA": "expiatory",
"EBGS/PEU/KWRA/TOR": "expiatory",
"EBGS/PEUR": "expiration",
"EBGS/PEUR/KWRA": "expiratory",
"EBGS/PEUR/KWRA/TOR": "expiratory",
"EBGS/PER": "experiments",
"EBGS/PER/KWREU": "experimented",
"EBGS/PEPB": "expenditures",
"EBGS/PEPB/TKEU": "expenditures",
"EBGS/PEBG": "expectorate",
"EBGS/PEBG/TAPB": "expectancy",
"EBGS/PEBG/TAPBS": "expectancy",
"EBGS/PEBG/TOR": "expectorate",
"EBGS/PEBGT/KWRAPB": "expectancy",
"EBGS/PEBGT/O*R": "expectorate",
"EBGS/PUR": "expurgate",
"EBGS/HA": "exhalation",
"EBGS/HAOU": "exhumation",
"EBGS/HAEU": "exhalant",
"EBGS/HAUS": "exhaustive",
"EBGS/HAL": "exhalation",
"EBGS/HOR": "exhortation",
"EBGS/HEU": "exhilarant",
"EBGS/HEU/HREUR": "exhilarant",
"EBGS/HEUB": "exhibitor",
"EBGS/HEUL": "exhilarant",
"EBGZ": "eczema",
"EL/SRAEU": "elevator",
"EL/-PLT/KWRAEUR": "elementary",
"EGS": "editions",
"ET": "etravirine",
"ET/KWROL": "etiologies",
"ET/RA/SREUR": "etravirine",
"ET/RA": "etravirine",
"ES/STRO": "estrogens",
"ES/THE": "esthetics",
"ES/THET": "esthetically",
"ES/TRO/SKWRE": "estrogenic",
"ES/TRO": "estrogens",
"ES/TROE": "estrogen",
"ES/TREU": "estriol",
"ES/TAB": "establish",
"ES/TO": "estolate",
"ES/TEU/PHAEU": "estimator",
"ES/TEU": "estimate",
"ES/KHAOU/WAEUR": "estuary",
"ES/KA/TO/HRO/SKWREU": "eschatological",
"ES/KA/TO/HRO": "eschatological",
"ES/KA/TO": "eschatological",
"ES/KA/TO/HRO/SKWREUBG": "eschatological",
"ES/KA/TO/HROPBLG": "eschatological",
"ES/KAEU": "escapist",
"ES/KARP": "escarpment",
"ES/KUFP": "escutcheon",
"ES/PHRA": "esplanade",
"ES/PRE": "espresso",
"ES/PA": "espadrille",
"ES/POU": "espousal",
"ES/PEU/KWROPB": "espionage",
"ES/PERB": "especially",
"ES/PEL": "espalier",
"ED/TOR": "editorial",
"UR/SKWREPB": "urgency",
"UR/TPHAEUR": "urinary",
"UR/KWRAOE": "uremic",
"UR/KWRAOE/TER": "ureteral",
"UR/KWRAEU/TPHEU": "uranium",
"UR/KWRAEU": "uranium",
"UR/KWRAEUPB": "uranium",
"UR/KWRO/HRO": "urologic",
"UR/KWRE": "ureter",
"UR/KWREU/TPHAEUR": "urinary",
"UR/KWREU": "urinal",
"UR/KWRET": "ureteric",
"UR/PWA": "urbanism",
"URP/KHRAS": "upperclassmen",
"URPBD/STU": "understudy",
"URPBD/TKPWRA/SKWRAOU": "undergraduates",
"URPBD/TKPWRA": "undergraduates",
"URPBD/TKPWRAPBLG": "undergraduates",
"URPBD/TKPWRAD": "undergraduates",
"URPBD/TPHUR": "undernourish",
"URPBD/PWE": "underbelly",
"URPBD/PWEL": "underbelly",
"URPBD/PREU/SREU": "underprivileged",
"URPBD/PREU": "underprivileged",
"URPBD/PREUF": "underprivileged",
"URPBD/PEUPB": "underpinning",
"URPBD/WHEL": "underwhelming",
"URPBD/WEL": "underwhelm",
"URPBD/A": "underachieve",
"URPBD/EFT": "underestimate",
"URPBD/ES/TEU": "underestimate",
"URPBD/ES": "underestimate",
"URB": "ushers",
"URLT/SRAOEU/KWRO": "ultraviolet",
"URLT/SRAOEU": "ultraviolet",
"URLT/SRAOEU/KWROE": "ultraviolet",
"URLT/SO": "ultrasonic",
"URLT/PHAOEU/KROE": "ultramicroscope",
"URLT/PHAOEU": "ultramicroscope",
"URLT/PHAOEURBG": "ultramicroscope",
"URLT/PHAOEUBG/ROE": "ultramicroscope",
"URLT/PHAOEUBG": "ultramicroscope",
"UP/SKP*": "up-and-coming",
"UP/TO*": "up-to-date",
"UP/PHA*PB": "upmanship",
"UP/PHAPB": "upmanship",
"UP/HO*EL": "upholsters",
"UP/HO*ELS": "upholsters",
"UP/HOEL/STER": "upholsterer",
"UP/HOEL": "upholsterer",
"UP/HOELS/TER": "upholsterer",
"UP/HOELS": "upholsterer",
"UP/*ER/KHRA*S": "upperclassmen",
"UP/*ER/KHRAS": "upperclassmen",
"UPB/STRUBG": "unstructured",
"UPB/STRUBGT": "unstructured",
"UPB/STAOUGS": "unconstitutionality",
"UPB/STOP": "unstoppable",
"UPB/STED": "unsteady",
"UPB/SKWRAOU/HRA": "undulatory",
"UPB/SKWRAOU": "undulate",
"UPB/SKWRAOU/HRA/TOR": "undulatory",
"UPB/SKWRUFT/TPAOEU": "unjustifiable",
"UPB/SKWRUS/TEU/TPAOEU": "unjustifiable",
"UPB/SKWRUS/TEU": "unjustified",
"UPB/SKWRUS": "unjustified",
"UPB/SKRAOU/PU": "unscrupulous",
"UPB/SKRAOUP": "unscrupulous",
"UPB/SKRAPL": "unscrambled",
"UPB/SKE": "unscheduled",
"UPB/SPHAEUBG": "unmistakable",
"UPB/SPAOEBG": "unspeakable",
"UPB/SPOPBS": "unresponsive",
"UPB/SPE/SEU": "unspecific",
"UPB/SPE": "unspecific",
"UPB/SPES": "unspecified",
"UPB/SHAEUBG": "unshakable",
"UPB/SRAEUL": "unavailable",
"UPB/SRER": "unverified",
"UPB/SRER/KWREU": "unverified",
"UPB/SREL": "undevelopable",
"UPB/SA/TEUS": "unsatisfactory",
"UPB/SA": "unsatisfactory",
"UPB/SA/TEUS/TPABG": "unsatisfactory",
"UPB/SA/TEUS/TPABG/TOR": "unsatisfactory",
"UPB/SAOEU/KWREPB/TEU": "unscientific",
"UPB/SAOEU/KWREPB": "unscientific",
"UPB/SAOEU": "unscientific",
"UPB/SAOEUPB/TEU": "unscientific",
"UPB/SAOEUPB": "unscientific",
"UPB/SAOEUT": "unsightly",
"UPB/SAOEPL": "unseemly",
"UPB/SAOUT": "unsuitable",
"UPB/SA*EUFR": "unsavory",
"UPB/SAEU/SROR": "unsavory",
"UPB/SAEU": "unsavory",
"UPB/SAEUFR": "unsavory",
"UPB/SAT": "unsatisfying",
"UPB/SATS": "unsatisfactory",
"UPB/SATS/TPABG": "unsatisfactory",
"UPB/SATS/TPABG/TOR": "unsatisfactory",
"UPB/SAD": "unsaddle",
"UPB/SO/HREU": "unsolicited",
"UPB/SO": "unsolicited",
"UPB/SE": "unsecured",
"UPB/SEU/SREUL": "uncivilized",
"UPB/SEU": "unciform",
"UPB/SEUF": "uncivilized",
"UPB/SEUFL": "uncivilized",
"UPB/SEFL": "unselfish",
"UPB/SER": "unceremonious",
"UPB/SER/TEU": "uncertified",
"UPB/SER/KWRE/PHOE/TPHEU": "unceremonious",
"UPB/SER/KWRE/PHOE": "unceremonious",
"UPB/SER/KWRE": "unceremonious",
"UPB/SER/KWRE/PHOEPB": "unceremonious",
"UPB/SER/PHOEPB": "unceremonious",
"UPB/SERT": "uncertified",
"UPB/SEP": "unacceptable",
"UPB/SEPB/TEU/-PLT": "unsentimental",
"UPB/SEPB/TEU": "unsentimental",
"UPB/SEPB": "unsentimental",
"UPB/SEPB/TEUPLT": "unsentimental",
"UPB/SEPBT/-PLT": "unsentimental",
"UPB/SEPBT": "unsentimental",
"UPB/SUBG/SES": "unsuccessful",
"UPB/SUBG": "unsuccessful",
"UPB/TKPWHRA/PHOR": "unglamorous",
"UPB/TKPWHRA": "unglamorous",
"UPB/TKPWHRAPL": "unglamorous",
"UPB/TKPWRUPBLG": "ungrudging",
"UPB/TKPWOD": "ungodly",
"UPB/TKA": "undamaged",
"UPB/TKAOE/SAOEUR": "undesirable",
"UPB/TKAOE/TER": "undetermined",
"UPB/TKAOU/HRA": "undulatory",
"UPB/TKAOU/HRA/TOR": "undulatory",
"UPB/TKAOUL": "unduly",
"UPB/TKOUTD": "undoubtedly",
"UPB/TKE/SRE/HROP": "undevelopable",
"UPB/TKE/SRE": "undeveloped",
"UPB/TKE": "undetermined",
"UPB/TKE/SAOEU/TPER": "undecipherable",
"UPB/TKE/SAOEU": "undecipherable",
"UPB/TKE/SAOEUFR": "undecipherable",
"UPB/TKE/SAOEUR": "undesirable",
"UPB/TKE/TPHAOEU": "undeniable",
"UPB/TKE/TER": "undetermined",
"UPB/TKEUFRPB": "undifferentiate",
"UPB/TKEUFRPB/SHEU": "undifferentiate",
"UPB/TKEUS/TREU": "undistributed",
"UPB/TKEUS": "undiscover",
"UPB/TKER/STU": "understudy",
"UPB/TKER/TKPWRA/SKWRAOU": "undergraduates",
"UPB/TKER/TKPWRA": "undergraduates",
"UPB/TKER/TKPWRAPBLG": "undergraduates",
"UPB/TKER/TKPWRAD": "undergraduates",
"UPB/TKER/TPHUR": "undernourish",
"UPB/TKER/PWE": "underbelly",
"UPB/TKER/PWEL": "underbelly",
"UPB/TKER/PREU/SREU": "underprivileged",
"UPB/TKER/PREU": "underprivileged",
"UPB/TKER/PREUF": "underprivileged",
"UPB/TKER/PEUPB": "underpinning",
"UPB/TKER/WHEL": "underwhelming",
"UPB/TKER/WEL": "underwhelm",
"UPB/TKER/A": "underachieve",
"UPB/TKER/EFT": "underestimate",
"UPB/TKER/ES/TEU": "underestimate",
"UPB/TKER/ES": "underestimate",
"UPB/TPHA": "unnatural",
"UPB/TPHO": "unnoticeable",
"UPB/TPHO/TEUS": "unnoticeable",
"UPB/TPHOE": "unnoticeable",
"UPB/TPHOE/TEUS": "unnoticeable",
"UPB/TPHE/SE/SAEUR": "unnecessary",
"UPB/TPHE/SE": "unnecessary",
"UPB/TPHE": "unnecessary",
"UPB/TPHE/SE/SAR": "unnecessary",
"UPB/TPHUPL": "unnumbered",
"UPB/TPH-TS": "unnoticeable",
"UPB/TPREPBD": "unfriendly",
"UPB/TPA/PHEU/HREU/KWRAEUR": "unfamiliarity",
"UPB/TPA/PHEU/HREU": "unfamiliar",
"UPB/TPA/PHEU": "unfamiliar",
"UPB/TPA": "unfamiliar",
"UPB/TPA/PHEUL/KWRAEUR": "unfamiliarity",
"UPB/TPA/PHEUL": "unfamiliar",
"UPB/TPA*EUT": "unfaithful",
"UPB/TPAEU/SROR": "unfavorable",
"UPB/TPAEU": "unfavorable",
"UPB/TPAEUFR": "unfavorable",
"UPB/TPAUR/TKPWEUF": "unforgivable",
"UPB/TPAUR": "unforgettable",
"UPB/TPAUR/TKPWET": "unforgettable",
"UPB/TPAURG": "unforgivable",
"UPB/TPAPLT": "unfamiliarity",
"UPB/TPOER": "unforeseen",
"UPB/TPOR": "unfortunate",
"UPB/TPOR/TKPW*EUF": "unforgivable",
"UPB/TPOR/TKPW*ET": "unforgettable",
"UPB/TPOR/KHAOU": "unfortunate",
"UPB/TPOR/KHU": "unfortunate",
"UPB/TPORGT": "unforgettable",
"UPB/TPE": "unfettered",
"UPB/TPEU": "unfinished",
"UPB/TPUR": "unfurnished",
"UPB/THEU": "unthinkable",
"UPB/TRA": "untrammeled",
"UPB/TRAPL": "untrammel",
"UPB/TRUFT": "untrustworthy",
"UPB/TRUFT/WO*RT": "untrustworthy",
"UPB/TAOEUPL": "untimely",
"UPB/TAOU": "unintuitive",
"UPB/TEPB": "untenable",
"UPB/TELG": "unintelligible",
"UPB/KPHREUPLT": "uncomplimentary",
"UPB/KWRAOURB": "unusual",
"UPB/KWAU/HREU": "unqualified",
"UPB/KWAU": "unqualified",
"UPB/KWAUL": "unqualified",
"UPB/KWEUF": "unequivocal",
"UPB/KWEUFBG": "unequivocally",
"UPB/KWEPBGS": "unconventional",
"UPB/KWEGS": "unquestioned",
"UPB/KHROG": "unclogging",
"UPB/KHAEUR/KWRABG/TE/REUS": "uncharacteristic",
"UPB/KHAEUR/KWRABG/TE": "uncharacteristic",
"UPB/KHAEUR/KWRABG": "uncharacteristic",
"UPB/KHAEUR": "uncharacteristic",
"UPB/KHAEUR/KWRABG/TER": "uncharacteristic",
"UPB/KHAEUR/KWRABG/TER/KWREUS": "uncharacteristic",
"UPB/KHAEURBG/TER": "uncharacteristic",
"UPB/KHAEURBG": "uncharacteristic",
"UPB/KRAR": "uncharacteristic",
"UPB/KROEL": "uncontrollable",
"UPB/KRER": "unceremonious",
"UPB/KRER/TEU": "uncertified",
"UPB/KRER/KWRE/PHOE/TPHEU": "unceremonious",
"UPB/KRER/KWRE/PHOE": "unceremonious",
"UPB/KRER/KWRE": "unceremonious",
"UPB/KRER/KWRE/PHOEPB": "unceremonious",
"UPB/KRER/PHOEPB": "unceremonious",
"UPB/KRERT": "uncertified",
"UPB/KAORP": "uncooperative",
"UPB/KAORPT": "uncooperative",
"UPB/KAEUR/KWRABG/TE/REUS": "uncharacteristic",
"UPB/KAEUR/KWRABG/TE": "uncharacteristic",
"UPB/KAEUR/KWRABG": "uncharacteristic",
"UPB/KAEUR": "uncharacteristic",
"UPB/KAEUR/KWRABG/TER": "uncharacteristic",
"UPB/KAEUR/KWRABG/TER/KWREUS": "uncharacteristic",
"UPB/KAEURBG/TER": "uncharacteristic",
"UPB/KAEURBG": "uncharacteristic",
"UPB/KAPB/KWREU": "uncannily",
"UPB/KAPB": "uncannily",
"UPB/KAL/SEU": "uncalcified",
"UPB/KAL": "uncalcified",
"UPB/KALS": "uncalcified",
"UPB/KO": "uncommon",
"UPB/KO*PL/HREU/PHEPB/TAEUR": "uncomplimentary",
"UPB/KO*PL/HREU/PHEPB": "uncomplimentary",
"UPB/KO*PL/HREU": "uncomplimentary",
"UPB/KO*PL": "uncomplimentary",
"UPB/KO*PL/HREU/-PLT": "uncomplimentary",
"UPB/KOE/O/PER/KWRA": "uncooperative",
"UPB/KOE/O/PER": "uncooperative",
"UPB/KOE/O": "uncooperative",
"UPB/KOE": "uncooperative",
"UPB/KOE/O/PER/KWRAEU": "uncooperative",
"UPB/KOE/O/PER/KWRAEUT": "uncooperative",
"UPB/KOE/O/PER/KWRAT": "uncooperative",
"UPB/KOUPBT": "uncountable",
"UPB/KOPB/STAOUGS/KWRAL": "unconstitutionality",
"UPB/KOPB/STAOUGS": "unconstitutionality",
"UPB/KOPB": "unconscious",
"UPB/KOPB/STEU/TAOUGS": "unconstitutionality",
"UPB/KOPB/STEU": "unconstitutionality",
"UPB/KOPB/SHEU": "unconscious",
"UPB/KOPB/SREPBGS": "unconventional",
"UPB/KOPB/TRA": "uncontradicted",
"UPB/KOPB/TROEL": "uncontrollable",
"UPB/KOPBG": "unconquer",
"UPB/KOPBGS": "unconscionable",
"UPB/KOPBS/TAOUGS": "unconstitutionality",
"UPB/KOPBS": "unconstitutionality",
"UPB/KOPBS/TEU/TAOUGS": "unconstitutionality",
"UPB/KOPBS/TEU": "unconstitutionality",
"UPB/KOPL/TPORT": "uncomfortable",
"UPB/KOPL": "uncomplimentary",
"UPB/KOPL/PHREU/PHEPB/TAEUR": "uncomplimentary",
"UPB/KOPL/PHREU/PHEPB": "uncomplimentary",
"UPB/KOPL/PHREU": "uncomplimentary",
"UPB/KOPL/PHREU/-PLT": "uncomplimentary",
"UPB/K-T": "unaccountable",
"UPB/PWHRAO*EF": "unbelievably",
"UPB/PWHRAOEF": "unbelievably",
"UPB/PWHRAOEFBL": "unbelievably",
"UPB/PWA/HRAPBS": "unbalanced",
"UPB/PWA": "unbalanced",
"UPB/PWAOEU": "unbiased",
"UPB/PWAOEU/KWRAS": "unbiased",
"UPB/PWAER": "unbearable",
"UPB/PWAET": "unbeatable",
"UPB/PWE": "unbelievable",
"UPB/PWE/HRAO*EF/-BL": "unbelievably",
"UPB/PWE/HRAO*EF": "unbelievably",
"UPB/PWE/HRAOEF": "unbelievable",
"UPB/PWU": "unbutton",
"UPB/PWUPBD": "unbundling",
"UPB/PWUBG": "unbuckles",
"UPB/PWUT": "unbutton",
"UPB/PHRE": "unpleasant",
"UPB/PHAEUR": "unmarried",
"UPB/PHAERPB": "unmannerly",
"UPB/PHAPB/*ER": "unmannerly",
"UPB/PHAPB": "unmannerly",
"UPB/PHO/TKEU": "unmodified",
"UPB/PHO": "unmodified",
"UPB/PHOD": "unmodified",
"UPB/PHEUS/TAEUBG": "unmistakable",
"UPB/PHEUS": "unmistakable",
"UPB/PHEPBGS": "unmentionables",
"UPB/PRAOE/TKEUBGT": "unpredictable",
"UPB/PRAOE": "unprepared",
"UPB/PRO": "unprotected",
"UPB/PRO/TKUBG": "unproductive",
"UPB/PRO/TKUBGT": "unproductive",
"UPB/PRO/TPEUT": "unprofitable",
"UPB/PRO/TPEGS": "unprofessional",
"UPB/PROE": "unprotected",
"UPB/PROE/TKUBG": "unproductive",
"UPB/PROE/TKUBGT": "unproductive",
"UPB/PROE/TPEGS": "unprofessional",
"UPB/PROFT": "unprofitable",
"UPB/PRE/SE": "unprecedented",
"UPB/PRE": "unprepared",
"UPB/PRE/TKEUBGT": "unpredictable",
"UPB/PREUBGT": "unpredictable",
"UPB/PRES": "unprecedented",
"UPB/PRUBGT": "unproductive",
"UPB/PA/HRAT": "unpalatable",
"UPB/PA": "unpalatable",
"UPB/PA*R": "unparalleled",
"UPB/PAEU/TREU/KWRO": "unpatriotic",
"UPB/PAEU/TREU": "unpatriotic",
"UPB/PAEU": "unpatriotic",
"UPB/PAEUR/KWRA": "unparalleled",
"UPB/PAEUR": "unparalleled",
"UPB/PAEURT/KWRO": "unpatriotic",
"UPB/PAEURT": "unpatriotic",
"UPB/PALT": "unpalatable",
"UPB/WAOELD": "unwieldy",
"UPB/WO*RT": "unworthy",
"UPB/WEUGT": "unwittingly",
"UPB/WEL": "unwelcome",
"UPB/HRAU": "unlawful",
"UPB/HRE": "unleavened",
"UPB/HREUPLTD": "unlimitedly",
"UPB/HRUBG": "unlucky",
"UPB/HAP": "unhappy",
"UPB/H*ELT": "unhealthful",
"UPB/RA": "unraveled",
"UPB/RAOE": "unresponsive",
"UPB/RAOE/SPOPB": "unresponsive",
"UPB/RAOE/SPOPBS": "unresponsive",
"UPB/RAOEU": "unrivaled",
"UPB/RAOEFPB": "unreasonable",
"UPB/RAOES": "unrestrained",
"UPB/RAOUL": "unruliness",
"UPB/RE": "unreliable",
"UPB/RE/SPOPB": "unresponsive",
"UPB/RE/SPOPBS": "unresponsive",
"UPB/RE/KOG": "unrecognizable",
"UPB/RE/KOG/TPHAOEUZ": "unrecognizable",
"UPB/RE/PRAOE/SEPB/TA": "unrepresentative",
"UPB/RE/PRAOE/SEPB": "unrepresentative",
"UPB/RE/PRAOE": "unrepresentative",
"UPB/RE/PRAOE/SEPBT": "unrepresentative",
"UPB/RE/PRE/SEPB/TA": "unrepresentative",
"UPB/RE/PRE/SEPB": "unrepresentative",
"UPB/RE/PRE": "unrepresentative",
"UPB/RE/PRE/SEPBT": "unrepresentative",
"UPB/RE/HRAOEU": "unreliable",
"UPB/REPT": "unrepresentative",
"UPB/REBG": "unrecognizable",
"UPB/REBG/TPHAOEUZ": "unrecognizable",
"UPB/RES": "unrestrained",
"UPB/RED": "unready",
"UPB/REZ": "unrecognized",
"UPB/R-PB": "unreasonable",
"UPB/A": "unaware",
"UPB/A/SRAEU": "unavailability",
"UPB/A/SRAEUL": "unavailable",
"UPB/A/SROEUD": "unavoidable",
"UPB/A/THOR": "unauthorized",
"UPB/A/KOUPBT": "unaccountable",
"UPB/A/KUS": "unaccustomed",
"UPB/A/PROEFP": "unapproachable",
"UPB/A/PE": "unappetizing",
"UPB/A/PE/TAOEUZ": "unappetizing",
"UPB/AOE": "unequivocally",
"UPB/AOE/SREPBT": "uneventfully",
"UPB/AOE/SREPBT/-FL": "uneventfully",
"UPB/AOE/SEPB": "unessential",
"UPB/AOE/KWEU/SRO": "unequivocal",
"UPB/AOE/KWEU": "unequivocal",
"UPB/AOE/KWEU/SROE": "unequivocal",
"UPB/AOE/KWEUF": "unequivocal",
"UPB/AOE/KWEUFBG": "unequivocally",
"UPB/AOEU/KWROPB": "unionize",
"UPB/AOEU": "unionize",
"UPB/AOEUPB": "unionize",
"UPB/AOEFPBT": "uneventfully",
"UPB/AOEFPBT/-FL": "uneventfully",
"UPB/AOU/TEU": "unutilized",
"UPB/AOU": "unutilized",
"UPB/AOUT": "unutilized",
"UPB/A*UT": "unauthorized",
"UPB/AEURPBS": "unanswerable",
"UPB/AU": "unauthorized",
"UPB/AU/THOR": "unauthorized",
"UPB/AUTD": "unaudited",
"UPB/AP": "unappetizing",
"UPB/AP/TAOEUZ": "unappetizing",
"UPB/APB/SER": "unanswerable",
"UPB/APB": "unanswerable",
"UPB/APL/PWEU/TKPWAOU": "unambiguous",
"UPB/APL/PWEU": "unambiguous",
"UPB/APL": "unambiguous",
"UPB/APL/PWEUG": "unambiguous",
"UPB/ABG/SEPT": "unacceptable",
"UPB/ABG": "unacceptable",
"UPB/AL/TER": "unalterable",
"UPB/AL": "unalterable",
"UPB/ALT": "unalterable",
"UPB/O": "unofficial",
"UPB/O*EUPB": "unionize",
"UPB/O*RT": "unorthodox",
"UPB/OE": "unopened",
"UPB/OR/TKPWA": "unorganized",
"UPB/OR": "unorthodox",
"UPB/OR/TKPWAPB": "unorganized",
"UPB/OR/THO": "unorthodox",
"UPB/OR/THOE": "unorthodox",
"UPB/ORG": "unorganized",
"UPB/OB/TRAOU": "unobtrusively",
"UPB/OB": "unobtrusively",
"UPB/OB/TRAOUS": "unobtrusively",
"UPB/OBG/KWRAOU": "unoccupied",
"UPB/OBG": "unoccupied",
"UPB/*ERT": "unearthly",
"UPB/*ET/KWREU": "unethical",
"UPB/*ET": "unethical",
"UPB/E/SREPBT": "uneventful",
"UPB/E": "unequivocally",
"UPB/E/SEPB": "unessential",
"UPB/E/KWEU/SRO": "unequivocal",
"UPB/E/KWEU": "unequivocal",
"UPB/E/KWEU/SROE": "unequivocal",
"UPB/E/KWEUF": "unequivocal",
"UPB/E/KWEUFBG": "unequivocally",
"UPB/EUPB": "uninhabitable",
"UPB/EUPB/TE/HREUPBLG": "unintelligible",
"UPB/EUPB/TE": "unintelligible",
"UPB/EUPB/TER": "uninterested",
"UPB/EUPB/TELG": "unintelligible",
"UPB/EUPB/HA/PWEUT": "uninhabitable",
"UPB/EUPB/HA": "uninhabitable",
"UPB/EUPB/HABT": "uninhabitable",
"UPB/EUPL": "unimportant",
"UPB/EUPL/POR": "unimportant",
"UPB/EFPBT": "uneventful",
"UPB/EPB/TPORS": "unenforceable",
"UPB/EPB": "unenlightened",
"UPB/EPB/HRAOEUT": "unenlightened",
"UPB/EPL/PHROEU": "unemployment",
"UPB/EPL": "unemployed",
"UPB/EBG": "unexpected",
"UPB/EBGS": "unexpected",
"UPB/ETD": "uneditable",
"UPBG": "uncles",
"UPBG/HRA": "undulatory",
"UPBG/HRA/TOR": "undulatory",
"UPBD/*ES/TEU": "underestimate",
"UPBD/*ES": "underestimate",
"UPL/PWRE": "umbrellas",
"UPL/PWEU/HREU": "umbilicus",
"UPL/PWEU": "umbilicus",
"UPL/PWEUL": "umbilicus",
"UBG/SOR/KWREU": "uxoricide",
"UBGS": "uxorious",
"UL/SER/KWRA": "ulcerative",
"UL/SER/KWREU": "ulceritic",
"UL/TPHAEUR": "ulnaris",
"UL/TRA/SRAOEU/KWRO": "ultraviolet",
"UL/TRA/SRAOEU": "ultraviolet",
"UL/TRA/SRAOEU/KWROE": "ultraviolet",
"UL/TRA/SO": "ultrasonic",
"UL/TAOER": "ulterior",
"UL/TEU": "ultimo",
"UL/TEU/PHAEU": "ultimatum",
"ULT/PHAEU": "ultimatum",
"ULT/RA/SO": "ultrasonic",
"ULS/RA": "ulcerative",
"ULS": "ulcerous",
"ULS/REU": "ulceritic"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment