Simulated Google Synonyms - Basic synonyms - Synonyms database
<script>
// Synonyms Database
const synonymsDB = {
'quick': ['fast', 'rapid', 'swift', 'speedy', 'hasty', 'prompt', 'express', 'fleet'],
'brown': ['chocolate', 'umber', 'tan', 'sienna', 'copper', 'bronze', 'mahogany'],
'fox': ['canine', 'vulpine', 'predator', 'mammal', 'animal', 'creature'],
'jumps': ['leaps', 'hops', 'bounds', 'springs', 'vaults', 'dashes'],
'over': ['above', 'across', 'beyond', 'past', 'through'],
'lazy': ['idle', 'slothful', 'indolent', 'lethargic', 'inactive', 'sluggish'],
'dog': ['canine', 'hound', 'pooch', 'pup', 'mutt', 'best friend'],
'the': ['a', 'an', 'one', 'this', 'that'],
'beautiful': ['gorgeous', 'stunning', 'attractive', 'lovely', 'pretty', 'handsome'],
'important': ['crucial', 'vital', 'essential', 'significant', 'critical', 'key'],
'help': ['assist', 'aid', 'support', 'guide', 'facilitate', 'enable'],
'create': ['make', 'produce', 'generate', 'develop', 'build', 'design'],
'analyze': ['examine', 'evaluate', 'assess', 'review', 'inspect', 'study'],
'improve': ['enhance', 'better', 'upgrade', 'refine', 'optimize', 'boost'],
'check': ['verify', 'examine', 'inspect', 'validate', 'confirm', 'review'],
'content': ['text', 'material', 'information', 'data', 'substance', 'matter'],
'quality': ['standard', 'caliber', 'grade', 'level', 'excellence', 'superiority'],
'unique': ['distinctive', 'original', 'special', 'individual', 'particular', 'exclusive'],
'system': ['framework', 'structure', 'mechanism', 'process', 'method', 'approach'],
'technology': ['innovation', 'tech', 'advancement', 'solution', 'tool', 'application'],
'service': ['offering', 'solution', 'facility', 'provision', 'assistance', 'support'],
'professional': ['expert', 'specialist', 'skilled', 'qualified', 'trained', 'experienced'],
'efficient': ['effective', 'productive', 'streamlined', 'optimized', 'smooth', 'quick'],
'secure': ['safe', 'protected', 'guarded', 'shielded', 'defended', 'encrypted'],
'smart': ['intelligent', 'clever', 'wise', 'bright', 'sharp', 'astute'],
'easy': ['simple', 'straightforward', 'effortless', 'uncomplicated', 'basic', 'clear'],
'fast': ['quick', 'rapid', 'swift', 'speedy', 'hasty', 'prompt'],
'better': ['improved', 'enhanced', 'superior', 'advanced', 'upgraded', 'refined'],
'best': ['top', 'finest', 'superior', 'excellent', 'outstanding', 'premium'],
'new': ['fresh', 'novel', 'recent', 'modern', 'latest', 'current'],
'free': ['complimentary', 'no-cost', 'gratis', 'without charge', 'unpaid', 'liberated'],
'online': ['digital', 'web-based', 'internet', 'virtual', 'cyber', 'networked'],
'real': ['actual', 'genuine', 'authentic', 'true', 'legitimate', 'verifiable'],
'time': ['period', 'duration', 'moment', 'instance', 'occasion', 'interval'],
'world': ['global', 'international', 'worldwide', 'universal', 'planetary', 'earth'],
'data': ['information', 'facts', 'figures', 'statistics', 'details', 'records'],
'user': ['customer', 'client', 'visitor', 'participant', 'consumer', 'subscriber'],
'experience': ['encounter', 'interaction', 'engagement', 'involvement', 'participation', 'exposure'],
'result': ['outcome', 'consequence', 'effect', 'output', 'product', 'achievement'],
'success': ['achievement', 'triumph', 'victory', 'accomplishment', 'attainment', 'fulfillment'],
'team': ['group', 'crew', 'squad', 'staff', 'personnel', 'workforce'],
'work': ['job', 'task', 'project', 'assignment', 'duty', 'responsibility'],
'life': ['existence', 'being', 'living', 'lifetime', 'duration', 'animation'],
'love': ['affection', 'adoration', 'devotion', 'passion', 'fondness', 'care'],
'happy': ['joyful', 'cheerful', 'delighted', 'pleased', 'content', 'satisfied'],
'sad': ['unhappy', 'sorrowful', 'miserable', 'depressed', 'gloomy', 'downcast'],
'good': ['excellent', 'fine', 'superior', 'quality', 'positive', 'favorable'],
'bad': ['poor', 'terrible', 'awful', 'inferior', 'negative', 'unfavorable'],
'big': ['large', 'huge', 'enormous', 'massive', 'giant', 'substantial'],
'small': ['tiny', 'little', 'miniature', 'compact', 'petite', 'minor'],
'hot': ['warm', 'heated', 'boiling', 'scorching', 'burning', 'fiery'],
'cold': ['chilly', 'cool', 'freezing', 'icy', 'frigid', 'frosty'],
'up': ['above', 'higher', 'elevated', 'raised', 'upward', 'ascending'],
'down': ['below', 'lower', 'depressed', 'dropped', 'downward', 'descending'],
'in': ['inside', 'within', 'into', 'enclosed', 'contained', 'included'],
'out': ['outside', 'exterior', 'exit', 'depart', 'leave', 'emerge'],
'on': ['upon', 'above', 'atop', 'resting', 'situated', 'positioned'],
'off': ['away', 'removed', 'disconnected', 'inactive', 'separated', 'detached'],
'yes': ['affirmative', 'positive', 'certainly', 'absolutely', 'definitely', 'indeed'],
'no': ['negative', 'never', 'not at all', 'absolutely not', 'under no circumstances', 'by no means'],
'maybe': ['perhaps', 'possibly', 'potentially', 'conceivably', 'perchance', 'could be'],
'always': ['forever', 'constantly', 'continually', 'eternally', 'perpetually', 'consistently'],
'never': ['not ever', 'at no time', 'never again', 'absolutely not', 'under no circumstances', 'not at all'],
'sometimes': ['occasionally', 'periodically', 'intermittently', 'now and then', 'from time to time', 'at times'],
'now': ['currently', 'presently', 'at this moment', 'right now', 'immediately', 'at once'],
'then': ['subsequently', 'afterward', 'next', 'following that', 'later', 'afterwards'],
'here': ['in this place', 'at this location', 'present', 'on site', 'at hand', 'available'],
'there': ['in that place', 'at that location', 'present', 'on site', 'available', 'yonder'],
'where': ['in what place', 'at what location', 'whereabouts', 'position', 'site', 'venue'],
'when': ['at what time', 'on what occasion', 'during what period', 'time', 'moment', 'occasion'],
'why': ['for what reason', 'for what cause', 'purpose', 'motive', 'rationale', 'justification'],
'how': ['in what way', 'by what means', 'method', 'approach', 'technique', 'procedure'],
'what': ['which thing', 'that which', 'the thing that', 'whatever', 'anything that', 'all that'],
'who': ['which person', 'what person', 'the person that', 'whoever', 'anyone that', 'the one that'],
'which': ['what one', 'what particular', 'whichever', 'whatever', 'any that', 'the one that'],
'can': ['able to', 'capable of', 'have the ability to', 'be in a position to', 'be allowed to', 'may'],
'will': ['shall', 'going to', 'intend to', 'plan to', 'are determined to', 'are about to'],
'should': ['ought to', 'must', 'need to', 'supposed to', 'expected to', 'advised to'],
'could': ['would be able to', 'might', 'may', 'would', 'it is possible to', 'it is conceivable'],
'would': ['will', 'shall', 'could', 'might', 'used to', 'was inclined to'],
'may': ['might', 'could', 'can', 'it is possible', 'perhaps', 'possibly'],
'might': ['may', 'could', 'can', 'perhaps', 'possibly', 'conceivably'],
'must': ['have to', 'need to', 'required to', 'obliged to', 'compelled to', 'necessary'],
'shall': ['will', 'must', 'should', 'ought to', 'is required to', 'is expected to'],
'do': ['perform', 'execute', 'accomplish', 'carry out', 'achieve', 'complete'],
'does': ['accomplishes', 'achieves', 'performs', 'executes', 'carries out', 'completes'],
'did': ['accomplished', 'achieved', 'performed', 'executed', 'carried out', 'completed'],
'done': ['completed', 'finished', 'accomplished', 'achieved', 'executed', 'performed'],
'make': ['create', 'produce', 'generate', 'construct', 'build', 'manufacture'],
'made': ['created', 'produced', 'generated', 'constructed', 'built', 'manufactured'],
'take': ['get', 'obtain', 'acquire', 'receive', 'gain', 'secure'],
'took': ['got', 'obtained', 'acquired', 'received', 'gained', 'secured'],
'taken': ['got', 'obtained', 'acquired', 'received', 'gained', 'secured'],
'come': ['arrive', 'approach', 'reach', 'enter', 'appear', 'show up'],
'came': ['arrived', 'approached', 'reached', 'entered', 'appeared', 'showed up'],
'go': ['move', 'travel', 'proceed', 'advance', 'journey', 'head'],
'went': ['moved', 'traveled', 'proceeded', 'advanced', 'journeyed', 'headed'],
'gone': ['departed', 'left', 'moved away', 'traveled away', 'proceeded', 'advanced'],
'see': ['observe', 'notice', 'perceive', 'spot', 'detect', 'discern'],
'saw': ['observed', 'noticed', 'perceived', 'spotted', 'detected', 'discerned'],
'seen': ['observed', 'noticed', 'perceived', 'spotted', 'detected', 'discerned'],
'know': ['understand', 'comprehend', 'realize', 'recognize', 'be aware of', 'be familiar with'],
'knew': ['understood', 'comprehended', 'realized', 'recognized', 'was aware of', 'was familiar with'],
'known': ['understood', 'comprehended', 'realized', 'recognized', 'aware of', 'familiar with'],
'get': ['obtain', 'acquire', 'receive', 'gain', 'secure', 'attain'],
'got': ['obtained', 'acquired', 'received', 'gained', 'secured', 'attained'],
'gotten': ['obtained', 'acquired', 'received', 'gained', 'secured', 'attained'],
'give': ['provide', 'offer', 'present', 'grant', 'bestow', 'supply'],
'gave': ['provided', 'offered', 'presented', 'granted', 'bestowed', 'supplied'],
'given': ['provided', 'offered', 'presented', 'granted', 'bestowed', 'supplied'],
'think': ['believe', 'consider', 'suppose', 'reckon', 'feel', 'judge'],
'thought': ['believed', 'considered', 'supposed', 'reckoned', 'felt', 'judged'],
'say': ['state', 'express', 'declare', 'announce', 'mention', 'communicate'],
'said': ['stated', 'expressed', 'declared', 'announced', 'mentioned', 'communicated'],
'tell': ['inform', 'communicate', 'reveal', 'disclose', 'explain', 'narrate'],
'told': ['informed', 'communicated', 'revealed', 'disclosed', 'explained', 'narrated'],
'ask': ['inquire', 'question', 'query', 'request', 'demand', 'seek'],
'asked': ['inquired', 'questioned', 'queried', 'requested', 'demanded', 'sought'],
'work': ['labor', 'toil', 'effort', 'endeavor', 'strive', 'perform'],
'worked': ['labored', 'toiled', 'efforted', 'endeavored', 'strived', 'performed'],
'seem': ['appear', 'look', 'feel', 'sound', 'come across as', 'give the impression'],
'seemed': ['appeared', 'looked', 'felt', 'sounded', 'came across as', 'gave the impression'],
'look': ['see', 'view', 'observe', 'watch', 'gaze', 'stare'],
'looked': ['saw', 'viewed', 'observed', 'watched', 'gazed', 'stared'],
'become': ['turn into', 'grow into', 'develop into', 'transform into', 'change into', 'evolve into'],
'became': ['turned into', 'grew into', 'developed into', 'transformed into', 'changed into', 'evolved into'],
'leave': ['depart', 'exit', 'go away', 'quit', 'abandon', 'desert'],
'left': ['departed', 'exited', 'went away', 'quit', 'abandoned', 'deserted'],
'call': ['telephone', 'phone', 'contact', 'reach', 'summon', 'invite'],
'called': ['telephoned', 'phoned', 'contacted', 'reached', 'summoned', 'invited'],
'try': ['attempt', 'endeavor', 'strive', 'make an effort', 'undertake', 'test'],
'tried': ['attempted', 'endeavored', 'strived', 'made an effort', 'undertook', 'tested'],
'find': ['discover', 'locate', 'uncover', 'encounter', 'come across', 'detect'],
'found': ['discovered', 'located', 'uncovered', 'encountered', 'came across', 'detected'],
'feel': ['sense', 'perceive', 'experience', 'undergo', 'endure', 'suffer'],
'felt': ['sensed', 'perceived', 'experienced', 'underwent', 'endured', 'suffered'],
'bring': ['carry', 'take', 'transport', 'convey', 'deliver', 'fetch'],
'brought': ['carried', 'took', 'transported', 'conveyed', 'delivered', 'fetched'],
'begin': ['start', 'commence', 'initiate', 'launch', 'kick off', 'get underway'],
'began': ['started', 'commenced', 'initiated', 'launched', 'kicked off', 'got underway'],
'keep': ['retain', 'maintain', 'preserve', 'hold', 'store', 'save'],
'kept': ['retained', 'maintained', 'preserved', 'held', 'stored', 'saved'],
'hold': ['grasp', 'grip', 'clutch', 'carry', 'possess', 'contain'],
'held': ['grasped', 'gripped', 'clutched', 'carried', 'possessed', 'contained'],
'write': ['compose', 'pen', 'author', 'draft', 'create', 'record'],
'wrote': ['composed', 'penned', 'authored', 'drafted', 'created', 'recorded'],
'written': ['composed', 'penned', 'authored', 'drafted', 'created', 'recorded'],
'stand': ['rise', 'be upright', 'remain', 'endure', 'withstand', 'tolerate'],
'stood': ['rose', 'was upright', 'remained', 'endured', 'withstood', 'tolerated'],
'hear': ['listen', 'perceive sound', 'detect sound', 'receive sound', 'catch sound', 'register sound'],
'heard': ['listened', 'perceived sound', 'detected sound', 'received sound', 'caught sound', 'registered sound'],
'let': ['allow', 'permit', 'enable', 'authorize', 'grant', 'give permission'],
'letting': ['allowing', 'permitting', 'enabling', 'authorizing', 'granting', 'giving permission'],
'put': ['place', 'set', 'position', 'locate', 'situate', 'deposit'],
'putting': ['placing', 'setting', 'positioning', 'locating', 'situating', 'depositing'],
'become': ['turn into', 'grow into', 'develop into', 'transform into', 'change into', 'evolve into'],
'becoming': ['turning into', 'growing into', 'developing into', 'transforming into', 'changing into', 'evolving into'],
'run': ['jog', 'sprint', 'dash', 'race', 'hurry', 'scamper'],
'running': ['jogging', 'sprinting', 'dashing', 'racing', 'hurrying', 'scampering'],
'eat': ['consume', 'devour', 'ingest', 'partake of', 'dine on', 'feast on'],
'eating': ['consuming', 'devouring', 'ingesting', 'partaking of', 'dining on', 'feasting on'],
'sleep': ['rest', 'slumber', 'doze', 'nap', 'hibernate', 'repose'],
'sleeping': ['resting', 'slumbering', 'dozing', 'napping', 'hibernating', 'reposing'],
'drink': ['consume liquid', 'sip', 'guzzle', 'imbibe', 'quaff', 'swallow'],
'drinking': ['consuming liquid', 'sipping', 'guzzling', 'imbibing', 'quaffing', 'swallowing'],
'play': ['have fun', 'amuse oneself', 'recreate', 'entertain oneself', 'enjoy oneself', 'frolic'],
'playing': ['having fun', 'amusing oneself', 'recreating', 'entertaining oneself', 'enjoying oneself', 'frolicking'],
'learn': ['study', 'acquire knowledge', 'gain knowledge', 'master', 'grasp', 'comprehend'],
'learning': ['studying', 'acquiring knowledge', 'gaining knowledge', 'mastering', 'grasping', 'comprehending'],
'teach': ['instruct', 'educate', 'train', 'coach', 'guide', 'mentor'],
'teaching': ['instructing', 'educating', 'training', 'coaching', 'guiding', 'mentoring'],
'read': ['peruse', 'scan', 'study', 'examine', 'review', 'browse'],
'reading': ['perusing', 'scanning', 'studying', 'examining', 'reviewing', 'browsing'],
'sing': ['vocalize', 'chant', 'carol', 'croon', 'serenade', 'perform vocally'],
'singing': ['vocalizing', 'chanting', 'caroling', 'crooning', 'serenading', 'performing vocally'],
'dance': ['move rhythmically', 'sway', 'twirl', 'gyrate', 'prance', 'skip'],
'dancing': ['moving rhythmically', 'swaying', 'twirling', 'gyrating', 'prancing', 'skipping'],
'fight': ['battle', 'combat', 'struggle', 'clash', 'contend', 'dispute'],
'fighting': ['battling', 'combating', 'struggling', 'clashing', 'contending', 'disputing'],
'laugh': ['chuckle', 'giggle', 'snicker', 'guffaw', 'cackle', 'titter'],
'laughing': ['chuckling', 'giggling', 'snickering', 'guffawing', 'cackling', 'tittering'],
'cry': ['weep', 'sob', 'wail', 'bawl', 'blubber', 'lament'],
'crying': ['weeping', 'sobbing', 'wailing', 'bawling', 'blubbering', 'lamenting'],
'talk': ['speak', 'converse', 'chat', 'discuss', 'communicate', 'dialogue'],
'talking': ['speaking', 'conversing', 'chatting', 'discussing', 'communicating', 'dialoguing'],
'walk': ['stroll', 'stride', 'march', 'pace', 'trudge', 'saunter'],
'walking': ['strolling', 'striding', 'marching', 'pacing', 'trudging', 'sauntering'],
'swim': ['bathe', 'paddle', 'dip', 'plunge', 'dive', 'float'],
'swimming': ['bathing', 'paddling', 'dipping', 'plunging', 'diving', 'floating'],
'fly': ['soar', 'glide', 'float', 'hover', 'flit', 'flutter'],
'flying': ['soaring', 'gliding', 'floating', 'hovering', 'flitting', 'fluttering'],
'drive': ['operate a vehicle', 'pilot', 'steer', 'navigate', 'guide', 'direct'],
'driving': ['operating a vehicle', 'piloting', 'steering', 'navigating', 'guiding', 'directing'],
'ride': ['travel', 'journey', 'go', 'move', 'be transported', 'sit on'],
'riding': ['traveling', 'journeying', 'going', 'moving', 'being transported', 'sitting on'],
'buy': ['purchase', 'acquire', 'obtain', 'procure', 'get', 'secure'],
'buying': ['purchasing', 'acquiring', 'obtaining', 'procuring', 'getting', 'securing'],
'sell': ['market', 'offer for sale', 'vend', 'dispose of', 'trade', 'exchange'],
'selling': ['marketing', 'offering for sale', 'vending', 'disposing of', 'trading', 'exchanging'],
'open': ['uncover', 'reveal', 'expose', 'unfasten', 'unlock', 'unseal'],
'opening': ['uncovering', 'revealing', 'exposing', 'unfastening', 'unlocking', 'unsealing'],
'close': ['shut', 'seal', 'cover', 'enclose', 'fasten', 'lock'],
'closing': ['shutting', 'sealing', 'covering', 'enclosing', 'fastening', 'locking'],
'start': ['begin', 'commence', 'initiate', 'launch', 'kick off', 'get underway'],
'starting': ['beginning', 'commencing', 'initiating', 'launching', 'kicking off', 'getting underway'],
'stop': ['cease', 'halt', 'end', 'terminate', 'discontinue', 'finish'],
'stopping': ['ceasing', 'halting', 'ending', 'terminating', 'discontinuing', 'finishing'],
'continue': ['proceed', 'persist', 'carry on', 'keep going', 'resume', 'maintain'],
'continuing': ['proceeding', 'persisting', 'carrying on', 'keeping going', 'resuming', 'maintaining'],
'finish': ['complete', 'conclude', 'end', 'terminate', 'wrap up', 'finalize'],
'finishing': ['completing', 'concluding', 'ending', 'terminating', 'wrapping up', 'finalizing'],
'win': ['triumph', 'victory', 'succeed', 'prevail', 'conquer', 'overcome'],
'winning': ['triumphing', 'victorious', 'succeeding', 'prevailing', 'conquering', 'overcoming'],
'lose': ['be defeated', 'fail', 'misplace', 'suffer loss', 'be beaten', 'surrender'],
'losing': ['being defeated', 'failing', 'misplacing', 'suffering loss', 'being beaten', 'surrendering'],
'break': ['shatter', 'smash', 'crack', 'fracture', 'snap', 'rupture'],
'breaking': ['shattering', 'smashing', 'cracking', 'fracturing', 'snapping', 'rupturing'],
'fix': ['repair', 'mend', 'restore', 'correct', 'adjust', 'resolve'],
'fixing': ['repairing', 'mending', 'restoring', 'correcting', 'adjusting', 'resolving'],
'build': ['construct', 'create', 'erect', 'assemble', 'establish', 'fabricate'],
'building': ['constructing', 'creating', 'erecting', 'assembling', 'establishing', 'fabricating'],
'destroy': ['ruin', 'demolish', 'wreck', 'devastate', 'raze', 'obliterate'],
'destroying': ['ruining', 'demolishing', 'wrecking', 'devastating', 'razing', 'obliterating'],
'clean': ['tidy', 'neaten', 'purify', 'wash', 'scrub', 'sanitize'],
'cleaning': ['tidying', 'neatening', 'purifying', 'washing', 'scrubbing', 'sanitizing'],
'dirty': ['filthy', 'soiled', 'unclean', 'grubby', 'messy', 'stained'],
'dirtying': ['filthying', 'soiling', 'uncleaning', 'grubbing', 'messing', 'staining'],
'cook': ['prepare food', 'bake', 'roast', 'fry', 'grill', 'boil'],
'cooking': ['preparing food', 'baking', 'roasting', 'frying', 'grilling', 'boiling'],
'wash': ['clean', 'rinse', 'bathe', 'scrub', 'launder', 'cleanse'],
'washing': ['cleaning', 'rinsing', 'bathing', 'scrubbing', 'laundering', 'cleansing'],
'dry': ['dehydrate', 'desiccate', 'evaporate moisture', 'wipe', 'towel', 'air'],
'drying': ['dehydrating', 'desiccating', 'evaporating moisture', 'wiping', 'toweling', 'airing'],
'wet': ['moist', 'damp', 'humid', 'soaked', 'saturated', 'drenched'],
'wetting': ['moistening', 'damping', 'humidifying', 'soaking', 'saturating', 'drenching'],
'light': ['illuminate', 'brighten', 'shine', 'glow', 'beam', 'radiate'],
'lighting': ['illuminating', 'brightening', 'shining', 'glowing', 'beaming', 'radiating'],
'dark': ['dim', 'gloomy', 'shadowy', 'unlit', 'black', 'murky'],
'darkening': ['dimming', 'glooming', 'shadowing', 'unlighting', 'blacking', 'murking'],
'heavy': ['weighty', 'massive', 'burdensome', 'ponderous', 'substantial', 'dense'],
'heaviness': ['weightiness', 'massiveness', 'burdensomeness', 'ponderousness', 'substantiality', 'density'],
'light': ['weightless', 'feathery', 'airy', 'buoyant', 'delicate', 'flimsy'],
'lightness': ['weightlessness', 'featheriness', 'airiness', 'buoyancy', 'delicacy', 'flimsiness'],
'hard': ['difficult', 'challenging', 'tough', 'rigid', 'firm', 'solid'],
'hardness': ['difficulty', 'challenge', 'toughness', 'rigidity', 'firmness', 'solidity'],
'soft': ['gentle', 'pliable', 'flexible', 'supple', 'malleable', 'tender'],
'softness': ['gentleness', 'pliability', 'flexibility', 'suppleness', 'malleability', 'tenderness'],
'rough': ['coarse', 'abrasive', 'uneven', 'bumpy', 'jagged', 'gritty'],
'roughness': ['coarseness', 'abrasiveness', 'unevenness', 'bumpiness', 'jaggedness', 'grittiness'],
'smooth': ['silky', 'velvety', 'even', 'level', 'polished', 'glossy'],
'smoothness': ['silkiness', 'velvetiness', 'evenness', 'levelness', 'polish', 'glossiness'],
'sharp': ['pointed', 'keen', 'acute', 'edged', 'piercing', 'cutting'],
'sharpness': ['pointedness', 'keenness', 'acuteness', 'edgedness', 'piercing quality', 'cutting quality'],
'dull': ['blunt', 'uninteresting', 'boring', 'tedious', 'monotonous', 'unexciting'],
'dullness': ['bluntness', 'uninterestingness', 'boredom', 'tediousness', 'monotony', 'unexcitingness'],
'bright': ['luminous', 'radiant', 'brilliant', 'shining', 'gleaming', 'glowing'],
'brightness': ['luminosity', 'radiance', 'brilliance', 'shining quality', 'gleam', 'glow'],
'dim': ['faint', 'pale', 'weak', 'subdued', 'muted', 'shadowy'],
'dimness': ['faintness', 'paleness', 'weakness', 'subduedness', 'muteness', 'shadowiness'],
'loud': ['noisy', 'deafening', 'thundering', 'blaring', 'booming', 'resounding'],
'loudness': ['noisiness', 'deafening quality', 'thundering quality', 'blaring quality', 'booming quality', 'resounding quality'],
'quiet': ['silent', 'still', 'hushed', 'muted', 'subdued', 'peaceful'],
'quietness': ['silence', 'stillness', 'hushedness', 'muteness', 'subduedness', 'peacefulness'],
'fast': ['quick', 'rapid', 'swift', 'speedy', 'hasty', 'prompt'],
'fastness': ['quickness', 'rapidity', 'swiftness', 'speediness', 'hastiness', 'promptness'],
'slow': ['sluggish', 'lethargic', 'unhurried', 'gradual', 'delayed', 'unprompt'],
'slowness': ['sluggishness', 'lethargy', 'unhurriedness', 'gradualness', 'delayedness', 'unpromptness'],
'old': ['ancient', 'aged', 'elderly', 'mature', 'vintage', 'antique'],
'oldness': ['ancientness', 'agedness', 'elderliness', 'maturity', 'vintage quality', 'antiqueness'],
'young': ['youthful', 'juvenile', 'immature', 'fresh', 'new', 'novice'],
'youthfulness': ['juvenility', 'immaturity', 'freshness', 'newness', 'novice quality', 'inexperience'],
'new': ['fresh', 'novel', 'recent', 'modern', 'latest', 'current'],
'newness': ['freshness', 'novelty', 'recentness', 'modernity', 'latest quality', 'currentness'],
'used': ['secondhand', 'pre-owned', 'worn', 'experienced', 'utilized', 'employed'],
'usedness': ['secondhand quality', 'pre-owned quality', 'worn quality', 'experienced quality', 'utilization', 'employment'],
'rich': ['wealthy', 'affluent', 'prosperous', 'moneyed', 'well-off', 'opulent'],
'richness': ['wealth', 'affluence', 'prosperity', 'moneyedness', 'well-offness', 'opulence'],
'poor': ['impoverished', 'needy', 'destitute', 'penniless', 'indigent', 'broke'],
'poorness': ['impoverishment', 'neediness', 'destitution', 'pennilessness', 'indigence', 'brokenness'],
'healthy': ['well', 'fit', 'robust', 'sound', 'healthful', 'wholesome'],
'healthiness': ['wellness', 'fitness', 'robustness', 'soundness', 'healthfulness', 'wholesomeness'],
'sick': ['ill', 'unwell', 'ailing', 'infirm', 'diseased', 'unhealthy'],
'sickness': ['illness', 'unwellness', 'ailment', 'infirmity', 'disease', 'unhealthiness'],
'strong': ['powerful', 'mighty', 'robust', 'sturdy', 'tough', 'resilient'],
'strength': ['power', 'might', 'robustness', 'sturdiness', 'toughness', 'resilience'],
'weak': ['feeble', 'frail', 'fragile', 'infirm', 'delicate', 'powerless'],
'weakness': ['feebleness', 'frailty', 'fragility', 'infirmity', 'delicacy', 'powerlessness'],
'happy': ['joyful', 'cheerful', 'delighted', 'pleased', 'content', 'satisfied'],
'happiness': ['joy', 'cheerfulness', 'delight', 'pleasure', 'contentment', 'satisfaction'],
'sad': ['unhappy', 'sorrowful', 'miserable', 'depressed', 'gloomy', 'downcast'],
'sadness': ['unhappiness', 'sorrow', 'misery', 'depression', 'gloom', 'downcastness'],
'angry': ['furious', 'enraged', 'irate', 'incensed', 'mad', 'livid'],
'anger': ['fury', 'rage', 'ire', 'wrath', 'madness', 'lividness'],
'calm': ['peaceful', 'tranquil', 'serene', 'composed', 'placid', 'unruffled'],
'calmness': ['peacefulness', 'tranquility', 'serenity', 'composure', 'placidity', 'unruffledness'],
'excited': ['thrilled', 'enthusiastic', 'eager', 'animated', 'exhilarated', 'stimulated'],
'excitement': ['thrill', 'enthusiasm', 'eagerness', 'animation', 'exhilaration', 'stimulation'],
'bored': ['uninterested', 'unengaged', 'disinterested', 'apathetic', 'indifferent', 'unstimulated'],
'boredom': ['uninterest', 'unengagement', 'disinterest', 'apathy', 'indifference', 'unstimulation'],
'scared': ['afraid', 'frightened', 'terrified', 'alarmed', 'fearful', 'panicked'],
'scariness': ['fear', 'fright', 'terror', 'alarm', 'fearfulness', 'panic'],
'brave': ['courageous', 'fearless', 'valiant', 'heroic', 'daring', 'bold'],
'bravery': ['courage', 'fearlessness', 'valor', 'heroism', 'daring', 'boldness'],
'kind': ['benevolent', 'compassionate', 'caring', 'generous', 'considerate', 'thoughtful'],
'kindness': ['benevolence', 'compassion', 'caring', 'generosity', 'consideration', 'thoughtfulness'],
'mean': ['unkind', 'cruel', 'nasty', 'malicious', 'spiteful', 'vicious'],
'meanness': ['unkindness', 'cruelty', 'nastiness', 'maliciousness', 'spitefulness', 'viciousness'],
'honest': ['truthful', 'sincere', 'genuine', 'frank', 'candid', 'forthright'],
'honesty': ['truthfulness', 'sincerity', 'genuineness', 'frankness', 'candor', 'forthrightness'],
'dishonest': ['untruthful', 'insincere', 'deceitful', 'fraudulent', 'lying', 'false'],
'dishonesty': ['untruthfulness', 'insincerity', 'deceitfulness', 'fraudulence', 'lying', 'falseness'],
'loyal': ['faithful', 'true', 'devoted', 'steadfast', 'committed', 'dedicated'],
'loyalty': ['faithfulness', 'trueness', 'devotion', 'steadfastness', 'commitment', 'dedication'],
'disloyal': ['unfaithful', 'false', 'undevoted', 'unsteadfast', 'uncommitted', 'undedicated'],
'disloyalty': ['unfaithfulness', 'falseness', 'undevotion', 'unsteadfastness', 'uncommitment', 'undedication'],
'friendly': ['amicable', 'cordial', 'sociable', 'affable', 'genial', 'companionable'],
'friendliness': ['amicability', 'cordiality', 'sociability', 'affability', 'geniality', 'companionability'],
'unfriendly': ['hostile', 'unpleasant', 'cold', 'aloof', 'antagonistic', 'unwelcoming'],
'unfriendliness': ['hostility', 'unpleasantness', 'coldness', 'aloofness', 'antagonism', 'unwelcomingness'],
'polite': ['courteous', 'respectful', 'well-mannered', 'civil', 'gracious', 'considerate'],
'politeness': ['courtesy', 'respectfulness', 'good manners', 'civility', 'graciousness', 'consideration'],
'rude': ['impolite', 'discourteous', 'ill-mannered', 'uncivil', 'graceless', 'inconsiderate'],
'rudeness': ['impoliteness', 'discourtesy', 'ill manners', 'uncivility', 'gracelessness', 'inconsideration'],
'patient': ['tolerant', 'forbearing', 'understanding', 'lenient', 'composed', 'calm'],
'patience': ['tolerance', 'forbearance', 'understanding', 'leniency', 'composure', 'calmness'],
'impatient': ['intolerant', 'unforbearing', 'ununderstanding', 'unlenient', 'uncomposed', 'uncalm'],
'impatience': ['intolerance', 'unforbearance', 'ununderstanding', 'unleniency', 'uncomposure', 'uncalmness'],
'wise': ['sage', 'judicious', 'prudent', 'sensible', 'astute', 'discerning'],
'wisdom': ['sageness', 'judiciousness', 'prudence', 'sensibility', 'astuteness', 'discernment'],
'foolish': ['unwise', 'silly', 'ridiculous', 'absurd', 'nonsensical', 'stupid'],
'foolishness': ['unwiseness', 'silliness', 'ridiculousness', 'absurdity', 'nonsensicality', 'stupidity'],
'smart': ['intelligent', 'clever', 'bright', 'sharp', 'astute', 'brilliant'],
'smartness': ['intelligence', 'cleverness', 'brightness', 'sharpness', 'astuteness', 'brilliance'],
'stupid': ['dumb', 'unintelligent', 'dim-witted', 'slow', 'dense', 'dull'],
'stupidity': ['dumbness', 'unintelligence', 'dim-wittedness', 'slowness', 'density', 'dullness'],
'creative': ['imaginative', 'innovative', 'inventive', 'original', 'artistic', 'resourceful'],
'creativity': ['imagination', 'innovation', 'inventiveness', 'originality', 'artistry', 'resourcefulness'],
'uncreative': ['unimaginative', 'uninnovative', 'uninventive', 'unoriginal', 'unartistic', 'unresourceful'],
'uncreativity': ['unimagination', 'uninnovation', 'uninventiveness', 'unoriginality', 'unartistry', 'unresourcefulness'],
'beautiful': ['gorgeous', 'stunning', 'attractive', 'lovely', 'pretty', 'handsome'],
'beauty': ['gorgeousness', 'stunningness', 'attractiveness', 'loveliness', 'prettiness', 'handsomeness'],
'ugly': ['unattractive', 'hideous', 'unsightly', 'repulsive', 'homely', 'plain'],
'ugliness': ['unattractiveness', 'hideousness', 'unsightliness', 'repulsiveness', 'homeliness', 'plainness'],
'clean': ['pure', 'spotless', 'immaculate', 'pristine', 'unsoiled', 'uncontaminated'],
'cleanliness': ['purity', 'spotlessness', 'immaculateness', 'pristineness', 'unsoiledness', 'uncontamination'],
'dirty': ['filthy', 'soiled', 'unclean', 'grubby', 'messy', 'stained'],
'dirtiness': ['filthiness', 'soiledness', 'uncleanliness', 'grubbiness', 'messiness', 'stainedness'],
'organized': ['orderly', 'systematic', 'methodical', 'structured', 'arranged', 'tidy'],
'organization': ['orderliness', 'systematicness', 'methodicalness', 'structuredness', 'arrangement', 'tidiness'],
'disorganized': ['disorderly', 'unsystematic', 'unmethodical', 'unstructured', 'unarranged', 'untidy'],
'disorganization': ['disorderliness', 'unsystematicness', 'unmethodicalness', 'unstructuredness', 'unarrangement', 'untidiness'],
'successful': ['triumphant', 'victorious', 'prosperous', 'flourishing', 'thriving', 'accomplished'],
'success': ['triumph', 'victory', 'prosperity', 'flourishing', 'thriving', 'accomplishment'],
'unsuccessful': ['untriumphant', 'unvictorious', 'unprosperous', 'unflourishing', 'unthriving', 'unaccomplished'],
'unsuccess': ['untriumph', 'unvictory', 'unprosperity', 'unflourishing', 'unthriving', 'unaccomplishment'],
'important': ['significant', 'crucial', 'vital', 'essential', 'critical', 'key'],
'importance': ['significance', 'cruciality', 'vitality', 'essentiality', 'criticality', 'keyness'],
'unimportant': ['insignificant', 'uncrucial', 'unvital', 'unessential', 'uncritical', 'unkey'],
'unimportance': ['insignificance', 'uncruciality', 'unvitality', 'unessentiality', 'uncriticality', 'unkeyness'],
'necessary': ['essential', 'required', 'needed', 'vital', 'indispensable', 'mandatory'],
'necessity': ['essentialness', 'requiredness', 'neededness', 'vitality', 'indispensability', 'mandatoryness'],
'unnecessary': ['inessential', 'unrequired', 'unneeded', 'unvital', 'indispensable', 'unmandatory'],
'unnecessariness': ['inessentialness', 'unrequiredness', 'unneededness', 'unvitality', 'indispensableness', 'unmandatoryness'],
'possible': ['feasible', 'achievable', 'attainable', 'doable', 'viable', 'practicable'],
'possibility': ['feasibility', 'achievability', 'attainability', 'doability', 'viability', 'practicability'],
'impossible': ['unfeasible', 'unachievable', 'unattainable', 'undoable', 'unviable', 'unpracticable'],
'impossibility': ['unfeasibility', 'unachievability', 'unattainability', 'undoability', 'unviability', 'unpracticability'],
'easy': ['simple', 'effortless', 'uncomplicated', 'straightforward', 'painless', 'untroublesome'],
'easiness': ['simplicity', 'effortlessness', 'uncomplicatedness', 'straightforwardness', 'painlessness', 'untroublesomeness'],
'difficult': ['hard', 'challenging', 'tough', 'complex', 'complicated', 'troublesome'],
'difficulty': ['hardness', 'challengingness', 'toughness', 'complexity', 'complicatedness', 'troublesomeness'],
'expensive': ['costly', 'pricey', 'dear', 'high-priced', 'valuable', 'precious'],
'expensiveness': ['costliness', 'priceyness', 'dearness', 'high-pricedness', 'valueness', 'preciousness'],
'cheap': ['inexpensive', 'affordable', 'low-priced', 'economical', 'budget-friendly', 'reasonable'],
'cheapness': ['inexpensiveness', 'affordability', 'low-pricedness', 'economy', 'budget-friendliness', 'reasonableness'],
'rich': ['wealthy', 'affluent', 'prosperous', 'moneyed', 'well-off', 'opulent'],
'richness': ['wealth', 'affluence', 'prosperity', 'moneyedness', 'well-offness', 'opulence'],
'poor': ['impoverished', 'needy', 'destitute', 'penniless', 'indigent', 'broke'],
'poorness': ['impoverishment', 'neediness', 'destitution', 'pennilessness', 'indigence', 'brokenness'],
'healthy': ['well', 'fit', 'robust', 'sound', 'healthful', 'wholesome'],
'healthiness': ['wellness', 'fitness', 'robustness', 'soundness', 'healthfulness', 'wholesomeness'],
'unhealthy': ['unwell', 'unfit', 'unrobust', 'unsound', 'unhealthful', 'unwholesome'],
'unhealthiness': ['unwellness', 'unfitness', 'unrobustness', 'unsoundness', 'unhealthfulness', 'unwholesomeness'],
'strong': ['powerful', 'mighty', 'robust', 'sturdy', 'tough', 'resilient'],
'strength': ['power', 'might', 'robustness', 'sturdiness', 'toughness', 'resilience'],
'weak': ['feeble', 'frail', 'fragile', 'infirm', 'delicate', 'powerless'],
'weakness': ['feebleness', 'frailty', 'fragility', 'infirmity', 'delicacy', 'powerlessness'],
'fast': ['quick', 'rapid', 'swift', 'speedy', 'hasty', 'prompt'],
'fastness': ['quickness', 'rapidity', 'swiftness', 'speediness', 'hastiness', 'promptness'],
'slow': ['sluggish', 'lethargic', 'unhurried', 'gradual', 'delayed', 'unprompt'],
'slowness': ['sluggishness', 'lethargy', 'unhurriedness', 'gradualness', 'delayedness', 'unpromptness'],
'hot': ['warm', 'heated', 'boiling', 'scorching', 'burning', 'fiery'],
'hotness': ['warmth', 'heatedness', 'boilingness', 'scorchingness', 'burningness', 'fieriness'],
'cold': ['chilly', 'cool', 'freezing', 'icy', 'frigid', 'frosty'],
'coldness': ['chilliness', 'coolness', 'freezingness', 'iciness', 'frigidity', 'frostiness'],
'big': ['large', 'huge', 'enormous', 'massive', 'giant', 'substantial'],
'bigness': ['largeness', 'hugeness', 'enormousness', 'massiveness', 'giantness', 'substantiality'],
'small': ['tiny', 'little', 'miniature', 'compact', 'petite', 'minor'],
'smallness': ['tininess', 'littleness', 'miniatureness', 'compactness', 'petiteness', 'minorness'],
'tall': ['high', 'lofty', 'elevated', 'towering', 'statuesque', 'long'],
'tallness': ['highness', 'loftiness', 'elevatedness', 'toweringness', 'statuesqueness', 'longness'],
'short': ['brief', 'concise', 'terse', 'compact', 'succinct', 'little'],
'shortness': ['briefness', 'conciseness', 'terseness', 'compactness', 'succinctness', 'littleness'],
'wide': ['broad', 'expansive', 'extensive', 'spacious', 'vast', 'ample'],
'wideness': ['broadness', 'expansiveness', 'extensiveness', 'spaciousness', 'vastness', 'ampleness'],
'narrow': ['slim', 'thin', 'slender', 'tight', 'restricted', 'limited'],
'narrowness': ['slimness', 'thinness', 'slenderness', 'tightness', 'restrictedness', 'limitedness'],
'deep': ['profound', 'intense', 'thorough', 'complete', 'full', 'comprehensive'],
'deepness': ['profundity', 'intensity', 'thoroughness', 'completeness', 'fullness', 'comprehensiveness'],
'shallow': ['superficial', 'cursory', 'skin-deep', 'surface', 'light', 'incomplete'],
'shallowness': ['superficiality', 'cursoryness', 'skin-deepness', 'surfaceness', 'lightness', 'incompleteness'],
'long': ['lengthy', 'extended', 'prolonged', 'drawn-out', 'elongated', 'stretched'],
'longness': ['lengthiness', 'extendedness', 'prolongedness', 'drawn-outness', 'elongatedness', 'stretchedness'],
'brief': ['short', 'concise', 'terse', 'compact', 'succinct', 'little'],
'briefness': ['shortness', 'conciseness', 'terseness', 'compactness', 'succinctness', 'littleness'],
'high': ['tall', 'lofty', 'elevated', 'towering', 'superior', 'top'],
'highness': ['tallness', 'loftiness', 'elevatedness', 'toweringness', 'superiority', 'topness'],
'low': ['short', 'inferior', 'base', 'humble', 'subservient', 'depressed'],
'lowness': ['shortness', 'inferiority', 'baseness', 'humbleness', 'subserviency', 'depressedness'],
'up': ['above', 'higher', 'elevated', 'raised', 'upward', 'ascending'],
'upness': ['aboveness', 'higherness', 'elevatedness', 'raisedness', 'upwardness', 'ascendingness'],
'down': ['below', 'lower', 'depressed', 'dropped', 'downward', 'descending'],
'downness': ['belowness', 'lowerness', 'depressedness', 'droppedness', 'downwardness', 'descendingness'],
'in': ['inside', 'within', 'into', 'enclosed', 'contained', 'included'],
'inness': ['insideness', 'withinness', 'intoness', 'enclosedness', 'containedness', 'includedness'],
'out': ['outside', 'exterior', 'exit', 'depart', 'leave', 'emerge'],
'outness': ['outsideness', 'exteriorness', 'exitness', 'departure', 'leaving', 'emergence'],
'on': ['upon', 'above', 'atop', 'resting', 'situated', 'positioned'],
'onness': ['uponness', 'aboveness', 'atopness', 'restingness', 'situatedness', 'positionedness'],
'off': ['away', 'removed', 'disconnected', 'inactive', 'separated', 'detached'],
'offness': ['awayness', 'removedness', 'disconnectedness', 'inactiveness', 'separatedness', 'detachedness'],
'over': ['above', 'across', 'beyond', 'past', 'through', 'covering'],
'overness': ['aboveness', 'acrossness', 'beyondness', 'pastness', 'throughness', 'coveringness'],
'under': ['below', 'beneath', 'underneath', 'subordinate', 'inferior', 'subject'],
'underness': ['belowness', 'beneathness', 'underneathness', 'subordinateness', 'inferiority', 'subjectness'],
'between': ['among', 'amidst', 'midway', 'intermediate', 'connecting', 'linking'],
'betweenness': ['amongness', 'amidstness', 'midwayness', 'intermediateness', 'connectingness', 'linkingness'],
'among': ['between', 'amidst', 'midway', 'intermediate', 'connecting', 'linking'],
'amongness': ['betweenness', 'amidstness', 'midwayness', 'intermediateness', 'connectingness', 'linkingness'],
'through': ['via', 'by means of', 'by way of', 'using', 'with', 'by'],
'throughness': ['vianess', 'by means ofness', 'by way ofness', 'usingness', 'withness', 'byness'],
'across': ['over', 'through', 'crosswise', 'transversely', 'athwart', 'contrary'],
'acrossness': ['overness', 'throughness', 'crosswiseness', 'transverselyness', 'athwartness', 'contrariness'],
'around': ['about', 'approximately', 'near', 'close to', 'surrounding', 'encircling'],
'aroundness': ['aboutness', 'approximate', 'nearness', 'close toness', 'surroundingness', 'encirclingness'],
'near': ['close', 'nearby', 'adjacent', 'neighboring', 'proximate', 'approaching'],
'nearness': ['closeness', 'nearbyness', 'adjacency', 'neighboringness', 'proximity', 'approachingness'],
'far': ['distant', 'remote', 'faraway', 'removed', 'separated', 'apart'],
'farness': ['distanceness', 'remoteness', 'farawayness', 'removedness', 'separatedness', 'apartness'],
'here': ['in this place', 'at this location', 'present', 'on site', 'at hand', 'available'],
'hereness': ['in this placeness', 'at this locationness', 'presentness', 'on siteness', 'at handness', 'availableness'],
'there': ['in that place', 'at that location', 'present', 'on site', 'available', 'yonder'],
'thereness': ['in that placeness', 'at that locationness', 'presentness', 'on siteness', 'availableness', 'yonderness'],
'everywhere': ['all over', 'ubiquitously', 'universally', 'throughout', 'far and wide', 'everyplace'],
'everywhereness': ['all overness', 'ubiquitousness', 'universality', 'throughoutness', 'far and wideness', 'everyplaceness'],
'nowhere': ['not anywhere', 'in no place', 'nowhither', 'not at all', 'not present', 'absent'],
'nowhereness': ['not anywhereness', 'in no placeness', 'nowhitherness', 'not at allness', 'not presentness', 'absentness'],
'somewhere': ['in some place', 'at some location', 'someplace', 'anywhere', 'hereabouts', 'thereabouts'],
'somewhereness': ['in some placeness', 'at some locationness', 'someplaceness', 'anywhereness', 'hereaboutsness', 'thereaboutsness'],
'anywhere': ['in any place', 'at any location', 'anyplace', 'everywhere', 'wherever', 'wheresoever'],
'anywhereness': ['in any placeness', 'at any locationness', 'anyplaceness', 'everywhereness', 'whereverness', 'wheresoeverness'],
'everywhere': ['all over', 'ubiquitously', 'universally', 'throughout', 'far and wide', 'everyplace'],
'everywhereness': ['all overness', 'ubiquitousness', 'universality', 'throughoutness', 'far and wideness', 'everyplaceness'],
'now': ['currently', 'presently', 'at this moment', 'right now', 'immediately', 'at once'],
'nowness': ['currentlyness', 'presentlyness', 'at this momentness', 'rightnowness', 'immediateness', 'at onceness'],
'then': ['subsequently', 'afterward', 'next', 'following that', 'later', 'afterwards'],
'thennness': ['subsequentlyness', 'afterwardness', 'nextness', 'following thatness', 'laterness', 'afterwardsness'],
'soon': ['shortly', 'presently', 'before long', 'in a little while', 'in the near future', 'anon'],
'soonness': ['shortlyness', 'presentlyness', 'before longness', 'in a little whileness', 'in the near futureness', 'annoness'],
'later': ['afterward', 'subsequently', 'after', 'following', 'next', 'then'],
'laterness': ['afterwardness', 'subsequentlyness', 'afterness', 'followingness', 'nextness', 'thennness'],
'early': ['soon', 'promptly', 'ahead of time', 'in advance', 'beforehand', 'prematurely'],
'earliness': ['soonness', 'promptness', 'ahead of timeness', 'in advanceness', 'beforehandness', 'prematureness'],
'late': ['tardy', 'delayed', 'belated', 'overdue', 'behind time', 'behind schedule'],
'lateness': ['tardiness', 'delayedness', 'belatedness', 'overdueness', 'behind timeness', 'behind scheduleness'],
'today': ['nowadays', 'currently', 'presently', 'in this day and age', 'at present', 'in these times'],
'todayness': ['nowadaysness', 'currentlyness', 'presentlyness', 'in this day and ageness', 'at presentness', 'in these timesness'],
'tomorrow': ['the next day', 'the following day', 'the morrow', 'the day after', 'in the future', 'subsequently'],
'tomorrownness': ['the next dayness', 'the following dayness', 'the morrownness', 'the day afterness', 'in the futureness', 'subsequentlyness'],
'yesterday': ['the day before', 'the previous day', 'the day prior', 'in the past', 'previously', 'formerly'],
'yesterdayness': ['the day beforeness', 'the previous dayness', 'the day priorness', 'in the pastness', 'previouslyness', 'formerlyness'],
'morning': ['dawn', 'daybreak', 'sunrise', 'early', 'am', 'forenoon'],
'morningness': ['dawnness', 'daybreakness', 'sunriseness', 'earlyness', 'amness', 'forenoonness'],
'afternoon': ['pm', 'midday', 'noon', 'post meridiem', 'daytime', 'siesta time'],
'afternoonness': ['pmness', 'middayness', 'noonness', 'post meridiemness', 'daytimeness', 'siesta timeness'],
'evening': ['night', 'dusk', 'sunset', 'twilight', 'eve', 'end of day'],
'eveningness': ['nightness', 'duskness', 'sunsetness', 'twilightness', 'eveness', 'end of dayness'],
'night': ['evening', 'darkness', 'nighttime', 'bedtime', 'sleep time', 'dark'],
'nightness': ['eveningness', 'darknessness', 'nighttimeness', 'bedtimeness', 'sleep timeness', 'darkness'],
'day': ['daytime', 'daylight', 'sunlight', 'daytime hours', 'light', 'daytime period'],
'dayness': ['daytimeness', 'daylightness', 'sunlightness', 'daytime hoursness', 'lightness', 'daytime periodness'],
'week': ['seven days', 'weekly period', 'seven-day period', 'workweek', 'calendar week', 'seven-day cycle'],
'weekness': ['seven daysness', 'weekly periodness', 'seven-day periodness', 'workweekness', 'calendar weekness', 'seven-day cycleness'],
'month': ['monthly', 'calendar month', '30 days', 'lunar month', 'moon cycle', 'period of time'],
'monthness': ['monthlyness', 'calendar monthness', '30 daysness', 'lunar monthness', 'moon cycleness', 'period of timeness'],
'year': ['annual', '12 months', 'calendar year', '365 days', 'leap year', 'time period'],
'yearness': ['annualness', '12 monthsness', 'calendar yearness', '365 daysness', 'leap yearness', 'time periodness'],
'century': ['100 years', 'hundred years', 'centennial', 'age', 'era', 'period'],
'centuryness': ['100 yearsness', 'hundred yearsness', 'centennialness', 'ageness', 'eraness', 'periodness'],
'decade': ['10 years', 'ten years', 'ten-year period', 'decennary', 'decennium', 'period of ten years'],
'decadeness': ['10 yearsness', 'ten yearsness', 'ten-year periodness', 'decennaryness', 'decenniumness', 'period of ten yearsness'],
'season': ['time of year', 'period', 'quarter', 'term', 'phase', 'stage'],
'seasonness': ['time of yearness', 'periodness', 'quarterness', 'termness', 'phaseness', 'stageness'],
'spring': ['springtime', 'vernal', 'vernal season', 'season of growth', 'renewal', 'rebirth'],
'springness': ['springtimeness', 'vernalness', 'vernal seasonness', 'season of growthness', 'renewalness', 'rebirthness'],
'summer': ['summertime', 'hot season', 'warm season', 'season of heat', 'vacation time', 'holiday season'],
'summerness': ['summertimeness', 'hot seasonness', 'warm seasonness', 'season of heatness', 'vacation timeness', 'holiday seasonness'],
'autumn': ['fall', 'fall season', 'harvest season', 'season of harvest', 'season of change', 'season of decay'],
'autumnness': ['fallness', 'fall seasonness', 'harvest seasonness', 'season of harvestness', 'season of changeness', 'season of decayness'],
'winter': ['wintertime', 'cold season', 'chilly season', 'season of cold', 'season of snow', 'dormant season'],
'winternness': ['wintertimeness', 'cold seasonness', 'chilly seasonness', 'season of coldness', 'season of snowness', 'dormant seasonness'],
'time': ['period', 'duration', 'moment', 'instance', 'occasion', 'interval'],
'timeness': ['periodness', 'durationness', 'momentness', 'instanceness', 'occasionness', 'intervalness'],
'moment': ['instant', 'second', 'minute', 'point in time', 'juncture', 'occasion'],
'momentness': ['instantness', 'secondness', 'minuteness', 'point in timeness', 'juncture ness', 'occasionness'],
'second': ['moment', 'instant', 'minute', 'unit of time', 'tick', 'beat'],
'secondness': ['momentness', 'instantness', 'minuteness', 'unit of timeness', 'tickness', 'beatness'],
'minute': ['moment', 'second', 'hour', 'unit of time', 'period', 'interval'],
'minuteness': ['momentness', 'secondness', 'hourness', 'unit of timeness', 'periodness', 'intervalness'],
'hour': ['time', 'clock time', '60 minutes', 'unit of time', 'period', 'duration'],
'hourness': ['timeness', 'clock timeness', '60 minutesness', 'unit of timeness', 'periodness', 'durationness'],
'always': ['forever', 'constantly', 'continually', 'eternally', 'perpetually', 'consistently'],
'alwaysness': ['foreverness', 'constantness', 'continualness', 'eternalness', 'perpetualness', 'consistentness'],
'never': ['not ever', 'at no time', 'never again', 'absolutely not', 'under no circumstances', 'not at all'],
'neverness': ['not everness', 'at no timeness', 'never againness', 'absolutely notness', 'under no circumstancesness', 'not at allness'],
'sometimes': ['occasionally', 'periodically', 'intermittently', 'now and then', 'from time to time', 'at times'],
'sometimesness': ['occasionallyness', 'periodicallyness', 'intermittentlyness', 'now and thenness', 'from time to timeness', 'at timesness'],
'often': ['frequently', 'regularly', 'commonly', 'repeatedly', 'habitually', 'customarily'],
'oftenness': ['frequentlyness', 'regularlyness', 'commonlyness', 'repeatedlyness', 'habituallyness', 'customarilyness'],
'rarely': ['seldom', 'infrequently', 'occasionally', 'hardly ever', 'scarcely', 'not often'],
'rarelyness': ['seldomness', 'infrequentlyness', 'occasionallyness', 'hardly everness', 'scarcelyness', 'not oftenness'],
'always': ['forever', 'constantly', 'continually', 'eternally', 'perpetually', 'consistently'],
'alwaysness': ['foreverness', 'constantness', 'continualness', 'eternalness', 'perpetualness', 'consistentness'],
'never': ['not ever', 'at no time', 'never again', 'absolutely not', 'under no circumstances', 'not at all'],
'neverness': ['not everness', 'at no timeness', 'never againness', 'absolutely notness', 'under no circumstancesness', 'not at allness'],
'sometimes': ['occasionally', 'periodically', 'intermittently', 'now and then', 'from time to time', 'at times'],
'sometimesness': ['occasionallyness', 'periodicallyness', 'intermittentlyness', 'now and thenness', 'from time to timeness', 'at timesness'],
'often': ['frequently', 'regularly', 'commonly', 'repeatedly', 'habitually', 'customarily'],
'oftenness': ['frequentlyness', 'regularlyness', 'commonlyness', 'repeatedlyness', 'habituallyness', 'customarilyness'],
'rarely': ['seldom', 'infrequently', 'occasionally', 'hardly ever', 'scarcely', 'not often'],
'rarelyness': ['seldomness', 'infrequentlyness', 'occasionallyness', 'hardly everness', 'scarcelyness', 'not oftenness'],
'first': ['initial', 'primary', 'foremost', 'beginning', 'opening', 'original'],
'firstness': ['initialness', 'primaryness', 'foremostness', 'beginningness', 'openingness', 'originalness'],
'last': ['final', 'ultimate', 'ending', 'concluding', 'terminal', 'closing'],
'lastness': ['finalness', 'ultimateness', 'endingness', 'concludingness', 'terminalness', 'closingness'],
'next': ['following', 'subsequent', 'coming', 'approaching', 'upcoming', 'succeeding'],
'nextness': ['followingness', 'subsequentness', 'comingness', 'approachingness', 'upcomingness', 'succeedingness'],
'previous': ['prior', 'preceding', 'former', 'earlier', 'past', 'precedent'],
'previousness': ['priorness', 'precedingness', 'formerness', 'earlierness', 'pastness', 'precedentness'],
'beginning': ['start', 'commencement', 'onset', 'outset', 'initiation', 'origin'],
'beginningness': ['startness', 'commencementness', 'onsetness', 'outsetness', 'initiationness', 'originness'],
'end': ['finish', 'conclusion', 'termination', 'completion', 'close', 'final'],
'endness': ['finishness', 'conclusionness', 'terminationness', 'completionness', 'closeness', 'finalness'],
'middle': ['center', 'midpoint', 'intermediate', 'midway', 'halfway', 'central'],
'middleness': ['centerness', 'midpointness', 'intermediateness', 'midwayness', 'halfwayness', 'centralness'],
'start': ['begin', 'commence', 'initiate', 'launch', 'kick off', 'get underway'],
'startness': ['beginness', 'commencementness', 'initiateness', 'launchness', 'kick offness', 'get under wayness'],
'stop': ['cease', 'halt', 'end', 'terminate', 'discontinue', 'finish'],
'stopness': ['ceaseness', 'haltness', 'endness', 'terminationness', 'discontinuance', 'finishness'],
'continue': ['proceed', 'persist', 'carry on', 'keep going', 'resume', 'maintain'],
'continueness': ['proceedness', 'persistness', 'carry onness', 'keep goingness', 'resumeness', 'maintainness'],
'pause': ['stop', 'halt', 'cease', 'suspend', 'interrupt', 'break'],
'pauseness': ['stopness', 'haltness', 'ceaseness', 'suspendness', 'interruptness', 'breakness'],
'finish': ['complete', 'conclude', 'end', 'terminate', 'wrap up', 'finalize'],
'finishness': ['completeness', 'conclusionness', 'endness', 'terminationness', 'wrap upness', 'finalness'],
'good': ['excellent', 'fine', 'superior', 'quality', 'positive', 'favorable'],
'goodness': ['excellence', 'fineness', 'superiority', 'quality', 'positivity', 'favorability'],
'bad': ['poor', 'terrible', 'awful', 'inferior', 'negative', 'unfavorable'],
'badness': ['poorness', 'terribleness', 'awfulness', 'inferiority', 'negativity', 'unfavorability'],
'best': ['top', 'finest', 'superior', 'excellent', 'outstanding', 'premium'],
'bestness': ['topness', 'fineness', 'superiority', 'excellence', 'outstandingness', 'premiumness'],
'worst': ['poorest', 'terriblest', 'awfulest', 'inferiorest', 'negativest', 'unfavorablest'],
'worstness': ['poorestness', 'terriblestness', 'awfulestness', 'inferiorestness', 'negativestness', 'unfavorablestness'],
'better': ['improved', 'enhanced', 'superior', 'advanced', 'upgraded', 'refined'],
'betterness': ['improvedness', 'enhancedness', 'superiority', 'advancedness', 'upgradedness', 'refinedness'],
'worse': ['poorer', 'more terrible', 'more awful', 'more inferior', 'more negative', 'more unfavorable'],
'worseness': ['poorerness', 'more terribleness', 'more awfulness', 'more inferiority', 'more negativity', 'more unfavorability'],
'more': ['additional', 'extra', 'further', 'greater', 'increased', 'supplementary'],
'moreness': ['additionalness', 'extraness', 'furtherness', 'greaterness', 'increasedness', 'supplementaryness'],
'less': ['fewer', 'smaller', 'reduced', 'decreased', 'diminished', 'lower'],
'lessness': ['fewerness', 'smallerness', 'reducedness', 'decreasedness', 'diminishedness', 'lowerness'],
'most': ['majority', 'bulk', 'greater part', 'largest part', 'maximum', 'utmost'],
'mostness': ['majorityness', 'bulkness', 'greater partness', 'largest partness', 'maximumness', 'utmostness'],
'least': ['minimum', 'smallest amount', 'fewest', 'lowest', 'slightest', 'tiniest'],
'leastness': ['minimumness', 'smallest amountness', 'fewestness', 'lowestness', 'slightestness', 'tiniestness'],
'enough': ['sufficient', 'adequate', 'ample', 'plenty', 'satisfactory', 'acceptable'],
'enoughness': ['sufficiency', 'adequacy', 'ampleness', 'plentyness', 'satisfactoriness', 'acceptableness'],
'too': ['excessively', 'overly', 'unduly', 'excessively', 'inordinately', 'unreasonably'],
'tooness': ['excessivelyness', 'overlyness', 'undulyness', 'excessivelyness', 'inordinatelyness', 'unreasonableness'],
'very': ['extremely', 'highly', 'quite', 'rather', 'exceedingly', 'exceptionally'],
'veryness': ['extremelyness', 'highlyness', 'quiteness', 'ratherness', 'exceedinglyness', 'exceptionallyness'],
'quite': ['rather', 'fairly', 'somewhat', 'pretty', 'considerably', 'moderately'],
'quiteness': ['ratherness', 'fairlyness', 'somewhatness', 'prettiness', 'considerableness', 'moderateness'],
'rather': ['quite', 'fairly', 'somewhat', 'pretty', 'considerably', 'moderately'],
'ratherness': ['quiteness', 'fairlyness', 'somewhatness', 'prettiness', 'considerableness', 'moderateness'],
'fairly': ['quite', 'rather', 'somewhat', 'pretty', 'considerably', 'moderately'],
'fairlyness': ['quiteness', 'ratherness', 'somewhatness', 'prettiness', 'considerableness', 'moderateness'],
'somewhat': ['rather', 'quite', 'fairly', 'pretty', 'considerably', 'moderately'],
'somewhatness': ['ratherness', 'quiteness', 'fairlyness', 'prettiness', 'considerableness', 'moderateness'],
'extremely': ['very', 'highly', 'exceptionally', 'exceedingly', 'extraordinarily', 'unusually'],
'extremelyness': ['veryness', 'highlyness', 'exceptionallyness', 'exceedinglyness', 'extraordinarilyness', 'unusuallyness'],
'highly': ['very', 'extremely', 'exceptionally', 'exceedingly', 'extraordinarily', 'unusually'],
'highlyness': ['veryness', 'extremelyness', 'exceptionallyness', 'exceedinglyness', 'extraordinarilyness', 'unusuallyness'],
'really': ['truly', 'actually', 'genuinely', 'indeed', 'certainly', 'absolutely'],
'reallyness': ['trulyness', 'actuallyness', 'genuinelyness', 'indeedness', 'certainlyness', 'absolutelyness'],
'actually': ['really', 'truly', 'in fact', 'in reality', 'indeed', 'certainly'],
'actuallyness': ['reallyness', 'trulyness', 'in factness', 'in realityness', 'indeedness', 'certainlyness'],
'truly': ['really', 'actually', 'genuinely', 'indeed', 'certainly', 'absolutely'],
'trulyness': ['reallyness', 'actuallyness', 'genuinelyness', 'indeedness', 'certainlyness', 'absolutelyness'],
'certainly': ['definitely', 'absolutely', 'surely', 'undoubtedly', 'unquestionably', 'positively'],
'certainlyness': ['definitelyness', 'absolutelyness', 'surelyness', 'undoubtedlyness', 'unquestionablyness', 'positivelyness'],
'definitely': ['certainly', 'absolutely', 'surely', 'undoubtedly', 'unquestionably', 'positively'],
'definitelyness': ['certainlyness', 'absolutelyness', 'surelyness', 'undoubtedlyness', 'unquestionablyness', 'positivelyness'],
'absolutely': ['certainly', 'definitely', 'surely', 'undoubtedly', 'unquestionably', 'positively'],
'absolutelyness': ['certainlyness', 'definitelyness', 'surelyness', 'undoubtedlyness', 'unquestionablyness', 'positivelyness'],
'surely': ['certainly', 'definitely', 'absolutely', 'undoubtedly', 'unquestionably', 'positively'],
'surelyness': ['certainlyness', 'definitelyness', 'absolutelyness', 'undoubtedlyness', 'unquestionablyness', 'positivelyness'],
'undoubtedly': ['certainly', 'definitely', 'absolutely', 'surely', 'unquestionably', 'positively'],
'undoubtedlyness': ['certainlyness', 'definitelyness', 'absolutelyness', 'surelyness', 'unquestionablyness', 'positivelyness'],
'unquestionably': ['certainly', 'definitely', 'absolutely', 'surely', 'undoubtedly', 'positively'],
'unquestionablyness': ['certainlyness', 'definitelyness', 'absolutelyness', 'surelyness', 'undoubtedlyness', 'positivelyness'],
'positively': ['certainly', 'definitely', 'absolutely', 'surely', 'undoubtedly', 'unquestionably'],
'positivelyness': ['certainlyness', 'definitelyness', 'absolutelyness', 'surelyness', 'undoubtedlyness', 'unquestionablyness'],
'perhaps': ['maybe', 'possibly', 'potentially', 'conceivably', 'perchance', 'could be'],
'perhapsness': ['maybeness', 'possiblyness', 'potentiallyness', 'conceivablyness', 'perchanceness', 'could beness'],
'maybe': ['perhaps', 'possibly', 'potentially', 'conceivably', 'perchance', 'could be'],
'maybeness': ['perhapsness', 'possiblyness', 'potentiallyness', 'conceivablyness', 'perchanceness', 'could beness'],
'possibly': ['perhaps', 'maybe', 'potentially', 'conceivably', 'perchance', 'could be'],
'possiblyness': ['perhapsness', 'maybeness', 'potentiallyness', 'conceivablyness', 'perchanceness', 'could beness'],
'potentially': ['perhaps', 'maybe', 'possibly', 'conceivably', 'perchance', 'could be'],
'potentiallyness': ['perhapsness', 'maybeness', 'possiblyness', 'conceivablyness', 'perchanceness', 'could beness'],
'conceivably': ['perhaps', 'maybe', 'possibly', 'potentially', 'perchance', 'could be'],
'conceivablyness': ['perhapsness', 'maybeness', 'possiblyness', 'potentiallyness', 'perchanceness', 'could beness'],
'perchance': ['perhaps', 'maybe', 'possibly', 'potentially', 'conceivably', 'could be'],
'perchanceness': ['perhapsness', 'maybeness', 'possiblyness', 'potentiallyness', 'conceivablyness', 'could beness'],
'probably': ['likely', 'most likely', 'in all likelihood', 'presumably', 'doubtless', 'no doubt'],
'probablyness': ['likelyness', 'most likelyness', 'in all likelihoodness', 'presumablyness', 'doubtlessness', 'no doubtness'],
'likely': ['probably', 'most likely', 'in all likelihood', 'presumably', 'doubtless', 'no doubt'],
'likelyness': ['probablyness', 'most likelyness', 'in all likelihoodness', 'presumablyness', 'doubtlessness', 'no doubtness'],
'unlikely': ['improbable', 'doubtful', 'questionable', 'uncertain', 'not likely', 'not probable'],
'unlikelyness': ['improbableness', 'doubtfulness', 'questionableness', 'uncertainness', 'not likelyness', 'not probableness'],
'improbable': ['unlikely', 'doubtful', 'questionable', 'uncertain', 'not likely', 'not probable'],
'improbableness': ['unlikelyness', 'doubtfulness', 'questionableness', 'uncertainness', 'not likelyness', 'not probableness'],
'doubtful': ['uncertain', 'questionable', 'unsure', 'skeptical', 'dubious', 'suspicious'],
'doubtfulness': ['uncertainness', 'questionableness', 'unsureness', 'skepticism', 'dubiousness', 'suspiciousness'],
'uncertain': ['doubtful', 'questionable', 'unsure', 'skeptical', 'dubious', 'suspicious'],
'uncertainness': ['doubtfulness', 'questionableness', 'unsureness', 'skepticism', 'dubiousness', 'suspiciousness'],
'questionable': ['doubtful', 'uncertain', 'unsure', 'skeptical', 'dubious', 'suspicious'],
'questionableness': ['doubtfulness', 'uncertainness', 'unsureness', 'skepticism', 'dubiousness', 'suspiciousness'],
'sure': ['certain', 'confident', 'positive', 'convinced', 'assured', 'definite'],
'sureness': ['certainty', 'confidence', 'positivity', 'conviction', 'assurance', 'definiteness'],
'certain': ['sure', 'confident', 'positive', 'convinced', 'assured', 'definite'],
'certainty': ['sureness', 'confidence', 'positivity', 'conviction', 'assurance', 'definiteness'],
'confident': ['sure', 'certain', 'positive', 'convinced', 'assured', 'definite'],
'confidence': ['sureness', 'certainty', 'positivity', 'conviction', 'assurance', 'definiteness'],
'positive': ['sure', 'certain', 'confident', 'convinced', 'assured', 'definite'],
'positivity': ['sureness', 'certainty', 'confidence', 'conviction', 'assurance', 'definiteness'],
'convinced': ['sure', 'certain', 'confident', 'positive', 'assured', 'definite'],
'conviction': ['sureness', 'certainty', 'confidence', 'positivity', 'assurance', 'definiteness'],
'assured': ['sure', 'certain', 'confident', 'positive', 'convinced', 'definite'],
'assurance': ['sureness', 'certainty', 'confidence', 'positivity', 'conviction', 'definiteness'],
'definite': ['sure', 'certain', 'confident', 'positive', 'convinced', 'assured'],
'definiteness': ['sureness', 'certainty', 'confidence', 'positivity', 'conviction', 'assurance'],
'hope': ['wish', 'desire', 'expect', 'anticipate', 'look forward to', 'yearn'],
'hopefulness': ['wishfulness', 'desirefulness', 'expectation', 'anticipation', 'look forward toness', 'yearning'],
'wish': ['hope', 'desire', 'want', 'long for', 'yearn for', 'crave'],
'wishfulness': ['hopefulness', 'desirefulness', 'wantness', 'long forness', 'yearn forness', 'craving'],
'desire': ['want', 'wish', 'hope', 'long for', 'yearn for', 'crave'],
'desirefulness': ['wantness', 'wishfulness', 'hopefulness', 'long forness', 'yearn forness', 'craving'],
'want': ['desire', 'wish', 'hope', 'long for', 'yearn for', 'crave'],
'wantness': ['desirefulness', 'wishfulness', 'hopefulness', 'long forness', 'yearn forness', 'craving'],
'need': ['require', 'necessitate', 'demand', 'lack', 'miss', 'be without'],
'needfulness': ['requirement', 'necessitation', 'demand', 'lackness', 'missness', 'be withoutness'],
'require': ['need', 'necessitate', 'demand', 'lack', 'miss', 'be without'],
'requirement': ['needfulness', 'necessitation', 'demand', 'lackness', 'missness', 'be withoutness'],
'necessitate': ['need', 'require', 'demand', 'lack', 'miss', 'be without'],
'necessitation': ['needfulness', 'requirement', 'demand', 'lackness', 'missness', 'be withoutness'],
'demand': ['need', 'require', 'necessitate', 'lack', 'miss', 'be without'],
'demandness': ['needfulness', 'requirement', 'necessitation', 'lackness', 'missness', 'be withoutness'],
'lack': ['need', 'require', 'necessitate', 'demand', 'miss', 'be without'],
'lackness': ['needfulness', 'requirement', 'necessitation', 'demand', 'missness', 'be withoutness'],
'miss': ['lack', 'need', 'require', 'necessitate', 'demand', 'be without'],
'missness': ['lackness', 'needfulness', 'requirement', 'necessitation', 'demand', 'be withoutness'],
'be without': ['lack', 'need', 'require', 'necessitate', 'demand', 'miss'],
'be withoutness': ['lackness', 'needfulness', 'requirement', 'necessitation', 'demand', 'missness'],
'have': ['possess', 'own', 'hold', 'contain', 'maintain', 'retain'],
'haveness': ['possession', 'ownership', 'holding', 'containment', 'maintenance', 'retention'],
'possess': ['have', 'own', 'hold', 'contain', 'maintain', 'retain'],
'possession': ['haveness', 'ownership', 'holding', 'containment', 'maintenance', 'retention'],
'own': ['have', 'possess', 'hold', 'contain', 'maintain', 'retain'],
'ownership': ['haveness', 'possession', 'holding', 'containment', 'maintenance', 'retention'],
'hold': ['have', 'possess', 'own', 'contain', 'maintain', 'retain'],
'holding': ['haveness', 'possession', 'ownership', 'containment', 'maintenance', 'retention'],
'contain': ['have', 'possess', 'own', 'hold', 'maintain', 'retain'],
'containment': ['haveness', 'possession', 'ownership', 'holding', 'maintenance', 'retention'],
'maintain': ['have', 'possess', 'own', 'hold', 'contain', 'retain'],
'maintenance': ['haveness', 'possession', 'ownership', 'holding', 'containment', 'retention'],
'retain': ['have', 'possess', 'own', 'hold', 'contain', 'maintain'],
'retention': ['haveness', 'possession', 'ownership', 'holding', 'containment', 'maintenance'],
'get': ['obtain', 'acquire', 'receive', 'gain', 'secure', 'attain'],
'getness': ['obtainment', 'acquirement', 'receipt', 'gain', 'security', 'attainment'],
'obtain': ['get', 'acquire', 'receive', 'gain', 'secure', 'attain'],
'obtainment': ['getness', 'acquirement', 'receipt', 'gain', 'security', 'attainment'],
'acquire': ['get', 'obtain', 'receive', 'gain', 'secure', 'attain'],
'acquirement': ['getness', 'obtainment', 'receipt', 'gain', 'security', 'attainment'],
'receive': ['get', 'obtain', 'acquire', 'gain', 'secure', 'attain'],
'receipt': ['getness', 'obtainment', 'acquirement', 'gain', 'security', 'attainment'],
'gain': ['get', 'obtain', 'acquire', 'receive', 'secure', 'attain'],
'gainness': ['getness', 'obtainment', 'acquirement', 'receipt', 'security', 'attainment'],
'secure': ['get', 'obtain', 'acquire', 'receive', 'gain', 'attain'],
'security': ['getness', 'obtainment', 'acquirement', 'receipt', 'gain', 'attainment'],
'attain': ['get', 'obtain', 'acquire', 'receive', 'gain', 'secure'],
'attainment': ['getness', 'obtainment', 'acquirement', 'receipt', 'gain', 'security'],
'give': ['provide', 'offer', 'present', 'grant', 'bestow', 'supply'],
'giveness': ['provision', 'offering', 'presentation', 'granting', 'bestowal', 'supply'],
'provide': ['give', 'offer', 'present', 'grant', 'bestow', 'supply'],
'provision': ['giveness', 'offering', 'presentation', 'granting', 'bestowal', 'supply'],
'offer': ['give', 'provide', 'present', 'grant', 'bestow', 'supply'],
'offering': ['giveness', 'provision', 'presentation', 'granting', 'bestowal', 'supply'],
'present': ['give', 'provide', 'offer', 'grant', 'bestow', 'supply'],
'presentation': ['giveness', 'provision', 'offering', 'granting', 'bestowal', 'supply'],
'grant': ['give', 'provide', 'offer', 'present', 'bestow', 'supply'],
'granting': ['giveness', 'provision', 'offering', 'presentation', 'bestowal', 'supply'],
'bestow': ['give', 'provide', 'offer', 'present', 'grant', 'supply'],
'bestowal': ['giveness', 'provision', 'offering', 'presentation', 'granting', 'supply'],
'supply': ['give', 'provide', 'offer', 'present', 'grant', 'bestow'],
'supplyness': ['giveness', 'provision', 'offering', 'presentation', 'granting', 'bestowal'],
'take': ['get', 'obtain', 'acquire', 'receive', 'gain', 'secure'],
'takeness': ['getness', 'obtainment', 'acquirement', 'receipt', 'gain', 'security'],
'make': ['create', 'produce', 'generate', 'construct', 'build', 'manufacture'],
'makness': ['creation', 'production', 'generation', 'construction', 'building', 'manufacture'],
'create': ['make', 'produce', 'generate', 'construct', 'build', 'manufacture'],
'creation': ['makness', 'production', 'generation', 'construction', 'building', 'manufacture'],
'produce': ['make', 'create', 'generate', 'construct', 'build', 'manufacture'],
'production': ['makness', 'creation', 'generation', 'construction', 'building', 'manufacture'],
'generate': ['make', 'create', 'produce', 'construct', 'build', 'manufacture'],
'generation': ['makness', 'creation', 'production', 'construction', 'building', 'manufacture'],
'construct': ['make', 'create', 'produce', 'generate', 'build', 'manufacture'],
'construction': ['makness', 'creation', 'production', 'generation', 'building', 'manufacture'],
'build': ['make', 'create', 'produce', 'generate', 'construct', 'manufacture'],
'building': ['makness', 'creation', 'production', 'generation', 'construction', 'manufacture'],
'manufacture': ['make', 'create', 'produce', 'generate', 'construct', 'build'],
'manufactureness': ['makness', 'creation', 'production', 'generation', 'construction', 'building'],
'do': ['perform', 'execute', 'accomplish', 'carry out', 'achieve', 'complete'],
'doness': ['performance', 'execution', 'accomplishment', 'carrying out', 'achievement', 'completion'],
'perform': ['do', 'execute', 'accomplish', 'carry out', 'achieve', 'complete'],
'performance': ['doness', 'execution', 'accomplishment', 'carrying out', 'achievement', 'completion'],
'execute': ['do', 'perform', 'accomplish', 'carry out', 'achieve', 'complete'],
'execution': ['doness', 'performance', 'accomplishment', 'carrying out', 'achievement', 'completion'],
'accomplish': ['do', 'perform', 'execute', 'carry out', 'achieve', 'complete'],
'accomplishment': ['doness', 'performance', 'execution', 'carrying out', 'achievement', 'completion'],
'carry out': ['do', 'perform', 'execute', 'accomplish', 'achieve', 'complete'],
'carrying out': ['doness', 'performance', 'execution', 'accomplishment', 'achievement', 'completion'],
'achieve': ['do', 'perform', 'execute', 'accomplish', 'carry out', 'complete'],
'achievement': ['doness', 'performance', 'execution', 'accomplishment', 'carrying out', 'completion'],
'complete': ['do', 'perform', 'execute', 'accomplish', 'carry out', 'achieve'],
'completion': ['doness', 'performance', 'execution', 'accomplishment', 'carrying out', 'achievement'],
'say': ['state', 'express', 'declare', 'announce', 'mention', 'communicate'],
'sayness': ['statement', 'expression', 'declaration', 'announcement', 'mention', 'communication'],
'state': ['say', 'express', 'declare', 'announce', 'mention', 'communicate'],
'statement': ['sayness', 'expression', 'declaration', 'announcement', 'mention', 'communication'],
'express': ['say', 'state', 'declare', 'announce', 'mention', 'communicate'],
'expression': ['sayness', 'statement', 'declaration', 'announcement', 'mention', 'communication'],
'declare': ['say', 'state', 'express', 'announce', 'mention', 'communicate'],
'declaration': ['sayness', 'statement', 'expression', 'announcement', 'mention', 'communication'],
'announce': ['say', 'state', 'express', 'declare', 'mention', 'communicate'],
'announcement': ['sayness', 'statement', 'expression', 'declaration', 'mention', 'communication'],
'mention': ['say', 'state', 'express', 'declare', 'announce', 'communicate'],
'mentionness': ['sayness', 'statement', 'expression', 'declaration', 'announcement', 'communication'],
'communicate': ['say', 'state', 'express', 'declare', 'announce', 'mention'],
'communication': ['sayness', 'statement', 'expression', 'declaration', 'announcement', 'mention'],
'tell': ['inform', 'communicate', 'reveal', 'disclose', 'explain', 'narrate'],
'tellness': ['information', 'communication', 'revelation', 'disclosure', 'explanation', 'narration'],
'inform': ['tell', 'communicate', 'reveal', 'disclose', 'explain', 'narrate'],
'information': ['tellness', 'communication', 'revelation', 'disclosure', 'explanation', 'narration'],
'reveal': ['tell', 'inform', 'communicate', 'disclose', 'explain', 'narrate'],
'revelation': ['tellness', 'information', 'communication', 'disclosure', 'explanation', 'narration'],
'disclose': ['tell', 'inform', 'communicate', 'reveal', 'explain', 'narrate'],
'disclosure': ['tellness', 'information', 'communication', 'revelation', 'explanation', 'narration'],
'explain': ['tell', 'inform', 'communicate', 'reveal', 'disclose', 'narrate'],
'explanation': ['tellness', 'information', 'communication', 'revelation', 'disclosure', 'narration'],
'narrate': ['tell', 'inform', 'communicate', 'reveal', 'disclose', 'explain'],
'narration': ['tellness', 'information', 'communication', 'revelation', 'disclosure', 'explanation'],
'ask': ['inquire', 'question', 'query', 'request', 'demand', 'seek'],
'askness': ['inquiry', 'question', 'query', 'request', 'demand', 'seeking'],
'inquire': ['ask', 'question', 'query', 'request', 'demand', 'seek'],
'inquiry': ['askness', 'question', 'query', 'request', 'demand', 'seeking'],
'question': ['ask', 'inquire', 'query', 'request', 'demand', 'seek'],
'questionness': ['askness', 'inquiry', 'query', 'request', 'demand', 'seeking'],
'query': ['ask', 'inquire', 'question', 'request', 'demand', 'seek'],
'queryness': ['askness', 'inquiry', 'question', 'request', 'demand', 'seeking'],
'request': ['ask', 'inquire', 'question', 'query', 'demand', 'seek'],
'requestness': ['askness', 'inquiry', 'question', 'query', 'demand', 'seeking'],
'demand': ['ask', 'inquire', 'question', 'query', 'request', 'seek'],
'demandness': ['askness', 'inquiry', 'question', 'query', 'request', 'seeking'],
'seek': ['ask', 'inquire', 'question', 'query', 'request', 'demand'],
'seeking': ['askness', 'inquiry', 'question', 'query', 'request', 'demand'],
'work': ['labor', 'toil', 'effort', 'endeavor', 'strive', 'perform'],
'workness': ['labor', 'toil', 'effort', 'endeavor', 'striving', 'performance'],
'labor': ['work', 'toil', 'effort', 'endeavor', 'strive', 'perform'],
'laboring': ['workness', 'toil', 'effort', 'endeavor', 'striving', 'performance'],
'toil': ['work', 'labor', 'effort', 'endeavor', 'strive', 'perform'],
'toiling': ['workness', 'labor', 'effort', 'endeavor', 'striving', 'performance'],
'effort': ['work', 'labor', 'toil', 'endeavor', 'strive', 'perform'],
'effortness': ['workness', 'labor', 'toil', 'endeavor', 'striving', 'performance'],
'endeavor': ['work', 'labor', 'toil', 'effort', 'strive', 'perform'],
'endeavorness': ['workness', 'labor', 'toil', 'effort', 'striving', 'performance'],
'strive': ['work', 'labor', 'toil', 'effort', 'endeavor', 'perform'],
'striving': ['workness', 'labor', 'toil', 'effort', 'endeavor', 'performance'],
'perform': ['work', 'labor', 'toil', 'effort', 'endeavor', 'strive'],
'performance': ['workness', 'labor', 'toil', 'effort', 'endeavor', 'striving'],
'play': ['have fun', 'amuse oneself', 'recreate', 'entertain oneself', 'enjoy oneself', 'frolic'],
'playness': ['fun having', 'amusement', 'recreation', 'entertainment', 'enjoyment', 'frolicking'],
'have fun': ['play', 'amuse oneself', 'recreate', 'entertain oneself', 'enjoy oneself', 'frolic'],
'fun having': ['playness', 'amusement', 'recreation', 'entertainment', 'enjoyment', 'frolicking'],
'amuse oneself': ['play', 'have fun', 'recreate', 'entertain oneself', 'enjoy oneself', 'frolic'],
'amusement': ['playness', 'fun having', 'recreation', 'entertainment', 'enjoyment', 'frolicking'],
'recreate': ['play', 'have fun', 'amuse oneself', 'entertain oneself', 'enjoy oneself', 'frolic'],
'recreation': ['playness', 'fun having', 'amusement', 'entertainment', 'enjoyment', 'frolicking'],
'entertain oneself': ['play', 'have fun', 'amuse oneself', 'recreate', 'enjoy oneself', 'frolic'],
'entertainment': ['playness', 'fun having', 'amusement', 'recreation', 'enjoyment', 'frolicking'],
'enjoy oneself': ['play', 'have fun', 'amuse oneself', 'recreate', 'entertain oneself', 'frolic'],
'enjoyment': ['playness', 'fun having', 'amusement', 'recreation', 'entertainment', 'frolicking'],
'frolic': ['play', 'have fun', 'amuse oneself', 'recreate', 'entertain oneself', 'enjoy oneself'],
'frolicking': ['playness', 'fun having', 'amusement', 'recreation', 'entertainment', 'enjoyment'],
'love': ['adore', 'cherish', 'treasure', 'value', 'appreciate', 'be fond of'],
'loveness': ['adoration', 'cherishing', 'treasuring', 'valuing', 'appreciation', 'fondness'],
'adore': ['love', 'cherish', 'treasure', 'value', 'appreciate', 'be fond of'],
'adoration': ['loveness', 'cherishing', 'treasuring', 'valuing', 'appreciation', 'fondness'],
'cherish': ['love', 'adore', 'treasure', 'value', 'appreciate', 'be fond of'],
'cherishing': ['loveness', 'adoration', 'treasuring', 'valuing', 'appreciation', 'fondness'],
'treasure': ['love', 'adore', 'cherish', 'value', 'appreciate', 'be fond of'],
'treasuring': ['loveness', 'adoration', 'cherishing', 'valuing', 'appreciation', 'fondness'],
'value': ['love', 'adore', 'cherish', 'treasure', 'appreciate', 'be fond of'],
'valuing': ['loveness', 'adoration', 'cherishing', 'treasuring', 'appreciation', 'fondness'],
'appreciate': ['love', 'adore', 'cherish', 'treasure', 'value', 'be fond of'],
'appreciation': ['loveness', 'adoration', 'cherishing', 'treasuring', 'valuing', 'fondness'],
'be fond of': ['love', 'adore', 'cherish', 'treasure', 'value', 'appreciate'],
'fondness': ['loveness', 'adoration', 'cherishing', 'treasuring', 'valuing', 'appreciation'],
'hate': ['detest', 'despise', 'loathe', 'abhor', 'dislike', 'revile'],
'hateness': ['detestation', 'despising', 'loathing', 'abhorrence', 'dislike', 'revilement'],
'detest': ['hate', 'despise', 'loathe', 'abhor', 'dislike', 'revile'],
'detestation': ['hateness', 'despising', 'loathing', 'abhorrence', 'dislike', 'revilement'],
'despise': ['hate', 'detest', 'loathe', 'abhor', 'dislike', 'revile'],
'despising': ['hateness', 'detestation', 'loathing', 'abhorrence', 'dislike', 'revilement'],
'loathe': ['hate', 'detest', 'despise', 'abhor', 'dislike', 'revile'],
'loathing': ['hateness', 'detestation', 'despising', 'abhorrence', 'dislike', 'revilement'],
'abhor': ['hate', 'detest', 'despise', 'loathe', 'dislike', 'revile'],
'abhorrence': ['hateness', 'detestation', 'despising', 'loathing', 'dislike', 'revilement'],
'dislike': ['hate', 'detest', 'despise', 'loathe', 'abhor', 'revile'],
'dislikeness': ['hateness', 'detestation', 'despising', 'loathing', 'abhorrence', 'revilement'],
'revile': ['hate', 'detest', 'despise', 'loathe', 'abhor', 'dislike'],
'revilement': ['hateness', 'detestation', 'despising', 'loathing', 'abhorrence', 'dislikeness'],
'like': ['enjoy', 'prefer', 'be fond of', 'admire', 'appreciate', 'favor'],
'likeness': ['enjoyment', 'preference', 'fondness', 'admiration', 'appreciation', 'favor'],
'enjoy': ['like', 'prefer', 'be fond of', 'admire', 'appreciate', 'favor'],
'enjoyment': ['likeness', 'preference', 'fondness', 'admiration', 'appreciation', 'favor'],
'prefer': ['like', 'enjoy', 'be fond of', 'admire', 'appreciate', 'favor'],
'preference': ['likeness', 'enjoyment', 'fondness', 'admiration', 'appreciation', 'favor'],
'be fond of': ['like', 'enjoy', 'prefer', 'admire', 'appreciate', 'favor'],
'fondness': ['likeness', 'enjoyment', 'preference', 'admiration', 'appreciation', 'favor'],
'admire': ['like', 'enjoy', 'prefer', 'be fond of', 'appreciate', 'favor'],
'admiration': ['likeness', 'enjoyment', 'preference', 'fondness', 'appreciation', 'favor'],
'appreciate': ['like', 'enjoy', 'prefer', 'be fond of', 'admire', 'favor'],
'appreciation': ['likeness', 'enjoyment', 'preference', 'fondness', 'admiration', 'favor'],
'favor': ['like', 'enjoy', 'prefer', 'be fond of', 'admire', 'appreciate'],
'favorableness': ['likeness', 'enjoyment', 'preference', 'fondness', 'admiration', 'appreciation'],
'want': ['desire', 'wish', 'hope', 'long for', 'yearn for', 'crave'],
'wantness': ['desirefulness', 'wishfulness', 'hopefulness', 'long forness', 'yearn forness', 'craving'],
'desire': ['want', 'wish', 'hope', 'long for', 'yearn for', 'crave'],
'desirefulness': ['wantness', 'wishfulness', 'hopefulness', 'long forness', 'yearn forness', 'craving'],
'wish': ['want', 'desire', 'hope', 'long for', 'yearn for', 'crave'],
'wishfulness': ['wantness', 'desirefulness', 'hopefulness', 'long forness', 'yearn forness', 'craving'],
'hope': ['want', 'desire', 'wish', 'long for', 'yearn for', 'crave'],
'hopefulness': ['wantness', 'desirefulness', 'wishfulness', 'long forness', 'yearn forness', 'craving'],
'long for': ['want', 'desire', 'wish', 'hope', 'yearn for', 'crave'],
'long forness': ['wantness', 'desirefulness', 'wishfulness', 'hopefulness', 'yearn forness', 'craving'],
'yearn for': ['want', 'desire', 'wish', 'hope', 'long for', 'crave'],
'yearn forness': ['wantness', 'desirefulness', 'wishfulness', 'hopefulness', 'long forness', 'craving'],
'crave': ['want', 'desire', 'wish', 'hope', 'long for', 'yearn for'],
'craving': ['wantness', 'desirefulness', 'wishfulness', 'hopefulness', 'long forness', 'yearn forness'],
'need': ['require', 'necessitate', 'demand', 'lack', 'miss', 'be without'],
'needfulness': ['requirement', 'necessitation', 'demand', 'lackness', 'missness', 'be withoutness'],
'require': ['need', 'necessitate', 'demand', 'lack', 'miss', 'be without'],
'requirement': ['needfulness', 'necessitation', 'demand', 'lackness', 'missness', 'be withoutness'],
'necessitate': ['need', 'require', 'demand', 'lack', 'miss', 'be without'],
'necessitation': ['needfulness', 'requirement', 'demand', 'lackness', 'missness', 'be withoutness'],
'demand': ['need', 'require', 'necessitate', 'lack', 'miss', 'be without'],
'demandness': ['needfulness', 'requirement', 'necessitation', 'lackness', 'missness', 'be withoutness'],
'lack': ['need', 'require', 'necessitate', 'demand', 'miss', 'be without'],
'lackness': ['needfulness', 'requirement', 'necessitation', 'demand', 'missness', 'be withoutness'],
'miss': ['lack', 'need', 'require', 'necessitate', 'demand', 'be without'],
'missness': ['lackness', 'needfulness', 'requirement', 'necessitation', 'demand', 'be withoutness'],
'be without': ['lack', 'need', 'require', 'necessitate', 'demand', 'miss'],
'be withoutness': ['lackness', 'needfulness', 'requirement', 'necessitation', 'demand', 'missness'],
'believe': ['think', 'suppose', 'reckon', 'feel', 'consider', 'judge'],
'believeness': ['thinking', 'supposing', 'reckoning', 'feeling', 'considering', 'judging'],
'think': ['believe', 'suppose', 'reckon', 'feel', 'consider', 'judge'],
'thinking': ['believeness', 'supposing', 'reckoning', 'feeling', 'considering', 'judging'],
'suppose': ['believe', 'think', 'reckon', 'feel', 'consider', 'judge'],
'supposing': ['believeness', 'thinking', 'reckoning', 'feeling', 'considering', 'judging'],
'reckon': ['believe', 'think', 'suppose', 'feel', 'consider', 'judge'],
'reckoning': ['believeness', 'thinking', 'supposing', 'feeling', 'considering', 'judging'],
'feel': ['believe', 'think', 'suppose', 'reckon', 'consider', 'judge'],
'feeling': ['believeness', 'thinking', 'supposing', 'reckoning', 'considering', 'judging'],
'consider': ['believe', 'think', 'suppose', 'reckon', 'feel', 'judge'],
'considering': ['believeness', 'thinking', 'supposing', 'reckoning', 'feeling', 'judging'],
'judge': ['believe', 'think', 'suppose', 'reckon', 'feel', 'consider'],
'judging': ['believeness', 'thinking', 'supposing', 'reckoning', 'feeling', 'considering'],
'know': ['understand', 'comprehend', 'realize', 'recognize', 'be aware of', 'be familiar with'],
'knowness': ['understanding', 'comprehension', 'realization', 'recognition', 'awareness', 'familiarity'],
'understand': ['know', 'comprehend', 'realize', 'recognize', 'be aware of', 'be familiar with'],
'understanding': ['knowness', 'comprehension', 'realization', 'recognition', 'awareness', 'familiarity'],
'comprehend': ['know', 'understand', 'realize', 'recognize', 'be aware of', 'be familiar with'],
'comprehension': ['knowness', 'understanding', 'realization', 'recognition', 'awareness', 'familiarity'],
'realize': ['know', 'understand', 'comprehend', 'recognize', 'be aware of', 'be familiar with'],
'realization': ['knowness', 'understanding', 'comprehension', 'recognition', 'awareness', 'familiarity'],
'recognize': ['know', 'understand', 'comprehend', 'realize', 'be aware of', 'be familiar with'],
'recognition': ['knowness', 'understanding', 'comprehension', 'realization', 'awareness', 'familiarity'],
'be aware of': ['know', 'understand', 'comprehend', 'realize', 'recognize', 'be familiar with'],
'awareness': ['knowness', 'understanding', 'comprehension', 'realization', 'recognition', 'familiarity'],
'be familiar with': ['know', 'understand', 'comprehend', 'realize', 'recognize', 'be aware of'],
'familiarity': ['knowness', 'understanding', 'comprehension', 'realization', 'recognition', 'awareness'],
'remember': ['recall', 'recollect', 'reminisce', 'think of', 'bear in mind', 'keep in mind'],
'rememberness': ['recall', 'recollecting', 'reminiscing', 'thinking of', 'bearing in mind', 'keeping in mind'],
'recall': ['remember', 'recollect', 'reminisce', 'think of', 'bear in mind', 'keep in mind'],
'recalling': ['rememberness', 'recollecting', 'reminiscing', 'thinking of', 'bearing in mind', 'keeping in mind'],
'recollect': ['remember', 'recall', 'reminisce', 'think of', 'bear in mind', 'keep in mind'],
'recollecting': ['rememberness', 'recalling', 'reminiscing', 'thinking of', 'bearing in mind', 'keeping in mind'],
'reminisce': ['remember', 'recall', 'recollect', 'think of', 'bear in mind', 'keep in mind'],
'reminiscing': ['rememberness', 'recalling', 'recollecting', 'thinking of', 'bearing in mind', 'keeping in mind'],
'think of': ['remember', 'recall', 'recollect', 'reminisce', 'bear in mind', 'keep in mind'],
'thinking of': ['rememberness', 'recalling', 'recollecting', 'reminiscing', 'bearing in mind', 'keeping in mind'],
'bear in mind': ['remember', 'recall', 'recollect', 'reminisce', 'think of', 'keep in mind'],
'bearing in mind': ['rememberness', 'recalling', 'recollecting', 'reminiscing', 'thinking of', 'keeping in mind'],
'keep in mind': ['remember', 'recall', 'recollect', 'reminisce', 'think of', 'bear in mind'],
'keeping in mind': ['rememberness', 'recalling', 'recollecting', 'reminiscing', 'thinking of', 'bearing in mind'],
'forget': ['disremember', 'unremember', 'fail to remember', 'lose memory of', 'be unable to recall', 'let slip'],
'forgetness': ['disremembering', 'unremembering', 'failing to remember', 'losing memory of', 'being unable to recall', 'letting slip'],
'disremember': ['forget', 'unremember', 'fail to remember', 'lose memory of', 'be unable to recall', 'let slip'],
'disremembering': ['forgetness', 'unremembering', 'failing to remember', 'losing memory of', 'being unable to recall', 'letting slip'],
'unremember': ['forget', 'disremember', 'fail to remember', 'lose memory of', 'be unable to recall', 'let slip'],
'unremembering': ['forgetness', 'disremembering', 'failing to remember', 'losing memory of', 'being unable to recall', 'letting slip'],
'fail to remember': ['forget', 'disremember', 'unremember', 'lose memory of', 'be unable to recall', 'let slip'],
'failing to remember': ['forgetness', 'disremembering', 'unremembering', 'losing memory of', 'being unable to recall', 'letting slip'],
'lose memory of': ['forget', 'disremember', 'unremember', 'fail to remember', 'be unable to recall', 'let slip'],
'losing memory of': ['forgetness', 'disremembering', 'unremembering', 'failing to remember', 'being unable to recall', 'letting slip'],
'be unable to recall': ['forget', 'disremember', 'unremember', 'fail to remember', 'lose memory of', 'let slip'],
'being unable to recall': ['forgetness', 'disremembering', 'unremembering', 'failing to remember', 'losing memory of', 'letting slip'],
'let slip': ['forget', 'disremember', 'unremember', 'fail to remember', 'lose memory of', 'be unable to recall'],
'letting slip': ['forgetness', 'disremembering', 'unremembering', 'failing to remember', 'losing memory of', 'being unable to recall'],
'learn': ['study', 'acquire knowledge', 'gain knowledge', 'master', 'grasp', 'comprehend'],
'learning': ['studying', 'acquiring knowledge', 'gaining knowledge', 'mastering', 'grasping', 'comprehending'],
'study': ['learn', 'acquire knowledge', 'gain knowledge', 'master', 'grasp', 'comprehend'],
'studying': ['learning', 'acquiring knowledge', 'gaining knowledge', 'mastering', 'grasping', 'comprehending'],
'acquire knowledge': ['learn', 'study', 'gain knowledge', 'master', 'grasp', 'comprehend'],
'acquiring knowledge': ['learning', 'studying', 'gaining knowledge', 'mastering', 'grasping', 'comprehending'],
'gain knowledge': ['learn', 'study', 'acquire knowledge', 'master', 'grasp', 'comprehend'],
'gaining knowledge': ['learning', 'studying', 'acquiring knowledge', 'mastering', 'grasping', 'comprehending'],
'master': ['learn', 'study', 'acquire knowledge', 'gain knowledge', 'grasp', 'comprehend'],
'mastering': ['learning', 'studying', 'acquiring knowledge', 'gaining knowledge', 'grasping', 'comprehending'],
'grasp': ['learn', 'study', 'acquire knowledge', 'gain knowledge', 'master', 'comprehend'],
'grasping': ['learning', 'studying', 'acquiring knowledge', 'gaining knowledge', 'mastering', 'comprehending'],
'comprehend': ['learn', 'study', 'acquire knowledge', 'gain knowledge', 'master', 'grasp'],
'comprehending': ['learning', 'studying', 'acquiring knowledge', 'gaining knowledge', 'mastering', 'grasping'],
'teach': ['instruct', 'educate', 'train', 'coach', 'guide', 'mentor'],
'teaching': ['instructing', 'educating', 'training', 'coaching', 'guiding', 'mentoring'],
'instruct': ['teach', 'educate', 'train', 'coach', 'guide', 'mentor'],
'instructing': ['teaching', 'educating', 'training', 'coaching', 'guiding', 'mentoring'],
'educate': ['teach', 'instruct', 'train', 'coach', 'guide', 'mentor'],
'educating': ['teaching', 'instructing', 'training', 'coaching', 'guiding', 'mentoring'],
'train': ['teach', 'instruct', 'educate', 'coach', 'guide', 'mentor'],
'training': ['teaching', 'instructing', 'educating', 'coaching', 'guiding', 'mentoring'],
'coach': ['teach', 'instruct', 'educate', 'train', 'guide', 'mentor'],
'coaching': ['teaching', 'instructing', 'educating', 'training', 'guiding', 'mentoring'],
'guide': ['teach', 'instruct', 'educate', 'train', 'coach', 'mentor'],
'guiding': ['teaching', 'instructing', 'educating', 'training', 'coaching', 'mentoring'],
'mentor': ['teach', 'instruct', 'educate', 'train', 'coach', 'guide'],
'mentoring': ['teaching', 'instructing', 'educating', 'training', 'coaching', 'guiding'],
'change': ['alter', 'modify', 'adjust', 'transform', 'convert', 'revise'],
'changeness': ['alteration', 'modification', 'adjustment', 'transformation', 'conversion', 'revision'],
'alter': ['change', 'modify', 'adjust', 'transform', 'convert', 'revise'],
'alteration': ['changeness', 'modification', 'adjustment', 'transformation', 'conversion', 'revision'],
'modify': ['change', 'alter', 'adjust', 'transform', 'convert', 'revise'],
'modification': ['changeness', 'alteration', 'adjustment', 'transformation', 'conversion', 'revision'],
'adjust': ['change', 'alter', 'modify', 'transform', 'convert', 'revise'],
'adjustment': ['changeness', 'alteration', 'modification', 'transformation', 'conversion', 'revision'],
'transform': ['change', 'alter', 'modify', 'adjust', 'convert', 'revise'],
'transformation': ['changeness', 'alteration', 'modification', 'adjustment', 'conversion', 'revision'],
'convert': ['change', 'alter', 'modify', 'adjust', 'transform', 'revise'],
'conversion': ['changeness', 'alteration', 'modification', 'adjustment', 'transformation', 'revision'],
'revise': ['change', 'alter', 'modify', 'adjust', 'transform', 'convert'],
'revision': ['changeness', 'alteration', 'modification', 'adjustment', 'transformation', 'conversion'],
'grow': ['increase', 'expand', 'develop', 'progress', 'advance', 'mature'],
'growness': ['increase', 'expansion', 'development', 'progress', 'advancement', 'maturity'],
'increase': ['grow', 'expand', 'develop', 'progress', 'advance', 'mature'],
'increasing': ['growness', 'expansion', 'development', 'progress', 'advancement', 'maturity'],
'expand': ['grow', 'increase', 'develop', 'progress', 'advance', 'mature'],
'expansion': ['growness', 'increase', 'development', 'progress', 'advancement', 'maturity'],
'develop': ['grow', 'increase', 'expand', 'progress', 'advance', 'mature'],
'development': ['growness', 'increase', 'expansion', 'progress', 'advancement', 'maturity'],
'progress': ['grow', 'increase', 'expand', 'develop', 'advance', 'mature'],
'progressing': ['growness', 'increase', 'expansion', 'development', 'advancement', 'maturity'],
'advance': ['grow', 'increase', 'expand', 'develop', 'progress', 'mature'],
'advancement': ['growness', 'increase', 'expansion', 'development', 'progress', 'maturity'],
'mature': ['grow', 'increase', 'expand', 'develop', 'progress', 'advance'],
'maturity': ['growness', 'increase', 'expansion', 'development', 'progress', 'advancement'],
'improve': ['enhance', 'better', 'upgrade', 'refine', 'optimize', 'boost'],
'improvement': ['enhancement', 'betterment', 'upgrade', 'refinement', 'optimization', 'boost'],
'enhance': ['improve', 'better', 'upgrade', 'refine', 'optimize', 'boost'],
'enhancement': ['improvement', 'betterment', 'upgrade', 'refinement', 'optimization', 'boost'],
'better': ['improve', 'enhance', 'upgrade', 'refine', 'optimize', 'boost'],
'betterment': ['improvement', 'enhancement', 'upgrade', 'refinement', 'optimization', 'boost'],
'upgrade': ['improve', 'enhance', 'better', 'refine', 'optimize', 'boost'],
'upgrading': ['improvement', 'enhancement', 'betterment', 'refinement', 'optimization', 'boost'],
'refine': ['improve', 'enhance', 'better', 'upgrade', 'optimize', 'boost'],
'refinement': ['improvement', 'enhancement', 'betterment', 'upgrade', 'optimization', 'boost'],
'optimize': ['improve', 'enhance', 'better', 'upgrade', 'refine', 'boost'],
'optimization': ['improvement', 'enhancement', 'betterment', 'upgrade', 'refinement', 'boost'],
'boost': ['improve', 'enhance', 'better', 'upgrade', 'refine', 'optimize'],
'boosting': ['improvement', 'enhancement', 'betterment', 'upgrade', 'refinement', 'optimization'],
'worsen': ['deteriorate', 'decline', 'degenerate', 'degrade', 'impair', 'weaken'],
'worsening': ['deterioration', 'decline', 'degeneration', 'degradation', 'impairment', 'weakening'],
'deteriorate': ['worsen', 'decline', 'degenerate', 'degrade', 'impair', 'weaken'],
'deterioration': ['worsening', 'decline', 'degeneration', 'degradation', 'impairment', 'weakening'],
'decline': ['worsen', 'deteriorate', 'degenerate', 'degrade', 'impair', 'weaken'],
'declining': ['worsening', 'deterioration', 'degeneration', 'degradation', 'impairment', 'weakening'],
'degenerate': ['worsen', 'deteriorate', 'decline', 'degrade', 'impair', 'weaken'],
'degeneration': ['worsening', 'deterioration', 'decline', 'degradation', 'impairment', 'weakening'],
'degrade': ['worsen', 'deteriorate', 'decline', 'degenerate', 'impair', 'weaken'],
'degradation': ['worsening', 'deterioration', 'decline', 'degeneration', 'impairment', 'weakening'],
'impair': ['worsen', 'deteriorate', 'decline', 'degenerate', 'degrade', 'weaken'],
'impairment': ['worsening', 'deterioration', 'decline', 'degeneration', 'degradation', 'weakening'],
'weaken': ['worsen', 'deteriorate', 'decline', 'degenerate', 'degrade', 'impair'],
'weakening': ['worsening', 'deterioration', 'decline', 'degeneration', 'degradation', 'impairment'],
'help': ['assist', 'aid', 'support', 'guide', 'facilitate', 'enable'],
'helpfulness': ['assistance', 'aid', 'support', 'guidance', 'facilitation', 'enabling'],
'assist': ['help', 'aid', 'support', 'guide', 'facilitate', 'enable'],
'assistance': ['helpfulness', 'aid', 'support', 'guidance', 'facilitation', 'enabling'],
'aid': ['help', 'assist', 'support', 'guide', 'facilitate', 'enable'],
'aiding': ['helpfulness', 'assistance', 'support', 'guidance', 'facilitation', 'enabling'],
'support': ['help', 'assist', 'aid', 'guide', 'facilitate', 'enable'],
'supporting': ['helpfulness', 'assistance', 'aid', 'guidance', 'facilitation', 'enabling'],
'guide': ['help', 'assist', 'aid', 'support', 'facilitate', 'enable'],
'guidance': ['helpfulness', 'assistance', 'aid', 'support', 'facilitation', 'enabling'],
'facilitate': ['help', 'assist', 'aid', 'support', 'guide', 'enable'],
'facilitation': ['helpfulness', 'assistance', 'aid', 'support', 'guidance', 'enabling'],
'enable': ['help', 'assist', 'aid', 'support', 'guide', 'facilitate'],
'enabling': ['helpfulness', 'assistance', 'aid', 'support', 'guidance', 'facilitation'],
'hurt': ['harm', 'injure', 'damage', 'wound', 'impair', 'pain'],
'hurting': ['harming', 'injuring', 'damaging', 'wounding', 'impairing', 'paining'],
'harm': ['hurt', 'injure', 'damage', 'wound', 'impair', 'pain'],
'harming': ['hurting', 'injuring', 'damaging', 'wounding', 'impairing', 'paining'],
'injure': ['hurt', 'harm', 'damage', 'wound', 'impair', 'pain'],
'injuring': ['hurting', 'harming', 'damaging', 'wounding', 'impairing', 'paining'],
'damage': ['hurt', 'harm', 'injure', 'wound', 'impair', 'pain'],
'damaging': ['hurting', 'harming', 'injuring', 'wounding', 'impairing', 'paining'],
'wound': ['hurt', 'harm', 'injure', 'damage', 'impair', 'pain'],
'wounding': ['hurting', 'harming', 'injuring', 'damaging', 'impairing', 'paining'],
'impair': ['hurt', 'harm', 'injure', 'damage', 'wound', 'pain'],
'impairing': ['hurting', 'harming', 'injuring', 'damaging', 'wounding', 'paining'],
'pain': ['hurt', 'harm', 'injure', 'damage', 'wound', 'impair'],
'paining': ['hurting', 'harming', 'injuring', 'damaging', 'wounding', 'impairing'],
'heal': ['cure', 'recover', 'mend', 'repair', 'restore', 'treat'],
'healing': ['curing', 'recovering', 'mending', 'repairing', 'restoring', 'treating'],
'cure': ['heal', 'recover', 'mend', 'repair', 'restore', 'treat'],
'curing': ['healing', 'recovering', 'mending', 'repairing', 'restoring', 'treating'],
'recover': ['heal', 'cure', 'mend', 'repair', 'restore', 'treat'],
'recovering': ['healing', 'curing', 'mending', 'repairing', 'restoring', 'treating'],
'mend': ['heal', 'cure', 'recover', 'repair', 'restore', 'treat'],
'mending': ['healing', 'curing', 'recovering', 'repairing', 'restoring', 'treating'],
'repair': ['heal', 'cure', 'recover', 'mend', 'restore', 'treat'],
'repairing': ['healing', 'curing', 'recovering', 'mending', 'restoring', 'treating'],
'restore': ['heal', 'cure', 'recover', 'mend', 'repair', 'treat'],
'restoring': ['healing', 'curing', 'recovering', 'mending', 'repairing', 'treating'],
'treat': ['heal', 'cure', 'recover', 'mend', 'repair', 'restore'],
'treating': ['healing', 'curing', 'recovering', 'mending', 'repairing', 'restoring'],
'build': ['construct', 'create', 'erect', 'assemble', 'establish', 'fabricate'],
'building': ['constructing', 'creating', 'erecting', 'assembling', 'establishing', 'fabricating'],
'construct': ['build', 'create', 'erect', 'assemble', 'establish', 'fabricate'],
'constructing': ['building', 'creating', 'erecting', 'assembling', 'establishing', 'fabricating'],
'create': ['build', 'construct', 'erect', 'assemble', 'establish', 'fabricate'],
'creating': ['building', 'constructing', 'erecting', 'assembling', 'establishing', 'fabricating'],
'erect': ['build', 'construct', 'create', 'assemble', 'establish', 'fabricate'],
'erecting': ['building', 'constructing', 'creating', 'assembling', 'establishing', 'fabricating'],
'assemble': ['build', 'construct', 'create', 'erect', 'establish', 'fabricate'],
'assembling': ['building', 'constructing', 'creating', 'erecting', 'establishing', 'fabricating'],
'establish': ['build', 'construct', 'create', 'erect', 'assemble', 'fabricate'],
'establishing': ['building', 'constructing', 'creating', 'erecting', 'assembling', 'fabricating'],
'fabricate': ['build', 'construct', 'create', 'erect', 'assemble', 'establish'],
'fabricating': ['building', 'constructing', 'creating', 'erecting', 'assembling', 'establishing'],
'destroy': ['ruin', 'demolish', 'wreck', 'devastate', 'raze', 'obliterate'],
'destroying': ['ruining', 'demolishing', 'wrecking', 'devastating', 'razing', 'obliterating'],
'ruin': ['destroy', 'demolish', 'wreck', 'devastate', 'raze', 'obliterate'],
'ruining': ['destroying', 'demolishing', 'wrecking', 'devastating', 'razing', 'obliterating'],
'demolish': ['destroy', 'ruin', 'wreck', 'devastate', 'raze', 'obliterate'],
'demolishing': ['destroying', 'ruining', 'wrecking', 'devastating', 'razing', 'obliterating'],
'wreck': ['destroy', 'ruin', 'demolish', 'devastate', 'raze', 'obliterate'],
'wrecking': ['destroying', 'ruining', 'demolishing', 'devastating', 'razing', 'obliterating'],
'devastate': ['destroy', 'ruin', 'demolish', 'wreck', 'raze', 'obliterate'],
'devastating': ['destroying', 'ruining', 'demolishing', 'wrecking', 'razing', 'obliterating'],
'raze': ['destroy', 'ruin', 'demolish', 'wreck', 'devastate', 'obliterate'],
'razing': ['destroying', 'ruining', 'demolishing', 'wrecking', 'devastating', 'obliterating'],
'obliterate': ['destroy', 'ruin', 'demolish', 'wreck', 'devastate', 'raze'],
'obliterating': ['destroying', 'ruining', 'demolishing', 'wrecking', 'devastating', 'razing'],
'begin': ['start', 'commence', 'initiate', 'launch', 'kick off', 'get underway'],
'beginning': ['starting', 'commencing', 'initiating', 'launching', 'kicking off', 'getting underway'],
'start': ['begin', 'commence', 'initiate', 'launch', 'kick off', 'get underway'],
'starting': ['beginning', 'commencing', 'initiating', 'launching', 'kicking off', 'getting underway'],
'commence': ['begin', 'start', 'initiate', 'launch', 'kick off', 'get underway'],
'commencing': ['beginning', 'starting', 'initiating', 'launching', 'kicking off', 'getting underway'],
'initiate': ['begin', 'start', 'commence', 'launch', 'kick off', 'get underway'],
'initiating': ['beginning', 'starting', 'commencing', 'launching', 'kicking off', 'getting underway'],
'launch': ['begin', 'start', 'commence', 'initiate', 'kick off', 'get underway'],
'launching': ['beginning', 'starting', 'commencing', 'initiating', 'kicking off', 'getting underway'],
'kick off': ['begin', 'start', 'commence', 'initiate', 'launch', 'get underway'],
'kicking off': ['beginning', 'starting', 'commencing', 'initiating', 'launching', 'getting underway'],
'get underway': ['begin', 'start', 'commence', 'initiate', 'launch', 'kick off'],
'getting underway': ['beginning', 'starting', 'commencing', 'initiating', 'launching', 'kicking off'],
'end': ['finish', 'conclude', 'terminate', 'wrap up', 'finalize', 'complete'],
'ending': ['finishing', 'concluding', 'terminating', 'wrapping up', 'finalizing', 'completing'],
'finish': ['end', 'conclude', 'terminate', 'wrap up', 'finalize', 'complete'],
'finishing': ['ending', 'concluding', 'terminating', 'wrapping up', 'finalizing', 'completing'],
'conclude': ['end', 'finish', 'terminate', 'wrap up', 'finalize', 'complete'],
'concluding': ['ending', 'finishing', 'terminating', 'wrapping up', 'finalizing', 'completing'],
'terminate': ['end', 'finish', 'conclude', 'wrap up', 'finalize', 'complete'],
'terminating': ['ending', 'finishing', 'concluding', 'wrapping up', 'finalizing', 'completing'],
'wrap up': ['end', 'finish', 'conclude', 'terminate', 'finalize', 'complete'],
'wrapping up': ['ending', 'finishing', 'concluding', 'terminating', 'finalizing', 'completing'],
'finalize': ['end', 'finish', 'conclude', 'terminate', 'wrap up', 'complete'],
'finalizing': ['ending', 'finishing', 'concluding', 'terminating', 'wrapping up', 'completing'],
'complete': ['end', 'finish', 'conclude', 'terminate', 'wrap up', 'finalize'],
'completing': ['ending', 'finishing', 'concluding', 'terminating', 'wrapping up', 'finalizing'],
'open': ['uncover', 'reveal', 'expose', 'unfasten', 'unlock', 'unseal'],
'opening': ['uncovering', 'revealing', 'exposing', 'unfastening', 'unlocking', 'unsealing'],
'uncover': ['open', 'reveal', 'expose', 'unfasten', 'unlock', 'unseal'],
'uncovering': ['opening', 'revealing', 'exposing', 'unfastening', 'unlocking', 'unsealing'],
'reveal': ['open', 'uncover', 'expose', 'unfasten', 'unlock', 'unseal'],
'revealing': ['opening', 'uncovering', 'exposing', 'unfastening', 'unlocking', 'unsealing'],
'expose': ['open', 'uncover', 'reveal', 'unfasten', 'unlock', 'unseal'],
'exposing': ['opening', 'uncovering', 'revealing', 'unfastening', 'unlocking', 'unsealing'],
'unfasten': ['open', 'uncover', 'reveal', 'expose', 'unlock', 'unseal'],
'unfastening': ['opening', 'uncovering', 'revealing', 'exposing', 'unlocking', 'unsealing'],
'unlock': ['open', 'uncover', 'reveal', 'expose', 'unfasten', 'unseal'],
'unlocking': ['opening', 'uncovering', 'revealing', 'exposing', 'unfastening', 'unsealing'],
'unseal': ['open', 'uncover', 'reveal', 'expose', 'unfasten', 'unlock'],
'unsealing': ['opening', 'uncovering', 'revealing', 'exposing', 'unfastening', 'unlocking'],
'close': ['shut', 'seal', 'cover', 'enclose', 'fasten', 'lock'],
'closing': ['shutting', 'sealing', 'covering', 'enclosing', 'fastening', 'locking'],
'shut': ['close', 'seal', 'cover', 'enclose', 'fasten', 'lock'],
'shutting': ['closing', 'sealing', 'covering', 'enclosing', 'fastening', 'locking'],
'seal': ['close', 'shut', 'cover', 'enclose', 'fasten', 'lock'],
'sealing': ['closing', 'shutting', 'covering', 'enclosing', 'fastening', 'locking'],
'cover': ['close', 'shut', 'seal', 'enclose', 'fasten', 'lock'],
'covering': ['closing', 'shutting', 'sealing', 'enclosing', 'fastening', 'locking'],
'enclose': ['close', 'shut', 'seal', 'cover', 'fasten', 'lock'],
'enclosing': ['closing', 'shutting', 'sealing', 'covering', 'fastening', 'locking'],
'fasten': ['close', 'shut', 'seal', 'cover', 'enclose', 'lock'],
'fastening': ['closing', 'shutting', 'sealing', 'covering', 'enclosing', 'locking'],
'lock': ['close', 'shut', 'seal', 'cover', 'enclose', 'fasten'],
'locking': ['closing', 'shutting', 'sealing', 'covering', 'enclosing', 'fastening'],
'enter': ['go in', 'come in', 'access', 'penetrate', 'infiltrate', 'invade'],
'entering': ['going in', 'coming in', 'accessing', 'penetrating', 'infiltrating', 'invading'],
'go in': ['enter', 'come in', 'access', 'penetrate', 'infiltrate', 'invade'],
'going in': ['entering', 'coming in', 'accessing', 'penetrating', 'infiltrating', 'invading'],
'come in': ['enter', 'go in', 'access', 'penetrate', 'infiltrate', 'invade'],
'coming in': ['entering', 'going in', 'accessing', 'penetrating', 'infiltrating', 'invading'],
'access': ['enter', 'go in', 'come in', 'penetrate', 'infiltrate', 'invade'],
'accessing': ['entering', 'going in', 'coming in', 'penetrating', 'infiltrating', 'invading'],
'penetrate': ['enter', 'go in', 'come in', 'access', 'infiltrate', 'invade'],
'penetrating': ['entering', 'going in', 'coming in', 'accessing', 'infiltrating', 'invading'],
'infiltrate': ['enter', 'go in', 'come in', 'access', 'penetrate', 'invade'],
'infiltrating': ['entering', 'going in', 'coming in', 'accessing', 'penetrating', 'invading'],
'invade': ['enter', 'go in', 'come in', 'access', 'penetrate', 'infiltrate'],
'invading': ['entering', 'going in', 'coming in', 'accessing', 'penetrating', 'infiltrating'],
'exit': ['leave', 'depart', 'go out', 'come out', 'withdraw', 'retreat'],
'exiting': ['leaving', 'departing', 'going out', 'coming out', 'withdrawing', 'retreating'],
'leave': ['exit', 'depart', 'go out', 'come out', 'withdraw', 'retreat'],
'leaving': ['exiting', 'departing', 'going out', 'coming out', 'withdrawing', 'retreating'],
'depart': ['exit', 'leave', 'go out', 'come out', 'withdraw', 'retreat'],
'departing': ['exiting', 'leaving', 'going out', 'coming out', 'withdrawing', 'retreating'],
'go out': ['exit', 'leave', 'depart', 'come out', 'withdraw', 'retreat'],
'going out': ['exiting', 'leaving', 'departing', 'coming out', 'withdrawing', 'retreating'],
'come out': ['exit', 'leave', 'depart', 'go out', 'withdraw', 'retreat'],
'coming out': ['exiting', 'leaving', 'departing', 'going out', 'withdrawing', 'retreating'],
'withdraw': ['exit', 'leave', 'depart', 'go out', 'come out', 'retreat'],
'withdrawing': ['exiting', 'leaving', 'departing', 'going out', 'coming out', 'retreating'],
'retreat': ['exit', 'leave', 'depart', 'go out', 'come out', 'withdraw'],
'retreating': ['exiting', 'leaving', 'departing', 'going out', 'coming out', 'withdrawing'],
'arrive': ['reach', 'get to', 'come to', 'make it to', 'land at', 'appear at'],
'arriving': ['reaching', 'getting to', 'coming to', 'making it to', 'landing at', 'appearing at'],
'reach': ['arrive', 'get to', 'come to', 'make it to', 'land at', 'appear at'],
'reaching': ['arriving', 'getting to', 'coming to', 'making it to', 'landing at', 'appearing at'],
'get to': ['arrive', 'reach', 'come to', 'make it to', 'land at', 'appear at'],
'getting to': ['arriving', 'reaching', 'coming to', 'making it to', 'landing at', 'appearing at'],
'come to': ['arrive', 'reach', 'get to', 'make it to', 'land at', 'appear at'],
'coming to': ['arriving', 'reaching', 'getting to', 'making it to', 'landing at', 'appearing at'],
'make it to': ['arrive', 'reach', 'get to', 'come to', 'land at', 'appear at'],
'making it to': ['arriving', 'reaching', 'getting to', 'coming to', 'landing at', 'appearing at'],
'land at': ['arrive', 'reach', 'get to', 'come to', 'make it to', 'appear at'],
'landing at': ['arriving', 'reaching', 'getting to', 'coming to', 'making it to', 'appearing at'],
'appear at': ['arrive', 'reach', 'get to', 'come to', 'make it to', 'land at'],
'appearing at': ['arriving', 'reaching', 'getting to', 'coming to', 'making it to', 'landing at'],
'depart': ['leave', 'exit', 'go away', 'set off', 'take off', 'move away'],
'departing': ['leaving', 'exiting', 'going away', 'setting off', 'taking off', 'moving away'],
'leave': ['depart', 'exit', 'go away', 'set off', 'take off', 'move away'],
'leaving': ['departing', 'exiting', 'going away', 'setting off', 'taking off', 'moving away'],
'exit': ['depart', 'leave', 'go away', 'set off', 'take off', 'move away'],
'exiting': ['departing', 'leaving', 'going away', 'setting off', 'taking off', 'moving away'],
'go away': ['depart', 'leave', 'exit', 'set off', 'take off', 'move away'],
'going away': ['departing', 'leaving', 'exiting', 'setting off', 'taking off', 'moving away'],
'set off': ['depart', 'leave', 'exit', 'go away', 'take off', 'move away'],
'setting off': ['departing', 'leaving', 'exiting', 'going away', 'taking off', 'moving away'],
'take off': ['depart', 'leave', 'exit', 'go away', 'set off', 'move away'],
'taking off': ['departing', 'leaving', 'exiting', 'going away', 'setting off', 'moving away'],
'move away': ['depart', 'leave', 'exit', 'go away', 'set off', 'take off'],
'moving away': ['departing', 'leaving', 'exiting', 'going away', 'setting off', 'taking off'],
'approach': ['near', 'come near', 'get close to', 'move toward', 'advance toward', 'draw near'],
'approaching': ['nearing', 'coming near', 'getting close to', 'moving toward', 'advancing toward', 'drawing near'],
'near': ['approach', 'come near', 'get close to', 'move toward', 'advance toward', 'draw near'],
'nearing': ['approaching', 'coming near', 'getting close to', 'moving toward', 'advancing toward', 'drawing near'],
'come near': ['approach', 'near', 'get close to', 'move toward', 'advance toward', 'draw near'],
'coming near': ['approaching', 'nearing', 'getting close to', 'moving toward', 'advancing toward', 'drawing near'],
'get close to': ['approach', 'near', 'come near', 'move toward', 'advance toward', 'draw near'],
'getting close to': ['approaching', 'nearing', 'coming near', 'moving toward', 'advancing toward', 'drawing near'],
'move toward': ['approach', 'near', 'come near', 'get close to', 'advance toward', 'draw near'],
'moving toward': ['approaching', 'nearing', 'coming near', 'getting close to', 'advancing toward', 'drawing near'],
'advance toward': ['approach', 'near', 'come near', 'get close to', 'move toward', 'draw near'],
'advancing toward': ['approaching', 'nearing', 'coming near', 'getting close to', 'moving toward', 'drawing near'],
'draw near': ['approach', 'near', 'come near', 'get close to', 'move toward', 'advance toward'],
'drawing near': ['approaching', 'nearing', 'coming near', 'getting close to', 'moving toward', 'advancing toward'],
'recede': ['move away', 'go away', 'retreat', 'withdraw', 'back away', 'move back'],
'receding': ['moving away', 'going away', 'retreating', 'withdrawing', 'backing away', 'moving back'],
'move away': ['recede', 'go away', 'retreat', 'withdraw', 'back away', 'move back'],
'moving away': ['receding', 'going away', 'retreating', 'withdrawing', 'backing away', 'moving back'],
'go away': ['recede', 'move away', 'retreat', 'withdraw', 'back away', 'move back'],
'going away': ['receding', 'moving away', 'retreating', 'withdrawing', 'backing away', 'moving back'],
'retreat': ['recede', 'move away', 'go away', 'withdraw', 'back away', 'move back'],
'retreating': ['receding', 'moving away', 'going away', 'withdrawing', 'backing away', 'moving back'],
'withdraw': ['recede', 'move away', 'go away', 'retreat', 'back away', 'move back'],
'withdrawing': ['receding', 'moving away', 'going away', 'retreating', 'backing away', 'moving back'],
'back away': ['recede', 'move away', 'go away', 'retreat', 'withdraw', 'move back'],
'backing away': ['receding', 'moving away', 'going away', 'retreating', 'withdrawing', 'moving back'],
'move back': ['recede', 'move away', 'go away', 'retreat', 'withdraw', 'back away'],
'moving back': ['receding', 'moving away', 'going away', 'retreating', 'withdrawing', 'backing away'],
'rise': ['go up', 'ascend', 'climb', 'increase', 'soar', 'elevate'],
'rising': ['going up', 'ascending', 'climbing', 'increasing', 'soaring', 'elevating'],
'go up': ['rise', 'ascend', 'climb', 'increase', 'soar', 'elevate'],
'going up': ['rising', 'ascending', 'climbing', 'increasing', 'soaring', 'elevating'],
'ascend': ['rise', 'go up', 'climb', 'increase', 'soar', 'elevate'],
'ascending': ['rising', 'going up', 'climbing', 'increasing', 'soaring', 'elevating'],
'climb': ['rise', 'go up', 'ascend', 'increase', 'soar', 'elevate'],
'climbing': ['rising', 'going up', 'ascending', 'increasing', 'soaring', 'elevating'],
'increase': ['rise', 'go up', 'ascend', 'climb', 'soar', 'elevate'],
'increasing': ['rising', 'going up', 'ascending', 'climbing', 'soaring', 'elevating'],
'soar': ['rise', 'go up', 'ascend', 'climb', 'increase', 'elevate'],
'soaring': ['rising', 'going up', 'ascending', 'climbing', 'increasing', 'elevating'],
'elevate': ['rise', 'go up', 'ascend', 'climb', 'increase', 'soar'],
'elevating': ['rising', 'going up', 'ascending', 'climbing', 'increasing', 'soaring'],
'fall': ['drop', 'descend', 'plunge', 'decrease', 'plummet', 'sink'],
'falling': ['dropping', 'descending', 'plunging', 'decreasing', 'plummeting', 'sinking'],
'drop': ['fall', 'descend', 'plunge', 'decrease', 'plummet', 'sink'],
'dropping': ['falling', 'descending', 'plunging', 'decreasing', 'plummeting', 'sinking'],
'descend': ['fall', 'drop', 'plunge', 'decrease', 'plummet', 'sink'],
'descending': ['falling', 'dropping', 'plunging', 'decreasing', 'plummeting', 'sinking'],
'plunge': ['fall', 'drop', 'descend', 'decrease', 'plummet', 'sink'],
'plunging': ['falling', 'dropping', 'descending', 'decreasing', 'plummeting', 'sinking'],
'decrease': ['fall', 'drop', 'descend', 'plunge', 'plummet', 'sink'],
'decreasing': ['falling', 'dropping', 'descending', 'plunging', 'plummeting', 'sinking'],
'plummet': ['fall', 'drop', 'descend', 'plunge', 'decrease', 'sink'],
'plummeting': ['falling', 'dropping', 'descending', 'plunging', 'decreasing', 'sinking'],
'sink': ['fall', 'drop', 'descend', 'plunge', 'decrease', 'plummet'],
'sinking': ['falling', 'dropping', 'descending', 'plunging', 'decreasing', 'plummeting'],
'expand': ['grow', 'increase', 'enlarge', 'stretch', 'swell', 'broaden'],
'expanding': ['growing', 'increasing', 'enlarging', 'stretching', 'swelling', 'broadening'],
'grow': ['expand', 'increase', 'enlarge', 'stretch', 'swell', 'broaden'],
'growing': ['expanding', 'increasing', 'enlarging', 'stretching', 'swelling', 'broadening'],
'increase': ['expand', 'grow', 'enlarge', 'stretch', 'swell', 'broaden'],
'increasing': ['expanding', 'growing', 'enlarging', 'stretching', 'swelling', 'broadening'],
'enlarge': ['expand', 'grow', 'increase', 'stretch', 'swell', 'broaden'],
'enlarging': ['expanding', 'growing', 'increasing', 'stretching', 'swelling', 'broadening'],
'stretch': ['expand', 'grow', 'increase', 'enlarge', 'swell', 'broaden'],
'stretching': ['expanding', 'growing', 'increasing', 'enlarging', 'swelling', 'broadening'],
'swell': ['expand', 'grow', 'increase', 'enlarge', 'stretch', 'broaden'],
'swelling': ['expanding', 'growing', 'increasing', 'enlarging', 'stretching', 'broadening'],
'broaden': ['expand', 'grow', 'increase', 'enlarge', 'stretch', 'swell'],
'broadening': ['expanding', 'growing', 'increasing', 'enlarging', 'stretching', 'swelling'],
'shrink': ['contract', 'reduce', 'decrease', 'diminish', 'lessen', 'compress'],
'shrinking': ['contracting', 'reducing', 'decreasing', 'diminishing', 'lessening', 'compressing'],
'contract': ['shrink', 'reduce', 'decrease', 'diminish', 'lessen', 'compress'],
'contracting': ['shrinking', 'reducing', 'decreasing', 'diminishing', 'lessening', 'compressing'],
'reduce': ['shrink', 'contract', 'decrease', 'diminish', 'lessen', 'compress'],
'reducing': ['shrinking', 'contracting', 'decreasing', 'diminishing', 'lessening', 'compressing'],
'decrease': ['shrink', 'contract', 'reduce', 'diminish', 'lessen', 'compress'],
'decreasing': ['shrinking', 'contracting', 'reducing', 'diminishing', 'lessening', 'compressing'],
'diminish': ['shrink', 'contract', 'reduce', 'decrease', 'lessen', 'compress'],
'diminishing': ['shrinking', 'contracting', 'reducing', 'decreasing', 'lessening', 'compressing'],
'lessen': ['shrink', 'contract', 'reduce', 'decrease', 'diminish', 'compress'],
'lessening': ['shrinking', 'contracting', 'reducing', 'decreasing', 'diminishing', 'compressing'],
'compress': ['shrink', 'contract', 'reduce', 'decrease', 'diminish', 'lessen'],
'compressing': ['shrinking', 'contracting', 'reducing', 'decreasing', 'diminishing', 'lessening'],
'speed up': ['accelerate', 'hasten', 'quicken', 'rush', 'hurry', 'expedite'],
'speeding up': ['accelerating', 'hastening', 'quickening', 'rushing', 'hurrying', 'expediting'],
'accelerate': ['speed up', 'hasten', 'quicken', 'rush', 'hurry', 'expedite'],
'accelerating': ['speeding up', 'hastening', 'quickening', 'rushing', 'hurrying', 'expediting'],
'hasten': ['speed up', 'accelerate', 'quicken', 'rush', 'hurry', 'expedite'],
'hastening': ['speeding up', 'accelerating', 'quickening', 'rushing', 'hurrying', 'expediting'],
'quicken': ['speed up', 'accelerate', 'hasten', 'rush', 'hurry', 'expedite'],
'quickening': ['speeding up', 'accelerating', 'hastening', 'rushing', 'hurrying', 'expediting'],
'rush': ['speed up', 'accelerate', 'hasten', 'quicken', 'hurry', 'expedite'],
'rushing': ['speeding up', 'accelerating', 'hastening', 'quickening', 'hurrying', 'expediting'],
'hurry': ['speed up', 'accelerate', 'hasten', 'quicken', 'rush', 'expedite'],
'hurrying': ['speeding up', 'accelerating', 'hastening', 'quickening', 'rushing', 'expediting'],
'expedite': ['speed up', 'accelerate', 'hasten', 'quicken', 'rush', 'hurry'],
'expediting': ['speeding up', 'accelerating', 'hastening', 'quickening', 'rushing', 'hurrying'],
'slow down': ['decelerate', 'delay', 'postpone', 'prolong', 'drag out', 'take time'],
'slowing down': ['decelerating', 'delaying', 'postponing', 'prolonging', 'dragging out', 'taking time'],
'decelerate': ['slow down', 'delay', 'postpone', 'prolong', 'drag out', 'take time'],
'decelerating': ['slowing down', 'delaying', 'postponing', 'prolonging', 'dragging out', 'taking time'],
'delay': ['slow down', 'decelerate', 'postpone', 'prolong', 'drag out', 'take time'],
'delaying': ['slowing down', 'decelerating', 'postponing', 'prolonging', 'dragging out', 'taking time'],
'postpone': ['slow down', 'decelerate', 'delay', 'prolong', 'drag out', 'take time'],
'postponing': ['slowing down', 'decelerating', 'delaying', 'prolonging', 'dragging out', 'taking time'],
'prolong': ['slow down', 'decelerate', 'delay', 'postpone', 'drag out', 'take time'],
'prolonging': ['slowing down', 'decelerating', 'delaying', 'postponing', 'dragging out', 'taking time'],
'drag out': ['slow down', 'decelerate', 'delay', 'postpone', 'prolong', 'take time'],
'dragging out': ['slowing down', 'decelerating', 'delaying', 'postponing', 'prolonging', 'taking time'],
'take time': ['slow down', 'decelerate', 'delay', 'postpone', 'prolong', 'drag out'],
'taking time': ['slowing down', 'decelerating', 'delaying', 'postponing', 'prolonging', 'dragging out'],
'strengthen': ['reinforce', 'fortify', 'bolster', 'enhance', 'intensify', 'solidify'],
'strengthening': ['reinforcing', 'fortifying', 'bolstering', 'enhancing', 'intensifying', 'solidifying'],
'reinforce': ['strengthen', 'fortify', 'bolster', 'enhance', 'intensify', 'solidify'],
'reinforcing': ['strengthening', 'fortifying', 'bolstering', 'enhancing', 'intensifying', 'solidifying'],
'fortify': ['strengthen', 'reinforce', 'bolster', 'enhance', 'intensify', 'solidify'],
'fortifying': ['strengthening', 'reinforcing', 'bolstering', 'enhancing', 'intensifying', 'solidifying'],
'bolster': ['strengthen', 'reinforce', 'fortify', 'enhance', 'intensify', 'solidify'],
'bolstering': ['strengthening', 'reinforcing', 'fortifying', 'enhancing', 'intensifying', 'solidifying'],
'enhance': ['strengthen', 'reinforce', 'fortify', 'bolster', 'intensify', 'solidify'],
'enhancing': ['strengthening', 'reinforcing', 'fortifying', 'bolstering', 'intensifying', 'solidifying'],
'intensify': ['strengthen', 'reinforce', 'fortify', 'bolster', 'enhance', 'solidify'],
'intensifying': ['strengthening', 'reinforcing', 'fortifying', 'bolstering', 'enhancing', 'solidifying'],
'solidify': ['strengthen', 'reinforce', 'fortify', 'bolster', 'enhance', 'intensify'],
'solidifying': ['strengthening', 'reinforcing', 'fortifying', 'bolstering', 'enhancing', 'intensifying'],
'weaken': ['diminish', 'reduce', 'decrease', 'undermine', 'impair', 'debilitate'],
'weakening': ['diminishing', 'reducing', 'decreasing', 'undermining', 'impairing', 'debilitating'],
'diminish': ['weaken', 'reduce', 'decrease', 'undermine', 'impair', 'debilitate'],
'diminishing': ['weakening', 'reducing', 'decreasing', 'undermining', 'impairing', 'debilitating'],
'reduce': ['weaken', 'diminish', 'decrease', 'undermine', 'impair', 'debilitate'],
'reducing': ['weakening', 'diminishing', 'decreasing', 'undermining', 'impairing', 'debilitating'],
'decrease': ['weaken', 'diminish', 'reduce', 'undermine', 'impair', 'debilitate'],
'decreasing': ['weakening', 'diminishing', 'reducing', 'undermining', 'impairing', 'debilitating'],
'undermine': ['weaken', 'diminish', 'reduce', 'decrease', 'impair', 'debilitate'],
'undermining': ['weakening', 'diminishing', 'reducing', 'decreasing', 'impairing', 'debilitating'],
'impair': ['weaken', 'diminish', 'reduce', 'decrease', 'undermine', 'debilitate'],
'impairing': ['weakening', 'diminishing', 'reducing', 'decreasing', 'undermining', 'debilitating'],
'debilitate': ['weaken', 'diminish', 'reduce', 'decrease', 'undermine', 'impair'],
'debilitating': ['weakening', 'diminishing', 'reducing', 'decreasing', 'undermining', 'impairing'],
'connect': ['link', 'join', 'attach', 'unite', 'combine', 'associate'],
'connecting': ['linking', 'joining', 'attaching', 'uniting', 'combining', 'associating'],
'link': ['connect', 'join', 'attach', 'unite', 'combine', 'associate'],
'linking': ['connecting', 'joining', 'attaching', 'uniting', 'combining', 'associating'],
'join': ['connect', 'link', 'attach', 'unite', 'combine', 'associate'],
'joining': ['connecting', 'linking', 'attaching', 'uniting', 'combining', 'associating'],
'attach': ['connect', 'link', 'join', 'unite', 'combine', 'associate'],
'attaching': ['connecting', 'linking', 'joining', 'uniting', 'combining', 'associating'],
'unite': ['connect', 'link', 'join', 'attach', 'combine', 'associate'],
'uniting': ['connecting', 'linking', 'joining', 'attaching', 'combining', 'associating'],
'combine': ['connect', 'link', 'join', 'attach', 'unite', 'associate'],
'combining': ['connecting', 'linking', 'joining', 'attaching', 'uniting', 'associating'],
'associate': ['connect', 'link', 'join', 'attach', 'unite', 'combine'],
'associating': ['connecting', 'linking', 'joining', 'attaching', 'uniting', 'combining'],
'disconnect': ['separate', 'detach', 'unlink', 'disjoin', 'divide', 'disassociate'],
'disconnecting': ['separating', 'detaching', 'unlinking', 'disjoining', 'dividing', 'disassociating'],
'separate': ['disconnect', 'detach', 'unlink', 'disjoin', 'divide', 'disassociate'],
'separating': ['disconnecting', 'detaching', 'unlinking', 'disjoining', 'dividing', 'disassociating'],
'detach': ['disconnect', 'separate', 'unlink', 'disjoin', 'divide', 'disassociate'],
'detaching': ['disconnecting', 'separating', 'unlinking', 'disjoining', 'dividing', 'disassociating'],
'unlink': ['disconnect', 'separate', 'detach', 'disjoin', 'divide', 'disassociate'],
'unlinking': ['disconnecting', 'separating', 'detaching', 'disjoining', 'dividing', 'disassociating'],
'disjoin': ['disconnect', 'separate', 'detach', 'unlink', 'divide', 'disassociate'],
'disjoining': ['disconnecting', 'separating', 'detaching', 'unlinking', 'dividing', 'disassociating'],
'divide': ['disconnect', 'separate', 'detach', 'unlink', 'disjoin', 'disassociate'],
'dividing': ['disconnecting', 'separating', 'detaching', 'unlinking', 'disjoining', 'disassociating'],
'disassociate': ['disconnect', 'separate', 'detach', 'unlink', 'disjoin', 'divide'],
'disassociating': ['disconnecting', 'separating', 'detaching', 'unlinking', 'disjoining', 'dividing'],
'gather': ['collect', 'assemble', 'congregate', 'accumulate', 'amass', 'compile'],
'gathering': ['collecting', 'assembling', 'congregating', 'accumulating', 'amassing', 'compiling'],
'collect': ['gather', 'assemble', 'congregate', 'accumulate', 'amass', 'compile'],
'collecting': ['gathering', 'assembling', 'congregating', 'accumulating', 'amassing', 'compiling'],
'assemble': ['gather', 'collect', 'congregate', 'accumulate', 'amass', 'compile'],
'assembling': ['gathering', 'collecting', 'congregating', 'accumulating', 'amassing', 'compiling'],
'congregate': ['gather', 'collect', 'assemble', 'accumulate', 'amass', 'compile'],
'congregating': ['gathering', 'collecting', 'assembling', 'accumulating', 'amassing', 'compiling'],
'accumulate': ['gather', 'collect', 'assemble', 'congregate', 'amass', 'compile'],
'accumulating': ['gathering', 'collecting', 'assembling', 'congregating', 'amassing', 'compiling'],
'amass': ['gather', 'collect', 'assemble', 'congregate', 'accumulate', 'compile'],
'amassing': ['gathering', 'collecting', 'assembling', 'congregating', 'accumulating', 'compiling'],
'compile': ['gather', 'collect', 'assemble', 'congregate', 'accumulate', 'amass'],
'compiling': ['gathering', 'collecting', 'assembling', 'congregating', 'accumulating', 'amassing'],
'scatter': ['disperse', 'distribute', 'spread', 'sprinkle', 'disseminate', 'broadcast'],
'scattering': ['dispersing', 'distributing', 'spreading', 'sprinkling', 'disseminating', 'broadcasting'],
'disperse': ['scatter', 'distribute', 'spread', 'sprinkle', 'disseminate', 'broadcast'],
'dispersing': ['scattering', 'distributing', 'spreading', 'sprinkling', 'disseminating', 'broadcasting'],
'distribute': ['scatter', 'disperse', 'spread', 'sprinkle', 'disseminate', 'broadcast'],
'distributing': ['scattering', 'dispersing', 'spreading', 'sprinkling', 'disseminating', 'broadcasting'],
'spread': ['scatter', 'disperse', 'distribute', 'sprinkle', 'disseminate', 'broadcast'],
'spreading': ['scattering', 'dispersing', 'distributing', 'sprinkling', 'disseminating', 'broadcasting'],
'sprinkle': ['scatter', 'disperse', 'distribute', 'spread', 'disseminate', 'broadcast'],
'sprinkling': ['scattering', 'dispersing', 'distributing', 'spreading', 'disseminating', 'broadcasting'],
'disseminate': ['scatter', 'disperse', 'distribute', 'spread', 'sprinkle', 'broadcast'],
'disseminating': ['scattering', 'dispersing', 'distributing', 'spreading', 'sprinkling', 'broadcasting'],
'broadcast': ['scatter', 'disperse', 'distribute', 'spread', 'sprinkle', 'disseminate'],
'broadcasting': ['scattering', 'dispersing', 'distributing', 'spreading', 'sprinkling', 'disseminating'],
'mix': ['combine', 'blend', 'merge', 'mingle', 'intermix', 'fuse'],
'mixing': ['combining', 'blending', 'merging', 'mingling', 'intermixing', 'fusing'],
'combine': ['mix', 'blend', 'merge', 'mingle', 'intermix', 'fuse'],
'combining': ['mixing', 'blending', 'merging', 'mingling', 'intermixing', 'fusing'],
'blend': ['mix', 'combine', 'merge', 'mingle', 'intermix', 'fuse'],
'blending': ['mixing', 'combining', 'merging', 'mingling', 'intermixing', 'fusing'],
'merge': ['mix', 'combine', 'blend', 'mingle', 'intermix', 'fuse'],
'merging': ['mixing', 'combining', 'blending', 'mingling', 'intermixing', 'fusing'],
'mingle': ['mix', 'combine', 'blend', 'merge', 'intermix', 'fuse'],
'mingling': ['mixing', 'combining', 'blending', 'merging', 'intermixing', 'fusing'],
'intermix': ['mix', 'combine', 'blend', 'merge', 'mingle', 'fuse'],
'intermixing': ['mixing', 'combining', 'blending', 'merging', 'mingling', 'fusing'],
'fuse': ['mix', 'combine', 'blend', 'merge', 'mingle', 'intermix'],
'fusing': ['mixing', 'combining', 'blending', 'merging', 'mingling', 'intermixing'],
'separate': ['divide', 'part', 'disconnect', 'detach', 'segregate', 'isolate'],
'separating': ['dividing', 'parting', 'disconnecting', 'detaching', 'segregating', 'isolating'],
'divide': ['separate', 'part', 'disconnect', 'detach', 'segregate', 'isolate'],
'dividing': ['separating', 'parting', 'disconnecting', 'detaching', 'segregating', 'isolating'],
'part': ['separate', 'divide', 'disconnect', 'detach', 'segregate', 'isolate'],
'parting': ['separating', 'dividing', 'disconnecting', 'detaching', 'segregating', 'isolating'],
'disconnect': ['separate', 'divide', 'part', 'detach', 'segregate', 'isolate'],
'disconnecting': ['separating', 'dividing', 'parting', 'detaching', 'segregating', 'isolating'],
'detach': ['separate', 'divide', 'part', 'disconnect', 'segregate', 'isolate'],
'detaching': ['separating', 'dividing', 'parting', 'disconnecting', 'segregating', 'isolating'],
'segregate': ['separate', 'divide', 'part', 'disconnect', 'detach', 'isolate'],
'segregating': ['separating', 'dividing', 'parting', 'disconnecting', 'detaching', 'isolating'],
'isolate': ['separate', 'divide', 'part', 'disconnect', 'detach', 'segregate'],
'isolating': ['separating', 'dividing', 'parting', 'disconnecting', 'detaching', 'segregating'],
'filter': ['strain', 'sift', 'screen', 'purify', 'clarify', 'refine'],
'filtering': ['straining', 'sifting', 'screening', 'purifying', 'clarifying', 'refining'],
'strain': ['filter', 'sift', 'screen', 'purify', 'clarify', 'refine'],
'straining': ['filtering', 'sifting', 'screening', 'purifying', 'clarifying', 'refining'],
'sift': ['filter', 'strain', 'screen', 'purify', 'clarify', 'refine'],
'sifting': ['filtering', 'straining', 'screening', 'purifying', 'clarifying', 'refining'],
'screen': ['filter', 'strain', 'sift', 'purify', 'clarify', 'refine'],
'screening': ['filtering', 'straining', 'sifting', 'purifying', 'clarifying', 'refining'],
'purify': ['filter', 'strain', 'sift', 'screen', 'clarify', 'refine'],
'purifying': ['filtering', 'straining', 'sifting', 'screening', 'clarifying', 'refining'],
'clarify': ['filter', 'strain', 'sift', 'screen', 'purify', 'refine'],
'clarifying': ['filtering', 'straining', 'sifting', 'screening', 'purifying', 'refining'],
'refine': ['filter', 'strain', 'sift', 'screen', 'purify', 'clarify'],
'refining': ['filtering', 'straining', 'sifting', 'screening', 'purifying', 'clarifying'],
'pollute': ['contaminate', 'taint', 'befoul', 'soil', 'stain', 'dirty'],
'polluting': ['contaminating', 'tainting', 'befouling', 'soiling', 'staining', 'dirtying'],
'contaminate': ['pollute', 'taint', 'befoul', 'soil', 'stain', 'dirty'],
'contaminating': ['polluting', 'tainting', 'befouling', 'soiling', 'staining', 'dirtying'],
'taint': ['pollute', 'contaminate', 'befoul', 'soil', 'stain', 'dirty'],
'tainting': ['polluting', 'contaminating', 'befouling', 'soiling', 'staining', 'dirtying'],
'befoul': ['pollute', 'contaminate', 'taint', 'soil', 'stain', 'dirty'],
'befouling': ['polluting', 'contaminating', 'tainting', 'soiling', 'staining', 'dirtying'],
'soil': ['pollute', 'contaminate', 'taint', 'befoul', 'stain', 'dirty'],
'soiling': ['polluting', 'contaminating', 'tainting', 'befouling', 'staining', 'dirtying'],
'stain': ['pollute', 'contaminate', 'taint', 'befoul', 'soil', 'dirty'],
'staining': ['polluting', 'contaminating', 'tainting', 'befouling', 'soiling', 'dirtying'],
'dirty': ['pollute', 'contaminate', 'taint', 'befoul', 'soil', 'stain'],
'dirtying': ['polluting', 'contaminating', 'tainting', 'befouling', 'soiling', 'staining'],
'clean': ['purify', 'cleanse', 'wash', 'scrub', 'sanitize', 'tidy'],
'cleaning': ['purifying', 'cleansing', 'washing', 'scrubbing', 'sanitizing', 'tidying'],
'purify': ['clean', 'cleanse', 'wash', 'scrub', 'sanitize', 'tidy'],
'purifying': ['cleaning', 'cleansing', 'washing', 'scrubbing', 'sanitizing', 'tidying'],
'cleanse': ['clean', 'purify', 'wash', 'scrub', 'sanitize', 'tidy'],
'cleansing': ['cleaning', 'purifying', 'washing', 'scrubbing', 'sanitizing', 'tidying'],
'wash': ['clean', 'purify', 'cleanse', 'scrub', 'sanitize', 'tidy'],
'washing': ['cleaning', 'purifying', 'cleansing', 'scrubbing', 'sanitizing', 'tidying'],
'scrub': ['clean', 'purify', 'cleanse', 'wash', 'sanitize', 'tidy'],
'scrubbing': ['cleaning', 'purifying', 'cleansing', 'washing', 'sanitizing', 'tidying'],
'sanitize': ['clean', 'purify', 'cleanse', 'wash', 'scrub', 'tidy'],
'sanitizing': ['cleaning', 'purifying', 'cleansing', 'washing', 'scrubbing', 'tidying'],
'tidy': ['clean', 'purify', 'cleanse', 'wash', 'scrub', 'sanitize'],
'tidying': ['cleaning', 'purifying', 'cleansing', 'washing', 'scrubbing', 'sanitizing'],
'brighten': ['lighten', 'illuminate', 'enhance', 'improve', 'cheer', 'enliven'],
'brightening': ['lightening', 'illuminating', 'enhancing', 'improving', 'cheering', 'enlivening'],
'lighten': ['brighten', 'illuminate', 'enhance', 'improve', 'cheer', 'enliven'],
'lightening': ['brightening', 'illuminating', 'enhancing', 'improving', 'cheering', 'enlivening'],
'illuminate': ['brighten', 'lighten', 'enhance', 'improve', 'cheer', 'enliven'],
'illuminating': ['brightening', 'lightening', 'enhancing', 'improving', 'cheering', 'enlivening'],
'enhance': ['brighten', 'lighten', 'illuminate', 'improve', 'cheer', 'enliven'],
'enhancing': ['brightening', 'lightening', 'illuminating', 'improving', 'cheering', 'enlivening'],
'improve': ['brighten', 'lighten', 'illuminate', 'enhance', 'cheer', 'enliven'],
'improving': ['brightening', 'lightening', 'illuminating', 'enhancing', 'cheering', 'enlivening'],
'cheer': ['brighten', 'lighten', 'illuminate', 'enhance', 'improve', 'enliven'],
'cheering': ['brightening', 'lightening', 'illuminating', 'enhancing', 'improving', 'enlivening'],
'enliven': ['brighten', 'lighten', 'illuminate', 'enhance', 'improve', 'cheer'],
'enlivening': ['brightening', 'lightening', 'illuminating', 'enhancing', 'improving', 'cheering'],
'darken': ['dim', 'obscure', 'shadow', 'blacken', 'cloud', 'shade'],
'darkening': ['dimming', 'obscuring', 'shadowing', 'blackening', 'clouding', 'shading'],
'dim': ['darken', 'obscure', 'shadow', 'blacken', 'cloud', 'shade'],
'dimming': ['darkening', 'obscuring', 'shadowing', 'blackening', 'clouding', 'shading'],
'obscure': ['darken', 'dim', 'shadow', 'blacken', 'cloud', 'shade'],
'obscuring': ['darkening', 'dimming', 'shadowing', 'blackening', 'clouding', 'shading'],
'shadow': ['darken', 'dim', 'obscure', 'blacken', 'cloud', 'shade'],
'shadowing': ['darkening', 'dimming', 'obscuring', 'blackening', 'clouding', 'shading'],
'blacken': ['darken', 'dim', 'obscure', 'shadow', 'cloud', 'shade'],
'blackening': ['darkening', 'dimming', 'obscuring', 'shadowing', 'clouding', 'shading'],
'cloud': ['darken', 'dim', 'obscure', 'shadow', 'blacken', 'shade'],
'clouding': ['darkening', 'dimming', 'obscuring', 'shadowing', 'blackening', 'shading'],
'shade': ['darken', 'dim', 'obscure', 'shadow', 'blacken', 'cloud'],
'shading': ['darkening', 'dimming', 'obscuring', 'shadowing', 'blackening', 'clouding'],
'warm': ['heat', 'heat up', 'warm up', 'cook', 'bake', 'toast'],
'warming': ['heating', 'heating up', 'warming up', 'cooking', 'baking', 'toasting'],
'heat': ['warm', 'heat up', 'warm up', 'cook', 'bake', 'toast'],
'heating': ['warming', 'heating up', 'warming up', 'cooking', 'baking', 'toasting'],
'heat up': ['warm', 'heat', 'warm up', 'cook', 'bake', 'toast'],
'heating up': ['warming', 'heating', 'warming up', 'cooking', 'baking', 'toasting'],
'warm up': ['heat', 'heat up', 'warm', 'cook', 'bake', 'toast'],
'warming up': ['heating', 'heating up', 'warming', 'cooking', 'baking', 'toasting'],
'cook': ['warm', 'heat up', 'warm up', 'heat', 'bake', 'toast'],
'cooking': ['warming', 'heating up', 'warming up', 'heating', 'baking', 'toasting'],
'bake': ['warm', 'heat up', 'warm up', 'heat', 'cook', 'toast'],
'baking': ['warming', 'heating up', 'warming up', 'heating', 'cooking', 'toasting'],
'toast': ['warm', 'heat up', 'warm up', 'heat', 'cook', 'bake'],
'toasting': ['warming', 'heating up', 'warming up', 'heating', 'cooking', 'baking'],
'cool': ['chill', 'cool down', 'refrigerate', 'freeze', 'ice', 'cold'],
'cooling': ['chilling', 'cooling down', 'refrigerating', 'freezing', 'icing', 'colding'],
'chill': ['cool', 'cool down', 'refrigerate', 'freeze', 'ice', 'cold'],
'chilling': ['cooling', 'cooling down', 'refrigerating', 'freezing', 'icing', 'colding'],
'cool down': ['chill', 'cool', 'refrigerate', 'freeze', 'ice', 'cold'],
'cooling down': ['chilling', 'cooling', 'refrigerating', 'freezing', 'icing', 'colding'],
'refrigerate': ['cool', 'chill', 'cool down', 'freeze', 'ice', 'cold'],
'refrigerating': ['cooling', 'chilling', 'cooling down', 'freezing', 'icing', 'colding'],
'freeze': ['cool', 'chill', 'cool down', 'refrigerate', 'ice', 'cold'],
'freezing': ['cooling', 'chilling', 'cooling down', 'refrigerating', 'icing', 'colding'],
'ice': ['cool', 'chill', 'cool down', 'refrigerate', 'freeze', 'cold'],
'icing': ['cooling', 'chilling', 'cooling down', 'refrigerating', 'freezing', 'colding'],
'cold': ['cool', 'chill', 'cool down', 'refrigerate', 'freeze', 'ice'],
'colding': ['cooling', 'chilling', 'cooling down', 'refrigerating', 'freezing', 'icing'],
'wet': ['moisten', 'dampen', 'soak', 'drench', 'saturate', 'humidify'],
'wetting': ['moistening', 'dampening', 'soaking', 'drenching', 'saturating', 'humidifying'],
'moisten': ['wet', 'dampen', 'soak', 'drench', 'saturate', 'humidify'],
'moistening': ['wetting', 'dampening', 'soaking', 'drenching', 'saturating', 'humidifying'],
'dampen': ['wet', 'moisten', 'soak', 'drench', 'saturate', 'humidify'],
'dampening': ['wetting', 'moistening', 'soaking', 'drenching', 'saturating', 'humidifying'],
'soak': ['wet', 'moisten', 'dampen', 'drench', 'saturate', 'humidify'],
'soaking': ['wetting', 'moistening', 'dampening', 'drenching', 'saturating', 'humidifying'],
'drench': ['wet', 'moisten', 'dampen', 'soak', 'saturate', 'humidify'],
'drenching': ['wetting', 'moistening', 'dampening', 'soaking', 'saturating', 'humidifying'],
'saturate': ['wet', 'moisten', 'dampen', 'soak', 'drench', 'humidify'],
'saturating': ['wetting', 'moistening', 'dampening', 'soaking', 'drenching', 'humidifying'],
'humidify': ['wet', 'moisten', 'dampen', 'soak', 'drench', 'saturate'],
'humidifying': ['wetting', 'moistening', 'dampening', 'soaking', 'drenching', 'saturating'],
'dry': ['dehydrate', 'desiccate', 'evaporate moisture', 'wipe', 'towel', 'air'],
'drying': ['dehydrating', 'desiccating', 'evaporating moisture', 'wiping', 'toweling', 'airing'],
'dehydrate': ['dry', 'desiccate', 'evaporate moisture', 'wipe', 'towel', 'air'],
'dehydrating': ['drying', 'desiccating', 'evaporating moisture', 'wiping', 'toweling', 'airing'],
'desiccate': ['dry', 'dehydrate', 'evaporate moisture', 'wipe', 'towel', 'air'],
'desiccating': ['drying', 'dehydrating', 'evaporating moisture', 'wiping', 'toweling', 'airing'],
'evaporate moisture': ['dry', 'dehydrate', 'desiccate', 'wipe', 'towel', 'air'],
'evaporating moisture': ['drying', 'dehydrating', 'desiccating', 'wiping', 'toweling', 'airing'],
'wipe': ['dry', 'dehydrate', 'desiccate', 'evaporate moisture', 'towel', 'air'],
'wiping': ['drying', 'dehydrating', 'desiccating', 'evaporating moisture', 'toweling', 'airing'],
'towel': ['dry', 'dehydrate', 'desiccate', 'evaporate moisture', 'wipe', 'air'],
'toweling': ['drying', 'dehydrating', 'desiccating', 'evaporating moisture', 'wiping', 'airing'],
'air': ['dry', 'dehydrate', 'desiccate', 'evaporate moisture', 'wipe', 'towel'],
'airing': ['drying', 'dehydrating', 'desiccating', 'evaporating moisture', 'wiping', 'toweling'],
'smooth': ['even', 'level', 'flat', 'uniform', 'regular', 'consistent'],
'smoothing': ['evening', 'leveling', 'flattening', 'uniforming', 'regularing', 'consistening'],
'even': ['smooth', 'level', 'flat', 'uniform', 'regular', 'consistent'],
'evening': ['smoothing', 'leveling', 'flattening', 'uniforming', 'regularing', 'consistening'],
'level': ['smooth', 'even', 'flat', 'uniform', 'regular', 'consistent'],
'leveling': ['smoothing', 'evening', 'flattening', 'uniforming', 'regularing', 'consistening'],
'flat': ['smooth', 'even', 'level', 'uniform', 'regular', 'consistent'],
'flattening': ['smoothing', 'evening', 'leveling', 'uniforming', 'regularing', 'consistening'],
'uniform': ['smooth', 'even', 'level', 'flat', 'regular', 'consistent'],
'uniforming': ['smoothing', 'evening', 'leveling', 'flattening', 'regularing', 'consistening'],
'regular': ['smooth', 'even', 'level', 'flat', 'uniform', 'consistent'],
'regularing': ['smoothing', 'evening', 'leveling', 'flattening', 'uniforming', 'consistening'],
'consistent': ['smooth', 'even', 'level', 'flat', 'uniform', 'regular'],
'consistening': ['smoothing', 'evening', 'leveling', 'flattening', 'uniforming', 'regularing'],
'rough': ['coarse', 'abrasive', 'uneven', 'bumpy', 'jagged', 'gritty'],
'roughening': ['coarsening', 'abrasiving', 'unevening', 'bumpying', 'jaggeding', 'gritting'],
'coarse': ['rough', 'abrasive', 'uneven', 'bumpy', 'jagged', 'gritty'],
'coarsening': ['roughening', 'abrasiving', 'unevening', 'bumpying', 'jaggeding', 'gritting'],
'abrasive': ['rough', 'coarse', 'uneven', 'bumpy', 'jagged', 'gritty'],
'abrasiving': ['roughening', 'coarsening', 'unevening', 'bumpying', 'jaggeding', 'gritting'],
'uneven': ['rough', 'coarse', 'abrasive', 'bumpy', 'jagged', 'gritty'],
'unevening': ['roughening', 'coarsening', 'abrasiving', 'bumpying', 'jaggeding', 'gritting'],
'bumpy': ['rough', 'coarse', 'abrasive', 'uneven', 'jagged', 'gritty'],
'bumpying': ['roughening', 'coarsening', 'abrasiving', 'unevening', 'jaggeding', 'gritting'],
'jagged': ['rough', 'coarse', 'abrasive', 'uneven', 'bumpy', 'gritty'],
'jaggeding': ['roughening', 'coarsening', 'abrasiving', 'unevening', 'bumpying', 'gritting'],
'gritty': ['rough', 'coarse', 'abrasive', 'uneven', 'bumpy', 'jagged'],
'gritting': ['roughening', 'coarsening', 'abrasiving', 'unevening', 'bumpying', 'jaggeding'],
'polish': ['shine', 'buff', 'smooth', 'refine', 'perfect', 'improve'],
'polishing': ['shining', 'buffing', 'smoothing', 'refining', 'perfecting', 'improving'],
'shine': ['polish', 'buff', 'smooth', 'refine', 'perfect', 'improve'],
'shining': ['polishing', 'buffing', 'smoothing', 'refining', 'perfecting', 'improving'],
'buff': ['polish', 'shine', 'smooth', 'refine', 'perfect', 'improve'],
'buffing': ['polishing', 'shining', 'smoothing', 'refining', 'perfecting', 'improving'],
'smooth': ['polish', 'shine', 'buff', 'refine', 'perfect', 'improve'],
'smoothing': ['polishing', 'shining', 'buffing', 'refining', 'perfecting', 'improving'],
'refine': ['polish', 'shine', 'buff', 'smooth', 'perfect', 'improve'],
'refining': ['polishing', 'shining', 'buffing', 'smoothing', 'perfecting', 'improving'],
'perfect': ['polish', 'shine', 'buff', 'smooth', 'refine', 'improve'],
'perfecting': ['polishing', 'shining', 'buffing', 'smoothing', 'refining', 'improving'],
'improve': ['polish', 'shine', 'buff', 'smooth', 'refine', 'perfect'],
'improving': ['polishing', 'shining', 'buffing', 'smoothing', 'refining', 'perfecting'],
'dull': ['boring', 'uninteresting', 'tedious', 'monotonous', 'unexciting', 'lackluster'],
'dulling': ['boring', 'uninterestinging', 'tediousing', 'monotonousing', 'unexcitinging', 'lacklustering'],
'boring': ['dull', 'uninteresting', 'tedious', 'monotonous', 'unexciting', 'lackluster'],
'boringing': ['dulling', 'uninterestinging', 'tediousing', 'monotonousing', 'unexcitinging', 'lacklustering'],
'uninteresting': ['dull', 'boring', 'tedious', 'monotonous', 'unexciting', 'lackluster'],
'uninterestinging': ['dulling', 'boringing', 'tediousing', 'monotonousing', 'unexcitinging', 'lacklustering'],
'tedious': ['dull', 'boring', 'uninteresting', 'monotonous', 'unexciting', 'lackluster'],
'tediousing': ['dulling', 'boringing', 'uninterestinging', 'monotonousing', 'unexcitinging', 'lacklustering'],
'monotonous': ['dull', 'boring', 'uninteresting', 'tedious', 'unexciting', 'lackluster'],
'monotonousing': ['dulling', 'boringing', 'uninterestinging', 'tediousing', 'unexcitinging', 'lacklustering'],
'unexciting': ['dull', 'boring', 'uninteresting', 'tedious', 'monotonous', 'lackluster'],
'unexcitinging': ['dulling', 'boringing', 'uninterestinging', 'tediousing', 'monotonousing', 'lacklustering'],
'lackluster': ['dull', 'boring', 'uninteresting', 'tedious', 'monotonous', 'unexciting'],
'lacklustering': ['dulling', 'boringing', 'uninterestinging', 'tediousing', 'monotonousing', 'unexcitinging'],
'bright': ['vibrant', 'vivid', 'brilliant', 'luminous', 'radiant', 'shining'],
'brightening': ['vibranting', 'viving', 'brilliancing', 'luminousing', 'radianging', 'shininging'],
'vibrant': ['bright', 'vivid', 'brilliant', 'luminous', 'radiant', 'shining'],
'vibranting': ['brightening', 'viving', 'brilliancing', 'luminousing', 'radianging', 'shininging'],
'vivid': ['bright', 'vibrant', 'brilliant', 'luminous', 'radiant', 'shining'],
'viving': ['brightening', 'vibranting', 'brilliancing', 'luminousing', 'radianging', 'shininging'],
'brilliant': ['bright', 'vibrant', 'vivid', 'luminous', 'radiant', 'shining'],
'brilliancing': ['brightening', 'vibranting', 'viving', 'luminousing', 'radianging', 'shininging'],
'luminous': ['bright', 'vibrant', 'vivid', 'brilliant', 'radiant', 'shining'],
'luminousing': ['brightening', 'vibranting', 'viving', 'brilliancing', 'radianging', 'shininging'],
'radiant': ['bright', 'vibrant', 'vivid', 'brilliant', 'luminous', 'shining'],
'radianging': ['brightening', 'vibranting', 'viving', 'brilliancing', 'luminousing', 'shininging'],
'shining': ['bright', 'vibrant', 'vivid', 'brilliant', 'luminous', 'radiant'],
'shininging': ['brightening', 'vibranting', 'viving', 'brilliancing', 'luminousing', 'radianging'],
'sharp': ['keen', 'acute', 'pointed', 'piercing', 'cutting', 'intense'],
'sharpening': ['keening', 'acuting', 'pointing', 'piercinging', 'cuttinging', 'intensing'],
'keen': ['sharp', 'acute', 'pointed', 'piercing', 'cutting', 'intense'],
'keening': ['sharpening', 'acuting', 'pointing', 'piercinging', 'cuttinging', 'intensing'],
'acute': ['sharp', 'keen', 'pointed', 'piercing', 'cutting', 'intense'],
'acuting': ['sharpening', 'keening', 'pointing', 'piercinging', 'cuttinging', 'intensing'],
'pointed': ['sharp', 'keen', 'acute', 'piercing', 'cutting', 'intense'],
'pointing': ['sharpening', 'keening', 'acuting', 'piercinging', 'cuttinging', 'intensing'],
'piercing': ['sharp', 'keen', 'acute', 'pointed', 'cutting', 'intense'],
'piercinging': ['sharpening', 'keening', 'acuting', 'pointing', 'cuttinging', 'intensing'],
'cutting': ['sharp', 'keen', 'acute', 'pointed', 'piercing', 'intense'],
'cuttinging': ['sharpening', 'keening', 'acuting', 'pointing', 'piercinging', 'intensing'],
'intense': ['sharp', 'keen', 'acute', 'pointed', 'piercing', 'cutting'],
'intensing': ['sharpening', 'keening', 'acuting', 'pointing', 'piercinging', 'cuttinging'],
'blunt': ['dull', 'obtuse', 'rounded', 'unsharpened', 'dull-edged', 'not sharp'],
'blunting': ['dulling', 'obtusing', 'rounding', 'unsharpeneding', 'dull-edginging', 'not sharping'],
'dull': ['blunt', 'obtuse', 'rounded', 'unsharpened', 'dull-edged', 'not sharp'],
'dulling': ['blunting', 'obtusing', 'rounding', 'unsharpeneding', 'dull-edginging', 'not sharping'],
'obtuse': ['blunt', 'dull', 'rounded', 'unsharpened', 'dull-edged', 'not sharp'],
'obtusing': ['blunting', 'dulling', 'rounding', 'unsharpeneding', 'dull-edginging', 'not sharping'],
'rounded': ['blunt', 'dull', 'obtuse', 'unsharpened', 'dull-edged', 'not sharp'],
'rounding': ['blunting', 'dulling', 'obtusing', 'unsharpeneding', 'dull-edginging', 'not sharping'],
'unsharpened': ['blunt', 'dull', 'obtuse', 'rounded', 'dull-edged', 'not sharp'],
'unsharpeneding': ['blunting', 'dulling', 'obtusing', 'rounding', 'dull-edginging', 'not sharping'],
'dull-edged': ['blunt', 'dull', 'obtuse', 'rounded', 'unsharpened', 'not sharp'],
'dull-edginging': ['blunting', 'dulling', 'obtusing', 'rounding', 'unsharpeneding', 'not sharping'],
'not sharp': ['blunt', 'dull', 'obtuse', 'rounded', 'unsharpened', 'dull-edged'],
'not sharping': ['blunting', 'dulling', 'obtusing', 'rounding', 'unsharpeneding', 'dull-edginging'],
'clear': ['transparent', 'translucent', 'lucid', 'transparent', 'see-through', 'crystal clear'],
'clearing': ['transparenting', 'translucencing', 'luciding', 'transparenting', 'see-throughing', 'crystal clearing'],
'transparent': ['clear', 'translucent', 'lucid', 'transparent', 'see-through', 'crystal clear'],
'transparenting': ['clearing', 'translucencing', 'luciding', 'transparenting', 'see-throughing', 'crystal clearing'],
'translucent': ['clear', 'transparent', 'lucid', 'transparent', 'see-through', 'crystal clear'],
'translucencing': ['clearing', 'transparenting', 'luciding', 'transparenting', 'see-throughing', 'crystal clearing'],
'lucid': ['clear', 'transparent', 'translucent', 'transparent', 'see-through', 'crystal clear'],
'luciding': ['clearing', 'transparenting', 'translucencing', 'transparenting', 'see-throughing', 'crystal clearing'],
'see-through': ['clear', 'transparent', 'translucent', 'lucid', 'transparent', 'crystal clear'],
'see-throughing': ['clearing', 'transparenting', 'translucencing', 'luciding', 'transparenting', 'crystal clearing'],
'crystal clear': ['clear', 'transparent', 'translucent', 'lucid', 'transparent', 'see-through'],
'crystal clearing': ['clearing', 'transparenting', 'translucencing', 'luciding', 'transparenting', 'see-throughing'],
'cloudy': ['overcast', 'hazy', 'murky', 'turbid', 'opaque', 'unclear'],
'cloudying': ['overcasting', 'hazying', 'murkying', 'turbiding', 'opaquing', 'unclearning'],
'overcast': ['cloudy', 'hazy', 'murky', 'turbid', 'opaque', 'unclear'],
'overcasting': ['cloudying', 'hazying', 'murkying', 'turbiding', 'opaquing', 'unclearning'],
'hazy': ['cloudy', 'overcast', 'murky', 'turbid', 'opaque', 'unclear'],
'hazying': ['cloudying', 'overcasting', 'murkying', 'turbiding', 'opaquing', 'unclearning'],
'murky': ['cloudy', 'overcast', 'hazy', 'turbid', 'opaque', 'unclear'],
'murkying': ['cloudying', 'overcasting', 'hazying', 'turbiding', 'opaquing', 'unclearning'],
'turbid': ['cloudy', 'overcast', 'hazy', 'murky', 'opaque', 'unclear'],
'turbiding': ['cloudying', 'overcasting', 'hazying', 'murkying', 'opaquing', 'unclearning'],
'opaque': ['cloudy', 'overcast', 'hazy', 'murky', 'turbid', 'unclear'],
'opaquing': ['cloudying', 'overcasting', 'hazying', 'murkying', 'turbiding', 'unclearning'],
'unclear': ['cloudy', 'overcast', 'hazy', 'murky', 'turbid', 'opaque'],
'unclearning': ['cloudying', 'overcasting', 'hazying', 'murkying', 'turbiding', 'opaquing'],
'transparent': ['clear', 'translucent', 'lucid', 'transparent', 'see-through', 'crystal clear'],
'transparenting': ['clearing', 'translucencing', 'luciding', 'transparenting', 'see-throughing', 'crystal clearing'],
'translucent': ['clear', 'transparent', 'lucid', 'transparent', 'see-through', 'crystal clear'],
'translucencing': ['clearing', 'transparenting', 'luciding', 'transparenting', 'see-throughing', 'crystal clearing'],
'lucid': ['clear', 'transparent', 'translucent', 'transparent', 'see-through', 'crystal clear'],
'luciding': ['clearing', 'transparenting', 'translucencing', 'transparenting', 'see-throughing', 'crystal clearing'],
'see-through': ['clear', 'transparent', 'translucent', 'lucid', 'transparent', 'crystal clear'],
'see-throughing': ['clearing', 'transparenting', 'translucencing', 'luciding', 'transparenting', 'crystal clearing'],
'crystal clear': ['clear', 'transparent', 'translucent', 'lucid', 'transparent', 'see-through'],
'crystal clearing': ['clearing', 'transparenting', 'translucencing', 'luciding', 'transparenting', 'see-throughing'],
'solid': ['firm', 'hard', 'dense', 'substantial', 'sturdy', 'strong'],
'soliding': ['firming', 'harding', 'densing', 'substantialing', 'sturdying', 'stronging'],
'firm': ['solid', 'hard', 'dense', 'substantial', 'sturdy', 'strong'],
'firming': ['soliding', 'harding', 'densing', 'substantialing', 'sturdying', 'stronging'],
'hard': ['solid', 'firm', 'dense', 'substantial', 'sturdy', 'strong'],
'harding': ['soliding', 'firming', 'densing', 'substantialing', 'sturdying', 'stronging'],
'dense': ['solid', 'firm', 'hard', 'substantial', 'sturdy', 'strong'],
'densing': ['soliding', 'firming', 'harding', 'substantialing', 'sturdying', 'stronging'],
'substantial': ['solid', 'firm', 'hard', 'dense', 'sturdy', 'strong'],
'substantialing': ['soliding', 'firming', 'harding', 'densing', 'sturdying', 'stronging'],
'sturdy': ['solid', 'firm', 'hard', 'dense', 'substantial', 'strong'],
'sturdying': ['soliding', 'firming', 'harding', 'densing', 'substantialing', 'stronging'],
'strong': ['solid', 'firm', 'hard', 'dense', 'substantial', 'sturdy'],
'stronging': ['soliding', 'firming', 'harding', 'densing', 'substantialing', 'sturdying'],
'liquid': ['fluid', 'watery', 'runny', 'flowing', 'melted', 'liquefied'],
'liquiding': ['fluiding', 'waterying', 'runnying', 'flowinging', 'melteding', 'liquefieding'],
'fluid': ['liquid', 'watery', 'runny', 'flowing', 'melted', 'liquefied'],
'fluiding': ['liquiding', 'waterying', 'runnying', 'flowinging', 'melteding', 'liquefieding'],
'watery': ['liquid', 'fluid', 'runny', 'flowing', 'melted', 'liquefied'],
'waterying': ['liquiding', 'fluiding', 'runnying', 'flowinging', 'melteding', 'liquefieding'],
'runny': ['liquid', 'fluid', 'watery', 'flowing', 'melted', 'liquefied'],
'runnying': ['liquiding', 'fluiding', 'waterying', 'flowinging', 'melteding', 'liquefieding'],
'flowing': ['liquid', 'fluid', 'watery', 'runny', 'melted', 'liquefied'],
'flowinging': ['liquiding', 'fluiding', 'waterying', 'runnying', 'melteding', 'liquefieding'],
'melted': ['liquid', 'fluid', 'watery', 'runny', 'flowing', 'liquefied'],
'melteding': ['liquiding', 'fluiding', 'waterying', 'runnying', 'flowinging', 'liquefieding'],
'liquefied': ['liquid', 'fluid', 'watery', 'runny', 'flowing', 'melted'],
'liquefieding': ['liquiding', 'fluiding', 'waterying', 'runnying', 'flowinging', 'melteding'],
'gas': ['gaseous', 'vapor', 'vaporized', 'aeriform', 'ethereal', 'airy'],
'gasing': ['gaseousing', 'vaporing', 'vaporizeding', 'aeriforming', 'etherealing', 'airying'],
'gaseous': ['gas', 'vapor', 'vaporized', 'aeriform', 'ethereal', 'airy'],
'gaseousing': ['gasing', 'vaporing', 'vaporizeding', 'aeriforming', 'etherealing', 'airying'],
'vapor': ['gas', 'gaseous', 'vaporized', 'aeriform', 'ethereal', 'airy'],
'vaporing': ['gasing', 'gaseousing', 'vaporizeding', 'aeriforming', 'etherealing', 'airying'],
'vaporized': ['gas', 'gaseous', 'vapor', 'aeriform', 'ethereal', 'airy'],
'vaporizeding': ['gasing', 'gaseousing', 'vaporing', 'aeriforming', 'etherealing', 'airying'],
'aeriform': ['gas', 'gaseous', 'vapor', 'vaporized', 'ethereal', 'airy'],
'aeriforming': ['gasing', 'gaseousing', 'vaporing', 'vaporizeding', 'etherealing', 'airying'],
'ethereal': ['gas', 'gaseous', 'vapor', 'vaporized', 'aeriform', 'airy'],
'etherealing': ['gasing', 'gaseousing', 'vaporing', 'vaporizeding', 'aeriforming', 'airying'],
'airy': ['gas', 'gaseous', 'vapor', 'vaporized', 'aeriform', 'ethereal'],
'airying': ['gasing', 'gaseousing', 'vaporing', 'vaporizeding', 'aeriforming', 'etherealing'],
'solidify': ['harden', 'set', 'congeal', 'firm', 'freeze', 'thicken'],
'solidifying': ['hardening', 'setting', 'congealing', 'firming', 'freezing', 'thickening'],
'harden': ['solidify', 'set', 'congeal', 'firm', 'freeze', 'thicken'],
'hardening': ['solidifying', 'setting', 'congealing', 'firming', 'freezing', 'thickening'],
'set': ['solidify', 'harden', 'congeal', 'firm', 'freeze', 'thicken'],
'setting': ['solidifying', 'hardening', 'congealing', 'firming', 'freezing', 'thickening'],
'congeal': ['solidify', 'harden', 'set', 'firm', 'freeze', 'thicken'],
'congealing': ['solidifying', 'hardening', 'setting', 'firming', 'freezing', 'thickening'],
'firm': ['solidify', 'harden', 'set', 'congeal', 'freeze', 'thicken'],
'firming': ['solidifying', 'hardening', 'setting', 'congealing', 'freezing', 'thickening'],
'freeze': ['solidify', 'harden', 'set', 'congeal', 'firm', 'thicken'],
'freezing': ['solidifying', 'hardening', 'setting', 'congealing', 'firming', 'thickening'],
'thicken': ['solidify', 'harden', 'set', 'congeal', 'firm', 'freeze'],
'thickening': ['solidifying', 'hardening', 'setting', 'congealing', 'firming', 'freezing'],
'liquefy': ['melt', 'dissolve', 'thaw', 'soften', 'fluidize', 'deliquesce'],
'liquefying': ['melting', 'dissolving', 'thawing', 'softening', 'fluidizing', 'deliquescing'],
'melt': ['liquefy', 'dissolve', 'thaw', 'soften', 'fluidize', 'deliquesce'],
'melting': ['liquefying', 'dissolving', 'thawing', 'softening', 'fluidizing', 'deliquescing'],
'dissolve': ['liquefy', 'melt', 'thaw', 'soften', 'fluidize', 'deliquesce'],
'dissolving': ['liquefying', 'melting', 'thawing', 'softening', 'fluidizing', 'deliquescing'],
'thaw': ['liquefy', 'melt', 'dissolve', 'soften', 'fluidize', 'deliquesce'],
'thawing': ['liquefying', 'melting', 'dissolving', 'softening', 'fluidizing', 'deliquescing'],
'soften': ['liquefy', 'melt', 'dissolve', 'thaw', 'fluidize', 'deliquesce'],
'softening': ['liquefying', 'melting', 'dissolving', 'thawing', 'fluidizing', 'deliquescing'],
'fluidize': ['liquefy', 'melt', 'dissolve', 'thaw', 'soften', 'deliquesce'],
'fluidizing': ['liquefying', 'melting', 'dissolving', 'thawing', 'softening', 'deliquescing'],
'deliquesce': ['liquefy', 'melt', 'dissolve', 'thaw', 'soften', 'fluidize'],
'deliquescing': ['liquefying', 'melting', 'dissolving', 'thawing', 'softening', 'fluidizing'],
'vaporize': ['evaporate', 'vaporise', 'volatilize', 'gasify', 'evaporate', 'evaporate'],
'vaporizing': ['evaporating', 'vaporising', 'volatilizing', 'gasifying', 'evaporating', 'evaporating'],
'evaporate': ['vaporize', 'vaporise', 'volatilize', 'gasify', 'evaporate', 'evaporate'],
'evaporating': ['vaporizing', 'vaporising', 'volatilizing', 'gasifying', 'evaporating', 'evaporating'],
'vaporise': ['vaporize', 'evaporate', 'volatilize', 'gasify', 'evaporate', 'evaporate'],
'vaporising': ['vaporizing', 'evaporating', 'volatilizing', 'gasifying', 'evaporating', 'evaporating'],
'volatilize': ['vaporize', 'vaporise', 'evaporate', 'gasify', 'evaporate', 'evaporate'],
'volatilizing': ['vaporizing', 'vaporising', 'evaporating', 'gasifying', 'evaporating', 'evaporating'],
'gasify': ['vaporize', 'vaporise', 'evaporate', 'volatilize', 'evaporate', 'evaporate'],
'gasifying': ['vaporizing', 'vaporising', 'evaporating', 'volatilizing', 'evaporating', 'evaporating'],
'condense': ['compress', 'concentrate', 'compact', 'thicken', 'solidify', 'densify'],
'condensing': ['compressing', 'concentrating', 'compacting', 'thickening', 'solidifying', 'densifying'],
'compress': ['condense', 'concentrate', 'compact', 'thicken', 'solidify', 'densify'],
'compressing': ['condensing', 'concentrating', 'compacting', 'thickening', 'solidifying', 'densifying'],
'concentrate': ['condense', 'compress', 'compact', 'thicken', 'solidify', 'densify'],
'concentrating': ['condensing', 'compressing', 'compacting', 'thickening', 'solidifying', 'densifying'],
'compact': ['condense', 'compress', 'concentrate', 'thicken', 'solidify', 'densify'],
'compacting': ['condensing', 'compressing', 'concentrating', 'thickening', 'solidifying', 'densifying'],
'thicken': ['condense', 'compress', 'concentrate', 'compact', 'solidify', 'densify'],
'thickening': ['condensing', 'compressing', 'concentrating', 'compacting', 'solidifying', 'densifying'],
'solidify': ['condense', 'compress', 'concentrate', 'compact', 'thicken', 'densify'],
'solidifying': ['condensing', 'compressing', 'concentrating', 'compacting', 'thickening', 'densifying'],
'densify': ['condense', 'compress', 'concentrate', 'compact', 'thicken', 'solidify'],
'densifying': ['condensing', 'compressing', 'concentrating', 'compacting', 'thickening', 'solidifying'],
'dilute': ['thin', 'weaken', 'water down', 'reduce', 'lessen', 'diminish'],
'diluting': ['thinning', 'weakening', 'watering down', 'reducing', 'lessening', 'diminishing'],
'thin': ['dilute', 'weaken', 'water down', 'reduce', 'lessen', 'diminish'],
'thinning': ['diluting', 'weakening', 'watering down', 'reducing', 'lessening', 'diminishing'],
'weaken': ['dilute', 'thin', 'water down', 'reduce', 'lessen', 'diminish'],
'weakening': ['diluting', 'thinning', 'watering down', 'reducing', 'lessening', 'diminishing'],
'water down': ['dilute', 'thin', 'weaken', 'reduce', 'lessen', 'diminish'],
'watering down': ['diluting', 'thinning', 'weakening', 'reducing', 'lessening', 'diminishing'],
'reduce': ['dilute', 'thin', 'weaken', 'water down', 'lessen', 'diminish'],
'reducing': ['diluting', 'thinning', 'weakening', 'watering down', 'lessening', 'diminishing'],
'lessen': ['dilute', 'thin', 'weaken', 'water down', 'reduce', 'diminish'],
'lessening': ['diluting', 'thinning', 'weakening', 'watering down', 'reducing', 'diminishing'],
'diminish': ['dilute', 'thin', 'weaken', 'water down', 'reduce', 'lessen'],
'diminishing': ['diluting', 'thinning', 'weakening', 'watering down', 'reducing', 'lessening'],
'mix': ['combine', 'blend', 'merge', 'mingle', 'intermix', 'fuse'],
'mixing': ['combining', 'blending', 'merging', 'mingling', 'intermixing', 'fusing'],
'combine': ['mix', 'blend', 'merge', 'mingle', 'intermix', 'fuse'],
'combining': ['mixing', 'blending', 'merging', 'mingling', 'intermixing', 'fusing'],
'blend': ['mix', 'combine', 'merge', 'mingle', 'intermix', 'fuse'],
'blending': ['mixing', 'combining', 'merging', 'mingling', 'intermixing', 'fusing'],
'merge': ['mix', 'combine', 'blend', 'mingle', 'intermix', 'fuse'],
'merging': ['mixing', 'combining', 'blending', 'mingling', 'intermixing', 'fusing'],
'mingle': ['mix', 'combine', 'blend', 'merge', 'intermix', 'fuse'],
'mingling': ['mixing', 'combining', 'blending', 'merging', 'intermixing', 'fusing'],
'intermix': ['mix', 'combine', 'blend', 'merge', 'mingle', 'fuse'],
'intermixing': ['mixing', 'combining', 'blending', 'merging', 'mingling', 'fusing'],
'fuse': ['mix', 'combine', 'blend', 'merge', 'mingle', 'intermix'],
'fusing': ['mixing', 'combining', 'blending', 'merging', 'mingling', 'intermixing'],
'separate': ['divide', 'part', 'disconnect', 'detach', 'segregate', 'isolate'],
'separating': ['dividing', 'parting', 'disconnecting', 'detaching', 'segregating', 'isolating'],
'divide': ['separate', 'part', 'disconnect', 'detach', 'segregate', 'isolate'],
'dividing': ['separating', 'parting', 'disconnecting', 'detaching', 'segregating', 'isolating'],
'part': ['separate', 'divide', 'disconnect', 'detach', 'segregate', 'isolate'],
'parting': ['separating', 'dividing', 'disconnecting', 'detaching', 'segregating', 'isolating'],
'disconnect': ['separate', 'divide', 'part', 'detach', 'segregate', 'isolate'],
'disconnecting': ['separating', 'dividing', 'parting', 'detaching', 'segregating', 'isolating'],
'detach': ['separate', 'divide', 'part', 'disconnect', 'segregate', 'isolate'],
'detaching': ['separating', 'dividing', 'parting', 'disconnecting', 'segregating', 'isolating'],
'segregate': ['separate', 'divide', 'part', 'disconnect', 'detach', 'isolate'],
'segregating': ['separating', 'dividing', 'parting', 'disconnecting', 'detaching', 'isolating'],
'isolate': ['separate', 'divide', 'part', 'disconnect', 'detach', 'segregate'],
'isolating': ['separating', 'dividing', 'parting', 'disconnecting', 'detaching', 'segregating'],
'filter': ['strain', 'sift', 'screen', 'purify', 'clarify', 'refine'],
'filtering': ['straining', 'sifting', 'screening', 'purifying', 'clarifying', 'refining'],
'strain': ['filter', 'sift', 'screen', 'purify', 'clarify', 'refine'],
'straining': ['filtering', 'sifting', 'screening', 'purifying', 'clarifying', 'refining'],
'sift': ['filter', 'strain', 'screen', 'purify', 'clarify', 'refine'],
'sifting': ['filtering', 'straining', 'screening', 'purifying', 'clarifying', 'refining'],
'screen': ['filter', 'strain', 'sift', 'purify', 'clarify', 'refine'],
'screening': ['filtering', 'straining', 'sifting', 'purifying', 'clarifying', 'refining'],
'purify': ['filter', 'strain', 'sift', 'screen', 'clarify', 'refine'],
'purifying': ['filtering', 'straining', 'sifting', 'screening', 'clarifying', 'refining'],
'clarify': ['filter', 'strain', 'sift', 'screen', 'purify', 'refine'],
'clarifying': ['filtering', 'straining', 'sifting', 'screening', 'purifying', 'refining'],
'refine': ['filter', 'strain', 'sift', 'screen', 'purify', 'clarify'],
'refining': ['filtering', 'straining', 'sifting', 'screening', 'purifying', 'clarifying'],
'pollute': ['contaminate', 'taint', 'befoul', 'soil', 'stain', 'dirty'],
'polluting': ['contaminating', 'tainting', 'befouling', 'soiling', 'staining', 'dirtying'],
'contaminate': ['pollute', 'taint', 'befoul', 'soil', 'stain', 'dirty'],
'contaminating': ['polluting', 'tainting', 'befouling', 'soiling', 'staining', 'dirtying'],
'taint': ['pollute', 'contaminate', 'befoul', 'soil', 'stain', 'dirty'],
'tainting': ['polluting', 'contaminating', 'befouling', 'soiling', 'staining', 'dirtying'],
'befoul': ['pollute', 'contaminate', 'taint', 'soil', 'stain', 'dirty'],
'befouling': ['polluting', 'contaminating', 'tainting', 'soiling', 'staining', 'dirtying'],
'soil': ['pollute', 'contaminate', 'taint', 'befoul', 'stain', 'dirty'],
'soiling': ['polluting', 'contaminating', 'tainting', 'befouling', 'staining', 'dirtying'],
'stain': ['pollute', 'contaminate', 'taint', 'befoul', 'soil', 'dirty'],
'staining': ['polluting', 'contaminating', 'tainting', 'befouling', 'soiling', 'dirtying'],
'dirty': ['pollute', 'contaminate', 'taint', 'befoul', 'soil', 'stain'],
'dirtying': ['polluting', 'contaminating', 'tainting', 'befouling', 'soiling', 'staining'],
'clean': ['purify', 'cleanse', 'wash', 'scrub', 'sanitize', 'tidy'],
'cleaning': ['purifying', 'cleansing', 'washing', 'scrubbing', 'sanitizing', 'tidying'],
'purify': ['clean', 'cleanse', 'wash', 'scrub', 'sanitize', 'tidy'],
'purifying': ['cleaning', 'cleansing', 'washing', 'scrubbing', 'sanitizing', 'tidying'],
'cleanse': ['clean', 'purify', 'wash', 'scrub', 'sanitize', 'tidy'],
'cleansing': ['cleaning', 'purifying', 'washing', 'scrubbing', 'sanitizing', 'tidying'],
'wash': ['clean', 'purify', 'cleanse', 'scrub', 'sanitize', 'tidy'],
'washing': ['cleaning', 'purifying', 'cleansing', 'scrubbing', 'sanitizing', 'tidying'],
'scrub': ['clean', 'purify', 'cleanse', 'wash', 'sanitize', 'tidy'],
'scrubbing': ['cleaning', 'purifying', 'cleansing', 'washing', 'sanitizing', 'tidying'],
'sanitize': ['clean', 'purify', 'cleanse', 'wash', 'scrub', 'tidy'],
'sanitizing': ['cleaning', 'purifying', 'cleansing', 'washing', 'scrubbing', 'tidying'],
'tidy': ['clean', 'purify', 'cleanse', 'wash', 'scrub', 'sanitize'],
'tidying': ['cleaning', 'purifying', 'cleansing', 'washing', 'scrubbing', 'sanitizing'],
'brighten': ['lighten', 'illuminate', 'enhance', 'improve', 'cheer', 'enliven'],
'brightening': ['lightening', 'illuminating', 'enhancing', 'improving', 'cheering', 'enlivening'],
'lighten': ['brighten', 'illuminate', 'enhance', 'improve', 'cheer', 'enliven'],
'lightening': ['brightening', 'illuminating', 'enhancing', 'improving', 'cheering', 'enlivening'],
'illuminate': ['brighten', 'lighten', 'enhance', 'improve', 'cheer', 'enliven'],
'illuminating': ['brightening', 'lightening', 'enhancing', 'improving', 'cheering', 'enlivening'],
'enhance': ['brighten', 'lighten', 'illuminate', 'improve', 'cheer', 'enliven'],
'enhancing': ['brightening', 'lightening', 'illuminating', 'improving', 'cheering', 'enlivening'],
'improve': ['brighten', 'lighten', 'illuminate', 'enhance', 'cheer', 'enliven'],
'improving': ['brightening', 'lightening', 'illuminating', 'enhancing', 'cheering', 'enlivening'],
'cheer': ['brighten', 'lighten', 'illuminate', 'enhance', 'improve', 'enliven'],
'cheering': ['brightening', 'lightening', 'illuminating', 'enhancing', 'improving', 'enlivening'],
'enliven': ['brighten', 'lighten', 'illuminate', 'enhance', 'improve', 'cheer'],
'enlivening': ['brightening', 'lightening', 'illuminating', 'enhancing', 'improving', 'cheering'],
'darken': ['dim', 'obscure', 'shadow', 'blacken', 'cloud', 'shade'],
'darkening': ['dimming', 'obscuring', 'shadowing', 'blackening', 'clouding', 'shading'],
'dim': ['darken', 'obscure', 'shadow', 'blacken', 'cloud', 'shade'],
'dimming': ['darkening', 'obscuring', 'shadowing', 'blackening', 'clouding', 'shading'],
'obscure': ['darken', 'dim', 'shadow', 'blacken', 'cloud', 'shade'],
'obscuring': ['darkening', 'dimming', 'shadowing', 'blackening', 'clouding', 'shading'],
'shadow': ['darken', 'dim', 'obscure', 'blacken', 'cloud', 'shade'],
'shadowing': ['darkening', 'dimming', 'obscuring', 'blackening', 'clouding', 'shading'],
'blacken': ['darken', 'dim', 'obscure', 'shadow', 'cloud', 'shade'],
'blackening': ['darkening', 'dimming', 'obscuring', 'shadowing', 'clouding', 'shading'],
'cloud': ['darken', 'dim', 'obscure', 'shadow', 'blacken', 'shade'],
'clouding': ['darkening', 'dimming', 'obscuring', 'shadowing', 'blackening', 'shading'],
'shade': ['darken', 'dim', 'obscure', 'shadow', 'blacken', 'cloud'],
'shading': ['darkening', 'dimming', 'obscuring', 'shadowing', 'blackening', 'clouding'],
'warm': ['heat', 'heat up', 'warm up', 'cook', 'bake', 'toast'],
'warming': ['heating', 'heating up', 'warming up', 'cooking', 'baking', 'toasting'],
'heat': ['warm', 'heat up', 'warm up', 'cook', 'bake', 'toast'],
'heating': ['warming', 'heating up', 'warming up', 'cooking', 'baking', 'toasting'],
'heat up': ['warm', 'heat', 'warm up', 'cook', 'bake', 'toast'],
'heating up': ['warming', 'heating', 'warming up', 'cooking', 'baking', 'toasting'],
'warm up': ['heat', 'heat up', 'warm', 'cook', 'bake', 'toast'],
'warming up': ['heating', 'heating up', 'warming', 'cooking', 'baking', 'toasting'],
'cook': ['warm', 'heat up', 'warm up', 'heat', 'bake', 'toast'],
'cooking': ['warming', 'heating up', 'warming up', 'heating', 'baking', 'toasting'],
'bake': ['warm', 'heat up', 'warm up', 'heat', 'cook', 'toast'],
'baking': ['warming', 'heating up', 'warming up', 'heating', 'cooking', 'toasting'],
'toast': ['warm', 'heat up', 'warm up', 'heat', 'cook', 'bake'],
'toasting': ['warming', 'heating up', 'warming up', 'heating', 'cooking', 'baking'],
'cool': ['chill', 'cool down', 'refrigerate', 'freeze', 'ice', 'cold'],
'cooling': ['chilling', 'cooling down', 'refrigerating', 'freezing', 'icing', 'colding'],
'chill': ['cool', 'cool down', 'refrigerate', 'freeze', 'ice', 'cold'],
'chilling': ['cooling', 'cooling down', 'refrigerating', 'freezing', 'icing', 'colding'],
'cool down': ['chill', 'cool', 'refrigerate', 'freeze', 'ice', 'cold'],
'cooling down': ['chilling', 'cooling', 'refrigerating', 'freezing', 'icing', 'colding'],
'refrigerate': ['cool', 'chill', 'cool down', 'freeze', 'ice', 'cold'],
'refrigerating': ['cooling', 'chilling', 'cooling down', 'freezing', 'icing', 'colding'],
'freeze': ['cool', 'chill', 'cool down', 'refrigerate', 'ice', 'cold'],
'freezing': ['cooling', 'chilling', 'cooling down', 'refrigerating', 'icing', 'colding'],
'ice': ['cool', 'chill', 'cool down', 'refrigerate', 'freeze', 'cold'],
'icing': ['cooling', 'chilling', 'cooling down', 'refrigerating', 'freezing', 'colding'],
'cold': ['cool', 'chill', 'cool down', 'refrigerate', 'freeze', 'ice'],
'colding': ['cooling', 'chilling', 'cooling down', 'refrigerating', 'freezing', 'icing'],
'wet': ['moisten', 'dampen', 'soak', 'drench', 'saturate', 'humidify'],
'wetting': ['moistening', 'dampening', 'soaking', 'drenching', 'saturating', 'humidifying'],
'moisten': ['wet', 'dampen', 'soak', 'drench', 'saturate', 'humidify'],
'moistening': ['wetting', 'dampening', 'soaking', 'drenching', 'saturating', 'humidifying'],
'dampen': ['wet', 'moisten', 'soak', 'drench', 'saturate', 'humidify'],
'dampening': ['wetting', 'moistening', 'soaking', 'drenching', 'saturating', 'humidifying'],
'soak': ['wet', 'moisten', 'dampen', 'drench', 'saturate', 'humidify'],
'soaking': ['wetting', 'moistening', 'dampening', 'drenching', 'saturating', 'humidifying'],
'drench': ['wet', 'moisten', 'dampen', 'soak', 'saturate', 'humidify'],
'drenching': ['wetting', 'moistening', 'dampening', 'soaking', 'saturating', 'humidifying'],
'saturate': ['wet', 'moisten', 'dampen', 'soak', 'drench', 'humidify'],
'saturating': ['wetting', 'moistening', 'dampening', 'soaking', 'drenching', 'humidifying'],
'humidify': ['wet', 'moisten', 'dampen', 'soak', 'drench', 'saturate'],
'humidifying': ['wetting', 'moistening', 'dampening', 'soaking', 'drenching', 'saturating'],
'dry': ['dehydrate', 'desiccate', 'evaporate moisture', 'wipe', 'towel', 'air'],
'drying': ['dehydrating', 'desiccating', 'evaporating moisture', 'wiping', 'toweling', 'airing'],
'dehydrate': ['dry', 'desiccate', 'evaporate moisture', 'wipe', 'towel', 'air'],
'dehydrating': ['drying', 'desiccating', 'evaporating moisture', 'wiping', 'toweling', 'airing'],
'desiccate': ['dry', 'dehydrate', 'evaporate moisture', 'wipe', 'towel', 'air'],
'desiccating': ['drying', 'dehydrating', 'evaporating moisture', 'wiping', 'toweling', 'airing'],
'evaporate moisture': ['dry', 'dehydrate', 'desiccate', 'wipe', 'towel', 'air'],
'evaporating moisture': ['drying', 'dehydrating', 'desiccating', 'wiping', 'toweling', 'airing'],
'wipe': ['dry', 'dehydrate', 'desiccate', 'evaporate moisture', 'towel', 'air'],
'wiping': ['drying', 'dehydrating', 'desiccating', 'evaporating moisture', 'toweling', 'airing'],
'towel': ['dry', 'dehydrate', 'desiccate', 'evaporate moisture', 'wipe', 'air'],
'toweling': ['drying', 'dehydrating', 'desiccating', 'evaporating moisture', 'wiping', 'airing'],
'air': ['dry', 'dehydrate', 'desiccate', 'evaporate moisture', 'wipe', 'towel'],
'airing': ['drying', 'dehydrating', 'desiccating', 'evaporating moisture', 'wiping', 'toweling'],
'smooth': ['even', 'level', 'flat', 'uniform', 'regular', 'consistent'],
'smoothing': ['evening', 'leveling', 'flattening', 'uniforming', 'regularing', 'consistening'],
'even': ['smooth', 'level', 'flat', 'uniform', 'regular', 'consistent'],
'evening': ['smoothing', 'leveling', 'flattening', 'uniforming', 'regularing', 'consistening'],
'level': ['smooth', 'even', 'flat', 'uniform', 'regular', 'consistent'],
'leveling': ['smoothing', 'evening', 'flattening', 'uniforming', 'regularing', 'consistening'],
'flat': ['smooth', 'even', 'level', 'uniform', 'regular', 'consistent'],
'flattening': ['smoothing', 'evening', 'leveling', 'uniforming', 'regularing', 'consistening'],
'uniform': ['smooth', 'even', 'level', 'flat', 'regular', 'consistent'],
'uniforming': ['smoothing', 'evening', 'leveling', 'flattening', 'regularing', 'consistening'],
'regular': ['smooth', 'even', 'level', 'flat', 'uniform', 'consistent'],
'regularing': ['smoothing', 'evening', 'leveling', 'flattening', 'uniforming', 'consistening'],
'consistent': ['smooth', 'even', 'level', 'flat', 'uniform', 'regular'],
'consistening': ['smoothing', 'evening', 'leveling', 'flattening', 'uniforming', 'regularing'],
'rough': ['coarse', 'abrasive', 'uneven', 'bumpy', 'jagged', 'gritty'],
'roughening': ['coarsening', 'abrasiving', 'unevening', 'bumpying', 'jaggeding', 'gritting'],
'coarse': ['rough', 'abrasive', 'uneven', 'bumpy', 'jagged', 'gritty'],
'coarsening': ['roughening', 'abrasiving', 'unevening', 'bumpying', 'jaggeding', 'gritting'],
'abrasive': ['rough', 'coarse', 'uneven', 'bumpy', 'jagged', 'gritty'],
'abrasiving': ['roughening', 'coarsening', 'unevening', 'bumpying', 'jaggeding', 'gritting'],
'uneven': ['rough', 'coarse', 'abrasive', 'bumpy', 'jagged', 'gritty'],
'unevening': ['roughening', 'coarsening', 'abrasiving', 'bumpying', 'jaggeding', 'gritting'],
'bumpy': ['rough', 'coarse', 'abrasive', 'uneven', 'jagged', 'gritty'],
'bumpying': ['roughening', 'coarsening', 'abrasiving', 'unevening', 'jaggeding', 'gritting'],
'jagged': ['rough', 'coarse', 'abrasive', 'uneven', 'bumpy', 'gritty'],
'jaggeding': ['roughening', 'coarsening', 'abrasiving', 'unevening', 'bumpying', 'gritting'],
'gritty': ['rough', 'coarse', 'abrasive', 'uneven', 'bumpy', 'jagged'],
'gritting': ['roughening', 'coarsening', 'abrasiving', 'unevening', 'bumpying', 'jaggeding'],
'polish': ['shine', 'buff', 'smooth', 'refine', 'perfect', 'improve'],
'polishing': ['shining', 'buffing', 'smoothing', 'refining', 'perfecting', 'improving'],
'shine': ['polish', 'buff', 'smooth', 'refine', 'perfect', 'improve'],
'shining': ['polishing', 'buffing', 'smoothing', 'refining', 'perfecting', 'improving'],
'buff': ['polish', 'shine', 'smooth', 'refine', 'perfect', 'improve'],
'buffing': ['polishing', 'shining', 'smoothing', 'refining', 'perfecting', 'improving'],
'smooth': ['polish', 'shine', 'buff', 'refine', 'perfect', 'improve'],
'smoothing': ['polishing', 'shining', 'buffing', 'refining', 'perfecting', 'improving'],
'refine': ['polish', 'shine', 'buff', 'smooth', 'perfect', 'improve'],
'refining': ['polishing', 'shining', 'buffing', 'smoothing', 'perfecting', 'improving'],
'perfect': ['polish', 'shine', 'buff', 'smooth', 'refine', 'improve'],
'perfecting': ['polishing', 'shining', 'buffing', 'smoothing', 'refining', 'improving'],
'improve': ['polish', 'shine', 'buff', 'smooth', 'refine', 'perfect'],
'improving': ['polishing', 'shining', 'buffing', 'smoothing', 'refining', 'perfecting'],
'dull': ['boring', 'uninteresting', 'tedious', 'monotonous', 'unexciting', 'lackluster'],
'dulling': ['boring', 'uninterestinging', 'tediousing', 'monotonousing', 'unexcitinging', 'lacklustering'],
'boring': ['dull', 'uninteresting', 'tedious', 'monotonous', 'unexciting', 'lackluster'],
'boringing': ['dulling', 'uninterestinging', 'tediousing', 'monotonousing', 'unexcitinging', 'lacklustering'],
'uninteresting': ['dull', 'boring', 'tedious', 'monotonous', 'unexciting', 'lackluster'],
'uninterestinging': ['dulling', 'boringing', 'tediousing', 'monotonousing', 'unexcitinging', 'lacklustering'],
'tedious': ['dull', 'boring', 'uninteresting', 'monotonous', 'unexciting', 'lackluster'],
'tediousing': ['dulling', 'boringing', 'uninterestinging', 'monotonousing', 'unexcitinging', 'lacklustering'],
'monotonous': ['dull', 'boring', 'uninteresting', 'tedious', 'unexciting', 'lackluster'],
'monotonousing': ['dulling', 'boringing', 'uninterestinging', 'tediousing', 'unexcitinging', 'lacklustering'],
'unexciting': ['dull', 'boring', 'uninteresting', 'tedious', 'monotonous', 'lackluster'],
'unexcitinging': ['dulling', 'boringing', 'uninterestinging', 'tediousing', 'monotonousing', 'lacklustering'],
'lackluster': ['dull', 'boring', 'uninteresting', 'tedious', 'monotonous', 'unexciting'],
'lacklustering': ['dulling', 'boringing', 'uninterestinging', 'tediousing', 'monotonousing', 'unexcitinging'],
'bright': ['vibrant', 'vivid', 'brilliant', 'luminous', 'radiant', 'shining'],
'brightening': ['vibranting', 'viving', 'brilliancing', 'luminousing', 'radianging', 'shininging'],
'vibrant': ['bright', 'vivid', 'brilliant', 'luminous', 'radiant', 'shining'],
'vibranting': ['brightening', 'viving', 'brilliancing', 'luminousing', 'radianging', 'shininging'],
'vivid': ['bright', 'vibrant', 'brilliant', 'luminous', 'radiant', 'shining'],
'viving': ['brightening', 'vibranting', 'brilliancing', 'luminousing', 'radianging', 'shininging'],
'brilliant': ['bright', 'vibrant', 'vivid', 'luminous', 'radiant', 'shining'],
'brilliancing': ['brightening', 'vibranting', 'viving', 'luminousing', 'radianging', 'shininging'],
'luminous': ['bright', 'vibrant', 'vivid', 'brilliant', 'radiant', 'shining'],
'luminousing': ['brightening', 'vibranting', 'viving', 'brilliancing', 'radianging', 'shininging'],
'radiant': ['bright', 'vibrant', 'vivid', 'brilliant', 'luminous', 'shining'],
'radianging': ['brightening', 'vibranting', 'viving', 'brilliancing', 'luminousing', 'shininging'],
'shining': ['bright', 'vibrant', 'vivid', 'brilliant', 'luminous', 'radiant'],
'shininging': ['brightening', 'vibranting', 'viving', 'brilliancing', 'luminousing', 'radianging'],
'sharp': ['keen', 'acute', 'pointed', 'piercing', 'cutting', 'intense'],
'sharpening': ['keening', 'acuting', 'pointing', 'piercinging', 'cuttinging', 'intensing'],
'keen': ['sharp', 'acute', 'pointed', 'piercing', 'cutting', 'intense'],
'keening': ['sharpening', 'acuting', 'pointing', 'piercinging', 'cuttinging', 'intensing'],
'acute': ['sharp', 'keen', 'pointed', 'piercing', 'cutting', 'intense'],
'acuting': ['sharpening', 'keening', 'pointing', 'piercinging', 'cuttinging', 'intensing'],
'pointed': ['sharp', 'keen', 'acute', 'piercing', 'cutting', 'intense'],
'pointing': ['sharpening', 'keening', 'acuting', 'piercinging', 'cuttinging', 'intensing'],
'piercing': ['sharp', 'keen', 'acute', 'pointed', 'cutting', 'intense'],
'piercinging': ['sharpening', 'keening', 'acuting', 'pointing', 'cuttinging', 'intensing'],
'cutting': ['sharp', 'keen', 'acute', 'pointed', 'piercing', 'intense'],
'cuttinging': ['sharpening', 'keening', 'acuting', 'pointing', 'piercinging', 'intensing'],
'intense': ['sharp', 'keen', 'acute', 'pointed', 'piercing', 'cutting'],
'intensing': ['sharpening', 'keening', 'acuting', 'pointing', 'piercinging', 'cuttinging'],
'blunt': ['dull', 'obtuse', 'rounded', 'unsharpened', 'dull-edged', 'not sharp'],
'blunting': ['dulling', 'obtusing', 'rounding', 'unsharpeneding', 'dull-edginging', 'not sharping'],
'dull': ['blunt', 'obtuse', 'rounded', 'unsharpened', 'dull-edged', 'not sharp'],
'dulling': ['blunting', 'obtusing', 'rounding', 'unsharpeneding', 'dull-edginging', 'not sharping'],
'obtuse': ['blunt', 'dull', 'rounded', 'unsharpened', 'dull-edged', 'not sharp'],
'obtusing': ['blunting', 'dulling', 'rounding', 'unsharpeneding', 'dull-edginging', 'not sharping'],
'rounded': ['blunt', 'dull', 'obtuse', 'unsharpened', 'dull-edged', 'not sharp'],
'rounding': ['blunting', 'dulling', 'obtusing', 'unsharpeneding', 'dull-edginging', 'not sharping'],
'unsharpened': ['blunt', 'dull', 'obtuse', 'rounded', 'dull-edged', 'not sharp'],
'unsharpeneding': ['blunting', 'dulling', 'obtusing', 'rounding', 'dull-edginging', 'not sharping'],
'dull-edged': ['blunt', 'dull', 'obtuse', 'rounded', 'unsharpened', 'not sharp'],
'dull-edginging': ['blunting', 'dulling', 'obtusing', 'rounding', 'unsharpeneding', 'not sharping'],
'not sharp': ['blunt', 'dull', 'obtuse', 'rounded', 'unsharpened', 'dull-edged'],
'not sharping': ['blunting', 'dulling', 'obtusing', 'rounding', 'unsharpeneding', 'dull-edginging'],
'clear': ['transparent', 'translucent', 'lucid', 'transparent', 'see-through', 'crystal clear'],
'clearing': ['transparenting', 'translucencing', 'luciding', 'transparenting', 'see-throughing', 'crystal clearing'],
'transparent': ['clear', 'translucent', 'lucid', 'transparent', 'see-through', 'crystal clear'],
'transparenting': ['clearing', 'translucencing', 'luciding', 'transparenting', 'see-throughing', 'crystal clearing'],
'translucent': ['clear', 'transparent', 'lucid', 'transparent', 'see-through', 'crystal clear'],
'translucencing': ['clearing', 'transparenting', 'luciding', 'transparenting', 'see-throughing', 'crystal clearing'],
'lucid': ['clear', 'transparent', 'translucent', 'transparent', 'see-through', 'crystal clear'],
'luciding': ['clearing', 'transparenting', 'translucencing', 'transparenting', 'see-throughing', 'crystal clearing'],
'see-through': ['clear', 'transparent', 'translucent', 'lucid', 'transparent', 'crystal clear'],
'see-throughing': ['clearing', 'transparenting', 'translucencing', 'luciding', 'transparenting', 'crystal clearing'],
'crystal clear': ['clear', 'transparent', 'translucent', 'lucid', 'transparent', 'see-through'],
'crystal clearing': ['clearing', 'transparenting', 'translucencing', 'luciding', 'transparenting', 'see-throughing'],
'cloudy': ['overcast', 'hazy', 'murky', 'turbid', 'opaque', 'unclear'],
'cloudying': ['overcasting', 'hazying', 'murkying', 'turbiding', 'opaquing', 'unclearning'],
'overcast': ['cloudy', 'hazy', 'murky', 'turbid', 'opaque', 'unclear'],
'overcasting': ['cloudying', 'hazying', 'murkying', 'turbiding', 'opaquing', 'unclearning'],
'hazy': ['cloudy', 'overcast', 'murky', 'turbid', 'opaque', 'unclear'],
'hazying': ['cloudying', 'overcasting', 'murkying', 'turbiding', 'opaquing', 'unclearning'],
'murky': ['cloudy', 'overcast', 'hazy', 'turbid', 'opaque', 'unclear'],
'murkying': ['cloudying', 'overcasting', 'hazying', 'turbiding', 'opaquing', 'unclearning'],
'turbid': ['cloudy', 'overcast', 'hazy', 'murky', 'opaque', 'unclear'],
'turbiding': ['cloudying', 'overcasting', 'hazying', 'murkying', 'opaquing', 'unclearning'],
'opaque': ['cloudy', 'overcast', 'hazy', 'murky', 'turbid', 'unclear'],
'opaquing': ['cloudying', 'overcasting', 'hazying', 'murkying', 'turbiding', 'unclearning'],
'unclear': ['cloudy', 'overcast', 'hazy', 'murky', 'turbid', 'opaque'],
'unclearning': ['cloudying', 'overcasting', 'hazying', 'murkying', 'turbiding', 'opaquing'],
'transparent': ['clear', 'translucent', 'lucid', 'transparent', 'see-through', 'crystal clear'],
'transparenting': ['clearing', 'translucencing', 'luciding', 'transparenting', 'see-throughing', 'crystal clearing'],
'translucent': ['clear', 'transparent', 'lucid', 'transparent', 'see-through', 'crystal clear'],
'translucencing': ['clearing', 'transparenting', 'luciding', 'transparenting', 'see-throughing', 'crystal clearing'],
'lucid': ['clear', 'transparent', 'translucent', 'transparent', 'see-through', 'crystal clear'],
'luciding': ['clearing', 'transparenting', 'translucencing', 'transparenting', 'see-throughing', 'crystal clearing'],
'see-through': ['clear', 'transparent', 'translucent', 'lucid', 'transparent', 'crystal clear'],
'see-throughing': ['clearing', 'transparenting', 'translucencing', 'luciding', 'transparenting', 'crystal clearing'],
'crystal clear': ['clear', 'transparent', 'translucent', 'lucid', 'transparent', 'see-through'],
'crystal clearing': ['clearing', 'transparenting', 'translucencing', 'luciding', 'transparenting', 'see-throughing'],
'solid': ['firm', 'hard', 'dense', 'substantial', 'sturdy', 'strong'],
'soliding': ['firming', 'harding', 'densing', 'substantialing', 'sturdying', 'stronging'],
'firm': ['solid', 'hard', 'dense', 'substantial', 'sturdy', 'strong'],
'firming': ['soliding', 'harding', 'densing', 'substantialing', 'sturdying', 'stronging'],
'hard': ['solid', 'firm', 'dense', 'substantial', 'sturdy', 'strong'],
'harding': ['soliding', 'firming', 'densing', 'substantialing', 'sturdying', 'stronging'],
'dense': ['solid', 'firm', 'hard', 'substantial', 'sturdy', 'strong'],
'densing': ['soliding', 'firming', 'harding', 'substantialing', 'sturdying', 'stronging'],
'substantial': ['solid', 'firm', 'hard', 'dense', 'sturdy', 'strong'],
'substantialing': ['soliding', 'firming', 'harding', 'densing', 'sturdying', 'stronging'],
'sturdy': ['solid', 'firm', 'hard', 'dense', 'substantial', 'strong'],
'sturdying': ['soliding', 'firming', 'harding', 'densing', 'substantialing', 'stronging'],
'strong': ['solid', 'firm', 'hard', 'dense', 'substantial', 'sturdy'],
'stronging': ['soliding', 'firming', 'harding', 'densing', 'substantialing', 'sturdying'],
'liquid': ['fluid', 'watery', 'runny', 'flowing', 'melted', 'liquefied'],
'liquiding': ['fluiding', 'waterying', 'runnying', 'flowinging', 'melteding', 'liquefieding'],
'fluid': ['liquid', 'watery', 'runny', 'flowing', 'melted', 'liquefied'],
'fluiding': ['liquiding', 'waterying', 'runnying', 'flowinging', 'melteding', 'liquefieding'],
'watery': ['liquid', 'fluid', 'runny', 'flowing', 'melted', 'liquefied'],
'waterying': ['liquiding', 'fluiding', 'runnying', 'flowinging', 'melteding', 'liquefieding'],
'runny': ['liquid', 'fluid', 'watery', 'flowing', 'melted', 'liquefied'],
'runnying': ['liquiding', 'fluiding', 'waterying', 'flowinging', 'melteding', 'liquefieding'],
'flowing': ['liquid', 'fluid', 'watery', 'runny', 'melted', 'liquefied'],
'flowinging': ['liquiding', 'fluiding', 'waterying', 'runnying', 'melteding', 'liquefieding'],
'melted': ['liquid', 'fluid', 'watery', 'runny', 'flowing', 'liquefied'],
'melteding': ['liquiding', 'fluiding', 'waterying', 'runnying', 'flowinging', 'liquefieding'],
'liquefied': ['liquid', 'fluid', 'watery', 'runny', 'flowing', 'melted'],
'liquefieding': ['liquiding', 'fluiding', 'waterying', 'runnying', 'flowinging', 'melteding'],
'gas': ['gaseous', 'vapor', 'vaporized', 'aeriform', 'ethereal', 'airy'],
'gasing': ['gaseousing', 'vaporing', 'vaporizeding', 'aeriforming', 'etherealing', 'airying'],
'gaseous': ['gas', 'vapor', 'vaporized', 'aeriform', 'ethereal', 'airy'],
'gaseousing': ['gasing', 'vaporing', 'vaporizeding', 'aeriforming', 'etherealing', 'airying'],
'vapor': ['gas', 'gaseous', 'vaporized', 'aeriform', 'ethereal', 'airy'],
'vaporing': ['gasing', 'gaseousing', 'vaporizeding', 'aeriforming', 'etherealing', 'airying'],
'vaporized': ['gas', 'gaseous', 'vapor', 'aeriform', 'ethereal', 'airy'],
'vaporizeding': ['gasing', 'gaseousing', 'vaporing', 'aeriforming', 'etherealing', 'airying'],
'aeriform': ['gas', 'gaseous', 'vapor', 'vaporized', 'ethereal', 'airy'],
'aeriforming': ['gasing', 'gaseousing', 'vaporing', 'vaporizeding', 'etherealing', 'airying'],
'ethereal': ['gas', 'gaseous', 'vapor', 'vaporized', 'aeriform', 'airy'],
'etherealing': ['gasing', 'gaseousing', 'vaporing', 'vaporizeding', 'aeriforming', 'airying'],
'airy': ['gas', 'gaseous', 'vapor', 'vaporized', 'aeriform', 'ethereal'],
'airying': ['gasing', 'gaseousing', 'vaporing', 'vaporizeding', 'aeriforming', 'etherealing'],
'solidify': ['harden', 'set', 'congeal', 'firm', 'freeze', 'thicken'],
'solidifying': ['hardening', 'setting', 'congealing', 'firming', 'freezing', 'thickening'],
'harden': ['solidify', 'set', 'congeal', 'firm', 'freeze', 'thicken'],
'hardening': ['solidifying', 'setting', 'congealing', 'firming', 'freezing', 'thickening'],
'set': ['solidify', 'harden', 'congeal', 'firm', 'freeze', 'thicken'],
'setting': ['solidifying', 'hardening', 'congealing', 'firming', 'freezing', 'thickening'],
'congeal': ['solidify', 'harden', 'set', 'firm', 'freeze', 'thicken'],
'congealing': ['solidifying', 'hardening', 'setting', 'firming', 'freezing', 'thickening'],
'firm': ['solidify', 'harden', 'set', 'congeal', 'freeze', 'thicken'],
'firming': ['solidifying', 'hardening', 'setting', 'congealing', 'freezing', 'thickening'],
'freeze': ['solidify', 'harden', 'set', 'congeal', 'firm', 'thicken'],
'freezing': ['solidifying', 'hardening', 'setting', 'congealing', 'firming', 'thickening'],
'thicken': ['solidify', 'harden', 'set', 'congeal', 'firm', 'freeze'],
'thickening': ['solidifying', 'hardening', 'setting', 'congealing', 'firming', 'freezing'],
'liquefy': ['melt', 'dissolve', 'thaw', 'soften', 'fluidize', 'deliquesce'],
'liquefying': ['melting', 'dissolving', 'thawing', 'softening', 'fluidizing', 'deliquescing'],
'melt': ['liquefy', 'dissolve', 'thaw', 'soften', 'fluidize', 'deliquesce'],
'melting': ['liquefying', 'dissolving', 'thawing', 'softening', 'fluidizing', 'deliquescing'],
'dissolve': ['liquefy', 'melt', 'thaw', 'soften', 'fluidize', 'deliquesce'],
'dissolving': ['liquefying', 'melting', 'thawing', 'softening', 'fluidizing', 'deliquescing'],
'thaw': ['liquefy', 'melt', 'dissolve', 'soften', 'fluidize', 'deliquesce'],
'thawing': ['liquefying', 'melting', 'dissolving', 'softening', 'fluidizing', 'deliquescing'],
'soften': ['liquefy', 'melt', 'dissolve', 'thaw', 'fluidize', 'deliquesce'],
'softening': ['liquefying', 'melting', 'dissolving', 'thawing', 'fluidizing', 'deliquescing'],
'fluidize': ['liquefy', 'melt', 'dissolve', 'thaw', 'soften', 'deliquesce'],
'fluidizing': ['liquefying', 'melting', 'dissolving', 'thawing', 'softening', 'deliquescing'],
'deliquesce': ['liquefy', 'melt', 'dissolve', 'thaw', 'soften', 'fluidize'],
'deliquescing': ['liquefying', 'melting', 'dissolving', 'thawing', 'softening', 'fluidizing'],
'vaporize': ['evaporate', 'vaporise', 'volatilize', 'gasify', 'evaporate', 'evaporate'],
'vaporizing': ['evaporating', 'vaporising', 'volatilizing', 'gasifying', 'evaporating', 'evaporating'],
'evaporate': ['vaporize', 'vaporise', 'volatilize', 'gasify', 'evaporate', 'evaporate'],
'evaporating': ['vaporizing', 'vaporising', 'volatilizing', 'gasifying', 'evaporating', 'evaporating'],
'vaporise': ['vaporize', 'evaporate', 'volatilize', 'gasify', 'evaporate', 'evaporate'],
'vaporising': ['vaporizing', 'evaporating', 'volatilizing', 'gasifying', 'evaporating', 'evaporating'],
'volatilize': ['vaporize', 'vaporise', 'evaporate', 'gasify', 'evaporate', 'evaporate'],
'volatilizing': ['vaporizing', 'vaporising', 'evaporating', 'gasifying', 'evaporating', 'evaporating'],
'gasify': ['vaporize', 'vaporise', 'evaporate', 'volatilize', 'evaporate', 'evaporate'],
'gasifying': ['vaporizing', 'vaporising', 'evaporating', 'volatilizing', 'evaporating', 'evaporating'],
'condense': ['compress', 'concentrate', 'compact', 'thicken', 'solidify', 'densify'],
'condensing': ['compressing', 'concentrating', 'compacting', 'thickening', 'solidifying', 'densifying'],
'compress': ['condense', 'concentrate', 'compact', 'thicken', 'solidify', 'densify'],
'compressing': ['condensing', 'concentrating', 'compacting', 'thickening', 'solidifying', 'densifying'],
'concentrate': ['condense', 'compress', 'compact', 'thicken', 'solidify', 'densify'],
'concentrating': ['condensing', 'compressing', 'compacting', 'thickening', 'solidifying', 'densifying'],
'compact': ['condense', 'compress', 'concentrate', 'thicken', 'solidify', 'densify'],
'compacting': ['condensing', 'compressing', 'concentrating', 'thickening', 'solidifying', 'densifying'],
'thicken': ['condense', 'compress', 'concentrate', 'compact', 'solidify', 'densify'],
'thickening': ['condensing', 'compressing', 'concentrating', 'compacting', 'solidifying', 'densifying'],
'solidify': ['condense', 'compress', 'concentrate', 'compact', 'thicken', 'densify'],
'solidifying': ['condensing', 'compressing', 'concentrating', 'compacting', 'thickening', 'densifying'],
'densify': ['condense', 'compress', 'concentrate', 'compact', 'thicken', 'solidify'],
'densifying': ['condensing', 'compressing', 'concentrating', 'compacting', 'thickening', 'solidifying'],
'dilute': ['thin', 'weaken', 'water down', 'reduce', 'lessen', 'diminish'],
'diluting': ['thinning', 'weakening', 'watering down', 'reducing', 'lessening', 'diminishing'],
'thin': ['dilute', 'weaken', 'water down', 'reduce', 'lessen', 'diminish'],
'thinning': ['diluting', 'weakening', 'watering down', 'reducing', 'lessening', 'diminishing'],
'weaken': ['dilute', 'thin', 'water down', 'reduce', 'lessen', 'diminish'],
'weakening': ['diluting', 'thinning', 'watering down', 'reducing', 'lessening', 'diminishing'],
'water down': ['dilute', 'thin', 'weaken', 'reduce', 'lessen', 'diminish'],
'watering down': ['diluting', 'thinning', 'weakening', 'reducing', 'lessening', 'diminishing'],
'reduce': ['dilute', 'thin', 'weaken', 'water down', 'lessen', 'diminish'],
'reducing': ['diluting', 'thinning', 'weakening', 'watering down', 'lessening', 'diminishing'],
'lessen': ['dilute', 'thin', 'weaken', 'water down', 'reduce', 'diminish'],
'lessening': ['diluting', 'thinning', 'weakening', 'watering down', 'reducing', 'diminishing'],
'diminish': ['dilute', 'thin', 'weaken', 'water down', 'reduce', 'lessen'],
'diminishing': ['diluting', 'thinning', 'weakening', 'watering down', 'reducing', 'lessening'],
'mix': ['combine', 'blend', 'merge', 'mingle', 'intermix', 'fuse'],
'mixing': ['combining', 'blending', 'merging', 'mingling', 'intermixing', 'fusing'],
'combine': ['mix', 'blend', 'merge', 'mingle', 'intermix', 'fuse'],
'combining': ['mixing', 'blending', 'merging', 'mingling', 'intermixing', 'fusing'],
'blend': ['mix', 'combine', 'merge', 'mingle', 'intermix', 'fuse'],
'blending': ['mixing', 'combining', 'merging', 'mingling', 'intermixing', 'fusing'],
'merge': ['mix', 'combine', 'blend', 'mingle', 'intermix', 'fuse'],
'merging': ['mixing', 'combining', 'blending', 'mingling', 'intermixing', 'fusing'],
'mingle': ['mix', 'combine', 'blend', 'merge', 'intermix', 'fuse'],
'mingling': ['mixing', 'combining', 'blending', 'merging', 'intermixing', 'fusing'],
'intermix': ['mix', 'combine', 'blend', 'merge', 'mingle', 'fuse'],
'intermixing': ['mixing', 'combining', 'blending', 'merging', 'mingling', 'fusing'],
'fuse': ['mix', 'combine', 'blend', 'merge', 'mingle', 'intermix'],
'fusing': ['mixing', 'combining', 'blending', 'merging', 'mingling', 'intermixing'],
'separate': ['divide', 'part', 'disconnect', 'detach', 'segregate', 'isolate'],
'separating': ['dividing', 'parting', 'disconnecting', 'detaching', 'segregating', 'isolating'],
'divide': ['separate', 'part', 'disconnect', 'detach', 'segregate', 'isolate'],
'dividing': ['separating', 'parting', 'disconnecting', 'detaching', 'segregating', 'isolating'],
'part': ['separate', 'divide', 'disconnect', 'detach', 'segregate', 'isolate'],
'parting': ['separating', 'dividing', 'disconnecting', 'detaching', 'segregating', 'isolating'],
'disconnect': ['separate', 'divide', 'part', 'detach', 'segregate', 'isolate'],
'disconnecting': ['separating', 'dividing', 'parting', 'detaching', 'segregating', 'isolating'],
'detach': ['separate', 'divide', 'part', 'disconnect', 'segregate', 'isolate'],
'detaching': ['separating', 'dividing', 'parting', 'disconnecting', 'segregating', 'isolating'],
'segregate': ['separate', 'divide', 'part', 'disconnect', 'detach', 'isolate'],
'segregating': ['separating', 'dividing', 'parting', 'disconnecting', 'detaching', 'isolating'],
'isolate': ['separate', 'divide', 'part', 'disconnect', 'detach', 'segregate'],
'isolating': ['separating', 'dividing', 'parting', 'disconnecting', 'detaching', 'segregating'],
'filter': ['strain', 'sift', 'screen', 'purify', 'clarify', 'refine'],
'filtering': ['straining', 'sifting', 'screening', 'purifying', 'clarifying', 'refining'],
'strain': ['filter', 'sift', 'screen', 'purify', 'clarify', 'refine'],
'straining': ['filtering', 'sifting', 'screening', 'purifying', 'clarifying', 'refining'],
'sift': ['filter', 'strain', 'screen', 'purify', 'clarify', 'refine'],
'sifting': ['filtering', 'straining', 'screening', 'purifying', 'clarifying', 'refining'],
'screen': ['filter', 'strain', 'sift', 'purify', 'clarify', 'refine'],
'screening': ['filtering', 'straining', 'sifting', 'purifying', 'clarifying', 'refining'],
'purify': ['filter', 'strain', 'sift', 'screen', 'clarify', 'refine'],
'purifying': ['filtering', 'straining', 'sifting', 'screening', 'clarifying', 'refining'],
'clarify': ['filter', 'strain', 'sift', 'screen', 'purify', 'refine'],
'clarifying': ['filtering', 'straining', 'sifting', 'screening', 'purifying', 'refining'],
'refine': ['filter', 'strain', 'sift', 'screen', 'purify', 'clarify'],
'refining': ['filtering', 'straining', 'sifting', 'screening', 'purifying', 'clarifying'],
'pollute': ['contaminate', 'taint', 'befoul', 'soil', 'stain', 'dirty'],
'polluting': ['contaminating', 'tainting', 'befouling', 'soiling', 'staining', 'dirtying'],
'contaminate': ['pollute', 'taint', 'befoul', 'soil', 'stain', 'dirty'],
'contaminating': ['polluting', 'tainting', 'befouling', 'soiling', 'staining', 'dirtying'],
'taint': ['pollute', 'contaminate', 'befoul', 'soil', 'stain', 'dirty'],
'tainting': ['polluting', 'contaminating', 'befouling', 'soiling', 'staining', 'dirtying'],
'befoul': ['pollute', 'contaminate', 'taint', 'soil', 'stain', 'dirty'],
'befouling': ['polluting', 'contaminating', 'tainting', 'soiling', 'staining', 'dirtying'],
'soil': ['pollute', 'contaminate', 'taint', 'befoul', 'stain', 'dirty'],
'soiling': ['polluting', 'contaminating', 'tainting', 'befouling', 'staining', 'dirtying'],
'stain': ['pollute', 'contaminate', 'taint', 'befoul', 'soil', 'dirty'],
'staining': ['polluting', 'contaminating', 'tainting', 'befouling', 'soiling', 'dirtying'],
'dirty': ['pollute', 'contaminate', 'taint', 'befoul', 'soil', 'stain'],
'dirtying': ['polluting', 'contaminating', 'tainting', 'befouling', 'soiling', 'staining'],
'clean': ['purify', 'cleanse', 'wash', 'scrub', 'sanitize', 'tidy'],
'cleaning': ['purifying', 'cleansing', 'washing', 'scrubbing', 'sanitizing', 'tidying'],
'purify': ['clean', 'cleanse', 'wash', 'scrub', 'sanitize', 'tidy'],
'purifying': ['cleaning', 'cleansing', 'washing', 'scrubbing', 'sanitizing', 'tidying'],
'cleanse': ['clean', 'purify', 'wash', 'scrub', 'sanitize', 'tidy'],
'cleansing': ['cleaning', 'purifying', 'washing', 'scrubbing', 'sanitizing', 'tidying'],
'wash': ['clean', 'purify', 'cleanse', 'scrub', 'sanitize', 'tidy'],
'washing': ['cleaning', 'purifying', 'cleansing', 'scrubbing', 'sanitizing', 'tidying'],
'scrub': ['clean', 'purify', 'cleanse', 'wash', 'sanitize', 'tidy'],
'scrubbing': ['cleaning', 'purifying', 'cleansing', 'washing', 'sanitizing', 'tidying'],
'sanitize': ['clean', 'purify', 'cleanse', 'wash', 'scrub', 'tidy'],
'sanitizing': ['cleaning', 'purifying', 'cleansing', 'washing', 'scrubbing', 'tidying'],
'tidy': ['clean', 'purify', 'cleanse', 'wash', 'scrub', 'sanitize'],
'tidying': ['cleaning', 'purifying', 'cleansing', 'washing', 'scrubbing', 'sanitizing'],
'brighten': ['lighten', 'illuminate', 'enhance', 'improve', 'cheer', 'enliven'],
'brightening': ['lightening', 'illuminating', 'enhancing', 'improving', 'cheering', 'enlivening'],
'lighten': ['brighten', 'illuminate', 'enhance', 'improve', 'cheer', 'enliven'],
'lightening': ['brightening', 'illuminating', 'enhancing', 'improving', 'cheering', 'enlivening'],
'illuminate': ['brighten', 'lighten', 'enhance', 'improve', 'cheer', 'enliven'],
'illuminating': ['brightening', 'lightening', 'enhancing', 'improving', 'cheering', 'enlivening'],
'enhance': ['brighten', 'lighten', 'illuminate', 'improve', 'cheer', 'enliven'],
'enhancing': ['brightening', 'lightening', 'illuminating', 'improving', 'cheering', 'enlivening'],
'improve': ['brighten', 'lighten', 'illuminate', 'enhance', 'cheer', 'enliven'],
'improving': ['brightening', 'lightening', 'illuminating', 'enhancing', 'cheering', 'enlivening'],
'cheer': ['brighten', 'lighten', 'illuminate', 'enhance', 'improve', 'enliven'],
'cheering': ['brightening', 'lightening', 'illuminating', 'enhancing', 'improving', 'enlivening'],
'enliven': ['brighten', 'lighten', 'illuminate', 'enhance', 'improve', 'cheer'],
'enlivening': ['brightening', 'lightening', 'illuminating', 'enhancing', 'improving', 'cheering'],
'darken': ['dim', 'obscure', 'shadow', 'blacken', 'cloud', 'shade'],
'darkening': ['dimming', 'obscuring', 'shadowing', 'blackening', 'clouding', 'shading'],
'dim': ['darken', 'obscure', 'shadow', 'blacken', 'cloud', 'shade'],
'dimming': ['darkening', 'obscuring', 'shadowing', 'blackening', 'clouding', 'shading'],
'obscure': ['darken', 'dim', 'shadow', 'blacken', 'cloud', 'shade'],
'obscuring': ['darkening', 'dimming', 'shadowing', 'blackening', 'clouding', 'shading'],
'shadow': ['darken', 'dim', 'obscure', 'blacken', 'cloud', 'shade'],
'shadowing': ['darkening', 'dimming', 'obscuring', 'blackening', 'clouding', 'shading'],
'blacken': ['darken', 'dim', 'obscure', 'shadow', 'cloud', 'shade'],
'blackening': ['darkening', 'dimming', 'obscuring', 'shadowing', 'clouding', 'shading'],
'cloud': ['darken', 'dim', 'obscure', 'shadow', 'blacken', 'shade'],
'clouding': ['darkening', 'dimming', 'obscuring', 'shadowing', 'blackening', 'shading'],
'shade': ['darken', 'dim', 'obscure', 'shadow', 'blacken', 'cloud'],
'shading': ['darkening', 'dimming', 'obscuring', 'shadowing', 'blackening', 'clouding'],
'warm': ['heat', 'heat up', 'warm up', 'cook', 'bake', 'toast'],
'warming': ['heating', 'heating up', 'warming up', 'cooking', 'baking', 'toasting'],
'heat': ['warm', 'heat up', 'warm up', 'cook', 'bake', 'toast'],
'heating': ['warming', 'heating up', 'warming up', 'cooking', 'baking', 'toasting'],
'heat up': ['warm', 'heat', 'warm up', 'cook', 'bake', 'toast'],
'heating up': ['warming', 'heating', 'warming up', 'cooking', 'baking', 'toasting'],
'warm up': ['heat', 'heat up', 'warm', 'cook', 'bake', 'toast'],
'warming up': ['heating', 'heating up', 'warming', 'cooking', 'baking', 'toasting'],
'cook': ['warm', 'heat up', 'warm up', 'heat', 'bake', 'toast'],
'cooking': ['warming', 'heating up', 'warming up', 'heating', 'baking', 'toasting'],
'bake': ['warm', 'heat up', 'warm up', 'heat', 'cook', 'toast'],
'baking': ['warming', 'heating up', 'warming up', 'heating', 'cooking', 'toasting'],
'toast': ['warm', 'heat up', 'warm up', 'heat', 'cook', 'bake'],
'toasting': ['warming', 'heating up', 'warming up', 'heating', 'cooking', 'baking'],
'cool': ['chill', 'cool down', 'refrigerate', 'freeze', 'ice', 'cold'],
'cooling': ['chilling', 'cooling down', 'refrigerating', 'freezing', 'icing', 'colding'],
'chill': ['cool', 'cool down', 'refrigerate', 'freeze', 'ice', 'cold'],
'chilling': ['cooling', 'cooling down', 'refrigerating', 'freezing', 'icing', 'colding'],
'cool down': ['chill', 'cool', 'refrigerate', 'freeze', 'ice', 'cold'],
'cooling down': ['chilling', 'cooling', 'refrigerating', 'freezing', 'icing', 'colding'],
'refrigerate': ['cool', 'chill', 'cool down', 'freeze', 'ice', 'cold'],
'refrigerating': ['cooling', 'chilling', 'cooling down', 'freezing', 'icing', 'colding'],
'freeze': ['cool', 'chill', 'cool down', 'refrigerate', 'ice', 'cold'],
'freezing': ['cooling', 'chilling', 'cooling down', 'refrigerating', 'icing', 'colding'],
'ice': ['cool', 'chill', 'cool down', 'refrigerate', 'freeze', 'cold'],
'icing': ['cooling', 'chilling', 'cooling down', 'refrigerating', 'freezing', 'colding'],
'cold': ['cool', 'chill', 'cool down', 'refrigerate', 'freeze', 'ice'],
'colding': ['cooling', 'chilling', 'cooling down', 'refrigerating', 'freezing', 'icing'],
'wet': ['moisten', 'dampen', 'soak', 'drench', 'saturate', 'humidify'],
'wetting': ['moistening', 'dampening', 'soaking', 'drenching', 'saturating', 'humidifying'],
'moisten': ['wet', 'dampen', 'soak', 'drench', 'saturate', 'humidify'],
'moistening': ['wetting', 'dampening', 'soaking', 'drenching', 'saturating', 'humidifying'],
'dampen': ['wet', 'moisten', 'soak', 'drench', 'saturate', 'humidify'],
'dampening': ['wetting', 'moistening', 'soaking', 'drenching', 'saturating', 'humidifying'],
'soak': ['wet', 'moisten', 'dampen', 'drench', 'saturate', 'humidify'],
'soaking': ['wetting', 'moistening', 'dampening', 'drenching', 'saturating', 'humidifying'],
'drench': ['wet', 'moisten', 'dampen', 'soak', 'saturate', 'humidify'],
'drenching': ['wetting', 'moistening', 'dampening', 'soaking', 'saturating', 'humidifying'],
'saturate': ['wet', 'moisten', 'dampen', 'soak', 'drench', 'humidify'],
'saturating': ['wetting', 'moistening', 'dampening', 'soaking', 'drenching', 'humidifying'],
'humidify': ['wet', 'moisten', 'dampen', 'soak', 'drench', 'saturate'],
'humidifying': ['wetting', 'moistening', 'dampening', 'soaking', 'drenching', 'saturating'],
'dry': ['dehydrate', 'desiccate', 'evaporate moisture', 'wipe', 'towel', 'air'],
'drying': ['dehydrating', 'desiccating', 'evaporating moisture', 'wiping', 'toweling', 'airing'],
'dehydrate': ['dry', 'desiccate', 'evaporate moisture', 'wipe', 'towel', 'air'],
'dehydrating': ['drying', 'desiccating', 'evaporating moisture', 'wiping', 'toweling', 'airing'],
'desiccate': ['dry', 'dehydrate', 'evaporate moisture', 'wipe', 'towel', 'air'],
'desiccating': ['drying', 'dehydrating', 'evaporating moisture', 'wiping', 'toweling', 'airing'],
'evaporate moisture': ['dry', 'dehydrate', 'desiccate', 'wipe', 'towel', 'air'],
'evaporating moisture': ['drying', 'dehydrating', 'desiccating', 'wiping', 'toweling', 'airing'],
'wipe': ['dry', 'dehydrate', 'desiccate', 'evaporate moisture', 'towel', 'air'],
'wiping': ['drying', 'dehydrating', 'desiccating', 'evaporating moisture', 'toweling', 'airing'],
'towel': ['dry', 'dehydrate', 'desiccate', 'evaporate moisture', 'wipe', 'air'],
'toweling': ['drying', 'dehydrating', 'desiccating', 'evaporating moisture', 'wiping', 'airing'],
'air': ['dry', 'dehydrate', 'desiccate', 'evaporate moisture', 'wipe', 'towel'],
'airing': ['drying', 'dehydrating', 'desiccating', 'evaporating moisture', 'wiping', 'toweling'],
'smooth': ['even', 'level', 'flat', 'uniform', 'regular', 'consistent'],
'smoothing': ['evening', 'leveling', 'flattening', 'uniforming', 'regularing', 'consistening'],
'even': ['smooth', 'level', 'flat', 'uniform', 'regular', 'consistent'],
'evening': ['smoothing', 'leveling', 'flattening', 'uniforming', 'regularing', 'consistening'],
'level': ['smooth', 'even', 'flat', 'uniform', 'regular', 'consistent'],
'leveling': ['smoothing', 'evening', 'flattening', 'uniforming', 'regularing', 'consistening'],
'flat': ['smooth', 'even', 'level', 'uniform', 'regular', 'consistent'],
'flattening': ['smoothing', 'evening', 'leveling', 'uniforming', 'regularing', 'consistening'],
'uniform': ['smooth', 'even', 'level', 'flat', 'regular', 'consistent'],
'uniforming': ['smoothing', 'evening', 'leveling', 'flattening', 'regularing', 'consistening'],
'regular': ['smooth', 'even', 'level', 'flat', 'uniform', 'consistent'],
'regularing': ['smoothing', 'evening', 'leveling', 'flattening', 'uniforming', 'consistening'],
'consistent': ['smooth', 'even', 'level', 'flat', 'uniform', 'regular'],
'consistening': ['smoothing', 'evening', 'leveling', 'flattening', 'uniforming', 'regularing'],
'rough': ['coarse', 'abrasive', 'uneven', 'bumpy', 'jagged', 'gritty'],
'roughening': ['coarsening', 'abrasiving', 'unevening', 'bumpying', 'jaggeding', 'gritting'],
'coarse': ['rough', 'abrasive', 'uneven', 'bumpy', 'jagged', 'gritty'],
'coarsening': ['roughening', 'abrasiving', 'unevening', 'bumpying', 'jaggeding', 'gritting'],
'abrasive': ['rough', 'coarse', 'uneven', 'bumpy', 'jagged', 'gritty'],
'abrasiving': ['roughening', 'coarsening', 'unevening', 'bumpying', 'jaggeding', 'gritting'],
'uneven': ['rough', 'coarse', 'abrasive', 'bumpy', 'jagged', 'gritty'],
'unevening': ['roughening', 'coarsening', 'abrasiving', 'bumpying', 'jaggeding', 'gritting'],
'bumpy': ['rough', 'coarse', 'abrasive', 'uneven', 'jagged', 'gritty'],
'bumpying': ['roughening', 'coarsening', 'abrasiving', 'unevening', 'jaggeding', 'gritting'],
'jagged': ['rough', 'coarse', 'abrasive', 'uneven', 'bumpy', 'gritty'],
'jaggeding': ['roughening', 'coarsening', 'abrasiving', 'unevening', 'bumpying', 'gritting'],
'gritty': ['rough', 'coarse', 'abrasive', 'uneven', 'bumpy', 'jagged'],
'gritting': ['roughening', 'coarsening', 'abrasiving', 'unevening', 'bumpying', 'jaggeding'],
'polish': ['shine', 'buff', 'smooth', 'refine', 'perfect', 'improve'],
'polishing': ['shining', 'buffing', 'smoothing', 'refining', 'perfecting', 'improving'],
'shine': ['polish', 'buff', 'smooth', 'refine', 'perfect', 'improve'],
'shining': ['polishing', 'buffing', 'smoothing', 'refining', 'perfecting', 'improving'],
'buff': ['polish', 'shine', 'smooth', 'refine', 'perfect', 'improve'],
'buffing': ['polishing', 'shining', 'smoothing', 'refining', 'perfecting', 'improving'],
'smooth': ['polish', 'shine', 'buff', 'refine', 'perfect', 'improve'],
'smoothing': ['polishing', 'shining', 'buffing', 'refining', 'perfecting', 'improving'],
'refine': ['polish', 'shine', 'buff', 'smooth', 'perfect', 'improve'],
'refining': ['polishing', 'shining', 'buffing', 'smoothing', 'perfecting', 'improving'],
'perfect': ['polish', 'shine', 'buff', 'smooth', 'refine', 'improve'],
'perfecting': ['polishing', 'shining', 'buffing', 'smoothing', 'refining', 'improving'],
'improve': ['polish', 'shine', 'buff', 'smooth', 'refine', 'perfect'],
'improving': ['polishing', 'shining', 'buffing', 'smoothing', 'refining', 'perfecting'],
'dull': ['boring', 'uninteresting', 'tedious', 'monotonous', 'unexciting', 'lackluster'],
'dulling': ['boring', 'uninterestinging', 'tediousing', 'monotonousing', 'unexcitinging', 'lacklustering'],
'boring': ['dull', 'uninteresting', 'tedious', 'monotonous', 'unexciting', 'lackluster'],
'boringing': ['dulling', 'uninterestinging', 'tediousing', 'monotonousing', 'unexcitinging', 'lacklustering'],
'uninteresting': ['dull', 'boring', 'tedious', 'monotonous', 'unexciting', 'lackluster'],
'uninterestinging': ['dulling', 'boringing', 'tediousing', 'monotonousing', 'unexcitinging', 'lacklustering'],
'tedious': ['dull', 'boring', 'uninteresting', 'monotonous', 'unexciting', 'lackluster'],
'tediousing': ['dulling', 'boringing', 'uninterestinging', 'monotonousing', 'unexcitinging', 'lacklustering'],
'monotonous': ['dull', 'boring', 'uninteresting', 'tedious', 'unexciting', 'lackluster'],
'monotonousing': ['dulling', 'boringing', 'uninterestinging', 'tediousing', 'unexcitinging', 'lacklustering'],
'unexciting': ['dull', 'boring', 'uninteresting', 'tedious', 'monotonous', 'lackluster'],
'unexcitinging': ['dulling', 'boringing', 'uninterestinging', 'tediousing', 'monotonousing', 'lacklustering'],
'lackluster': ['dull', 'boring', 'uninteresting', 'tedious', 'monotonous', 'unexciting'],
'lacklustering': ['dulling', 'boringing', 'uninterestinging', 'tediousing', 'monotonousing', 'unexcitinging'],
'bright': ['vibrant', 'vivid', 'brilliant', 'luminous', 'radiant', 'shining'],
'brightening': ['vibranting', 'viving', 'brilliancing', 'luminousing', 'radianging', 'shininging'],
'vibrant': ['bright', 'vivid', 'brilliant', 'luminous', 'radiant', 'shining'],
'vibranting': ['brightening', 'viving', 'brilliancing', 'luminousing', 'radianging', 'shininging'],
'vivid': ['bright', 'vibrant', 'brilliant', 'luminous', 'radiant', 'shining'],
'viving': ['brightening', 'vibranting', 'brilliancing', 'luminousing', 'radianging', 'shininging'],
'brilliant': ['bright', 'vibrant', 'vivid', 'luminous', 'radiant', 'shining'],
'brilliancing': ['brightening', 'vibranting', 'viving', 'luminousing', 'radianging', 'shininging'],
'luminous': ['bright', 'vibrant', 'vivid', 'brilliant', 'radiant', 'shining'],
'luminousing': ['brightening', 'vibranting', 'viving', 'brilliancing', 'radianging', 'shininging'],
'radiant': ['bright', 'vibrant', 'vivid', 'brilliant', 'luminous', 'shining'],
'radianging': ['brightening', 'vibranting', 'viving', 'brilliancing', 'luminousing', 'shininging'],
'shining': ['bright', 'vibrant', 'vivid', 'brilliant', 'luminous', 'radiant'],
'shininging': ['brightening', 'vibranting', 'viving', 'brilliancing', 'luminousing', 'radianging'],
'sharp': ['keen', 'acute', 'pointed', 'piercing', 'cutting', 'intense'],
'sharpening': ['keening', 'acuting', 'pointing', 'piercinging', 'cuttinging', 'intensing'],
'keen': ['sharp', 'acute', 'pointed', 'piercing', 'cutting', 'intense'],
'keening': ['sharpening', 'acuting', 'pointing', 'piercinging', 'cuttinging', 'intensing'],
'acute': ['sharp', 'keen', 'pointed', 'piercing', 'cutting', 'intense'],
'acuting': ['sharpening', 'keening', 'pointing', 'piercinging', 'cuttinging', 'intensing'],
'pointed': ['sharp', 'keen', 'acute', 'piercing', 'cutting', 'intense'],
'pointing': ['sharpening', 'keening', 'acuting', 'piercinging', 'cuttinging', 'intensing'],
'piercing': ['sharp', 'keen', 'acute', 'pointed', 'cutting', 'intense'],
'piercinging': ['sharpening', 'keening', 'acuting', 'pointing', 'cuttinging', 'intensing'],
'cutting': ['sharp', 'keen', 'acute', 'pointed', 'piercing', 'intense'],
'cuttinging': ['sharpening', 'keening', 'acuting', 'pointing', 'piercinging', 'intensing'],
'intense': ['sharp', 'keen', 'acute', 'pointed', 'piercing', 'cutting'],
'intensing': ['sharpening', 'keening', 'acuting', 'pointing', 'piercinging', 'cuttinging'],
'blunt': ['dull', 'obtuse', 'rounded', 'unsharpened', 'dull-edged', 'not sharp'],
'blunting': ['dulling', 'obtusing', 'rounding', 'unsharpeneding', 'dull-edginging', 'not sharping'],
'dull': ['blunt', 'obtuse', 'rounded', 'unsharpened', 'dull-edged', 'not sharp'],
'dulling': ['blunting', 'obtusing', 'rounding', 'unsharpeneding', 'dull-edginging', 'not sharping'],
'obtuse': ['blunt', 'dull', 'rounded', 'unsharpened', 'dull-edged', 'not sharp'],
'obtusing': ['blunting', 'dulling', 'rounding', 'unsharpeneding', 'dull-edginging', 'not sharping'],
'rounded': ['blunt', 'dull', 'obtuse', 'unsharpened', 'dull-edged', 'not sharp'],
'rounding': ['blunting', 'dulling', 'obtusing', 'unsharpeneding', 'dull-edginging', 'not sharping'],
'unsharpened': ['blunt', 'dull', 'obtuse', 'rounded', 'dull-edged', 'not sharp'],
'unsharpeneding': ['blunting', 'dulling', 'obtusing', 'rounding', 'dull-edginging', 'not sharping'],
'dull-edged': ['blunt', 'dull', 'obtuse', 'rounded', 'unsharpened', 'not sharp'],
'dull-edginging': ['blunting', 'dulling', 'obtusing', 'rounding', 'unsharpeneding', 'not sharping'],
'not sharp': ['blunt', 'dull', 'obtuse', 'rounded', 'unsharpened', 'dull-edged'],
'not sharping': ['blunting', 'dulling', 'obtusing', 'rounding', 'unsharpeneding', 'dull-edginging'],
'clear': ['transparent', 'translucent', 'lucid', 'transparent', 'see-through', 'crystal clear'],
'clearing': ['transparenting', 'translucencing', 'luciding', 'transparenting', 'see-throughing', 'crystal clearing'],
'transparent': ['clear', 'translucent', 'lucid', 'transparent', 'see-through', 'crystal clear'],
'transparenting': ['clearing', 'translucencing', 'luciding', 'transparenting', 'see-throughing', 'crystal clearing'],
'translucent': ['clear', 'transparent', 'lucid', 'transparent', 'see-through', 'crystal clear'],
'translucencing': ['clearing', 'transparenting', 'luciding', 'transparenting', 'see-throughing', 'crystal clearing'],
'lucid': ['clear', 'transparent', 'translucent', 'transparent', 'see-through', 'crystal clear'],
'luciding': ['clearing', 'transparenting', 'translucencing', 'transparenting', 'see-throughing', 'crystal clearing'],
'see-through': ['clear', 'transparent', 'translucent', 'lucid', 'transparent', 'crystal clear'],
'see-throughing': ['clearing', 'transparenting', 'translucencing', 'luciding', 'transparenting', 'crystal clearing'],
'crystal clear': ['clear', 'transparent', 'translucent', 'lucid', 'transparent', 'see-through'],
'crystal clearing': ['clearing', 'transparenting', 'translucencing', 'luciding', 'transparenting', 'see-throughing'],
'cloudy': ['overcast', 'hazy', 'murky', 'turbid', 'opaque', 'unclear'],
'cloudying': ['overcasting', 'hazying', 'murkying', 'turbiding', 'opaquing', 'unclearning'],
'overcast': ['cloudy', 'hazy', 'murky', 'turbid', 'opaque', 'unclear'],
'overcasting': ['cloudying', 'hazying', 'murkying', 'turbiding', 'opaquing', 'unclearning'],
'hazy': ['cloudy', 'overcast', 'murky', 'turbid', 'opaque', 'unclear'],
'hazying': ['cloudying', 'overcasting', 'murkying', 'turbiding', 'opaquing', 'unclearning'],
'murky': ['cloudy', 'overcast', 'hazy', 'turbid', 'opaque', 'unclear'],
'murkying': ['cloudying', 'overcasting', 'hazying', 'turbiding', 'opaquing', 'unclearning'],
'turbid': ['cloudy', 'overcast', 'hazy', 'murky', 'opaque', 'unclear'],
'turbiding': ['cloudying', 'overcasting', 'hazying', 'murkying', 'opaquing', 'unclearning'],
'opaque': ['cloudy', 'overcast', 'hazy', 'murky', 'turbid', 'unclear'],
'opaquing': ['cloudying', 'overcasting', 'hazying', 'murkying', 'turbiding', 'unclearning'],
'unclear': ['cloudy', 'overcast', 'hazy', 'murky', 'turbid', 'opaque'],
'unclearning': ['cloudying', 'overcasting', 'hazying', 'murkying', 'turbiding', 'opaquing'],
'transparent': ['clear', 'translucent', 'lucid', 'transparent', 'see-through', 'crystal clear'],
'transparenting': ['clearing', 'translucencing', 'luciding', 'transparenting', 'see-throughing', 'crystal clearing'],
'translucent': ['clear', 'transparent', 'lucid', 'transparent', 'see-through', 'crystal clear'],
'translucencing': ['clearing', 'transparenting', 'luciding', 'transparenting', 'see-throughing', 'crystal clearing'],
'lucid': ['clear', 'transparent', 'translucent', 'transparent', 'see-through', 'crystal clear'],
'luciding': ['clearing', 'transparenting', 'translucencing', 'transparenting', 'see-throughing', 'crystal clearing'],
'see-through': ['clear', 'transparent', 'translucent', 'lucid', 'transparent', 'crystal clear'],
'see-throughing': ['clearing', 'transparenting', 'translucencing', 'luciding', 'transparenting', 'crystal clearing'],
'crystal clear': ['clear', 'transparent', 'translucent', 'lucid', 'transparent', 'see-through'],
'crystal clearing': ['clearing', 'transparenting', 'translucencing', 'luciding', 'transparenting', 'see-throughing'],
'solid': ['firm', 'hard', 'dense', 'substantial', 'sturdy', 'strong'],
'soliding': ['firming', 'harding', 'densing', 'substantialing', 'sturdying', 'stronging'],
'firm': ['solid', 'hard', 'dense', 'substantial', 'sturdy', 'strong'],
'firming': ['soliding', 'harding', 'densing', 'substantialing', 'sturdying', 'stronging'],
'hard': ['solid', 'firm', 'dense', 'substantial', 'sturdy', 'strong'],
'harding': ['soliding', 'firming', 'densing', 'substantialing', 'sturdying', 'stronging'],
'dense': ['solid', 'firm', 'hard', 'substantial', 'sturdy', 'strong'],
'densing': ['soliding', 'firming', 'harding', 'substantialing', 'sturdying', 'stronging'],
'substantial': ['solid', 'firm', 'hard', 'dense', 'sturdy', 'strong'],
'substantialing': ['soliding', 'firming', 'harding', 'densing', 'sturdying', 'stronging'],
'sturdy': ['solid', 'firm', 'hard', 'dense', 'substantial', 'strong'],
'sturdying': ['soliding', 'firming', 'harding', 'densing', 'substantialing', 'stronging'],
'strong': ['solid', 'firm', 'hard', 'dense', 'substantial', 'sturdy'],
'stronging': ['soliding', 'firming', 'harding', 'densing', 'substantialing', 'sturdying'],
'liquid': ['fluid', 'watery', 'runny', 'flowing', 'melted', 'liquefied'],
'liquiding': ['fluiding', 'waterying', 'runnying', 'flowinging', 'melteding', 'liquefieding'],
'fluid': ['liquid', 'watery', 'runny', 'flowing', 'melted', 'liquefied'],
'fluiding': ['liquiding', 'waterying', 'runnying', 'flowinging', 'melteding', 'liquefieding'],
'watery': ['liquid', 'fluid', 'runny', 'flowing', 'melted', 'liquefied'],
'waterying': ['liquiding', 'fluiding', 'runnying', 'flowinging', 'melteding', 'liquefieding'],
'runny': ['liquid', 'fluid', 'watery', 'flowing', 'melted', 'liquefied'],
'runnying': ['liquiding', 'fluiding', 'waterying', 'flowinging', 'melteding', 'liquefieding'],
'flowing': ['liquid', 'fluid', 'watery', 'runny', 'melted', 'liquefied'],
'flowinging': ['liquiding', 'fluiding', 'waterying', 'runnying', 'melteding', 'liquefieding'],
'melted': ['liquid', 'fluid', 'watery', 'runny', 'flowing', 'liquefied'],
'melteding': ['liquiding', 'fluiding', 'waterying', 'runnying', 'flowinging', 'liquefieding'],
'liquefied': ['liquid', 'fluid', 'watery', 'runny', 'flowing', 'melted'],
'liquefieding': ['liquiding', 'fluiding', 'waterying', 'runnying', 'flowinging', 'melteding'],
'gas': ['gaseous', 'vapor', 'vaporized', 'aeriform', 'ethereal', 'airy'],
'gasing': ['gaseousing', 'vaporing', 'vaporizeding', 'aeriforming', 'etherealing', 'airying'],
'gaseous': ['gas', 'vapor', 'vaporized', 'aeriform', 'ethereal', 'airy'],
'gaseousing': ['gasing', 'vaporing', 'vaporizeding', 'aeriforming', 'etherealing', 'airying'],
'vapor': ['gas', 'gaseous', 'vaporized', 'aeriform', 'ethereal', 'airy'],
'vaporing': ['gasing', 'gaseousing', 'vaporizeding', 'aeriforming', 'etherealing', 'airying'],
'vaporized': ['gas', 'gaseous', 'vapor', 'aeriform', 'ethereal', 'airy'],
'vaporizeding': ['gasing', 'gaseousing', 'vaporing', 'aeriforming', 'etherealing', 'airying'],
'aeriform': ['gas', 'gaseous', 'vapor', 'vaporized', 'ethereal', 'airy'],
'aeriforming': ['gasing', 'gaseousing', 'vaporing', 'vaporizeding', 'etherealing', 'airying']
};