summaryrefslogtreecommitdiff
path: root/generators
diff options
context:
space:
mode:
Diffstat (limited to 'generators')
-rw-r--r--generators/datageneration.ipynb45792
1 files changed, 45764 insertions, 28 deletions
diff --git a/generators/datageneration.ipynb b/generators/datageneration.ipynb
index 9bb1407..9d3067f 100644
--- a/generators/datageneration.ipynb
+++ b/generators/datageneration.ipynb
@@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "code",
- "execution_count": 38,
+ "execution_count": 82,
"id": "e1b17564-0abb-41c5-8cf4-7200b014550f",
"metadata": {},
"outputs": [
@@ -32,7 +32,7 @@
},
{
"cell_type": "code",
- "execution_count": 60,
+ "execution_count": 83,
"id": "27488c82-1e9b-4873-9e6b-e0b5937fc51d",
"metadata": {},
"outputs": [],
@@ -63,18 +63,19 @@
" for synset, synonyms in zip(synsets, synonymss):\n",
" if synset.lexname() in lexname_blacklist:\n",
" continue\n",
+ " defn = synset.definition()\n",
" if synset.pos() in pos:\n",
- " syns |= set(syn for syn in synonyms if not is_proper(syn))\n",
+ " syns |= set((syn, defn) for syn in synonyms if not is_proper(syn))\n",
" if len(syns) >= 4:\n",
- " clues = [format(clue) for clue in syns]\n",
- " clues.append(format(word))\n",
+ " clues = [(format(clue), defn) for (clue, defn) in syns]\n",
+ " #clues.append(format(word))\n",
" dsynonyms.append(dict(answer=word, hint=f'synonyms for {format(word)}', clues=clues))\n",
" return dsynonyms"
]
},
{
"cell_type": "code",
- "execution_count": 61,
+ "execution_count": 84,
"id": "445789e7-3808-4a28-9df5-9a69313cb4c2",
"metadata": {},
"outputs": [],
@@ -87,11 +88,17 @@
},
{
"cell_type": "code",
- "execution_count": 62,
+ "execution_count": 89,
"id": "64ccaf3d-9743-49ed-b10b-d7b3e70e0235",
"metadata": {},
"outputs": [],
"source": [
+ "def find_def(w):\n",
+ " synsets = wn.synsets(w)\n",
+ " if not synsets:\n",
+ " return 'no definition provided'\n",
+ " return synsets[0].definition()\n",
+ "\n",
"df = pd.read_csv('LADECv1-2019.csv', index_col=0)\n",
"df = df.drop(df[df.correctParse == 'no'].index)\n",
"df = df.drop(df[df.isCommonstim == 0].index)\n",
@@ -100,16 +107,20 @@
"dprefix = []\n",
"for prefix, ids in prefixes.items():\n",
" if len(ids) >= 4:\n",
- " dprefix.append(dict(answer=prefix, hint=f'{prefix} _', clues=list(df.loc[list(ids)].c2)))\n",
+ " clues = list(df.loc[list(ids)].c2)\n",
+ " cluedefs = [(clue, find_def(prefix+clue)) for clue in clues]\n",
+ " dprefix.append(dict(answer=prefix, hint=f'{prefix} _', clues=cluedefs))\n",
"dsuffix = []\n",
"for suffix, ids in suffixes.items():\n",
" if len(ids) >= 4:\n",
- " dsuffix.append(dict(answer=suffix, hint=f'_ {suffix}', clues=list(df.loc[list(ids)].c1)))"
+ " clues = list(df.loc[list(ids)].c1)\n",
+ " cluedefs = [(clue, find_def(clue+suffix)) for clue in clues]\n",
+ " dsuffix.append(dict(answer=suffix, hint=f'_ {suffix}', clues=cluedefs))"
]
},
{
"cell_type": "code",
- "execution_count": 63,
+ "execution_count": 90,
"id": "def43999-d789-4e5c-bb27-4fd29074c875",
"metadata": {},
"outputs": [],
@@ -132,7 +143,7 @@
" ok = [group[0]]\n",
" for i in range(1, len(group)):\n",
" for word in ok:\n",
- " if similar(word, group[i]):\n",
+ " if similar(word[0], group[i][0]):\n",
" break\n",
" else:\n",
" ok.append(group[i])\n",
@@ -141,7 +152,7 @@
},
{
"cell_type": "code",
- "execution_count": 64,
+ "execution_count": 91,
"id": "1c8175f2-817e-45ab-af0b-5ea7ee7a5dc9",
"metadata": {},
"outputs": [],
@@ -151,7 +162,7 @@
" new = []\n",
" for group in groups:\n",
" clues = group['clues']\n",
- " clues = [clue for clue in clues if clue not in blacklist]\n",
+ " clues = [(clue, defn) for (clue, defn) in clues if clue not in blacklist]\n",
" clues = filter_duplicates(clues)\n",
" if len(clues) < 4:\n",
" continue\n",
@@ -169,7 +180,7 @@
},
{
"cell_type": "code",
- "execution_count": 65,
+ "execution_count": 96,
"id": "1f2cca38-5d1a-421e-9bcc-09d68880c6f1",
"metadata": {},
"outputs": [],
@@ -181,53 +192,45765 @@
},
{
"cell_type": "code",
- "execution_count": 66,
+ "execution_count": 93,
"id": "589f6645-3a52-40ad-9899-717ea7614d00",
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
- "'noun.group'"
+ "'an infective disease caused by sporozoan parasites that are transmitted through the bite of an infected Anopheles mosquito; marked by paroxysms of chills and fever'"
]
},
- "execution_count": 66,
+ "execution_count": 93,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
- "wn.synsets('Islamic_jihad')[0].lexname()"
+ "wn.synsets('malaria')[0].definition()"
]
},
{
"cell_type": "code",
- "execution_count": 67,
+ "execution_count": 94,
"id": "8faeb5ee-e1ff-4571-91bf-178cdc7d29f7",
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
- "'ABCDEFGHIJKLMNOPQRSTUVWXYZ'"
+ "[194, 214, 6853, 437, 6424, 3569]"
]
},
- "execution_count": 67,
+ "execution_count": 94,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
- " string.ascii_uppercase"
+ "[len(x['groups']) for x in corpus]"
]
},
{
"cell_type": "code",
- "execution_count": null,
+ "execution_count": 95,
"id": "b8d12e1a-757f-4d87-9374-e7eb656f30d4",
"metadata": {},
- "outputs": [],
- "source": []
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "[{'name': 'suffixes',\n",
+ " 'groups': [{'answer': 'about',\n",
+ " 'hint': '_ about',\n",
+ " 'clues': [('gad',\n",
+ " 'a restless seeker after amusement or social companionship'),\n",
+ " ('knock', 'a sloop with a simplified rig and no bowsprit'),\n",
+ " ('turn', 'a decision to reverse an earlier decision'),\n",
+ " ('walk', 'a walking trip or tour'),\n",
+ " ('run', 'an open automobile having a front seat and a rumble seat'),\n",
+ " ('round',\n",
+ " 'a road junction at which traffic streams circularly around a central island'),\n",
+ " ('roust', \"a member of a ship's crew who performs manual labor\"),\n",
+ " ('lay', 'person who does no work')]},\n",
+ " {'answer': 'ache',\n",
+ " 'hint': '_ ache',\n",
+ " 'clues': [('head',\n",
+ " 'something or someone that causes anxiety; a source of unhappiness'),\n",
+ " ('belly', 'an ache localized in the stomach or abdominal region'),\n",
+ " ('heart',\n",
+ " 'intense sorrow caused by loss of a loved one (especially by death)'),\n",
+ " ('ear', 'an ache localized in the middle or inner ear'),\n",
+ " ('back', 'an ache localized in the back'),\n",
+ " ('stomach', 'an ache localized in the stomach or abdominal region'),\n",
+ " ('tooth', 'an ache localized in or around a tooth')]},\n",
+ " {'answer': 'all',\n",
+ " 'hint': '_ all',\n",
+ " 'clues': [('catch', 'an enclosure or receptacle for odds and ends'),\n",
+ " ('carry', 'a capacious bag or basket'),\n",
+ " ('cover',\n",
+ " 'a loose-fitting protective garment that is worn over other clothing'),\n",
+ " ('hold', 'a capacious bag or basket')]},\n",
+ " {'answer': 'away',\n",
+ " 'hint': '_ away',\n",
+ " 'clues': [('break', 'the act of breaking away or withdrawing from'),\n",
+ " ('stow',\n",
+ " 'a person who hides aboard a ship or plane in the hope of getting free passage'),\n",
+ " ('straight', 'a straight segment of a roadway or racecourse'),\n",
+ " ('get', 'the attribute of being capable of rapid acceleration'),\n",
+ " ('cast', 'a person who is rejected (from society or home)'),\n",
+ " ('throw',\n",
+ " '(sometimes offensive) a homeless boy who has been abandoned and roams the streets'),\n",
+ " ('tear', 'a reckless and impetuous person'),\n",
+ " ('take',\n",
+ " 'prepared food that is intended to be eaten off of the premises'),\n",
+ " ('cut',\n",
+ " 'a representation (drawing or model) of something in which the outside is omitted to reveal the inner parts'),\n",
+ " ('run', 'an easy victory'),\n",
+ " ('give',\n",
+ " 'a gift of public land or resources for the private gain of a limited group'),\n",
+ " ('hide', 'a hiding place; usually a remote place used by outlaws'),\n",
+ " ('walk', 'an easy victory')]},\n",
+ " {'answer': 'back',\n",
+ " 'hint': '_ back',\n",
+ " 'clues': [('razor',\n",
+ " 'a mongrel hog with a thin body and long legs and a ridged back; a wild or semi-wild descendant of improved breeds; found chiefly in the southeastern United States'),\n",
+ " ('sling', 'a shoe that has a strap that wraps around the heel'),\n",
+ " ('throw',\n",
+ " 'an organism that has the characteristics of a more primitive type of that organism'),\n",
+ " ('canvas', 'North American wild duck valued for sport and food'),\n",
+ " ('paper', 'a book with paper covers'),\n",
+ " ('feed',\n",
+ " 'the process in which part of the output of a system is returned to its input in order to regulate its further output'),\n",
+ " ('hump', 'an abnormal backward curve to the vertebral column'),\n",
+ " ('full',\n",
+ " '(football) the running back who plays the fullback position on the offensive team'),\n",
+ " ('kick',\n",
+ " 'a commercial bribe paid by a seller to a purchasing agent in order to induce the agent to enter into the transaction'),\n",
+ " ('flash',\n",
+ " 'a transition (in literary or theatrical works or films) to an earlier event or scene that interrupts the normal chronological development of the story'),\n",
+ " ('half',\n",
+ " '(football) the running back who plays the offensive halfback position'),\n",
+ " ('green',\n",
+ " 'a piece of paper money (especially one issued by a central bank)'),\n",
+ " ('fat', 'salt pork from the back of a hog carcass'),\n",
+ " ('buy', 'the act of purchasing back something previously sold'),\n",
+ " ('tie',\n",
+ " 'a device (as a decorative loop of cord or fabric) for holding or drawing something back'),\n",
+ " ('hard', 'a book with cardboard or cloth or leather covers'),\n",
+ " ('hunch', 'an abnormal backward curve to the vertebral column'),\n",
+ " ('quarter', '(football) the person who plays quarterback'),\n",
+ " ('out', 'the bush country of the interior of Australia'),\n",
+ " ('fall', 'to break off a military action with an enemy'),\n",
+ " ('cut', 'a reduction in quantity or rate'),\n",
+ " ('roll', 'the act of forcing the enemy to withdraw'),\n",
+ " ('horse', 'the back of a horse'),\n",
+ " ('draw', 'the quality of being a hindrance'),\n",
+ " ('hatch', 'a car having a hatchback door'),\n",
+ " ('call',\n",
+ " 'a request by the manufacturer of a defective product to return the product (as for replacement or repair)'),\n",
+ " ('diamond', 'large deadly rattlesnake with diamond-shaped markings'),\n",
+ " ('piggy', 'the act of carrying something piggyback'),\n",
+ " ('pay',\n",
+ " 'financial return or reward (especially returns equal to the initial investment)'),\n",
+ " ('hog', 'a narrow ridge of hills'),\n",
+ " ('tail', '(American football) the person who plays tailback'),\n",
+ " ('set',\n",
+ " 'an unfortunate happening that hinders or impedes; something that is thwarting or frustrating'),\n",
+ " ('moss', 'an extremely old-fashioned conservative'),\n",
+ " ('pull',\n",
+ " 'a device (as a decorative loop of cord or fabric) for holding or drawing something back'),\n",
+ " ('soft', 'a book with paper covers')]},\n",
+ " {'answer': 'bag',\n",
+ " 'hint': '_ bag',\n",
+ " 'clues': [('school', 'a bag for carrying school books and supplies'),\n",
+ " ('bean', 'a small cloth bag filled with dried beans; thrown in games'),\n",
+ " ('gas',\n",
+ " 'a boring person who talks a great deal about uninteresting topics'),\n",
+ " ('feed',\n",
+ " 'a canvas bag that is used to feed an animal (such as a horse); covers the muzzle and fastens at the top of the head'),\n",
+ " ('money', 'a drawstring bag for holding money'),\n",
+ " ('hand',\n",
+ " 'a container used for carrying money and small personal items or accessories (especially by women)'),\n",
+ " ('saddle', 'a large bag (or pair of bags) hung over a saddle'),\n",
+ " ('carpet', 'traveling bag made of carpet; widely used in 19th century'),\n",
+ " ('sand',\n",
+ " 'a bag filled with sand; used as a weapon or to build walls or as ballast'),\n",
+ " ('flea', 'a run-down hotel'),\n",
+ " ('wind',\n",
+ " 'a boring person who talks a great deal about uninteresting topics'),\n",
+ " ('mail', 'pouch used in the shipment of mail'),\n",
+ " ('post', \"letter carrier's shoulder bag\"),\n",
+ " ('rag', 'a motley assortment of things'),\n",
+ " ('nose',\n",
+ " 'a canvas bag that is used to feed an animal (such as a horse); covers the muzzle and fastens at the top of the head')]},\n",
+ " {'answer': 'ball',\n",
+ " 'hint': '_ ball',\n",
+ " 'clues': [('hard', 'a no-nonsense attitude in business or politics'),\n",
+ " ('butter', 'a rotund individual'),\n",
+ " ('goof', 'a man who is a stupid incompetent fool'),\n",
+ " ('base',\n",
+ " 'a ball game played with a bat and ball between two teams of nine players; teams take turns at bat trying to score runs'),\n",
+ " ('basket',\n",
+ " 'a game played on a court by two opposing teams of 5 players; points are scored by throwing the ball through an elevated horizontal hoop'),\n",
+ " ('racquet', 'the ball used in playing the game of racquetball'),\n",
+ " ('hand', 'a small rubber ball used in playing the game of handball'),\n",
+ " ('eye', 'the ball-shaped capsule containing the vertebrate eye'),\n",
+ " ('pin',\n",
+ " 'a game played on a sloping board; the object is to propel marbles against pins or into pockets'),\n",
+ " ('hair',\n",
+ " 'a compact mass of hair that forms in the alimentary canal (especially in the stomach of animals as a result of licking fur)'),\n",
+ " ('moth',\n",
+ " 'a small sphere of camphor or naphthalene used to keep moths away from stored clothing'),\n",
+ " ('fire', 'an especially luminous meteor (sometimes exploding)'),\n",
+ " ('spit',\n",
+ " 'a projectile made by chewing a piece of paper and shaping it into a sphere'),\n",
+ " ('fast', '(baseball) a pitch thrown with maximum velocity'),\n",
+ " ('foot',\n",
+ " \"any of various games played with a ball (round or oval) in which two teams try to kick or carry or propel the ball into each other's goal\"),\n",
+ " ('net',\n",
+ " 'a team game that resembles basketball; a soccer ball is to be thrown so that it passes through a ring on the top of a post'),\n",
+ " ('odd', 'a person with an unusual or odd personality'),\n",
+ " ('volley',\n",
+ " 'a game in which two teams hit an inflated ball over a high net using their hands'),\n",
+ " ('puff',\n",
+ " 'any of various fungi of the family Lycoperdaceae whose round fruiting body discharges a cloud of spores when mature'),\n",
+ " ('meat', 'ground meat formed into a ball and fried or simmered in broth'),\n",
+ " ('paint',\n",
+ " 'a capsule filled with water-soluble dye used as a projectile in playing the game of paintball'),\n",
+ " ('cannon',\n",
+ " 'a solid projectile that in former times was fired from a cannon'),\n",
+ " ('high',\n",
+ " 'a mixed drink made of alcoholic liquor mixed with water or a carbonated beverage and served in a tall glass'),\n",
+ " ('screw', 'a whimsically eccentric person'),\n",
+ " ('track',\n",
+ " 'an electronic device consisting of a rotatable ball in a housing; used to position the cursor and move images on a computer screen'),\n",
+ " ('snow',\n",
+ " 'plant having heads of fragrant white trumpet-shaped flowers; grows in sandy arid regions'),\n",
+ " ('black', 'the act of excluding someone by a negative vote or veto'),\n",
+ " ('soft', 'ball used in playing softball')]},\n",
+ " {'answer': 'band',\n",
+ " 'hint': '_ band',\n",
+ " 'clues': [('neck', 'a band around the collar of a garment'),\n",
+ " ('waist',\n",
+ " 'a band of material around the waist that strengthens a skirt or trousers'),\n",
+ " ('arm', 'worn around arm as identification or to indicate mourning'),\n",
+ " ('sweat', 'a band of fabric or leather sewn inside the crown of a hat'),\n",
+ " ('head', 'a band worn around or over the head'),\n",
+ " ('hat', 'a band around the crown of a hat just above the brim'),\n",
+ " ('wave',\n",
+ " 'a band of adjacent radio frequencies (e.g., assigned for transmitting radio or television signals)'),\n",
+ " ('watch',\n",
+ " 'a band of cloth or leather or metal links attached to a wristwatch and wrapped around the wrist'),\n",
+ " ('wrist',\n",
+ " 'band consisting of a part of a sleeve that covers the wrist')]},\n",
+ " {'answer': 'bar',\n",
+ " 'hint': '_ bar',\n",
+ " 'clues': [('cross', 'a horizontal bar that goes across something'),\n",
+ " ('sand', 'a bar of sand'),\n",
+ " ('side',\n",
+ " \"(law) a courtroom conference between the lawyers and the judge that is held out of the jury's hearing\"),\n",
+ " ('handle', 'the shaped bar used to steer a bicycle'),\n",
+ " ('crow', 'a heavy iron lever with one end forged into a wedge')]},\n",
+ " {'answer': 'beam',\n",
+ " 'hint': '_ beam',\n",
+ " 'clues': [('horn', 'any of several trees or shrubs of the genus Carpinus'),\n",
+ " ('sun', 'a ray of sunlight'),\n",
+ " ('moon', 'a ray of moonlight'),\n",
+ " ('cross', 'a horizontal beam that extends across something')]},\n",
+ " {'answer': 'beat',\n",
+ " 'hint': '_ beat',\n",
+ " 'clues': [('down',\n",
+ " \"the first beat of a musical measure (as the conductor's arm moves downward)\"),\n",
+ " ('heart',\n",
+ " 'the rhythmic contraction and expansion of the arteries with each beat of the heart'),\n",
+ " ('drum', 'the sound made by beating a drum'),\n",
+ " ('dead', 'someone who fails to meet a financial obligation')]},\n",
+ " {'answer': 'bed',\n",
+ " 'hint': '_ bed',\n",
+ " 'clues': [('sea', 'the bottom of a sea or ocean'),\n",
+ " ('day', 'an armless couch; a seat by day and a bed by night'),\n",
+ " ('flat', 'freight car without permanent sides or roof'),\n",
+ " ('sick', 'the bed on which a sick person lies'),\n",
+ " ('flower', 'a bed in which flowers are growing'),\n",
+ " ('death', 'the last few hours before death'),\n",
+ " ('river', 'a channel occupied (or formerly occupied) by a river'),\n",
+ " ('hot',\n",
+ " 'a situation that is ideal for rapid development (especially of something bad)'),\n",
+ " ('seed', 'a bed where seedlings are grown before transplanting'),\n",
+ " ('road', 'a bed supporting a road')]},\n",
+ " {'answer': 'bell',\n",
+ " 'hint': '_ bell',\n",
+ " 'clues': [('cow',\n",
+ " 'a bell hung around the neck of cow so that the cow can be easily located'),\n",
+ " ('door',\n",
+ " 'a push button at an outer door that gives a ringing or buzzing signal when pushed'),\n",
+ " ('hare', 'sometimes placed in genus Scilla'),\n",
+ " ('bar',\n",
+ " 'a bar to which heavy discs are attached at each end; used in weightlifting'),\n",
+ " ('dumb',\n",
+ " 'an exercising weight; two spheres connected by a short bar that serves as a handle'),\n",
+ " ('blue', 'sometimes placed in genus Scilla')]},\n",
+ " {'answer': 'berry',\n",
+ " 'hint': '_ berry',\n",
+ " 'clues': [('bay', 'West Indian tree; source of bay rum'),\n",
+ " ('bar',\n",
+ " 'any of numerous plants of the genus Berberis having prickly stems and yellow flowers followed by small red berries'),\n",
+ " ('dew',\n",
+ " 'any of several trailing blackberry brambles especially of North America'),\n",
+ " ('elder',\n",
+ " 'a common shrub with black fruit or a small tree of Europe and Asia; fruit used for wines and jellies'),\n",
+ " ('blue',\n",
+ " 'any of numerous shrubs of the genus Vaccinium bearing blueberries'),\n",
+ " ('straw', 'sweet fleshy red fruit'),\n",
+ " ('rasp',\n",
+ " 'woody brambles bearing usually red but sometimes black or yellow fruits that separate from the receptacle when ripe and are rounder and smaller than blackberries'),\n",
+ " ('black',\n",
+ " 'large sweet black or very dark purple edible aggregate fruit of any of various bushes of the genus Rubus'),\n",
+ " ('goose',\n",
+ " 'spiny Eurasian shrub having greenish purple-tinged flowers and ovoid yellow-green or red-purple berries')]},\n",
+ " {'answer': 'bill',\n",
+ " 'hint': '_ bill',\n",
+ " 'clues': [('spoon',\n",
+ " 'wading birds having a long flat bill with a tip like a spoon'),\n",
+ " ('hand',\n",
+ " 'an advertisement (usually printed on a page or in a leaflet) intended for wide distribution'),\n",
+ " ('way',\n",
+ " 'a receipt given by the carrier to the shipper acknowledging receipt of the goods being shipped and specifying the terms of delivery'),\n",
+ " ('play', 'a theatrical program'),\n",
+ " ('duck',\n",
+ " 'primitive fish of the Mississippi valley having a long paddle-shaped snout')]},\n",
+ " {'answer': 'bird',\n",
+ " 'hint': '_ bird',\n",
+ " 'clues': [('sea',\n",
+ " 'a bird that frequents coastal waters and the open ocean: gulls; pelicans; gannets; cormorants; albatrosses; petrels; etc.'),\n",
+ " ('blue',\n",
+ " 'fruit-eating mostly brilliant blue songbird of the East Indies'),\n",
+ " ('love',\n",
+ " 'small Australian parakeet usually light green with black and yellow markings in the wild but bred in many colors'),\n",
+ " ('black',\n",
+ " 'any bird of the family Icteridae whose male is black or predominantly black'),\n",
+ " ('song', 'any bird having a musical call'),\n",
+ " ('cow',\n",
+ " \"North American blackbird that follows cattle and lays eggs in other birds' nests\"),\n",
+ " ('lady',\n",
+ " 'small round bright-colored and spotted beetle that usually feeds on aphids and other insect pests'),\n",
+ " ('jail', 'a criminal who has been jailed repeatedly'),\n",
+ " ('whirly',\n",
+ " 'an aircraft without wings that obtains its lift from the rotation of overhead blades'),\n",
+ " ('cat',\n",
+ " 'any of various birds of the Australian region whose males build ornamented structures resembling bowers in order to attract females'),\n",
+ " ('jay',\n",
+ " 'common jay of eastern North America; bright blue with grey breast'),\n",
+ " ('oven', 'American warbler; builds a dome-shaped nest on the ground'),\n",
+ " ('water', 'freshwater aquatic bird'),\n",
+ " ('lyre',\n",
+ " 'Australian bird that resembles a pheasant; the courting male displays long tail feathers in a lyre shape'),\n",
+ " ('dicky',\n",
+ " 'small bird; adults talking to children sometimes use these words to refer to small birds'),\n",
+ " ('snow', 'medium-sized Eurasian thrush seen chiefly in winter'),\n",
+ " ('red', 'the male is bright red with black wings and tail'),\n",
+ " ('mocking',\n",
+ " 'long-tailed grey-and-white songbird of the southern United States able to mimic songs of other birds'),\n",
+ " ('humming',\n",
+ " 'tiny American bird having brilliant iridescent plumage and long slender bills; wings are specialized for vibrating flight'),\n",
+ " ('shore',\n",
+ " 'any of numerous wading birds that frequent mostly seashores and estuaries')]},\n",
+ " {'answer': 'board',\n",
+ " 'hint': '_ board',\n",
+ " 'clues': [('lap', 'writing board used on the lap as a table or desk'),\n",
+ " ('paste', 'stiff cardboard made by pasting together layers of paper'),\n",
+ " ('floor', 'a board in the floor'),\n",
+ " ('shuffle',\n",
+ " 'a game in which players use long sticks to shove wooden disks onto the scoring area marked on a smooth surface'),\n",
+ " ('cup', 'a small room (or recess) or cabinet used for storage space'),\n",
+ " ('paper', 'a cardboard suitable for making posters'),\n",
+ " ('score',\n",
+ " 'a large board for displaying the score of a contest (and some other information)'),\n",
+ " ('spring', 'a flexible board for jumping upward'),\n",
+ " ('clapper',\n",
+ " 'photographic equipment used to synchronize sound and motion picture; boards held in front of a movie camera are banged together'),\n",
+ " ('finger', 'a guidepost resembling a hand with a pointing index finger'),\n",
+ " ('side',\n",
+ " 'a removable board fitted on the side of a wagon to increase its capacity'),\n",
+ " ('cheese', 'tray on which cheeses are served'),\n",
+ " ('bill', 'large outdoor signboard'),\n",
+ " ('mold',\n",
+ " 'wedge formed by the curved part of a steel plow blade that turns the furrow'),\n",
+ " ('plaster',\n",
+ " 'wallboard with a gypsum plaster core bonded to layers of paper or fiberboard; used instead of plaster or wallboard to make interior walls'),\n",
+ " ('weather',\n",
+ " 'a long thin board with one edge thicker than the other; used as siding by lapping one board over the board below'),\n",
+ " ('buck',\n",
+ " 'an open horse-drawn carriage with four wheels; has a seat attached to a flexible board between the two axles'),\n",
+ " ('sound',\n",
+ " '(music) resonator consisting of a thin board whose vibrations reinforce the sound of the instrument'),\n",
+ " ('chalk', 'sheet of slate; for writing with chalk'),\n",
+ " ('tail', 'a gate at the rear of a vehicle; can be lowered for loading'),\n",
+ " ('black', 'sheet of slate; for writing with chalk'),\n",
+ " ('head', 'a vertical board or panel forming the head of a bedstead'),\n",
+ " ('dart',\n",
+ " 'a circular board of wood or cork used as the target in the game of darts'),\n",
+ " ('key',\n",
+ " 'device consisting of a set of keys on a piano or organ or typewriter or typesetting machine or computer or the like'),\n",
+ " ('drain',\n",
+ " 'a board beside a kitchen sink and inclined to drain into the sink'),\n",
+ " ('switch',\n",
+ " 'telephone central where circuits are completed with patchcords'),\n",
+ " ('snow',\n",
+ " 'a board that resembles a broad ski or a small surfboard; used in a standing position to slide down snow-covered slopes'),\n",
+ " ('skate',\n",
+ " 'a board with wheels that is ridden in a standing or crouching position and propelled by foot'),\n",
+ " ('chip',\n",
+ " 'a cheap hard material made from wood chips that are pressed together and bound with synthetic resin'),\n",
+ " ('hard',\n",
+ " 'a cheap hard material made from wood chips that are pressed together and bound with synthetic resin'),\n",
+ " ('dash',\n",
+ " 'protective covering consisting of a panel to protect people from the splashing water or mud etc.'),\n",
+ " ('sign',\n",
+ " 'structure displaying a board on which advertisements can be posted'),\n",
+ " ('checker', 'a board having 64 squares of two alternating colors'),\n",
+ " ('sea', 'the shore of a sea or ocean regarded as a resort'),\n",
+ " ('card', 'a stiff moderately thick paper'),\n",
+ " ('bread',\n",
+ " 'a wooden or plastic board on which dough is kneaded or bread is sliced'),\n",
+ " ('star',\n",
+ " 'the right side of a ship or aircraft to someone who is aboard and facing the bow or nose'),\n",
+ " ('wall',\n",
+ " 'a wide flat board used to cover walls or partitions; made from plaster or wood pulp or other materials and used primarily to form the interior walls of houses'),\n",
+ " ('surf', 'a narrow buoyant board for riding surf'),\n",
+ " ('clip',\n",
+ " 'a small writing board with a clip at the top for holding papers'),\n",
+ " ('peg',\n",
+ " 'a board perforated with regularly spaced holes into which pegs can be fitted'),\n",
+ " ('base', 'a molding covering the joint formed by a wall and the floor'),\n",
+ " ('fiber',\n",
+ " 'wallboard composed of wood chips or shavings bonded together with resin and compressed into rigid sheets'),\n",
+ " ('center',\n",
+ " 'a retractable fin keel used on sailboats to prevent drifting to leeward'),\n",
+ " ('wash', 'device consisting of a corrugated surface to scrub clothes on'),\n",
+ " ('chess', 'a checkerboard used to play chess'),\n",
+ " ('mortar',\n",
+ " 'a square board with a handle underneath; used by masons to hold or carry mortar')]},\n",
+ " {'answer': 'boarding',\n",
+ " 'hint': '_ boarding',\n",
+ " 'clues': [('skate', 'the sport of skating on a skateboard'),\n",
+ " ('surf',\n",
+ " 'the sport of riding a surfboard toward the shore on the crest of a wave'),\n",
+ " ('snow',\n",
+ " 'the act of sliding down a snow-covered slope while standing on a snowboard'),\n",
+ " ('weather',\n",
+ " 'a long thin board with one edge thicker than the other; used as siding by lapping one board over the board below')]},\n",
+ " {'answer': 'boat',\n",
+ " 'hint': '_ boat',\n",
+ " 'clues': [('flat',\n",
+ " 'a flatbottom boat for carrying heavy loads (especially on canals)'),\n",
+ " ('ferry',\n",
+ " 'a boat that transports people or vehicles across a body of water and operates on a regular schedule'),\n",
+ " ('gun',\n",
+ " 'a small shallow-draft boat carrying mounted guns; used by costal patrols'),\n",
+ " ('show',\n",
+ " 'a river steamboat on which theatrical performances could be given (especially on the Mississippi River)'),\n",
+ " ('speed', 'a fast motorboat'),\n",
+ " ('life',\n",
+ " 'a strong sea boat designed to rescue people from a sinking ship'),\n",
+ " ('cat', 'a sailboat with a single mast set far forward'),\n",
+ " ('whale',\n",
+ " 'a long narrow boat designed for quick turning and use in rough seas'),\n",
+ " ('motor', 'a boat propelled by an internal-combustion engine'),\n",
+ " ('power', 'a boat propelled by an internal-combustion engine'),\n",
+ " ('house', 'a barge that is designed and equipped for use as a dwelling'),\n",
+ " ('ice',\n",
+ " 'a ship with a reinforced bow to break up ice and keep channels open for navigation'),\n",
+ " ('sail', 'a small sailing vessel; usually with a single mast'),\n",
+ " ('row',\n",
+ " 'a small boat of shallow draft with cross thwarts for seats and rowlocks for oars with which it is propelled'),\n",
+ " ('tug', 'a powerful small boat designed to pull or push larger ships'),\n",
+ " ('tow', 'a powerful small boat designed to pull or push larger ships'),\n",
+ " ('steam', 'a boat propelled by a steam engine'),\n",
+ " ('long', 'the largest boat carried by a merchant sailing vessel')]},\n",
+ " {'answer': 'body',\n",
+ " 'hint': '_ body',\n",
+ " 'clues': [('home',\n",
+ " 'a person who seldom goes anywhere; one not given to wandering or travel'),\n",
+ " ('dogs',\n",
+ " 'a worker who has to do all the unpleasant or boring jobs that no one else wants to do'),\n",
+ " ('some', 'a human being'),\n",
+ " ('busy', 'a person who meddles in the affairs of others')]},\n",
+ " {'answer': 'bone',\n",
+ " 'hint': '_ bone',\n",
+ " 'clues': [('whale',\n",
+ " 'a horny material from the upper jaws of certain whales; used as the ribs of fans or as stays in corsets'),\n",
+ " ('hip',\n",
+ " 'large flaring bone forming one half of the pelvis; made up of the ilium and ischium and pubis'),\n",
+ " ('back', 'a central cohesive source of support and stability'),\n",
+ " ('breast',\n",
+ " 'the flat bone that articulates with the clavicles and the first seven pairs of ribs'),\n",
+ " ('collar', 'bone linking the scapula and sternum'),\n",
+ " ('jaw', 'the jaw in vertebrates that is hinged to open the mouth'),\n",
+ " ('herring', 'a twilled fabric with a herringbone pattern'),\n",
+ " ('shin',\n",
+ " 'the inner and thicker of the two bones of the human leg between the knee and ankle'),\n",
+ " ('ankle',\n",
+ " 'the bone in the ankle that articulates with the leg bones to form the ankle joint'),\n",
+ " ('wish', 'the furcula of a domestic fowl'),\n",
+ " ('cheek',\n",
+ " 'the arch of bone beneath the eye that forms the prominence of the cheek'),\n",
+ " ('thigh',\n",
+ " 'the longest and thickest bone of the human skeleton; extends from the pelvis to the knee')]},\n",
+ " {'answer': 'book',\n",
+ " 'hint': '_ book',\n",
+ " 'clues': [('year',\n",
+ " 'a book published annually by the graduating class of a high school or college usually containing photographs of faculty and graduating students'),\n",
+ " ('cook', 'a book of recipes and cooking directions'),\n",
+ " ('prayer', 'a book containing prayers'),\n",
+ " ('bank',\n",
+ " 'a record of deposits and withdrawals and interest held by depositors at certain banks'),\n",
+ " ('text', 'a book prepared for use in schools or colleges'),\n",
+ " ('pass',\n",
+ " 'a record of deposits and withdrawals and interest held by depositors at certain banks'),\n",
+ " ('log', 'a book in which the log is written'),\n",
+ " ('hand',\n",
+ " 'a concise reference book providing specific information about a subject or location'),\n",
+ " ('guide', 'something that offers basic information or instruction'),\n",
+ " ('check', 'a book issued to holders of checking accounts'),\n",
+ " ('word',\n",
+ " 'a reference book containing words (usually with their meanings)'),\n",
+ " ('hymn', 'a songbook containing a collection of hymns'),\n",
+ " ('song', 'a book containing a collection of songs'),\n",
+ " ('story',\n",
+ " 'a book containing a collection of stories (usually for children)'),\n",
+ " ('stud',\n",
+ " 'official record of the pedigree of purebred animals especially horses'),\n",
+ " ('school', 'a book prepared for use in schools or colleges'),\n",
+ " ('case',\n",
+ " 'a book in which detailed written records of a case are kept and which are a source of information for subsequent work'),\n",
+ " ('scrap',\n",
+ " 'an album into which clippings or notes or pictures can be pasted'),\n",
+ " ('note', 'a book with blank pages for recording notes or memoranda'),\n",
+ " ('work',\n",
+ " \"a student's book or booklet containing problems with spaces for solving them\"),\n",
+ " ('copy',\n",
+ " 'a book containing models of good penmanship; used in teaching penmanship'),\n",
+ " ('match', 'a small folder of paper safety matches'),\n",
+ " ('play',\n",
+ " 'a notebook containing descriptions and diagrams of the plays that a team has practiced (especially an American football team)'),\n",
+ " ('pocket', 'your personal financial means'),\n",
+ " ('sketch',\n",
+ " 'a book containing sheets of paper on which sketches can be drawn')]},\n",
+ " {'answer': 'box',\n",
+ " 'hint': '_ box',\n",
+ " 'clues': [('juke',\n",
+ " 'a cabinet containing an automatic record player; records are played by inserting a coin'),\n",
+ " ('band',\n",
+ " 'a light cylindrical box for holding light articles of attire (especially hats)'),\n",
+ " ('tool', 'a box or chest or cabinet for holding hand tools'),\n",
+ " ('soap', 'a crate for packing soap'),\n",
+ " ('match', 'a box for holding matches'),\n",
+ " ('paint',\n",
+ " \"a box containing a collection of cubes or tubes of artists' paint\"),\n",
+ " ('horse',\n",
+ " 'a conveyance (railroad car or trailer) for transporting racehorses'),\n",
+ " ('hot', 'a journal bearing (as of a railroad car) that has overheated'),\n",
+ " ('post', 'public box for deposit of mail'),\n",
+ " ('tinder',\n",
+ " 'a dangerous state of affairs; a situation that is a potential source of violence'),\n",
+ " ('sand', 'mold consisting of a box with sand shaped to mold metal'),\n",
+ " ('mail', 'a private box for delivery of mail'),\n",
+ " ('hat', 'a round piece of luggage for carrying hats'),\n",
+ " ('ice', 'white goods in which food can be stored at low temperatures'),\n",
+ " ('pill', \"a small round woman's hat\"),\n",
+ " ('chatter',\n",
+ " 'orchid growing along streams or ponds of western North America having leafy stems and 1 greenish-brown and pinkish flower in the axil of each upper leaf'),\n",
+ " ('gear', 'the shell (metal casing) in which a train of gears is sealed'),\n",
+ " ('snuff', 'a small ornamental box for carrying snuff in your pocket'),\n",
+ " ('shoe',\n",
+ " 'a structure resembling a shoebox (as a rectangular building or a cramped room or compartment)'),\n",
+ " ('strong',\n",
+ " 'a strongly made box for holding money or valuables; can be locked'),\n",
+ " ('fire', 'a furnace (as on a steam locomotive) in which fuel is burned'),\n",
+ " ('salt',\n",
+ " 'a type of house built in New England; has two stories in front and one behind'),\n",
+ " ('bread', 'a container used to keep bread or cake in')]},\n",
+ " {'answer': 'boy',\n",
+ " 'hint': '_ boy',\n",
+ " 'clues': [('bell',\n",
+ " 'someone employed as an errand boy and luggage carrier around hotels'),\n",
+ " ('school', 'a boy attending school'),\n",
+ " ('page', 'a boy who is employed to run errands'),\n",
+ " ('home', 'a fellow male member of a youth gang'),\n",
+ " ('news', 'a boy who delivers newspapers'),\n",
+ " ('cow',\n",
+ " 'a hired hand who tends cattle and performs other duties on horseback'),\n",
+ " ('paper', 'a boy who sells or delivers newspapers'),\n",
+ " ('play', 'a man devoted to the pursuit of pleasure'),\n",
+ " ('tall',\n",
+ " 'a tall chest of drawers divided into two sections and supported on four legs'),\n",
+ " ('low', 'a low chest or table with drawers and supported on four legs'),\n",
+ " ('high',\n",
+ " 'a tall chest of drawers divided into two sections and supported on four legs'),\n",
+ " ('bus',\n",
+ " 'a restaurant attendant who sets tables and assists waiters and clears away dirty dishes'),\n",
+ " ('choir', 'a boy who sings in a choir'),\n",
+ " ('tom', 'a girl who behaves in a boyish manner')]},\n",
+ " {'answer': 'bread',\n",
+ " 'hint': '_ bread',\n",
+ " 'clues': [('corn', 'bread made primarily of cornmeal'),\n",
+ " ('sweet', 'edible glands of an animal'),\n",
+ " ('short', 'very rich thick butter cookie'),\n",
+ " ('ginger', 'cake flavored with ginger'),\n",
+ " ('bee',\n",
+ " 'a mixture of nectar and pollen prepared by worker bees and fed to larvae')]},\n",
+ " {'answer': 'break',\n",
+ " 'hint': '_ break',\n",
+ " 'clues': [('fire',\n",
+ " 'a narrow field that has been cleared to check the spread of a prairie fire or forest fire'),\n",
+ " ('jail', 'an escape from jail'),\n",
+ " ('day', 'the first light of day'),\n",
+ " ('heart',\n",
+ " 'intense sorrow caused by loss of a loved one (especially by death)'),\n",
+ " ('wind',\n",
+ " 'hedge or fence of trees designed to lessen the force of the wind and reduce erosion'),\n",
+ " ('gaol', 'an escape from jail')]},\n",
+ " {'answer': 'breaker',\n",
+ " 'hint': '_ breaker',\n",
+ " 'clues': [('strike',\n",
+ " 'someone who works (or provides workers) during a strike'),\n",
+ " ('ice',\n",
+ " 'a ship with a reinforced bow to break up ice and keep channels open for navigation'),\n",
+ " ('jaw', 'a large round hard candy'),\n",
+ " ('law', 'someone who violates the law'),\n",
+ " ('house',\n",
+ " \"a burglar who unlawfully breaks into and enters another person's house\"),\n",
+ " ('wind', \"a kind of heavy jacket (`windcheater' is a British term)\"),\n",
+ " ('tie',\n",
+ " 'overtime play in order to break a tie; e.g. tennis and soccer')]},\n",
+ " {'answer': 'brow',\n",
+ " 'hint': '_ brow',\n",
+ " 'clues': [('middle', 'someone who is neither a highbrow nor a lowbrow'),\n",
+ " ('high', 'a person of intellectual or erudite tastes'),\n",
+ " ('eye', 'the arch of hair above each eye'),\n",
+ " ('low', 'a person who is uninterested in intellectual pursuits')]},\n",
+ " {'answer': 'brush',\n",
+ " 'hint': '_ brush',\n",
+ " 'clues': [('tooth', 'small brush; has long handle; used to clean teeth'),\n",
+ " ('paint', 'a brush used as an applicator (to apply paint)'),\n",
+ " ('sage',\n",
+ " 'any of several North American composite subshrubs of the genera Artemis or Seriphidium'),\n",
+ " ('nail', \"a brush used to clean a person's fingernails\"),\n",
+ " ('hair', \"a brush used to groom a person's hair\"),\n",
+ " ('under',\n",
+ " 'the brush (small trees and bushes and ferns etc.) growing beneath taller trees in a wood or forest')]},\n",
+ " {'answer': 'bug',\n",
+ " 'hint': '_ bug',\n",
+ " 'clues': [('bed',\n",
+ " 'bug of temperate regions that infests especially beds and feeds on human blood'),\n",
+ " ('fire', 'a criminal who illegally sets fire to property'),\n",
+ " ('lady',\n",
+ " 'small round bright-colored and spotted beetle that usually feeds on aphids and other insect pests'),\n",
+ " ('litter', 'a person who litters public places with refuse'),\n",
+ " ('mealy',\n",
+ " 'scalelike plant-eating insect coated with a powdery waxy secretion; destructive especially of fruit trees'),\n",
+ " ('doodle', 'a small motor vehicle'),\n",
+ " ('jitter', 'a jerky American dance that was popular in the 1940s'),\n",
+ " ('shutter', 'a photography enthusiast')]},\n",
+ " {'answer': 'cake',\n",
+ " 'hint': '_ cake',\n",
+ " 'clues': [('cheese',\n",
+ " 'made with sweetened cream cheese and eggs and cream baked in a crumb crust'),\n",
+ " ('hot', 'a flat cake of thin batter fried on both sides on a griddle'),\n",
+ " ('oat', 'thin flat unleavened cake of baked oatmeal'),\n",
+ " ('hoe',\n",
+ " 'thin usually unleavened johnnycake made of cornmeal; originally baked on the blade of a hoe over an open fire (southern)'),\n",
+ " ('griddle', 'a scone made by dropping a spoonful of batter on a griddle'),\n",
+ " ('coffee', 'a cake or sweet bread usually served with coffee'),\n",
+ " ('johnny',\n",
+ " 'cornbread usually cooked pancake-style on a griddle (chiefly New England)'),\n",
+ " ('cup', 'small cake baked in a muffin tin'),\n",
+ " ('pan', 'a flat cake of thin batter fried on both sides on a griddle'),\n",
+ " ('fruit', 'a whimsically eccentric person'),\n",
+ " ('short',\n",
+ " 'very short biscuit dough baked as individual biscuits or a round loaf; served with sweetened fruit and usually whipped cream'),\n",
+ " ('fried',\n",
+ " 'small cake in the form of a ring or twist or ball or strip fried in deep fat'),\n",
+ " ('tea', 'flat semisweet cookie or biscuit usually served with tea'),\n",
+ " ('beef', 'a photograph of a muscular man in minimal attire')]},\n",
+ " {'answer': 'cap',\n",
+ " 'hint': '_ cap',\n",
+ " 'clues': [('sky',\n",
+ " 'a porter who helps passengers with their baggage at an airport'),\n",
+ " ('ice',\n",
+ " 'a mass of ice and snow that permanently covers a large area of land (e.g., the polar regions or a mountain peak)'),\n",
+ " ('mad', 'a reckless impetuous irresponsible person'),\n",
+ " ('hub', 'cap that fits over the hub of a wheel'),\n",
+ " ('night', 'an alcoholic drink taken at bedtime; often alcoholic'),\n",
+ " ('knee',\n",
+ " 'a small flat triangular bone in front of the knee that protects the knee joint'),\n",
+ " ('skull', 'rounded brimless cap fitting the crown of the head'),\n",
+ " ('toe',\n",
+ " 'a protective leather or steel cover for the toe of a boot or shoe, reinforcing or decorating it'),\n",
+ " ('fools', 'a size of paper used especially in Britain'),\n",
+ " ('red', 'a member of the military police in Britain'),\n",
+ " ('white',\n",
+ " 'a wave that is blown by the wind so its crest is broken and appears white')]},\n",
+ " {'answer': 'car',\n",
+ " 'hint': '_ car',\n",
+ " 'clues': [('tram', 'a four-wheeled wagon that runs on tracks in a mine'),\n",
+ " ('box', 'a freight car with roof and sliding doors in the sides'),\n",
+ " ('motor',\n",
+ " 'a motor vehicle with four wheels; usually propelled by an internal combustion engine'),\n",
+ " ('hand', 'a small railroad car propelled by hand or by a small motor'),\n",
+ " ('side', 'a cocktail made of orange liqueur with lemon juice and brandy'),\n",
+ " ('flat', 'freight car without permanent sides or roof'),\n",
+ " ('street',\n",
+ " 'a wheeled vehicle that runs on rails and is propelled by electricity')]},\n",
+ " {'answer': 'care',\n",
+ " 'hint': '_ care',\n",
+ " 'clues': [('after', 'care and treatment of a convalescent patient'),\n",
+ " ('child', \"a service involving care for other people's children\"),\n",
+ " ('skin', 'care for the skin'),\n",
+ " ('hair',\n",
+ " 'care for the hair: the activity of washing or cutting or curling or arranging the hair'),\n",
+ " ('day', 'childcare during the day while parents work')]},\n",
+ " {'answer': 'cart',\n",
+ " 'hint': '_ cart',\n",
+ " 'clues': [('apple',\n",
+ " \"the planning that is disrupted when someone `upsets the applecart'\"),\n",
+ " ('push',\n",
+ " 'wheeled vehicle that can be pushed by a person; may have one or two or four wheels'),\n",
+ " ('dust', 'a truck for collecting domestic refuse'),\n",
+ " ('hand',\n",
+ " 'wheeled vehicle that can be pushed by a person; may have one or two or four wheels'),\n",
+ " ('dog', 'a cart drawn by a dog')]},\n",
+ " {'answer': 'case',\n",
+ " 'hint': '_ case',\n",
+ " 'clues': [('crank', 'housing for a crankshaft'),\n",
+ " ('upper',\n",
+ " 'one of the large alphabetic characters used as the first letter in writing or printing proper names and sometimes for emphasis'),\n",
+ " ('brief', 'a case with a handle; for carrying papers or files or books'),\n",
+ " ('seed',\n",
+ " 'the vessel that contains the seeds of a plant (not the seeds themselves)'),\n",
+ " ('show', 'a setting in which something can be displayed to best effect'),\n",
+ " ('book', 'a piece of furniture with shelves for storing books'),\n",
+ " ('suit', 'a portable rectangular container for carrying clothes'),\n",
+ " ('pillow', 'bed linen consisting of a cover for a pillow'),\n",
+ " ('lower',\n",
+ " \"the characters that were once kept in bottom half of a compositor's type case\"),\n",
+ " ('nut', 'someone deranged and possibly dangerous'),\n",
+ " ('stair',\n",
+ " 'a way of access (upward and downward) consisting of a set of steps')]},\n",
+ " {'answer': 'cast',\n",
+ " 'hint': '_ cast',\n",
+ " 'clues': [('down', 'a ventilation shaft through which air enters a mine'),\n",
+ " ('over', 'the state of the sky when it is covered by clouds'),\n",
+ " ('sports', 'a broadcast of sports news or commentary'),\n",
+ " ('broad', 'message that is transmitted by radio or television'),\n",
+ " ('news', 'a broadcast of news or commentary on the news'),\n",
+ " ('rough', 'a coarse plaster for the surface of external walls')]},\n",
+ " {'answer': 'cat',\n",
+ " 'hint': '_ cat',\n",
+ " 'clues': [('hell', 'a malicious woman with a fierce temper'),\n",
+ " ('tom', 'male cat'),\n",
+ " ('bob', 'small lynx of North America'),\n",
+ " ('wild',\n",
+ " 'an exploratory oil well drilled in land not known to be an oil field'),\n",
+ " ('pole',\n",
+ " 'American musteline mammal typically ejecting an intensely malodorous fluid when startled; in some classifications put in a separate subfamily Mephitinae'),\n",
+ " ('pussy', 'a person who is regarded as easygoing and agreeable'),\n",
+ " ('copy', 'someone who copies the words or behavior of another')]},\n",
+ " {'answer': 'chair',\n",
+ " 'hint': '_ chair',\n",
+ " 'clues': [('high',\n",
+ " 'a chair for feeding a very young child; has four long legs and a footrest and a detachable tray'),\n",
+ " ('push',\n",
+ " 'a small vehicle with four wheels in which a baby or child is pushed around'),\n",
+ " ('arm', 'chair with a support on each side for arms'),\n",
+ " ('wheel',\n",
+ " 'a movable chair mounted on large wheels; for invalids or those who cannot walk; frequently propelled by the occupant')]},\n",
+ " {'answer': 'child',\n",
+ " 'hint': '_ child',\n",
+ " 'clues': [('god',\n",
+ " 'an infant who is sponsored by an adult (the godparent) at baptism'),\n",
+ " ('school',\n",
+ " 'a young person attending school (up through senior high school)'),\n",
+ " ('step', 'a child of your spouse by a former marriage'),\n",
+ " ('grand', 'a child of your son or daughter'),\n",
+ " ('brain', 'a product of your creative thinking and work')]},\n",
+ " {'answer': 'cloth',\n",
+ " 'hint': '_ cloth',\n",
+ " 'clues': [('hair',\n",
+ " 'cloth woven from horsehair or camelhair; used for upholstery or stiffening in garments'),\n",
+ " ('table', 'a covering spread over a dining table'),\n",
+ " ('back', 'scenery hung at back of stage'),\n",
+ " ('oil', 'cloth treated on one side with a drying oil or synthetic resin'),\n",
+ " ('sack',\n",
+ " 'a garment made of coarse sacking; formerly worn as an indication of remorse'),\n",
+ " ('broad', 'a densely textured woolen fabric with a lustrous finish'),\n",
+ " ('dish', 'a cloth for washing dishes'),\n",
+ " ('terry',\n",
+ " 'a pile fabric (usually cotton) with uncut loops on both sides; used to make bath towels and bath robes'),\n",
+ " ('cheese',\n",
+ " 'a coarse loosely woven cotton gauze; originally used to wrap cheeses'),\n",
+ " ('sail',\n",
+ " 'a strong fabric (such as cotton canvas) used for making sails and tents'),\n",
+ " ('wash',\n",
+ " 'bath linen consisting of a piece of cloth used to wash the face and body'),\n",
+ " ('loin', 'a garment that provides covering for the loins')]},\n",
+ " {'answer': 'coat',\n",
+ " 'hint': '_ coat',\n",
+ " 'clues': [('rain', 'a water-resistant coat'),\n",
+ " ('waist', \"a man's sleeveless garment worn underneath a coat\"),\n",
+ " ('red',\n",
+ " 'British soldier; so-called because of his red coat (especially during the American Revolution)'),\n",
+ " ('under',\n",
+ " 'seal consisting of a coating of a tar or rubberlike material on the underside of a motor vehicle to retard corrosion'),\n",
+ " ('turn',\n",
+ " 'a disloyal person who betrays or deserts his cause or religion or political party or friend etc.'),\n",
+ " ('over', 'a heavy coat worn over clothes in winter'),\n",
+ " ('house', 'a loose dressing gown for women'),\n",
+ " ('tail', 'formalwear consisting of full evening dress for men'),\n",
+ " ('top', 'a heavy coat worn over clothes in winter'),\n",
+ " ('great', 'a heavy coat worn over clothes in winter')]},\n",
+ " {'answer': 'cock',\n",
+ " 'hint': '_ cock',\n",
+ " 'clues': [('pet',\n",
+ " 'regulator consisting of a small cock or faucet or valve for letting out air or releasing compression or draining'),\n",
+ " ('hay',\n",
+ " 'a small cone-shaped pile of hay that has been left in the field until it is dry enough to carry to the hayrick'),\n",
+ " ('ball', 'floating ball that controls level in a water tank'),\n",
+ " ('pea',\n",
+ " 'European butterfly having reddish-brown wings each marked with a purple eyespot'),\n",
+ " ('game', 'a cock bred and trained for fighting'),\n",
+ " ('wood', 'game bird of the sandpiper family that resembles a snipe'),\n",
+ " ('shuttle',\n",
+ " 'badminton equipment consisting of a ball of cork or rubber with a crown of feathers'),\n",
+ " ('weather', 'weathervane with a vane in the form of a rooster'),\n",
+ " ('stop',\n",
+ " 'faucet consisting of a rotating device for regulating flow of a liquid')]},\n",
+ " {'answer': 'comb',\n",
+ " 'hint': '_ comb',\n",
+ " 'clues': [('honey',\n",
+ " 'a structure of small hexagonal cells constructed from beeswax by bees and used to store honey and larvae'),\n",
+ " ('cox',\n",
+ " 'a conceited dandy who is overly impressed by his own accomplishments'),\n",
+ " ('curry', 'a square comb with rows of small teeth; used to curry horses'),\n",
+ " ('cocks',\n",
+ " 'garden annual with featherlike spikes of red or yellow flowers')]},\n",
+ " {'answer': 'craft',\n",
+ " 'hint': '_ craft',\n",
+ " 'clues': [('needle',\n",
+ " 'a creation created or assembled by needle and thread'),\n",
+ " ('wood',\n",
+ " 'skill and experience in matters relating to the woods (as hunting or fishing or camping)'),\n",
+ " ('hand', 'a work produced by hand labor'),\n",
+ " ('water', 'skill in the management of boats'),\n",
+ " ('air', 'a vehicle that can fly'),\n",
+ " ('hover',\n",
+ " 'a craft capable of moving over water or land on a cushion of air created by jet engines'),\n",
+ " ('witch', 'the art of sorcery'),\n",
+ " ('space',\n",
+ " 'a craft capable of traveling in outer space; technically, a satellite around the sun'),\n",
+ " ('state', 'wisdom in the management of public affairs'),\n",
+ " ('stage', 'skill in writing or staging plays')]},\n",
+ " {'answer': 'cut',\n",
+ " 'hint': '_ cut',\n",
+ " 'clues': [('wood', 'a print made from a woodcut'),\n",
+ " ('under', 'the material removed by a cut made underneath'),\n",
+ " ('hair', 'the style in which hair has been cut'),\n",
+ " ('cross', 'a diagonal path'),\n",
+ " ('upper',\n",
+ " \"a swinging blow directed upward (especially at an opponent's chin)\"),\n",
+ " ('short', 'a route shorter than the usual one')]},\n",
+ " {'answer': 'day',\n",
+ " 'hint': '_ day',\n",
+ " 'clues': [('mid', 'the middle of the day'),\n",
+ " ('pay', 'the day on which you receive pay for your work'),\n",
+ " ('week', 'any day except Sunday (and sometimes except Saturday)'),\n",
+ " ('noon', 'the middle of the day'),\n",
+ " ('dooms',\n",
+ " '(New Testament) day at the end of time following Armageddon when God will decree the fates of all individual humans according to the good and evil of their earthly lives'),\n",
+ " ('work', 'a day on which work is done'),\n",
+ " ('wash', 'a day set aside for doing household laundry'),\n",
+ " ('birth',\n",
+ " 'an anniversary of the day on which a person was born (or the celebration of it)')]},\n",
+ " {'answer': 'dog',\n",
+ " 'hint': '_ dog',\n",
+ " 'clues': [('watch',\n",
+ " 'a guardian or defender against theft or illegal practices or waste'),\n",
+ " ('sheep',\n",
+ " 'any of various usually long-haired breeds of dog reared to herd and guard sheep'),\n",
+ " ('under', 'one at a disadvantage and expected to lose'),\n",
+ " ('bull',\n",
+ " 'a sturdy thickset short-haired breed with a large head and strong undershot lower jaw; developed originally in England for bull baiting'),\n",
+ " ('hot',\n",
+ " 'someone who performs dangerous stunts to attract attention to himself'),\n",
+ " ('lap', 'a dog small and tame enough to be held in the lap')]},\n",
+ " {'answer': 'down',\n",
+ " 'hint': '_ down',\n",
+ " 'clues': [('melt',\n",
+ " 'severe overheating of the core of a nuclear reactor resulting in the core melting and radiation escaping'),\n",
+ " ('touch',\n",
+ " \"a score in American football; being in possession of the ball across the opponents' goal line\"),\n",
+ " ('count',\n",
+ " 'counting backward from an arbitrary number to indicate the time remaining before some event (such as launching a space vehicle)'),\n",
+ " ('knock', 'a blow that knocks the opponent off his feet'),\n",
+ " ('crack', 'severely repressive actions'),\n",
+ " ('clamp', 'sudden restriction on an activity'),\n",
+ " ('rub',\n",
+ " 'the act of rubbing down, usually for relaxation or medicinal purposes'),\n",
+ " ('shut', 'termination of operations'),\n",
+ " ('let',\n",
+ " 'a feeling of dissatisfaction that results when your expectations are not realized'),\n",
+ " ('spell',\n",
+ " 'a contest in which you are eliminated if you fail to spell a word correctly'),\n",
+ " ('slow', 'the act of slowing down or falling behind'),\n",
+ " ('show', 'a hostile disagreement face-to-face'),\n",
+ " ('break',\n",
+ " 'the act of disrupting an established order so it fails to continue'),\n",
+ " ('run',\n",
+ " 'a concluding summary (as in presenting a case before a law court)'),\n",
+ " ('come', 'decline to a lower status or level'),\n",
+ " ('splash',\n",
+ " 'a landing of a spacecraft in the sea at the end of a space flight'),\n",
+ " ('eider', 'a soft quilt usually filled with the down of the eider'),\n",
+ " ('sun',\n",
+ " 'the time in the evening at which the sun begins to fall below the horizon'),\n",
+ " ('shake',\n",
+ " 'initial adjustments to improve the functioning or the efficiency and to bring to a more satisfactory state'),\n",
+ " ('thistle',\n",
+ " 'pappus of a thistle consisting of silky featherlike hairs attached to the seed-like fruit of a thistle')]},\n",
+ " {'answer': 'drop',\n",
+ " 'hint': '_ drop',\n",
+ " 'clues': [('back', 'scenery hung at back of stage'),\n",
+ " ('dew', 'a drop of dew'),\n",
+ " ('gum', 'a jellied candy coated with sugar crystals'),\n",
+ " ('snow',\n",
+ " 'common anemone of eastern North America with solitary pink-tinged white flowers'),\n",
+ " ('rain', 'a drop of rain'),\n",
+ " ('air',\n",
+ " 'delivery of supplies or equipment or personnel by dropping them by parachute from an aircraft'),\n",
+ " ('tear',\n",
+ " 'anything shaped like a falling drop (as a pendant gem on an earring)')]},\n",
+ " {'answer': 'eye',\n",
+ " 'hint': '_ eye',\n",
+ " 'clues': [('wall',\n",
+ " 'strabismus in which one or both eyes are directed outward'),\n",
+ " ('shut', 'informal term for sleep'),\n",
+ " ('buck', 'the inedible nutlike seed of the horse chestnut'),\n",
+ " ('pink', 'inflammation of the conjunctiva of the eye')]},\n",
+ " {'answer': 'face',\n",
+ " 'hint': '_ face',\n",
+ " 'clues': [('coal', 'the part of a coal seam that is being cut'),\n",
+ " ('pale',\n",
+ " '(slang) a derogatory term for a white person (supposedly used by North American Indians)'),\n",
+ " ('bold', 'a typeface with thick heavy lines'),\n",
+ " ('type', 'a specific size and style of type within a type family')]},\n",
+ " {'answer': 'fall',\n",
+ " 'hint': '_ fall',\n",
+ " 'clues': [('night', 'the time of day immediately following sunset'),\n",
+ " ('water', 'a steep descent of the water of a river'),\n",
+ " ('pit', 'an unforeseen or unexpected or surprising difficulty'),\n",
+ " ('short',\n",
+ " 'the property of being an amount by which something is less than expected or required'),\n",
+ " ('snow', 'precipitation falling from clouds in the form of ice crystals'),\n",
+ " ('rain', 'water falling in drops from vapor condensed in the atmosphere'),\n",
+ " ('foot', 'the sound of a step of someone walking'),\n",
+ " ('wind', 'fruit that has fallen from the tree'),\n",
+ " ('land', 'the seacoast first sighted on a voyage (or flight over water)'),\n",
+ " ('down', 'failure that results in a loss of position or reputation'),\n",
+ " ('prat', 'a fall onto your buttocks')]},\n",
+ " {'answer': 'field',\n",
+ " 'hint': '_ field',\n",
+ " 'clues': [('hay',\n",
+ " 'a field where grass or alfalfa are grown to be made into hay'),\n",
+ " ('coal', 'a region where there is coal underground'),\n",
+ " ('out',\n",
+ " 'the area of a baseball playing field beyond the lines connecting the bases'),\n",
+ " ('gold', 'a district where gold is mined'),\n",
+ " ('corn', 'a field planted with corn'),\n",
+ " ('snow', 'a permanent wide expanse of snow'),\n",
+ " ('mid',\n",
+ " '(sports) the middle part of a playing field (as in football or lacrosse)'),\n",
+ " ('back', 'the offensive football players who line up behind the linemen'),\n",
+ " ('oil',\n",
+ " 'a region rich in petroleum deposits (especially one with producing oil wells)'),\n",
+ " ('mine', 'a region in which explosives mines have been placed'),\n",
+ " ('air', 'a place where planes take off and land'),\n",
+ " ('battle', 'a region where a battle is being (or has been) fought')]},\n",
+ " {'answer': 'fight',\n",
+ " 'hint': '_ fight',\n",
+ " 'clues': [('cock',\n",
+ " 'a match in a cockpit between two fighting cocks heeled with metal gaffs'),\n",
+ " ('dog', 'a fiercely disputed contest'),\n",
+ " ('gun',\n",
+ " 'a fight involving shooting small arms with the intent to kill or frighten'),\n",
+ " ('fist', 'a fight with bare fists'),\n",
+ " ('bull',\n",
+ " 'a Spanish or Portuguese or Latin American spectacle; a matador baits and (usually) kills a bull in an arena before many spectators'),\n",
+ " ('prize',\n",
+ " 'a boxing match between professional boxers for a cash prize')]},\n",
+ " {'answer': 'finder',\n",
+ " 'hint': '_ finder',\n",
+ " 'clues': [('range',\n",
+ " 'a measuring instrument (acoustic or optical or electronic) for finding the distance of an object'),\n",
+ " ('view',\n",
+ " 'optical device that helps a user to find the target of interest'),\n",
+ " ('fault', 'someone who is critical of the motives of others'),\n",
+ " ('path', 'someone who can find paths through unexplored territory')]},\n",
+ " {'answer': 'fire',\n",
+ " 'hint': '_ fire',\n",
+ " 'clues': [('cross',\n",
+ " 'a lively or heated interchange of ideas and opinions'),\n",
+ " ('hell',\n",
+ " 'a place of eternal fire envisaged as punishment for the damned'),\n",
+ " ('spit',\n",
+ " 'a highly emotional and quick-tempered person (especially a girl or woman)'),\n",
+ " ('camp', 'a small outdoor fire for warmth or cooking (as at a camp)'),\n",
+ " ('wild', 'a raging and rapidly spreading conflagration'),\n",
+ " ('back',\n",
+ " 'the backward escape of gases and unburned gunpowder after a gun is fired'),\n",
+ " ('gun', 'the act of shooting a gun')]},\n",
+ " {'answer': 'fish',\n",
+ " 'hint': '_ fish',\n",
+ " 'clues': [('sail', 'a saltwater fish with lean flesh'),\n",
+ " ('sun',\n",
+ " 'the lean flesh of any of numerous American perch-like fishes of the family Centrarchidae'),\n",
+ " ('spear',\n",
+ " 'any of several large vigorous pelagic fishes resembling sailfishes but with first dorsal fin much reduced; worldwide but rare'),\n",
+ " ('weak',\n",
+ " 'lean flesh of food and game fishes of the Atlantic coast of the United States'),\n",
+ " ('cat',\n",
+ " 'flesh of scaleless food fish of the southern United States; often farmed'),\n",
+ " ('dog',\n",
+ " 'primitive long-bodied carnivorous freshwater fish with a very long dorsal fin; found in sluggish waters of North America'),\n",
+ " ('star',\n",
+ " 'echinoderms characterized by five arms extending from a central disk'),\n",
+ " ('gold',\n",
+ " 'small golden or orange-red freshwater fishes of Eurasia used as pond or aquarium fishes'),\n",
+ " ('lung',\n",
+ " 'air-breathing fish having an elongated body and fleshy paired fins; certain species construct mucus-lined mud coverings in which to survive drought'),\n",
+ " ('sword', 'flesh of swordfish usually served as steaks'),\n",
+ " ('flat',\n",
+ " 'sweet lean whitish flesh of any of numerous thin-bodied fish; usually served as thin fillets'),\n",
+ " ('cuttle',\n",
+ " 'ten-armed oval-bodied cephalopod with narrow fins as long as the body and a large calcareous internal shell'),\n",
+ " ('white',\n",
+ " 'any market fish--edible saltwater fish or shellfish--except herring'),\n",
+ " ('shell',\n",
+ " 'meat of edible aquatic invertebrate with a shell (especially a mollusk or crustacean)'),\n",
+ " ('jelly',\n",
+ " 'large siphonophore having a bladderlike float and stinging tentacles'),\n",
+ " ('gar',\n",
+ " 'primitive predaceous North American fish covered with hard scales and having long jaws with needlelike teeth'),\n",
+ " ('angel', 'a butterfly fish of the genus Pomacanthus'),\n",
+ " ('silver',\n",
+ " 'silver-grey wingless insect found in houses feeding on book bindings and starched clothing'),\n",
+ " ('cod',\n",
+ " 'lean white flesh of important North Atlantic food fish; usually baked or poached'),\n",
+ " ('blue',\n",
+ " 'bluish warm-water marine food and game fish that follow schools of small fishes into shallow waters')]},\n",
+ " {'answer': 'flower',\n",
+ " 'hint': '_ flower',\n",
+ " 'clues': [('corn',\n",
+ " 'plant of southern and southeastern United States grown for its yellow flowers that can be dried'),\n",
+ " ('may',\n",
+ " 'the ship in which the Pilgrim Fathers sailed from England to Massachusetts in 1620'),\n",
+ " ('wall',\n",
+ " 'any of numerous plants of the genus Erysimum having fragrant yellow or orange or brownish flowers'),\n",
+ " ('sun',\n",
+ " 'any plant of the genus Helianthus having large flower heads with dark disk florets and showy yellow rays'),\n",
+ " ('wild', 'wild or uncultivated flowering plant'),\n",
+ " ('wind',\n",
+ " 'any woodland plant of the genus Anemone grown for its beautiful flowers and whorls of dissected leaves'),\n",
+ " ('passion',\n",
+ " 'any of various chiefly tropical American vines some bearing edible fruit')]},\n",
+ " {'answer': 'fly',\n",
+ " 'hint': '_ fly',\n",
+ " 'clues': [('house',\n",
+ " 'common fly that frequents human habitations and spreads many diseases'),\n",
+ " ('blow',\n",
+ " 'large usually hairy metallic blue or green fly; lays eggs in carrion or dung or wounds'),\n",
+ " ('butter',\n",
+ " 'diurnal insect typically having a slender body with knobbed antennae and broad colorful wings'),\n",
+ " ('fire', 'tropical American click beetle having bright luminous spots'),\n",
+ " ('gad', 'a persistently annoying person'),\n",
+ " ('saw',\n",
+ " 'insect whose female has a saw-like ovipositor for inserting eggs into the leaf or stem tissue of a host plant'),\n",
+ " ('green', 'greenish aphid; pest on garden and crop plants'),\n",
+ " ('may',\n",
+ " 'slender insect with delicate membranous wings having an aquatic larval stage and terrestrial adult stage usually lasting less than two days'),\n",
+ " ('damsel',\n",
+ " 'slender non-stinging insect similar to but smaller than the dragonfly but having wings folded when at rest'),\n",
+ " ('dragon',\n",
+ " 'slender-bodied non-stinging insect having iridescent wings that are outspread at rest; adults and nymphs feed on mosquitoes etc.'),\n",
+ " ('horse', 'winged fly parasitic on horses')]},\n",
+ " {'answer': 'fold',\n",
+ " 'hint': '_ fold',\n",
+ " 'clues': [('bill',\n",
+ " 'a pocket-size case for holding papers and paper money'),\n",
+ " ('sheep', 'a pen for sheep'),\n",
+ " ('center',\n",
+ " 'a magazine center spread; especially a foldout of a large photograph or map or other feature'),\n",
+ " ('blind', 'a cloth used to cover the eyes')]},\n",
+ " {'answer': 'foot',\n",
+ " 'hint': '_ foot',\n",
+ " 'clues': [('crow', 'any of various plants of the genus Ranunculus'),\n",
+ " ('hot',\n",
+ " \"a practical joke that involves inserting a match surreptitiously between the sole and upper of the victim's shoe and then lighting it\"),\n",
+ " ('flat', 'a policeman who patrols a given region'),\n",
+ " ('club',\n",
+ " 'congenital deformity of the foot usually marked by a curled shape or twisted position of the ankle and heel and toes'),\n",
+ " ('tender',\n",
+ " 'an inexperienced person (especially someone inexperienced in outdoor living)'),\n",
+ " ('splay',\n",
+ " 'a foot afflicted with a fallen arch; abnormally flattened and spread out'),\n",
+ " ('web', 'a foot having the toes connected by folds of skin')]},\n",
+ " {'answer': 'front',\n",
+ " 'hint': '_ front',\n",
+ " 'clues': [('ocean', 'land bordering an ocean'),\n",
+ " ('water',\n",
+ " 'the area of a city (such as a harbor or dockyard) alongside a body of water'),\n",
+ " ('lake', 'land bordering a lake'),\n",
+ " ('beach', 'a strip of land running along a beach'),\n",
+ " ('wave',\n",
+ " '(physics) an imaginary surface joining all points in space that are reached at the same instant by a wave propagating through a medium'),\n",
+ " ('battle', 'the line along which opposing armies face each other'),\n",
+ " ('shirt',\n",
+ " 'the front of a shirt (usually the part not covered by a jacket)'),\n",
+ " ('sea', 'the waterfront of a seaside town'),\n",
+ " ('store',\n",
+ " 'the front side of a store facing the street; usually contains display windows'),\n",
+ " ('shop',\n",
+ " 'the front side of a store facing the street; usually contains display windows')]},\n",
+ " {'answer': 'girl',\n",
+ " 'hint': '_ girl',\n",
+ " 'clues': [('cow', 'a woman cowboy'),\n",
+ " ('show', 'a woman who dances in a chorus line'),\n",
+ " ('sales', 'a woman salesperson'),\n",
+ " ('school', 'a girl attending school')]},\n",
+ " {'answer': 'glass',\n",
+ " 'hint': '_ glass',\n",
+ " 'clues': [('hour', 'a sandglass that runs for sixty minutes'),\n",
+ " ('spy', 'a small refracting telescope'),\n",
+ " ('eye',\n",
+ " 'lens for correcting defective vision in one eye; held in place by facial muscles'),\n",
+ " ('fiber', 'a covering material made of glass fibers in resins'),\n",
+ " ('wine', 'a glass that has a stem and in which wine is served')]},\n",
+ " {'answer': 'goer',\n",
+ " 'hint': '_ goer',\n",
+ " 'clues': [('church', 'a religious person who goes to church regularly'),\n",
+ " ('play', 'someone who attends the theater'),\n",
+ " ('theater', 'someone who attends the theater'),\n",
+ " ('movie', 'someone who goes to see movies')]},\n",
+ " {'answer': 'ground',\n",
+ " 'hint': '_ ground',\n",
+ " 'clues': [('play', 'an area where many people go for recreation'),\n",
+ " ('camp', 'a site where people on holiday can pitch a tent'),\n",
+ " ('fore', 'the part of a scene that is near the viewer'),\n",
+ " ('under',\n",
+ " 'a secret group organized to overthrow a government or occupation force'),\n",
+ " ('fair', 'an open area for holding fairs or exhibitions or circuses'),\n",
+ " ('back', \"a person's social heritage: previous experience or training\"),\n",
+ " ('battle', 'a region where a battle is being (or has been) fought')]},\n",
+ " {'answer': 'guard',\n",
+ " 'hint': '_ guard',\n",
+ " 'clues': [('coast',\n",
+ " 'a military service responsible for the safety of maritime traffic in coastal waters'),\n",
+ " ('black', 'someone who is morally reprehensible'),\n",
+ " ('body', 'someone who escorts and protects a prominent person'),\n",
+ " ('fire',\n",
+ " 'a narrow field that has been cleared to check the spread of a prairie fire or forest fire'),\n",
+ " ('rear',\n",
+ " 'a detachment assigned to protect the rear of a (retreating) military body'),\n",
+ " ('safe',\n",
+ " 'a precautionary measure warding off impending danger or damage or injury etc.'),\n",
+ " ('van', 'the leading units moving at the head of an army'),\n",
+ " ('life',\n",
+ " 'an attendant employed at a beach or pool to protect swimmers from accidents'),\n",
+ " ('mud',\n",
+ " 'a curved piece above the wheel of a bicycle or motorcycle to protect the rider from water or mud thrown up by the wheels')]},\n",
+ " {'answer': 'gun',\n",
+ " 'hint': '_ gun',\n",
+ " 'clues': [('flash',\n",
+ " 'a lamp for providing momentary light to take a photograph'),\n",
+ " ('shot',\n",
+ " 'firearm that is a double-barreled smoothbore shoulder weapon for firing shot at short ranges'),\n",
+ " ('blow', 'a tube through which darts can be shot by blowing'),\n",
+ " ('air', 'a gun that propels a projectile by compressed air'),\n",
+ " ('hand', 'a firearm that is held and fired with one hand'),\n",
+ " ('pop', 'plaything consisting of a toy gun that makes a popping sound')]},\n",
+ " {'answer': 'hand',\n",
+ " 'hint': '_ hand',\n",
+ " 'clues': [('long',\n",
+ " 'rapid handwriting in which letters are set down in full and are cursively connected within words without lifting the writing implement from the paper'),\n",
+ " ('cow',\n",
+ " 'a hired hand who tends cattle and performs other duties on horseback'),\n",
+ " ('short', 'a method of writing rapidly'),\n",
+ " ('stage',\n",
+ " 'an employee of a theater who performs work involved in putting on a theatrical production'),\n",
+ " ('deck', \"a member of a ship's crew who performs manual labor\"),\n",
+ " ('farm', 'a hired hand on a farm'),\n",
+ " ('back',\n",
+ " 'a return made with the back of the hand facing the direction of the stroke')]},\n",
+ " {'answer': 'head',\n",
+ " 'hint': '_ head',\n",
+ " 'clues': [('skin',\n",
+ " 'a young person who belongs to a British or American group that shave their heads and gather at rock concerts or engage in white supremacist demonstrations'),\n",
+ " ('fat', 'a man who is a stupid incompetent fool'),\n",
+ " ('bull',\n",
+ " 'freshwater sculpin with a large flattened bony-plated head with hornlike spines'),\n",
+ " ('block',\n",
+ " \"a stupid person; these words are used to express a low opinion of someone's intelligence\"),\n",
+ " ('well', 'the source of water for a well'),\n",
+ " ('sore', 'someone who is peevish or disgruntled'),\n",
+ " ('big',\n",
+ " 'any of various diseases of animals characterized by edema of the head and neck'),\n",
+ " ('dead', 'a nonenterprising person who is not paying his way'),\n",
+ " ('maiden',\n",
+ " 'a fold of tissue that partly covers the entrance to the vagina of a virgin'),\n",
+ " ('bridge',\n",
+ " 'an area in hostile territory that has been captured and is held awaiting further troops and supplies'),\n",
+ " ('logger',\n",
+ " \"a stupid person; these words are used to express a low opinion of someone's intelligence\"),\n",
+ " ('black', 'a black-tipped plug clogging a pore of the skin'),\n",
+ " ('beach',\n",
+ " \"a bridgehead on the enemy's shoreline seized by an amphibious operation\"),\n",
+ " ('figure', 'a person used as a cover for some questionable activity'),\n",
+ " ('air', 'a flighty scatterbrained simpleton'),\n",
+ " ('mast',\n",
+ " 'a listing printed in all issues of a newspaper or magazine (usually on the editorial page) that gives the name of the publication and the names of the editorial staff, etc.'),\n",
+ " ('fore', 'the part of the face above the eyes'),\n",
+ " ('hot', 'a belligerent grouch'),\n",
+ " ('egg', 'an intellectual; a very studious and academic person'),\n",
+ " ('hammer',\n",
+ " \"a stupid person; these words are used to express a low opinion of someone's intelligence\"),\n",
+ " ('over',\n",
+ " 'the expense of maintaining property (e.g., paying property taxes and utilities and insurance); it does not include depreciation or the cost of financing or income taxes'),\n",
+ " ('copper',\n",
+ " 'common coppery brown pit viper of upland eastern United States'),\n",
+ " ('letter',\n",
+ " 'a sheet of stationery with name and address of the organization printed at the top'),\n",
+ " ('pit', 'the entrance to a coal mine'),\n",
+ " ('hogs', 'a British unit of capacity for alcoholic beverages'),\n",
+ " ('arrow', 'the pointed head or striking tip of an arrow'),\n",
+ " ('bone',\n",
+ " \"a stupid person; these words are used to express a low opinion of someone's intelligence\"),\n",
+ " ('fountain', 'an abundant source'),\n",
+ " ('war',\n",
+ " 'the front part of a guided missile or rocket or torpedo that carries the nuclear or explosive charge or the chemical or biological agents'),\n",
+ " ('knuckle',\n",
+ " \"a stupid person; these words are used to express a low opinion of someone's intelligence\"),\n",
+ " ('bulk', 'a partition that divides a ship or plane into compartments'),\n",
+ " ('spear',\n",
+ " 'someone who leads or initiates an activity (attack or campaign etc.)'),\n",
+ " ('thunder',\n",
+ " 'a rounded projecting mass of a cumulus cloud with shining edges; often appears before a thunderstorm'),\n",
+ " ('red', 'someone who has red hair'),\n",
+ " ('white',\n",
+ " 'English philosopher and mathematician who collaborated with Bertrand Russell (1861-1947)'),\n",
+ " ('pin', 'an ignorant or foolish person'),\n",
+ " ('pot', 'someone who smokes marijuana habitually'),\n",
+ " ('sleepy', 'a sleepy person'),\n",
+ " ('tow', 'a person with light blond hair')]},\n",
+ " {'answer': 'hill',\n",
+ " 'hint': '_ hill',\n",
+ " 'clues': [('dung', 'a foul or degraded condition'),\n",
+ " ('down', 'the downward slope of a hill'),\n",
+ " ('foot', 'a relatively low hill on the lower slope of a mountain'),\n",
+ " ('ant', 'a mound of earth made by ants as they dig their nest'),\n",
+ " ('mole', 'a mound of earth made by moles while burrowing')]},\n",
+ " {'answer': 'hold',\n",
+ " 'hint': '_ hold',\n",
+ " 'clues': [('toe',\n",
+ " 'a relatively insignificant position from which future progress might be made'),\n",
+ " ('hand', 'an appendage to hold onto'),\n",
+ " ('foot',\n",
+ " 'an area in hostile territory that has been captured and is held awaiting further troops and supplies'),\n",
+ " ('strangle', 'complete power over a person or situation'),\n",
+ " ('strong', 'a strongly fortified defensive structure'),\n",
+ " ('lease', 'land or property held under a lease'),\n",
+ " ('house', 'a social unit living together'),\n",
+ " ('free', 'an estate held in fee simple or for life')]},\n",
+ " {'answer': 'holder',\n",
+ " 'hint': '_ holder',\n",
+ " 'clues': [('lease', 'a tenant who holds a lease'),\n",
+ " ('land', 'a holder or proprietor of land'),\n",
+ " ('house', 'someone who owns a home'),\n",
+ " ('pot', 'an insulated pad for holding hot pots'),\n",
+ " ('card', 'a person who holds a credit card or debit card'),\n",
+ " ('free', 'the owner of a freehold'),\n",
+ " ('bond', 'a holder of bonds issued by a government or corporation'),\n",
+ " ('share', 'someone who holds shares of stock in a corporation'),\n",
+ " ('policy',\n",
+ " 'a person who holds an insurance policy; usually, the client in whose name an insurance policy is written'),\n",
+ " ('job', 'an employee who holds a regular job'),\n",
+ " ('stock', 'someone who holds shares of stock in a corporation'),\n",
+ " ('place', 'a person authorized to act for another'),\n",
+ " ('stake',\n",
+ " 'someone entrusted to hold the stakes for two or more persons betting against one another; must deliver the stakes to the winner'),\n",
+ " ('small', 'a person owning or renting a smallholding'),\n",
+ " ('slave', 'someone who holds slaves'),\n",
+ " ('office',\n",
+ " 'someone who is appointed or elected to an office and who holds a position of trust')]},\n",
+ " {'answer': 'hole',\n",
+ " 'hint': '_ hole',\n",
+ " 'clues': [('worm', 'hole made by a burrowing worm'),\n",
+ " ('bung', 'vulgar slang for anus'),\n",
+ " ('fox',\n",
+ " 'a small dugout with a pit for individual shelter against enemy fire'),\n",
+ " ('arm',\n",
+ " 'a hole through which you put your arm and where a sleeve can be attached'),\n",
+ " ('sink',\n",
+ " 'a depression in the ground communicating with a subterranean passage (especially in limestone) and formed by solution or by collapse of a cavern roof'),\n",
+ " ('cubby', 'a small compartment'),\n",
+ " ('plug',\n",
+ " 'a hole into which a plug fits (especially a hole where water drains away)'),\n",
+ " ('spy', 'a hole (in a door or an oven etc) through which you can peep'),\n",
+ " ('button', 'a hole through which buttons are pushed'),\n",
+ " ('pigeon', 'a specific (often simplistic) category'),\n",
+ " ('knot', 'a hole in a board where a knot came out'),\n",
+ " ('loop',\n",
+ " 'an ambiguity (especially one in the text of a law or contract) that makes it possible to evade a difficulty or obligation'),\n",
+ " ('pin', 'a small puncture that might have been made by a pin'),\n",
+ " ('pot',\n",
+ " 'a pit or hole produced by wear or weathering (especially in a road surface)'),\n",
+ " ('peep', 'a hole (in a door or an oven etc) through which you can peep'),\n",
+ " ('blow', 'the spiracle of a cetacean located far back on the skull'),\n",
+ " ('key', 'the hole where a key is inserted'),\n",
+ " ('chuck',\n",
+ " 'a pit or hole produced by wear or weathering (especially in a road surface)'),\n",
+ " ('hell', 'any place of pain and turmoil')]},\n",
+ " {'answer': 'hook',\n",
+ " 'hint': '_ hook',\n",
+ " 'clues': [('fish', 'a sharp barbed hook for catching fish'),\n",
+ " ('bill', 'a long-handled saw with a curved blade'),\n",
+ " ('tenter', 'one of a series of hooks used to hold cloth on a tenter'),\n",
+ " ('pot', 'an S-shaped hook to suspend a pot over a fire')]},\n",
+ " {'answer': 'horn',\n",
+ " 'hint': '_ horn',\n",
+ " 'clues': [('prong',\n",
+ " 'fleet antelope-like ruminant of western North American plains with small branched horns'),\n",
+ " ('fog', 'a loud low warning signal that can be heard by fogbound ships'),\n",
+ " ('big',\n",
+ " 'a river that flows from central Wyoming to the Yellowstone River in southern Montana'),\n",
+ " ('long',\n",
+ " 'long-horned beef cattle formerly common in southwestern United States'),\n",
+ " ('green', 'an awkward and inexperienced youth'),\n",
+ " ('bull', 'a portable loudspeaker with built-in microphone and amplifier'),\n",
+ " ('short', 'English breed of short-horned cattle'),\n",
+ " ('shoe', 'a device used for easing the foot into a shoe')]},\n",
+ " {'answer': 'horse',\n",
+ " 'hint': '_ horse',\n",
+ " 'clues': [('sea',\n",
+ " 'either of two large northern marine mammals having ivory tusks and tough hide over thick blubber'),\n",
+ " ('clothes', 'a framework on which to hang clothes (as for drying)'),\n",
+ " ('hobby', 'a topic to which one constantly reverts'),\n",
+ " ('cart', 'draft horse kept for pulling carts'),\n",
+ " ('pack', 'a workhorse used as a pack animal'),\n",
+ " ('work', 'machine that performs dependably under heavy use'),\n",
+ " ('war',\n",
+ " 'a work of art (composition or drama) that is part of the standard repertory but has become hackneyed from much repetition'),\n",
+ " ('race', 'a horse bred for racing'),\n",
+ " ('saw', 'a framework for holding wood that is being sawed')]},\n",
+ " {'answer': 'hound',\n",
+ " 'hint': '_ hound',\n",
+ " 'clues': [('wolf',\n",
+ " 'the largest breed of dogs; formerly used to hunt wolves'),\n",
+ " ('blood',\n",
+ " 'a breed of large powerful hound of European origin having very acute smell and used in tracking'),\n",
+ " ('fox', 'medium-sized glossy-coated hounds developed for hunting foxes'),\n",
+ " ('grey',\n",
+ " 'a tall slender dog of an ancient breed noted for swiftness and keen sight; used as a racing dog')]},\n",
+ " {'answer': 'house',\n",
+ " 'hint': '_ house',\n",
+ " 'clues': [('bake',\n",
+ " 'a workplace where baked goods (breads and cakes and pastries) are produced or sold'),\n",
+ " ('porter',\n",
+ " 'large steak from the thick end of the short loin containing a T-shaped bone and large piece of tenderloin'),\n",
+ " ('whore', 'a building where prostitutes are available'),\n",
+ " ('summer', 'a small roofed building affording shade and rest'),\n",
+ " ('club', 'a building that is occupied by a social club'),\n",
+ " ('custom',\n",
+ " 'a government building where customs are collected and where ships are cleared to enter or leave the country'),\n",
+ " ('ware', 'a storehouse for goods and merchandise'),\n",
+ " ('bird', 'a shelter for birds'),\n",
+ " ('green',\n",
+ " 'a building with glass walls and roof; for the cultivation and exhibition of plants under controlled conditions'),\n",
+ " ('glass',\n",
+ " 'a building with glass walls and roof; for the cultivation and exhibition of plants under controlled conditions'),\n",
+ " ('block',\n",
+ " 'a stronghold that is reinforced for protection from enemy fire; with apertures for defensive fire'),\n",
+ " ('cook', 'the area for food preparation on a ship'),\n",
+ " ('flop', 'a cheap lodging house'),\n",
+ " ('nut', 'pejorative terms for an insane asylum'),\n",
+ " ('steak', 'a restaurant that specializes in steaks'),\n",
+ " ('play',\n",
+ " 'plaything consisting of a small model of a house that children can play inside of'),\n",
+ " ('boat', 'a shed at the edge of a river or lake; used to store boats'),\n",
+ " ('fire', 'a station housing fire apparatus and firemen'),\n",
+ " ('bath', 'a building containing dressing rooms for bathers'),\n",
+ " ('slaughter', 'a building where animals are butchered'),\n",
+ " ('jail',\n",
+ " 'a correctional institution used to detain persons who are in the lawful custody of the government (either accused persons awaiting trial or convicted persons serving a sentence)'),\n",
+ " ('mad', 'pejorative terms for an insane asylum'),\n",
+ " ('poor',\n",
+ " 'an establishment maintained at public expense in order to provide housing for the poor and homeless'),\n",
+ " ('light',\n",
+ " 'a tower with a light that gives warning of shoals to passing ships'),\n",
+ " ('chop', 'a restaurant that specializes in steaks'),\n",
+ " ('coffee', 'a small restaurant where drinks and snacks are sold'),\n",
+ " ('meeting',\n",
+ " 'a building for religious assembly (especially Nonconformists, e.g., Quakers)'),\n",
+ " ('guard',\n",
+ " 'a military facility that serves as the headquarters for military police and in which military prisoners can be detained'),\n",
+ " ('gate',\n",
+ " \"a house built at a gateway; usually the gatekeeper's residence\"),\n",
+ " ('road',\n",
+ " 'an inn (usually outside city limits on a main road) providing meals and liquor and dancing and (sometimes) gambling'),\n",
+ " ('store', 'a depository for goods'),\n",
+ " ('pilot', 'an enclosed compartment from which a vessel can be navigated'),\n",
+ " ('ale', 'a tavern where ale is sold'),\n",
+ " ('guest', 'a house separate from the main house; for housing guests'),\n",
+ " ('doll', \"a house so small that it is likened to a child's plaything\"),\n",
+ " ('court',\n",
+ " 'a government building that houses the offices of a county government'),\n",
+ " ('packing', 'a building where foodstuffs are processed and packed'),\n",
+ " ('farm', 'house for a farmer and family'),\n",
+ " ('work', 'a poorhouse where able-bodied poor are compelled to labor'),\n",
+ " ('wheel', 'an enclosed compartment from which a vessel can be navigated'),\n",
+ " ('power', 'a highly energetic and indefatigable person'),\n",
+ " ('doss', 'a cheap lodging house'),\n",
+ " ('round',\n",
+ " 'workplace consisting of a circular building for repairing locomotives'),\n",
+ " ('dog', 'outbuilding that serves as a shelter for a dog'),\n",
+ " ('boarding',\n",
+ " 'a private house that provides accommodations and meals for paying guests'),\n",
+ " ('hot', 'a greenhouse in which plants are arranged in a pleasing manner'),\n",
+ " ('school', 'a building where young people receive education'),\n",
+ " ('smoke', 'a small house where smoke is used to cure meat or fish')]},\n",
+ " {'answer': 'jack',\n",
+ " 'hint': '_ jack',\n",
+ " 'clues': [('apple', 'distilled from hard cider'),\n",
+ " ('cracker', 'someone excellent of their kind'),\n",
+ " ('steeple', 'someone who builds or maintains very tall structures'),\n",
+ " ('flap', 'a flat cake of thin batter fried on both sides on a griddle'),\n",
+ " ('lumber', 'a person who fells trees'),\n",
+ " ('black',\n",
+ " 'a common scrubby deciduous tree of central and southeastern United States having dark bark and broad three-lobed (club-shaped) leaves; tends to form dense thickets')]},\n",
+ " {'answer': 'keeper',\n",
+ " 'hint': '_ keeper',\n",
+ " 'clues': [('bee', 'a farmer who keeps bees for their honey'),\n",
+ " ('time', '(sports) an official who keeps track of the time elapsed'),\n",
+ " ('grounds',\n",
+ " 'someone who maintains the grounds (of an estate or park or athletic field)'),\n",
+ " ('book', 'someone who records the transactions of a business'),\n",
+ " ('game', 'a person employed to take care of game and wildlife'),\n",
+ " ('store', 'a merchant who owns or manages a shop'),\n",
+ " ('inn', 'the owner or manager of an inn'),\n",
+ " ('gate', 'someone who controls access to something'),\n",
+ " ('peace',\n",
+ " 'a member of a military force that is assigned (often with international sanction) to preserve peace in a trouble area'),\n",
+ " ('door',\n",
+ " 'an official stationed at the entrance of a courtroom or legislative chamber'),\n",
+ " ('house',\n",
+ " 'a servant who is employed to perform domestic task in a household'),\n",
+ " ('shop', 'a merchant who owns or manages a shop'),\n",
+ " ('bar', 'an employee who mixes and serves alcoholic drinks at a bar'),\n",
+ " ('score',\n",
+ " 'an official who records the score during the progress of a game'),\n",
+ " ('goal', 'the soccer or hockey player assigned to protect the goal')]},\n",
+ " {'answer': 'keeping',\n",
+ " 'hint': '_ keeping',\n",
+ " 'clues': [('house', 'the work of cleaning and running a house'),\n",
+ " ('safe', 'the responsibility of a guardian or keeper'),\n",
+ " ('book', 'the activity of recording business transactions'),\n",
+ " ('bee',\n",
+ " 'the cultivation of bees on a commercial scale for the production of honey'),\n",
+ " ('time', 'the act or process of determining the time'),\n",
+ " ('peace',\n",
+ " 'the activity of keeping the peace by military forces (especially when international military forces enforce a truce between hostile groups or nations)')]},\n",
+ " {'answer': 'land',\n",
+ " 'hint': '_ land',\n",
+ " 'clues': [('mid', 'a town in west central Texas'),\n",
+ " ('hinter', 'a remote and undeveloped area'),\n",
+ " ('waste', 'an uninhabited wilderness that is worthless for cultivation'),\n",
+ " ('swamp',\n",
+ " 'low land that is seasonally flooded; has more woody plants than a marsh and better drainage than a bog'),\n",
+ " ('heart',\n",
+ " 'the central region of a country or continent; especially a region that is important to a country or to a culture'),\n",
+ " ('park',\n",
+ " 'a large area of land preserved in its natural state as public property'),\n",
+ " ('pasture',\n",
+ " 'a field covered with grass or herbage and suitable for grazing by livestock'),\n",
+ " ('moor',\n",
+ " 'open land usually with peaty soil covered with heather and bracken and moss'),\n",
+ " ('heath',\n",
+ " 'a tract of level wasteland; uncultivated land with sandy soil and scrubby vegetation'),\n",
+ " ('dream', 'a pleasing country existing only in dreams or imagination'),\n",
+ " ('high', 'elevated (e.g., mountainous) land'),\n",
+ " ('fairy',\n",
+ " 'something existing solely in the imagination (but often mistaken for reality)'),\n",
+ " ('marsh',\n",
+ " 'low-lying wet land with grassy vegetation; usually is a transition zone between land and water'),\n",
+ " ('timber', 'land that is covered with trees and shrubs'),\n",
+ " ('wood', 'land that is covered with trees and shrubs'),\n",
+ " ('table', 'a relatively flat highland'),\n",
+ " ('wet', 'a low area where the land is saturated with water'),\n",
+ " ('wonder', 'a place or scene of great or strange beauty or wonder'),\n",
+ " ('fen',\n",
+ " 'low-lying wet land with grassy vegetation; usually is a transition zone between land and water'),\n",
+ " ('head',\n",
+ " 'a natural elevation (especially a rocky one that juts out into the sea)'),\n",
+ " ('home', 'the country where you were born'),\n",
+ " ('grass',\n",
+ " 'land where grass or grasslike vegetation grows and is the dominant form of plant life'),\n",
+ " ('main',\n",
+ " 'the main land mass of a country or continent; as distinguished from an island or peninsula'),\n",
+ " ('mother', 'the country where you were born'),\n",
+ " ('farm', 'a rural area where farming is practiced'),\n",
+ " ('tide', 'land near the sea that is overflowed by the tide'),\n",
+ " ('father', 'the country where you were born'),\n",
+ " ('low', 'low level country'),\n",
+ " ('border',\n",
+ " 'district consisting of the area on either side of a border or boundary of a country or an area'),\n",
+ " ('gang', 'underworld organizations')]},\n",
+ " {'answer': 'leg',\n",
+ " 'hint': '_ leg',\n",
+ " 'clues': [('black',\n",
+ " 'someone who works (or provides workers) during a strike'),\n",
+ " ('dog', 'angle that resembles the hind leg of a dog'),\n",
+ " ('boot', 'whiskey illegally distilled from a corn mash'),\n",
+ " ('bow', 'a leg bowed outward at the knee (or below the knee)')]},\n",
+ " {'answer': 'life',\n",
+ " 'hint': '_ life',\n",
+ " 'clues': [('night',\n",
+ " 'the entertainment available to people seeking nighttime diversion'),\n",
+ " ('wild', 'all living things (except people) that are undomesticated'),\n",
+ " ('after', 'life after death'),\n",
+ " ('low', 'a person who is deemed to be despicable or contemptible')]},\n",
+ " {'answer': 'light',\n",
+ " 'hint': '_ light',\n",
+ " 'clues': [('torch', 'light from a torch or torches'),\n",
+ " ('high', 'the most interesting or memorable part'),\n",
+ " ('candle', 'the light provided by a burning candle'),\n",
+ " ('star', 'the light of the stars'),\n",
+ " ('gas', 'light yielded by the combustion of illuminating gas'),\n",
+ " ('flash', 'a small portable battery-powered electric lamp'),\n",
+ " ('stop',\n",
+ " 'a red light on the rear of a motor vehicle that signals when the brakes are applied to slow or stop'),\n",
+ " ('head',\n",
+ " 'a powerful light with reflector; attached to the front of an automobile or locomotive'),\n",
+ " ('lime', 'a focus of public attention'),\n",
+ " ('day',\n",
+ " 'the time after sunrise and before sunset while it is light outside'),\n",
+ " ('sky', 'a window in a roof to admit daylight'),\n",
+ " ('sun', 'the rays of the sun'),\n",
+ " ('lamp', 'light from a lamp'),\n",
+ " ('fan',\n",
+ " 'a window above a door that is usually hinged to a horizontal crosspiece over the door'),\n",
+ " ('fire', 'the light of a fire (especially in a fireplace)'),\n",
+ " ('street', 'a lamp supported on a lamppost; for illuminating a street'),\n",
+ " ('tail', 'lamp (usually red) mounted at the rear of a motor vehicle'),\n",
+ " ('moon', 'the light of the Moon'),\n",
+ " ('search',\n",
+ " 'a light source with reflectors that projects a beam of light in a particular direction'),\n",
+ " ('spot', 'a focus of public attention'),\n",
+ " ('side',\n",
+ " \"light carried by a boat that indicates the boat's direction; vessels at night carry a red light on the port bow and a green light on the starboard bow\"),\n",
+ " ('flood',\n",
+ " 'light that is a source of artificial illumination having a broad beam; used in photography'),\n",
+ " ('pen', 'a small flashlight resembling a fountain pen')]},\n",
+ " {'answer': 'lighter',\n",
+ " 'hint': '_ lighter',\n",
+ " 'clues': [('lamp',\n",
+ " '(when gas was used for streetlights) a person who lights and extinguishes streetlights'),\n",
+ " ('fire',\n",
+ " '(a piece of) a substance that burns easily and can be used to start a coal or coke fire'),\n",
+ " ('moon', 'a person who holds a second job (usually after hours)'),\n",
+ " ('high', 'a cosmetic used to highlight the eyes or cheekbones')]},\n",
+ " {'answer': 'line',\n",
+ " 'hint': '_ line',\n",
+ " 'clues': [('hem', 'the line formed by the lower edge of a skirt or coat'),\n",
+ " ('air', 'a hose that carries air under pressure'),\n",
+ " ('clothes', 'a cord on which clothes are hung to dry'),\n",
+ " ('dead', 'the point in time at which something must be completed'),\n",
+ " ('side', 'a line that marks the side boundary of a playing field'),\n",
+ " ('bread', 'a queue of people waiting for free food'),\n",
+ " ('shore', 'a boundary line between land and water'),\n",
+ " ('under', 'a line drawn underneath (especially under written matter)'),\n",
+ " ('base',\n",
+ " 'an imaginary line or standard by which things are measured or compared'),\n",
+ " ('guide',\n",
+ " 'a light line that is used in lettering to help align the letters'),\n",
+ " ('pipe', 'gossip spread by spoken communication'),\n",
+ " ('neck', 'the line formed by the edge of a garment around the neck'),\n",
+ " ('bow', 'a loop knot that neither slips nor jams'),\n",
+ " ('date',\n",
+ " 'an imaginary line on the surface of the earth following (approximately) the 180th meridian'),\n",
+ " ('border', 'a line that indicates a boundary'),\n",
+ " ('waist', 'the narrowing of the body between the ribs and hips'),\n",
+ " ('tape',\n",
+ " 'measuring instrument consisting of a narrow strip (cloth or metal) marked in inches or centimeters and used for measuring lengths'),\n",
+ " ('head', 'the heading or caption of a newspaper article'),\n",
+ " ('coast', 'the outline of a coast'),\n",
+ " ('life',\n",
+ " 'a crease on the palm; its length is said by palmists to indicate how long you will live'),\n",
+ " ('timber',\n",
+ " 'line marking the upper limit of tree growth in mountains or northern latitudes'),\n",
+ " ('story', 'the plot of a book or play or film'),\n",
+ " ('sky', 'the outline of objects seen against the sky'),\n",
+ " ('bee', 'the most direct route'),\n",
+ " ('water',\n",
+ " 'a line corresponding to the surface of the water when the vessel is afloat on an even keel; often painted on the hull of a ship'),\n",
+ " ('blood', 'the descendants of one individual'),\n",
+ " ('touch', 'either of the sidelines in soccer or rugby'),\n",
+ " ('tow', '(nautical) a rope used in towing')]},\n",
+ " {'answer': 'liner',\n",
+ " 'hint': '_ liner',\n",
+ " 'clues': [('jet', 'a large jet plane that carries passengers'),\n",
+ " ('hard', 'a conservative who is uncompromising'),\n",
+ " ('head', 'a performer who receives prominent billing'),\n",
+ " ('air', 'a commercial airplane that carries passengers'),\n",
+ " ('eye', 'makeup applied to emphasize the shape of the eyes')]},\n",
+ " {'answer': 'load',\n",
+ " 'hint': '_ load',\n",
+ " 'clues': [('car',\n",
+ " 'a gathering of passengers sufficient to fill an automobile'),\n",
+ " ('boat',\n",
+ " 'the amount of cargo that can be held by a boat or ship or a freight car'),\n",
+ " ('pay',\n",
+ " 'the front part of a guided missile or rocket or torpedo that carries the nuclear or explosive charge or the chemical or biological agents'),\n",
+ " ('bus',\n",
+ " 'the quantity of cargo or the number of passengers that a bus can carry'),\n",
+ " ('work', 'work that a person is expected to do in a specified time'),\n",
+ " ('over',\n",
+ " 'an electrical load that exceeds the available electrical power'),\n",
+ " ('train', 'quantity that can be carried by a train'),\n",
+ " ('ship',\n",
+ " 'the amount of cargo that can be held by a boat or ship or a freight car')]},\n",
+ " {'answer': 'lock',\n",
+ " 'hint': '_ lock',\n",
+ " 'clues': [('dead',\n",
+ " 'a situation in which no progress can be made or no advancement is possible'),\n",
+ " ('grid', 'a traffic jam so bad that no movement is possible'),\n",
+ " ('match',\n",
+ " 'an early style of musket; a slow-burning wick would be lowered into a hole in the breech to ignite the charge'),\n",
+ " ('pad',\n",
+ " 'a detachable lock; has a hinged shackle that can be passed through the staple of a hasp or the links in a chain and then snapped shut'),\n",
+ " ('row',\n",
+ " 'a holder attached to the gunwale of a boat that holds the oar in place and acts as a fulcrum for rowing'),\n",
+ " ('wed',\n",
+ " 'the state of being a married couple voluntarily joined for life (or until divorce)'),\n",
+ " ('air',\n",
+ " 'a chamber that provides access to space where air is under pressure'),\n",
+ " ('oar',\n",
+ " 'a holder attached to the gunwale of a boat that holds the oar in place and acts as a fulcrum for rowing'),\n",
+ " ('flint', 'a muzzle loader that had a flintlock type of gunlock'),\n",
+ " ('hammer',\n",
+ " \"a wrestling hold in which the opponent's arm is twisted up behind his back\"),\n",
+ " ('head',\n",
+ " \"a wrestling hold in which the opponent's head is locked between the crook of your elbow and the side of your body\")]},\n",
+ " {'answer': 'maid',\n",
+ " 'hint': '_ maid',\n",
+ " 'clues': [('brides',\n",
+ " 'an unmarried woman who attends the bride at a wedding'),\n",
+ " ('milk', 'a woman who works in a dairy'),\n",
+ " ('hand', 'in a subordinate position'),\n",
+ " ('chamber',\n",
+ " 'a maid who is employed to clean and care for bedrooms (now primarily in hotels)'),\n",
+ " ('bar', 'a female bartender'),\n",
+ " ('nurse', 'a woman who is the custodian of children'),\n",
+ " ('dairy', 'a woman who works in a dairy'),\n",
+ " ('parlor',\n",
+ " 'a maid in a private home whose duties are to care for the parlor and the table and to answer the door'),\n",
+ " ('house', 'a female domestic')]},\n",
+ " {'answer': 'maker',\n",
+ " 'hint': '_ maker',\n",
+ " 'clues': [('cabinet', 'a woodworker who specializes in making furniture'),\n",
+ " ('wine', 'someone who makes wine'),\n",
+ " ('book',\n",
+ " 'a maker of books; someone who edits or publishes or binds books'),\n",
+ " ('king',\n",
+ " 'English statesman; during the War of the Roses he fought first for the house of York and secured the throne for Edward IV and then changed sides to fight for the house of Lancaster and secured the throne for Henry VI (1428-1471)'),\n",
+ " ('law', 'a maker of laws; someone who gives a code of laws'),\n",
+ " ('steel', 'a worker engaged in making steel'),\n",
+ " ('dress', 'someone who makes or mends dresses'),\n",
+ " ('holiday', 'someone who travels for pleasure'),\n",
+ " ('match',\n",
+ " 'someone who arranges (or tries to arrange) marriages for others'),\n",
+ " ('merry', 'a celebrant who shares in a noisy party'),\n",
+ " ('peace', 'someone who tries to bring peace'),\n",
+ " ('noise',\n",
+ " 'a device (such as a clapper or bell or horn) used to make a loud noise at a celebration'),\n",
+ " ('home',\n",
+ " 'a wife who manages a household while her husband earns the family income'),\n",
+ " ('watch', 'someone who makes or repairs watches'),\n",
+ " ('rain',\n",
+ " 'executive who is very successful in bringing in business to his company or firm'),\n",
+ " ('clock',\n",
+ " 'someone whose occupation is making or repairing clocks and watches'),\n",
+ " ('money', 'someone who is successful in accumulating wealth'),\n",
+ " ('film', 'a producer of motion pictures'),\n",
+ " ('auto', 'a business engaged in the manufacture of automobiles'),\n",
+ " ('trouble', 'someone who deliberately stirs up trouble'),\n",
+ " ('tool', 'someone skilled in making or repairing tools'),\n",
+ " ('shoe', 'a person who makes or repairs shoes')]},\n",
+ " {'answer': 'making',\n",
+ " 'hint': '_ making',\n",
+ " 'clues': [('cabinet', 'the craft of a joiner'),\n",
+ " ('love',\n",
+ " 'sexual activities (often including sexual intercourse) between two people'),\n",
+ " ('rain', 'activity intended to produce rain'),\n",
+ " ('law', 'the act of making or enacting laws'),\n",
+ " ('hay', 'taking full advantage of an opportunity while it lasts'),\n",
+ " ('dress', 'the craft of making dresses'),\n",
+ " ('merry', 'a boisterous celebration; a merry festivity'),\n",
+ " ('home', 'the management of a household'),\n",
+ " ('money', 'the act of making money (and accumulating wealth)'),\n",
+ " ('print',\n",
+ " 'artistic design and manufacture of prints as woodcuts or silkscreens'),\n",
+ " ('match',\n",
+ " 'mediation in order to bring about a marriage between others')]},\n",
+ " {'answer': 'man',\n",
+ " 'hint': '_ man',\n",
+ " 'clues': [('wood', 'someone who lives in the woods'),\n",
+ " ('horse', 'a man skilled in equitation'),\n",
+ " ('towns', 'a person from the same town as yourself'),\n",
+ " ('grounds',\n",
+ " 'someone who maintains the grounds (of an estate or park or athletic field)'),\n",
+ " ('aircraft', 'a noncommissioned officer in the British Royal Air Force'),\n",
+ " ('bats', '(baseball) a ballplayer who is batting'),\n",
+ " ('grooms', 'a male attendant of the bridegroom at a wedding'),\n",
+ " ('sales', 'a man salesperson'),\n",
+ " ('cow',\n",
+ " 'a hired hand who tends cattle and performs other duties on horseback'),\n",
+ " ('brake', \"a railroad employee responsible for a train's brakes\"),\n",
+ " ('muscle', 'a bully employed as a thug or bodyguard'),\n",
+ " ('cattle', 'a man who raises (or tends) cattle'),\n",
+ " ('line', 'one of the players on the line of scrimmage'),\n",
+ " ('news', 'a person who investigates and reports or edits news stories'),\n",
+ " ('select',\n",
+ " 'an elected member of a board of officials who run New England towns'),\n",
+ " ('dales', 'a person who lives in the dales of northern England'),\n",
+ " ('crafts', 'a professional whose work is consistently of high quality'),\n",
+ " ('bogey', 'an imaginary monster used to frighten children'),\n",
+ " ('police', 'a member of a police force'),\n",
+ " ('law', 'an officer of the law'),\n",
+ " ('guards',\n",
+ " \"a soldier who is a member of a unit called `the guard' or `guards'\"),\n",
+ " ('bands', 'a player in a band (especially a military band)'),\n",
+ " ('strong', 'a man who performs feats of strength at a fair or circus'),\n",
+ " ('coach', 'a man who drives a coach (or carriage)'),\n",
+ " ('signal',\n",
+ " 'a railroad employee in charge of signals and point in a railroad yard'),\n",
+ " ('country', 'a man from your own country'),\n",
+ " ('house',\n",
+ " \"an advanced student or graduate in medicine gaining supervised practical experience (`houseman' is a British term)\"),\n",
+ " ('backwoods', 'a man who lives on the frontier'),\n",
+ " ('militia', 'a member of the militia; serves only during emergencies'),\n",
+ " ('ice', 'someone who cuts and delivers ice'),\n",
+ " ('church', 'a clergyman or other person in religious orders'),\n",
+ " ('service',\n",
+ " 'someone who serves in the armed forces; a member of a military force'),\n",
+ " ('bush',\n",
+ " 'a member of the race of nomadic hunters and gatherers who live in southern Africa'),\n",
+ " ('cavalry', 'a soldier in a motorized army unit'),\n",
+ " ('snow', 'a figure of a person made of packed snow'),\n",
+ " ('milk', 'someone who delivers milk'),\n",
+ " ('handy', 'a man skilled in various odd jobs and other small tasks'),\n",
+ " ('midship', 'a temporary rank held by young naval officers in training'),\n",
+ " ('clans', 'a member of a clan'),\n",
+ " ('bonds', 'a male slave'),\n",
+ " ('gentle', 'a man of refinement'),\n",
+ " ('ferry', 'a man who operates a ferry'),\n",
+ " ('rifle', 'someone skilled in the use of a rifle'),\n",
+ " ('heads', 'an executioner who beheads the condemned person'),\n",
+ " ('door', 'someone who guards an entrance'),\n",
+ " ('plow', 'a man who plows'),\n",
+ " ('yachts', 'a person who owns or sails a yacht'),\n",
+ " ('work', 'an employee who performs manual or industrial labor'),\n",
+ " ('chair', 'the officer who presides at the meetings of an organization'),\n",
+ " ('sports', 'someone who engages in sports'),\n",
+ " ('freed', 'a person who has been freed from slavery'),\n",
+ " ('infantry', 'fights on foot with small arms'),\n",
+ " ('herds', 'someone who drives a herd'),\n",
+ " ('dust', 'someone employed to collect and dispose of refuse'),\n",
+ " ('marks', 'someone skilled in shooting'),\n",
+ " ('committee', 'a man who is a member of committee'),\n",
+ " ('lands', 'a person who lives and works on land'),\n",
+ " ('spokes', 'a male spokesperson'),\n",
+ " ('warehouse', 'a workman who manages or works in a warehouse'),\n",
+ " ('jury', 'someone who serves (or waits to be called to serve) on a jury'),\n",
+ " ('watch', 'a guard who keeps watch'),\n",
+ " ('newspaper',\n",
+ " 'a journalist employed to provide news stories for newspapers or broadcast media'),\n",
+ " ('drafts', 'a skilled worker who draws plans of buildings or machines'),\n",
+ " ('cave', 'someone who lives in a cave'),\n",
+ " ('train', 'an employee of a railroad'),\n",
+ " ('patrol', 'a policeman who patrols a given region'),\n",
+ " ('fire', 'play in which children pretend to put out a fire'),\n",
+ " ('fisher', 'someone whose occupation is catching fish'),\n",
+ " ('water', 'someone who drives or rides in a boat'),\n",
+ " ('clergy',\n",
+ " 'a member of the clergy and a spiritual leader of the Christian Church'),\n",
+ " ('council', 'a man who is a council member'),\n",
+ " ('alder', 'a member of a municipal legislative body (as a city council)'),\n",
+ " ('hang', 'an executioner who hangs the condemned person'),\n",
+ " ('laundry', 'operates industrial washing machine'),\n",
+ " ('mail', 'a man who delivers the mail'),\n",
+ " ('states',\n",
+ " 'a man who is a respected leader in national or international affairs'),\n",
+ " ('link',\n",
+ " '(formerly) an attendant hired to carry a torch for pedestrians in dark streets'),\n",
+ " ('husband', 'a person who operates a farm'),\n",
+ " ('assembly', 'someone who is a member of a legislative assembly'),\n",
+ " ('tax', 'someone who collects taxes for the government'),\n",
+ " ('fresh', 'a first-year undergraduate'),\n",
+ " ('bow', 'a person who is expert in the use of a bow and arrow'),\n",
+ " ('hunts', 'someone who hunts game'),\n",
+ " ('chess',\n",
+ " 'any of 16 white and 16 black pieces used in playing the game of chess'),\n",
+ " ('repair', 'a skilled worker whose job is to repair things'),\n",
+ " ('noble', 'a titled peer of the realm'),\n",
+ " ('dairy', 'the owner or manager of a dairy'),\n",
+ " ('sand',\n",
+ " \"an elf in fairy stories who sprinkles sand in children's eyes to make them sleepy\"),\n",
+ " ('lumber', 'a person who fells trees'),\n",
+ " ('garbage', 'someone employed to collect and dispose of refuse'),\n",
+ " ('mad', 'an insane person'),\n",
+ " ('anchor',\n",
+ " 'a television reporter who coordinates a broadcast to which several correspondents contribute'),\n",
+ " ('air', 'someone who operates an aircraft'),\n",
+ " ('space', 'a person trained to travel in a spacecraft'),\n",
+ " ('crew', \"any member of a ship's crew\"),\n",
+ " ('middle',\n",
+ " 'someone who buys large quantities of goods and resells to merchants rather than to the ultimate customers'),\n",
+ " ('swords', 'someone skilled at fencing'),\n",
+ " ('gun', 'a professional killer who uses a gun'),\n",
+ " ('pen', 'informal terms for journalists'),\n",
+ " ('business',\n",
+ " 'a person engaged in commercial or industrial business (especially an owner or executive)'),\n",
+ " ('pitch',\n",
+ " 'an aggressive salesman who uses a fast line of talk to sell something'),\n",
+ " ('plains',\n",
+ " 'an inhabitant of a plains region (especially the Great Plains of North America)'),\n",
+ " ('barge', 'someone who operates a barge'),\n",
+ " ('oars', 'someone who rows a boat'),\n",
+ " ('post', 'a man who delivers the mail'),\n",
+ " ('oil', 'a person who owns or operates oil wells'),\n",
+ " ('frog', 'someone who works underwater'),\n",
+ " ('bell',\n",
+ " 'someone employed as an errand boy and luggage carrier around hotels'),\n",
+ " ('press', 'someone whose occupation is printing'),\n",
+ " ('camera', 'a photographer who operates a movie camera'),\n",
+ " ('livery', 'a worker in a livery stable'),\n",
+ " ('fields',\n",
+ " 'a member of the cricket team that is fielding rather than batting'),\n",
+ " ('trencher', 'a person who is devoted to eating and drinking to excess'),\n",
+ " ('kins', 'a male relative'),\n",
+ " ('stable', 'someone employed in a stable to take care of the horses'),\n",
+ " ('helms', 'the person who steers a ship'),\n",
+ " ('congress', 'a member of the United States House of Representatives'),\n",
+ " ('boat', 'someone who drives or rides in a boat'),\n",
+ " ('merchant', 'a cargo ship'),\n",
+ " ('foot',\n",
+ " 'a man employed as a servant in a large establishment (as a palace) to run errands and do chores'),\n",
+ " ('highway', 'a holdup man who stops a vehicle and steals from it'),\n",
+ " ('artillery', 'a serviceman in the artillery'),\n",
+ " ('bar', 'an employee who mixes and serves alcoholic drinks at a bar'),\n",
+ " ('frontiers', 'a man who lives on the frontier'),\n",
+ " ('vestry', 'a man who is a member of a church vestry'),\n",
+ " ('gas', 'someone employed by a gas company'),\n",
+ " ('lay', 'someone who is not a clergyman or a professional person'),\n",
+ " ('show', 'a person skilled at making effective presentations'),\n",
+ " ('steers', 'the person who steers a ship'),\n",
+ " ('motor', 'the operator of streetcar'),\n",
+ " ('yard', 'worker in a railway yard'),\n",
+ " ('nursery', 'someone who takes care of a garden'),\n",
+ " ('trades', 'a merchant who owns or manages a shop'),\n",
+ " ('weather', 'predicts the weather'),\n",
+ " ('longshore', 'a laborer who loads and unloads vessels in a port'),\n",
+ " ('journey', 'a skilled worker who practices some trade or handicraft'),\n",
+ " ('sea', 'a man who serves as a sailor'),\n",
+ " ('railway', 'an employee of a railroad')]},\n",
+ " {'answer': 'mark',\n",
+ " 'hint': '_ mark',\n",
+ " 'clues': [('bench',\n",
+ " 'a standard by which something can be measured or judged'),\n",
+ " ('trade', 'a distinctive characteristic or attribute'),\n",
+ " ('pock',\n",
+ " 'a scar or pit on the skin that is left by a pustule of smallpox or acne or other eruptive disease'),\n",
+ " ('birth', 'a blemish on the skin that is formed before birth'),\n",
+ " ('post',\n",
+ " 'a cancellation mark stamped on mail by postal officials; indicates the post office and date of mailing'),\n",
+ " ('book',\n",
+ " \"a marker (a piece of paper or ribbon) placed between the pages of a book to mark the reader's place\"),\n",
+ " ('tide',\n",
+ " 'indicator consisting of a line at the highwater or low-water limits of the tides'),\n",
+ " ('finger', 'a smudge made by a (dirty) finger'),\n",
+ " ('water', 'a line marking the level reached by a body of water'),\n",
+ " ('land',\n",
+ " 'the position of a prominent or well-known object in a particular landscape'),\n",
+ " ('ear', 'identification mark on the ear of a domestic animal'),\n",
+ " ('hall', 'a distinctive characteristic or attribute')]},\n",
+ " {'answer': 'mast',\n",
+ " 'hint': '_ mast',\n",
+ " 'clues': [('top',\n",
+ " 'the mast next above a lower mast and topmost in a fore-and-aft rig'),\n",
+ " ('main', 'the chief mast of a sailing vessel with two or more masts'),\n",
+ " ('mizzen',\n",
+ " 'third mast from the bow in a vessel having three or more masts; the after and shorter mast of a yawl, ketch, or dandy'),\n",
+ " ('fore', 'the mast nearest the bow in vessels with two or more masts')]},\n",
+ " {'answer': 'master',\n",
+ " 'hint': '_ master',\n",
+ " 'clues': [('pay', 'a person in charge of paying wages'),\n",
+ " ('choir', 'the musical director of a choir'),\n",
+ " ('station', 'the person in charge of a railway station'),\n",
+ " ('task', 'someone who imposes hard or continuous work'),\n",
+ " ('quarter',\n",
+ " 'an army officer who provides clothing and subsistence for troops'),\n",
+ " ('spy', 'someone who directs clandestine intelligence activities'),\n",
+ " ('toast',\n",
+ " 'the person who proposes toasts and introduces speakers at a banquet'),\n",
+ " ('school', 'presiding officer of a school'),\n",
+ " ('scout', 'the leader of a troop of Scouts'),\n",
+ " ('house', 'teacher in charge of a school boardinghouse'),\n",
+ " ('grand',\n",
+ " 'a player of exceptional or world class skill in chess or bridge'),\n",
+ " ('web', 'a technician who designs or maintains a website'),\n",
+ " ('post', 'the person in charge of a post office'),\n",
+ " ('band', 'the conductor of a band'),\n",
+ " ('head', 'presiding officer of a school'),\n",
+ " ('ring', 'the person in charge of performances in a circus ring'),\n",
+ " ('yard', 'a railroad employer who is in charge of a railway yard')]},\n",
+ " {'answer': 'mate',\n",
+ " 'hint': '_ mate',\n",
+ " 'clues': [('room', 'an associate who shares a room with you'),\n",
+ " ('school', 'an acquaintance that you go to school with'),\n",
+ " ('check', 'complete victory'),\n",
+ " ('house', 'someone who resides in the same house with you'),\n",
+ " ('mess',\n",
+ " '(nautical) an associate with whom you share meals in the same mess (as on a ship)'),\n",
+ " ('class', 'an acquaintance that you go to school with'),\n",
+ " ('ship', 'an associate on the same ship with you'),\n",
+ " ('stable',\n",
+ " 'a horse stabled with another or one of several horses owned by the same person'),\n",
+ " ('work', 'a fellow worker'),\n",
+ " ('team', 'a fellow member of a team'),\n",
+ " ('flat', 'an associate who shares an apartment with you'),\n",
+ " ('play', 'a companion at play'),\n",
+ " ('help', 'a helpful partner')]},\n",
+ " {'answer': 'meter',\n",
+ " 'hint': '_ meter',\n",
+ " 'clues': [('taxi',\n",
+ " 'a meter in a taxi that registers the fare (based on the length of the ride)'),\n",
+ " ('audio', 'an instrument used to measure the sensitivity of hearing'),\n",
+ " ('volt',\n",
+ " 'meter that measures the potential difference between two points'),\n",
+ " ('ohm', 'a meter for measuring electrical resistance in ohms')]},\n",
+ " {'answer': 'mill',\n",
+ " 'hint': '_ mill',\n",
+ " 'clues': [('grist',\n",
+ " \"a mill for grinding grain (especially the customer's own grain)\"),\n",
+ " ('wind', 'a mill that is powered by the wind'),\n",
+ " ('saw', 'a large sawing machine'),\n",
+ " ('tread',\n",
+ " 'an exercise device consisting of an endless belt on which a person can walk or jog without changing place')]},\n",
+ " {'answer': 'mistress',\n",
+ " 'hint': '_ mistress',\n",
+ " 'clues': [('head', 'a woman headmaster'),\n",
+ " ('task', 'a woman taskmaster'),\n",
+ " ('post', 'a woman postmaster'),\n",
+ " ('school', 'a woman schoolteacher (especially one regarded as strict)')]},\n",
+ " {'answer': 'monger',\n",
+ " 'hint': '_ monger',\n",
+ " 'clues': [('scare',\n",
+ " 'a person who spreads frightening rumors and stirs up trouble'),\n",
+ " ('iron', 'someone who sells hardware'),\n",
+ " ('war', 'a person who advocates war or warlike policies'),\n",
+ " ('rumor',\n",
+ " 'a person given to gossiping and divulging personal information about others'),\n",
+ " ('scandal', 'a person who spreads malicious gossip'),\n",
+ " ('fish', 'someone who sells fish'),\n",
+ " ('hate', 'one who arouses hatred for others')]},\n",
+ " {'answer': 'mother',\n",
+ " 'hint': '_ mother',\n",
+ " 'clues': [('grand', 'the mother of your father or mother'),\n",
+ " ('step', 'the wife of your father by a subsequent marriage'),\n",
+ " ('house',\n",
+ " 'a woman employed as a chaperon in a residence for young people'),\n",
+ " ('god', 'any woman who serves as a sponsor for a child at baptism')]},\n",
+ " {'answer': 'mouth',\n",
+ " 'hint': '_ mouth',\n",
+ " 'clues': [('motor', 'someone who talks incessantly'),\n",
+ " ('loud', 'a person who causes trouble by speaking indiscreetly'),\n",
+ " ('cotton',\n",
+ " 'venomous semiaquatic snake of swamps in southern United States'),\n",
+ " ('goal', '(sports) the area immediately in front of the goal'),\n",
+ " ('blabber', 'someone who gossips indiscreetly')]},\n",
+ " {'answer': 'nail',\n",
+ " 'hint': '_ nail',\n",
+ " 'clues': [('hob',\n",
+ " 'a short nail with a thick head; used to protect the soles of boots'),\n",
+ " ('hang',\n",
+ " 'a loose narrow strip of skin near the base of a fingernail; tearing it produces a painful sore that is easily infected'),\n",
+ " ('thumb', 'the nail of the thumb'),\n",
+ " ('finger', 'the nail at the end of a finger'),\n",
+ " ('door', 'a nail with a large head; formerly used to decorate doors'),\n",
+ " ('toe', 'the nail at the end of a toe')]},\n",
+ " {'answer': 'neck',\n",
+ " 'hint': '_ neck',\n",
+ " 'clues': [('leather', 'a member of the United States Marine Corps'),\n",
+ " ('bottle', 'a narrowing that reduces the flow through a channel'),\n",
+ " ('rough', 'a cruel and brutal fellow'),\n",
+ " ('rubber', 'a tourist who is visiting sights of interest'),\n",
+ " ('red', 'a poor White person in the southern United States'),\n",
+ " ('turtle', 'a sweater or jersey with a high close-fitting collar'),\n",
+ " ('crook',\n",
+ " 'yellow squash with a thin curved neck and somewhat warty skin')]},\n",
+ " {'answer': 'nut',\n",
+ " 'hint': '_ nut',\n",
+ " 'clues': [('beech',\n",
+ " 'small sweet triangular nut of any of various beech trees'),\n",
+ " ('chest', 'wood of any of various chestnut trees of the genus Castanea'),\n",
+ " ('butter',\n",
+ " 'North American walnut tree having light-brown wood and edible nuts; source of a light-brown dye'),\n",
+ " ('coco',\n",
+ " 'the edible white meat of a coconut; often shredded for use in e.g. cakes and curries'),\n",
+ " ('cob', 'small nut-bearing tree much grown in Europe'),\n",
+ " ('hazel',\n",
+ " 'any of several shrubs or small trees of the genus Corylus bearing edible nuts enclosed in a leafy husk'),\n",
+ " ('pea', 'underground pod of the peanut vine'),\n",
+ " ('ground',\n",
+ " 'a North American vine with fragrant blossoms and edible tubers; important food crop of Native Americans')]},\n",
+ " {'answer': 'off',\n",
+ " 'hint': '_ off',\n",
+ " 'clues': [('cut',\n",
+ " 'a designated limit beyond which something cannot function or must be terminated'),\n",
+ " ('play', 'any final competition to determine a championship'),\n",
+ " ('run',\n",
+ " 'the occurrence of surplus liquid (as water) exceeding the limit or capacity'),\n",
+ " ('take', 'a departure; especially of airplanes'),\n",
+ " ('kick',\n",
+ " '(football) a kick from the center of the field to start a football game or to resume it after a score'),\n",
+ " ('blast',\n",
+ " 'the launching of a missile or spacecraft to a specified destination'),\n",
+ " ('turn', 'something causing antagonism or loss of interest'),\n",
+ " ('lift', 'the initial ascent of a rocket from its launching pad'),\n",
+ " ('stand',\n",
+ " 'the finish of a contest in which the score is tied and the winner is undecided'),\n",
+ " ('knock', 'an unauthorized copy or imitation'),\n",
+ " ('fall', 'a noticeable deterioration in performance or quality')]},\n",
+ " {'answer': 'out',\n",
+ " 'hint': '_ out',\n",
+ " 'clues': [('check', 'the act of inspecting or verifying'),\n",
+ " ('buy',\n",
+ " 'acquisition of a company by purchasing a controlling percentage of its stock'),\n",
+ " ('cut',\n",
+ " 'a switch that interrupts an electric circuit in the event of an overload'),\n",
+ " ('put', 'an out resulting from a fielding play (not a strikeout)'),\n",
+ " ('wash',\n",
+ " 'the channel or break produced by erosion of relatively soft soil by water'),\n",
+ " ('take',\n",
+ " 'prepared food that is intended to be eaten off of the premises'),\n",
+ " ('hold',\n",
+ " 'a negotiator who hopes to gain concessions by refusing to come to terms'),\n",
+ " ('blow', 'an easy victory'),\n",
+ " ('fade', 'a slow or gradual disappearance'),\n",
+ " ('lay', 'a plan or design of something that is laid out'),\n",
+ " ('break', 'an escape from jail'),\n",
+ " ('walk', 'a strike in which the workers walk out'),\n",
+ " ('work',\n",
+ " 'the activity of exerting your muscles in various ways to keep fit'),\n",
+ " ('turn', 'the group that gathers together for a particular occasion'),\n",
+ " ('knock', 'a very attractive or seductive looking woman'),\n",
+ " ('close', 'a sale intended to dispose of all remaining stock'),\n",
+ " ('black', 'a suspension of radio or tv broadcasting'),\n",
+ " ('strike', 'an out resulting from the batter getting three strikes'),\n",
+ " ('fall',\n",
+ " 'the radioactive particles that settle to the ground after a nuclear explosion'),\n",
+ " ('drop', 'someone who quits school before graduation'),\n",
+ " ('print', 'the output of a computer in printed form'),\n",
+ " ('look', 'a person employed to keep watch for some anticipated event'),\n",
+ " ('shoot',\n",
+ " 'a fight involving shooting small arms with the intent to kill or frighten'),\n",
+ " ('hide', 'a hiding place; usually a remote place used by outlaws'),\n",
+ " ('cook', 'an informal meal cooked and eaten outdoors'),\n",
+ " ('shake',\n",
+ " 'an economic condition that results in the elimination of marginally financed participants in an industry'),\n",
+ " ('shut', 'a defeat in a game where one side fails to score'),\n",
+ " ('white',\n",
+ " 'an arctic atmospheric condition with clouds over snow produce a uniform whiteness and objects are difficult to see; occurs when the light reflected off the snow equals the light coming through the clouds'),\n",
+ " ('hand',\n",
+ " 'an announcement distributed to members of the press in order to supplement or replace an oral presentation'),\n",
+ " ('hang', 'a frequently visited place'),\n",
+ " ('sell', 'an act of betrayal'),\n",
+ " ('fold', 'an oversize page that is folded in to a book or magazine'),\n",
+ " ('dug',\n",
+ " 'either of two low shelters on either side of a baseball diamond where the players and coaches sit during the game'),\n",
+ " ('lock',\n",
+ " \"a management action resisting employee's demands; employees are barred from entering the workplace until they agree to terms\"),\n",
+ " ('try', 'trying something to find out about it')]},\n",
+ " {'answer': 'over',\n",
+ " 'hint': '_ over',\n",
+ " 'clues': [('change', 'an event that results in a transformation'),\n",
+ " ('lay', 'a brief stay in the course of a journey'),\n",
+ " ('make',\n",
+ " \"an overall beauty treatment (involving a person's hair style and cosmetics and clothing) intended to change or improve a person's appearance\"),\n",
+ " ('walk', 'backbends combined with handstands'),\n",
+ " ('cross',\n",
+ " 'the interchange of sections between pairing homologous chromosomes during the prophase of meiosis'),\n",
+ " ('push', 'someone who is easily taken advantage of'),\n",
+ " ('stop', 'a stopping place on a journey'),\n",
+ " ('pull', 'a sweater that is put on by pulling it over the head'),\n",
+ " ('left',\n",
+ " 'a small part or portion that remains after the main part no longer exists'),\n",
+ " ('fly',\n",
+ " 'bridge formed by the upper level of a crossing of two highways at different levels'),\n",
+ " ('pop',\n",
+ " 'light hollow muffin made of a puff batter (individual Yorkshire pudding) baked in a deep muffin cup'),\n",
+ " ('roll',\n",
+ " 'the act of changing the institution that invests your pension plan without incurring a tax penalty'),\n",
+ " ('sleep',\n",
+ " 'an occasion of spending a night away from home or having a guest spend the night in your home (especially as a party for children)'),\n",
+ " ('spill', '(economics) any indirect effect of public expenditure'),\n",
+ " ('hand', 'act of relinquishing property or authority etc'),\n",
+ " ('hang',\n",
+ " 'disagreeable aftereffects from the use of drugs (especially alcohol)'),\n",
+ " ('turn',\n",
+ " 'the ratio of the number of workers that had to be replaced in a given time period to the average number of workers'),\n",
+ " ('hold', 'an official who remains in office after his term'),\n",
+ " ('take',\n",
+ " 'a sudden and decisive change of government illegally or by force')]},\n",
+ " {'answer': 'pad',\n",
+ " 'hint': '_ pad',\n",
+ " 'clues': [('key',\n",
+ " 'a keyboard that is a data input device for computers; arrangement of keys is modelled after the typewriter keyboard'),\n",
+ " ('launch', 'a platform from which rockets or space craft are launched'),\n",
+ " ('note', 'a pad of paper for keeping notes'),\n",
+ " ('scratch',\n",
+ " '(computer science) a high-speed internal memory used for temporary storage of preliminary information')]},\n",
+ " {'answer': 'pan',\n",
+ " 'hint': '_ pan',\n",
+ " 'clues': [('bed',\n",
+ " 'a shallow vessel used by a bedridden patient for defecation and urination'),\n",
+ " ('dust', 'the quantity that a dustpan will hold'),\n",
+ " ('dish', 'large pan for washing dishes'),\n",
+ " ('sauce', 'a deep pan with a handle; used for stewing or boiling'),\n",
+ " ('skid',\n",
+ " 'a paved surface on which cars can be made to skid so that drivers can practice controlling them')]},\n",
+ " {'answer': 'paper',\n",
+ " 'hint': '_ paper',\n",
+ " 'clues': [('note',\n",
+ " 'writing paper intended for writing short notes or letters'),\n",
+ " ('wall', 'a decorative paper for the walls of rooms'),\n",
+ " ('news',\n",
+ " 'a daily or weekly publication on folded sheets; contains news and articles and advertisements'),\n",
+ " ('sand', 'stiff paper coated with powdered emery or sand'),\n",
+ " ('fly',\n",
+ " 'paper that is poisoned or coated with a sticky substance to kill flies')]},\n",
+ " {'answer': 'pence',\n",
+ " 'hint': '_ pence',\n",
+ " 'clues': [('eight', 'a coin worth eight pennies'),\n",
+ " ('four', 'a former English silver coin worth four pennies'),\n",
+ " ('two',\n",
+ " 'a former United Kingdom silver coin; United Kingdom bronze decimal coin worth two pennies'),\n",
+ " ('nine', 'a coin worth nine pennies'),\n",
+ " ('six',\n",
+ " 'a small coin of the United Kingdom worth six pennies; not minted since 1970'),\n",
+ " ('three',\n",
+ " 'former cupronickel coin of the United Kingdom equal to three pennies')]},\n",
+ " {'answer': 'person',\n",
+ " 'hint': '_ person',\n",
+ " 'clues': [('anchor',\n",
+ " 'a television reporter who coordinates a broadcast to which several correspondents contribute'),\n",
+ " ('chair', 'the officer who presides at the meetings of an organization'),\n",
+ " ('lay', 'someone who is not a clergyman or a professional person'),\n",
+ " ('spokes', \"an advocate who represents someone else's policy or purpose\"),\n",
+ " ('business',\n",
+ " 'a capitalist who engages in industrial commercial enterprise'),\n",
+ " ('sales',\n",
+ " 'a person employed to represent a business and to sell its merchandise (as to customers in a store or to customers who are visited)')]},\n",
+ " {'answer': 'phone',\n",
+ " 'hint': '_ phone',\n",
+ " 'clues': [('cell',\n",
+ " 'a hand-held mobile radiotelephone for use in an area divided into small sections, each with its own short-range transmitter/receiver'),\n",
+ " ('head',\n",
+ " 'electro-acoustic transducer for converting electric signals into sounds; it is held over or inserted into the ear'),\n",
+ " ('ear',\n",
+ " 'electro-acoustic transducer for converting electric signals into sounds; it is held over or inserted into the ear'),\n",
+ " ('speaker',\n",
+ " 'a telephone with a microphone and loudspeaker; can be used without picking up a handset; several people can participate in a call at the same time')]},\n",
+ " {'answer': 'piece',\n",
+ " 'hint': '_ piece',\n",
+ " 'clues': [('altar',\n",
+ " 'a painted or carved screen placed above and behind an altar or communion table'),\n",
+ " ('show',\n",
+ " 'the outstanding item (the prize piece or main exhibit) in a collection'),\n",
+ " ('mantel', 'shelf that projects from wall above fireplace'),\n",
+ " ('eye',\n",
+ " 'combination of lenses at the viewing end of optical instruments'),\n",
+ " ('cod',\n",
+ " \"(15th-16th century) a flap for the crotch of men's tight-fitting breeches\"),\n",
+ " ('time', 'a measuring instrument or device for keeping time'),\n",
+ " ('mouth', 'a part that goes over or into the mouth of a person'),\n",
+ " ('hair',\n",
+ " 'a covering or bunch of human or artificial hair used for disguise or adornment'),\n",
+ " ('tail', 'appendage added to extend the length of something'),\n",
+ " ('center', 'the central or most important feature'),\n",
+ " ('head',\n",
+ " \"the band that is the part of a bridle that fits around a horse's head\"),\n",
+ " ('master', 'the most outstanding work of a creative artist or craftsman'),\n",
+ " ('work', 'work consisting of a piece of metal being machined'),\n",
+ " ('ear',\n",
+ " 'electro-acoustic transducer for converting electric signals into sounds; it is held over or inserted into the ear')]},\n",
+ " {'answer': 'pin',\n",
+ " 'hint': '_ pin',\n",
+ " 'clues': [('ten', 'one of the bottle-shaped pins used in bowling'),\n",
+ " ('stick', 'a decorative pin that is worn in a necktie'),\n",
+ " ('nine',\n",
+ " 'a bowling pin of the type used in playing ninepins or (in England) skittles'),\n",
+ " ('hat', 'a long sturdy pin used by women to secure a hat to their hair'),\n",
+ " ('hair', \"a double pronged pin used to hold women's hair in place\"),\n",
+ " ('push',\n",
+ " 'a tack for attaching papers to a bulletin board or drawing board'),\n",
+ " ('king', 'the most important person in a group or undertaking'),\n",
+ " ('tie', 'a pin used to hold the tie in place'),\n",
+ " ('head',\n",
+ " 'the front bowling pin in the triangular arrangement of ten pins'),\n",
+ " ('clothes',\n",
+ " 'wood or plastic fastener; for holding clothes on a clothesline')]},\n",
+ " {'answer': 'pipe',\n",
+ " 'hint': '_ pipe',\n",
+ " 'clues': [('blow',\n",
+ " 'a tube that directs air or gas into a flame to concentrate heat'),\n",
+ " ('bag',\n",
+ " 'a tubular wind instrument; the player blows air into a bag and squeezes it out through the drone'),\n",
+ " ('hose', 'a flexible pipe for conveying a liquid or gas'),\n",
+ " ('tail', 'a pipe carrying fumes from the muffler to the rear of a car'),\n",
+ " ('drain', 'a pipe through which liquid is carried away'),\n",
+ " ('wind',\n",
+ " 'membranous tube with cartilaginous rings that conveys inhaled air from the larynx to the bronchi'),\n",
+ " ('stand', 'a vertical pipe'),\n",
+ " ('stove',\n",
+ " 'chimney consisting of a metal pipe of large diameter that is used to connect a stove to a flue'),\n",
+ " ('horn', 'a British solo dance performed by sailors')]},\n",
+ " {'answer': 'pit',\n",
+ " 'hint': '_ pit',\n",
+ " 'clues': [('flea', 'an old shabby movie theater'),\n",
+ " ('cock', 'compartment where the pilot sits while flying the aircraft'),\n",
+ " ('arm', 'the hollow under the arm where it is joined to the shoulder'),\n",
+ " ('sand', 'a large pit in sandy ground from which sand is dug')]},\n",
+ " {'answer': 'place',\n",
+ " 'hint': '_ place',\n",
+ " 'clues': [('birth', 'the place where someone was born'),\n",
+ " ('market',\n",
+ " 'the world of commercial activity where goods and services are bought and sold'),\n",
+ " ('common', 'a trite or obvious remark'),\n",
+ " ('show',\n",
+ " 'a place that is frequently exhibited and visited for its historical interest or natural beauty'),\n",
+ " ('fire',\n",
+ " 'an open recess in a wall at the base of a chimney where a fire can be built'),\n",
+ " ('work', 'a place where work is done')]},\n",
+ " {'answer': 'plane',\n",
+ " 'hint': '_ plane',\n",
+ " 'clues': [('war', 'an aircraft designed and used for combat'),\n",
+ " ('tail',\n",
+ " \"the horizontal airfoil of an aircraft's tail assembly that is fixed and to which the elevator is hinged\"),\n",
+ " ('air',\n",
+ " 'an aircraft that has a fixed wing and is powered by propellers or jets'),\n",
+ " ('sail',\n",
+ " 'aircraft supported only by the dynamic action of air against its surfaces'),\n",
+ " ('sea', 'an airplane that can land on or take off from water')]},\n",
+ " {'answer': 'plate',\n",
+ " 'hint': '_ plate',\n",
+ " 'clues': [('breast',\n",
+ " 'armor plate that protects the chest; the front part of a cuirass'),\n",
+ " ('name', 'a plate bearing a name'),\n",
+ " ('book', 'a label identifying the owner of a book in which it is pasted'),\n",
+ " ('face',\n",
+ " 'a protective covering for the front of a machine or device (as a door lock or computer component)'),\n",
+ " ('copper',\n",
+ " 'a graceful style of handwriting based on the writing used on copperplate engravings'),\n",
+ " ('foot',\n",
+ " 'the platform in the cab of a locomotive on which the engineer stands to operate the controls'),\n",
+ " ('door',\n",
+ " 'a nameplate fastened to a door; indicates the person who works or lives there'),\n",
+ " ('hot',\n",
+ " 'a portable electric appliance for heating or cooking or keeping food warm'),\n",
+ " ('tin',\n",
+ " 'a thin sheet of metal (iron or steel) coated with tin to prevent rusting; used especially for cans, pots, and tins'),\n",
+ " ('boiler',\n",
+ " 'standard formulations uniformly found in certain types of legal documents or news stories'),\n",
+ " ('number',\n",
+ " \"a plate mounted on the front and back of car and bearing the car's registration number\")]},\n",
+ " {'answer': 'point',\n",
+ " 'hint': '_ point',\n",
+ " 'clues': [('stand', 'a mental position from which things are viewed'),\n",
+ " ('blue',\n",
+ " 'oysters originally from Long Island Sound but now from anywhere along the northeastern seacoast; usually eaten raw'),\n",
+ " ('check',\n",
+ " 'a place (as at a frontier) where travellers are stopped for inspection and clearance'),\n",
+ " ('pin', 'a very brief moment'),\n",
+ " ('gun', \"the gun muzzle's direction\"),\n",
+ " ('end', 'a place where something ends or is complete'),\n",
+ " ('needle',\n",
+ " 'lace worked with a needle in a buttonhole stitch on a paper pattern'),\n",
+ " ('ball',\n",
+ " 'a pen that has a small metal ball as the point of transfer of ink to paper'),\n",
+ " ('view', 'a mental position from which things are viewed'),\n",
+ " ('mid',\n",
+ " 'a point equidistant from the ends of a line or the extremities of a figure')]},\n",
+ " {'answer': 'pole',\n",
+ " 'hint': '_ pole',\n",
+ " 'clues': [('ridge',\n",
+ " 'a beam laid along the edge where two sloping sides of a roof meet at the top; provides an attachment for the upper ends of rafters'),\n",
+ " ('flag',\n",
+ " 'surveying instrument consisting of a straight rod painted in bands of alternate red and white each one foot wide; used for sightings by surveyors'),\n",
+ " ('may',\n",
+ " 'a vertical pole or post decorated with streamers that can be held by dancers celebrating May Day'),\n",
+ " ('tad', 'a larval frog or toad')]},\n",
+ " {'answer': 'post',\n",
+ " 'hint': '_ post',\n",
+ " 'clues': [('bed',\n",
+ " 'any of 4 vertical supports at the corners of a bedstead'),\n",
+ " ('mile', 'stone post at side of a road to show distances'),\n",
+ " ('gate', 'either of two posts that bound a gate'),\n",
+ " ('guide',\n",
+ " 'a rule or principle that provides guidance to appropriate behavior'),\n",
+ " ('door', 'a jamb for a door'),\n",
+ " ('lamp',\n",
+ " 'a metal post supporting an outdoor lamp (such as a streetlight)'),\n",
+ " ('goal',\n",
+ " 'one of a pair of posts (usually joined by a crossbar) that are set up as a goal at each end of a playing field'),\n",
+ " ('sign',\n",
+ " 'a post bearing a sign that gives directions or shows the way')]},\n",
+ " {'answer': 'pot',\n",
+ " 'hint': '_ pot',\n",
+ " 'clues': [('crack', 'a whimsically eccentric person'),\n",
+ " ('tea', 'pot for brewing tea; usually has a spout and handle'),\n",
+ " ('flower', 'a container in which plants are cultivated'),\n",
+ " ('fuss', 'thinks about unfortunate things that might happen'),\n",
+ " ('chamber', 'a receptacle for urination or defecation in the bedroom'),\n",
+ " ('honey',\n",
+ " 'South African shrub whose flowers when open are cup-shaped resembling artichokes'),\n",
+ " ('jack', 'the cumulative amount involved in a game (such as poker)'),\n",
+ " ('sex', 'a young woman who is thought to have sex appeal'),\n",
+ " ('stock', 'a pot used for preparing soup stock'),\n",
+ " ('hot', 'a stew of meat and potatoes cooked in a tightly covered pot'),\n",
+ " ('coffee', 'tall pot in which coffee is brewed')]},\n",
+ " {'answer': 'power',\n",
+ " 'hint': '_ power',\n",
+ " 'clues': [('brain', 'mental ability'),\n",
+ " ('will', 'the trait of resolutely controlling your own behavior'),\n",
+ " ('candle', 'luminous intensity measured in candelas'),\n",
+ " ('horse', 'a unit of power equal to 746 watts'),\n",
+ " ('fire',\n",
+ " '(military) the relative capacity for delivering fire on a target')]},\n",
+ " {'answer': 'print',\n",
+ " 'hint': '_ print',\n",
+ " 'clues': [('foot', 'a mark of a foot or shoe on a surface'),\n",
+ " ('finger',\n",
+ " 'a print made by an impression of the ridges in the skin of a finger; often used for biometric identification in criminal investigations'),\n",
+ " ('thumb',\n",
+ " 'fingerprint made by the thumb (especially by the pad of the thumb)'),\n",
+ " ('blue', 'something intended as a guide for making something else'),\n",
+ " ('off',\n",
+ " 'a separately printed article that originally appeared in a larger publication'),\n",
+ " ('news',\n",
+ " 'cheap paper made from wood pulp and used for printing newspapers'),\n",
+ " ('over', 'something added by overprinting')]},\n",
+ " {'answer': 'rest',\n",
+ " 'hint': '_ rest',\n",
+ " 'clues': [('back', 'a support that you can lean against while sitting'),\n",
+ " ('arm', 'a support for the arm'),\n",
+ " ('foot', 'a low seat or a stool to rest the feet of a seated person'),\n",
+ " ('head',\n",
+ " \"a cushion attached to the top of the back of an automobile's seat to prevent whiplash\")]},\n",
+ " {'answer': 'roll',\n",
+ " 'hint': '_ roll',\n",
+ " 'clues': [('jelly',\n",
+ " 'thin sheet of sponge cake spread with jelly and then rolled up to make a cylindrical cake'),\n",
+ " ('pay', 'a list of employees and their salaries'),\n",
+ " ('bank',\n",
+ " 'a roll of currency notes (often taken as the resources of a person or business etc.)'),\n",
+ " ('bed', 'bedding rolled up for carrying')]},\n",
+ " {'answer': 'room',\n",
+ " 'hint': '_ room',\n",
+ " 'clues': [('work', 'room where work is done'),\n",
+ " ('store', 'a room in which things are stored'),\n",
+ " ('green',\n",
+ " 'a backstage room in a theater where performers rest or have visitors'),\n",
+ " ('bed', 'a room used primarily for sleeping'),\n",
+ " ('school', 'a room in a school where lessons take place'),\n",
+ " ('board',\n",
+ " 'a room where a committee meets (such as the board of directors of a company)'),\n",
+ " ('sick', 'a room to which a sick person is confined'),\n",
+ " ('class', 'a room in a school where lessons take place'),\n",
+ " ('ball', 'large room used mainly for dancing'),\n",
+ " ('bar',\n",
+ " 'a room or establishment where alcoholic drinks are served over a counter'),\n",
+ " ('wash', 'a lavatory (particularly a lavatory in a public place)'),\n",
+ " ('lunch', 'a restaurant (in a facility) where lunch can be purchased'),\n",
+ " ('sales', 'an area where merchandise (such as cars) can be displayed'),\n",
+ " ('club', 'a room used for the activities of a club'),\n",
+ " ('home',\n",
+ " 'a classroom in which all students in a particular grade (or in a division of a grade) meet at certain times under the supervision of a teacher who takes attendance and does other administrative business'),\n",
+ " ('tap',\n",
+ " 'a room or establishment where alcoholic drinks are served over a counter'),\n",
+ " ('bath',\n",
+ " 'a room (as in a residence) containing a bathtub or shower and usually a washbasin and toilet'),\n",
+ " ('head',\n",
+ " 'vertical space available to allow easy passage under something'),\n",
+ " ('ward',\n",
+ " 'military quarters for dining and recreation for officers of a warship (except the captain)'),\n",
+ " ('back',\n",
+ " 'the meeting place of a group of leaders who make their decisions via private negotiations'),\n",
+ " ('play',\n",
+ " \"a recreation room for noisy activities (parties or children's play etc)\"),\n",
+ " ('tea', 'a restaurant where tea and light meals are available'),\n",
+ " ('news',\n",
+ " 'the staff of a newspaper or the news department of a periodical'),\n",
+ " ('house', 'space for accommodation in a house'),\n",
+ " ('stock', 'storeroom for storing goods and supplies used in a business'),\n",
+ " ('pool', 'a room with pool tables where pool is played'),\n",
+ " ('dark', 'a room in which photographs are developed'),\n",
+ " ('guard', 'a cell in which soldiers who are prisoners are confined'),\n",
+ " ('state', 'a guest cabin'),\n",
+ " ('show', 'an area where merchandise (such as cars) can be displayed'),\n",
+ " ('rest', 'a toilet that is available to the public'),\n",
+ " ('coat', 'a room where coats and other articles can be left temporarily'),\n",
+ " ('cloak', 'a private lounge off of a legislative chamber'),\n",
+ " ('court', 'a room in which a lawcourt sits'),\n",
+ " ('check', 'a room where baggage or parcels are checked'),\n",
+ " ('guest', 'a bedroom that is kept for the use of guests'),\n",
+ " ('strong',\n",
+ " 'a burglarproof and fireproof room in which valuables are kept')]},\n",
+ " {'answer': 'saw',\n",
+ " 'hint': '_ saw',\n",
+ " 'clues': [('rip', 'a handsaw for cutting with the grain of the wood'),\n",
+ " ('jig',\n",
+ " 'a portable power saw with a reciprocating blade; can be used with a variety of blades depending on the application and kind of cut; generally have a plate that rides on the surface that is being cut'),\n",
+ " ('chain', 'portable power saw; teeth linked to form an endless chain'),\n",
+ " ('see',\n",
+ " 'a plaything consisting of a board balanced on a fulcrum; the board is ridden up and down by children at either end'),\n",
+ " ('hack', 'saw used with one hand for cutting metal'),\n",
+ " ('hand', 'a saw used with one hand for cutting wood'),\n",
+ " ('buck',\n",
+ " 'a saw that is set in a frame in the shape of an H; used with both hands to cut wood that is held in a sawbuck'),\n",
+ " ('fret',\n",
+ " 'fine-toothed power saw with a narrow blade; used to cut curved outlines'),\n",
+ " ('whip',\n",
+ " 'a saw with handles at both ends; intended for use by two people')]},\n",
+ " {'answer': 'screen',\n",
+ " 'hint': '_ screen',\n",
+ " 'clues': [('wind',\n",
+ " 'transparent screen (as of glass) to protect occupants of a vehicle'),\n",
+ " ('sun',\n",
+ " 'a cream spread on the skin; contains a chemical (as PABA) to filter out ultraviolet light and so protect from sunburn'),\n",
+ " ('silk',\n",
+ " 'a print made using a stencil process in which an image or design is superimposed on a very fine mesh screen and printing ink is squeegeed onto the printing surface through the area of the screen that is not covered by the stencil'),\n",
+ " ('smoke',\n",
+ " '(military) screen consisting of a cloud of smoke that obscures movements'),\n",
+ " ('touch',\n",
+ " 'a computer display that enables the user to interact with the computer by touching areas on the screen')]},\n",
+ " {'answer': 'seed',\n",
+ " 'hint': '_ seed',\n",
+ " 'clues': [('rape', 'seed of rape plants; source of an edible oil'),\n",
+ " ('bird', 'food given to birds; usually mixed seeds'),\n",
+ " ('cotton', 'seed of cotton plants; source of cottonseed oil'),\n",
+ " ('oil', 'any of several seeds that yield oil'),\n",
+ " ('hay',\n",
+ " 'a person who is not very intelligent or interested in culture')]},\n",
+ " {'answer': 'set',\n",
+ " 'hint': '_ set',\n",
+ " 'clues': [('head', 'receiver consisting of a pair of headphones'),\n",
+ " ('mind',\n",
+ " 'a habitual or characteristic mental attitude that determines how you will interpret and respond to situations'),\n",
+ " ('off', 'the time at which something is supposed to begin'),\n",
+ " ('sun',\n",
+ " 'the time in the evening at which the sun begins to fall below the horizon'),\n",
+ " ('hand',\n",
+ " 'telephone set with the mouthpiece and earpiece mounted on a single handle')]},\n",
+ " {'answer': 'shed',\n",
+ " 'hint': '_ shed',\n",
+ " 'clues': [('cow', 'a barn for cows'),\n",
+ " ('water', 'a ridge of land that separates two adjacent river systems'),\n",
+ " ('wood', 'a shed for storing firewood or garden tools'),\n",
+ " ('blood', 'the shedding of blood resulting in murder')]},\n",
+ " {'answer': 'sheet',\n",
+ " 'hint': '_ sheet',\n",
+ " 'clues': [('work',\n",
+ " 'a sheet of paper with multiple columns; used by an accountant to assemble figures for financial statements'),\n",
+ " ('ground',\n",
+ " 'a waterproofed piece of cloth spread on the ground (as under a tent) to protect from moisture'),\n",
+ " ('spread',\n",
+ " 'a screen-oriented interactive program enabling a user to lay out financial data on the screen'),\n",
+ " ('broad',\n",
+ " 'an advertisement (usually printed on a page or in a leaflet) intended for wide distribution')]},\n",
+ " {'answer': 'shell',\n",
+ " 'hint': '_ shell',\n",
+ " 'clues': [('sea', 'the shell of a marine organism'),\n",
+ " ('cockle', 'a small light flimsy boat'),\n",
+ " ('tortoise', 'the mottled horny substance of the shell of some turtles'),\n",
+ " ('egg', \"the exterior covering of a bird's egg\"),\n",
+ " ('nut', 'the shell around the kernel of a nut'),\n",
+ " ('bomb', 'an entertainer who has a sensational effect')]},\n",
+ " {'answer': 'shift',\n",
+ " 'hint': '_ shift',\n",
+ " 'clues': [('gear',\n",
+ " 'a mechanical device for engaging and disengaging gears'),\n",
+ " ('down',\n",
+ " 'a change from a financially rewarding but stressful career to a less well paid but more fulfilling one'),\n",
+ " ('make', 'something contrived to meet an urgent need or emergency'),\n",
+ " ('red',\n",
+ " '(astronomy) a shift in the spectra of very distant galaxies toward longer wavelengths (toward the red end of the spectrum); generally interpreted as evidence that the universe is expanding')]},\n",
+ " {'answer': 'ship',\n",
+ " 'hint': '_ ship',\n",
+ " 'clues': [('troop', 'ship for transporting troops'),\n",
+ " ('showman',\n",
+ " 'the ability to present something (especially theatrical shows) in an attractive manner'),\n",
+ " ('flag', 'the chief one of a related group'),\n",
+ " ('swordsman', 'skill in fencing'),\n",
+ " ('battle', 'large and heavily armoured warship'),\n",
+ " ('light',\n",
+ " 'a ship equipped like a lighthouse and anchored where a permanent lighthouse would be impracticable'),\n",
+ " ('space',\n",
+ " 'a spacecraft designed to carry a crew into interstellar space (especially in science fiction)'),\n",
+ " ('chairman', 'the position of chairman'),\n",
+ " ('war', 'a government ship that is available for waging war'),\n",
+ " ('horseman', 'skill in handling and riding horses'),\n",
+ " ('steam', 'a ship powered by one or more steam engines'),\n",
+ " ('air', 'a steerable self-propelled aircraft')]},\n",
+ " {'answer': 'shoe',\n",
+ " 'hint': '_ shoe',\n",
+ " 'clues': [('gum', 'someone who is a detective'),\n",
+ " ('horse',\n",
+ " 'game equipment consisting of an open ring of iron used in playing horseshoes'),\n",
+ " ('snow',\n",
+ " 'a device to help you walk on deep snow; a lightweight frame shaped like a racquet is strengthened with cross pieces and contains a network of thongs; one is worn on each foot'),\n",
+ " ('over',\n",
+ " 'footwear that protects your shoes from water or snow or cold')]},\n",
+ " {'answer': 'shop',\n",
+ " 'hint': '_ shop',\n",
+ " 'clues': [('barber', 'a shop where men can get their hair cut'),\n",
+ " ('book', 'a shop where books are sold'),\n",
+ " ('pawn',\n",
+ " 'a shop where loans are made with personal property as security'),\n",
+ " ('bake',\n",
+ " 'a workplace where baked goods (breads and cakes and pastries) are produced or sold'),\n",
+ " ('toy', 'shop where toys are sold'),\n",
+ " ('work', 'small workplace where handcrafts or manufacturing are done'),\n",
+ " ('sweat',\n",
+ " 'factory where workers do piecework for poor pay and are prevented from forming unions; common in the clothing industry'),\n",
+ " ('tea', 'a restaurant where tea and light meals are available')]},\n",
+ " {'answer': 'shot',\n",
+ " 'hint': '_ shot',\n",
+ " 'clues': [('hot', 'someone who is dazzlingly skilled in any field'),\n",
+ " ('buck', 'small lead shot for shotgun shells'),\n",
+ " ('sling',\n",
+ " 'a plaything consisting of a Y-shaped stick with elastic between the arms; used to propel small stones'),\n",
+ " ('mug',\n",
+ " \"a photograph of someone's face (especially one made for police records)\"),\n",
+ " ('pot', 'a shot taken at an easy or casual target (as by a pothunter)'),\n",
+ " ('grape',\n",
+ " 'a cluster of small projectiles fired together from a cannon to produce a hail of shot'),\n",
+ " ('ear', 'the range within which a voice can be heard'),\n",
+ " ('gun', 'the act of shooting a gun'),\n",
+ " ('snap',\n",
+ " 'an informal photograph; usually made with a small hand-held camera')]},\n",
+ " {'answer': 'sickness',\n",
+ " 'hint': '_ sickness',\n",
+ " 'clues': [('home', 'a longing to return home'),\n",
+ " ('air',\n",
+ " 'motion sickness experienced while traveling by air (especially during turbulence)'),\n",
+ " ('heart', 'feeling downcast and disheartened and hopeless'),\n",
+ " ('sea', 'motion sickness experienced while traveling on water')]},\n",
+ " {'answer': 'side',\n",
+ " 'hint': '_ side',\n",
+ " 'clues': [('lake', 'the shore of a lake'),\n",
+ " ('curb', 'the side of a sidewalk that is bordered by a curb'),\n",
+ " ('near', 'the side of a vehicle nearest the kerb'),\n",
+ " ('fire',\n",
+ " 'an area near a fireplace (usually paved and extending out into a room)'),\n",
+ " ('under', 'the lower side of anything'),\n",
+ " ('top',\n",
+ " \"(usually plural) weather deck; the part of a ship's hull that is above the waterline\"),\n",
+ " ('sea', 'the shore of a sea or ocean regarded as a resort'),\n",
+ " ('dock', 'the region adjacent to a boat dock'),\n",
+ " ('way', 'edge of a way or road or path'),\n",
+ " ('country', 'rural regions'),\n",
+ " ('river', 'the bank of a river'),\n",
+ " ('back', 'the side of an object that is opposite its front'),\n",
+ " ('hill', 'the side or slope of a hill'),\n",
+ " ('bed',\n",
+ " 'space by the side of a bed (especially the bed of a sick or dying person)'),\n",
+ " ('road', 'edge of a way or road or path'),\n",
+ " ('down', 'a negative aspect of something that is generally positive'),\n",
+ " ('ring',\n",
+ " 'first row of seating; has an unobstructed view of a boxing or wrestling ring'),\n",
+ " ('mountain', 'the side or slope of a mountain'),\n",
+ " ('off',\n",
+ " '(sport) the mistake of occupying an illegal position on the playing field (in football, soccer, ice hockey, field hockey, etc.)'),\n",
+ " ('water', 'land bordering a body of water')]},\n",
+ " {'answer': 'skin',\n",
+ " 'hint': '_ skin',\n",
+ " 'clues': [('sheep',\n",
+ " 'tanned skin of a sheep with the fleece left on; used for clothing'),\n",
+ " ('doe', 'soft leather from deerskin or lambskin'),\n",
+ " ('oil',\n",
+ " 'a macintosh made from cotton fabric treated with oil and pigment to make it waterproof'),\n",
+ " ('buck', 'horse of a light yellowish dun color with dark mane and tail'),\n",
+ " ('goat', 'the hide of a goat'),\n",
+ " ('coon', 'a raccoon cap with the tail hanging down the back'),\n",
+ " ('seal', 'the pelt or fur (especially the underfur) of a seal'),\n",
+ " ('deer', 'leather from the hide of a deer'),\n",
+ " ('onion',\n",
+ " 'a thin strong lightweight translucent paper used especially for making carbon copies'),\n",
+ " ('kid', 'soft smooth leather from the hide of a young goat'),\n",
+ " ('wine',\n",
+ " 'an animal skin (usually a goatskin) that forms a bag and is used to hold and dispense wine'),\n",
+ " ('lamb', 'the skin of a lamb with the wool still on'),\n",
+ " ('pig', 'leather from the skin of swine'),\n",
+ " ('calf', 'fine leather from the skin of a calf'),\n",
+ " ('bear', 'the pelt of a bear (sometimes used as a rug)'),\n",
+ " ('shark', 'a smooth crisp fabric'),\n",
+ " ('mole', 'a durable cotton fabric with a velvety nap')]},\n",
+ " {'answer': 'slip',\n",
+ " 'hint': '_ slip',\n",
+ " 'clues': [('land',\n",
+ " 'a slide of a large mass of dirt and rock down a mountain or cliff'),\n",
+ " ('gym',\n",
+ " 'a sleeveless tunic worn by English girls as part of a school uniform'),\n",
+ " ('pay',\n",
+ " 'a slip of paper included with your pay that records how much money you have earned and how much tax or insurance etc. has been taken out'),\n",
+ " ('cow',\n",
+ " 'early spring flower common in British isles having fragrant yellow or sometimes purple flowers')]},\n",
+ " {'answer': 'smith',\n",
+ " 'hint': '_ smith',\n",
+ " 'clues': [('gold',\n",
+ " 'an artisan who makes jewelry and other objects out of gold'),\n",
+ " ('lock', 'someone who makes or repairs locks'),\n",
+ " ('tin', 'someone who makes or repairs tinware'),\n",
+ " ('word', 'a fluent and prolific writer'),\n",
+ " ('silver', 'someone who makes or repairs articles of silver'),\n",
+ " ('black', 'a smith who forges and shapes iron with a hammer and anvil'),\n",
+ " ('gun', 'someone who makes or repairs guns')]},\n",
+ " {'answer': 'song',\n",
+ " 'hint': '_ song',\n",
+ " 'clues': [('bird', 'the characteristic sound produced by a bird'),\n",
+ " ('plain', 'a liturgical chant of the Roman Catholic Church'),\n",
+ " ('sing', 'a regular and monotonous rising and falling intonation'),\n",
+ " ('even',\n",
+ " 'the sixth of the seven canonical hours of the divine office; early evening; now often made a public service on Sundays'),\n",
+ " ('folk',\n",
+ " 'a song that is traditionally sung by the common people of a region and forms part of their culture')]},\n",
+ " {'answer': 'space',\n",
+ " 'hint': '_ space',\n",
+ " 'clues': [('back', 'the typewriter key used for back spacing'),\n",
+ " ('crawl',\n",
+ " 'low space beneath a floor of a building; gives workers access to wiring or plumbing'),\n",
+ " ('air', 'the space in the atmosphere immediately above the earth'),\n",
+ " ('work', 'space allocated for your work (as in an office)')]},\n",
+ " {'answer': 'spring',\n",
+ " 'hint': '_ spring',\n",
+ " 'clues': [('hand',\n",
+ " 'an acrobatic feat in which a person goes from a standing position to a handstand and back again'),\n",
+ " ('well', 'the source of water for a well'),\n",
+ " ('hair',\n",
+ " 'a fine spiral spring that regulates the movement of the balance wheel in a timepiece'),\n",
+ " ('off', 'the immediate descendants of a person'),\n",
+ " ('main',\n",
+ " 'the most important spring in a mechanical device (especially a clock or watch); as it uncoils it drives the mechanism')]},\n",
+ " {'answer': 'stand',\n",
+ " 'hint': '_ stand',\n",
+ " 'clues': [('hand',\n",
+ " 'the act of supporting yourself by your hands alone in an upside down position'),\n",
+ " ('kick',\n",
+ " 'a swiveling metal rod attached to a bicycle or motorcycle or other two-wheeled vehicle; the rod lies horizontally when not in use but can be kicked into a vertical position as a support to hold the vehicle upright when it is not being ridden'),\n",
+ " ('head',\n",
+ " 'an acrobatic feat in which a person balances on the head (usually with the help of the hands)'),\n",
+ " ('cab', 'a place where taxis park while awaiting customers'),\n",
+ " ('ink',\n",
+ " 'a small well holding writing ink into which a pen can be dipped'),\n",
+ " ('news', 'a stall where newspapers and other periodicals are sold'),\n",
+ " ('band', 'a platform where a (brass) band can play in the open air'),\n",
+ " ('grand', 'the audience at a stadium or racetrack'),\n",
+ " ('wash',\n",
+ " \"furniture consisting of a table or stand to hold a basin and pitcher of water for washing: `wash-hand stand' is a British term\")]},\n",
+ " {'answer': 'step',\n",
+ " 'hint': '_ step',\n",
+ " 'clues': [('quick', 'military march accompanying quick time'),\n",
+ " ('lock', 'a standard procedure that is followed mindlessly'),\n",
+ " ('foot', 'the sound of a step of someone walking'),\n",
+ " ('door',\n",
+ " 'the sill of a door; a horizontal piece of wood or stone that forms the bottom of a doorway and offers support when passing through a doorway'),\n",
+ " ('side', 'a step to one side (as in boxing or dancing)')]},\n",
+ " {'answer': 'stick',\n",
+ " 'hint': '_ stick',\n",
+ " 'clues': [('dip',\n",
+ " 'a graduated rod dipped into a container to indicate the fluid level'),\n",
+ " ('joy',\n",
+ " 'a lever used by a pilot to control the ailerons and elevators of an airplane'),\n",
+ " ('night', 'a short stout club used primarily by policemen'),\n",
+ " ('candle', 'a holder with sockets for candles'),\n",
+ " ('drum', 'the lower joint of the leg of a fowl'),\n",
+ " ('gear', 'a mechanical device for engaging and disengaging gears'),\n",
+ " ('yard', 'a measure or standard used for comparison'),\n",
+ " ('match', 'a short thin stick of wood used in making matches'),\n",
+ " ('chop',\n",
+ " 'one of a pair of slender sticks used as oriental tableware to eat food with'),\n",
+ " ('slap',\n",
+ " 'a boisterous comedy with chases and collisions and practical jokes'),\n",
+ " ('lip', 'makeup that is used to color the lips'),\n",
+ " ('broom', 'the handle of a broom')]},\n",
+ " {'answer': 'stock',\n",
+ " 'hint': '_ stock',\n",
+ " 'clues': [('feed',\n",
+ " 'the raw material that is required for some industrial process'),\n",
+ " ('blood', 'thoroughbred horses (collectively)'),\n",
+ " ('live', 'any animals kept for use or profit'),\n",
+ " ('head',\n",
+ " 'the stationary support in a machine or power tool that supports and drives a revolving part (as a chuck or the spindle on a lathe)'),\n",
+ " ('root',\n",
+ " 'a horizontal plant stem with shoots above and roots below serving as a reproductive structure'),\n",
+ " ('laughing', 'a victim of ridicule or pranks')]},\n",
+ " {'answer': 'stone',\n",
+ " 'hint': '_ stone',\n",
+ " 'clues': [('sand',\n",
+ " 'a sedimentary rock consisting of sand consolidated with some cement (clay or quartz etc.)'),\n",
+ " ('lime',\n",
+ " 'a sedimentary rock consisting mainly of calcium that was deposited by the remains of marine animals'),\n",
+ " ('blood', 'green chalcedony with red spots that resemble blood'),\n",
+ " ('gall', 'a calculus formed in the gall bladder or its ducts'),\n",
+ " ('whet', 'a flat stone for sharpening edged tools or knives'),\n",
+ " ('hail', 'small pellet of ice that falls during a hailstorm'),\n",
+ " ('tomb', 'a stone that is used to mark a grave'),\n",
+ " ('mile', 'stone post at side of a road to show distances'),\n",
+ " ('grind',\n",
+ " 'a revolving stone shaped like a disk; used to grind or sharpen or polish edge tools'),\n",
+ " ('head', 'the central building block at the top of an arch or vault'),\n",
+ " ('cap', 'a final touch; a crowning achievement; a culmination'),\n",
+ " ('gem', 'a crystalline rock that can be cut and polished for jewelry'),\n",
+ " ('brown', 'a reddish brown sandstone; used in buildings'),\n",
+ " ('soap',\n",
+ " 'a soft heavy compact variety of talc having a soapy feel; used to make hearths and tabletops and ornaments'),\n",
+ " ('moon',\n",
+ " 'a transparent or translucent gemstone with a pearly luster; some specimens are orthoclase feldspar and others are plagioclase feldspar'),\n",
+ " ('mill', '(figurative) something that hinders or handicaps'),\n",
+ " ('cobble',\n",
+ " 'rectangular paving stone with curved top; once used to make roads'),\n",
+ " ('lode',\n",
+ " 'a permanent magnet consisting of magnetite that possess polarity and has the power to attract as well as to be attracted magnetically'),\n",
+ " ('touch',\n",
+ " 'a basis for comparison; a reference point against which other things can be evaluated'),\n",
+ " ('grave', 'a stone that is used to mark a grave'),\n",
+ " ('flag',\n",
+ " 'stratified stone that splits into pieces suitable as paving stones'),\n",
+ " ('hearth', 'a stone that forms a hearth'),\n",
+ " ('key', 'a central cohesive source of support and stability'),\n",
+ " ('free',\n",
+ " 'fruit (especially peach) whose flesh does not adhere to the pit'),\n",
+ " ('curb', 'a paving stone forming part of a curb'),\n",
+ " ('corner',\n",
+ " 'the fundamental assumptions from which something is begun or developed or calculated or explained'),\n",
+ " ('silt', 'a fine-grained sandstone of consolidated silt')]},\n",
+ " {'answer': 'storm',\n",
+ " 'hint': '_ storm',\n",
+ " 'clues': [('brain',\n",
+ " 'the clear (and often sudden) understanding of a complex situation'),\n",
+ " ('thunder',\n",
+ " 'a storm resulting from strong rising air currents; heavy rain or hail along with thunder and lightning'),\n",
+ " ('hail', 'a storm during which hail falls'),\n",
+ " ('snow', 'a storm with widespread snowfall accompanied by strong winds'),\n",
+ " ('sand', 'a windstorm that lifts up clouds of dust or sand'),\n",
+ " ('fire',\n",
+ " 'a storm in which violent winds are drawn into the column of hot air rising over a severely bombed area'),\n",
+ " ('wind', 'a storm consisting of violent winds')]},\n",
+ " {'answer': 'stream',\n",
+ " 'hint': '_ stream',\n",
+ " 'clues': [('air', 'a relatively well-defined prevailing wind'),\n",
+ " ('blood', 'the blood flowing through the circulatory system'),\n",
+ " ('main', 'the prevailing current of thought'),\n",
+ " ('slip',\n",
+ " 'the flow of air that is driven backwards by an aircraft propeller'),\n",
+ " ('mid', 'the middle of a stream')]},\n",
+ " {'answer': 'string',\n",
+ " 'hint': '_ string',\n",
+ " 'clues': [('ham', 'one of the tendons at the back of the knee'),\n",
+ " ('draw',\n",
+ " 'a tie consisting of a cord that goes through a seam around an opening'),\n",
+ " ('shoe', 'a lace used for fastening shoes'),\n",
+ " ('bow', \"the string of an archer's bow\")]},\n",
+ " {'answer': 'stroke',\n",
+ " 'hint': '_ stroke',\n",
+ " 'clues': [('breast',\n",
+ " 'a swimming stroke; the arms are extended together in front of the head and swept back on either side accompanied by a frog kick'),\n",
+ " ('heat', 'collapse caused by exposure to excessive heat'),\n",
+ " ('master', 'an achievement demonstrating great skill or mastery'),\n",
+ " ('side',\n",
+ " 'a swimming stroke in which the arms move forward and backward while the legs do a scissors kick'),\n",
+ " ('sun',\n",
+ " 'sudden prostration due to exposure to the sun or excessive heat'),\n",
+ " ('back',\n",
+ " 'a swimming stroke that resembles the crawl except the swimmer lies on his or her back'),\n",
+ " ('key', 'the stroke of a key; one depression of a key on a keyboard')]},\n",
+ " {'answer': 'suit',\n",
+ " 'hint': '_ suit',\n",
+ " 'clues': [('sweat', 'garment consisting of sweat pants and a sweatshirt'),\n",
+ " ('law',\n",
+ " 'a comprehensive term for any proceeding in a court of law whereby an individual seeks a legal remedy'),\n",
+ " ('swim', 'tight fitting garment worn for swimming'),\n",
+ " ('space', 'a pressure suit worn by astronauts while in outer space'),\n",
+ " ('pant', 'a pair of pants and a matching jacket worn by women'),\n",
+ " ('snow', \"a child's overgarment for cold weather\"),\n",
+ " ('jump', \"one-piece garment fashioned after a parachutist's uniform\")]},\n",
+ " {'answer': 'table',\n",
+ " 'hint': '_ table',\n",
+ " 'clues': [('time',\n",
+ " 'a schedule listing events and the times at which they will take place'),\n",
+ " ('work', 'a table designed for a particular task'),\n",
+ " ('turn',\n",
+ " 'a circular horizontal platform that rotates a phonograph record while it is being played'),\n",
+ " ('round', 'a meeting of peers for discussion and exchange of views')]},\n",
+ " {'answer': 'tail',\n",
+ " 'hint': '_ tail',\n",
+ " 'clues': [('cat',\n",
+ " 'tall erect herbs with sword-shaped leaves; cosmopolitan in fresh and salt marshes'),\n",
+ " ('cock', 'a short mixed drink'),\n",
+ " ('horse',\n",
+ " 'perennial rushlike flowerless herbs with jointed hollow stems and narrow toothlike leaves that spread by creeping rhizomes; tend to become weedy; common in northern hemisphere; some in Africa and South America'),\n",
+ " ('bob', 'a short or shortened tail of certain animals'),\n",
+ " ('wag',\n",
+ " 'Old World bird having a very long tail that jerks up and down as it walks'),\n",
+ " ('fan',\n",
+ " 'an overhang consisting of the fan-shaped part of the deck extending aft of the sternpost of a ship'),\n",
+ " ('white', 'common North American deer; tail has a white underside'),\n",
+ " ('swallow',\n",
+ " \"a man's full-dress jacket with two long tapering tails at the back\"),\n",
+ " ('dove', 'a mortise joint formed by interlocking tenons and mortises'),\n",
+ " ('shirt', 'a brief addendum at the end of a newspaper article'),\n",
+ " ('pony',\n",
+ " \"a hair style that draws the hair back so that it hangs down in back of the head like a pony's tail\"),\n",
+ " ('cotton',\n",
+ " 'common small rabbit of North America having greyish or brownish fur and a tail with a white underside; a host for Ixodes pacificus and Ixodes scapularis (Lyme disease ticks)'),\n",
+ " ('pig', 'a plait of braided hair')]},\n",
+ " {'answer': 'tale',\n",
+ " 'hint': '_ tale',\n",
+ " 'clues': [('tattle', 'someone who gossips indiscreetly'),\n",
+ " ('fairy', 'a story about fairies; told to amuse children'),\n",
+ " ('tell', 'someone who gossips indiscreetly'),\n",
+ " ('folk', 'a tale circulated by word of mouth among the common folk')]},\n",
+ " {'answer': 'time',\n",
+ " 'hint': '_ time',\n",
+ " 'clues': [('over', 'work done in addition to regular working hours'),\n",
+ " ('tea', 'a light midafternoon meal of tea and sandwiches or cakes'),\n",
+ " ('lunch', 'the customary or habitual hour for eating lunch'),\n",
+ " ('life',\n",
+ " 'the period during which something is functional (as between birth and death)'),\n",
+ " ('meal', 'the hour at which a meal is habitually or customarily eaten'),\n",
+ " ('play', 'time for play or diversion'),\n",
+ " ('night',\n",
+ " 'the time after sunset and before sunrise while it is dark outside'),\n",
+ " ('bed', 'the time you go to bed'),\n",
+ " ('dinner', 'the customary or habitual hour for the evening meal'),\n",
+ " ('spring', 'the season of growth'),\n",
+ " ('summer',\n",
+ " 'the warmest season of the year; in the northern hemisphere it extends from the summer solstice to the autumnal equinox'),\n",
+ " ('show', 'the time at which something is supposed to begin'),\n",
+ " ('peace', 'a period of time during which there is no war'),\n",
+ " ('mean', 'the time between one event, process, or period and another'),\n",
+ " ('winter',\n",
+ " 'the coldest season of the year; in the northern hemisphere it extends from the winter solstice to the vernal equinox'),\n",
+ " ('rag', 'music with a syncopated melody (usually for the piano)'),\n",
+ " ('half', 'an intermission between the first and second half of a game'),\n",
+ " ('supper', 'the customary or habitual hour for the evening meal'),\n",
+ " ('day',\n",
+ " 'the time after sunrise and before sunset while it is light outside'),\n",
+ " ('war', 'a period of time during which there is armed conflict'),\n",
+ " ('down',\n",
+ " 'a period of time when something (as a machine or factory) is not operating (especially as a result of malfunctions)')]},\n",
+ " {'answer': 'top',\n",
+ " 'hint': '_ top',\n",
+ " 'clues': [('flat', 'a closely cropped haircut; usually for men'),\n",
+ " ('hill', 'the peak of a hill'),\n",
+ " ('tree', 'the upper branches and leaves of a tree or other plant'),\n",
+ " ('hard', 'a car that resembles a convertible but has a fixed rigid top'),\n",
+ " ('house', 'the roof of a house'),\n",
+ " ('tip',\n",
+ " 'the highest level or degree attainable; the highest stage of development'),\n",
+ " ('desk', 'the top of a desk'),\n",
+ " ('black',\n",
+ " 'a black bituminous material used for paving roads or other areas; usually spread over crushed rock'),\n",
+ " ('lap', 'a portable computer small enough to use in your lap'),\n",
+ " ('table', 'the top horizontal work surface of a table'),\n",
+ " ('roof', 'the top of a (usually flat) roof')]},\n",
+ " {'answer': 'trap',\n",
+ " 'hint': '_ trap',\n",
+ " 'clues': [('clap', 'pompous or pretentious talk or writing'),\n",
+ " ('fire',\n",
+ " 'a building that would be hard to escape from if it were to catch fire'),\n",
+ " ('mouse', 'a trap for catching mice'),\n",
+ " ('death',\n",
+ " 'any structure that is very unsafe; where people are likely to be killed'),\n",
+ " ('sun',\n",
+ " 'a terrace or garden oriented to take advantage of the sun while protected from cold winds'),\n",
+ " ('rat', 'a difficult entangling situation')]},\n",
+ " {'answer': 'walk',\n",
+ " 'hint': '_ walk',\n",
+ " 'clues': [('side',\n",
+ " 'walk consisting of a paved area for pedestrians; usually beside a street or roadway'),\n",
+ " ('board', 'a walkway made of wooden boards; usually at seaside'),\n",
+ " ('cat', 'narrow platform extending out into an auditorium'),\n",
+ " ('moon',\n",
+ " 'a kind of dance step in which the dancer seems to be sliding on the spot'),\n",
+ " ('cake',\n",
+ " 'a strutting dance based on a march; was performed in minstrel shows; originated as a competition among Black dancers to win a cake'),\n",
+ " ('cross',\n",
+ " 'a path (often marked) where something (as a street or railroad) can be crossed to get from one side to the other')]},\n",
+ " {'answer': 'walker',\n",
+ " 'hint': '_ walker',\n",
+ " 'clues': [('floor',\n",
+ " 'an employee of a retail store who supervises sales personnel and helps with customer problems'),\n",
+ " ('sleep', 'someone who walks about in their sleep'),\n",
+ " ('jay', 'a reckless pedestrian who crosses a street illegally'),\n",
+ " ('street',\n",
+ " 'a prostitute who attracts customers by walking the streets')]},\n",
+ " {'answer': 'wall',\n",
+ " 'hint': '_ wall',\n",
+ " 'clues': [('sea',\n",
+ " 'a protective structure of stone or concrete; extends from shore into the water to prevent a beach from washing away'),\n",
+ " ('side', 'the side of an automobile tire'),\n",
+ " ('fire', '(colloquial) the application of maximum thrust'),\n",
+ " ('dry',\n",
+ " 'a wide flat board used to cover walls or partitions; made from plaster or wood pulp or other materials and used primarily to form the interior walls of houses')]},\n",
+ " {'answer': 'ware',\n",
+ " 'hint': '_ ware',\n",
+ " 'clues': [('dish', 'tableware (eating and serving dishes) collectively'),\n",
+ " ('flat',\n",
+ " 'tableware that is relatively flat and fashioned as a single piece'),\n",
+ " ('china', 'dishware made of high quality porcelain'),\n",
+ " ('cook',\n",
+ " 'a kitchen utensil made of material that does not melt easily; used for cooking'),\n",
+ " ('iron', 'instrumentalities (tools or implements) made of metal'),\n",
+ " ('glass', 'an article of tableware made of glass'),\n",
+ " ('kitchen', 'hardware utensils for use in a kitchen'),\n",
+ " ('firm',\n",
+ " '(computer science) coded instructions that are stored permanently in read-only memory'),\n",
+ " ('table',\n",
+ " 'articles for use at the table (dishes and silverware and glassware)'),\n",
+ " ('free', 'software that is provided without charge'),\n",
+ " ('hard', 'major items of military weaponry (as tanks or missile)'),\n",
+ " ('tin', 'articles of commerce made of tin plate'),\n",
+ " ('oven',\n",
+ " 'heat-resistant dishware in which food can be cooked as well as served'),\n",
+ " ('dinner',\n",
+ " 'the tableware (plates and platters and serving bowls etc.) used in serving a meal'),\n",
+ " ('earthen', 'ceramic ware made of porous clay fired at low heat'),\n",
+ " ('group',\n",
+ " 'software that can be used by a group of people who are working on the same information but may be distributed in space'),\n",
+ " ('silver',\n",
+ " 'tableware made of silver or silver plate or pewter or stainless steel'),\n",
+ " ('stone',\n",
+ " 'ceramic ware that is fired in high heat and vitrified and nonporous'),\n",
+ " ('share',\n",
+ " 'software that is available free of charge; may be distributed for evaluation with a fee requested for additional features or a manual etc.'),\n",
+ " ('enamel', 'cooking utensil of enameled iron'),\n",
+ " ('soft',\n",
+ " '(computer science) written programs or procedures or rules and associated documentation pertaining to the operation of a computer system and that are stored in read/write memory')]},\n",
+ " {'answer': 'wash',\n",
+ " 'hint': '_ wash',\n",
+ " 'clues': [('white',\n",
+ " 'a defeat in which the losing person or team fails to score'),\n",
+ " ('back',\n",
+ " 'the flow of air that is driven backwards by an aircraft propeller'),\n",
+ " ('mouth', 'a medicated solution used for gargling and rinsing the mouth'),\n",
+ " ('eye',\n",
+ " 'lotion consisting of a solution used as a cleanser for the eyes'),\n",
+ " ('hog',\n",
+ " 'unacceptable behavior (especially ludicrously false statements)')]},\n",
+ " {'answer': 'water',\n",
+ " 'hint': '_ water',\n",
+ " 'clues': [('rain',\n",
+ " 'drops of fresh water that fall as precipitation from clouds'),\n",
+ " ('break',\n",
+ " 'a protective structure of stone or concrete; extends from shore into the water to prevent a beach from washing away'),\n",
+ " ('salt', 'water containing salts'),\n",
+ " ('white', 'frothy water as in rapids or waterfalls'),\n",
+ " ('tide', 'low-lying coastal land drained by tidal streams'),\n",
+ " ('sea', 'water containing salts'),\n",
+ " ('back',\n",
+ " 'a body of water that was created by a flood or tide or by being held or forced back by a dam'),\n",
+ " ('fresh', 'water that is not salty'),\n",
+ " ('dish', 'water in which dishes and cooking utensils are washed'),\n",
+ " ('fire', 'any strong spirits (such as strong whisky or rum)')]},\n",
+ " {'answer': 'way',\n",
+ " 'hint': '_ way',\n",
+ " 'clues': [('walk', 'a path set aside for walking'),\n",
+ " ('hatch',\n",
+ " 'an entrance equipped with a hatch; especially a passageway between decks of a ship'),\n",
+ " ('race', 'a canal for a current of water'),\n",
+ " ('head',\n",
+ " 'vertical space available to allow easy passage under something'),\n",
+ " ('express', 'a broad highway designed for high-speed traffic'),\n",
+ " ('gate', 'an entrance that can be closed by a gate'),\n",
+ " ('road',\n",
+ " 'a road (especially that part of a road) over which vehicles travel'),\n",
+ " ('slip',\n",
+ " 'structure consisting of a sloping way down to the water from the place where ships are built or repaired'),\n",
+ " ('companion',\n",
+ " 'a stairway or ladder that leads from one deck to another on a ship'),\n",
+ " ('speed', 'road where high speed driving is allowed'),\n",
+ " ('air', 'a duct that provides ventilation (as in mines)'),\n",
+ " ('spill',\n",
+ " 'a channel that carries excess water over or around a dam or other obstruction'),\n",
+ " ('entry', 'something that provides access (to get in or get out)'),\n",
+ " ('rail',\n",
+ " 'line that is the commercial organization responsible for operating a system of transportation for trains that pull passengers or freight'),\n",
+ " ('passage', 'a passage between rooms or between buildings'),\n",
+ " ('run',\n",
+ " 'a bar or pair of parallel bars of rolled steel making the railway along which railroad cars or other vehicles can roll'),\n",
+ " ('path',\n",
+ " 'a bundle of myelinated nerve fibers following a path through the brain'),\n",
+ " ('cause', 'a road that is raised above water or marshland or sand'),\n",
+ " ('mid',\n",
+ " 'the place at a fair or carnival where sideshows and similar amusements are located'),\n",
+ " ('drive', 'a road leading up to a private house'),\n",
+ " ('high', 'a major road for any form of motor transport'),\n",
+ " ('tram',\n",
+ " 'a conveyance that transports passengers or freight in carriers suspended from cables and supported by a series of towers'),\n",
+ " ('arch', 'a passageway under a curved masonry construction'),\n",
+ " ('lee', '(of a ship or plane) sideways drift'),\n",
+ " ('door',\n",
+ " 'the entrance (the space in a wall) through which you enter or leave a room or building; the space that a door can close'),\n",
+ " ('stair',\n",
+ " 'a way of access (upward and downward) consisting of a set of steps'),\n",
+ " ('carriage',\n",
+ " 'one of the two sides of a motorway where traffic travels in one direction only usually in two or three lanes'),\n",
+ " ('sea', 'a lane at sea that is a regularly used route for vessels'),\n",
+ " ('motor', 'a broad highway designed for high-speed traffic'),\n",
+ " ('taxi',\n",
+ " 'a paved surface in the form of a strip; used by planes taxiing to or from the runway at an airport'),\n",
+ " ('fly', 'the geographic route along which birds customarily migrate'),\n",
+ " ('tide', 'a channel in which a tidal current runs'),\n",
+ " ('water', 'a navigable body of water'),\n",
+ " ('free', 'a broad highway designed for high-speed traffic'),\n",
+ " ('gang',\n",
+ " 'a temporary passageway of planks (as over mud on a building site)'),\n",
+ " ('belt',\n",
+ " 'a highway that encircles an urban area so that traffic does not have to pass through the center'),\n",
+ " ('hall', 'an interior passage or corridor onto which rooms open'),\n",
+ " ('alley', 'a narrow street with walls on both sides'),\n",
+ " ('clear',\n",
+ " 'a road on which you are not allowed to stop (unless you have a breakdown)'),\n",
+ " ('park', 'a wide scenic road planted with trees')]},\n",
+ " {'answer': 'wear',\n",
+ " 'hint': '_ wear',\n",
+ " 'clues': [('swim', 'tight fitting garment worn for swimming'),\n",
+ " ('knit', 'knitted clothing'),\n",
+ " ('beach', 'clothing to be worn at a beach'),\n",
+ " ('sports', 'attire worn for sport or for casual wear'),\n",
+ " ('night', 'garments designed to be worn in bed'),\n",
+ " ('foot', \"clothing worn on a person's feet\"),\n",
+ " ('under',\n",
+ " 'undergarment worn next to the skin and under the outer garments'),\n",
+ " ('outer', 'clothing for use outdoors'),\n",
+ " ('sleep', 'garments designed to be worn in bed')]},\n",
+ " {'answer': 'weed',\n",
+ " 'hint': '_ weed',\n",
+ " 'clues': [('rag',\n",
+ " 'widespread European weed having yellow daisylike flowers; sometimes an obnoxious weed and toxic to cattle if consumed in quantity'),\n",
+ " ('duck',\n",
+ " 'any small or minute aquatic plant of the family Lemnaceae that float on or near the surface of shallow ponds'),\n",
+ " ('bind',\n",
+ " 'any of several vines of the genera Convolvulus and Calystegia having a twining habit'),\n",
+ " ('chick', 'any of various plants of the genus Stellaria'),\n",
+ " ('sea', 'plant growing in the sea, especially marine algae'),\n",
+ " ('loco',\n",
+ " 'any of several leguminous plants of western North America causing locoism in livestock'),\n",
+ " ('milk',\n",
+ " 'any of numerous plants of the genus Asclepias having milky juice and pods that split open releasing seeds with downy tufts'),\n",
+ " ('tumble',\n",
+ " 'any plant that breaks away from its roots in autumn and is driven by the wind as a light rolling mass')]},\n",
+ " {'answer': 'weight',\n",
+ " 'hint': '_ weight',\n",
+ " 'clues': [('bantam', 'weighs 115-126 pounds'),\n",
+ " ('light', 'a professional boxer who weighs between 131 and 135 pounds'),\n",
+ " ('middle', 'an amateur boxer who weighs no more than 165 pounds'),\n",
+ " ('fly', 'weighs no more than 115 pounds'),\n",
+ " ('feather', 'an amateur boxer who weighs no more than 126 pounds'),\n",
+ " ('penny', 'a unit of apothecary weight equal to 24 grains'),\n",
+ " ('paper', 'a weight used to hold down a stack of papers'),\n",
+ " ('hundred', 'a unit of weight equal to 100 kilograms'),\n",
+ " ('over', 'the property of excessive fatness'),\n",
+ " ('make', 'anything added to fill out a whole'),\n",
+ " ('welter',\n",
+ " 'a weight of 28 pounds; sometimes imposed as a handicap in a horse race (such as a steeplechase)'),\n",
+ " ('heavy', 'an amateur boxer who weighs no more than 201 pounds')]},\n",
+ " {'answer': 'wheel',\n",
+ " 'hint': '_ wheel',\n",
+ " 'clues': [('cog',\n",
+ " 'a toothed wheel that engages another toothed mechanism in order to change the speed or direction of transmitted motion'),\n",
+ " ('cart', 'a wheel that has wooden spokes and a metal rim'),\n",
+ " ('free',\n",
+ " 'a clutch (as on the rear wheel of a bicycle) that allows wheels to turn freely (as in coasting)'),\n",
+ " ('pin',\n",
+ " 'perennial subshrub of Tenerife having leaves in rosettes resembling pinwheels'),\n",
+ " ('water',\n",
+ " 'a wheel with buckets attached to its rim; raises water from a stream or pond'),\n",
+ " ('fly',\n",
+ " 'regulator consisting of a heavy wheel that stores kinetic energy and smooths the operation of a reciprocating engine')]},\n",
+ " {'answer': 'wife',\n",
+ " 'hint': '_ wife',\n",
+ " 'clues': [('fish', 'someone who sells fish'),\n",
+ " ('ale',\n",
+ " 'flesh of shad-like fish abundant along the Atlantic coast or in coastal streams'),\n",
+ " ('house',\n",
+ " 'a wife who manages a household while her husband earns the family income'),\n",
+ " ('mid', 'a woman skilled in aiding the delivery of babies')]},\n",
+ " {'answer': 'wind',\n",
+ " 'hint': '_ wind',\n",
+ " 'clues': [('cross', 'wind blowing across the path of a ship or aircraft'),\n",
+ " ('head', 'wind blowing opposite to the path of a ship or aircraft'),\n",
+ " ('whirl',\n",
+ " 'a more or less vertical column of air whirling around itself as it moves over the surface of the Earth'),\n",
+ " ('tail',\n",
+ " 'wind blowing in the same direction as the path of a ship or aircraft'),\n",
+ " ('wood', 'any wind instrument other than the brass instruments')]},\n",
+ " {'answer': 'woman',\n",
+ " 'hint': '_ woman',\n",
+ " 'clues': [('bond', 'a female bound to serve without wages'),\n",
+ " ('congress', 'a member of the United States House of Representatives'),\n",
+ " ('spokes', 'a female spokesperson'),\n",
+ " ('frontiers', 'a woman who lives on the frontier'),\n",
+ " ('states', 'a woman statesman'),\n",
+ " ('jury', 'someone who serves (or waits to be called to serve) on a jury'),\n",
+ " ('oars', 'a woman oarsman'),\n",
+ " ('clans', 'a member of a clan'),\n",
+ " ('business', 'a female businessperson'),\n",
+ " ('air', 'a woman aviator'),\n",
+ " ('news', 'a female newsperson'),\n",
+ " ('committee', 'a woman who is a member of a committee'),\n",
+ " ('kins', 'a female relative'),\n",
+ " ('chair', 'the officer who presides at the meetings of an organization'),\n",
+ " ('council', 'a woman who is a council member'),\n",
+ " ('sales', 'a woman salesperson'),\n",
+ " ('country', 'a woman who lives in the country and has country ways'),\n",
+ " ('sports', 'someone who engages in sports'),\n",
+ " ('mad', 'a woman lunatic'),\n",
+ " ('washer', 'a working woman who takes in washing'),\n",
+ " ('newspaper',\n",
+ " 'a journalist employed to provide news stories for newspapers or broadcast media'),\n",
+ " ('yachts', 'a person who owns or sails a yacht'),\n",
+ " ('laundry', 'a working woman who takes in washing'),\n",
+ " ('gentle', 'a woman of refinement'),\n",
+ " ('noble', 'a woman of the peerage in Britain'),\n",
+ " ('horse', 'a woman horseman'),\n",
+ " ('assembly', 'a woman assemblyman'),\n",
+ " ('police', 'a woman policeman'),\n",
+ " ('needle', 'someone who makes or mends dresses')]},\n",
+ " {'answer': 'wood',\n",
+ " 'hint': '_ wood',\n",
+ " 'clues': [('match', 'wood in small pieces or splinters'),\n",
+ " ('cotton',\n",
+ " 'any of several North American trees of the genus Populus having a tuft of cottony hairs on the seed'),\n",
+ " ('brush', 'the wood from bushes or small branches'),\n",
+ " ('beech',\n",
+ " 'wood of any of various beech trees; used for flooring and containers and plywood and tool handles'),\n",
+ " ('box',\n",
+ " 'very hard tough close-grained light yellow wood of the box (particularly the common box); used in delicate woodwork: musical instruments and inlays and engraving blocks'),\n",
+ " ('pulp', 'softwood used to make paper'),\n",
+ " ('rose',\n",
+ " 'hard dark reddish wood of a rosewood tree having a strongly marked grain; used in cabinetwork'),\n",
+ " ('dog',\n",
+ " 'a tree of shrub of the genus Cornus often having showy bracts resembling flowers'),\n",
+ " ('soft', 'wood that is easy to saw (from conifers such as pine or fir)'),\n",
+ " ('iron',\n",
+ " 'handsome East Indian evergreen tree often planted as an ornamental for its fragrant white flowers that yield a perfume; source of very heavy hardwood used for railroad ties'),\n",
+ " ('hard',\n",
+ " 'the wood of broad-leaved dicotyledonous trees (as distinguished from the wood of conifers)'),\n",
+ " ('dead', 'a branch or a part of a tree that is dead'),\n",
+ " ('drift', 'wood that is floating or that has been washed ashore'),\n",
+ " ('sap',\n",
+ " 'newly formed outer wood lying between the cambium and the heartwood of a tree or woody plant; usually light colored; active in water conduction'),\n",
+ " ('green', 'woodlands in full leaf'),\n",
+ " ('red',\n",
+ " 'the soft reddish wood of either of two species of sequoia trees'),\n",
+ " ('bass',\n",
+ " 'soft light-colored wood of any of various linden trees; used in making crates and boxes and in carving and millwork'),\n",
+ " ('ply', 'a laminate made of thin layers of wood'),\n",
+ " ('worm',\n",
+ " 'any of several low composite herbs of the genera Artemisia or Seriphidium'),\n",
+ " ('satin', 'West Indian tree with smooth lustrous and slightly oily wood'),\n",
+ " ('button',\n",
+ " 'very large spreading plane tree of eastern and central North America to Mexico'),\n",
+ " ('bent',\n",
+ " 'wood that is steamed until it becomes pliable and then is shaped for use in making furniture'),\n",
+ " ('fire', 'wood used for fuel'),\n",
+ " ('heart',\n",
+ " 'the older inactive central wood of a tree or woody plant; usually darker and denser than the surrounding sapwood'),\n",
+ " ('sandal',\n",
+ " 'close-grained fragrant yellowish heartwood of the true sandalwood; has insect repelling properties and is used for carving and cabinetwork')]},\n",
+ " {'answer': 'word',\n",
+ " 'hint': '_ word',\n",
+ " 'clues': [('loan',\n",
+ " \"a word borrowed from another language; e.g. `blitz' is a German word borrowed into modern English\"),\n",
+ " ('swear', 'profane or obscene expression usually of surprise or anger'),\n",
+ " ('head', 'a content word that can be qualified by a modifier'),\n",
+ " ('buzz',\n",
+ " 'stock phrases that have become nonsense through endless repetition'),\n",
+ " ('cross',\n",
+ " 'a puzzle in which words corresponding to numbered clues are to be found and written in to squares in the puzzle'),\n",
+ " ('watch', 'a slogan used to rally support for a cause'),\n",
+ " ('catch', 'a favorite saying of a sect or political group'),\n",
+ " ('pass', 'a secret word or phrase known only to a restricted group')]},\n",
+ " {'answer': 'work',\n",
+ " 'hint': '_ work',\n",
+ " 'clues': [('course',\n",
+ " \"work assigned to and done by a student during a course of study; usually it is evaluated as part of the student's grade in the course\"),\n",
+ " ('fancy', 'decorative needlework'),\n",
+ " ('school', 'a school task performed by a student to satisfy the teacher'),\n",
+ " ('case',\n",
+ " 'close sociological study of a maladjusted person or family for diagnosis and treatment'),\n",
+ " ('ground',\n",
+ " 'the fundamental assumptions from which something is begun or developed or calculated or explained'),\n",
+ " ('busy', 'active work of little value'),\n",
+ " ('lace', 'work consisting of (or resembling) lace fabric'),\n",
+ " ('clock',\n",
+ " 'any mechanism of geared wheels that is driven by a coiled spring; resembles the works of a mechanical clock'),\n",
+ " ('crewel', 'embroidery done with loosely twisted worsted yarn'),\n",
+ " ('brick', 'masonry done with bricks and mortar'),\n",
+ " ('class', \"the part of a student's work that is done in the classroom\"),\n",
+ " ('house', 'the work of cleaning and running a house'),\n",
+ " ('lattice',\n",
+ " 'framework consisting of an ornamental design made of strips of wood or metal'),\n",
+ " ('paper',\n",
+ " 'work that involves handling papers: forms or letters or reports etc.'),\n",
+ " ('art',\n",
+ " 'photographs or other visual representations in a printed publication'),\n",
+ " ('body', 'the exterior body of a motor vehicle'),\n",
+ " ('cabinet', 'woodwork finished by hand by a cabinetmaker'),\n",
+ " ('field', 'a temporary fortification built by troops in the field'),\n",
+ " ('iron', 'work made of iron (gratings or rails or railings etc)'),\n",
+ " ('team',\n",
+ " 'cooperative work done by a team (especially when it is effective)'),\n",
+ " ('stone', 'masonry done with stone'),\n",
+ " ('life', 'the principal work of your career'),\n",
+ " ('wax',\n",
+ " 'twining shrub of North America having yellow capsules enclosing scarlet seeds'),\n",
+ " ('fire',\n",
+ " '(usually plural) a device with an explosive that burns at a low rate and with colored flames; can be used to illuminate areas or send signals etc.'),\n",
+ " ('earth', 'an earthen rampart'),\n",
+ " ('guess', 'an estimate based on little or no information'),\n",
+ " ('fret',\n",
+ " 'framework consisting of an ornamental design made of strips of wood or metal'),\n",
+ " ('pipe', 'the flues and stops on a pipe organ'),\n",
+ " ('needle', 'a creation created or assembled by needle and thread'),\n",
+ " ('breast', 'fortification consisting of a low wall'),\n",
+ " ('plaster', 'a surface of hardened plaster (as on a wall or ceiling)'),\n",
+ " ('wicker',\n",
+ " 'work made of interlaced slender branches (especially willow branches)'),\n",
+ " ('patch',\n",
+ " 'a theory or argument made up of miscellaneous or incongruous ideas'),\n",
+ " ('spade',\n",
+ " 'dull or routine preliminary work preparing for an undertaking'),\n",
+ " ('over', 'the act of working too much or too long'),\n",
+ " ('home',\n",
+ " 'preparatory school work done outside school (especially at home)'),\n",
+ " ('frame', 'a hypothetical description of a complex entity or process'),\n",
+ " ('net', 'an interconnected system of things or people'),\n",
+ " ('hand', 'a work produced by hand labor'),\n",
+ " ('brush',\n",
+ " \"an artist's distinctive technique of applying paint with a brush\"),\n",
+ " ('bridge', 'a denture anchored to teeth on either side of missing teeth'),\n",
+ " ('metal', 'the metal parts of something'),\n",
+ " ('hack', 'professional work done according to formula'),\n",
+ " ('wood',\n",
+ " 'work made of wood; especially moldings or stairways or furniture'),\n",
+ " ('piece', 'work paid for according to the quantity produced'),\n",
+ " ('foot', 'the manner of using the feet'),\n",
+ " ('open',\n",
+ " 'ornamental work (such as embroidery or latticework) having a pattern of openings')]},\n",
+ " {'answer': 'worker',\n",
+ " 'hint': '_ worker',\n",
+ " 'clues': [('steel', 'a worker engaged in making steel'),\n",
+ " ('case',\n",
+ " 'someone employed to provide social services (especially to the disadvantaged)'),\n",
+ " ('field', 'a researcher who works in the field'),\n",
+ " ('metal',\n",
+ " 'someone who works metal (especially by hammering it when it is hot and malleable)'),\n",
+ " ('dock', 'a laborer who loads and unloads vessels in a port'),\n",
+ " ('wood', 'makes things out of wood')]},\n",
+ " {'answer': 'works',\n",
+ " 'hint': '_ works',\n",
+ " 'clues': [('water', 'a public utility that provides water'),\n",
+ " ('steel', 'a factory where steel is made'),\n",
+ " ('gas', 'the workplace where coal gas is manufactured'),\n",
+ " ('iron',\n",
+ " 'the workplace where iron is smelted or where iron goods are made')]},\n",
+ " {'answer': 'worm',\n",
+ " 'hint': '_ worm',\n",
+ " 'clues': [('ring',\n",
+ " 'infections of the skin or nails caused by fungi and appearing as itching circular patches'),\n",
+ " ('cut',\n",
+ " 'North American moth whose larvae feed on young plant stems cutting them off at the ground'),\n",
+ " ('earth',\n",
+ " 'terrestrial worm that burrows into and helps aerate soil; often surfaces when the ground is cool or wet; used as bait by anglers'),\n",
+ " ('angle',\n",
+ " 'terrestrial worm that burrows into and helps aerate soil; often surfaces when the ground is cool or wet; used as bait by anglers'),\n",
+ " ('round',\n",
+ " 'infections of the skin or nails caused by fungi and appearing as itching circular patches'),\n",
+ " ('tape',\n",
+ " 'ribbonlike flatworms that are parasitic in the intestines of humans and other vertebrates'),\n",
+ " ('hook',\n",
+ " 'parasitic bloodsucking roundworms having hooked mouth parts to fasten to the intestinal wall of human and other hosts'),\n",
+ " ('book',\n",
+ " 'a person who pays more attention to formal rules and book learning than they merit'),\n",
+ " ('silk',\n",
+ " 'the commercially bred hairless white caterpillar of the domestic silkworm moth which spins a cocoon that can be processed to yield silk fiber; the principal source of commercial silk'),\n",
+ " ('glow', 'the luminous larva or wingless grub-like female of a firefly'),\n",
+ " ('blood',\n",
+ " 'a segmented marine worm with bright red body; often used for bait'),\n",
+ " ('inch',\n",
+ " 'small hairless caterpillar having legs on only its front and rear segments; mostly larvae of moths of the family Geometridae'),\n",
+ " ('wood', 'a larva of a woodborer'),\n",
+ " ('flat', 'parasitic or free-living worms having a flattened body')]},\n",
+ " {'answer': 'worthiness',\n",
+ " 'hint': '_ worthiness',\n",
+ " 'clues': [('trust', 'the trait of deserving trust and confidence'),\n",
+ " ('air', 'fitness to fly'),\n",
+ " ('credit',\n",
+ " \"trustworthiness with money as based on a person's credit history; a general qualification for borrowing\"),\n",
+ " ('praise', 'the quality of being worthy of praise'),\n",
+ " ('sea', 'fitness to traverse the seas')]},\n",
+ " {'answer': 'wright',\n",
+ " 'hint': '_ wright',\n",
+ " 'clues': [('play', 'someone who writes plays'),\n",
+ " ('ship', 'a carpenter who helps build and launch wooden vessels'),\n",
+ " ('mill', 'a workman who designs or erects mills and milling machinery'),\n",
+ " ('wain', 'a wagon maker'),\n",
+ " ('wheel', 'someone who makes and repairs wooden wheels')]},\n",
+ " {'answer': 'writer',\n",
+ " 'hint': '_ writer',\n",
+ " 'clues': [('sports', 'a journalist who writes about sports'),\n",
+ " ('teletype',\n",
+ " 'a character printer connected to a telegraph that operates like a typewriter'),\n",
+ " ('song', 'a composer of words or music for popular songs'),\n",
+ " ('ghost', 'a writer who gives the credit of authorship to someone else'),\n",
+ " ('under', 'a banker who deals chiefly in underwriting new securities'),\n",
+ " ('copy', 'a person employed to write advertising or publicity copy'),\n",
+ " ('screen', 'someone who writes screenplays'),\n",
+ " ('speech', 'a writer who composes speeches for others to deliver'),\n",
+ " ('script',\n",
+ " 'someone who writes scripts for plays or movies or broadcast dramas'),\n",
+ " ('type',\n",
+ " 'hand-operated character printer for printing written messages one character at a time')]},\n",
+ " {'answer': 'yard',\n",
+ " 'hint': '_ yard',\n",
+ " 'clues': [('back', 'the grounds in back of a house'),\n",
+ " ('church', 'the yard associated with a church'),\n",
+ " ('lumber', 'a workplace where lumber is stocked for sale'),\n",
+ " ('grave', 'a tract of land used for burials'),\n",
+ " ('junk', 'a field where junk is collected and stored for resale'),\n",
+ " ('barn', 'a yard adjoining a barn'),\n",
+ " ('court', 'an area wholly or partly surrounded by walls or buildings'),\n",
+ " ('door', 'a yard outside the front or rear door of a house'),\n",
+ " ('dock',\n",
+ " 'an establishment on the waterfront where vessels are built or fitted out or repaired'),\n",
+ " ('brick', 'a place where bricks are made and sold'),\n",
+ " ('school', 'the yard associated with a school'),\n",
+ " ('vine', 'a farm of grapevines where wine grapes are produced'),\n",
+ " ('stock',\n",
+ " 'enclosed yard where cattle, pigs, horses, or sheep are kept temporarily'),\n",
+ " ('farm', 'an area adjacent to farm buildings'),\n",
+ " ('boat', 'a place where boats are built or maintained or stored'),\n",
+ " ('steel',\n",
+ " 'a portable balance consisting of a pivoted bar with arms of unequal length'),\n",
+ " ('ship', 'a workplace where ships are built or repaired')]}],\n",
+ " 'portion': 0.9},\n",
+ " {'name': 'prefixes',\n",
+ " 'groups': [{'answer': 'after',\n",
+ " 'hint': 'after _',\n",
+ " 'clues': [('birth',\n",
+ " 'the placenta and fetal membranes that are expelled from the uterus after the baby is born'),\n",
+ " ('burner', 'a device injects fuel into a hot exhaust for extra thrust'),\n",
+ " ('care', 'care and treatment of a convalescent patient'),\n",
+ " ('effect', 'any result that follows its cause after an interval'),\n",
+ " ('glow', 'a glow sometimes seen in the sky after sunset'),\n",
+ " ('image',\n",
+ " 'an image (usually a negative image) that persists after stimulation has ceased'),\n",
+ " ('life', 'life after death'),\n",
+ " ('math',\n",
+ " 'the consequences of an event (especially a catastrophic event)'),\n",
+ " ('noon', 'the part of the day between noon and evening'),\n",
+ " ('shock',\n",
+ " 'a tremor (or one of a series of tremors) occurring after the main shock of an earthquake'),\n",
+ " ('taste', 'an afterimage of a taste'),\n",
+ " ('thought', 'thinking again about a choice previously made')]},\n",
+ " {'answer': 'air',\n",
+ " 'hint': 'air _',\n",
+ " 'clues': [('brush',\n",
+ " 'an atomizer to spray paint by means of compressed air'),\n",
+ " ('bus', 'a subsonic jet airliner operated over short distances'),\n",
+ " ('craft', 'a vehicle that can fly'),\n",
+ " ('crew', 'the crew of an aircraft'),\n",
+ " ('drome',\n",
+ " 'an airfield equipped with control tower and hangars as well as accommodations for passengers and cargo'),\n",
+ " ('drop',\n",
+ " 'delivery of supplies or equipment or personnel by dropping them by parachute from an aircraft'),\n",
+ " ('fare', 'the fare charged for traveling by airplane'),\n",
+ " ('field', 'a place where planes take off and land'),\n",
+ " ('flow', 'the flow of air'),\n",
+ " ('foil',\n",
+ " 'a device that provides reactive force when in motion relative to the surrounding air; can lift or control a plane in flight'),\n",
+ " ('frame',\n",
+ " 'the framework and covering of an airplane or rocket (excluding the engines)'),\n",
+ " ('gun', 'a gun that propels a projectile by compressed air'),\n",
+ " ('head', 'a flighty scatterbrained simpleton'),\n",
+ " ('lift',\n",
+ " 'transportation of people or goods by air (especially when other means of access are unavailable)'),\n",
+ " ('line', 'a hose that carries air under pressure'),\n",
+ " ('lock',\n",
+ " 'a chamber that provides access to space where air is under pressure'),\n",
+ " ('mail', 'letters and packages that are transported by aircraft'),\n",
+ " ('plane',\n",
+ " 'an aircraft that has a fixed wing and is powered by propellers or jets'),\n",
+ " ('port',\n",
+ " 'an airfield equipped with control tower and hangars as well as accommodations for passengers and cargo'),\n",
+ " ('ship', 'a steerable self-propelled aircraft'),\n",
+ " ('sickness',\n",
+ " 'motion sickness experienced while traveling by air (especially during turbulence)'),\n",
+ " ('space', 'the space in the atmosphere immediately above the earth'),\n",
+ " ('speed',\n",
+ " 'the speed of an aircraft relative to the air in which it is flying'),\n",
+ " ('stream', 'a relatively well-defined prevailing wind'),\n",
+ " ('strip', 'an airfield without normal airport facilities'),\n",
+ " ('way', 'a duct that provides ventilation (as in mines)'),\n",
+ " ('worthiness', 'fitness to fly')]},\n",
+ " {'answer': 'arm',\n",
+ " 'hint': 'arm _',\n",
+ " 'clues': [('band',\n",
+ " 'worn around arm as identification or to indicate mourning'),\n",
+ " ('chair', 'chair with a support on each side for arms'),\n",
+ " ('hole',\n",
+ " 'a hole through which you put your arm and where a sleeve can be attached'),\n",
+ " ('pit', 'the hollow under the arm where it is joined to the shoulder'),\n",
+ " ('rest', 'a support for the arm')]},\n",
+ " {'answer': 'back',\n",
+ " 'hint': 'back _',\n",
+ " 'clues': [('ache', 'an ache localized in the back'),\n",
+ " ('bench',\n",
+ " 'any of the seats occupied by backbenchers in the House of Commons'),\n",
+ " ('biter',\n",
+ " 'one who attacks the reputation of another by slander or libel'),\n",
+ " ('board',\n",
+ " 'a raised vertical board with basket attached; used to play basketball'),\n",
+ " ('bone', 'a central cohesive source of support and stability'),\n",
+ " ('chat', 'light teasing repartee'),\n",
+ " ('cloth', 'scenery hung at back of stage'),\n",
+ " ('door',\n",
+ " 'an undocumented way to get access to a computer system or the data it contains'),\n",
+ " ('drop', 'scenery hung at back of stage'),\n",
+ " ('field',\n",
+ " 'the offensive football players who line up behind the linemen'),\n",
+ " ('fire',\n",
+ " 'the backward escape of gases and unburned gunpowder after a gun is fired'),\n",
+ " ('gammon',\n",
+ " 'a board game for two players; pieces move according to throws of the dice'),\n",
+ " ('ground', \"a person's social heritage: previous experience or training\"),\n",
+ " ('hand',\n",
+ " 'a return made with the back of the hand facing the direction of the stroke'),\n",
+ " ('hoe',\n",
+ " 'an excavator whose shovel bucket is attached to a hinged boom and is drawn backward to move earth'),\n",
+ " ('lash', 'a movement back from an impact'),\n",
+ " ('log',\n",
+ " 'an accumulation of jobs not done or materials not processed that are yet to be dealt with (especially unfilled customer orders for products or services)'),\n",
+ " ('pack', 'a bag carried by a strap on your back or shoulder'),\n",
+ " ('packer', 'a hiker who wears a backpack'),\n",
+ " ('rest', 'a support that you can lean against while sitting'),\n",
+ " ('room',\n",
+ " 'the meeting place of a group of leaders who make their decisions via private negotiations'),\n",
+ " ('seat', 'a secondary or inferior position or status'),\n",
+ " ('side', 'the side of an object that is opposite its front'),\n",
+ " ('slapper',\n",
+ " 'someone who demonstrates enthusiastic or excessive cordiality'),\n",
+ " ('slider',\n",
+ " 'someone who lapses into previous undesirable patterns of behavior'),\n",
+ " ('sliding', 'a failure to maintain a higher state'),\n",
+ " ('space', 'the typewriter key used for back spacing'),\n",
+ " ('spin',\n",
+ " 'spin (usually of a moving ball) that retards or reverses the forward motion'),\n",
+ " ('stage', 'a stage area out of sight of the audience'),\n",
+ " ('stairs', 'a second staircase at the rear of a building'),\n",
+ " ('stop', '(baseball) the person who plays the position of catcher'),\n",
+ " ('stroke',\n",
+ " 'a swimming stroke that resembles the crawl except the swimmer lies on his or her back'),\n",
+ " ('talk', 'an impudent or insolent rejoinder'),\n",
+ " ('wash',\n",
+ " 'the flow of air that is driven backwards by an aircraft propeller'),\n",
+ " ('water',\n",
+ " 'a body of water that was created by a flood or tide or by being held or forced back by a dam'),\n",
+ " ('woods', 'a remote and undeveloped area'),\n",
+ " ('yard', 'the grounds in back of a house')]},\n",
+ " {'answer': 'ball',\n",
+ " 'hint': 'ball _',\n",
+ " 'clues': [('cock', 'floating ball that controls level in a water tank'),\n",
+ " ('game',\n",
+ " 'a particular situation that is radically different from the preceding situation'),\n",
+ " ('park',\n",
+ " 'a facility in which ball games are played (especially baseball games)'),\n",
+ " ('player', 'an athlete who plays baseball'),\n",
+ " ('point',\n",
+ " 'a pen that has a small metal ball as the point of transfer of ink to paper'),\n",
+ " ('room', 'large room used mainly for dancing')]},\n",
+ " {'answer': 'band',\n",
+ " 'hint': 'band _',\n",
+ " 'clues': [('box',\n",
+ " 'a light cylindrical box for holding light articles of attire (especially hats)'),\n",
+ " ('leader', 'the leader of a dance band'),\n",
+ " ('master', 'the conductor of a band'),\n",
+ " ('stand', 'a platform where a (brass) band can play in the open air'),\n",
+ " ('wagon', 'a popular trend that attracts growing support'),\n",
+ " ('width',\n",
+ " 'a data transmission rate; the maximum amount of information (bits/second) that can be transmitted along a channel')]},\n",
+ " {'answer': 'bar',\n",
+ " 'hint': 'bar _',\n",
+ " 'clues': [('bell',\n",
+ " 'a bar to which heavy discs are attached at each end; used in weightlifting'),\n",
+ " ('berry',\n",
+ " 'any of numerous plants of the genus Berberis having prickly stems and yellow flowers followed by small red berries'),\n",
+ " ('keep', 'an employee who mixes and serves alcoholic drinks at a bar'),\n",
+ " ('keeper', 'an employee who mixes and serves alcoholic drinks at a bar'),\n",
+ " ('maid', 'a female bartender'),\n",
+ " ('room',\n",
+ " 'a room or establishment where alcoholic drinks are served over a counter'),\n",
+ " ('tender',\n",
+ " 'an employee who mixes and serves alcoholic drinks at a bar')]},\n",
+ " {'answer': 'bath',\n",
+ " 'hint': 'bath _',\n",
+ " 'clues': [('house', 'a building containing dressing rooms for bathers'),\n",
+ " ('robe', 'a loose-fitting robe of towelling; worn after a bath or swim'),\n",
+ " ('room',\n",
+ " 'a room (as in a residence) containing a bathtub or shower and usually a washbasin and toilet'),\n",
+ " ('tub',\n",
+ " 'a relatively large open container that you fill with water and use to wash the body')]},\n",
+ " {'answer': 'battle',\n",
+ " 'hint': 'battle _',\n",
+ " 'clues': [('field',\n",
+ " 'a region where a battle is being (or has been) fought'),\n",
+ " ('front', 'the line along which opposing armies face each other'),\n",
+ " ('ground', 'a region where a battle is being (or has been) fought'),\n",
+ " ('ship', 'large and heavily armoured warship')]},\n",
+ " {'answer': 'beach',\n",
+ " 'hint': 'beach _',\n",
+ " 'clues': [('comber', 'a vagrant living on a beach'),\n",
+ " ('front', 'a strip of land running along a beach'),\n",
+ " ('head',\n",
+ " \"a bridgehead on the enemy's shoreline seized by an amphibious operation\"),\n",
+ " ('wear', 'clothing to be worn at a beach')]},\n",
+ " {'answer': 'bed',\n",
+ " 'hint': 'bed _',\n",
+ " 'clues': [('bug',\n",
+ " 'bug of temperate regions that infests especially beds and feeds on human blood'),\n",
+ " ('chamber', 'a room used primarily for sleeping'),\n",
+ " ('clothes', 'coverings that are used on a bed'),\n",
+ " ('fellow', 'a temporary associate'),\n",
+ " ('pan',\n",
+ " 'a shallow vessel used by a bedridden patient for defecation and urination'),\n",
+ " ('post', 'any of 4 vertical supports at the corners of a bedstead'),\n",
+ " ('rock', 'solid unweathered rock lying beneath surface deposits of soil'),\n",
+ " ('roll', 'bedding rolled up for carrying'),\n",
+ " ('room', 'a room used primarily for sleeping'),\n",
+ " ('side',\n",
+ " 'space by the side of a bed (especially the bed of a sick or dying person)'),\n",
+ " ('sit',\n",
+ " 'a furnished sitting room with sleeping accommodations (and some plumbing)'),\n",
+ " ('sitter',\n",
+ " 'a furnished sitting room with sleeping accommodations (and some plumbing)'),\n",
+ " ('sore',\n",
+ " 'a chronic ulcer of the skin caused by prolonged pressure on it (as in bedridden patients)'),\n",
+ " ('spread', 'decorative cover for a bed'),\n",
+ " ('stead', 'the framework of a bed'),\n",
+ " ('time', 'the time you go to bed')]},\n",
+ " {'answer': 'bee',\n",
+ " 'hint': 'bee _',\n",
+ " 'clues': [('bread',\n",
+ " 'a mixture of nectar and pollen prepared by worker bees and fed to larvae'),\n",
+ " ('hive', 'any workplace where people are very busy'),\n",
+ " ('keeper', 'a farmer who keeps bees for their honey'),\n",
+ " ('keeping',\n",
+ " 'the cultivation of bees on a commercial scale for the production of honey'),\n",
+ " ('line', 'the most direct route')]},\n",
+ " {'answer': 'beef',\n",
+ " 'hint': 'beef _',\n",
+ " 'clues': [('burger',\n",
+ " 'a sandwich consisting of a fried cake of minced beef served on a bun, often with other ingredients'),\n",
+ " ('cake', 'a photograph of a muscular man in minimal attire'),\n",
+ " ('eater', 'officer in the (ceremonial) bodyguard of the British monarch'),\n",
+ " ('steak', 'a beef steak usually cooked by broiling')]},\n",
+ " {'answer': 'bird',\n",
+ " 'hint': 'bird _',\n",
+ " 'clues': [('bath',\n",
+ " 'an ornamental basin (usually in a garden) for birds to bathe in'),\n",
+ " ('brain', 'a person with confused ideas; incapable of serious thought'),\n",
+ " ('cage', 'a cage in which a bird can be kept'),\n",
+ " ('house', 'a shelter for birds'),\n",
+ " ('lime',\n",
+ " 'a sticky adhesive that is smeared on small branches to capture small birds'),\n",
+ " ('seed', 'food given to birds; usually mixed seeds'),\n",
+ " ('song', 'the characteristic sound produced by a bird')]},\n",
+ " {'answer': 'birth',\n",
+ " 'hint': 'birth _',\n",
+ " 'clues': [('day',\n",
+ " 'an anniversary of the day on which a person was born (or the celebration of it)'),\n",
+ " ('mark', 'a blemish on the skin that is formed before birth'),\n",
+ " ('place', 'the place where someone was born'),\n",
+ " ('rate',\n",
+ " 'the ratio of live births in an area to the population of that area; expressed per 1000 population per year'),\n",
+ " ('right', 'a right or privilege that you are entitled to at birth')]},\n",
+ " {'answer': 'black',\n",
+ " 'hint': 'black _',\n",
+ " 'clues': [('ball',\n",
+ " 'the act of excluding someone by a negative vote or veto'),\n",
+ " ('berry',\n",
+ " 'large sweet black or very dark purple edible aggregate fruit of any of various bushes of the genus Rubus'),\n",
+ " ('bird',\n",
+ " 'any bird of the family Icteridae whose male is black or predominantly black'),\n",
+ " ('board', 'sheet of slate; for writing with chalk'),\n",
+ " ('guard', 'someone who is morally reprehensible'),\n",
+ " ('head', 'a black-tipped plug clogging a pore of the skin'),\n",
+ " ('jack',\n",
+ " 'a common scrubby deciduous tree of central and southeastern United States having dark bark and broad three-lobed (club-shaped) leaves; tends to form dense thickets'),\n",
+ " ('leg', 'someone who works (or provides workers) during a strike'),\n",
+ " ('list', 'a list of people who are out of favor'),\n",
+ " ('mail',\n",
+ " 'extortion of money by threats to divulge discrediting information'),\n",
+ " ('mailer',\n",
+ " 'a criminal who extorts money from someone by threatening to expose embarrassing information about them'),\n",
+ " ('out', 'a suspension of radio or tv broadcasting'),\n",
+ " ('smith', 'a smith who forges and shapes iron with a hammer and anvil'),\n",
+ " ('snake', 'large harmless shiny black North American snake'),\n",
+ " ('thorn', 'a thorny Eurasian bush with plumlike fruits'),\n",
+ " ('top',\n",
+ " 'a black bituminous material used for paving roads or other areas; usually spread over crushed rock'),\n",
+ " ('topping',\n",
+ " 'a black bituminous material used for paving roads or other areas; usually spread over crushed rock')]},\n",
+ " {'answer': 'blood',\n",
+ " 'hint': 'blood _',\n",
+ " 'clues': [('bath', 'indiscriminate slaughter'),\n",
+ " ('hound',\n",
+ " 'a breed of large powerful hound of European origin having very acute smell and used in tracking'),\n",
+ " ('letting',\n",
+ " 'formerly used as a treatment to reduce excess blood (one of the four humors of medieval medicine)'),\n",
+ " ('line', 'the descendants of one individual'),\n",
+ " ('mobile', 'a motor vehicle equipped to collect blood donations'),\n",
+ " ('shed', 'the shedding of blood resulting in murder'),\n",
+ " ('stain', 'a discoloration caused by blood'),\n",
+ " ('stock', 'thoroughbred horses (collectively)'),\n",
+ " ('stone', 'green chalcedony with red spots that resemble blood'),\n",
+ " ('stream', 'the blood flowing through the circulatory system'),\n",
+ " ('sucker',\n",
+ " 'carnivorous or bloodsucking aquatic or terrestrial worms typically having a sucker at each end'),\n",
+ " ('worm',\n",
+ " 'a segmented marine worm with bright red body; often used for bait')]},\n",
+ " {'answer': 'blow',\n",
+ " 'hint': 'blow _',\n",
+ " 'clues': [('fly',\n",
+ " 'large usually hairy metallic blue or green fly; lays eggs in carrion or dung or wounds'),\n",
+ " ('gun', 'a tube through which darts can be shot by blowing'),\n",
+ " ('hard', 'a very boastful and talkative person'),\n",
+ " ('hole', 'the spiracle of a cetacean located far back on the skull'),\n",
+ " ('lamp', 'a burner that mixes air and gas to produce a very hot flame'),\n",
+ " ('out', 'an easy victory'),\n",
+ " ('pipe',\n",
+ " 'a tube that directs air or gas into a flame to concentrate heat'),\n",
+ " ('torch',\n",
+ " 'a burner that mixes air and gas to produce a very hot flame')]},\n",
+ " {'answer': 'blue',\n",
+ " 'hint': 'blue _',\n",
+ " 'clues': [('bell', 'sometimes placed in genus Scilla'),\n",
+ " ('berry',\n",
+ " 'any of numerous shrubs of the genus Vaccinium bearing blueberries'),\n",
+ " ('bird',\n",
+ " 'fruit-eating mostly brilliant blue songbird of the East Indies'),\n",
+ " ('bonnet',\n",
+ " 'low-growing annual herb of southwestern United States (Texas) having silky foliage and blue flowers; a leading cause of livestock poisoning in the southwestern United States'),\n",
+ " ('bottle',\n",
+ " 'an annual Eurasian plant cultivated in North America having showy heads of blue or purple or pink or white flowers'),\n",
+ " ('fish',\n",
+ " 'bluish warm-water marine food and game fish that follow schools of small fishes into shallow waters'),\n",
+ " ('gill', 'important edible sunfish of eastern and central United States'),\n",
+ " ('grass', 'any of various grasses of the genus Poa'),\n",
+ " ('jacket', 'a serviceman in the navy'),\n",
+ " ('nose', 'a native or inhabitant of Nova Scotia'),\n",
+ " ('point',\n",
+ " 'oysters originally from Long Island Sound but now from anywhere along the northeastern seacoast; usually eaten raw'),\n",
+ " ('print', 'something intended as a guide for making something else'),\n",
+ " ('stocking', 'a woman having literary or intellectual interests')]},\n",
+ " {'answer': 'boat',\n",
+ " 'hint': 'boat _',\n",
+ " 'clues': [('house',\n",
+ " 'a shed at the edge of a river or lake; used to store boats'),\n",
+ " ('load',\n",
+ " 'the amount of cargo that can be held by a boat or ship or a freight car'),\n",
+ " ('swain',\n",
+ " 'a petty officer on a merchant ship who controls the work of other seamen'),\n",
+ " ('yard', 'a place where boats are built or maintained or stored')]},\n",
+ " {'answer': 'bob',\n",
+ " 'hint': 'bob _',\n",
+ " 'clues': [('cat', 'small lynx of North America'),\n",
+ " ('sled', 'formerly two short sleds coupled together'),\n",
+ " ('sledding', 'riding on a bobsled'),\n",
+ " ('sleigh', 'formerly two short sleds coupled together'),\n",
+ " ('tail', 'a short or shortened tail of certain animals'),\n",
+ " ('white', 'a popular North American game bird; named for its call')]},\n",
+ " {'answer': 'body',\n",
+ " 'hint': 'body _',\n",
+ " 'clues': [('builder',\n",
+ " 'someone who does special exercises to develop a brawny musculature'),\n",
+ " ('building', 'exercise that builds muscles through tension'),\n",
+ " ('guard', 'someone who escorts and protects a prominent person'),\n",
+ " ('work', 'the exterior body of a motor vehicle')]},\n",
+ " {'answer': 'book',\n",
+ " 'hint': 'book _',\n",
+ " 'clues': [('binder', 'a worker whose trade is binding books'),\n",
+ " ('binding', 'the craft of binding books'),\n",
+ " ('case', 'a piece of furniture with shelves for storing books'),\n",
+ " ('end',\n",
+ " 'a support placed at the end of a row of books to keep them upright (on a shelf or table)'),\n",
+ " ('keeper', 'someone who records the transactions of a business'),\n",
+ " ('keeping', 'the activity of recording business transactions'),\n",
+ " ('maker',\n",
+ " 'a maker of books; someone who edits or publishes or binds books'),\n",
+ " ('mark',\n",
+ " \"a marker (a piece of paper or ribbon) placed between the pages of a book to mark the reader's place\"),\n",
+ " ('mobile',\n",
+ " 'a van with shelves of books; serves as a mobile library or bookstore'),\n",
+ " ('plate',\n",
+ " 'a label identifying the owner of a book in which it is pasted'),\n",
+ " ('seller', 'the proprietor of a bookstore'),\n",
+ " ('shelf', 'a shelf on which to keep books'),\n",
+ " ('shop', 'a shop where books are sold'),\n",
+ " ('stall', 'a shop where books are sold'),\n",
+ " ('store', 'a shop where books are sold'),\n",
+ " ('worm',\n",
+ " 'a person who pays more attention to formal rules and book learning than they merit')]},\n",
+ " {'answer': 'boot',\n",
+ " 'hint': 'boot _',\n",
+ " 'clues': [('black', 'a person who polishes shoes and boots'),\n",
+ " ('lace', 'a long lace for fastening boots'),\n",
+ " ('leg', 'whiskey illegally distilled from a corn mash'),\n",
+ " ('legging',\n",
+ " 'the act of making or transporting alcoholic liquor for sale illegally'),\n",
+ " ('strap',\n",
+ " 'a strap that is looped and sewn to the top of a boot for pulling it on')]},\n",
+ " {'answer': 'bow',\n",
+ " 'hint': 'bow _',\n",
+ " 'clues': [('leg', 'a leg bowed outward at the knee (or below the knee)'),\n",
+ " ('line', 'a loop knot that neither slips nor jams'),\n",
+ " ('sprit', 'a spar projecting from the bow of a vessel'),\n",
+ " ('string', \"the string of an archer's bow\")]},\n",
+ " {'answer': 'brain',\n",
+ " 'hint': 'brain _',\n",
+ " 'clues': [('child', 'a product of your creative thinking and work'),\n",
+ " ('power', 'mental ability'),\n",
+ " ('storm',\n",
+ " 'the clear (and often sudden) understanding of a complex situation'),\n",
+ " ('washing',\n",
+ " 'forcible indoctrination into a new set of attitudes and beliefs'),\n",
+ " ('wave',\n",
+ " '(neurophysiology) rapid fluctuations of voltage between parts of the cerebral cortex that are detectable with an electroencephalograph')]},\n",
+ " {'answer': 'bread',\n",
+ " 'hint': 'bread _',\n",
+ " 'clues': [('basket',\n",
+ " 'a geographic region serving as the principal source of grain'),\n",
+ " ('board',\n",
+ " 'a wooden or plastic board on which dough is kneaded or bread is sliced'),\n",
+ " ('box', 'a container used to keep bread or cake in'),\n",
+ " ('crumb', 'crumb of bread; used especially for coating or thickening'),\n",
+ " ('fruit',\n",
+ " 'native to Pacific islands and having edible fruit with a texture like bread'),\n",
+ " ('line', 'a queue of people waiting for free food'),\n",
+ " ('winner',\n",
+ " 'one whose earnings are the primary source of support for their dependents')]},\n",
+ " {'answer': 'break',\n",
+ " 'hint': 'break _',\n",
+ " 'clues': [('away', 'the act of breaking away or withdrawing from'),\n",
+ " ('down',\n",
+ " 'the act of disrupting an established order so it fails to continue'),\n",
+ " ('fast', 'the first meal of the day (usually in the morning)'),\n",
+ " ('out', 'an escape from jail'),\n",
+ " ('through', 'a productive insight'),\n",
+ " ('water',\n",
+ " 'a protective structure of stone or concrete; extends from shore into the water to prevent a beach from washing away')]},\n",
+ " {'answer': 'breast',\n",
+ " 'hint': 'breast _',\n",
+ " 'clues': [('bone',\n",
+ " 'the flat bone that articulates with the clavicles and the first seven pairs of ribs'),\n",
+ " ('plate',\n",
+ " 'armor plate that protects the chest; the front part of a cuirass'),\n",
+ " ('stroke',\n",
+ " 'a swimming stroke; the arms are extended together in front of the head and swept back on either side accompanied by a frog kick'),\n",
+ " ('work', 'fortification consisting of a low wall')]},\n",
+ " {'answer': 'brick',\n",
+ " 'hint': 'brick _',\n",
+ " 'clues': [('bat', 'a fragment of brick used as a weapon'),\n",
+ " ('layer', 'a craftsman skilled in building with bricks'),\n",
+ " ('laying', 'the craft of laying bricks'),\n",
+ " ('work', 'masonry done with bricks and mortar'),\n",
+ " ('yard', 'a place where bricks are made and sold')]},\n",
+ " {'answer': 'broad',\n",
+ " 'hint': 'broad _',\n",
+ " 'clues': [('cast', 'message that is transmitted by radio or television'),\n",
+ " ('caster', 'someone who broadcasts on radio or television'),\n",
+ " ('cloth', 'a densely textured woolen fabric with a lustrous finish'),\n",
+ " ('loom', 'a carpet woven on a wide loom to obviate the need for seams'),\n",
+ " ('sheet',\n",
+ " 'an advertisement (usually printed on a page or in a leaflet) intended for wide distribution'),\n",
+ " ('side',\n",
+ " 'an advertisement (usually printed on a page or in a leaflet) intended for wide distribution'),\n",
+ " ('sword',\n",
+ " 'a sword with a broad blade and (usually) two cutting edges; used to cut rather than stab')]},\n",
+ " {'answer': 'buck',\n",
+ " 'hint': 'buck _',\n",
+ " 'clues': [('board',\n",
+ " 'an open horse-drawn carriage with four wheels; has a seat attached to a flexible board between the two axles'),\n",
+ " ('eye', 'the inedible nutlike seed of the horse chestnut'),\n",
+ " ('saw',\n",
+ " 'a saw that is set in a frame in the shape of an H; used with both hands to cut wood that is held in a sawbuck'),\n",
+ " ('shot', 'small lead shot for shotgun shells'),\n",
+ " ('skin', 'horse of a light yellowish dun color with dark mane and tail'),\n",
+ " ('tooth', 'a large projecting front tooth'),\n",
+ " ('wheat',\n",
+ " 'a member of the genus Fagopyrum; annual Asian plant with clusters of small pinkish white flowers and small edible triangular seeds which are used whole or ground into flour')]},\n",
+ " {'answer': 'bull',\n",
+ " 'hint': 'bull _',\n",
+ " 'clues': [('dog',\n",
+ " 'a sturdy thickset short-haired breed with a large head and strong undershot lower jaw; developed originally in England for bull baiting'),\n",
+ " ('dozer',\n",
+ " 'large powerful tractor; a large blade in front flattens areas of ground'),\n",
+ " ('fight',\n",
+ " 'a Spanish or Portuguese or Latin American spectacle; a matador baits and (usually) kills a bull in an arena before many spectators'),\n",
+ " ('fighter', 'someone who fights bulls'),\n",
+ " ('finch',\n",
+ " 'United States architect who designed the Capitol Building in Washington which served as a model for state capitols throughout the United States (1763-1844)'),\n",
+ " ('frog',\n",
+ " 'largest North American frog; highly aquatic with a deep-pitched voice'),\n",
+ " ('head',\n",
+ " 'freshwater sculpin with a large flattened bony-plated head with hornlike spines'),\n",
+ " ('horn', 'a portable loudspeaker with built-in microphone and amplifier'),\n",
+ " ('pen',\n",
+ " 'a place on a baseball field where relief pitchers can warm up during a game'),\n",
+ " ('ring', 'a stadium where bullfights take place')]},\n",
+ " {'answer': 'butter',\n",
+ " 'hint': 'butter _',\n",
+ " 'clues': [('ball', 'a rotund individual'),\n",
+ " ('cup', 'any of various plants of the genus Ranunculus'),\n",
+ " ('fat', 'the fatty substance of milk from which butter is made'),\n",
+ " ('fingers',\n",
+ " 'someone who drops things (especially one who cannot catch a ball)'),\n",
+ " ('fly',\n",
+ " 'diurnal insect typically having a slender body with knobbed antennae and broad colorful wings'),\n",
+ " ('milk',\n",
+ " 'residue from making butter from sour raw milk; or pasteurized milk curdled by adding a culture'),\n",
+ " ('nut',\n",
+ " 'North American walnut tree having light-brown wood and edible nuts; source of a light-brown dye'),\n",
+ " ('scotch', 'a hard brittle candy made with butter and brown sugar')]},\n",
+ " {'answer': 'candle',\n",
+ " 'hint': 'candle _',\n",
+ " 'clues': [('light', 'the light provided by a burning candle'),\n",
+ " ('power', 'luminous intensity measured in candelas'),\n",
+ " ('stick', 'a holder with sockets for candles'),\n",
+ " ('wick', 'the wick of a candle')]},\n",
+ " {'answer': 'car',\n",
+ " 'hint': 'car _',\n",
+ " 'clues': [('fare', 'the fare charged for riding a bus or streetcar'),\n",
+ " ('hop', 'a waiter at a drive-in restaurant'),\n",
+ " ('jacking', 'the violent theft of an occupied car'),\n",
+ " ('load', 'a gathering of passengers sufficient to fill an automobile'),\n",
+ " ('port',\n",
+ " 'garage for one or two cars consisting of a flat roof supported on poles')]},\n",
+ " {'answer': 'card',\n",
+ " 'hint': 'card _',\n",
+ " 'clues': [('board', 'a stiff moderately thick paper'),\n",
+ " ('holder', 'a person who holds a credit card or debit card'),\n",
+ " ('sharp',\n",
+ " 'a professional card player who makes a living by cheating at card games'),\n",
+ " ('sharper',\n",
+ " 'a professional card player who makes a living by cheating at card games')]},\n",
+ " {'answer': 'cat',\n",
+ " 'hint': 'cat _',\n",
+ " 'clues': [('bird',\n",
+ " 'any of various birds of the Australian region whose males build ornamented structures resembling bowers in order to attract females'),\n",
+ " ('boat', 'a sailboat with a single mast set far forward'),\n",
+ " ('call', 'a cry expressing disapproval'),\n",
+ " ('fish',\n",
+ " 'flesh of scaleless food fish of the southern United States; often farmed'),\n",
+ " ('gut',\n",
+ " 'perennial subshrub of eastern North America having downy leaves yellowish and rose flowers and; source of rotenone'),\n",
+ " ('nap', 'sleeping for a short period of time (usually not in bed)'),\n",
+ " ('nip',\n",
+ " 'hairy aromatic perennial herb having whorls of small white purple-spotted flowers in a terminal spike; used in the past as a domestic remedy; strongly attractive to cats'),\n",
+ " ('tail',\n",
+ " 'tall erect herbs with sword-shaped leaves; cosmopolitan in fresh and salt marshes'),\n",
+ " ('walk', 'narrow platform extending out into an auditorium')]},\n",
+ " {'answer': 'check',\n",
+ " 'hint': 'check _',\n",
+ " 'clues': [('book', 'a book issued to holders of checking accounts'),\n",
+ " ('list',\n",
+ " 'a list of items (names or tasks etc.) to be checked or consulted'),\n",
+ " ('mate', 'complete victory'),\n",
+ " ('out', 'the act of inspecting or verifying'),\n",
+ " ('point',\n",
+ " 'a place (as at a frontier) where travellers are stopped for inspection and clearance'),\n",
+ " ('room', 'a room where baggage or parcels are checked')]},\n",
+ " {'answer': 'cheese',\n",
+ " 'hint': 'cheese _',\n",
+ " 'clues': [('board', 'tray on which cheeses are served'),\n",
+ " ('burger', 'a hamburger with melted cheese on it'),\n",
+ " ('cake',\n",
+ " 'made with sweetened cream cheese and eggs and cream baked in a crumb crust'),\n",
+ " ('cloth',\n",
+ " 'a coarse loosely woven cotton gauze; originally used to wrap cheeses')]},\n",
+ " {'answer': 'cock',\n",
+ " 'hint': 'cock _',\n",
+ " 'clues': [('crow', 'the first light of day'),\n",
+ " ('fight',\n",
+ " 'a match in a cockpit between two fighting cocks heeled with metal gaffs'),\n",
+ " ('pit', 'compartment where the pilot sits while flying the aircraft'),\n",
+ " ('roach',\n",
+ " 'any of numerous chiefly nocturnal insects; some are domestic pests'),\n",
+ " ('tail', 'a short mixed drink')]},\n",
+ " {'answer': 'cook',\n",
+ " 'hint': 'cook _',\n",
+ " 'clues': [('book', 'a book of recipes and cooking directions'),\n",
+ " ('house', 'the area for food preparation on a ship'),\n",
+ " ('out', 'an informal meal cooked and eaten outdoors'),\n",
+ " ('ware',\n",
+ " 'a kitchen utensil made of material that does not melt easily; used for cooking')]},\n",
+ " {'answer': 'copy',\n",
+ " 'hint': 'copy _',\n",
+ " 'clues': [('book',\n",
+ " 'a book containing models of good penmanship; used in teaching penmanship'),\n",
+ " ('cat', 'someone who copies the words or behavior of another'),\n",
+ " ('right',\n",
+ " 'a document granting exclusive right to publish and sell literary or musical or artistic work'),\n",
+ " ('writer', 'a person employed to write advertising or publicity copy')]},\n",
+ " {'answer': 'corn',\n",
+ " 'hint': 'corn _',\n",
+ " 'clues': [('bread', 'bread made primarily of cornmeal'),\n",
+ " ('cob',\n",
+ " 'the hard cylindrical core that bears the kernels of an ear of corn'),\n",
+ " ('crake', 'common Eurasian rail that frequents grain fields'),\n",
+ " ('field', 'a field planted with corn'),\n",
+ " ('flour',\n",
+ " 'starch prepared from the grains of corn; used in cooking as a thickener'),\n",
+ " ('flower',\n",
+ " 'plant of southern and southeastern United States grown for its yellow flowers that can be dried'),\n",
+ " ('meal', 'coarsely ground corn'),\n",
+ " ('stalk', 'the stalk of a corn plant'),\n",
+ " ('starch',\n",
+ " 'starch prepared from the grains of corn; used in cooking as a thickener')]},\n",
+ " {'answer': 'cotton',\n",
+ " 'hint': 'cotton _',\n",
+ " 'clues': [('mouth',\n",
+ " 'venomous semiaquatic snake of swamps in southern United States'),\n",
+ " ('seed', 'seed of cotton plants; source of cottonseed oil'),\n",
+ " ('tail',\n",
+ " 'common small rabbit of North America having greyish or brownish fur and a tail with a white underside; a host for Ixodes pacificus and Ixodes scapularis (Lyme disease ticks)'),\n",
+ " ('wood',\n",
+ " 'any of several North American trees of the genus Populus having a tuft of cottony hairs on the seed')]},\n",
+ " {'answer': 'cow',\n",
+ " 'hint': 'cow _',\n",
+ " 'clues': [('bell',\n",
+ " 'a bell hung around the neck of cow so that the cow can be easily located'),\n",
+ " ('bird',\n",
+ " \"North American blackbird that follows cattle and lays eggs in other birds' nests\"),\n",
+ " ('boy',\n",
+ " 'a hired hand who tends cattle and performs other duties on horseback'),\n",
+ " ('catcher',\n",
+ " 'an inclined metal frame at the front of a locomotive to clear the track'),\n",
+ " ('girl', 'a woman cowboy'),\n",
+ " ('hand',\n",
+ " 'a hired hand who tends cattle and performs other duties on horseback'),\n",
+ " ('herd',\n",
+ " 'a hired hand who tends cattle and performs other duties on horseback'),\n",
+ " ('hide', 'leather made from the hide of a cow'),\n",
+ " ('lick',\n",
+ " 'a tuft of hair that grows in a different direction from the rest of the hair and usually will not lie flat'),\n",
+ " ('poke',\n",
+ " 'a hired hand who tends cattle and performs other duties on horseback'),\n",
+ " ('pox',\n",
+ " 'a viral disease of cattle causing a mild skin disease affecting the udder; formerly used to inoculate humans against smallpox'),\n",
+ " ('puncher',\n",
+ " 'a hired hand who tends cattle and performs other duties on horseback'),\n",
+ " ('shed', 'a barn for cows'),\n",
+ " ('slip',\n",
+ " 'early spring flower common in British isles having fragrant yellow or sometimes purple flowers')]},\n",
+ " {'answer': 'cross',\n",
+ " 'hint': 'cross _',\n",
+ " 'clues': [('bar', 'a horizontal bar that goes across something'),\n",
+ " ('beam', 'a horizontal beam that extends across something'),\n",
+ " ('bones',\n",
+ " 'two crossed bones (or a representation of two crossed bones) used as a symbol danger or death'),\n",
+ " ('bow',\n",
+ " 'a bow fixed transversely on a wooden stock grooved to direct the arrow (quarrel)'),\n",
+ " ('breed',\n",
+ " '(genetics) an organism that is the offspring of genetically dissimilar parents or stock; especially offspring produced by breeding plants or animals of different varieties or breeds or species'),\n",
+ " ('check',\n",
+ " 'an instance of confirming something by considering information from several sources'),\n",
+ " ('cut', 'a diagonal path'),\n",
+ " ('fire', 'a lively or heated interchange of ideas and opinions'),\n",
+ " ('hatch', 'shading consisting of multiple crossing lines'),\n",
+ " ('over',\n",
+ " 'the interchange of sections between pairing homologous chromosomes during the prophase of meiosis'),\n",
+ " ('patch', 'a bad-tempered person'),\n",
+ " ('road', 'a junction where one street or road crosses another'),\n",
+ " ('talk', 'the presence of an unwanted signal via an accidental coupling'),\n",
+ " ('walk',\n",
+ " 'a path (often marked) where something (as a street or railroad) can be crossed to get from one side to the other'),\n",
+ " ('wind', 'wind blowing across the path of a ship or aircraft'),\n",
+ " ('word',\n",
+ " 'a puzzle in which words corresponding to numbered clues are to be found and written in to squares in the puzzle')]},\n",
+ " {'answer': 'cut',\n",
+ " 'hint': 'cut _',\n",
+ " 'clues': [('away',\n",
+ " 'a representation (drawing or model) of something in which the outside is omitted to reveal the inner parts'),\n",
+ " ('back', 'a reduction in quantity or rate'),\n",
+ " ('off',\n",
+ " 'a designated limit beyond which something cannot function or must be terminated'),\n",
+ " ('out',\n",
+ " 'a switch that interrupts an electric circuit in the event of an overload'),\n",
+ " ('throat', \"someone who murders by cutting the victim's throat\"),\n",
+ " ('worm',\n",
+ " 'North American moth whose larvae feed on young plant stems cutting them off at the ground')]},\n",
+ " {'answer': 'day',\n",
+ " 'hint': 'day _',\n",
+ " 'clues': [('bed', 'an armless couch; a seat by day and a bed by night'),\n",
+ " ('break', 'the first light of day'),\n",
+ " ('care', 'childcare during the day while parents work'),\n",
+ " ('dream', 'absentminded dreaming while awake'),\n",
+ " ('dreamer', 'someone who indulges in idle or absentminded daydreaming'),\n",
+ " ('light',\n",
+ " 'the time after sunrise and before sunset while it is light outside'),\n",
+ " ('time',\n",
+ " 'the time after sunrise and before sunset while it is light outside')]},\n",
+ " {'answer': 'dead',\n",
+ " 'hint': 'dead _',\n",
+ " 'clues': [('beat', 'someone who fails to meet a financial obligation'),\n",
+ " ('bolt', 'the part of a lock that is engaged or withdrawn with a key'),\n",
+ " ('head', 'a nonenterprising person who is not paying his way'),\n",
+ " ('line', 'the point in time at which something must be completed'),\n",
+ " ('lock',\n",
+ " 'a situation in which no progress can be made or no advancement is possible'),\n",
+ " ('wood', 'a branch or a part of a tree that is dead')]},\n",
+ " {'answer': 'death',\n",
+ " 'hint': 'death _',\n",
+ " 'clues': [('bed', 'the last few hours before death'),\n",
+ " ('blow', 'the blow that kills (usually mercifully)'),\n",
+ " ('trap',\n",
+ " 'any structure that is very unsafe; where people are likely to be killed'),\n",
+ " ('watch',\n",
+ " 'minute wingless psocopterous insects injurious to books and papers')]},\n",
+ " {'answer': 'dish',\n",
+ " 'hint': 'dish _',\n",
+ " 'clues': [('cloth', 'a cloth for washing dishes'),\n",
+ " ('pan', 'large pan for washing dishes'),\n",
+ " ('rag', 'a cloth for washing dishes'),\n",
+ " ('towel', 'a towel for drying dishes'),\n",
+ " ('ware', 'tableware (eating and serving dishes) collectively'),\n",
+ " ('washer', 'a machine for washing dishes'),\n",
+ " ('water', 'water in which dishes and cooking utensils are washed')]},\n",
+ " {'answer': 'dog',\n",
+ " 'hint': 'dog _',\n",
+ " 'clues': [('cart', 'a cart drawn by a dog'),\n",
+ " ('fight', 'a fiercely disputed contest'),\n",
+ " ('fish',\n",
+ " 'primitive long-bodied carnivorous freshwater fish with a very long dorsal fin; found in sluggish waters of North America'),\n",
+ " ('house', 'outbuilding that serves as a shelter for a dog'),\n",
+ " ('leg', 'angle that resembles the hind leg of a dog'),\n",
+ " ('sled', 'a sled pulled by dogs'),\n",
+ " ('trot', 'a steady trot like that of a dog'),\n",
+ " ('wood',\n",
+ " 'a tree of shrub of the genus Cornus often having showy bracts resembling flowers')]},\n",
+ " {'answer': 'door',\n",
+ " 'hint': 'door _',\n",
+ " 'clues': [('bell',\n",
+ " 'a push button at an outer door that gives a ringing or buzzing signal when pushed'),\n",
+ " ('jamb', 'a jamb for a door'),\n",
+ " ('keeper',\n",
+ " 'an official stationed at the entrance of a courtroom or legislative chamber'),\n",
+ " ('knob',\n",
+ " \"a knob used to release the catch when opening a door (often called `doorhandle' in Great Britain)\"),\n",
+ " ('knocker',\n",
+ " 'a device (usually metal and ornamental) attached by a hinge to a door'),\n",
+ " ('mat', 'a person who is physically weak and ineffectual'),\n",
+ " ('nail', 'a nail with a large head; formerly used to decorate doors'),\n",
+ " ('plate',\n",
+ " 'a nameplate fastened to a door; indicates the person who works or lives there'),\n",
+ " ('post', 'a jamb for a door'),\n",
+ " ('step',\n",
+ " 'the sill of a door; a horizontal piece of wood or stone that forms the bottom of a doorway and offers support when passing through a doorway'),\n",
+ " ('stop', 'a stop that keeps open doors from moving'),\n",
+ " ('way',\n",
+ " 'the entrance (the space in a wall) through which you enter or leave a room or building; the space that a door can close'),\n",
+ " ('yard', 'a yard outside the front or rear door of a house')]},\n",
+ " {'answer': 'down',\n",
+ " 'hint': 'down _',\n",
+ " 'clues': [('beat',\n",
+ " \"the first beat of a musical measure (as the conductor's arm moves downward)\"),\n",
+ " ('cast', 'a ventilation shaft through which air enters a mine'),\n",
+ " ('draft', 'a strong downward air current'),\n",
+ " ('fall', 'failure that results in a loss of position or reputation'),\n",
+ " ('grade', 'the property possessed by a slope or surface that descends'),\n",
+ " ('hill', 'the downward slope of a hill'),\n",
+ " ('pour', 'a heavy rain'),\n",
+ " ('shift',\n",
+ " 'a change from a financially rewarding but stressful career to a less well paid but more fulfilling one'),\n",
+ " ('side', 'a negative aspect of something that is generally positive'),\n",
+ " ('sizing',\n",
+ " 'the reduction of expenditures in order to become financially stable'),\n",
+ " ('stage', 'the front half of the stage (as seen from the audience)'),\n",
+ " ('swing', 'a swing downward of a golf club'),\n",
+ " ('time',\n",
+ " 'a period of time when something (as a machine or factory) is not operating (especially as a result of malfunctions)'),\n",
+ " ('town', 'the central area or commercial center of a town or city'),\n",
+ " ('turn', 'a worsening of business or economic activity')]},\n",
+ " {'answer': 'ear',\n",
+ " 'hint': 'ear _',\n",
+ " 'clues': [('ache', 'an ache localized in the middle or inner ear'),\n",
+ " ('drum', 'the membrane in the ear that vibrates to sound'),\n",
+ " ('lobe', 'the fleshy pendulous part of the external human ear'),\n",
+ " ('mark', 'identification mark on the ear of a domestic animal'),\n",
+ " ('muff',\n",
+ " 'either of a pair of ear coverings (usually connected by a headband) that are worn to keep the ears warm in cold weather'),\n",
+ " ('phone',\n",
+ " 'electro-acoustic transducer for converting electric signals into sounds; it is held over or inserted into the ear'),\n",
+ " ('piece',\n",
+ " 'electro-acoustic transducer for converting electric signals into sounds; it is held over or inserted into the ear'),\n",
+ " ('plug', 'an earphone that is inserted into the ear canal'),\n",
+ " ('ring',\n",
+ " 'jewelry to ornament the ear; usually clipped to the earlobe or fastened through a hole in the lobe'),\n",
+ " ('shot', 'the range within which a voice can be heard'),\n",
+ " ('wax', 'a soft yellow wax secreted by glands in the ear canal'),\n",
+ " ('wig',\n",
+ " 'any of numerous insects of the order Dermaptera having elongate bodies and slender many-jointed antennae and a pair of large pincers at the rear of the abdomen')]},\n",
+ " {'answer': 'egg',\n",
+ " 'hint': 'egg _',\n",
+ " 'clues': [('beater',\n",
+ " 'an aircraft without wings that obtains its lift from the rotation of overhead blades'),\n",
+ " ('cup', 'dishware consisting of a small cup for serving a boiled egg'),\n",
+ " ('head', 'an intellectual; a very studious and academic person'),\n",
+ " ('nog',\n",
+ " 'a punch made of sweetened milk or cream mixed with eggs and usually alcoholic liquor'),\n",
+ " ('plant',\n",
+ " 'egg-shaped vegetable having a shiny skin typically dark purple but occasionally white or yellow'),\n",
+ " ('shell', \"the exterior covering of a bird's egg\")]},\n",
+ " {'answer': 'eye',\n",
+ " 'hint': 'eye _',\n",
+ " 'clues': [('ball',\n",
+ " 'the ball-shaped capsule containing the vertebrate eye'),\n",
+ " ('brow', 'the arch of hair above each eye'),\n",
+ " ('glass',\n",
+ " 'lens for correcting defective vision in one eye; held in place by facial muscles'),\n",
+ " ('lash',\n",
+ " 'any of the short curved hairs that grow from the edges of the eyelids'),\n",
+ " ('lid',\n",
+ " 'either of two folds of skin that can be moved to cover or open the eye'),\n",
+ " ('liner', 'makeup applied to emphasize the shape of the eyes'),\n",
+ " ('piece',\n",
+ " 'combination of lenses at the viewing end of optical instruments'),\n",
+ " ('shadow',\n",
+ " 'makeup consisting of a cosmetic substance used to darken the eyes'),\n",
+ " ('sight', 'normal use of the faculty of vision'),\n",
+ " ('sore', 'something very ugly and offensive'),\n",
+ " ('strain',\n",
+ " 'a tiredness of the eyes caused by prolonged close work by a person with an uncorrected vision problem'),\n",
+ " ('tooth',\n",
+ " 'one of the four pointed conical teeth (two in each jaw) located between the incisors and the premolars'),\n",
+ " ('wash',\n",
+ " 'lotion consisting of a solution used as a cleanser for the eyes'),\n",
+ " ('witness', 'a spectator who can describe what happened')]},\n",
+ " {'answer': 'farm',\n",
+ " 'hint': 'farm _',\n",
+ " 'clues': [('hand', 'a hired hand on a farm'),\n",
+ " ('house', 'house for a farmer and family'),\n",
+ " ('land', 'a rural area where farming is practiced'),\n",
+ " ('stead', 'the buildings and adjacent grounds of a farm'),\n",
+ " ('yard', 'an area adjacent to farm buildings')]},\n",
+ " {'answer': 'feed',\n",
+ " 'hint': 'feed _',\n",
+ " 'clues': [('back',\n",
+ " 'the process in which part of the output of a system is returned to its input in order to regulate its further output'),\n",
+ " ('bag',\n",
+ " 'a canvas bag that is used to feed an animal (such as a horse); covers the muzzle and fastens at the top of the head'),\n",
+ " ('lot', 'a building where livestock are fattened for market'),\n",
+ " ('stock',\n",
+ " 'the raw material that is required for some industrial process')]},\n",
+ " {'answer': 'finger',\n",
+ " 'hint': 'finger _',\n",
+ " 'clues': [('board',\n",
+ " 'a guidepost resembling a hand with a pointing index finger'),\n",
+ " ('mark', 'a smudge made by a (dirty) finger'),\n",
+ " ('nail', 'the nail at the end of a finger'),\n",
+ " ('print',\n",
+ " 'a print made by an impression of the ridges in the skin of a finger; often used for biometric identification in criminal investigations'),\n",
+ " ('tip', 'the end (tip) of a finger')]},\n",
+ " {'answer': 'fire',\n",
+ " 'hint': 'fire _',\n",
+ " 'clues': [('arm', 'a portable gun'),\n",
+ " ('ball', 'an especially luminous meteor (sometimes exploding)'),\n",
+ " ('bomb',\n",
+ " 'a bomb that is designed to start fires; is most effective against flammable targets (such as fuel)'),\n",
+ " ('box', 'a furnace (as on a steam locomotive) in which fuel is burned'),\n",
+ " ('brand', 'a piece of wood that has been burned or is burning'),\n",
+ " ('break',\n",
+ " 'a narrow field that has been cleared to check the spread of a prairie fire or forest fire'),\n",
+ " ('brick',\n",
+ " 'brick made of fire clay; used for lining e.g. furnaces and chimneys'),\n",
+ " ('bug', 'a criminal who illegally sets fire to property'),\n",
+ " ('cracker',\n",
+ " 'firework consisting of a small explosive charge and fuse in a heavy paper casing'),\n",
+ " ('damp',\n",
+ " 'a mixture of gases (mostly methane) that form in coal mines and become explosive when mixed with air'),\n",
+ " ('fighter',\n",
+ " 'a member of a fire department who tries to extinguish fires'),\n",
+ " ('fly', 'tropical American click beetle having bright luminous spots'),\n",
+ " ('guard',\n",
+ " 'a narrow field that has been cleared to check the spread of a prairie fire or forest fire'),\n",
+ " ('house', 'a station housing fire apparatus and firemen'),\n",
+ " ('light', 'the light of a fire (especially in a fireplace)'),\n",
+ " ('place',\n",
+ " 'an open recess in a wall at the base of a chimney where a fire can be built'),\n",
+ " ('plug',\n",
+ " 'an upright hydrant for drawing water to use in fighting a fire'),\n",
+ " ('power',\n",
+ " '(military) the relative capacity for delivering fire on a target'),\n",
+ " ('side',\n",
+ " 'an area near a fireplace (usually paved and extending out into a room)'),\n",
+ " ('storm',\n",
+ " 'a storm in which violent winds are drawn into the column of hot air rising over a severely bombed area'),\n",
+ " ('trap',\n",
+ " 'a building that would be hard to escape from if it were to catch fire'),\n",
+ " ('wall', '(colloquial) the application of maximum thrust'),\n",
+ " ('water', 'any strong spirits (such as strong whisky or rum)'),\n",
+ " ('wood', 'wood used for fuel'),\n",
+ " ('work',\n",
+ " '(usually plural) a device with an explosive that burns at a low rate and with colored flames; can be used to illuminate areas or send signals etc.')]},\n",
+ " {'answer': 'fish',\n",
+ " 'hint': 'fish _',\n",
+ " 'clues': [('bowl', 'a state of affairs in which you have no privacy'),\n",
+ " ('hook', 'a sharp barbed hook for catching fish'),\n",
+ " ('monger', 'someone who sells fish'),\n",
+ " ('net', 'a net that will enclose fish when it is pulled in'),\n",
+ " ('pond', 'a freshwater pond with fish'),\n",
+ " ('wife', 'someone who sells fish')]},\n",
+ " {'answer': 'flag',\n",
+ " 'hint': 'flag _',\n",
+ " 'clues': [('pole',\n",
+ " 'surveying instrument consisting of a straight rod painted in bands of alternate red and white each one foot wide; used for sightings by surveyors'),\n",
+ " ('ship', 'the chief one of a related group'),\n",
+ " ('staff',\n",
+ " 'a town in north central Arizona; site of an important observatory'),\n",
+ " ('stone',\n",
+ " 'stratified stone that splits into pieces suitable as paving stones')]},\n",
+ " {'answer': 'flash',\n",
+ " 'hint': 'flash _',\n",
+ " 'clues': [('back',\n",
+ " 'a transition (in literary or theatrical works or films) to an earlier event or scene that interrupts the normal chronological development of the story'),\n",
+ " ('bulb', 'a lamp for providing momentary light to take a photograph'),\n",
+ " ('card',\n",
+ " 'a card with words or numbers or pictures that is flashed to a class by the teacher'),\n",
+ " ('gun', 'a lamp for providing momentary light to take a photograph'),\n",
+ " ('light', 'a small portable battery-powered electric lamp')]},\n",
+ " {'answer': 'flat',\n",
+ " 'hint': 'flat _',\n",
+ " 'clues': [('bed', 'freight car without permanent sides or roof'),\n",
+ " ('boat',\n",
+ " 'a flatbottom boat for carrying heavy loads (especially on canals)'),\n",
+ " ('car', 'freight car without permanent sides or roof'),\n",
+ " ('fish',\n",
+ " 'sweet lean whitish flesh of any of numerous thin-bodied fish; usually served as thin fillets'),\n",
+ " ('foot', 'a policeman who patrols a given region'),\n",
+ " ('iron', 'an iron that was heated by placing it on a stove'),\n",
+ " ('mate', 'an associate who shares an apartment with you'),\n",
+ " ('top', 'a closely cropped haircut; usually for men'),\n",
+ " ('ware',\n",
+ " 'tableware that is relatively flat and fashioned as a single piece'),\n",
+ " ('worm', 'parasitic or free-living worms having a flattened body')]},\n",
+ " {'answer': 'fly',\n",
+ " 'hint': 'fly _',\n",
+ " 'clues': [('catcher',\n",
+ " 'any of a large group of small songbirds that feed on insects taken on the wing'),\n",
+ " ('leaf', 'a blank leaf in the front or back of a book'),\n",
+ " ('over',\n",
+ " 'bridge formed by the upper level of a crossing of two highways at different levels'),\n",
+ " ('paper',\n",
+ " 'paper that is poisoned or coated with a sticky substance to kill flies'),\n",
+ " ('past',\n",
+ " 'a flight at a low altitude (usually of military aircraft) over spectators on the ground'),\n",
+ " ('speck', 'a tiny dark speck made by the excrement of a fly'),\n",
+ " ('swatter',\n",
+ " 'an implement with a flat part (of mesh or plastic) and a long handle; used to kill insects'),\n",
+ " ('way', 'the geographic route along which birds customarily migrate'),\n",
+ " ('weight', 'weighs no more than 115 pounds'),\n",
+ " ('wheel',\n",
+ " 'regulator consisting of a heavy wheel that stores kinetic energy and smooths the operation of a reciprocating engine')]},\n",
+ " {'answer': 'foot',\n",
+ " 'hint': 'foot _',\n",
+ " 'clues': [('ball',\n",
+ " \"any of various games played with a ball (round or oval) in which two teams try to kick or carry or propel the ball into each other's goal\"),\n",
+ " ('bridge', 'a bridge designed for pedestrians'),\n",
+ " ('fall', 'the sound of a step of someone walking'),\n",
+ " ('hill', 'a relatively low hill on the lower slope of a mountain'),\n",
+ " ('hold',\n",
+ " 'an area in hostile territory that has been captured and is held awaiting further troops and supplies'),\n",
+ " ('lights',\n",
+ " 'theater light at the front of a stage that illuminate the set and actors'),\n",
+ " ('locker',\n",
+ " 'a trunk for storing personal possessions; usually kept at the foot of a bed (as in a barracks)'),\n",
+ " ('note', 'a printed note placed below the text on a printed page'),\n",
+ " ('path', 'a trodden path'),\n",
+ " ('plate',\n",
+ " 'the platform in the cab of a locomotive on which the engineer stands to operate the controls'),\n",
+ " ('print', 'a mark of a foot or shoe on a surface'),\n",
+ " ('race', 'a race run on foot'),\n",
+ " ('rest', 'a low seat or a stool to rest the feet of a seated person'),\n",
+ " ('step', 'the sound of a step of someone walking'),\n",
+ " ('stool', 'a low seat or a stool to rest the feet of a seated person'),\n",
+ " ('wear', \"clothing worn on a person's feet\"),\n",
+ " ('work', 'the manner of using the feet')]},\n",
+ " {'answer': 'fore',\n",
+ " 'hint': 'fore _',\n",
+ " 'clues': [('ground', 'the part of a scene that is near the viewer'),\n",
+ " ('head', 'the part of the face above the eyes'),\n",
+ " ('mast', 'the mast nearest the bow in vessels with two or more masts'),\n",
+ " ('name', 'the name that precedes the surname'),\n",
+ " ('runner',\n",
+ " 'a person who goes before or announces the coming of another')]},\n",
+ " {'answer': 'four',\n",
+ " 'hint': 'four _',\n",
+ " 'clues': [('pence', 'a former English silver coin worth four pennies'),\n",
+ " ('score', 'the cardinal number that is the product of ten and eight'),\n",
+ " ('some', 'four people considered as a unit'),\n",
+ " ('square',\n",
+ " '(geometry) a plane rectangle with four equal sides and four right angles; a four-sided regular polygon')]},\n",
+ " {'answer': 'fox',\n",
+ " 'hint': 'fox _',\n",
+ " 'clues': [('glove', 'any of several plants of the genus Digitalis'),\n",
+ " ('hole',\n",
+ " 'a small dugout with a pit for individual shelter against enemy fire'),\n",
+ " ('hound',\n",
+ " 'medium-sized glossy-coated hounds developed for hunting foxes'),\n",
+ " ('hunt', 'mounted hunters follow hounds in pursuit of a fox'),\n",
+ " ('trot',\n",
+ " 'a ballroom dance in quadruple time; combines short and long and fast and slow steps fixed sequences')]},\n",
+ " {'answer': 'free',\n",
+ " 'hint': 'free _',\n",
+ " 'clues': [('hold', 'an estate held in fee simple or for life'),\n",
+ " ('holder', 'the owner of a freehold'),\n",
+ " ('lance',\n",
+ " 'a writer or artist who sells services to different employers without a long-term contract with any of them'),\n",
+ " ('loader', 'someone who takes advantage of the generosity of others'),\n",
+ " ('masonry',\n",
+ " 'a natural or instinctive fellowship between people of similar interests'),\n",
+ " ('stone',\n",
+ " 'fruit (especially peach) whose flesh does not adhere to the pit'),\n",
+ " ('style',\n",
+ " 'a race (as in swimming) in which each contestant has a free choice of the style to use'),\n",
+ " ('thinker',\n",
+ " 'a person who believes that God created the universe and then abandoned it'),\n",
+ " ('thinking',\n",
+ " 'the doctrine that reason is the right basis for regulating conduct'),\n",
+ " ('ware', 'software that is provided without charge'),\n",
+ " ('way', 'a broad highway designed for high-speed traffic'),\n",
+ " ('wheel',\n",
+ " 'a clutch (as on the rear wheel of a bicycle) that allows wheels to turn freely (as in coasting)')]},\n",
+ " {'answer': 'gate',\n",
+ " 'hint': 'gate _',\n",
+ " 'clues': [('crasher',\n",
+ " 'someone who gets in (to a party) without an invitation or without paying'),\n",
+ " ('house',\n",
+ " \"a house built at a gateway; usually the gatekeeper's residence\"),\n",
+ " ('keeper', 'someone who controls access to something'),\n",
+ " ('post', 'either of two posts that bound a gate'),\n",
+ " ('way', 'an entrance that can be closed by a gate')]},\n",
+ " {'answer': 'goal',\n",
+ " 'hint': 'goal _',\n",
+ " 'clues': [('keeper',\n",
+ " 'the soccer or hockey player assigned to protect the goal'),\n",
+ " ('mouth', '(sports) the area immediately in front of the goal'),\n",
+ " ('post',\n",
+ " 'one of a pair of posts (usually joined by a crossbar) that are set up as a goal at each end of a playing field'),\n",
+ " ('tender', 'the soccer or hockey player assigned to protect the goal')]},\n",
+ " {'answer': 'god',\n",
+ " 'hint': 'god _',\n",
+ " 'clues': [('child',\n",
+ " 'an infant who is sponsored by an adult (the godparent) at baptism'),\n",
+ " ('daughter', 'a female godchild'),\n",
+ " ('father', 'any man who serves as a sponsor for a child at baptism'),\n",
+ " ('mother', 'any woman who serves as a sponsor for a child at baptism'),\n",
+ " ('parent', 'a person who sponsors someone (the godchild) at baptism'),\n",
+ " ('send',\n",
+ " 'a sudden happening that brings good fortune (as a sudden opportunity to make money)'),\n",
+ " ('son', 'a male godchild')]},\n",
+ " {'answer': 'gold',\n",
+ " 'hint': 'gold _',\n",
+ " 'clues': [('brick',\n",
+ " 'a soldier who performs his duties without proper care or effort'),\n",
+ " ('field', 'a district where gold is mined'),\n",
+ " ('finch', 'American finch whose male has yellow body plumage in summer'),\n",
+ " ('fish',\n",
+ " 'small golden or orange-red freshwater fishes of Eurasia used as pond or aquarium fishes'),\n",
+ " ('mine', 'a good source of something that is desired'),\n",
+ " ('smith', 'an artisan who makes jewelry and other objects out of gold')]},\n",
+ " {'answer': 'grand',\n",
+ " 'hint': 'grand _',\n",
+ " 'clues': [('aunt', 'an aunt of your father or mother'),\n",
+ " ('child', 'a child of your son or daughter'),\n",
+ " ('dad', 'the father of your father or mother'),\n",
+ " ('daddy', 'the father of your father or mother'),\n",
+ " ('daughter', 'a female grandchild'),\n",
+ " ('father', 'the father of your father or mother'),\n",
+ " ('master',\n",
+ " 'a player of exceptional or world class skill in chess or bridge'),\n",
+ " ('mother', 'the mother of your father or mother'),\n",
+ " ('nephew', 'a son of your niece or nephew'),\n",
+ " ('niece', 'a daughter of your niece or nephew'),\n",
+ " ('parent', 'a parent of your father or mother'),\n",
+ " ('son', 'a male grandchild'),\n",
+ " ('stand', 'the audience at a stadium or racetrack'),\n",
+ " ('uncle', 'an uncle of your father or mother')]},\n",
+ " {'answer': 'green',\n",
+ " 'hint': 'green _',\n",
+ " 'clues': [('back',\n",
+ " 'a piece of paper money (especially one issued by a central bank)'),\n",
+ " ('belt', 'a belt of parks or rural land surrounding a town or city'),\n",
+ " ('fly', 'greenish aphid; pest on garden and crop plants'),\n",
+ " ('gage', 'sweet green or greenish-yellow variety of plum'),\n",
+ " ('grocer', 'a grocer who sells fresh fruits and vegetables'),\n",
+ " ('horn', 'an awkward and inexperienced youth'),\n",
+ " ('house',\n",
+ " 'a building with glass walls and roof; for the cultivation and exhibition of plants under controlled conditions'),\n",
+ " ('mail',\n",
+ " '(corporation) the practice of purchasing enough shares in a firm to threaten a takeover and thereby forcing the owners to buy those shares back at a premium in order to stay in business'),\n",
+ " ('room',\n",
+ " 'a backstage room in a theater where performers rest or have visitors'),\n",
+ " ('sward',\n",
+ " 'surface layer of ground containing a mat of grass and grass roots'),\n",
+ " ('wood', 'woodlands in full leaf')]},\n",
+ " {'answer': 'ground',\n",
+ " 'hint': 'ground _',\n",
+ " 'clues': [('breaking',\n",
+ " 'the ceremonial breaking of the ground to formally begin a construction project'),\n",
+ " ('hog', 'reddish brown North American marmot'),\n",
+ " ('nut',\n",
+ " 'a North American vine with fragrant blossoms and edible tubers; important food crop of Native Americans'),\n",
+ " ('sheet',\n",
+ " 'a waterproofed piece of cloth spread on the ground (as under a tent) to protect from moisture'),\n",
+ " ('work',\n",
+ " 'the fundamental assumptions from which something is begun or developed or calculated or explained')]},\n",
+ " {'answer': 'gun',\n",
+ " 'hint': 'gun _',\n",
+ " 'clues': [('boat',\n",
+ " 'a small shallow-draft boat carrying mounted guns; used by costal patrols'),\n",
+ " ('fight',\n",
+ " 'a fight involving shooting small arms with the intent to kill or frighten'),\n",
+ " ('fire', 'the act of shooting a gun'),\n",
+ " ('metal',\n",
+ " 'a type of bronze used for parts subject to wear or corrosion (especially corrosion by sea water)'),\n",
+ " ('point', \"the gun muzzle's direction\"),\n",
+ " ('powder',\n",
+ " 'a mixture of potassium nitrate, charcoal, and sulfur in a 75:15:10 ratio which is used in gunnery, time fuses, and fireworks'),\n",
+ " ('runner', 'a smuggler of guns'),\n",
+ " ('running',\n",
+ " 'the smuggling of guns and ammunition into a country secretly and illegally'),\n",
+ " ('shot', 'the act of shooting a gun'),\n",
+ " ('slinger', 'a professional killer who uses a gun'),\n",
+ " ('smith', 'someone who makes or repairs guns'),\n",
+ " ('wale',\n",
+ " 'wale at the top of the side of boat; topmost planking of a wooden vessel')]},\n",
+ " {'answer': 'hair',\n",
+ " 'hint': 'hair _',\n",
+ " 'clues': [('ball',\n",
+ " 'a compact mass of hair that forms in the alimentary canal (especially in the stomach of animals as a result of licking fur)'),\n",
+ " ('brush', \"a brush used to groom a person's hair\"),\n",
+ " ('care',\n",
+ " 'care for the hair: the activity of washing or cutting or curling or arranging the hair'),\n",
+ " ('cloth',\n",
+ " 'cloth woven from horsehair or camelhair; used for upholstery or stiffening in garments'),\n",
+ " ('cut', 'the style in which hair has been cut'),\n",
+ " ('dresser', 'someone who cuts or beautifies hair'),\n",
+ " ('dressing', 'a toiletry for the hair'),\n",
+ " ('grip',\n",
+ " 'a flat wire hairpin whose prongs press tightly together; used to hold bobbed hair in place'),\n",
+ " ('line', 'a very thin line'),\n",
+ " ('net',\n",
+ " 'a small net that some women wear over their hair to keep it in place'),\n",
+ " ('piece',\n",
+ " 'a covering or bunch of human or artificial hair used for disguise or adornment'),\n",
+ " ('pin', \"a double pronged pin used to hold women's hair in place\"),\n",
+ " ('splitter', 'a disputant who makes unreasonably fine distinctions'),\n",
+ " ('splitting', 'making too fine distinctions of little importance'),\n",
+ " ('spring',\n",
+ " 'a fine spiral spring that regulates the movement of the balance wheel in a timepiece'),\n",
+ " ('style', \"the arrangement of the hair (especially a woman's hair)\"),\n",
+ " ('stylist', 'someone who cuts or beautifies hair')]},\n",
+ " {'answer': 'half',\n",
+ " 'hint': 'half _',\n",
+ " 'clues': [('back',\n",
+ " '(football) the running back who plays the offensive halfback position'),\n",
+ " ('penny', 'an English coin worth half a penny'),\n",
+ " ('time', 'an intermission between the first and second half of a game'),\n",
+ " ('tone', 'a print obtained from photoengraving')]},\n",
+ " {'answer': 'hand',\n",
+ " 'hint': 'hand _',\n",
+ " 'clues': [('bag',\n",
+ " 'a container used for carrying money and small personal items or accessories (especially by women)'),\n",
+ " ('ball', 'a small rubber ball used in playing the game of handball'),\n",
+ " ('barrow',\n",
+ " 'a rectangular frame with handles at both ends; carried by two people'),\n",
+ " ('basin',\n",
+ " \"a basin for washing the hands (`wash-hand basin' is a British expression)\"),\n",
+ " ('bill',\n",
+ " 'an advertisement (usually printed on a page or in a leaflet) intended for wide distribution'),\n",
+ " ('book',\n",
+ " 'a concise reference book providing specific information about a subject or location'),\n",
+ " ('car', 'a small railroad car propelled by hand or by a small motor'),\n",
+ " ('clasp',\n",
+ " \"grasping and shaking a person's hand (as to acknowledge an introduction or to agree on a contract)\"),\n",
+ " ('craft', 'a work produced by hand labor'),\n",
+ " ('cuff',\n",
+ " 'shackle that consists of a metal loop that can be locked around the wrist; usually used in pairs'),\n",
+ " ('gun', 'a firearm that is held and fired with one hand'),\n",
+ " ('hold', 'an appendage to hold onto'),\n",
+ " ('kerchief',\n",
+ " 'a square piece of cloth used for wiping the eyes or nose or as a costume accessory'),\n",
+ " ('maid', 'in a subordinate position'),\n",
+ " ('maiden', 'in a subordinate position'),\n",
+ " ('out',\n",
+ " 'an announcement distributed to members of the press in order to supplement or replace an oral presentation'),\n",
+ " ('over', 'act of relinquishing property or authority etc'),\n",
+ " ('rail',\n",
+ " 'a railing at the side of a staircase or balcony to prevent people from falling'),\n",
+ " ('saw', 'a saw used with one hand for cutting wood'),\n",
+ " ('set',\n",
+ " 'telephone set with the mouthpiece and earpiece mounted on a single handle'),\n",
+ " ('shake',\n",
+ " \"grasping and shaking a person's hand (as to acknowledge an introduction or to agree on a contract)\"),\n",
+ " ('shaking',\n",
+ " \"grasping and shaking a person's hand (as to acknowledge an introduction or to agree on a contract)\"),\n",
+ " ('spring',\n",
+ " 'an acrobatic feat in which a person goes from a standing position to a handstand and back again'),\n",
+ " ('stand',\n",
+ " 'the act of supporting yourself by your hands alone in an upside down position'),\n",
+ " ('work', 'a work produced by hand labor'),\n",
+ " ('writing', 'something written by hand')]},\n",
+ " {'answer': 'hard',\n",
+ " 'hint': 'hard _',\n",
+ " 'clues': [('back', 'a book with cardboard or cloth or leather covers'),\n",
+ " ('ball', 'a no-nonsense attitude in business or politics'),\n",
+ " ('board',\n",
+ " 'a cheap hard material made from wood chips that are pressed together and bound with synthetic resin'),\n",
+ " ('cover', 'a book with cardboard or cloth or leather covers'),\n",
+ " ('liner', 'a conservative who is uncompromising'),\n",
+ " ('tack', \"very hard unsalted biscuit or bread; a former ship's staple\"),\n",
+ " ('top', 'a car that resembles a convertible but has a fixed rigid top'),\n",
+ " ('ware', 'major items of military weaponry (as tanks or missile)'),\n",
+ " ('wood',\n",
+ " 'the wood of broad-leaved dicotyledonous trees (as distinguished from the wood of conifers)')]},\n",
+ " {'answer': 'hay',\n",
+ " 'hint': 'hay _',\n",
+ " 'clues': [('cock',\n",
+ " 'a small cone-shaped pile of hay that has been left in the field until it is dry enough to carry to the hayrick'),\n",
+ " ('field', 'a field where grass or alfalfa are grown to be made into hay'),\n",
+ " ('loft', 'a loft in a barn where hay is stored'),\n",
+ " ('making', 'taking full advantage of an opportunity while it lasts'),\n",
+ " ('mow', 'a mass of hay piled up in a barn for preservation'),\n",
+ " ('rick', 'a stack of hay'),\n",
+ " ('seed', 'a person who is not very intelligent or interested in culture'),\n",
+ " ('stack', 'a stack of hay'),\n",
+ " ('wire', 'wire for tying up bales of hay')]},\n",
+ " {'answer': 'head',\n",
+ " 'hint': 'head _',\n",
+ " 'clues': [('ache',\n",
+ " 'something or someone that causes anxiety; a source of unhappiness'),\n",
+ " ('band', 'a band worn around or over the head'),\n",
+ " ('board', 'a vertical board or panel forming the head of a bedstead'),\n",
+ " ('cheese',\n",
+ " 'sausage or jellied loaf made of chopped parts of the head meat and sometimes feet and tongue of a calf or pig'),\n",
+ " ('count', 'number of people in a particular group'),\n",
+ " ('dress', 'clothing for the head'),\n",
+ " ('gear', 'clothing for the head'),\n",
+ " ('hunter', 'a recruiter of personnel (especially for corporations)'),\n",
+ " ('lamp',\n",
+ " 'a powerful light with reflector; attached to the front of an automobile or locomotive'),\n",
+ " ('land',\n",
+ " 'a natural elevation (especially a rocky one that juts out into the sea)'),\n",
+ " ('light',\n",
+ " 'a powerful light with reflector; attached to the front of an automobile or locomotive'),\n",
+ " ('line', 'the heading or caption of a newspaper article'),\n",
+ " ('lock',\n",
+ " \"a wrestling hold in which the opponent's head is locked between the crook of your elbow and the side of your body\"),\n",
+ " ('master', 'presiding officer of a school'),\n",
+ " ('mastership', 'the position of headmaster'),\n",
+ " ('mistress', 'a woman headmaster'),\n",
+ " ('phone',\n",
+ " 'electro-acoustic transducer for converting electric signals into sounds; it is held over or inserted into the ear'),\n",
+ " ('piece',\n",
+ " \"the band that is the part of a bridle that fits around a horse's head\"),\n",
+ " ('pin',\n",
+ " 'the front bowling pin in the triangular arrangement of ten pins'),\n",
+ " ('quarters',\n",
+ " '(usually plural) the office that serves as the administrative center of an enterprise'),\n",
+ " ('rest',\n",
+ " \"a cushion attached to the top of the back of an automobile's seat to prevent whiplash\"),\n",
+ " ('room',\n",
+ " 'vertical space available to allow easy passage under something'),\n",
+ " ('scarf', 'a kerchief worn over the head and tied under the chin'),\n",
+ " ('set', 'receiver consisting of a pair of headphones'),\n",
+ " ('stall',\n",
+ " \"the band that is the part of a bridle that fits around a horse's head\"),\n",
+ " ('stand',\n",
+ " 'an acrobatic feat in which a person balances on the head (usually with the help of the hands)'),\n",
+ " ('stock',\n",
+ " 'the stationary support in a machine or power tool that supports and drives a revolving part (as a chuck or the spindle on a lathe)'),\n",
+ " ('stone', 'the central building block at the top of an arch or vault'),\n",
+ " ('waiter',\n",
+ " 'a dining-room attendant who is in charge of the waiters and the seating of customers'),\n",
+ " ('way', 'vertical space available to allow easy passage under something'),\n",
+ " ('wind', 'wind blowing opposite to the path of a ship or aircraft'),\n",
+ " ('word', 'a content word that can be qualified by a modifier')]},\n",
+ " {'answer': 'heart',\n",
+ " 'hint': 'heart _',\n",
+ " 'clues': [('ache',\n",
+ " 'intense sorrow caused by loss of a loved one (especially by death)'),\n",
+ " ('beat',\n",
+ " 'the rhythmic contraction and expansion of the arteries with each beat of the heart'),\n",
+ " ('break',\n",
+ " 'intense sorrow caused by loss of a loved one (especially by death)'),\n",
+ " ('burn',\n",
+ " 'a painful burning sensation in the chest caused by gastroesophageal reflux (backflow from the stomach irritating the esophagus); symptomatic of an ulcer or a diaphragmatic hernia or other disorder'),\n",
+ " ('land',\n",
+ " 'the central region of a country or continent; especially a region that is important to a country or to a culture'),\n",
+ " ('sickness', 'feeling downcast and disheartened and hopeless'),\n",
+ " ('strings', 'your deepest feelings of love and compassion'),\n",
+ " ('throb', 'an object of infatuation'),\n",
+ " ('wood',\n",
+ " 'the older inactive central wood of a tree or woody plant; usually darker and denser than the surrounding sapwood')]},\n",
+ " {'answer': 'high',\n",
+ " 'hint': 'high _',\n",
+ " 'clues': [('ball',\n",
+ " 'a mixed drink made of alcoholic liquor mixed with water or a carbonated beverage and served in a tall glass'),\n",
+ " ('boy',\n",
+ " 'a tall chest of drawers divided into two sections and supported on four legs'),\n",
+ " ('brow', 'a person of intellectual or erudite tastes'),\n",
+ " ('chair',\n",
+ " 'a chair for feeding a very young child; has four long legs and a footrest and a detachable tray'),\n",
+ " ('land', 'elevated (e.g., mountainous) land'),\n",
+ " ('light', 'the most interesting or memorable part'),\n",
+ " ('lighter', 'a cosmetic used to highlight the eyes or cheekbones'),\n",
+ " ('road', 'a highway'),\n",
+ " ('way', 'a major road for any form of motor transport')]},\n",
+ " {'answer': 'home',\n",
+ " 'hint': 'home _',\n",
+ " 'clues': [('body',\n",
+ " 'a person who seldom goes anywhere; one not given to wandering or travel'),\n",
+ " ('coming', 'an annual school or university reunion for graduates'),\n",
+ " ('land', 'the country where you were born'),\n",
+ " ('maker',\n",
+ " 'a wife who manages a household while her husband earns the family income'),\n",
+ " ('making', 'the management of a household'),\n",
+ " ('owner', 'someone who owns a home'),\n",
+ " ('page', 'the opening page of a web site'),\n",
+ " ('room',\n",
+ " 'a classroom in which all students in a particular grade (or in a division of a grade) meet at certain times under the supervision of a teacher who takes attendance and does other administrative business'),\n",
+ " ('sickness', 'a longing to return home'),\n",
+ " ('spun',\n",
+ " 'a rough loosely woven fabric originally made with yarn that was spun at home'),\n",
+ " ('stead', 'the home and adjacent grounds occupied by a family'),\n",
+ " ('stretch', 'the end of an enterprise'),\n",
+ " ('town',\n",
+ " 'the town (or city) where you grew up or where you have your principal residence'),\n",
+ " ('work',\n",
+ " 'preparatory school work done outside school (especially at home)')]},\n",
+ " {'answer': 'honey',\n",
+ " 'hint': 'honey _',\n",
+ " 'clues': [('bee',\n",
+ " 'social bee often domesticated for the honey it produces'),\n",
+ " ('comb',\n",
+ " 'a structure of small hexagonal cells constructed from beeswax by bees and used to store honey and larvae'),\n",
+ " ('dew',\n",
+ " 'the fruit of a variety of winter melon vine; a large smooth greenish-white melon with pale green flesh'),\n",
+ " ('moon', 'a holiday taken by a newly married couple'),\n",
+ " ('pot',\n",
+ " 'South African shrub whose flowers when open are cup-shaped resembling artichokes'),\n",
+ " ('suckle', 'shrub or vine of the genus Lonicera')]},\n",
+ " {'answer': 'horse',\n",
+ " 'hint': 'horse _',\n",
+ " 'clues': [('back', 'the back of a horse'),\n",
+ " ('box',\n",
+ " 'a conveyance (railroad car or trailer) for transporting racehorses'),\n",
+ " ('flesh', 'the flesh of horses as food'),\n",
+ " ('fly', 'winged fly parasitic on horses'),\n",
+ " ('hair', 'hair taken from the mane or tail of a horse'),\n",
+ " ('hide', 'leather from the hide of a horse'),\n",
+ " ('laugh', 'a loud laugh that sounds like a horse neighing'),\n",
+ " ('play', 'rowdy or boisterous play'),\n",
+ " ('power', 'a unit of power equal to 746 watts'),\n",
+ " ('radish',\n",
+ " 'the root of the horseradish plant; it is grated or ground and used for seasoning'),\n",
+ " ('shoe',\n",
+ " 'game equipment consisting of an open ring of iron used in playing horseshoes'),\n",
+ " ('tail',\n",
+ " 'perennial rushlike flowerless herbs with jointed hollow stems and narrow toothlike leaves that spread by creeping rhizomes; tend to become weedy; common in northern hemisphere; some in Africa and South America'),\n",
+ " ('whip', 'a whip for controlling horses'),\n",
+ " ('whipping', 'the act of whipping with a horsewhip')]},\n",
+ " {'answer': 'hot',\n",
+ " 'hint': 'hot _',\n",
+ " 'clues': [('bed',\n",
+ " 'a situation that is ideal for rapid development (especially of something bad)'),\n",
+ " ('box', 'a journal bearing (as of a railroad car) that has overheated'),\n",
+ " ('cake', 'a flat cake of thin batter fried on both sides on a griddle'),\n",
+ " ('dog',\n",
+ " 'someone who performs dangerous stunts to attract attention to himself'),\n",
+ " ('foot',\n",
+ " \"a practical joke that involves inserting a match surreptitiously between the sole and upper of the victim's shoe and then lighting it\"),\n",
+ " ('head', 'a belligerent grouch'),\n",
+ " ('house',\n",
+ " 'a greenhouse in which plants are arranged in a pleasing manner'),\n",
+ " ('plate',\n",
+ " 'a portable electric appliance for heating or cooking or keeping food warm'),\n",
+ " ('pot', 'a stew of meat and potatoes cooked in a tightly covered pot'),\n",
+ " ('shot', 'someone who is dazzlingly skilled in any field')]},\n",
+ " {'answer': 'house',\n",
+ " 'hint': 'house _',\n",
+ " 'clues': [('boat',\n",
+ " 'a barge that is designed and equipped for use as a dwelling'),\n",
+ " ('breaker',\n",
+ " \"a burglar who unlawfully breaks into and enters another person's house\"),\n",
+ " ('breaking',\n",
+ " 'trespassing for an unlawful purpose; illegal entrance into premises with criminal intent'),\n",
+ " ('cleaning',\n",
+ " '(figurative) the act of reforming by the removal of unwanted personnel or practices or conditions'),\n",
+ " ('coat', 'a loose dressing gown for women'),\n",
+ " ('fly',\n",
+ " 'common fly that frequents human habitations and spreads many diseases'),\n",
+ " ('hold', 'a social unit living together'),\n",
+ " ('holder', 'someone who owns a home'),\n",
+ " ('husband',\n",
+ " 'a husband who keeps house while his wife earns the family income'),\n",
+ " ('keeper',\n",
+ " 'a servant who is employed to perform domestic task in a household'),\n",
+ " ('keeping', 'the work of cleaning and running a house'),\n",
+ " ('lights',\n",
+ " \"lights that illuminate the audience's part of a theater or other auditorium\"),\n",
+ " ('maid', 'a female domestic'),\n",
+ " ('master', 'teacher in charge of a school boardinghouse'),\n",
+ " ('mate', 'someone who resides in the same house with you'),\n",
+ " ('mother',\n",
+ " 'a woman employed as a chaperon in a residence for young people'),\n",
+ " ('plant',\n",
+ " 'any of a variety of plants grown indoors for decorative purposes'),\n",
+ " ('room', 'space for accommodation in a house'),\n",
+ " ('top', 'the roof of a house'),\n",
+ " ('warming',\n",
+ " 'a party of people assembled to celebrate moving into a new home'),\n",
+ " ('wife',\n",
+ " 'a wife who manages a household while her husband earns the family income'),\n",
+ " ('work', 'the work of cleaning and running a house')]},\n",
+ " {'answer': 'ice',\n",
+ " 'hint': 'ice _',\n",
+ " 'clues': [('berg',\n",
+ " 'a large mass of ice floating at sea; usually broken off of a polar glacier'),\n",
+ " ('boat',\n",
+ " 'a ship with a reinforced bow to break up ice and keep channels open for navigation'),\n",
+ " ('box', 'white goods in which food can be stored at low temperatures'),\n",
+ " ('breaker',\n",
+ " 'a ship with a reinforced bow to break up ice and keep channels open for navigation'),\n",
+ " ('cap',\n",
+ " 'a mass of ice and snow that permanently covers a large area of land (e.g., the polar regions or a mountain peak)'),\n",
+ " ('pick',\n",
+ " 'pick consisting of a steel rod with a sharp point; used for breaking up blocks of ice')]},\n",
+ " {'answer': 'iron',\n",
+ " 'hint': 'iron _',\n",
+ " 'clues': [('clad',\n",
+ " 'a wooden warship of the 19th century that is plated with iron or steel armor'),\n",
+ " ('monger', 'someone who sells hardware'),\n",
+ " ('ware', 'instrumentalities (tools or implements) made of metal'),\n",
+ " ('wood',\n",
+ " 'handsome East Indian evergreen tree often planted as an ornamental for its fragrant white flowers that yield a perfume; source of very heavy hardwood used for railroad ties'),\n",
+ " ('work', 'work made of iron (gratings or rails or railings etc)')]},\n",
+ " {'answer': 'jack',\n",
+ " 'hint': 'jack _',\n",
+ " 'clues': [('ass', 'a man who is a stupid incompetent fool'),\n",
+ " ('boot', \"(19th century) a man's high tasseled boot\"),\n",
+ " ('hammer', 'a hammer driven by compressed air'),\n",
+ " ('knife', 'a large knife with one or more folding blades'),\n",
+ " ('pot', 'the cumulative amount involved in a game (such as poker)'),\n",
+ " ('rabbit', 'large hare of western North America'),\n",
+ " ('straw',\n",
+ " 'a thin strip of wood used in playing the game of jackstraws')]},\n",
+ " {'answer': 'key',\n",
+ " 'hint': 'key _',\n",
+ " 'clues': [('board',\n",
+ " 'device consisting of a set of keys on a piano or organ or typewriter or typesetting machine or computer or the like'),\n",
+ " ('hole', 'the hole where a key is inserted'),\n",
+ " ('note', 'the principal theme in a speech or literary work'),\n",
+ " ('pad',\n",
+ " 'a keyboard that is a data input device for computers; arrangement of keys is modelled after the typewriter keyboard'),\n",
+ " ('stone', 'a central cohesive source of support and stability'),\n",
+ " ('stroke',\n",
+ " 'the stroke of a key; one depression of a key on a keyboard')]},\n",
+ " {'answer': 'knock',\n",
+ " 'hint': 'knock _',\n",
+ " 'clues': [('about', 'a sloop with a simplified rig and no bowsprit'),\n",
+ " ('down', 'a blow that knocks the opponent off his feet'),\n",
+ " ('off', 'an unauthorized copy or imitation'),\n",
+ " ('out', 'a very attractive or seductive looking woman')]},\n",
+ " {'answer': 'lady',\n",
+ " 'hint': 'lady _',\n",
+ " 'clues': [('bird',\n",
+ " 'small round bright-colored and spotted beetle that usually feeds on aphids and other insect pests'),\n",
+ " ('bug',\n",
+ " 'small round bright-colored and spotted beetle that usually feeds on aphids and other insect pests'),\n",
+ " ('finger', 'small finger-shaped sponge cake'),\n",
+ " ('love', \"a woman who is a man's sweetheart\")]},\n",
+ " {'answer': 'lamp',\n",
+ " 'hint': 'lamp _',\n",
+ " 'clues': [('black',\n",
+ " 'a black colloidal substance consisting wholly or principally of amorphous carbon and used to make pigments and ink'),\n",
+ " ('light', 'light from a lamp'),\n",
+ " ('lighter',\n",
+ " '(when gas was used for streetlights) a person who lights and extinguishes streetlights'),\n",
+ " ('post',\n",
+ " 'a metal post supporting an outdoor lamp (such as a streetlight)'),\n",
+ " ('shade',\n",
+ " 'a protective ornamental shade used to screen a light bulb from direct view')]},\n",
+ " {'answer': 'land',\n",
+ " 'hint': 'land _',\n",
+ " 'clues': [('fall',\n",
+ " 'the seacoast first sighted on a voyage (or flight over water)'),\n",
+ " ('fill', 'a low area that has been filled in'),\n",
+ " ('holder', 'a holder or proprietor of land'),\n",
+ " ('holding', 'ownership of land; the state or fact of owning land'),\n",
+ " ('lady', 'a landlord who is a woman'),\n",
+ " ('lord', 'a landowner who leases to others'),\n",
+ " ('lubber', 'a person who lives and works on land'),\n",
+ " ('mark',\n",
+ " 'the position of a prominent or well-known object in a particular landscape'),\n",
+ " ('mass', 'a large continuous extent of land'),\n",
+ " ('owner', 'a holder or proprietor of land'),\n",
+ " ('scape', 'an expanse of scenery that can be seen in a single view'),\n",
+ " ('slide', 'an overwhelming electoral victory'),\n",
+ " ('slip',\n",
+ " 'a slide of a large mass of dirt and rock down a mountain or cliff')]},\n",
+ " {'answer': 'lap',\n",
+ " 'hint': 'lap _',\n",
+ " 'clues': [('board', 'writing board used on the lap as a table or desk'),\n",
+ " ('dog', 'a dog small and tame enough to be held in the lap'),\n",
+ " ('top', 'a portable computer small enough to use in your lap'),\n",
+ " ('wing', 'large crested Old World plover having wattles and spurs')]},\n",
+ " {'answer': 'law',\n",
+ " 'hint': 'law _',\n",
+ " 'clues': [('breaker', 'someone who violates the law'),\n",
+ " ('giver', 'a maker of laws; someone who gives a code of laws'),\n",
+ " ('maker', 'a maker of laws; someone who gives a code of laws'),\n",
+ " ('making', 'the act of making or enacting laws'),\n",
+ " ('suit',\n",
+ " 'a comprehensive term for any proceeding in a court of law whereby an individual seeks a legal remedy')]},\n",
+ " {'answer': 'lay',\n",
+ " 'hint': 'lay _',\n",
+ " 'clues': [('about', 'person who does no work'),\n",
+ " ('off', 'the act of laying off an employee or a work force'),\n",
+ " ('out', 'a plan or design of something that is laid out'),\n",
+ " ('over', 'a brief stay in the course of a journey'),\n",
+ " ('person', 'someone who is not a clergyman or a professional person')]},\n",
+ " {'answer': 'life',\n",
+ " 'hint': 'life _',\n",
+ " 'clues': [('blood', 'the blood considered as the seat of vitality'),\n",
+ " ('boat',\n",
+ " 'a strong sea boat designed to rescue people from a sinking ship'),\n",
+ " ('guard',\n",
+ " 'an attendant employed at a beach or pool to protect swimmers from accidents'),\n",
+ " ('line',\n",
+ " 'a crease on the palm; its length is said by palmists to indicate how long you will live'),\n",
+ " ('saver',\n",
+ " 'an attendant employed at a beach or pool to protect swimmers from accidents'),\n",
+ " ('saving', 'saving the lives of drowning persons'),\n",
+ " ('span',\n",
+ " 'the period during which something is functional (as between birth and death)'),\n",
+ " ('style',\n",
+ " \"a manner of living that reflects the person's values and attitudes\"),\n",
+ " ('time',\n",
+ " 'the period during which something is functional (as between birth and death)'),\n",
+ " ('work', 'the principal work of your career')]},\n",
+ " {'answer': 'lock',\n",
+ " 'hint': 'lock _',\n",
+ " 'clues': [('jaw',\n",
+ " 'an acute and serious infection of the central nervous system caused by bacterial infection of open wounds; spasms of the jaw and laryngeal muscles may occur during the late stages'),\n",
+ " ('out',\n",
+ " \"a management action resisting employee's demands; employees are barred from entering the workplace until they agree to terms\"),\n",
+ " ('smith', 'someone who makes or repairs locks'),\n",
+ " ('step', 'a standard procedure that is followed mindlessly')]},\n",
+ " {'answer': 'long',\n",
+ " 'hint': 'long _',\n",
+ " 'clues': [('boat',\n",
+ " 'the largest boat carried by a merchant sailing vessel'),\n",
+ " ('bow',\n",
+ " 'a powerful wooden bow drawn by hand; usually 5-6 feet long; used in medieval England'),\n",
+ " ('hand',\n",
+ " 'rapid handwriting in which letters are set down in full and are cursively connected within words without lifting the writing implement from the paper'),\n",
+ " ('horn',\n",
+ " 'long-horned beef cattle formerly common in southwestern United States'),\n",
+ " ('ways',\n",
+ " 'country dancing performed with couples in two long lines facing each other')]},\n",
+ " {'answer': 'low',\n",
+ " 'hint': 'low _',\n",
+ " 'clues': [('boy',\n",
+ " 'a low chest or table with drawers and supported on four legs'),\n",
+ " ('brow', 'a person who is uninterested in intellectual pursuits'),\n",
+ " ('land', 'low level country'),\n",
+ " ('life', 'a person who is deemed to be despicable or contemptible')]},\n",
+ " {'answer': 'main',\n",
+ " 'hint': 'main _',\n",
+ " 'clues': [('frame',\n",
+ " 'a large digital computer serving 100-400 users and occupying a special air-conditioned room'),\n",
+ " ('land',\n",
+ " 'the main land mass of a country or continent; as distinguished from an island or peninsula'),\n",
+ " ('mast', 'the chief mast of a sailing vessel with two or more masts'),\n",
+ " ('sail', 'the lowermost sail on the mainmast'),\n",
+ " ('spring',\n",
+ " 'the most important spring in a mechanical device (especially a clock or watch); as it uncoils it drives the mechanism'),\n",
+ " ('stay', 'a prominent supporter'),\n",
+ " ('stream', 'the prevailing current of thought')]},\n",
+ " {'answer': 'man',\n",
+ " 'hint': 'man _',\n",
+ " 'clues': [('drill',\n",
+ " 'baboon of west Africa with a bright red and blue muzzle and blue hindquarters'),\n",
+ " ('hole',\n",
+ " 'a hole (usually with a flush cover) through which a person can gain access to an underground structure'),\n",
+ " ('hunt',\n",
+ " 'an organized search (by police) for a person (charged with a crime)'),\n",
+ " ('kind', 'all of the living human inhabitants of the earth'),\n",
+ " ('power', 'the force of workers available'),\n",
+ " ('servant', 'a man servant'),\n",
+ " ('slaughter', 'homicide without malice aforethought'),\n",
+ " ('trap', 'a very attractive or seductive looking woman')]},\n",
+ " {'answer': 'match',\n",
+ " 'hint': 'match _',\n",
+ " 'clues': [('book', 'a small folder of paper safety matches'),\n",
+ " ('box', 'a box for holding matches'),\n",
+ " ('lock',\n",
+ " 'an early style of musket; a slow-burning wick would be lowered into a hole in the breech to ignite the charge'),\n",
+ " ('maker',\n",
+ " 'someone who arranges (or tries to arrange) marriages for others'),\n",
+ " ('making', 'mediation in order to bring about a marriage between others'),\n",
+ " ('stick', 'a short thin stick of wood used in making matches'),\n",
+ " ('wood', 'wood in small pieces or splinters')]},\n",
+ " {'answer': 'mid',\n",
+ " 'hint': 'mid _',\n",
+ " 'clues': [('air', 'some point in the air; above ground level'),\n",
+ " ('day', 'the middle of the day'),\n",
+ " ('field',\n",
+ " '(sports) the middle part of a playing field (as in football or lacrosse)'),\n",
+ " ('land', 'a town in west central Texas'),\n",
+ " ('night', \"12 o'clock at night; the middle of the night\"),\n",
+ " ('point',\n",
+ " 'a point equidistant from the ends of a line or the extremities of a figure'),\n",
+ " ('rib', 'the vein in the center of a leaf'),\n",
+ " ('section', 'the middle area of the human torso (usually in front)'),\n",
+ " ('stream', 'the middle of a stream'),\n",
+ " ('summer', 'June 21, when the sun is at its northernmost point'),\n",
+ " ('term', 'the middle of the gestation period'),\n",
+ " ('way',\n",
+ " 'the place at a fair or carnival where sideshows and similar amusements are located'),\n",
+ " ('week', 'the fourth day of the week; the third working day'),\n",
+ " ('wife', 'a woman skilled in aiding the delivery of babies'),\n",
+ " ('winter', 'the middle of winter')]},\n",
+ " {'answer': 'milk',\n",
+ " 'hint': 'milk _',\n",
+ " 'clues': [('maid', 'a woman who works in a dairy'),\n",
+ " ('shake',\n",
+ " 'frothy drink of milk and flavoring and sometimes fruit or ice cream'),\n",
+ " ('sop', 'a timid man or boy considered childish or unassertive'),\n",
+ " ('weed',\n",
+ " 'any of numerous plants of the genus Asclepias having milky juice and pods that split open releasing seeds with downy tufts')]},\n",
+ " {'answer': 'mill',\n",
+ " 'hint': 'mill _',\n",
+ " 'clues': [('pond',\n",
+ " 'a pond formed by damming a stream to provide a head of water to turn a mill wheel'),\n",
+ " ('race', 'a channel for the water current that turns a millwheel'),\n",
+ " ('stone', '(figurative) something that hinders or handicaps'),\n",
+ " ('wright',\n",
+ " 'a workman who designs or erects mills and milling machinery')]},\n",
+ " {'answer': 'money',\n",
+ " 'hint': 'money _',\n",
+ " 'clues': [('bag', 'a drawstring bag for holding money'),\n",
+ " ('lender', 'someone who lends money at excessive rates of interest'),\n",
+ " ('maker', 'someone who is successful in accumulating wealth'),\n",
+ " ('making', 'the act of making money (and accumulating wealth)')]},\n",
+ " {'answer': 'moon',\n",
+ " 'hint': 'moon _',\n",
+ " 'clues': [('beam', 'a ray of moonlight'),\n",
+ " ('light', 'the light of the Moon'),\n",
+ " ('lighter', 'a person who holds a second job (usually after hours)'),\n",
+ " ('shine', 'the light of the Moon'),\n",
+ " ('stone',\n",
+ " 'a transparent or translucent gemstone with a pearly luster; some specimens are orthoclase feldspar and others are plagioclase feldspar'),\n",
+ " ('walk',\n",
+ " 'a kind of dance step in which the dancer seems to be sliding on the spot')]},\n",
+ " {'answer': 'motor',\n",
+ " 'hint': 'motor _',\n",
+ " 'clues': [('bike',\n",
+ " 'small motorcycle with a low frame and small wheels and elevated handlebars'),\n",
+ " ('boat', 'a boat propelled by an internal-combustion engine'),\n",
+ " ('car',\n",
+ " 'a motor vehicle with four wheels; usually propelled by an internal combustion engine'),\n",
+ " ('cycle', 'a motor vehicle with two wheels and a strong frame'),\n",
+ " ('cycling', 'riding a motorcycle'),\n",
+ " ('cyclist', 'a traveler who rides a motorcycle'),\n",
+ " ('mouth', 'someone who talks incessantly'),\n",
+ " ('way', 'a broad highway designed for high-speed traffic')]},\n",
+ " {'answer': 'neck',\n",
+ " 'hint': 'neck _',\n",
+ " 'clues': [('band', 'a band around the collar of a garment'),\n",
+ " ('lace',\n",
+ " 'jewelry consisting of a cord or chain (often bearing gems) worn about the neck as an ornament (especially by women)'),\n",
+ " ('line', 'the line formed by the edge of a garment around the neck'),\n",
+ " ('tie',\n",
+ " 'neckwear consisting of a long narrow piece of material worn (mostly by men) under a collar and tied in knot at the front')]},\n",
+ " {'answer': 'news',\n",
+ " 'hint': 'news _',\n",
+ " 'clues': [('agent', 'someone who sells newspapers'),\n",
+ " ('boy', 'a boy who delivers newspapers'),\n",
+ " ('cast', 'a broadcast of news or commentary on the news'),\n",
+ " ('caster', 'someone who broadcasts the news'),\n",
+ " ('dealer', 'someone who sells newspapers'),\n",
+ " ('flash',\n",
+ " 'a short news announcement concerning some on-going news story'),\n",
+ " ('letter',\n",
+ " 'report or open letter giving informal or confidential news of interest to a special group'),\n",
+ " ('paper',\n",
+ " 'a daily or weekly publication on folded sheets; contains news and articles and advertisements'),\n",
+ " ('print',\n",
+ " 'cheap paper made from wood pulp and used for printing newspapers'),\n",
+ " ('reader', 'someone who reads out broadcast news bulletin'),\n",
+ " ('reel', 'a short film and commentary about current events'),\n",
+ " ('room',\n",
+ " 'the staff of a newspaper or the news department of a periodical'),\n",
+ " ('stand', 'a stall where newspapers and other periodicals are sold')]},\n",
+ " {'answer': 'night',\n",
+ " 'hint': 'night _',\n",
+ " 'clues': [('cap', 'an alcoholic drink taken at bedtime; often alcoholic'),\n",
+ " ('clothes', 'garments designed to be worn in bed'),\n",
+ " ('club',\n",
+ " 'a spot that is open late at night and that provides entertainment (as singers or dancers) as well as dancing and food and drink'),\n",
+ " ('dress',\n",
+ " 'lingerie consisting of a loose dress designed to be worn in bed by women'),\n",
+ " ('fall', 'the time of day immediately following sunset'),\n",
+ " ('gown',\n",
+ " 'lingerie consisting of a loose dress designed to be worn in bed by women'),\n",
+ " ('hawk', 'a person who likes to be active late at night'),\n",
+ " ('life',\n",
+ " 'the entertainment available to people seeking nighttime diversion'),\n",
+ " ('mare', 'a situation resembling a terrifying dream'),\n",
+ " ('shade',\n",
+ " 'any of numerous shrubs or herbs or vines of the genus Solanum; most are poisonous though many bear edible fruit'),\n",
+ " ('shirt', 'nightclothes worn by men'),\n",
+ " ('spot',\n",
+ " 'a spot that is open late at night and that provides entertainment (as singers or dancers) as well as dancing and food and drink'),\n",
+ " ('stick', 'a short stout club used primarily by policemen'),\n",
+ " ('time',\n",
+ " 'the time after sunset and before sunrise while it is dark outside'),\n",
+ " ('wear', 'garments designed to be worn in bed')]},\n",
+ " {'answer': 'nose',\n",
+ " 'hint': 'nose _',\n",
+ " 'clues': [('bag',\n",
+ " 'a canvas bag that is used to feed an animal (such as a horse); covers the muzzle and fastens at the top of the head'),\n",
+ " ('bleed', 'bleeding from the nose'),\n",
+ " ('dive', 'a sudden sharp drop or rapid decline'),\n",
+ " ('gay', 'an arrangement of flowers that is usually given as a present')]},\n",
+ " {'answer': 'nut',\n",
+ " 'hint': 'nut _',\n",
+ " 'clues': [('case', 'someone deranged and possibly dangerous'),\n",
+ " ('cracker', 'a compound lever used to crack nuts open'),\n",
+ " ('hatch',\n",
+ " 'any of various small short-tailed songbirds with strong feet and a sharp beak that feed on small nuts and insects'),\n",
+ " ('house', 'pejorative terms for an insane asylum'),\n",
+ " ('shell', 'the shell around the kernel of a nut')]},\n",
+ " {'answer': 'off',\n",
+ " 'hint': 'off _',\n",
+ " 'clues': [('print',\n",
+ " 'a separately printed article that originally appeared in a larger publication'),\n",
+ " ('set', 'the time at which something is supposed to begin'),\n",
+ " ('side',\n",
+ " '(sport) the mistake of occupying an illegal position on the playing field (in football, soccer, ice hockey, field hockey, etc.)'),\n",
+ " ('spring', 'the immediate descendants of a person'),\n",
+ " ('stage', 'a stage area out of sight of the audience')]},\n",
+ " {'answer': 'oil',\n",
+ " 'hint': 'oil _',\n",
+ " 'clues': [('can', 'a can with a long nozzle to apply oil to machinery'),\n",
+ " ('cloth',\n",
+ " 'cloth treated on one side with a drying oil or synthetic resin'),\n",
+ " ('field',\n",
+ " 'a region rich in petroleum deposits (especially one with producing oil wells)'),\n",
+ " ('seed', 'any of several seeds that yield oil'),\n",
+ " ('skin',\n",
+ " 'a macintosh made from cotton fabric treated with oil and pigment to make it waterproof')]},\n",
+ " {'answer': 'out',\n",
+ " 'hint': 'out _',\n",
+ " 'clues': [('back', 'the bush country of the interior of Australia'),\n",
+ " ('field',\n",
+ " 'the area of a baseball playing field beyond the lines connecting the bases'),\n",
+ " ('fitter', \"someone who sells men's clothes\"),\n",
+ " ('skirts', 'outlying areas (as of a city or town)'),\n",
+ " ('station', 'a station in a remote or sparsely populated location')]},\n",
+ " {'answer': 'over',\n",
+ " 'hint': 'over _',\n",
+ " 'clues': [('abundance', 'the state of being more than full'),\n",
+ " ('achiever',\n",
+ " 'a student who attains higher standards than the IQ indicated'),\n",
+ " ('acting', 'poor acting by a ham actor'),\n",
+ " ('age',\n",
+ " 'a surplus or excess of money or merchandise that is actually on hand and that exceeds expectations'),\n",
+ " ('all',\n",
+ " '(usually plural) work clothing consisting of denim trousers (usually with a bib and shoulder straps)'),\n",
+ " ('bid', 'a bid that is higher than preceding bids'),\n",
+ " ('bite',\n",
+ " '(dentistry) malocclusion in which the upper teeth extend abnormally far over the lower teeth'),\n",
+ " ('burden',\n",
+ " 'the surface soil that must be moved away to get at coal seams and mineral deposits'),\n",
+ " ('cast', 'the state of the sky when it is covered by clouds'),\n",
+ " ('charge', 'a price that is too high'),\n",
+ " ('coat', 'a heavy coat worn over clothes in winter'),\n",
+ " ('confidence',\n",
+ " 'total certainty or greater certainty than circumstances warrant'),\n",
+ " ('draft', 'a draft in excess of the credit balance'),\n",
+ " ('drive',\n",
+ " 'the state of high or excessive activity or productivity or concentration'),\n",
+ " ('eating', 'eating to excess (personified as one of the deadly sins)'),\n",
+ " ('emphasis', 'too much emphasis'),\n",
+ " ('estimate', 'an appraisal that is too high'),\n",
+ " ('estimation', 'an appraisal that is too high'),\n",
+ " ('exertion',\n",
+ " 'excessive exertion; so much exertion that discomfort or injury results'),\n",
+ " ('exposure',\n",
+ " 'the act of exposing film to too much light or for too long a time'),\n",
+ " ('feeding', 'excessive feeding'),\n",
+ " ('flight',\n",
+ " 'a flight by an aircraft over a particular area (especially over an area in foreign territory)'),\n",
+ " ('flow', 'a large flow'),\n",
+ " ('growth',\n",
+ " 'excessive size; usually caused by excessive secretion of growth hormone from the pituitary gland'),\n",
+ " ('hang', 'projection that extends beyond or hangs over something else'),\n",
+ " ('haul', 'periodic maintenance on a car or machine'),\n",
+ " ('head',\n",
+ " 'the expense of maintaining property (e.g., paying property taxes and utilities and insurance); it does not include depreciation or the cost of financing or income taxes'),\n",
+ " ('indulgence', 'excessive indulgence'),\n",
+ " ('kill',\n",
+ " 'the capability to obliterate a target with more weapons (especially nuclear weapons) than are required'),\n",
+ " ('lap',\n",
+ " 'a representation of common ground between theories or phenomena'),\n",
+ " ('lapping',\n",
+ " 'covering with a design in which one element covers a part of another (as with tiles or shingles)'),\n",
+ " ('lay',\n",
+ " 'protective covering consisting, for example, of a layer of boards applied to the studs and joists of a building to strengthen it and serve as a foundation for a weatherproof exterior'),\n",
+ " ('load',\n",
+ " 'an electrical load that exceeds the available electrical power'),\n",
+ " ('look', 'a high place affording a good view'),\n",
+ " ('lord', 'a person who has general authority over others'),\n",
+ " ('much', 'a quantity that is more than what is appropriate'),\n",
+ " ('pass',\n",
+ " 'bridge formed by the upper level of a crossing of two highways at different levels'),\n",
+ " ('payment', 'a payment larger than needed or expected'),\n",
+ " ('population', 'too much population'),\n",
+ " ('pressure',\n",
+ " 'a transient air pressure greater than the surrounding atmospheric pressure'),\n",
+ " ('print', 'something added by overprinting'),\n",
+ " ('production', 'too much production or more than expected'),\n",
+ " ('rating', 'a calculation that results in an estimate that is too high'),\n",
+ " ('reaction',\n",
+ " 'an excessive reaction; a reaction with inappropriate emotional behavior'),\n",
+ " ('ride',\n",
+ " 'a manually operated device to correct the operation of an automatic device'),\n",
+ " ('run', 'too much production or more than expected'),\n",
+ " ('seer', 'a person who directs and manages an organization'),\n",
+ " ('shoe', 'footwear that protects your shoes from water or snow or cold'),\n",
+ " ('shoot', 'an approach that fails and gives way to another attempt'),\n",
+ " ('sight',\n",
+ " 'an unintentional omission resulting from failure to notice something'),\n",
+ " ('spill',\n",
+ " 'the relocation of people from overcrowded cities; they are accommodated in new houses or apartments in smaller towns'),\n",
+ " ('statement', 'making to seem more important than it really is'),\n",
+ " ('supply', 'the quality of being so overabundant that prices fall'),\n",
+ " ('taking',\n",
+ " 'going by something that is moving in order to get in front of it'),\n",
+ " ('throw',\n",
+ " 'the termination of a ruler or institution (especially by force)'),\n",
+ " ('time', 'work done in addition to regular working hours'),\n",
+ " ('tone', '(usually plural) an ulterior implicit meaning or quality'),\n",
+ " ('turn', 'the act of upsetting something'),\n",
+ " ('use', 'exploitation to the point of diminishing returns'),\n",
+ " ('valuation', 'an appraisal that is too high'),\n",
+ " ('view', 'a general summary of a subject'),\n",
+ " ('weight', 'the property of excessive fatness'),\n",
+ " ('work', 'the act of working too much or too long')]},\n",
+ " {'answer': 'paper',\n",
+ " 'hint': 'paper _',\n",
+ " 'clues': [('back', 'a book with paper covers'),\n",
+ " ('board', 'a cardboard suitable for making posters'),\n",
+ " ('boy', 'a boy who sells or delivers newspapers'),\n",
+ " ('clip', 'a wire or plastic clip for holding sheets of paper together'),\n",
+ " ('hanger', 'someone who passes bad checks or counterfeit paper money'),\n",
+ " ('hanging', 'the application of wallpaper'),\n",
+ " ('weight', 'a weight used to hold down a stack of papers'),\n",
+ " ('work',\n",
+ " 'work that involves handling papers: forms or letters or reports etc.')]},\n",
+ " {'answer': 'para',\n",
+ " 'hint': 'para _',\n",
+ " 'clues': [('gliding', 'gliding in a parasail'),\n",
+ " ('medic',\n",
+ " 'a person trained to assist medical professionals and to give emergency medical treatment'),\n",
+ " ('trooper', 'a soldier in the paratroops'),\n",
+ " ('troops', 'infantry trained and equipped to parachute')]},\n",
+ " {'answer': 'pay',\n",
+ " 'hint': 'pay _',\n",
+ " 'clues': [('back',\n",
+ " 'financial return or reward (especially returns equal to the initial investment)'),\n",
+ " ('check', 'a check issued in payment of wages or salary'),\n",
+ " ('day', 'the day on which you receive pay for your work'),\n",
+ " ('load',\n",
+ " 'the front part of a guided missile or rocket or torpedo that carries the nuclear or explosive charge or the chemical or biological agents'),\n",
+ " ('master', 'a person in charge of paying wages'),\n",
+ " ('off', 'the final payment of a debt'),\n",
+ " ('roll', 'a list of employees and their salaries'),\n",
+ " ('slip',\n",
+ " 'a slip of paper included with your pay that records how much money you have earned and how much tax or insurance etc. has been taken out')]},\n",
+ " {'answer': 'pea',\n",
+ " 'hint': 'pea _',\n",
+ " 'clues': [('cock',\n",
+ " 'European butterfly having reddish-brown wings each marked with a purple eyespot'),\n",
+ " ('fowl',\n",
+ " 'very large terrestrial southeast Asian pheasant often raised as an ornamental bird'),\n",
+ " ('hen', 'female peafowl'),\n",
+ " ('nut', 'underground pod of the peanut vine')]},\n",
+ " {'answer': 'peace',\n",
+ " 'hint': 'peace _',\n",
+ " 'clues': [('keeper',\n",
+ " 'a member of a military force that is assigned (often with international sanction) to preserve peace in a trouble area'),\n",
+ " ('keeping',\n",
+ " 'the activity of keeping the peace by military forces (especially when international military forces enforce a truce between hostile groups or nations)'),\n",
+ " ('maker', 'someone who tries to bring peace'),\n",
+ " ('time', 'a period of time during which there is no war')]},\n",
+ " {'answer': 'pig',\n",
+ " 'hint': 'pig _',\n",
+ " 'clues': [('pen', 'a pen for swine'),\n",
+ " ('skin', 'leather from the skin of swine'),\n",
+ " ('sty', 'a pen for swine'),\n",
+ " ('swill',\n",
+ " 'wet feed (especially for pigs) consisting of mostly kitchen waste mixed with water or skimmed or sour milk'),\n",
+ " ('tail', 'a plait of braided hair')]},\n",
+ " {'answer': 'pin',\n",
+ " 'hint': 'pin _',\n",
+ " 'clues': [('ball',\n",
+ " 'a game played on a sloping board; the object is to propel marbles against pins or into pockets'),\n",
+ " ('cushion',\n",
+ " 'a small stiff cushion into which pins are stuck ready for use'),\n",
+ " ('head', 'an ignorant or foolish person'),\n",
+ " ('hole', 'a small puncture that might have been made by a pin'),\n",
+ " ('point', 'a very brief moment'),\n",
+ " ('prick', 'a minor annoyance'),\n",
+ " ('stripe', 'a suit made from a fabric with very thin stripes'),\n",
+ " ('wheel',\n",
+ " 'perennial subshrub of Tenerife having leaves in rosettes resembling pinwheels')]},\n",
+ " {'answer': 'play',\n",
+ " 'hint': 'play _',\n",
+ " 'clues': [('acting', 'the performance of a part or role in a drama'),\n",
+ " ('back', 'the act of reproducing recorded sound'),\n",
+ " ('bill', 'a theatrical program'),\n",
+ " ('book',\n",
+ " 'a notebook containing descriptions and diagrams of the plays that a team has practiced (especially an American football team)'),\n",
+ " ('boy', 'a man devoted to the pursuit of pleasure'),\n",
+ " ('fellow', 'a companion at play'),\n",
+ " ('goer', 'someone who attends the theater'),\n",
+ " ('ground', 'an area where many people go for recreation'),\n",
+ " ('house',\n",
+ " 'plaything consisting of a small model of a house that children can play inside of'),\n",
+ " ('mate', 'a companion at play'),\n",
+ " ('off', 'any final competition to determine a championship'),\n",
+ " ('pen', 'a portable enclosure in which babies may be left to play'),\n",
+ " ('room',\n",
+ " \"a recreation room for noisy activities (parties or children's play etc)\"),\n",
+ " ('school',\n",
+ " 'a small informal nursery group meeting for half-day sessions'),\n",
+ " ('thing', 'an artifact designed to be played with'),\n",
+ " ('time', 'time for play or diversion'),\n",
+ " ('wright', 'someone who writes plays')]},\n",
+ " {'answer': 'post',\n",
+ " 'hint': 'post _',\n",
+ " 'clues': [('bag', \"letter carrier's shoulder bag\"),\n",
+ " ('box', 'public box for deposit of mail'),\n",
+ " ('card', 'a card for sending messages by post without an envelope'),\n",
+ " ('code',\n",
+ " 'a code of letters and digits added to a postal address to aid in the sorting of mail'),\n",
+ " ('mark',\n",
+ " 'a cancellation mark stamped on mail by postal officials; indicates the post office and date of mailing'),\n",
+ " ('master', 'the person in charge of a post office'),\n",
+ " ('mistress', 'a woman postmaster')]},\n",
+ " {'answer': 'pot',\n",
+ " 'hint': 'pot _',\n",
+ " 'clues': [('ash',\n",
+ " 'a potassium compound often used in agriculture and industry'),\n",
+ " ('belly', 'slang for a paunch'),\n",
+ " ('boiler',\n",
+ " 'a literary composition of poor quality that was written quickly to make money (to boil the pot)'),\n",
+ " ('head', 'someone who smokes marijuana habitually'),\n",
+ " ('herb',\n",
+ " 'any of various herbaceous plants whose leaves or stems or flowers are cooked and used for food or seasoning'),\n",
+ " ('holder', 'an insulated pad for holding hot pots'),\n",
+ " ('hole',\n",
+ " 'a pit or hole produced by wear or weathering (especially in a road surface)'),\n",
+ " ('hook', 'an S-shaped hook to suspend a pot over a fire'),\n",
+ " ('luck',\n",
+ " 'whatever happens to be available especially when offered to an unexpected guest or when brought by guests and shared by all'),\n",
+ " ('pie', 'deep-dish meat and vegetable pie or a meat stew with dumplings'),\n",
+ " ('sherd', 'a shard of pottery'),\n",
+ " ('shot',\n",
+ " 'a shot taken at an easy or casual target (as by a pothunter)')]},\n",
+ " {'answer': 'push',\n",
+ " 'hint': 'push _',\n",
+ " 'clues': [('cart',\n",
+ " 'wheeled vehicle that can be pushed by a person; may have one or two or four wheels'),\n",
+ " ('chair',\n",
+ " 'a small vehicle with four wheels in which a baby or child is pushed around'),\n",
+ " ('over', 'someone who is easily taken advantage of'),\n",
+ " ('pin',\n",
+ " 'a tack for attaching papers to a bulletin board or drawing board')]},\n",
+ " {'answer': 'quarter',\n",
+ " 'hint': 'quarter _',\n",
+ " 'clues': [('back', '(football) the person who plays quarterback'),\n",
+ " ('deck', \"the stern area of a ship's upper deck\"),\n",
+ " ('final',\n",
+ " 'one of the four competitions in an elimination tournament whose winners go on to play in the semifinals'),\n",
+ " ('master',\n",
+ " 'an army officer who provides clothing and subsistence for troops'),\n",
+ " ('staff', 'a long stout staff used as a weapon')]},\n",
+ " {'answer': 'quick',\n",
+ " 'hint': 'quick _',\n",
+ " 'clues': [('lime',\n",
+ " 'a white crystalline oxide used in the production of calcium hydroxide'),\n",
+ " ('sand', 'a treacherous situation that tends to entrap and destroy'),\n",
+ " ('silver',\n",
+ " 'a heavy silvery toxic univalent and bivalent metallic element; the only metal that is liquid at ordinary temperatures'),\n",
+ " ('step', 'military march accompanying quick time')]},\n",
+ " {'answer': 'race',\n",
+ " 'hint': 'race _',\n",
+ " 'clues': [('course', 'a course over which races are run'),\n",
+ " ('horse', 'a horse bred for racing'),\n",
+ " ('track', 'a course over which races are run'),\n",
+ " ('way', 'a canal for a current of water')]},\n",
+ " {'answer': 'rag',\n",
+ " 'hint': 'rag _',\n",
+ " 'clues': [('bag', 'a motley assortment of things'),\n",
+ " ('tag', 'disparaging terms for the common people'),\n",
+ " ('time', 'music with a syncopated melody (usually for the piano)'),\n",
+ " ('weed',\n",
+ " 'widespread European weed having yellow daisylike flowers; sometimes an obnoxious weed and toxic to cattle if consumed in quantity'),\n",
+ " ('wort',\n",
+ " 'widespread European weed having yellow daisylike flowers; sometimes an obnoxious weed and toxic to cattle if consumed in quantity')]},\n",
+ " {'answer': 'rain',\n",
+ " 'hint': 'rain _',\n",
+ " 'clues': [('bow',\n",
+ " \"an arc of colored light in the sky caused by refraction of the sun's rays by rain\"),\n",
+ " ('coat', 'a water-resistant coat'),\n",
+ " ('drop', 'a drop of rain'),\n",
+ " ('fall', 'water falling in drops from vapor condensed in the atmosphere'),\n",
+ " ('maker',\n",
+ " 'executive who is very successful in bringing in business to his company or firm'),\n",
+ " ('making', 'activity intended to produce rain'),\n",
+ " ('storm', 'a storm with rain'),\n",
+ " ('water',\n",
+ " 'drops of fresh water that fall as precipitation from clouds')]},\n",
+ " {'answer': 'red',\n",
+ " 'hint': 'red _',\n",
+ " 'clues': [('bird', 'the male is bright red with black wings and tail'),\n",
+ " ('breast', 'small Old World songbird with a reddish breast'),\n",
+ " ('cap', 'a member of the military police in Britain'),\n",
+ " ('coat',\n",
+ " 'British soldier; so-called because of his red coat (especially during the American Revolution)'),\n",
+ " ('head', 'someone who has red hair'),\n",
+ " ('neck', 'a poor White person in the southern United States'),\n",
+ " ('shift',\n",
+ " '(astronomy) a shift in the spectra of very distant galaxies toward longer wavelengths (toward the red end of the spectrum); generally interpreted as evidence that the universe is expanding'),\n",
+ " ('wood',\n",
+ " 'the soft reddish wood of either of two species of sequoia trees')]},\n",
+ " {'answer': 'ring',\n",
+ " 'hint': 'ring _',\n",
+ " 'clues': [('leader',\n",
+ " 'a person who leads (especially in illicit activities)'),\n",
+ " ('master', 'the person in charge of performances in a circus ring'),\n",
+ " ('side',\n",
+ " 'first row of seating; has an unobstructed view of a boxing or wrestling ring'),\n",
+ " ('worm',\n",
+ " 'infections of the skin or nails caused by fungi and appearing as itching circular patches')]},\n",
+ " {'answer': 'road',\n",
+ " 'hint': 'road _',\n",
+ " 'clues': [('bed', 'a bed supporting a road'),\n",
+ " ('block',\n",
+ " 'any condition that makes it difficult to make progress or to achieve an objective'),\n",
+ " ('house',\n",
+ " 'an inn (usually outside city limits on a main road) providing meals and liquor and dancing and (sometimes) gambling'),\n",
+ " ('kill',\n",
+ " 'the dead body of an animal that has been killed on a road by a vehicle'),\n",
+ " ('runner',\n",
+ " 'speedy largely terrestrial bird found from California and Mexico to Texas'),\n",
+ " ('side', 'edge of a way or road or path'),\n",
+ " ('way',\n",
+ " 'a road (especially that part of a road) over which vehicles travel')]},\n",
+ " {'answer': 'round',\n",
+ " 'hint': 'round _',\n",
+ " 'clues': [('about',\n",
+ " 'a road junction at which traffic streams circularly around a central island'),\n",
+ " ('house',\n",
+ " 'workplace consisting of a circular building for repairing locomotives'),\n",
+ " ('table', 'a meeting of peers for discussion and exchange of views'),\n",
+ " ('worm',\n",
+ " 'infections of the skin or nails caused by fungi and appearing as itching circular patches')]},\n",
+ " {'answer': 'run',\n",
+ " 'hint': 'run _',\n",
+ " 'clues': [('about',\n",
+ " 'an open automobile having a front seat and a rumble seat'),\n",
+ " ('away', 'an easy victory'),\n",
+ " ('down',\n",
+ " 'a concluding summary (as in presenting a case before a law court)'),\n",
+ " ('off',\n",
+ " 'the occurrence of surplus liquid (as water) exceeding the limit or capacity')]},\n",
+ " {'answer': 'sail',\n",
+ " 'hint': 'sail _',\n",
+ " 'clues': [('boat', 'a small sailing vessel; usually with a single mast'),\n",
+ " ('cloth',\n",
+ " 'a strong fabric (such as cotton canvas) used for making sails and tents'),\n",
+ " ('fish', 'a saltwater fish with lean flesh'),\n",
+ " ('plane',\n",
+ " 'aircraft supported only by the dynamic action of air against its surfaces')]},\n",
+ " {'answer': 'sales',\n",
+ " 'hint': 'sales _',\n",
+ " 'clues': [('clerk', 'a salesperson in a store'),\n",
+ " ('girl', 'a woman salesperson'),\n",
+ " ('lady', 'a woman salesperson'),\n",
+ " ('person',\n",
+ " 'a person employed to represent a business and to sell its merchandise (as to customers in a store or to customers who are visited)'),\n",
+ " ('room', 'an area where merchandise (such as cars) can be displayed')]},\n",
+ " {'answer': 'salt',\n",
+ " 'hint': 'salt _',\n",
+ " 'clues': [('box',\n",
+ " 'a type of house built in New England; has two stories in front and one behind'),\n",
+ " ('cellar', 'a small container for holding salt at the dining table'),\n",
+ " ('peter', '(KNO3) used especially as a fertilizer and explosive'),\n",
+ " ('shaker', 'a shaker with a perforated top for sprinkling salt'),\n",
+ " ('water', 'water containing salts')]},\n",
+ " {'answer': 'sand',\n",
+ " 'hint': 'sand _',\n",
+ " 'clues': [('bag',\n",
+ " 'a bag filled with sand; used as a weapon or to build walls or as ballast'),\n",
+ " ('bank',\n",
+ " 'a submerged bank of sand near a shore or in a river; can be exposed at low tide'),\n",
+ " ('bar', 'a bar of sand'),\n",
+ " ('blast', 'a blast of wind laden with sand'),\n",
+ " ('blaster',\n",
+ " 'a tool that throws out a blast of steam laden with sand; used to clean or grind hard surfaces'),\n",
+ " ('box', 'mold consisting of a box with sand shaped to mold metal'),\n",
+ " ('lot', 'a vacant lot used by city boys to play games'),\n",
+ " ('paper', 'stiff paper coated with powdered emery or sand'),\n",
+ " ('piper',\n",
+ " 'any of numerous usually small wading birds having a slender bill and piping call; closely related to the plovers'),\n",
+ " ('pit', 'a large pit in sandy ground from which sand is dug'),\n",
+ " ('stone',\n",
+ " 'a sedimentary rock consisting of sand consolidated with some cement (clay or quartz etc.)'),\n",
+ " ('storm', 'a windstorm that lifts up clouds of dust or sand')]},\n",
+ " {'answer': 'saw',\n",
+ " 'hint': 'saw _',\n",
+ " 'clues': [('bones', 'a physician who specializes in surgery'),\n",
+ " ('buck', 'a framework for holding wood that is being sawed'),\n",
+ " ('dust', 'fine particles of wood made by sawing wood'),\n",
+ " ('fly',\n",
+ " 'insect whose female has a saw-like ovipositor for inserting eggs into the leaf or stem tissue of a host plant'),\n",
+ " ('horse', 'a framework for holding wood that is being sawed'),\n",
+ " ('mill', 'a large sawing machine'),\n",
+ " ('tooth', 'a serration on a saw blade')]},\n",
+ " {'answer': 'school',\n",
+ " 'hint': 'school _',\n",
+ " 'clues': [('bag', 'a bag for carrying school books and supplies'),\n",
+ " ('book', 'a book prepared for use in schools or colleges'),\n",
+ " ('boy', 'a boy attending school'),\n",
+ " ('child',\n",
+ " 'a young person attending school (up through senior high school)'),\n",
+ " ('days', 'the time of life when you are going to school'),\n",
+ " ('fellow', 'an acquaintance that you go to school with'),\n",
+ " ('friend', 'a friend who attends the same school'),\n",
+ " ('girl', 'a girl attending school'),\n",
+ " ('house', 'a building where young people receive education'),\n",
+ " ('master', 'presiding officer of a school'),\n",
+ " ('mate', 'an acquaintance that you go to school with'),\n",
+ " ('mistress', 'a woman schoolteacher (especially one regarded as strict)'),\n",
+ " ('room', 'a room in a school where lessons take place'),\n",
+ " ('teacher', 'a teacher in a school below the college level'),\n",
+ " ('work', 'a school task performed by a student to satisfy the teacher'),\n",
+ " ('yard', 'the yard associated with a school')]},\n",
+ " {'answer': 'sea',\n",
+ " 'hint': 'sea _',\n",
+ " 'clues': [('bed', 'the bottom of a sea or ocean'),\n",
+ " ('bird',\n",
+ " 'a bird that frequents coastal waters and the open ocean: gulls; pelicans; gannets; cormorants; albatrosses; petrels; etc.'),\n",
+ " ('board', 'the shore of a sea or ocean regarded as a resort'),\n",
+ " ('coast', 'the shore of a sea or ocean'),\n",
+ " ('faring', 'the work of a sailor'),\n",
+ " ('food',\n",
+ " 'edible fish (broadly including freshwater fish) or shellfish or roe etc'),\n",
+ " ('front', 'the waterfront of a seaside town'),\n",
+ " ('gull',\n",
+ " 'mostly white aquatic bird having long pointed wings and short legs'),\n",
+ " ('horse',\n",
+ " 'either of two large northern marine mammals having ivory tusks and tough hide over thick blubber'),\n",
+ " ('plane', 'an airplane that can land on or take off from water'),\n",
+ " ('port', 'a sheltered port where ships can take on or discharge cargo'),\n",
+ " ('scape', 'a view of the sea'),\n",
+ " ('shell', 'the shell of a marine organism'),\n",
+ " ('shore', 'the shore of a sea or ocean'),\n",
+ " ('sickness', 'motion sickness experienced while traveling on water'),\n",
+ " ('side', 'the shore of a sea or ocean regarded as a resort'),\n",
+ " ('wall',\n",
+ " 'a protective structure of stone or concrete; extends from shore into the water to prevent a beach from washing away'),\n",
+ " ('water', 'water containing salts'),\n",
+ " ('way', 'a lane at sea that is a regularly used route for vessels'),\n",
+ " ('weed', 'plant growing in the sea, especially marine algae'),\n",
+ " ('worthiness', 'fitness to traverse the seas')]},\n",
+ " {'answer': 'share',\n",
+ " 'hint': 'share _',\n",
+ " 'clues': [('cropper', 'small farmers and tenants'),\n",
+ " ('holder', 'someone who holds shares of stock in a corporation'),\n",
+ " ('holding', 'a holding in the form of shares of corporations'),\n",
+ " ('ware',\n",
+ " 'software that is available free of charge; may be distributed for evaluation with a fee requested for additional features or a manual etc.')]},\n",
+ " {'answer': 'sheep',\n",
+ " 'hint': 'sheep _',\n",
+ " 'clues': [('dog',\n",
+ " 'any of various usually long-haired breeds of dog reared to herd and guard sheep'),\n",
+ " ('fold', 'a pen for sheep'),\n",
+ " ('herder',\n",
+ " 'a herder of sheep (on an open range); someone who keeps the sheep together in a flock'),\n",
+ " ('skin',\n",
+ " 'tanned skin of a sheep with the fleece left on; used for clothing')]},\n",
+ " {'answer': 'ship',\n",
+ " 'hint': 'ship _',\n",
+ " 'clues': [('builder',\n",
+ " 'a carpenter who helps build and launch wooden vessels'),\n",
+ " ('building', 'the construction of ships'),\n",
+ " ('load',\n",
+ " 'the amount of cargo that can be held by a boat or ship or a freight car'),\n",
+ " ('mate', 'an associate on the same ship with you'),\n",
+ " ('owner', 'someone who owns a ship or a share in a ship'),\n",
+ " ('wreck', 'a wrecked ship (or a part of one)'),\n",
+ " ('wright', 'a carpenter who helps build and launch wooden vessels'),\n",
+ " ('yard', 'a workplace where ships are built or repaired')]},\n",
+ " {'answer': 'shirt',\n",
+ " 'hint': 'shirt _',\n",
+ " 'clues': [('front',\n",
+ " 'the front of a shirt (usually the part not covered by a jacket)'),\n",
+ " ('sleeve', 'the sleeve of a shirt'),\n",
+ " ('tail', 'a brief addendum at the end of a newspaper article'),\n",
+ " ('waist', 'a blouse with buttons down the front')]},\n",
+ " {'answer': 'shoe',\n",
+ " 'hint': 'shoe _',\n",
+ " 'clues': [('box',\n",
+ " 'a structure resembling a shoebox (as a rectangular building or a cramped room or compartment)'),\n",
+ " ('horn', 'a device used for easing the foot into a shoe'),\n",
+ " ('lace', 'a lace used for fastening shoes'),\n",
+ " ('maker', 'a person who makes or repairs shoes'),\n",
+ " ('shine', 'a shiny finish put on shoes with polish and buffing'),\n",
+ " ('string', 'a lace used for fastening shoes'),\n",
+ " ('tree',\n",
+ " 'a wooden or metal device that is inserted into a shoe to preserve its shape when it is not being worn')]},\n",
+ " {'answer': 'shop',\n",
+ " 'hint': 'shop _',\n",
+ " 'clues': [('front',\n",
+ " 'the front side of a store facing the street; usually contains display windows'),\n",
+ " ('keeper', 'a merchant who owns or manages a shop'),\n",
+ " ('lifter', 'a thief who steals goods that are in a store'),\n",
+ " ('lifting', 'the act of stealing goods that are on display in a store')]},\n",
+ " {'answer': 'short',\n",
+ " 'hint': 'short _',\n",
+ " 'clues': [('bread', 'very rich thick butter cookie'),\n",
+ " ('cake',\n",
+ " 'very short biscuit dough baked as individual biscuits or a round loaf; served with sweetened fruit and usually whipped cream'),\n",
+ " ('coming', 'a failing or deficiency'),\n",
+ " ('cut', 'a route shorter than the usual one'),\n",
+ " ('fall',\n",
+ " 'the property of being an amount by which something is less than expected or required'),\n",
+ " ('hand', 'a method of writing rapidly'),\n",
+ " ('horn', 'English breed of short-horned cattle'),\n",
+ " ('list',\n",
+ " 'a list of applicants winnowed from a longer list who have been deemed suitable and from which the successful person will be chosen'),\n",
+ " ('stop', '(baseball) the person who plays the shortstop position')]},\n",
+ " {'answer': 'show',\n",
+ " 'hint': 'show _',\n",
+ " 'clues': [('boat',\n",
+ " 'a river steamboat on which theatrical performances could be given (especially on the Mississippi River)'),\n",
+ " ('case', 'a setting in which something can be displayed to best effect'),\n",
+ " ('down', 'a hostile disagreement face-to-face'),\n",
+ " ('girl', 'a woman who dances in a chorus line'),\n",
+ " ('jumping',\n",
+ " 'riding horses in competitions over set courses to demonstrate skill in jumping over obstacles'),\n",
+ " ('piece',\n",
+ " 'the outstanding item (the prize piece or main exhibit) in a collection'),\n",
+ " ('place',\n",
+ " 'a place that is frequently exhibited and visited for its historical interest or natural beauty'),\n",
+ " ('room', 'an area where merchandise (such as cars) can be displayed'),\n",
+ " ('stopper',\n",
+ " 'an act so striking or impressive that the show must be delayed until the audience quiets down'),\n",
+ " ('time', 'the time at which something is supposed to begin')]},\n",
+ " {'answer': 'side',\n",
+ " 'hint': 'side _',\n",
+ " 'clues': [('bar',\n",
+ " \"(law) a courtroom conference between the lawyers and the judge that is held out of the jury's hearing\"),\n",
+ " ('board',\n",
+ " 'a removable board fitted on the side of a wagon to increase its capacity'),\n",
+ " ('car', 'a cocktail made of orange liqueur with lemon juice and brandy'),\n",
+ " ('kick',\n",
+ " 'a close friend who accompanies his buddies in their activities'),\n",
+ " ('light',\n",
+ " \"light carried by a boat that indicates the boat's direction; vessels at night carry a red light on the port bow and a green light on the starboard bow\"),\n",
+ " ('line', 'a line that marks the side boundary of a playing field'),\n",
+ " ('saddle',\n",
+ " 'a saddle for a woman; rider sits with both feet on the same side of the horse'),\n",
+ " ('show',\n",
+ " 'a subordinate incident of little importance relative to the main event'),\n",
+ " ('step', 'a step to one side (as in boxing or dancing)'),\n",
+ " ('stroke',\n",
+ " 'a swimming stroke in which the arms move forward and backward while the legs do a scissors kick'),\n",
+ " ('swipe',\n",
+ " 'a glancing blow from or on the side of something (especially motor vehicles)'),\n",
+ " ('track',\n",
+ " 'a short stretch of railroad track used to store rolling stock or enable trains on the same line to pass'),\n",
+ " ('walk',\n",
+ " 'walk consisting of a paved area for pedestrians; usually beside a street or roadway'),\n",
+ " ('wall', 'the side of an automobile tire'),\n",
+ " ('winder',\n",
+ " 'small pale-colored desert rattlesnake of southwestern United States; body moves in an s-shaped curve')]},\n",
+ " {'answer': 'sky',\n",
+ " 'hint': 'sky _',\n",
+ " 'clues': [('cap',\n",
+ " 'a porter who helps passengers with their baggage at an airport'),\n",
+ " ('diver',\n",
+ " 'a person who jumps from a plane and performs various gymnastic maneuvers before pulling the parachute cord'),\n",
+ " ('diving',\n",
+ " 'performing acrobatics in free fall before pulling the ripcord of a parachute'),\n",
+ " ('lark',\n",
+ " 'brown-speckled European lark noted for singing while hovering at a great height'),\n",
+ " ('light', 'a window in a roof to admit daylight'),\n",
+ " ('line', 'the outline of objects seen against the sky'),\n",
+ " ('rocket',\n",
+ " 'propels bright light high in the sky, or used to propel a lifesaving line or harpoon'),\n",
+ " ('scraper', 'a very tall building with many stories'),\n",
+ " ('writing',\n",
+ " 'writing formed in the sky by smoke released from an airplane')]},\n",
+ " {'answer': 'sleep',\n",
+ " 'hint': 'sleep _',\n",
+ " 'clues': [('over',\n",
+ " 'an occasion of spending a night away from home or having a guest spend the night in your home (especially as a party for children)'),\n",
+ " ('walker', 'someone who walks about in their sleep'),\n",
+ " ('walking', 'walking by a person who is asleep'),\n",
+ " ('wear', 'garments designed to be worn in bed')]},\n",
+ " {'answer': 'slip',\n",
+ " 'hint': 'slip _',\n",
+ " 'clues': [('cover',\n",
+ " 'a removable fitted cloth covering for upholstered furniture'),\n",
+ " ('knot',\n",
+ " 'a knot at the end of a cord or rope that can slip along the cord or rope around which it is made'),\n",
+ " ('stream',\n",
+ " 'the flow of air that is driven backwards by an aircraft propeller'),\n",
+ " ('way',\n",
+ " 'structure consisting of a sloping way down to the water from the place where ships are built or repaired')]},\n",
+ " {'answer': 'snow',\n",
+ " 'hint': 'snow _',\n",
+ " 'clues': [('ball',\n",
+ " 'plant having heads of fragrant white trumpet-shaped flowers; grows in sandy arid regions'),\n",
+ " ('bank', 'a mound or heap of snow'),\n",
+ " ('bird', 'medium-sized Eurasian thrush seen chiefly in winter'),\n",
+ " ('board',\n",
+ " 'a board that resembles a broad ski or a small surfboard; used in a standing position to slide down snow-covered slopes'),\n",
+ " ('boarder',\n",
+ " 'someone who slides down snow-covered slopes while standing on a snowboard'),\n",
+ " ('drift', 'a mass of snow heaped up by the wind'),\n",
+ " ('drop',\n",
+ " 'common anemone of eastern North America with solitary pink-tinged white flowers'),\n",
+ " ('fall', 'precipitation falling from clouds in the form of ice crystals'),\n",
+ " ('field', 'a permanent wide expanse of snow'),\n",
+ " ('flake', 'a crystal of snow'),\n",
+ " ('mobile', 'tracked vehicle for travel on snow having skis in front'),\n",
+ " ('plough', 'a vehicle used to push snow from roads'),\n",
+ " ('plow', 'a vehicle used to push snow from roads'),\n",
+ " ('shoe',\n",
+ " 'a device to help you walk on deep snow; a lightweight frame shaped like a racquet is strengthened with cross pieces and contains a network of thongs; one is worn on each foot'),\n",
+ " ('storm', 'a storm with widespread snowfall accompanied by strong winds'),\n",
+ " ('suit', \"a child's overgarment for cold weather\")]},\n",
+ " {'answer': 'soft',\n",
+ " 'hint': 'soft _',\n",
+ " 'clues': [('back', 'a book with paper covers'),\n",
+ " ('ball', 'ball used in playing softball'),\n",
+ " ('ware',\n",
+ " '(computer science) written programs or procedures or rules and associated documentation pertaining to the operation of a computer system and that are stored in read/write memory'),\n",
+ " ('wood',\n",
+ " 'wood that is easy to saw (from conifers such as pine or fir)')]},\n",
+ " {'answer': 'south',\n",
+ " 'hint': 'south _',\n",
+ " 'clues': [('east',\n",
+ " 'the compass point midway between south and east; at 135 degrees'),\n",
+ " ('easter', 'a strong wind from the southeast'),\n",
+ " ('paw', 'a baseball pitcher who throws the ball with the left hand'),\n",
+ " ('west',\n",
+ " 'the compass point midway between south and west; at 225 degrees'),\n",
+ " ('wester', 'a strong wind from the southwest')]},\n",
+ " {'answer': 'space',\n",
+ " 'hint': 'space _',\n",
+ " 'clues': [('craft',\n",
+ " 'a craft capable of traveling in outer space; technically, a satellite around the sun'),\n",
+ " ('flight', \"a voyage outside the Earth's atmosphere\"),\n",
+ " ('ship',\n",
+ " 'a spacecraft designed to carry a crew into interstellar space (especially in science fiction)'),\n",
+ " ('suit', 'a pressure suit worn by astronauts while in outer space')]},\n",
+ " {'answer': 'sports',\n",
+ " 'hint': 'sports _',\n",
+ " 'clues': [('cast', 'a broadcast of sports news or commentary'),\n",
+ " ('caster',\n",
+ " 'an announcer who reads sports news or describes sporting events'),\n",
+ " ('wear', 'attire worn for sport or for casual wear'),\n",
+ " ('writer', 'a journalist who writes about sports')]},\n",
+ " {'answer': 'stand',\n",
+ " 'hint': 'stand _',\n",
+ " 'clues': [('off',\n",
+ " 'the finish of a contest in which the score is tied and the winner is undecided'),\n",
+ " ('pipe', 'a vertical pipe'),\n",
+ " ('point', 'a mental position from which things are viewed'),\n",
+ " ('still',\n",
+ " 'a situation in which no progress can be made or no advancement is possible')]},\n",
+ " {'answer': 'star',\n",
+ " 'hint': 'star _',\n",
+ " 'clues': [('board',\n",
+ " 'the right side of a ship or aircraft to someone who is aboard and facing the bow or nose'),\n",
+ " ('dust', 'a dreamy romantic or sentimental quality'),\n",
+ " ('fish',\n",
+ " 'echinoderms characterized by five arms extending from a central disk'),\n",
+ " ('gazer', 'someone indifferent to the busy world'),\n",
+ " ('gazing', 'observation of the stars'),\n",
+ " ('light', 'the light of the stars')]},\n",
+ " {'answer': 'steam',\n",
+ " 'hint': 'steam _',\n",
+ " 'clues': [('boat', 'a boat propelled by a steam engine'),\n",
+ " ('fitter',\n",
+ " 'a craftsman who installs and maintains equipment for ventilating or heating or refrigerating'),\n",
+ " ('roller',\n",
+ " 'a massive inexorable force that seems to crush everything in its way'),\n",
+ " ('ship', 'a ship powered by one or more steam engines')]},\n",
+ " {'answer': 'steel',\n",
+ " 'hint': 'steel _',\n",
+ " 'clues': [('maker', 'a worker engaged in making steel'),\n",
+ " ('worker', 'a worker engaged in making steel'),\n",
+ " ('works', 'a factory where steel is made'),\n",
+ " ('yard',\n",
+ " 'a portable balance consisting of a pivoted bar with arms of unequal length')]},\n",
+ " {'answer': 'stock',\n",
+ " 'hint': 'stock _',\n",
+ " 'clues': [('broker',\n",
+ " 'an agent in the buying and selling of stocks and bonds'),\n",
+ " ('holder', 'someone who holds shares of stock in a corporation'),\n",
+ " ('pile',\n",
+ " 'something kept back or saved for future use or a special purpose'),\n",
+ " ('piling', 'accumulating and storing a reserve supply'),\n",
+ " ('pot', 'a pot used for preparing soup stock'),\n",
+ " ('room', 'storeroom for storing goods and supplies used in a business'),\n",
+ " ('taking', 'reappraisal of a situation or position or outlook'),\n",
+ " ('yard',\n",
+ " 'enclosed yard where cattle, pigs, horses, or sheep are kept temporarily')]},\n",
+ " {'answer': 'stone',\n",
+ " 'hint': 'stone _',\n",
+ " 'clues': [('mason', 'a craftsman who works with stone or brick'),\n",
+ " ('walling',\n",
+ " 'stalling or delaying especially by refusing to answer questions or cooperate'),\n",
+ " ('ware',\n",
+ " 'ceramic ware that is fired in high heat and vitrified and nonporous'),\n",
+ " ('work', 'masonry done with stone')]},\n",
+ " {'answer': 'stop',\n",
+ " 'hint': 'stop _',\n",
+ " 'clues': [('cock',\n",
+ " 'faucet consisting of a rotating device for regulating flow of a liquid'),\n",
+ " ('gap', 'something contrived to meet an urgent need or emergency'),\n",
+ " ('light',\n",
+ " 'a red light on the rear of a motor vehicle that signals when the brakes are applied to slow or stop'),\n",
+ " ('over', 'a stopping place on a journey'),\n",
+ " ('watch',\n",
+ " 'a timepiece that can be started or stopped for exact timing (as of a race)')]},\n",
+ " {'answer': 'store',\n",
+ " 'hint': 'store _',\n",
+ " 'clues': [('front',\n",
+ " 'the front side of a store facing the street; usually contains display windows'),\n",
+ " ('house', 'a depository for goods'),\n",
+ " ('keeper', 'a merchant who owns or manages a shop'),\n",
+ " ('room', 'a room in which things are stored')]},\n",
+ " {'answer': 'sun',\n",
+ " 'hint': 'sun _',\n",
+ " 'clues': [('bather',\n",
+ " 'someone who basks in the sunshine in order to get a suntan'),\n",
+ " ('beam', 'a ray of sunlight'),\n",
+ " ('block',\n",
+ " 'a cream spread on the skin; contains a chemical (as PABA) to filter out ultraviolet light and so protect from sunburn'),\n",
+ " ('bonnet',\n",
+ " 'a large bonnet that shades the face; worn by girls and women'),\n",
+ " ('burn',\n",
+ " 'a browning of the skin resulting from exposure to the rays of the sun'),\n",
+ " ('burst', 'a sudden emergence of the sun from behind clouds'),\n",
+ " ('dial',\n",
+ " 'timepiece that indicates the daylight hours by the shadow that the gnomon casts on a calibrated dial'),\n",
+ " ('down',\n",
+ " 'the time in the evening at which the sun begins to fall below the horizon'),\n",
+ " ('dress',\n",
+ " 'a light loose sleeveless summer dress with a wide neckline and thin shoulder straps that expose the arms and shoulders'),\n",
+ " ('fish',\n",
+ " 'the lean flesh of any of numerous American perch-like fishes of the family Centrarchidae'),\n",
+ " ('flower',\n",
+ " 'any plant of the genus Helianthus having large flower heads with dark disk florets and showy yellow rays'),\n",
+ " ('glasses',\n",
+ " 'spectacles that are darkened or polarized to protect the eyes from the glare of the sun'),\n",
+ " ('hat',\n",
+ " 'a hat with a broad brim that protects the face from direct exposure to the sun'),\n",
+ " ('lamp', 'a mercury-vapor lamp used in medical or cosmetic treatments'),\n",
+ " ('light', 'the rays of the sun'),\n",
+ " ('rise', 'the first light of day'),\n",
+ " ('roof', 'an automobile roof having a sliding or raisable panel'),\n",
+ " ('screen',\n",
+ " 'a cream spread on the skin; contains a chemical (as PABA) to filter out ultraviolet light and so protect from sunburn'),\n",
+ " ('set',\n",
+ " 'the time in the evening at which the sun begins to fall below the horizon'),\n",
+ " ('shade',\n",
+ " 'a canopy made of canvas to shelter people or things from rain or sun'),\n",
+ " ('shine', 'the rays of the sun'),\n",
+ " ('spot',\n",
+ " \"a cooler darker spot appearing periodically on the sun's photosphere; associated with a strong magnetic field\"),\n",
+ " ('stroke',\n",
+ " 'sudden prostration due to exposure to the sun or excessive heat'),\n",
+ " ('tan',\n",
+ " 'a browning of the skin resulting from exposure to the rays of the sun'),\n",
+ " ('trap',\n",
+ " 'a terrace or garden oriented to take advantage of the sun while protected from cold winds')]},\n",
+ " {'answer': 'sweat',\n",
+ " 'hint': 'sweat _',\n",
+ " 'clues': [('band',\n",
+ " 'a band of fabric or leather sewn inside the crown of a hat'),\n",
+ " ('pants', 'loose-fitting trousers with elastic cuffs; worn by athletes'),\n",
+ " ('shirt',\n",
+ " 'cotton knit pullover with long sleeves worn during athletic activity'),\n",
+ " ('shop',\n",
+ " 'factory where workers do piecework for poor pay and are prevented from forming unions; common in the clothing industry'),\n",
+ " ('suit', 'garment consisting of sweat pants and a sweatshirt')]},\n",
+ " {'answer': 'sweet',\n",
+ " 'hint': 'sweet _',\n",
+ " 'clues': [('bread', 'edible glands of an animal'),\n",
+ " ('brier',\n",
+ " 'Eurasian rose with prickly stems and fragrant leaves and bright pink flowers followed by scarlet hips'),\n",
+ " ('heart', 'a person loved by another person'),\n",
+ " ('meat', 'a sweetened delicacy (as a preserve or pastry)')]},\n",
+ " {'answer': 'table',\n",
+ " 'hint': 'table _',\n",
+ " 'clues': [('cloth', 'a covering spread over a dining table'),\n",
+ " ('land', 'a relatively flat highland'),\n",
+ " ('spoon', 'as much as a tablespoon will hold'),\n",
+ " ('spoonful', 'as much as a tablespoon will hold'),\n",
+ " ('top', 'the top horizontal work surface of a table'),\n",
+ " ('ware',\n",
+ " 'articles for use at the table (dishes and silverware and glassware)')]},\n",
+ " {'answer': 'tail',\n",
+ " 'hint': 'tail _',\n",
+ " 'clues': [('back', '(American football) the person who plays tailback'),\n",
+ " ('board', 'a gate at the rear of a vehicle; can be lowered for loading'),\n",
+ " ('coat', 'formalwear consisting of full evening dress for men'),\n",
+ " ('gate', 'a gate at the rear of a vehicle; can be lowered for loading'),\n",
+ " ('light', 'lamp (usually red) mounted at the rear of a motor vehicle'),\n",
+ " ('piece', 'appendage added to extend the length of something'),\n",
+ " ('pipe', 'a pipe carrying fumes from the muffler to the rear of a car'),\n",
+ " ('plane',\n",
+ " \"the horizontal airfoil of an aircraft's tail assembly that is fixed and to which the elevator is hinged\"),\n",
+ " ('spin',\n",
+ " 'loss of emotional control often resulting in emotional collapse'),\n",
+ " ('wind',\n",
+ " 'wind blowing in the same direction as the path of a ship or aircraft')]},\n",
+ " {'answer': 'take',\n",
+ " 'hint': 'take _',\n",
+ " 'clues': [('away',\n",
+ " 'prepared food that is intended to be eaten off of the premises'),\n",
+ " ('off', 'a departure; especially of airplanes'),\n",
+ " ('out', 'prepared food that is intended to be eaten off of the premises'),\n",
+ " ('over',\n",
+ " 'a sudden and decisive change of government illegally or by force')]},\n",
+ " {'answer': 'tea',\n",
+ " 'hint': 'tea _',\n",
+ " 'clues': [('cake',\n",
+ " 'flat semisweet cookie or biscuit usually served with tea'),\n",
+ " ('cup', 'as much as a teacup will hold'),\n",
+ " ('cupful', 'as much as a teacup will hold'),\n",
+ " ('kettle', 'kettle for boiling water to make tea'),\n",
+ " ('pot', 'pot for brewing tea; usually has a spout and handle'),\n",
+ " ('room', 'a restaurant where tea and light meals are available'),\n",
+ " ('shop', 'a restaurant where tea and light meals are available'),\n",
+ " ('spoon', 'as much as a teaspoon will hold'),\n",
+ " ('spoonful', 'as much as a teaspoon will hold'),\n",
+ " ('time', 'a light midafternoon meal of tea and sandwiches or cakes')]},\n",
+ " {'answer': 'tear',\n",
+ " 'hint': 'tear _',\n",
+ " 'clues': [('away', 'a reckless and impetuous person'),\n",
+ " ('drop',\n",
+ " 'anything shaped like a falling drop (as a pendant gem on an earring)'),\n",
+ " ('gas',\n",
+ " 'a gas that makes the eyes fill with tears but does not damage them; used in dispersing crowds'),\n",
+ " ('jerker', 'an excessively sentimental narrative')]},\n",
+ " {'answer': 'thumb',\n",
+ " 'hint': 'thumb _',\n",
+ " 'clues': [('nail', 'the nail of the thumb'),\n",
+ " ('print',\n",
+ " 'fingerprint made by the thumb (especially by the pad of the thumb)'),\n",
+ " ('screw', 'instrument of torture that crushes the thumb'),\n",
+ " ('tack',\n",
+ " 'a tack for attaching papers to a bulletin board or drawing board')]},\n",
+ " {'answer': 'thunder',\n",
+ " 'hint': 'thunder _',\n",
+ " 'clues': [('bolt', 'a discharge of lightning accompanied by thunder'),\n",
+ " ('clap', 'a single sharp crash of thunder'),\n",
+ " ('cloud',\n",
+ " 'a dark cloud of great vertical extent charged with electricity; associated with thunderstorms'),\n",
+ " ('head',\n",
+ " 'a rounded projecting mass of a cumulus cloud with shining edges; often appears before a thunderstorm'),\n",
+ " ('shower', 'a short rainstorm accompanied by thunder and lightning'),\n",
+ " ('storm',\n",
+ " 'a storm resulting from strong rising air currents; heavy rain or hail along with thunder and lightning')]},\n",
+ " {'answer': 'tide',\n",
+ " 'hint': 'tide _',\n",
+ " 'clues': [('land', 'land near the sea that is overflowed by the tide'),\n",
+ " ('mark',\n",
+ " 'indicator consisting of a line at the highwater or low-water limits of the tides'),\n",
+ " ('water', 'low-lying coastal land drained by tidal streams'),\n",
+ " ('way', 'a channel in which a tidal current runs')]},\n",
+ " {'answer': 'time',\n",
+ " 'hint': 'time _',\n",
+ " 'clues': [('keeper',\n",
+ " '(sports) an official who keeps track of the time elapsed'),\n",
+ " ('keeping', 'the act or process of determining the time'),\n",
+ " ('piece', 'a measuring instrument or device for keeping time'),\n",
+ " ('server',\n",
+ " 'one who conforms to current ways and opinions for personal advantage'),\n",
+ " ('table',\n",
+ " 'a schedule listing events and the times at which they will take place')]},\n",
+ " {'answer': 'tin',\n",
+ " 'hint': 'tin _',\n",
+ " 'clues': [('foil', 'foil made of tin or an alloy of tin and lead'),\n",
+ " ('plate',\n",
+ " 'a thin sheet of metal (iron or steel) coated with tin to prevent rusting; used especially for cans, pots, and tins'),\n",
+ " ('smith', 'someone who makes or repairs tinware'),\n",
+ " ('ware', 'articles of commerce made of tin plate')]},\n",
+ " {'answer': 'tooth',\n",
+ " 'hint': 'tooth _',\n",
+ " 'clues': [('ache', 'an ache localized in or around a tooth'),\n",
+ " ('brush', 'small brush; has long handle; used to clean teeth'),\n",
+ " ('paste', 'a dentifrice in the form of a paste'),\n",
+ " ('pick',\n",
+ " 'pick consisting of a small strip of wood or plastic; used to pick food from between the teeth')]},\n",
+ " {'answer': 'top',\n",
+ " 'hint': 'top _',\n",
+ " 'clues': [('coat', 'a heavy coat worn over clothes in winter'),\n",
+ " ('knot',\n",
+ " 'headdress consisting of a decorative ribbon or bow worn in the hair'),\n",
+ " ('mast',\n",
+ " 'the mast next above a lower mast and topmost in a fore-and-aft rig'),\n",
+ " ('sail',\n",
+ " 'a sail (or either of a pair of sails) immediately above the lowermost sail of a mast and supported by a topmast'),\n",
+ " ('side',\n",
+ " \"(usually plural) weather deck; the part of a ship's hull that is above the waterline\"),\n",
+ " ('soil', 'the layer of soil on the surface'),\n",
+ " ('spin',\n",
+ " 'forward spin (usually of a moving ball) that is imparted by an upward stroke')]},\n",
+ " {'answer': 'touch',\n",
+ " 'hint': 'touch _',\n",
+ " 'clues': [('down',\n",
+ " \"a score in American football; being in possession of the ball across the opponents' goal line\"),\n",
+ " ('line', 'either of the sidelines in soccer or rugby'),\n",
+ " ('screen',\n",
+ " 'a computer display that enables the user to interact with the computer by touching areas on the screen'),\n",
+ " ('stone',\n",
+ " 'a basis for comparison; a reference point against which other things can be evaluated')]},\n",
+ " {'answer': 'tow',\n",
+ " 'hint': 'tow _',\n",
+ " 'clues': [('boat',\n",
+ " 'a powerful small boat designed to pull or push larger ships'),\n",
+ " ('head', 'a person with light blond hair'),\n",
+ " ('line', '(nautical) a rope used in towing'),\n",
+ " ('path', 'a path along a canal or river used by animals towing boats'),\n",
+ " ('rope', '(nautical) a rope used in towing')]},\n",
+ " {'answer': 'turn',\n",
+ " 'hint': 'turn _',\n",
+ " 'clues': [('about', 'a decision to reverse an earlier decision'),\n",
+ " ('around', 'time need to prepare a vessel or ship for a return trip'),\n",
+ " ('buckle',\n",
+ " 'an oblong metal coupling with a swivel at one end and an internal thread at the other into which a threaded rod can be screwed in order to form a unit that can be adjusted for length or tension'),\n",
+ " ('coat',\n",
+ " 'a disloyal person who betrays or deserts his cause or religion or political party or friend etc.'),\n",
+ " ('key', 'someone who guards prisoners'),\n",
+ " ('off', 'something causing antagonism or loss of interest'),\n",
+ " ('out', 'the group that gathers together for a particular occasion'),\n",
+ " ('over',\n",
+ " 'the ratio of the number of workers that had to be replaced in a given time period to the average number of workers'),\n",
+ " ('pike',\n",
+ " '(from 16th to 19th centuries) gates set across a road to prevent passage until a toll had been paid'),\n",
+ " ('stile',\n",
+ " 'a gate consisting of a post that acts as a pivot for rotating arms; set in a passageway for controlling the persons entering'),\n",
+ " ('table',\n",
+ " 'a circular horizontal platform that rotates a phonograph record while it is being played')]},\n",
+ " {'answer': 'type',\n",
+ " 'hint': 'type _',\n",
+ " 'clues': [('face',\n",
+ " 'a specific size and style of type within a type family'),\n",
+ " ('script',\n",
+ " 'typewritten matter especially a typewritten copy of a manuscript'),\n",
+ " ('setter', 'one who sets written material into type'),\n",
+ " ('writer',\n",
+ " 'hand-operated character printer for printing written messages one character at a time'),\n",
+ " ('writing', 'writing done with a typewriter')]},\n",
+ " {'answer': 'under',\n",
+ " 'hint': 'under _',\n",
+ " 'clues': [('achiever',\n",
+ " 'a student who does not perform as well as expected or as well as the IQ indicates'),\n",
+ " ('belly', 'lower side'),\n",
+ " ('brush',\n",
+ " 'the brush (small trees and bushes and ferns etc.) growing beneath taller trees in a wood or forest'),\n",
+ " ('carriage',\n",
+ " 'framework that serves as a support for the body of a vehicle'),\n",
+ " ('charge', 'a price that is too low'),\n",
+ " ('class', 'the social class lowest in the social hierarchy'),\n",
+ " ('clothes',\n",
+ " 'undergarment worn next to the skin and under the outer garments'),\n",
+ " ('clothing',\n",
+ " 'undergarment worn next to the skin and under the outer garments'),\n",
+ " ('coat',\n",
+ " 'seal consisting of a coating of a tar or rubberlike material on the underside of a motor vehicle to retard corrosion'),\n",
+ " ('current',\n",
+ " 'a subdued emotional quality underlying an utterance; implicit meaning'),\n",
+ " ('cut', 'the material removed by a cut made underneath'),\n",
+ " ('dog', 'one at a disadvantage and expected to lose'),\n",
+ " ('estimate',\n",
+ " 'an estimation that is too low; an estimate that is less than the true or actual value'),\n",
+ " ('estimation',\n",
+ " 'an estimation that is too low; an estimate that is less than the true or actual value'),\n",
+ " ('exposure',\n",
+ " 'the act of exposing film to too little light or for too short a time'),\n",
+ " ('frame',\n",
+ " 'the internal supporting structure that gives an artifact its shape'),\n",
+ " ('fur', 'thick soft fur lying beneath the longer and coarser guard hair'),\n",
+ " ('garment', 'a garment worn under other garments'),\n",
+ " ('grad', 'a university student who has not yet received a first degree'),\n",
+ " ('graduate',\n",
+ " 'a university student who has not yet received a first degree'),\n",
+ " ('ground',\n",
+ " 'a secret group organized to overthrow a government or occupation force'),\n",
+ " ('growth',\n",
+ " 'the brush (small trees and bushes and ferns etc.) growing beneath taller trees in a wood or forest'),\n",
+ " ('lay', 'a pad placed under a carpet'),\n",
+ " ('line', 'a line drawn underneath (especially under written matter)'),\n",
+ " ('ling', 'an assistant subject to the authority or control of another'),\n",
+ " ('lip', 'the lower lip'),\n",
+ " ('pants',\n",
+ " 'an undergarment that covers the body from the waist no further than to the thighs; usually worn next to the skin'),\n",
+ " ('part', \"a part lying on the lower side or underneath an animal's body\"),\n",
+ " ('pass',\n",
+ " 'an underground tunnel or passage enabling pedestrians to cross a road or railway'),\n",
+ " ('payment', 'a payment smaller than needed or expected'),\n",
+ " ('production', 'inadequate production or less than expected'),\n",
+ " ('rating',\n",
+ " 'an estimation that is too low; an estimate that is less than the true or actual value'),\n",
+ " ('score', 'a line drawn underneath (especially under written matter)'),\n",
+ " ('secretary',\n",
+ " 'a secretary immediately subordinate to the head of a department of government'),\n",
+ " ('shirt',\n",
+ " \"a collarless men's undergarment for the upper part of the body\"),\n",
+ " ('side', 'the lower side of anything'),\n",
+ " ('skirt', 'undergarment worn under a skirt'),\n",
+ " ('standing', 'the cognitive condition of someone who understands'),\n",
+ " ('statement',\n",
+ " 'a statement that is restrained in ironic contrast to what might have been said'),\n",
+ " ('study', 'an actor able to replace a regular performer when required'),\n",
+ " ('taker', 'one whose business is the management of funerals'),\n",
+ " ('taking', 'any piece of work that is undertaken or attempted'),\n",
+ " ('tone', 'a quiet or hushed tone of voice'),\n",
+ " ('tow', 'an inclination contrary to the strongest or prevailing feeling'),\n",
+ " ('valuation', 'too low a value or price assigned to something'),\n",
+ " ('wear',\n",
+ " 'undergarment worn next to the skin and under the outer garments'),\n",
+ " ('world', 'the criminal class'),\n",
+ " ('writer', 'a banker who deals chiefly in underwriting new securities')]},\n",
+ " {'answer': 'video',\n",
+ " 'hint': 'video _',\n",
+ " 'clues': [('cassette', 'a cassette for videotape'),\n",
+ " ('disc',\n",
+ " 'a digital recording (as of a movie) on an optical disk that can be played on a computer or a television set'),\n",
+ " ('disk',\n",
+ " 'a digital recording (as of a movie) on an optical disk that can be played on a computer or a television set'),\n",
+ " ('tape', 'a video recording made on magnetic tape')]},\n",
+ " {'answer': 'walk',\n",
+ " 'hint': 'walk _',\n",
+ " 'clues': [('about', 'a walking trip or tour'),\n",
+ " ('away', 'an easy victory'),\n",
+ " ('out', 'a strike in which the workers walk out'),\n",
+ " ('over', 'backbends combined with handstands')]},\n",
+ " {'answer': 'wall',\n",
+ " 'hint': 'wall _',\n",
+ " 'clues': [('board',\n",
+ " 'a wide flat board used to cover walls or partitions; made from plaster or wood pulp or other materials and used primarily to form the interior walls of houses'),\n",
+ " ('eye', 'strabismus in which one or both eyes are directed outward'),\n",
+ " ('flower',\n",
+ " 'any of numerous plants of the genus Erysimum having fragrant yellow or orange or brownish flowers'),\n",
+ " ('paper', 'a decorative paper for the walls of rooms')]},\n",
+ " {'answer': 'war',\n",
+ " 'hint': 'war _',\n",
+ " 'clues': [('fare', 'the waging of armed conflict against an enemy'),\n",
+ " ('head',\n",
+ " 'the front part of a guided missile or rocket or torpedo that carries the nuclear or explosive charge or the chemical or biological agents'),\n",
+ " ('horse',\n",
+ " 'a work of art (composition or drama) that is part of the standard repertory but has become hackneyed from much repetition'),\n",
+ " ('lord',\n",
+ " 'supreme military leader exercising civil power in a region especially one accountable to nobody when the central government is weak'),\n",
+ " ('monger', 'a person who advocates war or warlike policies'),\n",
+ " ('path', 'hostile or belligerent mood'),\n",
+ " ('plane', 'an aircraft designed and used for combat'),\n",
+ " ('ship', 'a government ship that is available for waging war'),\n",
+ " ('time', 'a period of time during which there is armed conflict')]},\n",
+ " {'answer': 'wash',\n",
+ " 'hint': 'wash _',\n",
+ " 'clues': [('basin',\n",
+ " 'a bathroom sink that is permanently installed and connected to a water supply and drainpipe; where you can wash your hands and face'),\n",
+ " ('board',\n",
+ " 'device consisting of a corrugated surface to scrub clothes on'),\n",
+ " ('bowl',\n",
+ " 'a bathroom sink that is permanently installed and connected to a water supply and drainpipe; where you can wash your hands and face'),\n",
+ " ('cloth',\n",
+ " 'bath linen consisting of a piece of cloth used to wash the face and body'),\n",
+ " ('day', 'a day set aside for doing household laundry'),\n",
+ " ('out',\n",
+ " 'the channel or break produced by erosion of relatively soft soil by water'),\n",
+ " ('rag',\n",
+ " 'bath linen consisting of a piece of cloth used to wash the face and body'),\n",
+ " ('room', 'a lavatory (particularly a lavatory in a public place)'),\n",
+ " ('stand',\n",
+ " \"furniture consisting of a table or stand to hold a basin and pitcher of water for washing: `wash-hand stand' is a British term\"),\n",
+ " ('tub', 'a tub in which clothes or linens can be washed')]},\n",
+ " {'answer': 'watch',\n",
+ " 'hint': 'watch _',\n",
+ " 'clues': [('band',\n",
+ " 'a band of cloth or leather or metal links attached to a wristwatch and wrapped around the wrist'),\n",
+ " ('dog',\n",
+ " 'a guardian or defender against theft or illegal practices or waste'),\n",
+ " ('maker', 'someone who makes or repairs watches'),\n",
+ " ('strap',\n",
+ " 'a band of cloth or leather or metal links attached to a wristwatch and wrapped around the wrist'),\n",
+ " ('tower',\n",
+ " 'an observation tower for a lookout to watch over prisoners or watch for fires or enemies'),\n",
+ " ('word', 'a slogan used to rally support for a cause')]},\n",
+ " {'answer': 'water',\n",
+ " 'hint': 'water _',\n",
+ " 'clues': [('bird', 'freshwater aquatic bird'),\n",
+ " ('color', 'a painting produced with watercolors'),\n",
+ " ('course', 'natural or artificial channel through which water flows'),\n",
+ " ('craft', 'skill in the management of boats'),\n",
+ " ('cress', 'any of several water-loving cresses'),\n",
+ " ('fall', 'a steep descent of the water of a river'),\n",
+ " ('fowl', 'freshwater aquatic bird'),\n",
+ " ('front',\n",
+ " 'the area of a city (such as a harbor or dockyard) alongside a body of water'),\n",
+ " ('line',\n",
+ " 'a line corresponding to the surface of the water when the vessel is afloat on an even keel; often painted on the hull of a ship'),\n",
+ " ('mark', 'a line marking the level reached by a body of water'),\n",
+ " ('melon', 'an African melon'),\n",
+ " ('proof', 'any fabric impervious to water'),\n",
+ " ('shed', 'a ridge of land that separates two adjacent river systems'),\n",
+ " ('side', 'land bordering a body of water'),\n",
+ " ('spout',\n",
+ " 'a tornado passing over water and picking up a column of water and mist'),\n",
+ " ('way', 'a navigable body of water'),\n",
+ " ('wheel',\n",
+ " 'a wheel with buckets attached to its rim; raises water from a stream or pond'),\n",
+ " ('works', 'a public utility that provides water')]},\n",
+ " {'answer': 'wave',\n",
+ " 'hint': 'wave _',\n",
+ " 'clues': [('band',\n",
+ " 'a band of adjacent radio frequencies (e.g., assigned for transmitting radio or television signals)'),\n",
+ " ('form',\n",
+ " 'the shape of a wave illustrated graphically by plotting the values of the period quantity against time'),\n",
+ " ('front',\n",
+ " '(physics) an imaginary surface joining all points in space that are reached at the same instant by a wave propagating through a medium'),\n",
+ " ('guide',\n",
+ " 'a hollow metal conductor that provides a path to guide microwaves; used in radar'),\n",
+ " ('length',\n",
+ " 'the distance (measured in the direction of propagation) between two points in the same phase in consecutive cycles of a wave')]},\n",
+ " {'answer': 'weather',\n",
+ " 'hint': 'weather _',\n",
+ " 'clues': [('board',\n",
+ " 'a long thin board with one edge thicker than the other; used as siding by lapping one board over the board below'),\n",
+ " ('cock', 'weathervane with a vane in the form of a rooster'),\n",
+ " ('strip',\n",
+ " 'a narrow strip of material to cover the joint of a door or window to exclude the cold'),\n",
+ " ('stripping',\n",
+ " 'a narrow strip of material to cover the joint of a door or window to exclude the cold')]},\n",
+ " {'answer': 'wheel',\n",
+ " 'hint': 'wheel _',\n",
+ " 'clues': [('barrow',\n",
+ " 'a cart for carrying small loads; has handles and one or more wheels'),\n",
+ " ('base',\n",
+ " \"the distance from the center of a car's front wheel to the rear axle\"),\n",
+ " ('chair',\n",
+ " 'a movable chair mounted on large wheels; for invalids or those who cannot walk; frequently propelled by the occupant'),\n",
+ " ('house', 'an enclosed compartment from which a vessel can be navigated'),\n",
+ " ('wright', 'someone who makes and repairs wooden wheels')]},\n",
+ " {'answer': 'white',\n",
+ " 'hint': 'white _',\n",
+ " 'clues': [('bait',\n",
+ " 'minnows or other small fresh- or saltwater fish (especially herring); usually cooked whole'),\n",
+ " ('cap',\n",
+ " 'a wave that is blown by the wind so its crest is broken and appears white'),\n",
+ " ('fish',\n",
+ " 'any market fish--edible saltwater fish or shellfish--except herring'),\n",
+ " ('head',\n",
+ " 'English philosopher and mathematician who collaborated with Bertrand Russell (1861-1947)'),\n",
+ " ('out',\n",
+ " 'an arctic atmospheric condition with clouds over snow produce a uniform whiteness and objects are difficult to see; occurs when the light reflected off the snow equals the light coming through the clouds'),\n",
+ " ('tail', 'common North American deer; tail has a white underside'),\n",
+ " ('wash', 'a defeat in which the losing person or team fails to score'),\n",
+ " ('water', 'frothy water as in rapids or waterfalls')]},\n",
+ " {'answer': 'wild',\n",
+ " 'hint': 'wild _',\n",
+ " 'clues': [('cat',\n",
+ " 'an exploratory oil well drilled in land not known to be an oil field'),\n",
+ " ('fire', 'a raging and rapidly spreading conflagration'),\n",
+ " ('flower', 'wild or uncultivated flowering plant'),\n",
+ " ('fowl', 'flesh of any of a number of wild game birds suitable for food'),\n",
+ " ('life', 'all living things (except people) that are undomesticated')]},\n",
+ " {'answer': 'wind',\n",
+ " 'hint': 'wind _',\n",
+ " 'clues': [('bag',\n",
+ " 'a boring person who talks a great deal about uninteresting topics'),\n",
+ " ('break',\n",
+ " 'hedge or fence of trees designed to lessen the force of the wind and reduce erosion'),\n",
+ " ('breaker', \"a kind of heavy jacket (`windcheater' is a British term)\"),\n",
+ " ('burn',\n",
+ " 'redness and irritation of the skin caused by exposure to high-velocity wind'),\n",
+ " ('cheater', \"a kind of heavy jacket (`windcheater' is a British term)\"),\n",
+ " ('fall', 'fruit that has fallen from the tree'),\n",
+ " ('flower',\n",
+ " 'any woodland plant of the genus Anemone grown for its beautiful flowers and whorls of dissected leaves'),\n",
+ " ('jammer', 'a large sailing ship'),\n",
+ " ('mill', 'a mill that is powered by the wind'),\n",
+ " ('pipe',\n",
+ " 'membranous tube with cartilaginous rings that conveys inhaled air from the larynx to the bronchi'),\n",
+ " ('screen',\n",
+ " 'transparent screen (as of glass) to protect occupants of a vehicle'),\n",
+ " ('shield',\n",
+ " 'transparent screen (as of glass) to protect occupants of a vehicle'),\n",
+ " ('sock',\n",
+ " 'a truncated cloth cone mounted on a mast; used (e.g., at airports) to show the direction of the wind'),\n",
+ " ('storm', 'a storm consisting of violent winds')]},\n",
+ " {'answer': 'wood',\n",
+ " 'hint': 'wood _',\n",
+ " 'clues': [('carver', 'makes decorative wooden panels'),\n",
+ " ('carving', 'a carving created by carving wood'),\n",
+ " ('chuck', 'reddish brown North American marmot'),\n",
+ " ('cock', 'game bird of the sandpiper family that resembles a snipe'),\n",
+ " ('craft',\n",
+ " 'skill and experience in matters relating to the woods (as hunting or fishing or camping)'),\n",
+ " ('cut', 'a print made from a woodcut'),\n",
+ " ('cutter', 'cuts down trees and chops wood as a job'),\n",
+ " ('land', 'land that is covered with trees and shrubs'),\n",
+ " ('louse',\n",
+ " 'any of various small terrestrial isopods having a flat elliptical segmented body; found in damp habitats'),\n",
+ " ('pecker',\n",
+ " 'bird with strong claws and a stiff tail adapted for climbing and a hard chisel-like bill for boring into wood for insects'),\n",
+ " ('pile', 'a pile or stack of wood to be used for fuel'),\n",
+ " ('shed', 'a shed for storing firewood or garden tools'),\n",
+ " ('wind', 'any wind instrument other than the brass instruments'),\n",
+ " ('work',\n",
+ " 'work made of wood; especially moldings or stairways or furniture'),\n",
+ " ('worker', 'makes things out of wood'),\n",
+ " ('worm', 'a larva of a woodborer')]},\n",
+ " {'answer': 'work',\n",
+ " 'hint': 'work _',\n",
+ " 'clues': [('basket',\n",
+ " 'container for holding implements and materials for work (especially for sewing)'),\n",
+ " ('bench', 'a strong worktable for a carpenter or mechanic'),\n",
+ " ('book',\n",
+ " \"a student's book or booklet containing problems with spaces for solving them\"),\n",
+ " ('day', 'a day on which work is done'),\n",
+ " ('force', 'the force of workers available'),\n",
+ " ('horse', 'machine that performs dependably under heavy use'),\n",
+ " ('house', 'a poorhouse where able-bodied poor are compelled to labor'),\n",
+ " ('load', 'work that a person is expected to do in a specified time'),\n",
+ " ('mate', 'a fellow worker'),\n",
+ " ('out',\n",
+ " 'the activity of exerting your muscles in various ways to keep fit'),\n",
+ " ('piece', 'work consisting of a piece of metal being machined'),\n",
+ " ('place', 'a place where work is done'),\n",
+ " ('room', 'room where work is done'),\n",
+ " ('sheet',\n",
+ " 'a sheet of paper with multiple columns; used by an accountant to assemble figures for financial statements'),\n",
+ " ('shop', 'small workplace where handcrafts or manufacturing are done'),\n",
+ " ('space', 'space allocated for your work (as in an office)'),\n",
+ " ('station',\n",
+ " 'a desktop digital computer that is conventionally considered to be more powerful than a microcomputer'),\n",
+ " ('table', 'a table designed for a particular task'),\n",
+ " ('week', 'hours or days of work in a calendar week')]}],\n",
+ " 'portion': 0.8},\n",
+ " {'name': 'verbs',\n",
+ " 'groups': [{'answer': 'abandoned',\n",
+ " 'hint': 'synonyms for abandoned',\n",
+ " 'clues': [('desolate',\n",
+ " 'leave someone who needs or counts on you; leave in the lurch'),\n",
+ " ('give up', 'stop maintaining or insisting on; of ideas or claims'),\n",
+ " ('vacate', 'leave behind empty; move out of'),\n",
+ " ('empty', 'leave behind empty; move out of'),\n",
+ " ('abandon', 'forsake, leave behind'),\n",
+ " ('forsake',\n",
+ " 'leave someone who needs or counts on you; leave in the lurch'),\n",
+ " ('desert',\n",
+ " 'leave someone who needs or counts on you; leave in the lurch')]},\n",
+ " {'answer': 'abbreviated',\n",
+ " 'hint': 'synonyms for abbreviated',\n",
+ " 'clues': [('cut', 'reduce in scope while retaining essential elements'),\n",
+ " ('shorten', 'reduce in scope while retaining essential elements'),\n",
+ " ('reduce', 'reduce in scope while retaining essential elements'),\n",
+ " ('foreshorten', 'reduce in scope while retaining essential elements'),\n",
+ " ('contract', 'reduce in scope while retaining essential elements'),\n",
+ " ('abbreviate', 'reduce in scope while retaining essential elements'),\n",
+ " ('abridge', 'reduce in scope while retaining essential elements')]},\n",
+ " {'answer': 'abducting',\n",
+ " 'hint': 'synonyms for abducting',\n",
+ " 'clues': [('kidnap',\n",
+ " 'take away to an undisclosed location against their will and usually in order to extract a ransom'),\n",
+ " ('abduct',\n",
+ " 'take away to an undisclosed location against their will and usually in order to extract a ransom'),\n",
+ " ('snatch',\n",
+ " 'take away to an undisclosed location against their will and usually in order to extract a ransom'),\n",
+ " ('nobble',\n",
+ " 'take away to an undisclosed location against their will and usually in order to extract a ransom')]},\n",
+ " {'answer': 'abiding',\n",
+ " 'hint': 'synonyms for abiding',\n",
+ " 'clues': [('stand', 'put up with something or somebody unpleasant'),\n",
+ " ('abide', 'dwell'),\n",
+ " ('bear', 'put up with something or somebody unpleasant'),\n",
+ " ('stick out', 'put up with something or somebody unpleasant'),\n",
+ " ('suffer', 'put up with something or somebody unpleasant'),\n",
+ " ('put up', 'put up with something or somebody unpleasant'),\n",
+ " ('tolerate', 'put up with something or somebody unpleasant'),\n",
+ " ('endure', 'put up with something or somebody unpleasant'),\n",
+ " ('digest', 'put up with something or somebody unpleasant'),\n",
+ " ('stay', 'dwell'),\n",
+ " ('support', 'put up with something or somebody unpleasant'),\n",
+ " ('stomach', 'put up with something or somebody unpleasant'),\n",
+ " ('brook', 'put up with something or somebody unpleasant')]},\n",
+ " {'answer': 'abridged',\n",
+ " 'hint': 'synonyms for abridged',\n",
+ " 'clues': [('cut', 'reduce in scope while retaining essential elements'),\n",
+ " ('abridge', 'lessen, diminish, or curtail'),\n",
+ " ('shorten', 'reduce in scope while retaining essential elements'),\n",
+ " ('reduce', 'reduce in scope while retaining essential elements'),\n",
+ " ('foreshorten', 'reduce in scope while retaining essential elements'),\n",
+ " ('contract', 'reduce in scope while retaining essential elements'),\n",
+ " ('abbreviate', 'reduce in scope while retaining essential elements')]},\n",
+ " {'answer': 'absolved',\n",
+ " 'hint': 'synonyms for absolved',\n",
+ " 'clues': [('absolve', 'grant remission of a sin to'),\n",
+ " ('shrive', 'grant remission of a sin to'),\n",
+ " ('free', 'let off the hook'),\n",
+ " ('justify', 'let off the hook')]},\n",
+ " {'answer': 'absorbed',\n",
+ " 'hint': 'synonyms for absorbed',\n",
+ " 'clues': [('absorb', \"consume all of one's attention or time\"),\n",
+ " ('soak up', 'take in, also metaphorically'),\n",
+ " ('engulf', 'devote (oneself) fully to'),\n",
+ " ('take up', 'take in, also metaphorically'),\n",
+ " ('imbibe', 'take in, also metaphorically'),\n",
+ " ('suck', 'take in, also metaphorically'),\n",
+ " ('engross', \"consume all of one's attention or time\"),\n",
+ " ('immerse', 'devote (oneself) fully to'),\n",
+ " ('take over', 'take up, as of debts or payments'),\n",
+ " ('ingest', 'take up mentally'),\n",
+ " ('steep', 'devote (oneself) fully to'),\n",
+ " ('take in', 'suck or take up or in'),\n",
+ " ('engage', \"consume all of one's attention or time\"),\n",
+ " ('plunge', 'devote (oneself) fully to'),\n",
+ " ('sop up', 'take in, also metaphorically'),\n",
+ " ('assimilate', 'take up mentally'),\n",
+ " ('occupy', \"consume all of one's attention or time\"),\n",
+ " ('draw', 'take in, also metaphorically'),\n",
+ " ('suck up', 'take in, also metaphorically')]},\n",
+ " {'answer': 'absorbing',\n",
+ " 'hint': 'synonyms for absorbing',\n",
+ " 'clues': [('absorb', \"consume all of one's attention or time\"),\n",
+ " ('soak up', 'take in, also metaphorically'),\n",
+ " ('engulf', 'devote (oneself) fully to'),\n",
+ " ('take up', 'take in, also metaphorically'),\n",
+ " ('imbibe', 'take in, also metaphorically'),\n",
+ " ('suck', 'take in, also metaphorically'),\n",
+ " ('engross', \"consume all of one's attention or time\"),\n",
+ " ('immerse', 'devote (oneself) fully to'),\n",
+ " ('take over', 'take up, as of debts or payments'),\n",
+ " ('ingest', 'take up mentally'),\n",
+ " ('steep', 'devote (oneself) fully to'),\n",
+ " ('take in', 'suck or take up or in'),\n",
+ " ('engage', \"consume all of one's attention or time\"),\n",
+ " ('plunge', 'devote (oneself) fully to'),\n",
+ " ('sop up', 'take in, also metaphorically'),\n",
+ " ('assimilate', 'take up mentally'),\n",
+ " ('occupy', \"consume all of one's attention or time\"),\n",
+ " ('draw', 'take in, also metaphorically'),\n",
+ " ('suck up', 'take in, also metaphorically')]},\n",
+ " {'answer': 'abstract',\n",
+ " 'hint': 'synonyms for abstract',\n",
+ " 'clues': [('pilfer', 'make off with belongings of others'),\n",
+ " ('sneak', 'make off with belongings of others'),\n",
+ " ('filch', 'make off with belongings of others'),\n",
+ " ('purloin', 'make off with belongings of others'),\n",
+ " ('swipe', 'make off with belongings of others'),\n",
+ " ('pinch', 'make off with belongings of others'),\n",
+ " ('hook', 'make off with belongings of others'),\n",
+ " ('lift', 'make off with belongings of others'),\n",
+ " ('nobble', 'make off with belongings of others'),\n",
+ " ('cabbage', 'make off with belongings of others'),\n",
+ " ('snarf', 'make off with belongings of others')]},\n",
+ " {'answer': 'abstracted',\n",
+ " 'hint': 'synonyms for abstracted',\n",
+ " 'clues': [('pilfer', 'make off with belongings of others'),\n",
+ " ('sneak', 'make off with belongings of others'),\n",
+ " ('filch', 'make off with belongings of others'),\n",
+ " ('purloin', 'make off with belongings of others'),\n",
+ " ('swipe', 'make off with belongings of others'),\n",
+ " ('pinch', 'make off with belongings of others'),\n",
+ " ('abstract', 'give an abstract (of)'),\n",
+ " ('hook', 'make off with belongings of others'),\n",
+ " ('lift', 'make off with belongings of others'),\n",
+ " ('nobble', 'make off with belongings of others'),\n",
+ " ('cabbage', 'make off with belongings of others'),\n",
+ " ('snarf', 'make off with belongings of others')]},\n",
+ " {'answer': 'abused',\n",
+ " 'hint': 'synonyms for abused',\n",
+ " 'clues': [('clapperclaw', 'use foul or abusive language towards'),\n",
+ " ('step', 'treat badly'),\n",
+ " ('abuse', 'treat badly'),\n",
+ " ('shout', 'use foul or abusive language towards'),\n",
+ " ('maltreat', 'treat badly'),\n",
+ " ('misuse', 'change the inherent purpose or function of something'),\n",
+ " ('ill-use', 'treat badly'),\n",
+ " ('mistreat', 'treat badly'),\n",
+ " ('blackguard', 'use foul or abusive language towards'),\n",
+ " ('ill-treat', 'treat badly'),\n",
+ " ('pervert', 'change the inherent purpose or function of something')]},\n",
+ " {'answer': 'accelerated',\n",
+ " 'hint': 'synonyms for accelerated',\n",
+ " 'clues': [('speed up', 'move faster'),\n",
+ " ('accelerate', 'cause to move faster'),\n",
+ " ('quicken', 'move faster'),\n",
+ " ('speed', 'cause to move faster')]},\n",
+ " {'answer': 'accented',\n",
+ " 'hint': 'synonyms for accented',\n",
+ " 'clues': [('emphasize', 'to stress, single out as important'),\n",
+ " ('accent', 'put stress on; utter with an accent'),\n",
+ " ('punctuate', 'to stress, single out as important'),\n",
+ " ('stress', 'put stress on; utter with an accent'),\n",
+ " ('accentuate', 'to stress, single out as important')]},\n",
+ " {'answer': 'accepted',\n",
+ " 'hint': 'synonyms for accepted',\n",
+ " 'clues': [('accept', 'receive (a report) officially, as from a committee'),\n",
+ " ('take', 'be designed to hold or take'),\n",
+ " ('bear', \"take on as one's own the expenses or debts of another person\"),\n",
+ " ('consent', 'give an affirmative reply to; respond favorably to'),\n",
+ " ('take on', 'admit into a group or community'),\n",
+ " ('take over',\n",
+ " \"take on as one's own the expenses or debts of another person\"),\n",
+ " ('swallow', 'tolerate or accommodate oneself to'),\n",
+ " ('admit', 'admit into a group or community'),\n",
+ " ('go for', 'give an affirmative reply to; respond favorably to'),\n",
+ " ('assume',\n",
+ " \"take on as one's own the expenses or debts of another person\"),\n",
+ " ('live with', 'tolerate or accommodate oneself to'),\n",
+ " ('have', 'receive willingly something given or offered')]},\n",
+ " {'answer': 'accepting',\n",
+ " 'hint': 'synonyms for accepting',\n",
+ " 'clues': [('accept', 'receive (a report) officially, as from a committee'),\n",
+ " ('take', 'be designed to hold or take'),\n",
+ " ('bear', \"take on as one's own the expenses or debts of another person\"),\n",
+ " ('consent', 'give an affirmative reply to; respond favorably to'),\n",
+ " ('take on', 'admit into a group or community'),\n",
+ " ('take over',\n",
+ " \"take on as one's own the expenses or debts of another person\"),\n",
+ " ('swallow', 'tolerate or accommodate oneself to'),\n",
+ " ('admit', 'admit into a group or community'),\n",
+ " ('go for', 'give an affirmative reply to; respond favorably to'),\n",
+ " ('assume',\n",
+ " \"take on as one's own the expenses or debts of another person\"),\n",
+ " ('live with', 'tolerate or accommodate oneself to'),\n",
+ " ('have', 'receive willingly something given or offered')]},\n",
+ " {'answer': 'accommodating',\n",
+ " 'hint': 'synonyms for accommodating',\n",
+ " 'clues': [('oblige', 'provide a service or favor for someone'),\n",
+ " ('reconcile', 'make (one thing) compatible with (another)'),\n",
+ " ('accommodate', 'be agreeable or acceptable to'),\n",
+ " ('hold', 'have room for; hold without crowding'),\n",
+ " ('adapt', 'make fit for, or change to suit a new purpose'),\n",
+ " ('fit', 'be agreeable or acceptable to'),\n",
+ " ('conciliate', 'make (one thing) compatible with (another)'),\n",
+ " ('lodge', 'provide housing for'),\n",
+ " ('admit', 'have room for; hold without crowding'),\n",
+ " ('suit', 'be agreeable or acceptable to')]},\n",
+ " {'answer': 'accompanied',\n",
+ " 'hint': 'synonyms for accompanied',\n",
+ " 'clues': [('accompany',\n",
+ " 'be present or associated with an event or entity'),\n",
+ " ('keep company', 'be a companion to somebody'),\n",
+ " ('come with', 'be present or associated with an event or entity'),\n",
+ " ('attach to', 'be present or associated with an event or entity'),\n",
+ " ('go with', 'be present or associated with an event or entity'),\n",
+ " ('follow', 'perform an accompaniment to'),\n",
+ " ('companion', 'be a companion to somebody'),\n",
+ " ('play along', 'perform an accompaniment to')]},\n",
+ " {'answer': 'accompanying',\n",
+ " 'hint': 'synonyms for accompanying',\n",
+ " 'clues': [('accompany',\n",
+ " 'be present or associated with an event or entity'),\n",
+ " ('keep company', 'be a companion to somebody'),\n",
+ " ('come with', 'be present or associated with an event or entity'),\n",
+ " ('attach to', 'be present or associated with an event or entity'),\n",
+ " ('go with', 'be present or associated with an event or entity'),\n",
+ " ('follow', 'perform an accompaniment to'),\n",
+ " ('companion', 'be a companion to somebody'),\n",
+ " ('play along', 'perform an accompaniment to')]},\n",
+ " {'answer': 'accomplished',\n",
+ " 'hint': 'synonyms for accomplished',\n",
+ " 'clues': [('fulfil', 'put in effect'),\n",
+ " ('achieve', 'to gain with effort'),\n",
+ " ('execute', 'put in effect'),\n",
+ " ('carry through', 'put in effect'),\n",
+ " ('attain', 'to gain with effort'),\n",
+ " ('reach', 'to gain with effort'),\n",
+ " ('accomplish', 'put in effect'),\n",
+ " ('action', 'put in effect'),\n",
+ " ('carry out', 'put in effect')]},\n",
+ " {'answer': 'according',\n",
+ " 'hint': 'synonyms for according',\n",
+ " 'clues': [('agree', 'go together'),\n",
+ " ('fit in', 'go together'),\n",
+ " ('concord', 'go together'),\n",
+ " ('grant', 'allow to have'),\n",
+ " ('accord', 'go together'),\n",
+ " ('consort', 'go together'),\n",
+ " ('harmonise', 'go together'),\n",
+ " ('allot', 'allow to have')]},\n",
+ " {'answer': 'accumulated',\n",
+ " 'hint': 'synonyms for accumulated',\n",
+ " 'clues': [('accumulate', 'get or gather together'),\n",
+ " ('collect', 'get or gather together'),\n",
+ " ('amass', 'get or gather together'),\n",
+ " ('hoard', 'get or gather together'),\n",
+ " ('pile up', 'collect or gather'),\n",
+ " ('conglomerate', 'collect or gather'),\n",
+ " ('compile', 'get or gather together'),\n",
+ " ('roll up', 'get or gather together'),\n",
+ " ('gather', 'collect or gather')]},\n",
+ " {'answer': 'accursed',\n",
+ " 'hint': 'synonyms for accursed',\n",
+ " 'clues': [('anathemize',\n",
+ " 'curse or declare to be evil or anathema or threaten with divine punishment'),\n",
+ " ('anathematise',\n",
+ " 'curse or declare to be evil or anathema or threaten with divine punishment'),\n",
+ " ('comminate',\n",
+ " 'curse or declare to be evil or anathema or threaten with divine punishment'),\n",
+ " ('accurse',\n",
+ " 'curse or declare to be evil or anathema or threaten with divine punishment'),\n",
+ " ('execrate',\n",
+ " 'curse or declare to be evil or anathema or threaten with divine punishment')]},\n",
+ " {'answer': 'accusing',\n",
+ " 'hint': 'synonyms for accusing',\n",
+ " 'clues': [('incriminate',\n",
+ " 'bring an accusation against; level a charge against'),\n",
+ " ('accuse', 'bring an accusation against; level a charge against'),\n",
+ " ('impeach', 'bring an accusation against; level a charge against'),\n",
+ " ('charge',\n",
+ " 'blame for, make a claim of wrongdoing or misbehavior against')]},\n",
+ " {'answer': 'ace',\n",
+ " 'hint': 'synonyms for ace',\n",
+ " 'clues': [('nail', 'succeed at easily'),\n",
+ " ('sail through', 'succeed at easily'),\n",
+ " ('breeze through', 'succeed at easily'),\n",
+ " ('pass with flying colors', 'succeed at easily'),\n",
+ " ('sweep through', 'succeed at easily')]},\n",
+ " {'answer': 'aching',\n",
+ " 'hint': 'synonyms for aching',\n",
+ " 'clues': [('ache', 'be the source of pain'),\n",
+ " ('hurt', 'feel physical pain'),\n",
+ " ('pine', 'have a desire for something or someone who is not present'),\n",
+ " ('languish', 'have a desire for something or someone who is not present'),\n",
+ " ('suffer', 'feel physical pain'),\n",
+ " ('smart', 'be the source of pain'),\n",
+ " ('yearn', 'have a desire for something or someone who is not present'),\n",
+ " ('yen', 'have a desire for something or someone who is not present')]},\n",
+ " {'answer': 'acknowledged',\n",
+ " 'hint': 'synonyms for acknowledged',\n",
+ " 'clues': [('recognise', 'express obligation, thanks, or gratitude for'),\n",
+ " ('acknowledge', 'report the receipt of'),\n",
+ " ('receipt', 'report the receipt of'),\n",
+ " ('admit',\n",
+ " 'declare to be true or admit the existence or reality or truth of'),\n",
+ " ('know',\n",
+ " 'accept (someone) to be what is claimed or accept his power and authority'),\n",
+ " ('notice',\n",
+ " 'express recognition of the presence or existence of, or acquaintance with')]},\n",
+ " {'answer': 'acquainted',\n",
+ " 'hint': 'synonyms for acquainted',\n",
+ " 'clues': [('acquaint', 'inform'),\n",
+ " ('introduce', 'cause to come to know personally'),\n",
+ " ('familiarize', 'make familiar or conversant with'),\n",
+ " ('present', 'cause to come to know personally')]},\n",
+ " {'answer': 'acquired',\n",
+ " 'hint': 'synonyms for acquired',\n",
+ " 'clues': [('assume', 'take on a certain form, attribute, or aspect'),\n",
+ " ('produce',\n",
+ " 'come to have or undergo a change of (physical features and attributes)'),\n",
+ " ('evolve', 'gain through experience'),\n",
+ " ('larn', 'gain knowledge or skills'),\n",
+ " ('acquire',\n",
+ " 'locate (a moving entity) by means of a tracking system such as radar'),\n",
+ " ('win', \"win something through one's efforts\"),\n",
+ " ('grow',\n",
+ " 'come to have or undergo a change of (physical features and attributes)'),\n",
+ " ('take', 'take on a certain form, attribute, or aspect'),\n",
+ " ('develop', 'gain through experience'),\n",
+ " ('gain', \"win something through one's efforts\"),\n",
+ " ('get',\n",
+ " 'come to have or undergo a change of (physical features and attributes)'),\n",
+ " ('adopt', 'take on a certain form, attribute, or aspect'),\n",
+ " ('take on', 'take on a certain form, attribute, or aspect')]},\n",
+ " {'answer': 'acquitted',\n",
+ " 'hint': 'synonyms for acquitted',\n",
+ " 'clues': [('acquit', 'pronounce not guilty of criminal charges'),\n",
+ " ('behave', 'behave in a certain manner'),\n",
+ " ('discharge', 'pronounce not guilty of criminal charges'),\n",
+ " ('carry', 'behave in a certain manner'),\n",
+ " ('comport', 'behave in a certain manner'),\n",
+ " ('exonerate', 'pronounce not guilty of criminal charges'),\n",
+ " ('assoil', 'pronounce not guilty of criminal charges'),\n",
+ " ('exculpate', 'pronounce not guilty of criminal charges'),\n",
+ " ('clear', 'pronounce not guilty of criminal charges'),\n",
+ " ('deport', 'behave in a certain manner'),\n",
+ " ('conduct', 'behave in a certain manner'),\n",
+ " ('bear', 'behave in a certain manner')]},\n",
+ " {'answer': 'acting',\n",
+ " 'hint': 'synonyms for acting',\n",
+ " 'clues': [('represent', 'play a role or part'),\n",
+ " ('act', 'have an effect or outcome; often the one desired or expected'),\n",
+ " ('play', 'play a role or part'),\n",
+ " ('pretend', 'behave unnaturally or affectedly'),\n",
+ " ('behave',\n",
+ " 'behave in a certain manner; show a certain behavior; conduct or comport oneself'),\n",
+ " ('work', 'have an effect or outcome; often the one desired or expected'),\n",
+ " ('playact', 'perform on a stage or theater'),\n",
+ " ('move', 'perform an action, or work out or perform (an action)'),\n",
+ " ('roleplay', 'perform on a stage or theater'),\n",
+ " ('dissemble', 'behave unnaturally or affectedly'),\n",
+ " ('do',\n",
+ " 'behave in a certain manner; show a certain behavior; conduct or comport oneself'),\n",
+ " ('act as', 'pretend to have certain qualities or state of mind')]},\n",
+ " {'answer': 'activated',\n",
+ " 'hint': 'synonyms for activated',\n",
+ " 'clues': [('set off', 'put in motion or move to act'),\n",
+ " ('spark', 'put in motion or move to act'),\n",
+ " ('touch off', 'put in motion or move to act'),\n",
+ " ('aerate',\n",
+ " 'aerate (sewage) so as to favor the growth of organisms that decompose organic matter'),\n",
+ " ('activate', 'make more adsorptive'),\n",
+ " ('trip', 'put in motion or move to act'),\n",
+ " ('spark off', 'put in motion or move to act'),\n",
+ " ('actuate', 'put in motion or move to act'),\n",
+ " ('trigger off', 'put in motion or move to act'),\n",
+ " ('trigger', 'put in motion or move to act')]},\n",
+ " {'answer': 'activating',\n",
+ " 'hint': 'synonyms for activating',\n",
+ " 'clues': [('set off', 'put in motion or move to act'),\n",
+ " ('spark', 'put in motion or move to act'),\n",
+ " ('touch off', 'put in motion or move to act'),\n",
+ " ('aerate',\n",
+ " 'aerate (sewage) so as to favor the growth of organisms that decompose organic matter'),\n",
+ " ('activate', 'make more adsorptive'),\n",
+ " ('trip', 'put in motion or move to act'),\n",
+ " ('spark off', 'put in motion or move to act'),\n",
+ " ('actuate', 'put in motion or move to act'),\n",
+ " ('trigger off', 'put in motion or move to act'),\n",
+ " ('trigger', 'put in motion or move to act')]},\n",
+ " {'answer': 'actuated',\n",
+ " 'hint': 'synonyms for actuated',\n",
+ " 'clues': [('incite', 'give an incentive for action'),\n",
+ " ('set off', 'put in motion or move to act'),\n",
+ " ('spark', 'put in motion or move to act'),\n",
+ " ('propel', 'give an incentive for action'),\n",
+ " ('touch off', 'put in motion or move to act'),\n",
+ " ('actuate', 'give an incentive for action'),\n",
+ " ('move', 'give an incentive for action'),\n",
+ " ('trip', 'put in motion or move to act'),\n",
+ " ('prompt', 'give an incentive for action'),\n",
+ " ('spark off', 'put in motion or move to act'),\n",
+ " ('motivate', 'give an incentive for action'),\n",
+ " ('activate', 'put in motion or move to act'),\n",
+ " ('trigger off', 'put in motion or move to act'),\n",
+ " ('trigger', 'put in motion or move to act')]},\n",
+ " {'answer': 'actuating',\n",
+ " 'hint': 'synonyms for actuating',\n",
+ " 'clues': [('incite', 'give an incentive for action'),\n",
+ " ('set off', 'put in motion or move to act'),\n",
+ " ('spark', 'put in motion or move to act'),\n",
+ " ('propel', 'give an incentive for action'),\n",
+ " ('touch off', 'put in motion or move to act'),\n",
+ " ('actuate', 'give an incentive for action'),\n",
+ " ('move', 'give an incentive for action'),\n",
+ " ('trip', 'put in motion or move to act'),\n",
+ " ('prompt', 'give an incentive for action'),\n",
+ " ('spark off', 'put in motion or move to act'),\n",
+ " ('motivate', 'give an incentive for action'),\n",
+ " ('activate', 'put in motion or move to act'),\n",
+ " ('trigger off', 'put in motion or move to act'),\n",
+ " ('trigger', 'put in motion or move to act')]},\n",
+ " {'answer': 'adapted',\n",
+ " 'hint': 'synonyms for adapted',\n",
+ " 'clues': [('conform',\n",
+ " 'adapt or conform oneself to new or different conditions'),\n",
+ " ('adjust', 'adapt or conform oneself to new or different conditions'),\n",
+ " ('adapt', 'adapt or conform oneself to new or different conditions'),\n",
+ " ('accommodate', 'make fit for, or change to suit a new purpose')]},\n",
+ " {'answer': 'addressed',\n",
+ " 'hint': 'synonyms for addressed',\n",
+ " 'clues': [('address', 'put an address on (an envelope)'),\n",
+ " ('accost', 'speak to someone'),\n",
+ " ('plow', 'act on verbally or in some form of artistic expression'),\n",
+ " ('handle', 'act on verbally or in some form of artistic expression'),\n",
+ " ('call', 'greet, as with a prescribed form, title, or name'),\n",
+ " ('treat', 'act on verbally or in some form of artistic expression'),\n",
+ " ('turn to', 'speak to'),\n",
+ " ('come up to', 'speak to someone'),\n",
+ " ('direct', 'put an address on (an envelope)'),\n",
+ " ('cover', 'act on verbally or in some form of artistic expression'),\n",
+ " ('deal', 'act on verbally or in some form of artistic expression'),\n",
+ " ('speak', 'give a speech to')]},\n",
+ " {'answer': 'adjusted',\n",
+ " 'hint': 'synonyms for adjusted',\n",
+ " 'clues': [('line up',\n",
+ " 'place in a line or arrange so as to be parallel or straight'),\n",
+ " ('adjust', 'adapt or conform oneself to new or different conditions'),\n",
+ " ('correct',\n",
+ " 'alter or regulate so as to achieve accuracy or conform to a standard'),\n",
+ " ('adapt', 'adapt or conform oneself to new or different conditions'),\n",
+ " ('set',\n",
+ " 'alter or regulate so as to achieve accuracy or conform to a standard'),\n",
+ " ('align', 'place in a line or arrange so as to be parallel or straight'),\n",
+ " ('conform', 'adapt or conform oneself to new or different conditions'),\n",
+ " ('aline',\n",
+ " 'place in a line or arrange so as to be parallel or straight')]},\n",
+ " {'answer': 'admonishing',\n",
+ " 'hint': 'synonyms for admonishing',\n",
+ " 'clues': [('caution', 'warn strongly; put on guard'),\n",
+ " ('monish', \"admonish or counsel in terms of someone's behavior\"),\n",
+ " ('warn', \"admonish or counsel in terms of someone's behavior\"),\n",
+ " ('discourage', \"admonish or counsel in terms of someone's behavior\"),\n",
+ " ('reprove', 'take to task')]},\n",
+ " {'answer': 'adopted',\n",
+ " 'hint': 'synonyms for adopted',\n",
+ " 'clues': [('adopt', \"take up and practice as one's own\"),\n",
+ " ('assume', 'take on a certain form, attribute, or aspect'),\n",
+ " ('take on', 'take on titles, offices, duties, responsibilities'),\n",
+ " ('sweep up',\n",
+ " \"take up the cause, ideology, practice, method, of someone and use it as one's own\"),\n",
+ " ('espouse',\n",
+ " 'choose and follow; as of theories, ideas, policies, strategies or plans'),\n",
+ " ('dramatise', 'put into dramatic form'),\n",
+ " ('borrow', \"take up and practice as one's own\"),\n",
+ " ('take up', \"take up and practice as one's own\"),\n",
+ " ('embrace',\n",
+ " \"take up the cause, ideology, practice, method, of someone and use it as one's own\"),\n",
+ " ('take', 'take on a certain form, attribute, or aspect'),\n",
+ " ('take over', 'take on titles, offices, duties, responsibilities'),\n",
+ " ('acquire', 'take on a certain form, attribute, or aspect'),\n",
+ " ('follow',\n",
+ " 'choose and follow; as of theories, ideas, policies, strategies or plans')]},\n",
+ " {'answer': 'adorned',\n",
+ " 'hint': 'synonyms for adorned',\n",
+ " 'clues': [('adorn',\n",
+ " 'make more attractive by adding ornament, colour, etc.'),\n",
+ " ('beautify', 'make more attractive by adding ornament, colour, etc.'),\n",
+ " ('grace', 'be beautiful to look at'),\n",
+ " ('embellish', 'make more attractive by adding ornament, colour, etc.'),\n",
+ " ('ornament', 'make more attractive by adding ornament, colour, etc.'),\n",
+ " ('invest', 'furnish with power or authority; of kings or emperors'),\n",
+ " ('deck', 'be beautiful to look at'),\n",
+ " ('decorate', 'make more attractive by adding ornament, colour, etc.'),\n",
+ " ('clothe', 'furnish with power or authority; of kings or emperors')]},\n",
+ " {'answer': 'adulterate',\n",
+ " 'hint': 'synonyms for adulterate',\n",
+ " 'clues': [('dilute',\n",
+ " 'corrupt, debase, or make impure by adding a foreign or inferior substance; often by replacing valuable ingredients with inferior ones'),\n",
+ " ('stretch',\n",
+ " 'corrupt, debase, or make impure by adding a foreign or inferior substance; often by replacing valuable ingredients with inferior ones'),\n",
+ " ('load',\n",
+ " 'corrupt, debase, or make impure by adding a foreign or inferior substance; often by replacing valuable ingredients with inferior ones'),\n",
+ " ('debase',\n",
+ " 'corrupt, debase, or make impure by adding a foreign or inferior substance; often by replacing valuable ingredients with inferior ones')]},\n",
+ " {'answer': 'adulterated',\n",
+ " 'hint': 'synonyms for adulterated',\n",
+ " 'clues': [('stretch',\n",
+ " 'corrupt, debase, or make impure by adding a foreign or inferior substance; often by replacing valuable ingredients with inferior ones'),\n",
+ " ('dilute',\n",
+ " 'corrupt, debase, or make impure by adding a foreign or inferior substance; often by replacing valuable ingredients with inferior ones'),\n",
+ " ('adulterate',\n",
+ " 'corrupt, debase, or make impure by adding a foreign or inferior substance; often by replacing valuable ingredients with inferior ones'),\n",
+ " ('load',\n",
+ " 'corrupt, debase, or make impure by adding a foreign or inferior substance; often by replacing valuable ingredients with inferior ones'),\n",
+ " ('debase',\n",
+ " 'corrupt, debase, or make impure by adding a foreign or inferior substance; often by replacing valuable ingredients with inferior ones')]},\n",
+ " {'answer': 'adulterating',\n",
+ " 'hint': 'synonyms for adulterating',\n",
+ " 'clues': [('stretch',\n",
+ " 'corrupt, debase, or make impure by adding a foreign or inferior substance; often by replacing valuable ingredients with inferior ones'),\n",
+ " ('dilute',\n",
+ " 'corrupt, debase, or make impure by adding a foreign or inferior substance; often by replacing valuable ingredients with inferior ones'),\n",
+ " ('adulterate',\n",
+ " 'corrupt, debase, or make impure by adding a foreign or inferior substance; often by replacing valuable ingredients with inferior ones'),\n",
+ " ('load',\n",
+ " 'corrupt, debase, or make impure by adding a foreign or inferior substance; often by replacing valuable ingredients with inferior ones'),\n",
+ " ('debase',\n",
+ " 'corrupt, debase, or make impure by adding a foreign or inferior substance; often by replacing valuable ingredients with inferior ones')]},\n",
+ " {'answer': 'advance',\n",
+ " 'hint': 'synonyms for advance',\n",
+ " 'clues': [('gain ground', 'obtain advantages, such as points, etc.'),\n",
+ " ('pull ahead', 'obtain advantages, such as points, etc.'),\n",
+ " ('go on', 'move forward, also in the metaphorical sense'),\n",
+ " ('throw out', 'bring forward for consideration or acceptance'),\n",
+ " ('get ahead', 'obtain advantages, such as points, etc.'),\n",
+ " ('come on', 'develop in a positive way'),\n",
+ " ('shape up', 'develop in a positive way'),\n",
+ " ('make headway', 'obtain advantages, such as points, etc.'),\n",
+ " ('come along', 'develop in a positive way'),\n",
+ " ('supercharge', 'increase or raise'),\n",
+ " ('boost', 'contribute to the progress or growth of'),\n",
+ " ('pass on', 'move forward, also in the metaphorical sense'),\n",
+ " ('bring forward', 'cause to move forward'),\n",
+ " ('encourage', 'contribute to the progress or growth of'),\n",
+ " ('further', 'contribute to the progress or growth of'),\n",
+ " ('move on', 'move forward, also in the metaphorical sense'),\n",
+ " ('promote', 'give a promotion to or assign to a higher position'),\n",
+ " ('gain', 'rise in rate or price'),\n",
+ " ('win', 'obtain advantages, such as points, etc.'),\n",
+ " ('get along', 'develop in a positive way'),\n",
+ " ('kick upstairs', 'give a promotion to or assign to a higher position'),\n",
+ " ('march on', 'move forward, also in the metaphorical sense'),\n",
+ " ('get on', 'develop in a positive way'),\n",
+ " ('elevate', 'give a promotion to or assign to a higher position'),\n",
+ " ('progress', 'develop in a positive way'),\n",
+ " ('upgrade', 'give a promotion to or assign to a higher position'),\n",
+ " ('raise', 'give a promotion to or assign to a higher position')]},\n",
+ " {'answer': 'advanced',\n",
+ " 'hint': 'synonyms for advanced',\n",
+ " 'clues': [('advance', 'cause to move forward'),\n",
+ " ('come on', 'develop in a positive way'),\n",
+ " ('make headway', 'obtain advantages, such as points, etc.'),\n",
+ " ('supercharge', 'increase or raise'),\n",
+ " ('boost', 'contribute to the progress or growth of'),\n",
+ " ('set ahead', 'move forward'),\n",
+ " ('bring forward', 'cause to move forward'),\n",
+ " ('move on', 'move forward, also in the metaphorical sense'),\n",
+ " ('gain', 'rise in rate or price'),\n",
+ " ('win', 'obtain advantages, such as points, etc.'),\n",
+ " ('progress', 'develop in a positive way'),\n",
+ " ('gain ground', 'obtain advantages, such as points, etc.'),\n",
+ " ('pull ahead', 'obtain advantages, such as points, etc.'),\n",
+ " ('go on', 'move forward, also in the metaphorical sense'),\n",
+ " ('throw out', 'bring forward for consideration or acceptance'),\n",
+ " ('shape up', 'develop in a positive way'),\n",
+ " ('come along', 'develop in a positive way'),\n",
+ " ('pass on', 'move forward, also in the metaphorical sense'),\n",
+ " ('encourage', 'contribute to the progress or growth of'),\n",
+ " ('further', 'contribute to the progress or growth of'),\n",
+ " ('promote', 'give a promotion to or assign to a higher position'),\n",
+ " ('get along', 'develop in a positive way'),\n",
+ " ('kick upstairs', 'give a promotion to or assign to a higher position'),\n",
+ " ('march on', 'move forward, also in the metaphorical sense'),\n",
+ " ('get on', 'develop in a positive way'),\n",
+ " ('elevate', 'give a promotion to or assign to a higher position'),\n",
+ " ('upgrade', 'give a promotion to or assign to a higher position'),\n",
+ " ('raise', 'give a promotion to or assign to a higher position')]},\n",
+ " {'answer': 'advancing',\n",
+ " 'hint': 'synonyms for advancing',\n",
+ " 'clues': [('advance', 'cause to move forward'),\n",
+ " ('come on', 'develop in a positive way'),\n",
+ " ('make headway', 'obtain advantages, such as points, etc.'),\n",
+ " ('supercharge', 'increase or raise'),\n",
+ " ('boost', 'contribute to the progress or growth of'),\n",
+ " ('set ahead', 'move forward'),\n",
+ " ('bring forward', 'cause to move forward'),\n",
+ " ('move on', 'move forward, also in the metaphorical sense'),\n",
+ " ('gain', 'rise in rate or price'),\n",
+ " ('win', 'obtain advantages, such as points, etc.'),\n",
+ " ('progress', 'develop in a positive way'),\n",
+ " ('gain ground', 'obtain advantages, such as points, etc.'),\n",
+ " ('pull ahead', 'obtain advantages, such as points, etc.'),\n",
+ " ('go on', 'move forward, also in the metaphorical sense'),\n",
+ " ('throw out', 'bring forward for consideration or acceptance'),\n",
+ " ('shape up', 'develop in a positive way'),\n",
+ " ('come along', 'develop in a positive way'),\n",
+ " ('pass on', 'move forward, also in the metaphorical sense'),\n",
+ " ('encourage', 'contribute to the progress or growth of'),\n",
+ " ('further', 'contribute to the progress or growth of'),\n",
+ " ('promote', 'give a promotion to or assign to a higher position'),\n",
+ " ('get along', 'develop in a positive way'),\n",
+ " ('kick upstairs', 'give a promotion to or assign to a higher position'),\n",
+ " ('march on', 'move forward, also in the metaphorical sense'),\n",
+ " ('get on', 'develop in a positive way'),\n",
+ " ('elevate', 'give a promotion to or assign to a higher position'),\n",
+ " ('upgrade', 'give a promotion to or assign to a higher position'),\n",
+ " ('raise', 'give a promotion to or assign to a higher position')]},\n",
+ " {'answer': 'advertised',\n",
+ " 'hint': 'synonyms for advertised',\n",
+ " 'clues': [('advertize', 'call attention to'),\n",
+ " ('publicize', 'call attention to'),\n",
+ " ('promote', 'make publicity for; try to sell (a product)'),\n",
+ " ('push', 'make publicity for; try to sell (a product)')]},\n",
+ " {'answer': 'advised',\n",
+ " 'hint': 'synonyms for advised',\n",
+ " 'clues': [('rede', 'give advice to'),\n",
+ " ('notify', 'inform (somebody) of something'),\n",
+ " ('apprize', 'inform (somebody) of something'),\n",
+ " ('advise', 'inform (somebody) of something'),\n",
+ " ('send word', 'inform (somebody) of something'),\n",
+ " ('suggest', 'make a proposal, declare a plan for something'),\n",
+ " ('give notice', 'inform (somebody) of something'),\n",
+ " ('propose', 'make a proposal, declare a plan for something'),\n",
+ " ('counsel', 'give advice to')]},\n",
+ " {'answer': 'aerated',\n",
+ " 'hint': 'synonyms for aerated',\n",
+ " 'clues': [('air', 'expose to fresh air'),\n",
+ " ('oxygenise', 'impregnate, combine, or supply with oxygen'),\n",
+ " ('aerate',\n",
+ " 'aerate (sewage) so as to favor the growth of organisms that decompose organic matter'),\n",
+ " ('air out', 'expose to fresh air'),\n",
+ " ('activate',\n",
+ " 'aerate (sewage) so as to favor the growth of organisms that decompose organic matter'),\n",
+ " ('oxygenate', 'impregnate, combine, or supply with oxygen')]},\n",
+ " {'answer': 'affected',\n",
+ " 'hint': 'synonyms for affected',\n",
+ " 'clues': [('involve', 'connect closely and often incriminatingly'),\n",
+ " ('pretend', 'make believe with the intent to deceive'),\n",
+ " ('impact', 'have an effect upon'),\n",
+ " ('bear on', 'have an effect upon'),\n",
+ " ('strike', 'have an emotional or cognitive impact upon'),\n",
+ " ('move', 'have an emotional or cognitive impact upon'),\n",
+ " ('affect', 'connect closely and often incriminatingly'),\n",
+ " ('regard', 'connect closely and often incriminatingly'),\n",
+ " ('touch', 'have an effect upon'),\n",
+ " ('impress', 'have an emotional or cognitive impact upon'),\n",
+ " ('sham', 'make believe with the intent to deceive'),\n",
+ " ('touch on', 'have an effect upon'),\n",
+ " ('dissemble', 'make believe with the intent to deceive'),\n",
+ " ('feign', 'make believe with the intent to deceive')]},\n",
+ " {'answer': 'affecting',\n",
+ " 'hint': 'synonyms for affecting',\n",
+ " 'clues': [('involve', 'connect closely and often incriminatingly'),\n",
+ " ('pretend', 'make believe with the intent to deceive'),\n",
+ " ('impact', 'have an effect upon'),\n",
+ " ('bear on', 'have an effect upon'),\n",
+ " ('strike', 'have an emotional or cognitive impact upon'),\n",
+ " ('move', 'have an emotional or cognitive impact upon'),\n",
+ " ('affect', 'connect closely and often incriminatingly'),\n",
+ " ('regard', 'connect closely and often incriminatingly'),\n",
+ " ('touch', 'have an effect upon'),\n",
+ " ('impress', 'have an emotional or cognitive impact upon'),\n",
+ " ('sham', 'make believe with the intent to deceive'),\n",
+ " ('touch on', 'have an effect upon'),\n",
+ " ('dissemble', 'make believe with the intent to deceive'),\n",
+ " ('feign', 'make believe with the intent to deceive')]},\n",
+ " {'answer': 'affiliated',\n",
+ " 'hint': 'synonyms for affiliated',\n",
+ " 'clues': [('affiliate', 'keep company with; hang out with'),\n",
+ " ('associate', 'keep company with; hang out with'),\n",
+ " ('consort', 'keep company with; hang out with'),\n",
+ " ('assort', 'keep company with; hang out with')]},\n",
+ " {'answer': 'affixed',\n",
+ " 'hint': 'synonyms for affixed',\n",
+ " 'clues': [('affix', 'add to the very end'),\n",
+ " ('add on', 'add to the very end'),\n",
+ " ('append', 'add to the very end'),\n",
+ " ('supplement', 'add to the very end'),\n",
+ " ('stick on', 'attach to')]},\n",
+ " {'answer': 'aged',\n",
+ " 'hint': 'synonyms for aged',\n",
+ " 'clues': [('mature', 'grow old or older'),\n",
+ " ('age', 'grow old or older'),\n",
+ " ('senesce', 'grow old or older'),\n",
+ " ('get on', 'grow old or older')]},\n",
+ " {'answer': 'ageing',\n",
+ " 'hint': 'synonyms for ageing',\n",
+ " 'clues': [('mature', 'grow old or older'),\n",
+ " ('age', 'grow old or older'),\n",
+ " ('senesce', 'grow old or older'),\n",
+ " ('get on', 'grow old or older')]},\n",
+ " {'answer': 'aggravated',\n",
+ " 'hint': 'synonyms for aggravated',\n",
+ " 'clues': [('aggravate', 'exasperate or irritate'),\n",
+ " ('exacerbate', 'exasperate or irritate'),\n",
+ " ('exasperate', 'exasperate or irritate'),\n",
+ " ('worsen', 'make worse')]},\n",
+ " {'answer': 'aggravating',\n",
+ " 'hint': 'synonyms for aggravating',\n",
+ " 'clues': [('aggravate', 'exasperate or irritate'),\n",
+ " ('exacerbate', 'exasperate or irritate'),\n",
+ " ('exasperate', 'exasperate or irritate'),\n",
+ " ('worsen', 'make worse')]},\n",
+ " {'answer': 'aging',\n",
+ " 'hint': 'synonyms for aging',\n",
+ " 'clues': [('mature', 'grow old or older'),\n",
+ " ('age', 'grow old or older'),\n",
+ " ('senesce', 'grow old or older'),\n",
+ " ('get on', 'grow old or older')]},\n",
+ " {'answer': 'agitated',\n",
+ " 'hint': 'synonyms for agitated',\n",
+ " 'clues': [('budge', 'move very slightly'),\n",
+ " ('agitate', 'change the arrangement or position of'),\n",
+ " ('commove', 'change the arrangement or position of'),\n",
+ " ('excite', 'cause to be agitated, excited, or roused'),\n",
+ " ('raise up', 'change the arrangement or position of'),\n",
+ " ('charge', 'cause to be agitated, excited, or roused'),\n",
+ " ('press',\n",
+ " 'exert oneself continuously, vigorously, or obtrusively to gain an end or engage in a crusade for a certain cause or person; be an advocate for'),\n",
+ " ('stir up', 'try to stir up public opinion'),\n",
+ " ('shake', 'move or cause to move back and forth'),\n",
+ " ('turn on', 'cause to be agitated, excited, or roused'),\n",
+ " ('charge up', 'cause to be agitated, excited, or roused'),\n",
+ " ('rouse', 'cause to be agitated, excited, or roused'),\n",
+ " ('stir', 'move very slightly'),\n",
+ " ('push',\n",
+ " 'exert oneself continuously, vigorously, or obtrusively to gain an end or engage in a crusade for a certain cause or person; be an advocate for'),\n",
+ " ('campaign',\n",
+ " 'exert oneself continuously, vigorously, or obtrusively to gain an end or engage in a crusade for a certain cause or person; be an advocate for'),\n",
+ " ('fight',\n",
+ " 'exert oneself continuously, vigorously, or obtrusively to gain an end or engage in a crusade for a certain cause or person; be an advocate for'),\n",
+ " ('vex', 'change the arrangement or position of'),\n",
+ " ('shift', 'move very slightly'),\n",
+ " ('crusade',\n",
+ " 'exert oneself continuously, vigorously, or obtrusively to gain an end or engage in a crusade for a certain cause or person; be an advocate for'),\n",
+ " ('shake up', 'change the arrangement or position of'),\n",
+ " ('foment', 'try to stir up public opinion'),\n",
+ " ('disturb', 'change the arrangement or position of')]},\n",
+ " {'answer': 'agitating',\n",
+ " 'hint': 'synonyms for agitating',\n",
+ " 'clues': [('budge', 'move very slightly'),\n",
+ " ('agitate', 'change the arrangement or position of'),\n",
+ " ('commove', 'change the arrangement or position of'),\n",
+ " ('excite', 'cause to be agitated, excited, or roused'),\n",
+ " ('raise up', 'change the arrangement or position of'),\n",
+ " ('charge', 'cause to be agitated, excited, or roused'),\n",
+ " ('press',\n",
+ " 'exert oneself continuously, vigorously, or obtrusively to gain an end or engage in a crusade for a certain cause or person; be an advocate for'),\n",
+ " ('stir up', 'try to stir up public opinion'),\n",
+ " ('shake', 'move or cause to move back and forth'),\n",
+ " ('turn on', 'cause to be agitated, excited, or roused'),\n",
+ " ('charge up', 'cause to be agitated, excited, or roused'),\n",
+ " ('rouse', 'cause to be agitated, excited, or roused'),\n",
+ " ('stir', 'move very slightly'),\n",
+ " ('push',\n",
+ " 'exert oneself continuously, vigorously, or obtrusively to gain an end or engage in a crusade for a certain cause or person; be an advocate for'),\n",
+ " ('campaign',\n",
+ " 'exert oneself continuously, vigorously, or obtrusively to gain an end or engage in a crusade for a certain cause or person; be an advocate for'),\n",
+ " ('fight',\n",
+ " 'exert oneself continuously, vigorously, or obtrusively to gain an end or engage in a crusade for a certain cause or person; be an advocate for'),\n",
+ " ('vex', 'change the arrangement or position of'),\n",
+ " ('shift', 'move very slightly'),\n",
+ " ('crusade',\n",
+ " 'exert oneself continuously, vigorously, or obtrusively to gain an end or engage in a crusade for a certain cause or person; be an advocate for'),\n",
+ " ('shake up', 'change the arrangement or position of'),\n",
+ " ('foment', 'try to stir up public opinion'),\n",
+ " ('disturb', 'change the arrangement or position of')]},\n",
+ " {'answer': 'agreed',\n",
+ " 'hint': 'synonyms for agreed',\n",
+ " 'clues': [('gibe',\n",
+ " 'be compatible, similar or consistent; coincide in their characteristics'),\n",
+ " ('match',\n",
+ " 'be compatible, similar or consistent; coincide in their characteristics'),\n",
+ " ('fit in', 'go together'),\n",
+ " ('tally',\n",
+ " 'be compatible, similar or consistent; coincide in their characteristics'),\n",
+ " ('agree', 'consent or assent to a condition, or agree to do something'),\n",
+ " ('check',\n",
+ " 'be compatible, similar or consistent; coincide in their characteristics'),\n",
+ " ('accord', 'go together'),\n",
+ " ('consort', 'go together'),\n",
+ " ('jibe',\n",
+ " 'be compatible, similar or consistent; coincide in their characteristics'),\n",
+ " ('concur', 'be in accord; be in agreement'),\n",
+ " ('fit',\n",
+ " 'be compatible, similar or consistent; coincide in their characteristics'),\n",
+ " ('concord', 'go together'),\n",
+ " ('correspond',\n",
+ " 'be compatible, similar or consistent; coincide in their characteristics'),\n",
+ " ('harmonise', 'go together'),\n",
+ " ('hold', 'be in accord; be in agreement')]},\n",
+ " {'answer': 'aired',\n",
+ " 'hint': 'synonyms for aired',\n",
+ " 'clues': [('bare', 'make public'),\n",
+ " ('air', 'expose to fresh air'),\n",
+ " ('send', 'broadcast over the airwaves, as in radio or television'),\n",
+ " ('beam', 'broadcast over the airwaves, as in radio or television'),\n",
+ " ('publicize', 'make public'),\n",
+ " ('air out', 'expose to fresh air'),\n",
+ " ('transmit', 'broadcast over the airwaves, as in radio or television'),\n",
+ " ('broadcast', 'broadcast over the airwaves, as in radio or television'),\n",
+ " ('ventilate', 'expose to cool or cold air so as to cool or freshen'),\n",
+ " ('vent', 'expose to cool or cold air so as to cool or freshen'),\n",
+ " ('aerate', 'expose to fresh air')]},\n",
+ " {'answer': 'alarmed',\n",
+ " 'hint': 'synonyms for alarmed',\n",
+ " 'clues': [('alarm',\n",
+ " 'warn or arouse to a sense of danger or call to a state of preparedness'),\n",
+ " ('alert',\n",
+ " 'warn or arouse to a sense of danger or call to a state of preparedness'),\n",
+ " ('appal',\n",
+ " 'fill with apprehension or alarm; cause to be unpleasantly surprised'),\n",
+ " ('horrify',\n",
+ " 'fill with apprehension or alarm; cause to be unpleasantly surprised'),\n",
+ " ('dismay',\n",
+ " 'fill with apprehension or alarm; cause to be unpleasantly surprised')]},\n",
+ " {'answer': 'alarming',\n",
+ " 'hint': 'synonyms for alarming',\n",
+ " 'clues': [('alarm',\n",
+ " 'warn or arouse to a sense of danger or call to a state of preparedness'),\n",
+ " ('alert',\n",
+ " 'warn or arouse to a sense of danger or call to a state of preparedness'),\n",
+ " ('appal',\n",
+ " 'fill with apprehension or alarm; cause to be unpleasantly surprised'),\n",
+ " ('horrify',\n",
+ " 'fill with apprehension or alarm; cause to be unpleasantly surprised'),\n",
+ " ('dismay',\n",
+ " 'fill with apprehension or alarm; cause to be unpleasantly surprised')]},\n",
+ " {'answer': 'alienated',\n",
+ " 'hint': 'synonyms for alienated',\n",
+ " 'clues': [('alienate',\n",
+ " 'arouse hostility or indifference in where there had formerly been love, affection, or friendliness'),\n",
+ " ('estrange',\n",
+ " 'arouse hostility or indifference in where there had formerly been love, affection, or friendliness'),\n",
+ " ('alien', 'transfer property or ownership'),\n",
+ " ('disaffect',\n",
+ " 'arouse hostility or indifference in where there had formerly been love, affection, or friendliness')]},\n",
+ " {'answer': 'alienating',\n",
+ " 'hint': 'synonyms for alienating',\n",
+ " 'clues': [('alienate',\n",
+ " 'arouse hostility or indifference in where there had formerly been love, affection, or friendliness'),\n",
+ " ('estrange',\n",
+ " 'arouse hostility or indifference in where there had formerly been love, affection, or friendliness'),\n",
+ " ('alien', 'transfer property or ownership'),\n",
+ " ('disaffect',\n",
+ " 'arouse hostility or indifference in where there had formerly been love, affection, or friendliness')]},\n",
+ " {'answer': 'aligned',\n",
+ " 'hint': 'synonyms for aligned',\n",
+ " 'clues': [('array', 'align oneself with a group or a way of thinking'),\n",
+ " ('line up',\n",
+ " 'place in a line or arrange so as to be parallel or straight'),\n",
+ " ('ordinate',\n",
+ " 'bring (components or parts) into proper or desirable coordination correlation'),\n",
+ " ('adjust', 'place in a line or arrange so as to be parallel or straight'),\n",
+ " ('align',\n",
+ " 'bring (components or parts) into proper or desirable coordination correlation'),\n",
+ " ('aline',\n",
+ " 'place in a line or arrange so as to be parallel or straight')]},\n",
+ " {'answer': 'aligning',\n",
+ " 'hint': 'synonyms for aligning',\n",
+ " 'clues': [('array', 'align oneself with a group or a way of thinking'),\n",
+ " ('line up',\n",
+ " 'place in a line or arrange so as to be parallel or straight'),\n",
+ " ('ordinate',\n",
+ " 'bring (components or parts) into proper or desirable coordination correlation'),\n",
+ " ('adjust', 'place in a line or arrange so as to be parallel or straight'),\n",
+ " ('align',\n",
+ " 'bring (components or parts) into proper or desirable coordination correlation'),\n",
+ " ('aline',\n",
+ " 'place in a line or arrange so as to be parallel or straight')]},\n",
+ " {'answer': 'alleviated',\n",
+ " 'hint': 'synonyms for alleviated',\n",
+ " 'clues': [('facilitate', 'make easier'),\n",
+ " ('ease', 'make easier'),\n",
+ " ('alleviate', 'provide physical relief, as from pain'),\n",
+ " ('relieve', 'provide physical relief, as from pain'),\n",
+ " ('assuage', 'provide physical relief, as from pain'),\n",
+ " ('palliate', 'provide physical relief, as from pain')]},\n",
+ " {'answer': 'allotted',\n",
+ " 'hint': 'synonyms for allotted',\n",
+ " 'clues': [('portion', 'give out'),\n",
+ " ('grant', 'allow to have'),\n",
+ " ('assign', 'give out'),\n",
+ " ('accord', 'allow to have'),\n",
+ " ('dispense', 'administer or bestow, as in small portions'),\n",
+ " ('allot', 'give out'),\n",
+ " ('shell out', 'administer or bestow, as in small portions'),\n",
+ " ('deal out', 'administer or bestow, as in small portions'),\n",
+ " ('administer', 'administer or bestow, as in small portions'),\n",
+ " ('dish out', 'administer or bestow, as in small portions'),\n",
+ " ('deal', 'administer or bestow, as in small portions'),\n",
+ " ('lot', 'administer or bestow, as in small portions'),\n",
+ " ('distribute', 'administer or bestow, as in small portions'),\n",
+ " ('dole out', 'administer or bestow, as in small portions'),\n",
+ " ('parcel out', 'administer or bestow, as in small portions'),\n",
+ " ('mete out', 'administer or bestow, as in small portions')]},\n",
+ " {'answer': 'altered',\n",
+ " 'hint': 'synonyms for altered',\n",
+ " 'clues': [('change',\n",
+ " 'cause to change; make different; cause a transformation'),\n",
+ " ('falsify', 'insert words into texts, often falsifying it thereby'),\n",
+ " ('interpolate', 'insert words into texts, often falsifying it thereby'),\n",
+ " ('vary',\n",
+ " \"become different in some particular way, without permanently losing one's or its former characteristics or essence\"),\n",
+ " ('spay', 'remove the ovaries of'),\n",
+ " ('alter', 'cause to change; make different; cause a transformation'),\n",
+ " ('modify', 'cause to change; make different; cause a transformation'),\n",
+ " ('castrate', 'remove the ovaries of'),\n",
+ " ('neuter', 'remove the ovaries of')]},\n",
+ " {'answer': 'alternate',\n",
+ " 'hint': 'synonyms for alternate',\n",
+ " 'clues': [('switch',\n",
+ " 'reverse (a direction, attitude, or course of action)'),\n",
+ " ('flip', 'reverse (a direction, attitude, or course of action)'),\n",
+ " ('interchange', 'reverse (a direction, attitude, or course of action)'),\n",
+ " ('flip-flop', 'reverse (a direction, attitude, or course of action)'),\n",
+ " ('take turns', 'do something in turns'),\n",
+ " ('jump',\n",
+ " 'go back and forth; swing back and forth between two states or conditions'),\n",
+ " ('understudy', 'be an understudy or alternate for a role'),\n",
+ " ('tack', 'reverse (a direction, attitude, or course of action)')]},\n",
+ " {'answer': 'alternating',\n",
+ " 'hint': 'synonyms for alternating',\n",
+ " 'clues': [('alternate',\n",
+ " 'reverse (a direction, attitude, or course of action)'),\n",
+ " ('flip', 'reverse (a direction, attitude, or course of action)'),\n",
+ " ('interchange', 'reverse (a direction, attitude, or course of action)'),\n",
+ " ('jump',\n",
+ " 'go back and forth; swing back and forth between two states or conditions'),\n",
+ " ('understudy', 'be an understudy or alternate for a role'),\n",
+ " ('switch', 'reverse (a direction, attitude, or course of action)'),\n",
+ " ('flip-flop', 'reverse (a direction, attitude, or course of action)'),\n",
+ " ('take turns', 'do something in turns'),\n",
+ " ('tack', 'reverse (a direction, attitude, or course of action)')]},\n",
+ " {'answer': 'amalgamate',\n",
+ " 'hint': 'synonyms for amalgamate',\n",
+ " 'clues': [('commix',\n",
+ " 'to bring or combine together or with something else'),\n",
+ " ('mingle', 'to bring or combine together or with something else'),\n",
+ " ('mix', 'to bring or combine together or with something else'),\n",
+ " ('unify', 'to bring or combine together or with something else')]},\n",
+ " {'answer': 'amalgamated',\n",
+ " 'hint': 'synonyms for amalgamated',\n",
+ " 'clues': [('mingle',\n",
+ " 'to bring or combine together or with something else'),\n",
+ " ('amalgamate', 'to bring or combine together or with something else'),\n",
+ " ('mix', 'to bring or combine together or with something else'),\n",
+ " ('commix', 'to bring or combine together or with something else'),\n",
+ " ('unify', 'to bring or combine together or with something else')]},\n",
+ " {'answer': 'amazed',\n",
+ " 'hint': 'synonyms for amazed',\n",
+ " 'clues': [('puzzle', 'be a mystery or bewildering to'),\n",
+ " ('get', 'be a mystery or bewildering to'),\n",
+ " ('astonish', 'affect with wonder'),\n",
+ " ('beat', 'be a mystery or bewildering to'),\n",
+ " ('amaze', 'affect with wonder'),\n",
+ " ('stupefy', 'be a mystery or bewildering to'),\n",
+ " ('baffle', 'be a mystery or bewildering to'),\n",
+ " ('dumbfound', 'be a mystery or bewildering to'),\n",
+ " ('pose', 'be a mystery or bewildering to'),\n",
+ " ('bewilder', 'be a mystery or bewildering to'),\n",
+ " ('perplex', 'be a mystery or bewildering to'),\n",
+ " ('astound', 'affect with wonder'),\n",
+ " ('gravel', 'be a mystery or bewildering to'),\n",
+ " ('mystify', 'be a mystery or bewildering to'),\n",
+ " ('stick', 'be a mystery or bewildering to'),\n",
+ " ('nonplus', 'be a mystery or bewildering to'),\n",
+ " ('vex', 'be a mystery or bewildering to'),\n",
+ " ('flummox', 'be a mystery or bewildering to')]},\n",
+ " {'answer': 'amazing',\n",
+ " 'hint': 'synonyms for amazing',\n",
+ " 'clues': [('puzzle', 'be a mystery or bewildering to'),\n",
+ " ('get', 'be a mystery or bewildering to'),\n",
+ " ('astonish', 'affect with wonder'),\n",
+ " ('beat', 'be a mystery or bewildering to'),\n",
+ " ('amaze', 'affect with wonder'),\n",
+ " ('stupefy', 'be a mystery or bewildering to'),\n",
+ " ('baffle', 'be a mystery or bewildering to'),\n",
+ " ('dumbfound', 'be a mystery or bewildering to'),\n",
+ " ('pose', 'be a mystery or bewildering to'),\n",
+ " ('bewilder', 'be a mystery or bewildering to'),\n",
+ " ('perplex', 'be a mystery or bewildering to'),\n",
+ " ('astound', 'affect with wonder'),\n",
+ " ('gravel', 'be a mystery or bewildering to'),\n",
+ " ('mystify', 'be a mystery or bewildering to'),\n",
+ " ('stick', 'be a mystery or bewildering to'),\n",
+ " ('nonplus', 'be a mystery or bewildering to'),\n",
+ " ('vex', 'be a mystery or bewildering to'),\n",
+ " ('flummox', 'be a mystery or bewildering to')]},\n",
+ " {'answer': 'ameliorating',\n",
+ " 'hint': 'synonyms for ameliorating',\n",
+ " 'clues': [('better', 'get better'),\n",
+ " ('ameliorate', 'to make better'),\n",
+ " ('improve', 'get better'),\n",
+ " ('amend', 'to make better')]},\n",
+ " {'answer': 'amended',\n",
+ " 'hint': 'synonyms for amended',\n",
+ " 'clues': [('repair', 'set straight or right'),\n",
+ " ('ameliorate', 'to make better'),\n",
+ " ('better', 'to make better'),\n",
+ " ('amend', 'set straight or right'),\n",
+ " ('remediate', 'set straight or right'),\n",
+ " ('remedy', 'set straight or right'),\n",
+ " ('rectify', 'set straight or right'),\n",
+ " ('improve', 'to make better')]},\n",
+ " {'answer': 'analyzed',\n",
+ " 'hint': 'synonyms for analyzed',\n",
+ " 'clues': [('examine',\n",
+ " 'consider in detail and subject to an analysis in order to discover essential features or meaning'),\n",
+ " ('analyze',\n",
+ " 'make a mathematical, chemical, or grammatical analysis of; break down into components or essential features'),\n",
+ " ('psychoanalyze', 'subject to psychoanalytic treatment'),\n",
+ " ('take apart',\n",
+ " 'make a mathematical, chemical, or grammatical analysis of; break down into components or essential features'),\n",
+ " ('canvass',\n",
+ " 'consider in detail and subject to an analysis in order to discover essential features or meaning'),\n",
+ " ('study',\n",
+ " 'consider in detail and subject to an analysis in order to discover essential features or meaning'),\n",
+ " ('break down',\n",
+ " 'make a mathematical, chemical, or grammatical analysis of; break down into components or essential features'),\n",
+ " ('dissect',\n",
+ " 'make a mathematical, chemical, or grammatical analysis of; break down into components or essential features')]},\n",
+ " {'answer': 'angled',\n",
+ " 'hint': 'synonyms for angled',\n",
+ " 'clues': [('lean', 'to incline or bend from a vertical position'),\n",
+ " ('slant', 'present with a bias'),\n",
+ " ('angle', 'fish with a hook'),\n",
+ " ('tilt', 'to incline or bend from a vertical position'),\n",
+ " ('tip', 'to incline or bend from a vertical position'),\n",
+ " ('weight', 'present with a bias'),\n",
+ " ('fish', 'seek indirectly')]},\n",
+ " {'answer': 'animate',\n",
+ " 'hint': 'synonyms for animate',\n",
+ " 'clues': [('liven', 'make lively'),\n",
+ " ('animize', 'give lifelike qualities to'),\n",
+ " ('enliven', 'make lively'),\n",
+ " ('vivify', 'give new life or energy to'),\n",
+ " ('invigorate', 'heighten or intensify'),\n",
+ " ('reanimate', 'give new life or energy to'),\n",
+ " ('repair', 'give new life or energy to'),\n",
+ " ('exalt', 'heighten or intensify'),\n",
+ " ('revive', 'give new life or energy to'),\n",
+ " ('inspire', 'heighten or intensify'),\n",
+ " ('renovate', 'give new life or energy to'),\n",
+ " ('liven up', 'make lively'),\n",
+ " ('quicken', 'give new life or energy to'),\n",
+ " ('recreate', 'give new life or energy to')]},\n",
+ " {'answer': 'animated',\n",
+ " 'hint': 'synonyms for animated',\n",
+ " 'clues': [('liven', 'make lively'),\n",
+ " ('animize', 'give lifelike qualities to'),\n",
+ " ('animate', 'give lifelike qualities to'),\n",
+ " ('invigorate', 'heighten or intensify'),\n",
+ " ('enliven', 'heighten or intensify'),\n",
+ " ('exalt', 'heighten or intensify'),\n",
+ " ('liven up', 'make lively'),\n",
+ " ('quicken', 'give new life or energy to'),\n",
+ " ('recreate', 'give new life or energy to'),\n",
+ " ('vivify', 'give new life or energy to'),\n",
+ " ('repair', 'give new life or energy to'),\n",
+ " ('revive', 'give new life or energy to'),\n",
+ " ('inspire', 'heighten or intensify'),\n",
+ " ('renovate', 'give new life or energy to')]},\n",
+ " {'answer': 'animating',\n",
+ " 'hint': 'synonyms for animating',\n",
+ " 'clues': [('liven', 'make lively'),\n",
+ " ('animize', 'give lifelike qualities to'),\n",
+ " ('animate', 'give lifelike qualities to'),\n",
+ " ('invigorate', 'heighten or intensify'),\n",
+ " ('enliven', 'heighten or intensify'),\n",
+ " ('exalt', 'heighten or intensify'),\n",
+ " ('liven up', 'make lively'),\n",
+ " ('quicken', 'give new life or energy to'),\n",
+ " ('recreate', 'give new life or energy to'),\n",
+ " ('vivify', 'give new life or energy to'),\n",
+ " ('repair', 'give new life or energy to'),\n",
+ " ('revive', 'give new life or energy to'),\n",
+ " ('inspire', 'heighten or intensify'),\n",
+ " ('renovate', 'give new life or energy to')]},\n",
+ " {'answer': 'annihilated',\n",
+ " 'hint': 'synonyms for annihilated',\n",
+ " 'clues': [('wipe out', 'kill in large numbers'),\n",
+ " ('eradicate', 'kill in large numbers'),\n",
+ " ('eliminate', 'kill in large numbers'),\n",
+ " ('extinguish', 'kill in large numbers'),\n",
+ " ('annihilate', 'kill in large numbers'),\n",
+ " ('carry off', 'kill in large numbers'),\n",
+ " ('decimate', 'kill in large numbers')]},\n",
+ " {'answer': 'annihilating',\n",
+ " 'hint': 'synonyms for annihilating',\n",
+ " 'clues': [('wipe out', 'kill in large numbers'),\n",
+ " ('eradicate', 'kill in large numbers'),\n",
+ " ('eliminate', 'kill in large numbers'),\n",
+ " ('extinguish', 'kill in large numbers'),\n",
+ " ('annihilate', 'kill in large numbers'),\n",
+ " ('carry off', 'kill in large numbers'),\n",
+ " ('decimate', 'kill in large numbers')]},\n",
+ " {'answer': 'announced',\n",
+ " 'hint': 'synonyms for announced',\n",
+ " 'clues': [('annunciate', 'foreshadow or presage'),\n",
+ " ('denote', 'make known; make an announcement'),\n",
+ " ('declare', 'announce publicly or officially'),\n",
+ " ('harbinger', 'foreshadow or presage'),\n",
+ " ('announce', 'announce publicly or officially'),\n",
+ " ('foretell', 'foreshadow or presage'),\n",
+ " ('herald', 'foreshadow or presage')]},\n",
+ " {'answer': 'annoyed',\n",
+ " 'hint': 'synonyms for annoyed',\n",
+ " 'clues': [('bother',\n",
+ " 'cause annoyance in; disturb, especially by minor irritations'),\n",
+ " ('nettle',\n",
+ " 'cause annoyance in; disturb, especially by minor irritations'),\n",
+ " ('nark', 'cause annoyance in; disturb, especially by minor irritations'),\n",
+ " ('gravel',\n",
+ " 'cause annoyance in; disturb, especially by minor irritations'),\n",
+ " ('irritate',\n",
+ " 'cause annoyance in; disturb, especially by minor irritations'),\n",
+ " ('rile', 'cause annoyance in; disturb, especially by minor irritations'),\n",
+ " ('rag', 'cause annoyance in; disturb, especially by minor irritations'),\n",
+ " ('get at',\n",
+ " 'cause annoyance in; disturb, especially by minor irritations'),\n",
+ " ('get to',\n",
+ " 'cause annoyance in; disturb, especially by minor irritations'),\n",
+ " ('vex', 'cause annoyance in; disturb, especially by minor irritations'),\n",
+ " ('chafe', 'cause annoyance in; disturb, especially by minor irritations'),\n",
+ " ('devil', 'cause annoyance in; disturb, especially by minor irritations'),\n",
+ " ('annoy',\n",
+ " 'cause annoyance in; disturb, especially by minor irritations')]},\n",
+ " {'answer': 'annoying',\n",
+ " 'hint': 'synonyms for annoying',\n",
+ " 'clues': [('bother',\n",
+ " 'cause annoyance in; disturb, especially by minor irritations'),\n",
+ " ('nettle',\n",
+ " 'cause annoyance in; disturb, especially by minor irritations'),\n",
+ " ('nark', 'cause annoyance in; disturb, especially by minor irritations'),\n",
+ " ('gravel',\n",
+ " 'cause annoyance in; disturb, especially by minor irritations'),\n",
+ " ('irritate',\n",
+ " 'cause annoyance in; disturb, especially by minor irritations'),\n",
+ " ('rile', 'cause annoyance in; disturb, especially by minor irritations'),\n",
+ " ('rag', 'cause annoyance in; disturb, especially by minor irritations'),\n",
+ " ('get at',\n",
+ " 'cause annoyance in; disturb, especially by minor irritations'),\n",
+ " ('get to',\n",
+ " 'cause annoyance in; disturb, especially by minor irritations'),\n",
+ " ('vex', 'cause annoyance in; disturb, especially by minor irritations'),\n",
+ " ('chafe', 'cause annoyance in; disturb, especially by minor irritations'),\n",
+ " ('devil', 'cause annoyance in; disturb, especially by minor irritations'),\n",
+ " ('annoy',\n",
+ " 'cause annoyance in; disturb, especially by minor irritations')]},\n",
+ " {'answer': 'answering',\n",
+ " 'hint': 'synonyms for answering',\n",
+ " 'clues': [('answer', 'react to a stimulus or command'),\n",
+ " ('do', 'be sufficient; be adequate, either in quality or quantity'),\n",
+ " ('suffice', 'be sufficient; be adequate, either in quality or quantity'),\n",
+ " ('reply', 'react verbally'),\n",
+ " ('respond', 'react verbally'),\n",
+ " ('resolve', 'understand the meaning of'),\n",
+ " ('serve', 'be sufficient; be adequate, either in quality or quantity')]},\n",
+ " {'answer': 'anticipated',\n",
+ " 'hint': 'synonyms for anticipated',\n",
+ " 'clues': [('previse', 'realize beforehand'),\n",
+ " ('foreknow', 'realize beforehand'),\n",
+ " ('prognosticate', 'make a prediction about; tell in advance'),\n",
+ " ('anticipate', 'act in advance of; deal with ahead of time'),\n",
+ " ('counter', 'act in advance of; deal with ahead of time'),\n",
+ " ('predict', 'make a prediction about; tell in advance'),\n",
+ " ('forebode', 'make a prediction about; tell in advance'),\n",
+ " ('expect', 'regard something as probable or likely'),\n",
+ " ('foresee', 'act in advance of; deal with ahead of time'),\n",
+ " ('forestall', 'act in advance of; deal with ahead of time'),\n",
+ " ('foretell', 'make a prediction about; tell in advance'),\n",
+ " ('promise', 'make a prediction about; tell in advance'),\n",
+ " ('look for', 'be excited or anxious about'),\n",
+ " ('call', 'make a prediction about; tell in advance'),\n",
+ " ('look to', 'be excited or anxious about')]},\n",
+ " {'answer': 'appalled',\n",
+ " 'hint': 'synonyms for appalled',\n",
+ " 'clues': [('appal', 'strike with disgust or revulsion'),\n",
+ " ('outrage', 'strike with disgust or revulsion'),\n",
+ " ('scandalise', 'strike with disgust or revulsion'),\n",
+ " ('offend', 'strike with disgust or revulsion'),\n",
+ " ('shock', 'strike with disgust or revulsion'),\n",
+ " ('dismay',\n",
+ " 'fill with apprehension or alarm; cause to be unpleasantly surprised'),\n",
+ " ('alarm',\n",
+ " 'fill with apprehension or alarm; cause to be unpleasantly surprised'),\n",
+ " ('horrify',\n",
+ " 'fill with apprehension or alarm; cause to be unpleasantly surprised')]},\n",
+ " {'answer': 'appalling',\n",
+ " 'hint': 'synonyms for appalling',\n",
+ " 'clues': [('appal', 'strike with disgust or revulsion'),\n",
+ " ('outrage', 'strike with disgust or revulsion'),\n",
+ " ('scandalise', 'strike with disgust or revulsion'),\n",
+ " ('offend', 'strike with disgust or revulsion'),\n",
+ " ('shock', 'strike with disgust or revulsion'),\n",
+ " ('dismay',\n",
+ " 'fill with apprehension or alarm; cause to be unpleasantly surprised'),\n",
+ " ('alarm',\n",
+ " 'fill with apprehension or alarm; cause to be unpleasantly surprised'),\n",
+ " ('horrify',\n",
+ " 'fill with apprehension or alarm; cause to be unpleasantly surprised')]},\n",
+ " {'answer': 'appareled',\n",
+ " 'hint': 'synonyms for appareled',\n",
+ " 'clues': [('raiment', 'provide with clothes or put clothes on'),\n",
+ " ('enclothe', 'provide with clothes or put clothes on'),\n",
+ " ('garb', 'provide with clothes or put clothes on'),\n",
+ " ('garment', 'provide with clothes or put clothes on'),\n",
+ " ('habilitate', 'provide with clothes or put clothes on'),\n",
+ " ('tog', 'provide with clothes or put clothes on'),\n",
+ " ('fit out', 'provide with clothes or put clothes on'),\n",
+ " ('dress', 'provide with clothes or put clothes on'),\n",
+ " ('apparel', 'provide with clothes or put clothes on')]},\n",
+ " {'answer': 'appeasing',\n",
+ " 'hint': 'synonyms for appeasing',\n",
+ " 'clues': [('lenify',\n",
+ " 'cause to be more favorably inclined; gain the good will of'),\n",
+ " ('stay', 'overcome or allay'),\n",
+ " ('appease', 'cause to be more favorably inclined; gain the good will of'),\n",
+ " ('mollify', 'cause to be more favorably inclined; gain the good will of'),\n",
+ " ('pacify', 'cause to be more favorably inclined; gain the good will of'),\n",
+ " ('conciliate',\n",
+ " 'cause to be more favorably inclined; gain the good will of'),\n",
+ " ('propitiate', 'make peace with'),\n",
+ " ('quell', 'overcome or allay'),\n",
+ " ('gentle', 'cause to be more favorably inclined; gain the good will of'),\n",
+ " ('assuage', 'cause to be more favorably inclined; gain the good will of'),\n",
+ " ('gruntle', 'cause to be more favorably inclined; gain the good will of'),\n",
+ " ('placate',\n",
+ " 'cause to be more favorably inclined; gain the good will of')]},\n",
+ " {'answer': 'applied',\n",
+ " 'hint': 'synonyms for applied',\n",
+ " 'clues': [('apply', 'apply to a surface'),\n",
+ " ('utilize',\n",
+ " 'put into service; make work or employ for a particular purpose or for its inherent or natural purpose'),\n",
+ " ('practice', 'avail oneself to'),\n",
+ " ('put on', 'apply to a surface'),\n",
+ " ('enforce', 'ensure observance of laws and rules'),\n",
+ " ('give', 'give or convey physically'),\n",
+ " ('lend oneself', 'be applicable to; as to an analysis'),\n",
+ " ('employ',\n",
+ " 'put into service; make work or employ for a particular purpose or for its inherent or natural purpose'),\n",
+ " ('hold', 'be pertinent or relevant or applicable'),\n",
+ " ('use',\n",
+ " 'put into service; make work or employ for a particular purpose or for its inherent or natural purpose'),\n",
+ " ('go for', 'be pertinent or relevant or applicable'),\n",
+ " ('implement', 'ensure observance of laws and rules')]},\n",
+ " {'answer': 'appointed',\n",
+ " 'hint': 'synonyms for appointed',\n",
+ " 'clues': [('name', 'create and charge with a task or function'),\n",
+ " ('constitute', 'create and charge with a task or function'),\n",
+ " ('appoint', 'create and charge with a task or function'),\n",
+ " ('charge', 'assign a duty, responsibility or obligation to'),\n",
+ " ('nominate', 'create and charge with a task or function')]},\n",
+ " {'answer': 'apportioned',\n",
+ " 'hint': 'synonyms for apportioned',\n",
+ " 'clues': [('portion out', \"give out as one's portion or share\"),\n",
+ " ('divvy up', \"give out as one's portion or share\"),\n",
+ " ('deal', \"give out as one's portion or share\"),\n",
+ " ('apportion',\n",
+ " 'distribute according to a plan or set apart for a special purpose'),\n",
+ " ('share', \"give out as one's portion or share\"),\n",
+ " ('allocate',\n",
+ " 'distribute according to a plan or set apart for a special purpose')]},\n",
+ " {'answer': 'appraising',\n",
+ " 'hint': 'synonyms for appraising',\n",
+ " 'clues': [('measure',\n",
+ " 'evaluate or estimate the nature, quality, ability, extent, or significance of'),\n",
+ " ('appraise',\n",
+ " 'evaluate or estimate the nature, quality, ability, extent, or significance of'),\n",
+ " ('value',\n",
+ " 'evaluate or estimate the nature, quality, ability, extent, or significance of'),\n",
+ " ('assess',\n",
+ " 'evaluate or estimate the nature, quality, ability, extent, or significance of'),\n",
+ " ('survey', 'consider in a comprehensive way'),\n",
+ " ('valuate',\n",
+ " 'evaluate or estimate the nature, quality, ability, extent, or significance of')]},\n",
+ " {'answer': 'appreciated',\n",
+ " 'hint': 'synonyms for appreciated',\n",
+ " 'clues': [('take account', 'be fully aware of; realize fully'),\n",
+ " ('appreciate', 'hold dear'),\n",
+ " ('treasure', 'hold dear'),\n",
+ " ('value', 'hold dear'),\n",
+ " ('prize', 'hold dear'),\n",
+ " ('apprise', 'gain in value'),\n",
+ " ('revalue', 'gain in value')]},\n",
+ " {'answer': 'apprehended',\n",
+ " 'hint': 'synonyms for apprehended',\n",
+ " 'clues': [('pick up', 'take into custody'),\n",
+ " ('grok', 'get the meaning of something'),\n",
+ " ('dig', 'get the meaning of something'),\n",
+ " ('arrest', 'take into custody'),\n",
+ " ('apprehend', 'take into custody'),\n",
+ " ('collar', 'take into custody'),\n",
+ " ('quail at', 'anticipate with dread or anxiety'),\n",
+ " ('grasp', 'get the meaning of something'),\n",
+ " ('nail', 'take into custody'),\n",
+ " ('nab', 'take into custody'),\n",
+ " ('get the picture', 'get the meaning of something'),\n",
+ " ('cop', 'take into custody'),\n",
+ " ('compass', 'get the meaning of something'),\n",
+ " ('savvy', 'get the meaning of something'),\n",
+ " ('comprehend', 'get the meaning of something')]},\n",
+ " {'answer': 'approaching',\n",
+ " 'hint': 'synonyms for approaching',\n",
+ " 'clues': [('approach',\n",
+ " 'come near or verge on, resemble, come nearer in quality, or character'),\n",
+ " ('come near', 'come near in time'),\n",
+ " ('go up', 'move towards'),\n",
+ " ('near', 'move towards'),\n",
+ " ('go about', 'begin to deal with'),\n",
+ " ('come on', 'move towards'),\n",
+ " ('draw close', 'move towards'),\n",
+ " ('draw near', 'move towards'),\n",
+ " ('border on',\n",
+ " 'come near or verge on, resemble, come nearer in quality, or character'),\n",
+ " ('set about', 'begin to deal with')]},\n",
+ " {'answer': 'appropriate',\n",
+ " 'hint': 'synonyms for appropriate',\n",
+ " 'clues': [('conquer', 'take possession of by force, as after an invasion'),\n",
+ " ('earmark', 'give or assign a resource to a particular person or cause'),\n",
+ " ('allow', 'give or assign a resource to a particular person or cause'),\n",
+ " ('capture', 'take possession of by force, as after an invasion'),\n",
+ " ('reserve', 'give or assign a resource to a particular person or cause'),\n",
+ " ('set aside',\n",
+ " 'give or assign a resource to a particular person or cause'),\n",
+ " ('seize', 'take possession of by force, as after an invasion')]},\n",
+ " {'answer': 'approximate',\n",
+ " 'hint': 'synonyms for approximate',\n",
+ " 'clues': [('come close', 'be close or similar'),\n",
+ " ('guess',\n",
+ " 'judge tentatively or form an estimate of (quantities or time)'),\n",
+ " ('gauge',\n",
+ " 'judge tentatively or form an estimate of (quantities or time)'),\n",
+ " ('judge',\n",
+ " 'judge tentatively or form an estimate of (quantities or time)'),\n",
+ " ('estimate',\n",
+ " 'judge tentatively or form an estimate of (quantities or time)')]},\n",
+ " {'answer': 'armed',\n",
+ " 'hint': 'synonyms for armed',\n",
+ " 'clues': [('arm', 'supply with arms'),\n",
+ " ('gird', 'prepare oneself for a military confrontation'),\n",
+ " ('build up', 'prepare oneself for a military confrontation'),\n",
+ " ('fortify', 'prepare oneself for a military confrontation')]},\n",
+ " {'answer': 'aroused',\n",
+ " 'hint': 'synonyms for aroused',\n",
+ " 'clues': [('arouse', 'to begin moving,'),\n",
+ " ('energize', 'cause to be alert and energetic'),\n",
+ " ('raise', 'call forth (emotions, feelings, and responses)'),\n",
+ " ('evoke', 'call forth (emotions, feelings, and responses)'),\n",
+ " ('elicit', 'call forth (emotions, feelings, and responses)'),\n",
+ " ('brace', 'cause to be alert and energetic'),\n",
+ " ('wind up', 'stimulate sexually'),\n",
+ " ('excite', 'stimulate sexually'),\n",
+ " ('put forward',\n",
+ " 'summon into action or bring into existence, often as if by magic'),\n",
+ " ('invoke',\n",
+ " 'summon into action or bring into existence, often as if by magic'),\n",
+ " ('conjure up',\n",
+ " 'summon into action or bring into existence, often as if by magic'),\n",
+ " ('wake up', 'cause to become awake or conscious'),\n",
+ " ('provoke', 'call forth (emotions, feelings, and responses)'),\n",
+ " ('waken', 'cause to become awake or conscious'),\n",
+ " ('enkindle', 'call forth (emotions, feelings, and responses)'),\n",
+ " ('come alive', 'stop sleeping'),\n",
+ " ('turn on', 'stimulate sexually'),\n",
+ " ('call down',\n",
+ " 'summon into action or bring into existence, often as if by magic'),\n",
+ " ('stir',\n",
+ " 'summon into action or bring into existence, often as if by magic'),\n",
+ " ('fire', 'call forth (emotions, feelings, and responses)'),\n",
+ " ('awake', 'stop sleeping'),\n",
+ " ('call forth',\n",
+ " 'summon into action or bring into existence, often as if by magic'),\n",
+ " ('conjure',\n",
+ " 'summon into action or bring into existence, often as if by magic'),\n",
+ " ('bring up',\n",
+ " 'summon into action or bring into existence, often as if by magic'),\n",
+ " ('perk up', 'cause to be alert and energetic'),\n",
+ " ('stimulate', 'cause to be alert and energetic'),\n",
+ " ('sex', 'stimulate sexually')]},\n",
+ " {'answer': 'arranged',\n",
+ " 'hint': 'synonyms for arranged',\n",
+ " 'clues': [('coiffe', 'arrange attractively'),\n",
+ " ('do', 'arrange attractively'),\n",
+ " ('set up', 'put into a proper or systematic order'),\n",
+ " ('put', 'arrange thoughts, ideas, temporal events'),\n",
+ " ('set', 'adapt for performance in a different way'),\n",
+ " ('arrange', 'make arrangements for'),\n",
+ " ('dress', 'arrange attractively'),\n",
+ " ('order', 'arrange thoughts, ideas, temporal events'),\n",
+ " ('fix up', 'make arrangements for'),\n",
+ " ('format', 'set (printed matter) into a specific format'),\n",
+ " ('stage', 'plan, organize, and carry out (an event)'),\n",
+ " ('coif', 'arrange attractively')]},\n",
+ " {'answer': 'arrayed',\n",
+ " 'hint': 'synonyms for arrayed',\n",
+ " 'clues': [('array',\n",
+ " 'lay out orderly or logically in a line or as if in a line'),\n",
+ " ('lay out', 'lay out orderly or logically in a line or as if in a line'),\n",
+ " ('align', 'align oneself with a group or a way of thinking'),\n",
+ " ('set out', 'lay out orderly or logically in a line or as if in a line'),\n",
+ " ('range', 'lay out orderly or logically in a line or as if in a line')]},\n",
+ " {'answer': 'arresting',\n",
+ " 'hint': 'synonyms for arresting',\n",
+ " 'clues': [('arrest', 'take into custody'),\n",
+ " ('contain',\n",
+ " 'hold back, as of a danger or an enemy; check the expansion or influence of'),\n",
+ " ('halt', 'cause to stop'),\n",
+ " ('hold', 'cause to stop'),\n",
+ " ('nail', 'take into custody'),\n",
+ " ('nab', 'take into custody'),\n",
+ " ('stop',\n",
+ " 'hold back, as of a danger or an enemy; check the expansion or influence of'),\n",
+ " ('collar', 'take into custody'),\n",
+ " ('get', 'attract and fix'),\n",
+ " ('turn back',\n",
+ " 'hold back, as of a danger or an enemy; check the expansion or influence of'),\n",
+ " ('apprehend', 'take into custody'),\n",
+ " ('catch', 'attract and fix'),\n",
+ " ('check',\n",
+ " 'hold back, as of a danger or an enemy; check the expansion or influence of'),\n",
+ " ('cop', 'take into custody'),\n",
+ " ('hold back',\n",
+ " 'hold back, as of a danger or an enemy; check the expansion or influence of'),\n",
+ " ('pick up', 'take into custody')]},\n",
+ " {'answer': 'articulate',\n",
+ " 'hint': 'synonyms for articulate',\n",
+ " 'clues': [('joint', 'provide with a joint'),\n",
+ " ('formulate', 'put into words or an expression'),\n",
+ " ('say', 'speak, pronounce, or utter in a certain way'),\n",
+ " ('enunciate', 'express or state clearly'),\n",
+ " ('pronounce', 'speak, pronounce, or utter in a certain way'),\n",
+ " ('enounce', 'speak, pronounce, or utter in a certain way'),\n",
+ " ('vocalize', 'express or state clearly'),\n",
+ " ('give voice', 'put into words or an expression'),\n",
+ " ('word', 'put into words or an expression'),\n",
+ " ('phrase', 'put into words or an expression'),\n",
+ " ('sound out', 'speak, pronounce, or utter in a certain way')]},\n",
+ " {'answer': 'articulated',\n",
+ " 'hint': 'synonyms for articulated',\n",
+ " 'clues': [('joint', 'provide with a joint'),\n",
+ " ('formulate', 'put into words or an expression'),\n",
+ " ('articulate', 'speak, pronounce, or utter in a certain way'),\n",
+ " ('say', 'speak, pronounce, or utter in a certain way'),\n",
+ " ('enunciate', 'express or state clearly'),\n",
+ " ('pronounce', 'speak, pronounce, or utter in a certain way'),\n",
+ " ('enounce', 'speak, pronounce, or utter in a certain way'),\n",
+ " ('vocalize', 'express or state clearly'),\n",
+ " ('give voice', 'put into words or an expression'),\n",
+ " ('word', 'put into words or an expression'),\n",
+ " ('phrase', 'put into words or an expression'),\n",
+ " ('sound out', 'speak, pronounce, or utter in a certain way')]},\n",
+ " {'answer': 'ascending',\n",
+ " 'hint': 'synonyms for ascending',\n",
+ " 'clues': [('ascend', 'travel up,'),\n",
+ " ('climb up', 'appear to be moving upward, as by means of tendrils'),\n",
+ " ('move up',\n",
+ " 'move to a better position in life or to a better job; \"She ascended from a life of poverty to one of great'),\n",
+ " ('rise',\n",
+ " 'move to a better position in life or to a better job; \"She ascended from a life of poverty to one of great'),\n",
+ " ('go up', 'travel up,'),\n",
+ " ('uprise', 'come up, of celestial bodies'),\n",
+ " ('come up', 'come up, of celestial bodies')]},\n",
+ " {'answer': 'ascertained',\n",
+ " 'hint': 'synonyms for ascertained',\n",
+ " 'clues': [('see to it',\n",
+ " 'be careful or certain to do something; make certain of something'),\n",
+ " ('ascertain',\n",
+ " 'be careful or certain to do something; make certain of something'),\n",
+ " ('determine',\n",
+ " 'find out, learn, or determine with certainty, usually by making an inquiry or other effort'),\n",
+ " ('see',\n",
+ " 'be careful or certain to do something; make certain of something'),\n",
+ " ('check',\n",
+ " 'find out, learn, or determine with certainty, usually by making an inquiry or other effort'),\n",
+ " ('find out',\n",
+ " 'find out, learn, or determine with certainty, usually by making an inquiry or other effort'),\n",
+ " ('watch',\n",
+ " 'find out, learn, or determine with certainty, usually by making an inquiry or other effort'),\n",
+ " ('find',\n",
+ " 'establish after a calculation, investigation, experiment, survey, or study'),\n",
+ " ('learn',\n",
+ " 'find out, learn, or determine with certainty, usually by making an inquiry or other effort'),\n",
+ " ('assure',\n",
+ " 'be careful or certain to do something; make certain of something'),\n",
+ " ('control',\n",
+ " 'be careful or certain to do something; make certain of something'),\n",
+ " ('ensure',\n",
+ " 'be careful or certain to do something; make certain of something'),\n",
+ " ('insure',\n",
+ " 'be careful or certain to do something; make certain of something')]},\n",
+ " {'answer': 'asphyxiated',\n",
+ " 'hint': 'synonyms for asphyxiated',\n",
+ " 'clues': [('suffocate', 'be asphyxiated; die from lack of oxygen'),\n",
+ " ('asphyxiate', 'deprive of oxygen and prevent from breathing'),\n",
+ " ('stifle', 'be asphyxiated; die from lack of oxygen'),\n",
+ " ('smother', 'deprive of oxygen and prevent from breathing'),\n",
+ " ('choke', 'impair the respiration of or obstruct the air passage of')]},\n",
+ " {'answer': 'asphyxiating',\n",
+ " 'hint': 'synonyms for asphyxiating',\n",
+ " 'clues': [('suffocate', 'be asphyxiated; die from lack of oxygen'),\n",
+ " ('asphyxiate', 'deprive of oxygen and prevent from breathing'),\n",
+ " ('stifle', 'be asphyxiated; die from lack of oxygen'),\n",
+ " ('smother', 'deprive of oxygen and prevent from breathing'),\n",
+ " ('choke', 'impair the respiration of or obstruct the air passage of')]},\n",
+ " {'answer': 'aspiring',\n",
+ " 'hint': 'synonyms for aspiring',\n",
+ " 'clues': [('shoot for', 'have an ambitious plan or a lofty goal'),\n",
+ " ('aspire', 'have an ambitious plan or a lofty goal'),\n",
+ " ('aim', 'have an ambitious plan or a lofty goal'),\n",
+ " ('draw a bead on', 'have an ambitious plan or a lofty goal')]},\n",
+ " {'answer': 'asserted',\n",
+ " 'hint': 'synonyms for asserted',\n",
+ " 'clues': [('aver', 'to declare or affirm solemnly and formally as true'),\n",
+ " ('assert', \"insist on having one's opinions and rights recognized\"),\n",
+ " ('swear', 'to declare or affirm solemnly and formally as true'),\n",
+ " ('swan', 'to declare or affirm solemnly and formally as true'),\n",
+ " ('put forward', \"insist on having one's opinions and rights recognized\"),\n",
+ " ('affirm', 'to declare or affirm solemnly and formally as true'),\n",
+ " ('verify', 'to declare or affirm solemnly and formally as true'),\n",
+ " ('maintain', 'state categorically'),\n",
+ " ('avow', 'to declare or affirm solemnly and formally as true'),\n",
+ " ('insist', 'assert to be true'),\n",
+ " ('asseverate', 'state categorically')]},\n",
+ " {'answer': 'asserting',\n",
+ " 'hint': 'synonyms for asserting',\n",
+ " 'clues': [('aver', 'to declare or affirm solemnly and formally as true'),\n",
+ " ('assert', \"insist on having one's opinions and rights recognized\"),\n",
+ " ('swear', 'to declare or affirm solemnly and formally as true'),\n",
+ " ('swan', 'to declare or affirm solemnly and formally as true'),\n",
+ " ('put forward', \"insist on having one's opinions and rights recognized\"),\n",
+ " ('affirm', 'to declare or affirm solemnly and formally as true'),\n",
+ " ('verify', 'to declare or affirm solemnly and formally as true'),\n",
+ " ('maintain', 'state categorically'),\n",
+ " ('avow', 'to declare or affirm solemnly and formally as true'),\n",
+ " ('insist', 'assert to be true'),\n",
+ " ('asseverate', 'state categorically')]},\n",
+ " {'answer': 'assigned',\n",
+ " 'hint': 'synonyms for assigned',\n",
+ " 'clues': [('portion', 'give out'),\n",
+ " ('attribute', 'decide as to where something belongs in a scheme'),\n",
+ " ('ascribe', 'attribute or credit to'),\n",
+ " ('assign', 'select something or someone for a specific purpose'),\n",
+ " ('arrogate', 'make undue claims to having'),\n",
+ " ('allot', 'give out'),\n",
+ " ('specify', 'select something or someone for a specific purpose'),\n",
+ " ('depute',\n",
+ " 'give an assignment to (a person) to a post, or assign a task to (a person)'),\n",
+ " ('set apart', 'select something or someone for a specific purpose'),\n",
+ " ('impute', 'attribute or credit to'),\n",
+ " ('designate',\n",
+ " 'give an assignment to (a person) to a post, or assign a task to (a person)'),\n",
+ " ('put', 'attribute or give'),\n",
+ " ('delegate',\n",
+ " 'give an assignment to (a person) to a post, or assign a task to (a person)')]},\n",
+ " {'answer': 'assimilating',\n",
+ " 'hint': 'synonyms for assimilating',\n",
+ " 'clues': [('take in', 'take up mentally'),\n",
+ " ('absorb', 'take up mentally'),\n",
+ " ('assimilate', 'take up mentally'),\n",
+ " ('imbibe', 'take (gas, light or heat) into a solution'),\n",
+ " ('ingest', 'take up mentally')]},\n",
+ " {'answer': 'assisted',\n",
+ " 'hint': 'synonyms for assisted',\n",
+ " 'clues': [('attend to', 'work for or be a servant to'),\n",
+ " ('assist', 'work for or be a servant to'),\n",
+ " ('attend', 'work for or be a servant to'),\n",
+ " ('aid', 'give help or assistance; be of service'),\n",
+ " ('help', 'give help or assistance; be of service'),\n",
+ " ('wait on', 'work for or be a servant to'),\n",
+ " ('serve', 'work for or be a servant to')]},\n",
+ " {'answer': 'associate',\n",
+ " 'hint': 'synonyms for associate',\n",
+ " 'clues': [('relate', 'make a logical or causal connection'),\n",
+ " ('tie in', 'make a logical or causal connection'),\n",
+ " ('connect', 'make a logical or causal connection'),\n",
+ " ('affiliate', 'keep company with; hang out with'),\n",
+ " ('link up', 'make a logical or causal connection'),\n",
+ " ('colligate', 'make a logical or causal connection'),\n",
+ " ('consort', 'keep company with; hang out with'),\n",
+ " ('consociate', 'bring or come into association or action'),\n",
+ " ('link', 'make a logical or causal connection'),\n",
+ " ('assort', 'keep company with; hang out with')]},\n",
+ " {'answer': 'assorted',\n",
+ " 'hint': 'synonyms for assorted',\n",
+ " 'clues': [('sort out', 'arrange or order by classes or categories'),\n",
+ " ('affiliate', 'keep company with; hang out with'),\n",
+ " ('consort', 'keep company with; hang out with'),\n",
+ " ('class', 'arrange or order by classes or categories'),\n",
+ " ('assort', 'arrange or order by classes or categories'),\n",
+ " ('sort', 'arrange or order by classes or categories'),\n",
+ " ('separate', 'arrange or order by classes or categories'),\n",
+ " ('associate', 'keep company with; hang out with'),\n",
+ " ('classify', 'arrange or order by classes or categories')]},\n",
+ " {'answer': 'assumed',\n",
+ " 'hint': 'synonyms for assumed',\n",
+ " 'clues': [('presume',\n",
+ " 'take to be the case or to be true; accept without verification or proof'),\n",
+ " ('adopt', 'take on titles, offices, duties, responsibilities'),\n",
+ " ('take on', 'take on titles, offices, duties, responsibilities'),\n",
+ " ('assume', 'take on a certain form, attribute, or aspect'),\n",
+ " ('accept',\n",
+ " \"take on as one's own the expenses or debts of another person\"),\n",
+ " ('put on', \"put clothing on one's body\"),\n",
+ " ('sham', 'make a pretence of'),\n",
+ " ('seize',\n",
+ " \"seize and take control without authority and possibly with force; take as one's right or possession\"),\n",
+ " ('bear', \"take on as one's own the expenses or debts of another person\"),\n",
+ " ('feign', 'make a pretence of'),\n",
+ " ('don', \"put clothing on one's body\"),\n",
+ " ('strike', 'occupy or take on'),\n",
+ " ('take over',\n",
+ " \"take on as one's own the expenses or debts of another person\"),\n",
+ " ('take', 'occupy or take on'),\n",
+ " ('usurp',\n",
+ " \"seize and take control without authority and possibly with force; take as one's right or possession\"),\n",
+ " ('get into', \"put clothing on one's body\"),\n",
+ " ('arrogate',\n",
+ " \"seize and take control without authority and possibly with force; take as one's right or possession\"),\n",
+ " ('wear', \"put clothing on one's body\"),\n",
+ " ('simulate', 'make a pretence of'),\n",
+ " ('take for granted',\n",
+ " 'take to be the case or to be true; accept without verification or proof'),\n",
+ " ('acquire', 'take on a certain form, attribute, or aspect'),\n",
+ " ('take up', 'occupy or take on')]},\n",
+ " {'answer': 'assuming',\n",
+ " 'hint': 'synonyms for assuming',\n",
+ " 'clues': [('presume',\n",
+ " 'take to be the case or to be true; accept without verification or proof'),\n",
+ " ('adopt', 'take on titles, offices, duties, responsibilities'),\n",
+ " ('take on', 'take on titles, offices, duties, responsibilities'),\n",
+ " ('assume', 'take on a certain form, attribute, or aspect'),\n",
+ " ('accept',\n",
+ " \"take on as one's own the expenses or debts of another person\"),\n",
+ " ('put on', \"put clothing on one's body\"),\n",
+ " ('sham', 'make a pretence of'),\n",
+ " ('seize',\n",
+ " \"seize and take control without authority and possibly with force; take as one's right or possession\"),\n",
+ " ('bear', \"take on as one's own the expenses or debts of another person\"),\n",
+ " ('feign', 'make a pretence of'),\n",
+ " ('don', \"put clothing on one's body\"),\n",
+ " ('strike', 'occupy or take on'),\n",
+ " ('take over',\n",
+ " \"take on as one's own the expenses or debts of another person\"),\n",
+ " ('take', 'occupy or take on'),\n",
+ " ('usurp',\n",
+ " \"seize and take control without authority and possibly with force; take as one's right or possession\"),\n",
+ " ('get into', \"put clothing on one's body\"),\n",
+ " ('arrogate',\n",
+ " \"seize and take control without authority and possibly with force; take as one's right or possession\"),\n",
+ " ('wear', \"put clothing on one's body\"),\n",
+ " ('simulate', 'make a pretence of'),\n",
+ " ('take for granted',\n",
+ " 'take to be the case or to be true; accept without verification or proof'),\n",
+ " ('acquire', 'take on a certain form, attribute, or aspect'),\n",
+ " ('take up', 'occupy or take on')]},\n",
+ " {'answer': 'assured',\n",
+ " 'hint': 'synonyms for assured',\n",
+ " 'clues': [('reassure', 'cause to feel sure; give reassurance to'),\n",
+ " ('promise', 'make a promise or commitment'),\n",
+ " ('see to it',\n",
+ " 'be careful or certain to do something; make certain of something'),\n",
+ " ('ascertain',\n",
+ " 'be careful or certain to do something; make certain of something'),\n",
+ " ('see',\n",
+ " 'be careful or certain to do something; make certain of something'),\n",
+ " ('secure', 'make certain of'),\n",
+ " ('check',\n",
+ " 'be careful or certain to do something; make certain of something'),\n",
+ " ('ensure', 'make certain of'),\n",
+ " ('guarantee', 'make certain of'),\n",
+ " ('insure', 'make certain of'),\n",
+ " ('tell', 'inform positively and with certainty and confidence'),\n",
+ " ('control',\n",
+ " 'be careful or certain to do something; make certain of something')]},\n",
+ " {'answer': 'assuring',\n",
+ " 'hint': 'synonyms for assuring',\n",
+ " 'clues': [('reassure', 'cause to feel sure; give reassurance to'),\n",
+ " ('promise', 'make a promise or commitment'),\n",
+ " ('see to it',\n",
+ " 'be careful or certain to do something; make certain of something'),\n",
+ " ('ascertain',\n",
+ " 'be careful or certain to do something; make certain of something'),\n",
+ " ('see',\n",
+ " 'be careful or certain to do something; make certain of something'),\n",
+ " ('secure', 'make certain of'),\n",
+ " ('check',\n",
+ " 'be careful or certain to do something; make certain of something'),\n",
+ " ('ensure', 'make certain of'),\n",
+ " ('guarantee', 'make certain of'),\n",
+ " ('insure', 'make certain of'),\n",
+ " ('tell', 'inform positively and with certainty and confidence'),\n",
+ " ('control',\n",
+ " 'be careful or certain to do something; make certain of something')]},\n",
+ " {'answer': 'attached',\n",
+ " 'hint': 'synonyms for attached',\n",
+ " 'clues': [('tie', 'create social or emotional ties'),\n",
+ " ('confiscate',\n",
+ " 'take temporary possession of as a security, by legal authority'),\n",
+ " ('attach', 'be attached; be in contact with'),\n",
+ " ('sequester',\n",
+ " 'take temporary possession of as a security, by legal authority'),\n",
+ " ('bind', 'create social or emotional ties'),\n",
+ " ('impound',\n",
+ " 'take temporary possession of as a security, by legal authority'),\n",
+ " ('bond', 'create social or emotional ties'),\n",
+ " ('seize',\n",
+ " 'take temporary possession of as a security, by legal authority')]},\n",
+ " {'answer': 'attacking',\n",
+ " 'hint': 'synonyms for attacking',\n",
+ " 'clues': [('aggress', 'take the initiative and go on the offensive'),\n",
+ " ('assail',\n",
+ " 'launch an attack or assault on; begin hostilities or start warfare with'),\n",
+ " ('attack',\n",
+ " 'launch an attack or assault on; begin hostilities or start warfare with'),\n",
+ " ('lash out', 'attack in speech or writing'),\n",
+ " ('assault', 'attack in speech or writing'),\n",
+ " ('round', 'attack in speech or writing'),\n",
+ " ('snipe', 'attack in speech or writing'),\n",
+ " ('set on', 'attack someone physically or emotionally')]},\n",
+ " {'answer': 'attained',\n",
+ " 'hint': 'synonyms for attained',\n",
+ " 'clues': [('achieve', 'to gain with effort'),\n",
+ " ('chance upon', 'find unexpectedly'),\n",
+ " ('attain', 'find unexpectedly'),\n",
+ " ('come across', 'find unexpectedly'),\n",
+ " ('discover', 'find unexpectedly'),\n",
+ " ('gain', 'reach a destination, either real or abstract'),\n",
+ " ('hit', 'reach a destination, either real or abstract'),\n",
+ " ('arrive at', 'reach a destination, either real or abstract'),\n",
+ " ('make', 'reach a destination, either real or abstract'),\n",
+ " ('come upon', 'find unexpectedly'),\n",
+ " ('reach', 'reach a destination, either real or abstract'),\n",
+ " ('happen upon', 'find unexpectedly'),\n",
+ " ('fall upon', 'find unexpectedly'),\n",
+ " ('light upon', 'find unexpectedly'),\n",
+ " ('strike', 'find unexpectedly'),\n",
+ " ('accomplish', 'to gain with effort')]},\n",
+ " {'answer': 'attempted',\n",
+ " 'hint': 'synonyms for attempted',\n",
+ " 'clues': [('essay', 'make an effort or attempt'),\n",
+ " ('seek', 'make an effort or attempt'),\n",
+ " ('undertake', 'enter upon an activity or enterprise'),\n",
+ " ('assay', 'make an effort or attempt'),\n",
+ " ('attempt', 'make an effort or attempt'),\n",
+ " ('set about', 'enter upon an activity or enterprise'),\n",
+ " ('try', 'make an effort or attempt')]},\n",
+ " {'answer': 'attended',\n",
+ " 'hint': 'synonyms for attended',\n",
+ " 'clues': [('pay heed', 'give heed (to)'),\n",
+ " ('advert', 'give heed (to)'),\n",
+ " ('attend to', 'work for or be a servant to'),\n",
+ " ('attend', 'take charge of or deal with'),\n",
+ " ('assist', 'work for or be a servant to'),\n",
+ " ('hang', 'give heed (to)'),\n",
+ " ('go to', 'be present at (meetings, church services, university), etc.'),\n",
+ " ('look', 'take charge of or deal with'),\n",
+ " ('serve', 'work for or be a servant to'),\n",
+ " ('give ear', 'give heed (to)'),\n",
+ " ('wait on', 'work for or be a servant to'),\n",
+ " ('take care', 'take charge of or deal with'),\n",
+ " ('see', 'take charge of or deal with')]},\n",
+ " {'answer': 'attested',\n",
+ " 'hint': 'synonyms for attested',\n",
+ " 'clues': [('attest',\n",
+ " 'authenticate, affirm to be true, genuine, or correct, as in an official capacity'),\n",
+ " ('testify', 'give testimony in a court of law'),\n",
+ " ('certify',\n",
+ " \"provide evidence for; stand as proof of; show by one's behavior, attitude, or external attributes\"),\n",
+ " ('manifest',\n",
+ " \"provide evidence for; stand as proof of; show by one's behavior, attitude, or external attributes\"),\n",
+ " ('demonstrate',\n",
+ " \"provide evidence for; stand as proof of; show by one's behavior, attitude, or external attributes\"),\n",
+ " ('take the stand', 'give testimony in a court of law'),\n",
+ " ('bear witness', 'give testimony in a court of law'),\n",
+ " ('evidence',\n",
+ " \"provide evidence for; stand as proof of; show by one's behavior, attitude, or external attributes\")]},\n",
+ " {'answer': 'attired',\n",
+ " 'hint': 'synonyms for attired',\n",
+ " 'clues': [('attire',\n",
+ " 'put on special clothes to appear particularly appealing and attractive'),\n",
+ " ('rig out',\n",
+ " 'put on special clothes to appear particularly appealing and attractive'),\n",
+ " ('get up',\n",
+ " 'put on special clothes to appear particularly appealing and attractive'),\n",
+ " ('overdress',\n",
+ " 'put on special clothes to appear particularly appealing and attractive'),\n",
+ " ('fancy up',\n",
+ " 'put on special clothes to appear particularly appealing and attractive'),\n",
+ " ('prink',\n",
+ " 'put on special clothes to appear particularly appealing and attractive'),\n",
+ " ('tog out',\n",
+ " 'put on special clothes to appear particularly appealing and attractive'),\n",
+ " ('gussy up',\n",
+ " 'put on special clothes to appear particularly appealing and attractive'),\n",
+ " ('fig up',\n",
+ " 'put on special clothes to appear particularly appealing and attractive'),\n",
+ " ('tog up',\n",
+ " 'put on special clothes to appear particularly appealing and attractive'),\n",
+ " ('deck out',\n",
+ " 'put on special clothes to appear particularly appealing and attractive'),\n",
+ " ('trick up',\n",
+ " 'put on special clothes to appear particularly appealing and attractive'),\n",
+ " ('trick out',\n",
+ " 'put on special clothes to appear particularly appealing and attractive'),\n",
+ " ('deck up',\n",
+ " 'put on special clothes to appear particularly appealing and attractive'),\n",
+ " ('dress up',\n",
+ " 'put on special clothes to appear particularly appealing and attractive')]},\n",
+ " {'answer': 'authorised',\n",
+ " 'hint': 'synonyms for authorised',\n",
+ " 'clues': [('authorize', 'grant authorization or clearance for'),\n",
+ " ('empower', 'give or delegate power or authority to'),\n",
+ " ('clear', 'grant authorization or clearance for'),\n",
+ " ('pass', 'grant authorization or clearance for')]},\n",
+ " {'answer': 'authorized',\n",
+ " 'hint': 'synonyms for authorized',\n",
+ " 'clues': [('authorize', 'grant authorization or clearance for'),\n",
+ " ('empower', 'give or delegate power or authority to'),\n",
+ " ('clear', 'grant authorization or clearance for'),\n",
+ " ('pass', 'grant authorization or clearance for')]},\n",
+ " {'answer': 'avowed',\n",
+ " 'hint': 'synonyms for avowed',\n",
+ " 'clues': [('aver', 'to declare or affirm solemnly and formally as true'),\n",
+ " ('swear', 'to declare or affirm solemnly and formally as true'),\n",
+ " ('swan', 'to declare or affirm solemnly and formally as true'),\n",
+ " ('affirm', 'to declare or affirm solemnly and formally as true'),\n",
+ " ('avow', 'admit openly and bluntly; make no bones about'),\n",
+ " ('verify', 'to declare or affirm solemnly and formally as true'),\n",
+ " ('assert', 'to declare or affirm solemnly and formally as true'),\n",
+ " ('avouch', 'admit openly and bluntly; make no bones about')]},\n",
+ " {'answer': 'awake',\n",
+ " 'hint': 'synonyms for awake',\n",
+ " 'clues': [('waken', 'stop sleeping'),\n",
+ " ('arouse', 'stop sleeping'),\n",
+ " ('come alive', 'stop sleeping'),\n",
+ " ('wake up', 'stop sleeping')]},\n",
+ " {'answer': 'awakened',\n",
+ " 'hint': 'synonyms for awakened',\n",
+ " 'clues': [('arouse', 'stop sleeping'),\n",
+ " ('wake', 'cause to become awake or conscious'),\n",
+ " ('wake up', 'cause to become awake or conscious'),\n",
+ " ('awaken', 'cause to become awake or conscious'),\n",
+ " ('come alive', 'stop sleeping')]},\n",
+ " {'answer': 'back',\n",
+ " 'hint': 'synonyms for back',\n",
+ " 'clues': [('endorse', \"give support or one's approval to\"),\n",
+ " ('second', \"give support or one's approval to\"),\n",
+ " ('support', 'be behind; approve of'),\n",
+ " ('punt', 'place a bet on'),\n",
+ " ('plunk for', 'be behind; approve of'),\n",
+ " ('gage', 'place a bet on'),\n",
+ " ('stake', 'place a bet on'),\n",
+ " ('bet on', 'place a bet on'),\n",
+ " ('plump for', 'be behind; approve of'),\n",
+ " ('game', 'place a bet on'),\n",
+ " ('back up', 'establish as valid or genuine')]},\n",
+ " {'answer': 'backed',\n",
+ " 'hint': 'synonyms for backed',\n",
+ " 'clues': [('second', \"give support or one's approval to\"),\n",
+ " ('punt', 'place a bet on'),\n",
+ " ('plunk for', 'be behind; approve of'),\n",
+ " ('gage', 'place a bet on'),\n",
+ " ('endorse', 'be behind; approve of'),\n",
+ " ('back', 'be behind; approve of'),\n",
+ " ('plump for', 'be behind; approve of'),\n",
+ " ('support', 'be behind; approve of'),\n",
+ " ('bet on', 'place a bet on'),\n",
+ " ('stake', 'place a bet on'),\n",
+ " ('game', 'place a bet on'),\n",
+ " ('back up', 'establish as valid or genuine')]},\n",
+ " {'answer': 'baffled',\n",
+ " 'hint': 'synonyms for baffled',\n",
+ " 'clues': [('puzzle', 'be a mystery or bewildering to'),\n",
+ " ('get', 'be a mystery or bewildering to'),\n",
+ " ('beat', 'be a mystery or bewildering to'),\n",
+ " ('queer', 'hinder or prevent (the efforts, plans, or desires) of'),\n",
+ " ('amaze', 'be a mystery or bewildering to'),\n",
+ " ('stupefy', 'be a mystery or bewildering to'),\n",
+ " ('bilk', 'hinder or prevent (the efforts, plans, or desires) of'),\n",
+ " ('baffle', 'be a mystery or bewildering to'),\n",
+ " ('dumbfound', 'be a mystery or bewildering to'),\n",
+ " ('pose', 'be a mystery or bewildering to'),\n",
+ " ('thwart', 'hinder or prevent (the efforts, plans, or desires) of'),\n",
+ " ('regulate', 'check the emission of (sound)'),\n",
+ " ('cross', 'hinder or prevent (the efforts, plans, or desires) of'),\n",
+ " ('bewilder', 'be a mystery or bewildering to'),\n",
+ " ('perplex', 'be a mystery or bewildering to'),\n",
+ " ('scotch', 'hinder or prevent (the efforts, plans, or desires) of'),\n",
+ " ('spoil', 'hinder or prevent (the efforts, plans, or desires) of'),\n",
+ " ('frustrate', 'hinder or prevent (the efforts, plans, or desires) of'),\n",
+ " ('gravel', 'be a mystery or bewildering to'),\n",
+ " ('foil', 'hinder or prevent (the efforts, plans, or desires) of'),\n",
+ " ('mystify', 'be a mystery or bewildering to'),\n",
+ " ('stick', 'be a mystery or bewildering to'),\n",
+ " ('nonplus', 'be a mystery or bewildering to'),\n",
+ " ('vex', 'be a mystery or bewildering to'),\n",
+ " ('flummox', 'be a mystery or bewildering to')]},\n",
+ " {'answer': 'baffling',\n",
+ " 'hint': 'synonyms for baffling',\n",
+ " 'clues': [('puzzle', 'be a mystery or bewildering to'),\n",
+ " ('get', 'be a mystery or bewildering to'),\n",
+ " ('beat', 'be a mystery or bewildering to'),\n",
+ " ('queer', 'hinder or prevent (the efforts, plans, or desires) of'),\n",
+ " ('amaze', 'be a mystery or bewildering to'),\n",
+ " ('stupefy', 'be a mystery or bewildering to'),\n",
+ " ('bilk', 'hinder or prevent (the efforts, plans, or desires) of'),\n",
+ " ('baffle', 'be a mystery or bewildering to'),\n",
+ " ('dumbfound', 'be a mystery or bewildering to'),\n",
+ " ('pose', 'be a mystery or bewildering to'),\n",
+ " ('thwart', 'hinder or prevent (the efforts, plans, or desires) of'),\n",
+ " ('regulate', 'check the emission of (sound)'),\n",
+ " ('cross', 'hinder or prevent (the efforts, plans, or desires) of'),\n",
+ " ('bewilder', 'be a mystery or bewildering to'),\n",
+ " ('perplex', 'be a mystery or bewildering to'),\n",
+ " ('scotch', 'hinder or prevent (the efforts, plans, or desires) of'),\n",
+ " ('spoil', 'hinder or prevent (the efforts, plans, or desires) of'),\n",
+ " ('frustrate', 'hinder or prevent (the efforts, plans, or desires) of'),\n",
+ " ('gravel', 'be a mystery or bewildering to'),\n",
+ " ('foil', 'hinder or prevent (the efforts, plans, or desires) of'),\n",
+ " ('mystify', 'be a mystery or bewildering to'),\n",
+ " ('stick', 'be a mystery or bewildering to'),\n",
+ " ('nonplus', 'be a mystery or bewildering to'),\n",
+ " ('vex', 'be a mystery or bewildering to'),\n",
+ " ('flummox', 'be a mystery or bewildering to')]},\n",
+ " {'answer': 'balanced',\n",
+ " 'hint': 'synonyms for balanced',\n",
+ " 'clues': [('balance', 'bring into balance or equilibrium'),\n",
+ " ('equilibrize', 'bring into balance or equilibrium'),\n",
+ " ('equilibrate', 'bring into balance or equilibrium'),\n",
+ " ('poise', 'hold or carry in equilibrium')]},\n",
+ " {'answer': 'banging',\n",
+ " 'hint': 'synonyms for banging',\n",
+ " 'clues': [('slam', 'close violently'),\n",
+ " ('have it away', 'have sexual intercourse with'),\n",
+ " ('roll in the hay', 'have sexual intercourse with'),\n",
+ " ('jazz', 'have sexual intercourse with'),\n",
+ " ('bang', 'leap, jerk, bang'),\n",
+ " ('get it on', 'have sexual intercourse with'),\n",
+ " ('hump', 'have sexual intercourse with'),\n",
+ " ('sleep together', 'have sexual intercourse with'),\n",
+ " ('screw', 'have sexual intercourse with'),\n",
+ " ('have sex', 'have sexual intercourse with'),\n",
+ " ('spang', 'leap, jerk, bang'),\n",
+ " ('have intercourse', 'have sexual intercourse with'),\n",
+ " ('eff', 'have sexual intercourse with'),\n",
+ " ('get laid', 'have sexual intercourse with'),\n",
+ " ('love', 'have sexual intercourse with'),\n",
+ " ('have it off', 'have sexual intercourse with'),\n",
+ " ('do it', 'have sexual intercourse with'),\n",
+ " ('fuck', 'have sexual intercourse with'),\n",
+ " ('bed', 'have sexual intercourse with'),\n",
+ " ('make love', 'have sexual intercourse with'),\n",
+ " ('be intimate', 'have sexual intercourse with'),\n",
+ " ('have a go at it', 'have sexual intercourse with'),\n",
+ " ('bonk', 'have sexual intercourse with'),\n",
+ " ('sleep with', 'have sexual intercourse with'),\n",
+ " ('know', 'have sexual intercourse with'),\n",
+ " ('make out', 'have sexual intercourse with'),\n",
+ " ('lie with', 'have sexual intercourse with')]},\n",
+ " {'answer': 'banned',\n",
+ " 'hint': 'synonyms for banned',\n",
+ " 'clues': [('censor',\n",
+ " 'forbid the public distribution of ( a movie or a newspaper)'),\n",
+ " ('blackball', 'expel from a community or group'),\n",
+ " ('ostracize', 'expel from a community or group'),\n",
+ " ('ban', 'expel from a community or group'),\n",
+ " ('shun', 'expel from a community or group'),\n",
+ " ('banish', 'expel from a community or group'),\n",
+ " ('cast out', 'expel from a community or group')]},\n",
+ " {'answer': 'bantering',\n",
+ " 'hint': 'synonyms for bantering',\n",
+ " 'clues': [('josh', 'be silly or tease one another'),\n",
+ " ('kid', 'be silly or tease one another'),\n",
+ " ('banter', 'be silly or tease one another'),\n",
+ " ('jolly', 'be silly or tease one another'),\n",
+ " ('chaff', 'be silly or tease one another')]},\n",
+ " {'answer': 'bare',\n",
+ " 'hint': 'synonyms for bare',\n",
+ " 'clues': [('publicise', 'make public'),\n",
+ " ('denudate', 'lay bare'),\n",
+ " ('strip', 'lay bare'),\n",
+ " ('air', 'make public')]},\n",
+ " {'answer': 'bared',\n",
+ " 'hint': 'synonyms for bared',\n",
+ " 'clues': [('block', 'render unsuitable for passage'),\n",
+ " ('bar', 'secure with, or as if with, bars'),\n",
+ " ('publicize', 'make public'),\n",
+ " ('denudate', 'lay bare'),\n",
+ " ('strip', 'lay bare'),\n",
+ " ('block up', 'render unsuitable for passage'),\n",
+ " ('air', 'make public'),\n",
+ " ('exclude', 'prevent from entering; keep out'),\n",
+ " ('stop', 'render unsuitable for passage'),\n",
+ " ('debar', 'prevent from entering; keep out'),\n",
+ " ('blockade', 'render unsuitable for passage'),\n",
+ " ('relegate', 'expel, as if by official decree'),\n",
+ " ('banish', 'expel, as if by official decree'),\n",
+ " ('barricade', 'render unsuitable for passage'),\n",
+ " ('block off', 'render unsuitable for passage')]},\n",
+ " {'answer': 'barred',\n",
+ " 'hint': 'synonyms for barred',\n",
+ " 'clues': [('block', 'render unsuitable for passage'),\n",
+ " ('bar', 'secure with, or as if with, bars'),\n",
+ " ('block up', 'render unsuitable for passage'),\n",
+ " ('blockade', 'render unsuitable for passage'),\n",
+ " ('relegate', 'expel, as if by official decree'),\n",
+ " ('banish', 'expel, as if by official decree'),\n",
+ " ('exclude', 'prevent from entering; keep out'),\n",
+ " ('stop', 'render unsuitable for passage'),\n",
+ " ('debar', 'prevent from entering; keep out'),\n",
+ " ('barricade', 'render unsuitable for passage'),\n",
+ " ('block off', 'render unsuitable for passage')]},\n",
+ " {'answer': 'barricaded',\n",
+ " 'hint': 'synonyms for barricaded',\n",
+ " 'clues': [('barricado', 'block off with barricades'),\n",
+ " ('block', 'render unsuitable for passage'),\n",
+ " ('bar', 'render unsuitable for passage'),\n",
+ " ('block up', 'render unsuitable for passage'),\n",
+ " ('blockade', 'render unsuitable for passage'),\n",
+ " ('stop', 'render unsuitable for passage'),\n",
+ " ('block off', 'render unsuitable for passage')]},\n",
+ " {'answer': 'base',\n",
+ " 'hint': 'synonyms for base',\n",
+ " 'clues': [('free-base',\n",
+ " 'use (purified cocaine) by burning it and inhaling the fumes'),\n",
+ " ('found', 'use as a basis for; found on'),\n",
+ " ('ground', 'use as a basis for; found on'),\n",
+ " ('establish', 'use as a basis for; found on')]},\n",
+ " {'answer': 'based',\n",
+ " 'hint': 'synonyms for based',\n",
+ " 'clues': [('base', 'situate as a center of operations'),\n",
+ " ('found', 'use as a basis for; found on'),\n",
+ " ('ground', 'use as a basis for; found on'),\n",
+ " ('establish', 'use as a basis for; found on'),\n",
+ " ('free-base',\n",
+ " 'use (purified cocaine) by burning it and inhaling the fumes')]},\n",
+ " {'answer': 'bated',\n",
+ " 'hint': 'synonyms for bated',\n",
+ " 'clues': [('bate', 'moderate or restrain; lessen the force of'),\n",
+ " ('clobber', 'beat thoroughly and conclusively in a competition or fight'),\n",
+ " ('lick', 'beat thoroughly and conclusively in a competition or fight'),\n",
+ " ('thrash', 'beat thoroughly and conclusively in a competition or fight'),\n",
+ " ('drub', 'beat thoroughly and conclusively in a competition or fight'),\n",
+ " ('cream', 'beat thoroughly and conclusively in a competition or fight'),\n",
+ " ('flutter', 'wink briefly')]},\n",
+ " {'answer': 'bats',\n",
+ " 'hint': 'synonyms for bats',\n",
+ " 'clues': [('clobber',\n",
+ " 'beat thoroughly and conclusively in a competition or fight'),\n",
+ " ('bat', 'wink briefly'),\n",
+ " ('lick', 'beat thoroughly and conclusively in a competition or fight'),\n",
+ " ('thrash', 'beat thoroughly and conclusively in a competition or fight'),\n",
+ " ('drub', 'beat thoroughly and conclusively in a competition or fight'),\n",
+ " ('cream', 'beat thoroughly and conclusively in a competition or fight'),\n",
+ " ('flutter', 'wink briefly')]},\n",
+ " {'answer': 'battered',\n",
+ " 'hint': 'synonyms for battered',\n",
+ " 'clues': [('baste', 'strike violently and repeatedly'),\n",
+ " ('batter', 'make a dent or impression in'),\n",
+ " ('buffet', 'strike against forcefully'),\n",
+ " ('clobber', 'strike violently and repeatedly'),\n",
+ " ('knock about', 'strike against forcefully'),\n",
+ " ('dinge', 'make a dent or impression in')]},\n",
+ " {'answer': 'beaming',\n",
+ " 'hint': 'synonyms for beaming',\n",
+ " 'clues': [('shine', 'emit light; be bright, as of the sun or a light'),\n",
+ " ('beam', \"smile radiantly; express joy through one's facial expression\"),\n",
+ " ('send', 'broadcast over the airwaves, as in radio or television'),\n",
+ " ('radiate',\n",
+ " 'have a complexion with a strong bright color, such as red or pink'),\n",
+ " ('glow',\n",
+ " 'experience a feeling of well-being or happiness, as from good health or an intense emotion'),\n",
+ " ('air', 'broadcast over the airwaves, as in radio or television'),\n",
+ " ('transmit', 'broadcast over the airwaves, as in radio or television'),\n",
+ " ('broadcast', 'broadcast over the airwaves, as in radio or television')]},\n",
+ " {'answer': 'bearing',\n",
+ " 'hint': 'synonyms for bearing',\n",
+ " 'clues': [('have a bun in the oven', 'be pregnant with'),\n",
+ " ('bear', 'have'),\n",
+ " ('accept',\n",
+ " \"take on as one's own the expenses or debts of another person\"),\n",
+ " ('behave', 'behave in a certain manner'),\n",
+ " ('carry', 'behave in a certain manner'),\n",
+ " ('tolerate', 'put up with something or somebody unpleasant'),\n",
+ " ('comport', 'behave in a certain manner'),\n",
+ " ('hold', 'have rightfully; of rights, titles, and offices'),\n",
+ " ('deport', 'behave in a certain manner'),\n",
+ " ('take over',\n",
+ " \"take on as one's own the expenses or debts of another person\"),\n",
+ " ('support', 'put up with something or somebody unpleasant'),\n",
+ " ('stomach', 'put up with something or somebody unpleasant'),\n",
+ " ('brook', 'put up with something or somebody unpleasant'),\n",
+ " ('stand', 'put up with something or somebody unpleasant'),\n",
+ " ('stick out', 'put up with something or somebody unpleasant'),\n",
+ " ('deliver', 'cause to be born'),\n",
+ " ('birth', 'cause to be born'),\n",
+ " ('give birth', 'cause to be born'),\n",
+ " ('contain', 'contain or hold; have within'),\n",
+ " ('turn out', 'bring forth,'),\n",
+ " ('expect', 'be pregnant with'),\n",
+ " ('assume',\n",
+ " \"take on as one's own the expenses or debts of another person\"),\n",
+ " ('pay', 'bring in'),\n",
+ " ('suffer', 'put up with something or somebody unpleasant'),\n",
+ " ('yield', 'bring in'),\n",
+ " ('have', 'cause to be born'),\n",
+ " ('endure', 'put up with something or somebody unpleasant'),\n",
+ " ('wear', \"have on one's person\"),\n",
+ " ('conduct', 'behave in a certain manner'),\n",
+ " ('abide', 'put up with something or somebody unpleasant'),\n",
+ " ('gestate', 'be pregnant with'),\n",
+ " ('put up', 'put up with something or somebody unpleasant'),\n",
+ " ('acquit', 'behave in a certain manner'),\n",
+ " ('digest', 'put up with something or somebody unpleasant')]},\n",
+ " {'answer': 'beat',\n",
+ " 'hint': 'synonyms for beat',\n",
+ " 'clues': [('get', 'be a mystery or bewildering to'),\n",
+ " ('tucker out', 'wear out completely'),\n",
+ " ('exhaust', 'wear out completely'),\n",
+ " ('stupefy', 'be a mystery or bewildering to'),\n",
+ " ('baffle', 'be a mystery or bewildering to'),\n",
+ " ('crush', 'come out better in a competition, race, or conflict'),\n",
+ " ('outwit', 'beat through cleverness and wit'),\n",
+ " ('thump', 'move rhythmically'),\n",
+ " ('pose', 'be a mystery or bewildering to'),\n",
+ " ('quiver', 'move with or as if with a regular alternating motion'),\n",
+ " ('tick', 'make a sound like a clock or a timer'),\n",
+ " ('bewilder', 'be a mystery or bewildering to'),\n",
+ " ('perplex', 'be a mystery or bewildering to'),\n",
+ " ('ticktock', 'make a sound like a clock or a timer'),\n",
+ " ('trounce', 'come out better in a competition, race, or conflict'),\n",
+ " ('scramble', 'stir vigorously'),\n",
+ " ('outsmart', 'beat through cleverness and wit'),\n",
+ " ('overreach', 'beat through cleverness and wit'),\n",
+ " ('gravel', 'be a mystery or bewildering to'),\n",
+ " ('pulsate', 'move with or as if with a regular alternating motion'),\n",
+ " ('pound', 'move rhythmically'),\n",
+ " ('vanquish', 'come out better in a competition, race, or conflict'),\n",
+ " ('nonplus', 'be a mystery or bewildering to'),\n",
+ " ('flummox', 'be a mystery or bewildering to'),\n",
+ " ('puzzle', 'be a mystery or bewildering to'),\n",
+ " ('drum', 'make a rhythmic sound'),\n",
+ " ('amaze', 'be a mystery or bewildering to'),\n",
+ " ('beat out', 'come out better in a competition, race, or conflict'),\n",
+ " ('thrum', 'make a rhythmic sound'),\n",
+ " ('shell', 'come out better in a competition, race, or conflict'),\n",
+ " ('bunk', 'avoid paying'),\n",
+ " ('dumbfound', 'be a mystery or bewildering to'),\n",
+ " ('flap', 'move with a thrashing motion'),\n",
+ " ('wash up', 'wear out completely'),\n",
+ " ('beat up',\n",
+ " 'give a beating to; subject to a beating, either as a punishment or as an act of aggression'),\n",
+ " ('circumvent', 'beat through cleverness and wit'),\n",
+ " ('work over',\n",
+ " 'give a beating to; subject to a beating, either as a punishment or as an act of aggression'),\n",
+ " ('tucker', 'wear out completely'),\n",
+ " ('mystify', 'be a mystery or bewildering to'),\n",
+ " ('outfox', 'beat through cleverness and wit'),\n",
+ " ('vex', 'be a mystery or bewildering to')]},\n",
+ " {'answer': 'beaten',\n",
+ " 'hint': 'synonyms for beaten',\n",
+ " 'clues': [('get', 'be a mystery or bewildering to'),\n",
+ " ('beat', 'move with a flapping motion'),\n",
+ " ('tucker out', 'wear out completely'),\n",
+ " ('exhaust', 'wear out completely'),\n",
+ " ('stupefy', 'be a mystery or bewildering to'),\n",
+ " ('baffle', 'be a mystery or bewildering to'),\n",
+ " ('crush', 'come out better in a competition, race, or conflict'),\n",
+ " ('outwit', 'beat through cleverness and wit'),\n",
+ " ('thump', 'move rhythmically'),\n",
+ " ('pose', 'be a mystery or bewildering to'),\n",
+ " ('quiver', 'move with or as if with a regular alternating motion'),\n",
+ " ('tick', 'make a sound like a clock or a timer'),\n",
+ " ('bewilder', 'be a mystery or bewildering to'),\n",
+ " ('perplex', 'be a mystery or bewildering to'),\n",
+ " ('ticktock', 'make a sound like a clock or a timer'),\n",
+ " ('trounce', 'come out better in a competition, race, or conflict'),\n",
+ " ('scramble', 'stir vigorously'),\n",
+ " ('outsmart', 'beat through cleverness and wit'),\n",
+ " ('overreach', 'beat through cleverness and wit'),\n",
+ " ('gravel', 'be a mystery or bewildering to'),\n",
+ " ('pulsate', 'move with or as if with a regular alternating motion'),\n",
+ " ('pound', 'move rhythmically'),\n",
+ " ('vanquish', 'come out better in a competition, race, or conflict'),\n",
+ " ('nonplus', 'be a mystery or bewildering to'),\n",
+ " ('puzzle', 'be a mystery or bewildering to'),\n",
+ " ('flummox', 'be a mystery or bewildering to'),\n",
+ " ('drum', 'make a rhythmic sound'),\n",
+ " ('beat out', 'come out better in a competition, race, or conflict'),\n",
+ " ('thrum', 'make a rhythmic sound'),\n",
+ " ('amaze', 'be a mystery or bewildering to'),\n",
+ " ('shell', 'come out better in a competition, race, or conflict'),\n",
+ " ('bunk', 'avoid paying'),\n",
+ " ('flap', 'move with a thrashing motion'),\n",
+ " ('dumbfound', 'be a mystery or bewildering to'),\n",
+ " ('wash up', 'wear out completely'),\n",
+ " ('beat up',\n",
+ " 'give a beating to; subject to a beating, either as a punishment or as an act of aggression'),\n",
+ " ('circumvent', 'beat through cleverness and wit'),\n",
+ " ('work over',\n",
+ " 'give a beating to; subject to a beating, either as a punishment or as an act of aggression'),\n",
+ " ('tucker', 'wear out completely'),\n",
+ " ('mystify', 'be a mystery or bewildering to'),\n",
+ " ('outfox', 'beat through cleverness and wit'),\n",
+ " ('vex', 'be a mystery or bewildering to')]},\n",
+ " {'answer': 'beatified',\n",
+ " 'hint': 'synonyms for beatified',\n",
+ " 'clues': [('exalt', 'fill with sublime emotion'),\n",
+ " ('beatify', 'fill with sublime emotion'),\n",
+ " ('thrill', 'fill with sublime emotion'),\n",
+ " ('tickle pink', 'fill with sublime emotion'),\n",
+ " ('exhilarate', 'fill with sublime emotion'),\n",
+ " ('inebriate', 'fill with sublime emotion')]},\n",
+ " {'answer': 'becoming',\n",
+ " 'hint': 'synonyms for becoming',\n",
+ " 'clues': [('become', 'come into existence'),\n",
+ " ('suit', 'enhance the appearance of'),\n",
+ " ('go', 'enter or assume a certain state or condition'),\n",
+ " ('get', 'enter or assume a certain state or condition'),\n",
+ " ('turn', 'undergo a change or development')]},\n",
+ " {'answer': 'bedded',\n",
+ " 'hint': 'synonyms for bedded',\n",
+ " 'clues': [('bed', 'place (plants) in a prepared bed of soil'),\n",
+ " ('get it on', 'have sexual intercourse with'),\n",
+ " ('hump', 'have sexual intercourse with'),\n",
+ " ('screw', 'have sexual intercourse with'),\n",
+ " ('have sex', 'have sexual intercourse with'),\n",
+ " ('go to bed', 'prepare for sleep'),\n",
+ " ('go to sleep', 'prepare for sleep'),\n",
+ " ('sack out', 'prepare for sleep'),\n",
+ " ('love', 'have sexual intercourse with'),\n",
+ " ('have it off', 'have sexual intercourse with'),\n",
+ " ('hit the sack', 'prepare for sleep'),\n",
+ " ('do it', 'have sexual intercourse with'),\n",
+ " ('bang', 'have sexual intercourse with'),\n",
+ " ('have a go at it', 'have sexual intercourse with'),\n",
+ " ('sleep with', 'have sexual intercourse with'),\n",
+ " ('sleep together', 'have sexual intercourse with'),\n",
+ " ('make love', 'have sexual intercourse with'),\n",
+ " ('lie with', 'have sexual intercourse with'),\n",
+ " ('have it away', 'have sexual intercourse with'),\n",
+ " ('roll in the hay', 'have sexual intercourse with'),\n",
+ " ('jazz', 'have sexual intercourse with'),\n",
+ " ('kip down', 'prepare for sleep'),\n",
+ " ('hit the hay', 'prepare for sleep'),\n",
+ " ('retire', 'prepare for sleep'),\n",
+ " ('crawl in', 'prepare for sleep'),\n",
+ " ('turn in', 'prepare for sleep'),\n",
+ " ('have intercourse', 'have sexual intercourse with'),\n",
+ " ('eff', 'have sexual intercourse with'),\n",
+ " ('get laid', 'have sexual intercourse with'),\n",
+ " ('fuck', 'have sexual intercourse with'),\n",
+ " ('be intimate', 'have sexual intercourse with'),\n",
+ " ('bonk', 'have sexual intercourse with'),\n",
+ " ('know', 'have sexual intercourse with'),\n",
+ " ('make out', 'have sexual intercourse with')]},\n",
+ " {'answer': 'bedimmed',\n",
+ " 'hint': 'synonyms for bedimmed',\n",
+ " 'clues': [('bedim', 'make obscure or unclear'),\n",
+ " ('benight', 'make darker and difficult to perceive by sight'),\n",
+ " ('obscure', 'make obscure or unclear'),\n",
+ " ('overcloud', 'make obscure or unclear')]},\n",
+ " {'answer': 'befogged',\n",
+ " 'hint': 'synonyms for befogged',\n",
+ " 'clues': [('fog', 'make less visible or unclear'),\n",
+ " ('becloud', 'make less visible or unclear'),\n",
+ " ('haze over', 'make less visible or unclear'),\n",
+ " ('obscure', 'make less visible or unclear'),\n",
+ " ('cloud', 'make less visible or unclear'),\n",
+ " ('mist', 'make less visible or unclear'),\n",
+ " ('obnubilate', 'make less visible or unclear'),\n",
+ " ('befog', 'make less visible or unclear')]},\n",
+ " {'answer': 'befouled',\n",
+ " 'hint': 'synonyms for befouled',\n",
+ " 'clues': [('foul', 'spot, stain, or pollute'),\n",
+ " ('defile', 'spot, stain, or pollute'),\n",
+ " ('maculate', 'spot, stain, or pollute'),\n",
+ " ('befoul', 'spot, stain, or pollute')]},\n",
+ " {'answer': 'befuddled',\n",
+ " 'hint': 'synonyms for befuddled',\n",
+ " 'clues': [('fuddle',\n",
+ " 'be confusing or perplexing to; cause to be unable to think clearly'),\n",
+ " ('bedevil',\n",
+ " 'be confusing or perplexing to; cause to be unable to think clearly'),\n",
+ " ('discombobulate',\n",
+ " 'be confusing or perplexing to; cause to be unable to think clearly'),\n",
+ " ('fox',\n",
+ " 'be confusing or perplexing to; cause to be unable to think clearly'),\n",
+ " ('throw',\n",
+ " 'be confusing or perplexing to; cause to be unable to think clearly'),\n",
+ " ('confuse',\n",
+ " 'be confusing or perplexing to; cause to be unable to think clearly'),\n",
+ " ('confound',\n",
+ " 'be confusing or perplexing to; cause to be unable to think clearly')]},\n",
+ " {'answer': 'beginning',\n",
+ " 'hint': 'synonyms for beginning',\n",
+ " 'clues': [('begin',\n",
+ " 'begin an event that is implied and limited by the nature or inherent function of the direct object'),\n",
+ " ('start',\n",
+ " 'begin an event that is implied and limited by the nature or inherent function of the direct object'),\n",
+ " ('get', 'take the first step or steps in carrying out an action'),\n",
+ " ('get down', 'take the first step or steps in carrying out an action'),\n",
+ " ('start out', 'take the first step or steps in carrying out an action'),\n",
+ " ('lead off', 'set in motion, cause to start'),\n",
+ " ('set about', 'take the first step or steps in carrying out an action'),\n",
+ " ('commence', 'set in motion, cause to start')]},\n",
+ " {'answer': 'begotten',\n",
+ " 'hint': 'synonyms for begotten',\n",
+ " 'clues': [('beget', 'make children'),\n",
+ " ('father', 'make children'),\n",
+ " ('bring forth', 'make children'),\n",
+ " ('get', 'make children'),\n",
+ " ('engender', 'make children'),\n",
+ " ('sire', 'make children'),\n",
+ " ('generate', 'make children'),\n",
+ " ('mother', 'make children')]},\n",
+ " {'answer': 'begrimed',\n",
+ " 'hint': 'synonyms for begrimed',\n",
+ " 'clues': [('soil', 'make soiled, filthy, or dirty'),\n",
+ " ('begrime', 'make soiled, filthy, or dirty'),\n",
+ " ('bemire', 'make soiled, filthy, or dirty'),\n",
+ " ('colly', 'make soiled, filthy, or dirty'),\n",
+ " ('grime', 'make soiled, filthy, or dirty'),\n",
+ " ('dirty', 'make soiled, filthy, or dirty')]},\n",
+ " {'answer': 'beguiled',\n",
+ " 'hint': 'synonyms for beguiled',\n",
+ " 'clues': [('trance', 'attract; cause to be enamored'),\n",
+ " ('becharm', 'attract; cause to be enamored'),\n",
+ " ('enchant', 'attract; cause to be enamored'),\n",
+ " ('hoodwink', 'influence by slyness'),\n",
+ " ('beguile', 'influence by slyness'),\n",
+ " ('enamour', 'attract; cause to be enamored'),\n",
+ " ('fascinate', 'attract; cause to be enamored'),\n",
+ " ('capture', 'attract; cause to be enamored'),\n",
+ " ('catch', 'attract; cause to be enamored'),\n",
+ " ('captivate', 'attract; cause to be enamored'),\n",
+ " ('bewitch', 'attract; cause to be enamored'),\n",
+ " ('charm', 'attract; cause to be enamored'),\n",
+ " ('juggle', 'influence by slyness')]},\n",
+ " {'answer': 'beguiling',\n",
+ " 'hint': 'synonyms for beguiling',\n",
+ " 'clues': [('trance', 'attract; cause to be enamored'),\n",
+ " ('becharm', 'attract; cause to be enamored'),\n",
+ " ('enchant', 'attract; cause to be enamored'),\n",
+ " ('hoodwink', 'influence by slyness'),\n",
+ " ('beguile', 'influence by slyness'),\n",
+ " ('enamour', 'attract; cause to be enamored'),\n",
+ " ('fascinate', 'attract; cause to be enamored'),\n",
+ " ('capture', 'attract; cause to be enamored'),\n",
+ " ('catch', 'attract; cause to be enamored'),\n",
+ " ('captivate', 'attract; cause to be enamored'),\n",
+ " ('bewitch', 'attract; cause to be enamored'),\n",
+ " ('charm', 'attract; cause to be enamored'),\n",
+ " ('juggle', 'influence by slyness')]},\n",
+ " {'answer': 'belittled',\n",
+ " 'hint': 'synonyms for belittled',\n",
+ " 'clues': [('derogate', 'cause to seem less serious; play down'),\n",
+ " ('pick at', 'express a negative opinion of'),\n",
+ " ('diminish', 'lessen the authority, dignity, or reputation of'),\n",
+ " ('belittle', 'express a negative opinion of'),\n",
+ " ('minimize', 'cause to seem less serious; play down'),\n",
+ " ('disparage', 'express a negative opinion of'),\n",
+ " ('denigrate', 'cause to seem less serious; play down')]},\n",
+ " {'answer': 'belittling',\n",
+ " 'hint': 'synonyms for belittling',\n",
+ " 'clues': [('derogate', 'cause to seem less serious; play down'),\n",
+ " ('pick at', 'express a negative opinion of'),\n",
+ " ('diminish', 'lessen the authority, dignity, or reputation of'),\n",
+ " ('belittle', 'express a negative opinion of'),\n",
+ " ('minimize', 'cause to seem less serious; play down'),\n",
+ " ('disparage', 'express a negative opinion of'),\n",
+ " ('denigrate', 'cause to seem less serious; play down')]},\n",
+ " {'answer': 'bemused',\n",
+ " 'hint': 'synonyms for bemused',\n",
+ " 'clues': [('throw', 'cause to be confused emotionally'),\n",
+ " ('bewilder', 'cause to be confused emotionally'),\n",
+ " ('discombobulate', 'cause to be confused emotionally'),\n",
+ " ('bemuse', 'cause to be confused emotionally')]},\n",
+ " {'answer': 'bended',\n",
+ " 'hint': 'synonyms for bended',\n",
+ " 'clues': [('flex',\n",
+ " 'cause (a plastic object) to assume a crooked or angular form'),\n",
+ " ('turn', 'cause (a plastic object) to assume a crooked or angular form'),\n",
+ " ('bow', \"bend one's back forward from the waist on down\"),\n",
+ " ('deform',\n",
+ " 'cause (a plastic object) to assume a crooked or angular form'),\n",
+ " ('stoop', \"bend one's back forward from the waist on down\"),\n",
+ " ('twist', 'cause (a plastic object) to assume a crooked or angular form'),\n",
+ " ('crouch', \"bend one's back forward from the waist on down\"),\n",
+ " ('bend',\n",
+ " 'turn from a straight course, fixed direction, or line of interest'),\n",
+ " ('turn away',\n",
+ " 'turn from a straight course, fixed direction, or line of interest'),\n",
+ " ('deflect',\n",
+ " 'turn from a straight course, fixed direction, or line of interest')]},\n",
+ " {'answer': 'bent',\n",
+ " 'hint': 'synonyms for bent',\n",
+ " 'clues': [('flex',\n",
+ " 'cause (a plastic object) to assume a crooked or angular form'),\n",
+ " ('turn', 'cause (a plastic object) to assume a crooked or angular form'),\n",
+ " ('bow', \"bend one's back forward from the waist on down\"),\n",
+ " ('deform',\n",
+ " 'cause (a plastic object) to assume a crooked or angular form'),\n",
+ " ('stoop', \"bend one's back forward from the waist on down\"),\n",
+ " ('twist', 'cause (a plastic object) to assume a crooked or angular form'),\n",
+ " ('crouch', \"bend one's back forward from the waist on down\"),\n",
+ " ('bend',\n",
+ " 'turn from a straight course, fixed direction, or line of interest'),\n",
+ " ('turn away',\n",
+ " 'turn from a straight course, fixed direction, or line of interest'),\n",
+ " ('deflect',\n",
+ " 'turn from a straight course, fixed direction, or line of interest')]},\n",
+ " {'answer': 'benumbed',\n",
+ " 'hint': 'synonyms for benumbed',\n",
+ " 'clues': [('blunt', 'make numb or insensitive'),\n",
+ " ('numb', 'make numb or insensitive'),\n",
+ " ('benumb', 'make numb or insensitive'),\n",
+ " ('dull', 'make numb or insensitive')]},\n",
+ " {'answer': 'beseeching',\n",
+ " 'hint': 'synonyms for beseeching',\n",
+ " 'clues': [('entreat', 'ask for or request earnestly'),\n",
+ " ('adjure', 'ask for or request earnestly'),\n",
+ " ('beseech', 'ask for or request earnestly'),\n",
+ " ('bid', 'ask for or request earnestly'),\n",
+ " ('conjure', 'ask for or request earnestly'),\n",
+ " ('press', 'ask for or request earnestly')]},\n",
+ " {'answer': 'besieged',\n",
+ " 'hint': 'synonyms for besieged',\n",
+ " 'clues': [('hem in', 'surround so as to force to give up'),\n",
+ " ('surround', 'surround so as to force to give up'),\n",
+ " ('besiege', 'harass, as with questions or requests'),\n",
+ " ('beleaguer', 'surround so as to force to give up'),\n",
+ " ('circumvent', 'surround so as to force to give up')]},\n",
+ " {'answer': 'bespoke',\n",
+ " 'hint': 'synonyms for bespoke',\n",
+ " 'clues': [('call for', 'express the need or desire for; ask for'),\n",
+ " ('point', 'be a signal for or a symptom of'),\n",
+ " ('bespeak', 'express the need or desire for; ask for'),\n",
+ " ('signal', 'be a signal for or a symptom of'),\n",
+ " ('quest', 'express the need or desire for; ask for'),\n",
+ " ('betoken', 'be a signal for or a symptom of'),\n",
+ " ('request', 'express the need or desire for; ask for'),\n",
+ " ('indicate', 'be a signal for or a symptom of')]},\n",
+ " {'answer': 'bespoken',\n",
+ " 'hint': 'synonyms for bespoken',\n",
+ " 'clues': [('call for', 'express the need or desire for; ask for'),\n",
+ " ('point', 'be a signal for or a symptom of'),\n",
+ " ('bespeak', 'express the need or desire for; ask for'),\n",
+ " ('signal', 'be a signal for or a symptom of'),\n",
+ " ('quest', 'express the need or desire for; ask for'),\n",
+ " ('betoken', 'be a signal for or a symptom of'),\n",
+ " ('request', 'express the need or desire for; ask for'),\n",
+ " ('indicate', 'be a signal for or a symptom of')]},\n",
+ " {'answer': 'best',\n",
+ " 'hint': 'synonyms for best',\n",
+ " 'clues': [('outdo', 'get the better of'),\n",
+ " ('scoop', 'get the better of'),\n",
+ " ('trump', 'get the better of'),\n",
+ " ('outflank', 'get the better of')]},\n",
+ " {'answer': 'betrothed',\n",
+ " 'hint': 'synonyms for betrothed',\n",
+ " 'clues': [('engage', 'give to in marriage'),\n",
+ " ('betroth', 'give to in marriage'),\n",
+ " ('plight', 'give to in marriage'),\n",
+ " ('affiance', 'give to in marriage')]},\n",
+ " {'answer': 'better',\n",
+ " 'hint': 'synonyms for better',\n",
+ " 'clues': [('ameliorate', 'get better'),\n",
+ " ('improve', 'get better'),\n",
+ " ('break', 'surpass in excellence'),\n",
+ " ('amend', 'to make better')]},\n",
+ " {'answer': 'bettering',\n",
+ " 'hint': 'synonyms for bettering',\n",
+ " 'clues': [('better', 'get better'),\n",
+ " ('ameliorate', 'to make better'),\n",
+ " ('break', 'surpass in excellence'),\n",
+ " ('improve', 'get better'),\n",
+ " ('amend', 'to make better')]},\n",
+ " {'answer': 'betting',\n",
+ " 'hint': 'synonyms for betting',\n",
+ " 'clues': [('play', 'stake on the outcome of an issue'),\n",
+ " ('count', 'have faith or confidence in'),\n",
+ " ('wager', 'maintain with or as if with a bet'),\n",
+ " ('look', 'have faith or confidence in'),\n",
+ " ('depend', 'have faith or confidence in'),\n",
+ " ('bet', 'maintain with or as if with a bet'),\n",
+ " ('calculate', 'have faith or confidence in'),\n",
+ " ('reckon', 'have faith or confidence in')]},\n",
+ " {'answer': 'bewildered',\n",
+ " 'hint': 'synonyms for bewildered',\n",
+ " 'clues': [('puzzle', 'be a mystery or bewildering to'),\n",
+ " ('get', 'be a mystery or bewildering to'),\n",
+ " ('beat', 'be a mystery or bewildering to'),\n",
+ " ('amaze', 'be a mystery or bewildering to'),\n",
+ " ('stupefy', 'be a mystery or bewildering to'),\n",
+ " ('bemuse', 'cause to be confused emotionally'),\n",
+ " ('baffle', 'be a mystery or bewildering to'),\n",
+ " ('dumbfound', 'be a mystery or bewildering to'),\n",
+ " ('pose', 'be a mystery or bewildering to'),\n",
+ " ('bewilder', 'cause to be confused emotionally'),\n",
+ " ('perplex', 'be a mystery or bewildering to'),\n",
+ " ('throw', 'cause to be confused emotionally'),\n",
+ " ('gravel', 'be a mystery or bewildering to'),\n",
+ " ('mystify', 'be a mystery or bewildering to'),\n",
+ " ('stick', 'be a mystery or bewildering to'),\n",
+ " ('nonplus', 'be a mystery or bewildering to'),\n",
+ " ('vex', 'be a mystery or bewildering to'),\n",
+ " ('discombobulate', 'cause to be confused emotionally'),\n",
+ " ('flummox', 'be a mystery or bewildering to')]},\n",
+ " {'answer': 'bewitched',\n",
+ " 'hint': 'synonyms for bewitched',\n",
+ " 'clues': [('magnetise', 'attract strongly, as if with a magnet'),\n",
+ " ('trance', 'attract; cause to be enamored'),\n",
+ " ('becharm', 'attract; cause to be enamored'),\n",
+ " ('enchant', 'attract; cause to be enamored'),\n",
+ " ('bewitch',\n",
+ " 'cast a spell over someone or something; put a hex on someone or something'),\n",
+ " ('enamour', 'attract; cause to be enamored'),\n",
+ " ('fascinate', 'attract; cause to be enamored'),\n",
+ " ('beguile', 'attract; cause to be enamored'),\n",
+ " ('capture', 'attract; cause to be enamored'),\n",
+ " ('catch', 'attract; cause to be enamored'),\n",
+ " ('mesmerise', 'attract strongly, as if with a magnet'),\n",
+ " ('spellbind', 'attract strongly, as if with a magnet'),\n",
+ " ('captivate', 'attract; cause to be enamored'),\n",
+ " ('hex',\n",
+ " 'cast a spell over someone or something; put a hex on someone or something'),\n",
+ " ('glamour',\n",
+ " 'cast a spell over someone or something; put a hex on someone or something'),\n",
+ " ('charm', 'attract; cause to be enamored'),\n",
+ " ('jinx',\n",
+ " 'cast a spell over someone or something; put a hex on someone or something'),\n",
+ " ('witch',\n",
+ " 'cast a spell over someone or something; put a hex on someone or something')]},\n",
+ " {'answer': 'bewitching',\n",
+ " 'hint': 'synonyms for bewitching',\n",
+ " 'clues': [('magnetise', 'attract strongly, as if with a magnet'),\n",
+ " ('trance', 'attract; cause to be enamored'),\n",
+ " ('becharm', 'attract; cause to be enamored'),\n",
+ " ('enchant', 'attract; cause to be enamored'),\n",
+ " ('bewitch',\n",
+ " 'cast a spell over someone or something; put a hex on someone or something'),\n",
+ " ('enamour', 'attract; cause to be enamored'),\n",
+ " ('fascinate', 'attract; cause to be enamored'),\n",
+ " ('beguile', 'attract; cause to be enamored'),\n",
+ " ('capture', 'attract; cause to be enamored'),\n",
+ " ('catch', 'attract; cause to be enamored'),\n",
+ " ('mesmerise', 'attract strongly, as if with a magnet'),\n",
+ " ('spellbind', 'attract strongly, as if with a magnet'),\n",
+ " ('captivate', 'attract; cause to be enamored'),\n",
+ " ('hex',\n",
+ " 'cast a spell over someone or something; put a hex on someone or something'),\n",
+ " ('glamour',\n",
+ " 'cast a spell over someone or something; put a hex on someone or something'),\n",
+ " ('charm', 'attract; cause to be enamored'),\n",
+ " ('jinx',\n",
+ " 'cast a spell over someone or something; put a hex on someone or something'),\n",
+ " ('witch',\n",
+ " 'cast a spell over someone or something; put a hex on someone or something')]},\n",
+ " {'answer': 'billowing',\n",
+ " 'hint': 'synonyms for billowing',\n",
+ " 'clues': [('billow', 'rise up as if in waves'),\n",
+ " ('inflate', 'become inflated'),\n",
+ " ('wallow', 'rise up as if in waves'),\n",
+ " ('surge', 'rise and move, as in waves or billows'),\n",
+ " ('heave', 'rise and move, as in waves or billows'),\n",
+ " ('balloon', 'become inflated')]},\n",
+ " {'answer': 'binding',\n",
+ " 'hint': 'synonyms for binding',\n",
+ " 'clues': [('bond', 'stick to firmly'),\n",
+ " ('tie down', 'secure with or as if with ropes'),\n",
+ " ('tie', 'create social or emotional ties'),\n",
+ " ('truss', 'secure with or as if with ropes'),\n",
+ " ('bind', 'create social or emotional ties'),\n",
+ " ('adhere', 'stick to firmly'),\n",
+ " ('hold fast', 'stick to firmly'),\n",
+ " ('tie up', 'secure with or as if with ropes'),\n",
+ " ('attach', 'create social or emotional ties'),\n",
+ " ('stick', 'stick to firmly'),\n",
+ " ('oblige', 'bind by an obligation; cause to be indebted'),\n",
+ " ('constipate', 'cause to be constipated'),\n",
+ " ('bandage', 'wrap around with something so as to cover or enclose'),\n",
+ " ('hold', 'bind by an obligation; cause to be indebted'),\n",
+ " ('stick to', 'stick to firmly')]},\n",
+ " {'answer': 'biting',\n",
+ " 'hint': 'synonyms for biting',\n",
+ " 'clues': [('bite', 'cause a sharp or stinging pain or discomfort'),\n",
+ " ('sting', 'deliver a sting to'),\n",
+ " ('burn', 'cause a sharp or stinging pain or discomfort'),\n",
+ " ('prick', 'deliver a sting to'),\n",
+ " ('seize with teeth',\n",
+ " 'to grip, cut off, or tear with or as if with the teeth or jaws')]},\n",
+ " {'answer': 'blackened',\n",
+ " 'hint': 'synonyms for blackened',\n",
+ " 'clues': [('blacken',\n",
+ " 'burn slightly and superficially so as to affect color'),\n",
+ " ('scorch', 'burn slightly and superficially so as to affect color'),\n",
+ " ('nigrify', 'make or become black'),\n",
+ " ('char', 'burn slightly and superficially so as to affect color'),\n",
+ " ('black', 'make or become black'),\n",
+ " ('melanize', 'make or become black'),\n",
+ " ('sear', 'burn slightly and superficially so as to affect color')]},\n",
+ " {'answer': 'blame',\n",
+ " 'hint': 'synonyms for blame',\n",
+ " 'clues': [('charge', 'attribute responsibility to'),\n",
+ " ('fault', 'put or pin the blame on'),\n",
+ " ('find fault', 'harass with constant criticism'),\n",
+ " ('pick', 'harass with constant criticism')]},\n",
+ " {'answer': 'blamed',\n",
+ " 'hint': 'synonyms for blamed',\n",
+ " 'clues': [('blame', 'harass with constant criticism'),\n",
+ " ('charge', 'attribute responsibility to'),\n",
+ " ('fault', 'put or pin the blame on'),\n",
+ " ('pick', 'harass with constant criticism'),\n",
+ " ('find fault', 'harass with constant criticism')]},\n",
+ " {'answer': 'blanched',\n",
+ " 'hint': 'synonyms for blanched',\n",
+ " 'clues': [('parboil', 'cook (vegetables) briefly'),\n",
+ " ('blanch', 'turn pale, as if in fear'),\n",
+ " ('pale', 'turn pale, as if in fear'),\n",
+ " ('blench', 'turn pale, as if in fear')]},\n",
+ " {'answer': 'blaring',\n",
+ " 'hint': 'synonyms for blaring',\n",
+ " 'clues': [('blast', 'make a strident sound'),\n",
+ " ('beep', 'make a loud noise'),\n",
+ " ('honk', 'make a loud noise'),\n",
+ " ('toot', 'make a loud noise'),\n",
+ " ('blare', 'make a strident sound'),\n",
+ " ('claxon', 'make a loud noise')]},\n",
+ " {'answer': 'blasted',\n",
+ " 'hint': 'synonyms for blasted',\n",
+ " 'clues': [('blast', 'use explosives on'),\n",
+ " ('shoot', 'fire a shot'),\n",
+ " ('knock down', 'shatter as if by explosion'),\n",
+ " ('blare', 'make a strident sound'),\n",
+ " ('crucify', 'criticize harshly or violently'),\n",
+ " ('nail', 'hit hard'),\n",
+ " ('boom', 'hit hard'),\n",
+ " ('savage', 'criticize harshly or violently'),\n",
+ " ('shell', 'create by using explosives'),\n",
+ " ('pillory', 'criticize harshly or violently'),\n",
+ " ('smash', 'hit hard')]},\n",
+ " {'answer': 'blasting',\n",
+ " 'hint': 'synonyms for blasting',\n",
+ " 'clues': [('blast', 'use explosives on'),\n",
+ " ('shoot', 'fire a shot'),\n",
+ " ('knock down', 'shatter as if by explosion'),\n",
+ " ('blare', 'make a strident sound'),\n",
+ " ('crucify', 'criticize harshly or violently'),\n",
+ " ('nail', 'hit hard'),\n",
+ " ('boom', 'hit hard'),\n",
+ " ('savage', 'criticize harshly or violently'),\n",
+ " ('shell', 'create by using explosives'),\n",
+ " ('pillory', 'criticize harshly or violently'),\n",
+ " ('smash', 'hit hard')]},\n",
+ " {'answer': 'bleached',\n",
+ " 'hint': 'synonyms for bleached',\n",
+ " 'clues': [('bleach out', 'remove color from'),\n",
+ " ('discolorize', 'remove color from'),\n",
+ " ('decolorise', 'remove color from'),\n",
+ " ('bleach', 'make whiter or lighter'),\n",
+ " ('decolour', 'remove color from')]},\n",
+ " {'answer': 'blemished',\n",
+ " 'hint': 'synonyms for blemished',\n",
+ " 'clues': [('spot', 'mar or impair with a flaw'),\n",
+ " ('blemish', 'add a flaw or blemish to; make imperfect or defective'),\n",
+ " ('disfigure', 'mar or spoil the appearance of'),\n",
+ " ('deface', 'mar or spoil the appearance of'),\n",
+ " ('flaw', 'add a flaw or blemish to; make imperfect or defective')]},\n",
+ " {'answer': 'blended',\n",
+ " 'hint': 'synonyms for blended',\n",
+ " 'clues': [('coalesce', 'mix together different elements'),\n",
+ " ('flux', 'mix together different elements'),\n",
+ " ('combine', 'mix together different elements'),\n",
+ " ('blend in', 'blend or harmonize'),\n",
+ " ('blend', 'combine into one'),\n",
+ " ('meld', 'mix together different elements'),\n",
+ " ('go', 'blend or harmonize'),\n",
+ " ('immingle', 'combine into one'),\n",
+ " ('fuse', 'mix together different elements'),\n",
+ " ('mix', 'mix together different elements'),\n",
+ " ('conflate', 'mix together different elements'),\n",
+ " ('intermix', 'combine into one'),\n",
+ " ('merge', 'mix together different elements'),\n",
+ " ('intermingle', 'combine into one'),\n",
+ " ('commingle', 'mix together different elements'),\n",
+ " ('immix', 'mix together different elements')]},\n",
+ " {'answer': 'blessed',\n",
+ " 'hint': 'synonyms for blessed',\n",
+ " 'clues': [('sign',\n",
+ " 'make the sign of the cross over someone in order to call on God for protection; consecrate'),\n",
+ " ('hallow', 'render holy by means of religious rites'),\n",
+ " ('bless', 'render holy by means of religious rites'),\n",
+ " ('sanctify', 'render holy by means of religious rites'),\n",
+ " ('consecrate', 'render holy by means of religious rites')]},\n",
+ " {'answer': 'blest',\n",
+ " 'hint': 'synonyms for blest',\n",
+ " 'clues': [('sign',\n",
+ " 'make the sign of the cross over someone in order to call on God for protection; consecrate'),\n",
+ " ('hallow', 'render holy by means of religious rites'),\n",
+ " ('bless', 'render holy by means of religious rites'),\n",
+ " ('sanctify', 'render holy by means of religious rites'),\n",
+ " ('consecrate', 'render holy by means of religious rites')]},\n",
+ " {'answer': 'blinking',\n",
+ " 'hint': 'synonyms for blinking',\n",
+ " 'clues': [('nictate', 'briefly shut the eyes'),\n",
+ " ('blink', 'gleam or glow intermittently'),\n",
+ " ('wink', 'briefly shut the eyes'),\n",
+ " ('blink away', 'force to go away by blinking'),\n",
+ " ('winkle', 'gleam or glow intermittently'),\n",
+ " ('flash', 'gleam or glow intermittently')]},\n",
+ " {'answer': 'blistering',\n",
+ " 'hint': 'synonyms for blistering',\n",
+ " 'clues': [('scald', 'subject to harsh criticism'),\n",
+ " ('blister', 'subject to harsh criticism'),\n",
+ " ('whip', 'subject to harsh criticism'),\n",
+ " ('vesicate', 'get blistered')]},\n",
+ " {'answer': 'blockaded',\n",
+ " 'hint': 'synonyms for blockaded',\n",
+ " 'clues': [('block', 'render unsuitable for passage'),\n",
+ " ('blockade', 'hinder or prevent the progress or accomplishment of'),\n",
+ " ('bar', 'render unsuitable for passage'),\n",
+ " ('stymie', 'hinder or prevent the progress or accomplishment of'),\n",
+ " ('block up', 'render unsuitable for passage'),\n",
+ " ('hinder', 'hinder or prevent the progress or accomplishment of'),\n",
+ " ('stymy', 'hinder or prevent the progress or accomplishment of'),\n",
+ " ('obstruct', 'hinder or prevent the progress or accomplishment of'),\n",
+ " ('block off', 'obstruct access to'),\n",
+ " ('stop', 'render unsuitable for passage'),\n",
+ " ('seal off', 'impose a blockade on'),\n",
+ " ('embarrass', 'hinder or prevent the progress or accomplishment of'),\n",
+ " ('barricade', 'render unsuitable for passage')]},\n",
+ " {'answer': 'blockading',\n",
+ " 'hint': 'synonyms for blockading',\n",
+ " 'clues': [('block', 'render unsuitable for passage'),\n",
+ " ('blockade', 'hinder or prevent the progress or accomplishment of'),\n",
+ " ('bar', 'render unsuitable for passage'),\n",
+ " ('stymie', 'hinder or prevent the progress or accomplishment of'),\n",
+ " ('block up', 'render unsuitable for passage'),\n",
+ " ('hinder', 'hinder or prevent the progress or accomplishment of'),\n",
+ " ('stymy', 'hinder or prevent the progress or accomplishment of'),\n",
+ " ('obstruct', 'hinder or prevent the progress or accomplishment of'),\n",
+ " ('block off', 'obstruct access to'),\n",
+ " ('stop', 'render unsuitable for passage'),\n",
+ " ('seal off', 'impose a blockade on'),\n",
+ " ('embarrass', 'hinder or prevent the progress or accomplishment of'),\n",
+ " ('barricade', 'render unsuitable for passage')]},\n",
+ " {'answer': 'blocked',\n",
+ " 'hint': 'synonyms for blocked',\n",
+ " 'clues': [('block', 'render unsuitable for passage'),\n",
+ " ('stop', 'stop from happening or developing'),\n",
+ " ('freeze', 'prohibit the conversion or use of (assets)'),\n",
+ " ('bar', 'render unsuitable for passage'),\n",
+ " ('jam', 'block passage through'),\n",
+ " ('block up', 'render unsuitable for passage'),\n",
+ " ('deflect', 'impede the movement of (an opponent or a ball)'),\n",
+ " ('immobilise', 'prohibit the conversion or use of (assets)'),\n",
+ " ('parry', 'impede the movement of (an opponent or a ball)'),\n",
+ " ('stuff', 'obstruct'),\n",
+ " ('kibosh', 'stop from happening or developing'),\n",
+ " ('blockade', 'render unsuitable for passage'),\n",
+ " ('obstruct',\n",
+ " 'shut out from view or get in the way so as to hide from sight'),\n",
+ " ('stymy', 'hinder or prevent the progress or accomplishment of'),\n",
+ " ('choke up', 'obstruct'),\n",
+ " ('barricade', 'render unsuitable for passage'),\n",
+ " ('occlude', 'block passage through'),\n",
+ " ('draw a blank', 'be unable to remember'),\n",
+ " ('hinder', 'hinder or prevent the progress or accomplishment of'),\n",
+ " ('blank out', 'be unable to remember'),\n",
+ " ('embarrass', 'hinder or prevent the progress or accomplishment of'),\n",
+ " ('close up', 'block passage through'),\n",
+ " ('lug', 'obstruct'),\n",
+ " ('stymie', 'hinder or prevent the progress or accomplishment of'),\n",
+ " ('halt', 'stop from happening or developing'),\n",
+ " ('forget', 'be unable to remember'),\n",
+ " ('impede', 'block passage through'),\n",
+ " ('obturate', 'block passage through'),\n",
+ " ('block off', 'render unsuitable for passage')]},\n",
+ " {'answer': 'blown',\n",
+ " 'hint': 'synonyms for blown',\n",
+ " 'clues': [('fumble', 'make a mess of, destroy or ruin'),\n",
+ " ('fuck up', 'make a mess of, destroy or ruin'),\n",
+ " ('bungle', 'make a mess of, destroy or ruin'),\n",
+ " ('bollix', 'make a mess of, destroy or ruin'),\n",
+ " ('bluster', 'show off'),\n",
+ " ('ball up', 'make a mess of, destroy or ruin'),\n",
+ " ('screw up', 'make a mess of, destroy or ruin'),\n",
+ " ('float', 'be in motion due to some air or water current'),\n",
+ " ('blow', 'burst suddenly'),\n",
+ " ('squander', 'spend thoughtlessly; throw away'),\n",
+ " ('bumble', 'make a mess of, destroy or ruin'),\n",
+ " ('mishandle', 'make a mess of, destroy or ruin'),\n",
+ " ('vaunt', 'show off'),\n",
+ " ('shove off', 'leave; informal or rude'),\n",
+ " ('bollocks up', 'make a mess of, destroy or ruin'),\n",
+ " ('drift', 'be in motion due to some air or water current'),\n",
+ " ('flub', 'make a mess of, destroy or ruin'),\n",
+ " ('suck', 'provide sexual gratification through oral stimulation'),\n",
+ " ('bobble', 'make a mess of, destroy or ruin'),\n",
+ " ('be adrift', 'be in motion due to some air or water current'),\n",
+ " ('brag', 'show off'),\n",
+ " ('boast', 'show off'),\n",
+ " ('gasconade', 'show off'),\n",
+ " ('botch up', 'make a mess of, destroy or ruin'),\n",
+ " ('spoil', 'make a mess of, destroy or ruin'),\n",
+ " ('gas', 'show off'),\n",
+ " ('foul up', 'make a mess of, destroy or ruin'),\n",
+ " ('muff', 'make a mess of, destroy or ruin'),\n",
+ " ('louse up', 'make a mess of, destroy or ruin'),\n",
+ " ('fluff', 'make a mess of, destroy or ruin'),\n",
+ " ('go down on', 'provide sexual gratification through oral stimulation'),\n",
+ " ('shove along', 'leave; informal or rude'),\n",
+ " ('bodge', 'make a mess of, destroy or ruin'),\n",
+ " ('burn out', 'melt, break, or become otherwise unusable'),\n",
+ " ('bollocks', 'make a mess of, destroy or ruin'),\n",
+ " ('waste', 'spend thoughtlessly; throw away'),\n",
+ " ('fellate', 'provide sexual gratification through oral stimulation'),\n",
+ " ('swash', 'show off'),\n",
+ " ('botch', 'make a mess of, destroy or ruin'),\n",
+ " ('mess up', 'make a mess of, destroy or ruin'),\n",
+ " ('shoot a line', 'show off'),\n",
+ " ('blow out', 'melt, break, or become otherwise unusable'),\n",
+ " ('tout', 'show off'),\n",
+ " ('bollix up', 'make a mess of, destroy or ruin')]},\n",
+ " {'answer': 'blunt',\n",
+ " 'hint': 'synonyms for blunt',\n",
+ " 'clues': [('dull', 'make numb or insensitive'),\n",
+ " ('benumb', 'make numb or insensitive'),\n",
+ " ('deaden',\n",
+ " 'make less lively, intense, or vigorous; impair in vigor, force, activity, or sensation'),\n",
+ " ('numb', 'make numb or insensitive')]},\n",
+ " {'answer': 'blunted',\n",
+ " 'hint': 'synonyms for blunted',\n",
+ " 'clues': [('deaden',\n",
+ " 'make less lively, intense, or vigorous; impair in vigor, force, activity, or sensation'),\n",
+ " ('blunt', 'make less intense'),\n",
+ " ('dull', 'make dull or blunt'),\n",
+ " ('benumb', 'make numb or insensitive'),\n",
+ " ('numb', 'make numb or insensitive')]},\n",
+ " {'answer': 'blurred',\n",
+ " 'hint': 'synonyms for blurred',\n",
+ " 'clues': [('blur', 'to make less distinct or clear'),\n",
+ " ('slur', 'become vague or indistinct'),\n",
+ " ('blear', 'make dim or indistinct'),\n",
+ " ('obnubilate', 'make unclear, indistinct, or blurred'),\n",
+ " ('dim', 'become vague or indistinct'),\n",
+ " ('glaze over', 'become glassy; lose clear vision'),\n",
+ " ('smudge', 'make a smudge on; soil by smudging'),\n",
+ " ('confuse', 'make unclear, indistinct, or blurred'),\n",
+ " ('obscure', 'make unclear, indistinct, or blurred'),\n",
+ " ('smear', 'make a smudge on; soil by smudging'),\n",
+ " ('smutch', 'make a smudge on; soil by smudging'),\n",
+ " ('film over', 'become glassy; lose clear vision')]},\n",
+ " {'answer': 'blushing',\n",
+ " 'hint': 'synonyms for blushing',\n",
+ " 'clues': [('blush', 'turn red, as if in embarrassment or shame'),\n",
+ " ('crimson', 'turn red, as if in embarrassment or shame'),\n",
+ " ('redden', 'turn red, as if in embarrassment or shame'),\n",
+ " ('flush', 'turn red, as if in embarrassment or shame')]},\n",
+ " {'answer': 'blustering',\n",
+ " 'hint': 'synonyms for blustering',\n",
+ " 'clues': [('swagger',\n",
+ " 'act in an arrogant, overly self-assured, or conceited manner'),\n",
+ " ('bluster',\n",
+ " 'act in an arrogant, overly self-assured, or conceited manner'),\n",
+ " ('swash', 'act in an arrogant, overly self-assured, or conceited manner'),\n",
+ " ('brag', 'show off'),\n",
+ " ('boast', 'show off'),\n",
+ " ('gasconade', 'show off'),\n",
+ " ('gas', 'show off'),\n",
+ " ('blow', 'show off'),\n",
+ " ('shoot a line', 'show off'),\n",
+ " ('vaunt', 'show off'),\n",
+ " ('tout', 'show off')]},\n",
+ " {'answer': 'boiled',\n",
+ " 'hint': 'synonyms for boiled',\n",
+ " 'clues': [('seethe', 'be in an agitated emotional state'),\n",
+ " ('boil', 'be in an agitated emotional state'),\n",
+ " ('roil', 'be agitated'),\n",
+ " ('churn', 'be agitated'),\n",
+ " ('moil', 'be agitated')]},\n",
+ " {'answer': 'bone',\n",
+ " 'hint': 'synonyms for bone',\n",
+ " 'clues': [('grind away', 'study intensively, as before an exam'),\n",
+ " ('cram', 'study intensively, as before an exam'),\n",
+ " ('get up', 'study intensively, as before an exam'),\n",
+ " ('debone', 'remove the bones from'),\n",
+ " ('bone up', 'study intensively, as before an exam'),\n",
+ " ('drum', 'study intensively, as before an exam'),\n",
+ " ('mug up', 'study intensively, as before an exam'),\n",
+ " ('swot', 'study intensively, as before an exam'),\n",
+ " ('swot up', 'study intensively, as before an exam')]},\n",
+ " {'answer': 'boned',\n",
+ " 'hint': 'synonyms for boned',\n",
+ " 'clues': [('grind away', 'study intensively, as before an exam'),\n",
+ " ('cram', 'study intensively, as before an exam'),\n",
+ " ('get up', 'study intensively, as before an exam'),\n",
+ " ('debone', 'remove the bones from'),\n",
+ " ('bone up', 'study intensively, as before an exam'),\n",
+ " ('bone', 'study intensively, as before an exam'),\n",
+ " ('drum', 'study intensively, as before an exam'),\n",
+ " ('mug up', 'study intensively, as before an exam'),\n",
+ " ('swot', 'study intensively, as before an exam'),\n",
+ " ('swot up', 'study intensively, as before an exam')]},\n",
+ " {'answer': 'booming',\n",
+ " 'hint': 'synonyms for booming',\n",
+ " 'clues': [('boom out', 'make a deep hollow sound'),\n",
+ " ('nail', 'hit hard'),\n",
+ " ('boom', 'hit hard'),\n",
+ " ('expand', 'grow vigorously'),\n",
+ " ('thunder', 'be the case that thunder is being heard'),\n",
+ " ('blast', 'hit hard'),\n",
+ " ('thrive', 'grow vigorously'),\n",
+ " ('din', 'make a resonant sound, like artillery'),\n",
+ " ('smash', 'hit hard'),\n",
+ " ('flourish', 'grow vigorously')]},\n",
+ " {'answer': 'bootlicking',\n",
+ " 'hint': 'synonyms for bootlicking',\n",
+ " 'clues': [('kowtow', 'try to gain favor by cringing or flattering'),\n",
+ " ('truckle', 'try to gain favor by cringing or flattering'),\n",
+ " ('fawn', 'try to gain favor by cringing or flattering'),\n",
+ " ('bootlick', 'try to gain favor by cringing or flattering'),\n",
+ " ('toady', 'try to gain favor by cringing or flattering'),\n",
+ " ('suck up', 'try to gain favor by cringing or flattering')]},\n",
+ " {'answer': 'bordered',\n",
+ " 'hint': 'synonyms for bordered',\n",
+ " 'clues': [('bound', 'form the boundary of; be contiguous to'),\n",
+ " ('environ', 'extend on all sides of simultaneously; encircle'),\n",
+ " ('ring', 'extend on all sides of simultaneously; encircle'),\n",
+ " ('frame', 'enclose in or as if in a frame'),\n",
+ " ('border', 'form the boundary of; be contiguous to'),\n",
+ " ('butt on', 'lie adjacent to another or share a boundary'),\n",
+ " ('edge', 'lie adjacent to another or share a boundary'),\n",
+ " ('frame in', 'enclose in or as if in a frame'),\n",
+ " ('adjoin', 'lie adjacent to another or share a boundary'),\n",
+ " ('abut', 'lie adjacent to another or share a boundary'),\n",
+ " ('butt against', 'lie adjacent to another or share a boundary'),\n",
+ " ('march', 'lie adjacent to another or share a boundary'),\n",
+ " ('skirt', 'extend on all sides of simultaneously; encircle'),\n",
+ " ('surround', 'extend on all sides of simultaneously; encircle'),\n",
+ " ('butt', 'lie adjacent to another or share a boundary')]},\n",
+ " {'answer': 'born',\n",
+ " 'hint': 'synonyms for born',\n",
+ " 'clues': [('have a bun in the oven', 'be pregnant with'),\n",
+ " ('bear', 'have'),\n",
+ " ('accept',\n",
+ " \"take on as one's own the expenses or debts of another person\"),\n",
+ " ('behave', 'behave in a certain manner'),\n",
+ " ('carry', 'behave in a certain manner'),\n",
+ " ('tolerate', 'put up with something or somebody unpleasant'),\n",
+ " ('comport', 'behave in a certain manner'),\n",
+ " ('hold', 'have rightfully; of rights, titles, and offices'),\n",
+ " ('deport', 'behave in a certain manner'),\n",
+ " ('take over',\n",
+ " \"take on as one's own the expenses or debts of another person\"),\n",
+ " ('support', 'put up with something or somebody unpleasant'),\n",
+ " ('stomach', 'put up with something or somebody unpleasant'),\n",
+ " ('brook', 'put up with something or somebody unpleasant'),\n",
+ " ('stand', 'put up with something or somebody unpleasant'),\n",
+ " ('stick out', 'put up with something or somebody unpleasant'),\n",
+ " ('deliver', 'cause to be born'),\n",
+ " ('birth', 'cause to be born'),\n",
+ " ('give birth', 'cause to be born'),\n",
+ " ('contain', 'contain or hold; have within'),\n",
+ " ('turn out', 'bring forth,'),\n",
+ " ('expect', 'be pregnant with'),\n",
+ " ('assume',\n",
+ " \"take on as one's own the expenses or debts of another person\"),\n",
+ " ('pay', 'bring in'),\n",
+ " ('suffer', 'put up with something or somebody unpleasant'),\n",
+ " ('yield', 'bring in'),\n",
+ " ('have', 'cause to be born'),\n",
+ " ('endure', 'put up with something or somebody unpleasant'),\n",
+ " ('wear', \"have on one's person\"),\n",
+ " ('conduct', 'behave in a certain manner'),\n",
+ " ('abide', 'put up with something or somebody unpleasant'),\n",
+ " ('gestate', 'be pregnant with'),\n",
+ " ('put up', 'put up with something or somebody unpleasant'),\n",
+ " ('acquit', 'behave in a certain manner'),\n",
+ " ('digest', 'put up with something or somebody unpleasant')]},\n",
+ " {'answer': 'bosomed',\n",
+ " 'hint': 'synonyms for bosomed',\n",
+ " 'clues': [('bosom', \"hide in one's bosom\"),\n",
+ " ('squeeze',\n",
+ " 'squeeze (someone) tightly in your arms, usually with fondness'),\n",
+ " ('hug', 'squeeze (someone) tightly in your arms, usually with fondness'),\n",
+ " ('embrace',\n",
+ " 'squeeze (someone) tightly in your arms, usually with fondness')]},\n",
+ " {'answer': 'botched',\n",
+ " 'hint': 'synonyms for botched',\n",
+ " 'clues': [('muck up', 'make a mess of, destroy or ruin'),\n",
+ " ('fumble', 'make a mess of, destroy or ruin'),\n",
+ " ('bungle', 'make a mess of, destroy or ruin'),\n",
+ " ('bollix', 'make a mess of, destroy or ruin'),\n",
+ " ('ball up', 'make a mess of, destroy or ruin'),\n",
+ " ('screw up', 'make a mess of, destroy or ruin'),\n",
+ " ('botch up', 'make a mess of, destroy or ruin'),\n",
+ " ('spoil', 'make a mess of, destroy or ruin'),\n",
+ " ('bumble', 'make a mess of, destroy or ruin'),\n",
+ " ('mishandle', 'make a mess of, destroy or ruin'),\n",
+ " ('foul up', 'make a mess of, destroy or ruin'),\n",
+ " ('muff', 'make a mess of, destroy or ruin'),\n",
+ " ('louse up', 'make a mess of, destroy or ruin'),\n",
+ " ('fluff', 'make a mess of, destroy or ruin'),\n",
+ " ('bodge', 'make a mess of, destroy or ruin'),\n",
+ " ('bollocks up', 'make a mess of, destroy or ruin'),\n",
+ " ('bollocks', 'make a mess of, destroy or ruin'),\n",
+ " ('blow', 'make a mess of, destroy or ruin'),\n",
+ " ('botch', 'make a mess of, destroy or ruin'),\n",
+ " ('flub', 'make a mess of, destroy or ruin'),\n",
+ " ('mess up', 'make a mess of, destroy or ruin'),\n",
+ " ('bollix up', 'make a mess of, destroy or ruin'),\n",
+ " ('bobble', 'make a mess of, destroy or ruin')]},\n",
+ " {'answer': 'bothered',\n",
+ " 'hint': 'synonyms for bothered',\n",
+ " 'clues': [('trouble', 'take the trouble to do something; concern oneself'),\n",
+ " ('gravel',\n",
+ " 'cause annoyance in; disturb, especially by minor irritations'),\n",
+ " ('bother', 'to cause inconvenience or discomfort to'),\n",
+ " ('put out', 'to cause inconvenience or discomfort to'),\n",
+ " ('get to',\n",
+ " 'cause annoyance in; disturb, especially by minor irritations'),\n",
+ " ('vex', 'cause annoyance in; disturb, especially by minor irritations'),\n",
+ " ('chafe', 'cause annoyance in; disturb, especially by minor irritations'),\n",
+ " ('irritate',\n",
+ " 'cause annoyance in; disturb, especially by minor irritations'),\n",
+ " ('devil', 'cause annoyance in; disturb, especially by minor irritations'),\n",
+ " ('annoy', 'cause annoyance in; disturb, especially by minor irritations'),\n",
+ " ('discommode', 'to cause inconvenience or discomfort to'),\n",
+ " ('incommode', 'to cause inconvenience or discomfort to'),\n",
+ " ('inconvenience oneself',\n",
+ " 'take the trouble to do something; concern oneself'),\n",
+ " ('nettle',\n",
+ " 'cause annoyance in; disturb, especially by minor irritations'),\n",
+ " ('inconvenience', 'to cause inconvenience or discomfort to'),\n",
+ " ('rile', 'cause annoyance in; disturb, especially by minor irritations'),\n",
+ " ('rag', 'cause annoyance in; disturb, especially by minor irritations'),\n",
+ " ('trouble oneself', 'take the trouble to do something; concern oneself'),\n",
+ " ('get at',\n",
+ " 'cause annoyance in; disturb, especially by minor irritations'),\n",
+ " ('nark', 'cause annoyance in; disturb, especially by minor irritations'),\n",
+ " ('disoblige', 'to cause inconvenience or discomfort to')]},\n",
+ " {'answer': 'bouncing',\n",
+ " 'hint': 'synonyms for bouncing',\n",
+ " 'clues': [('bounce', 'move up and down repeatedly'),\n",
+ " ('spring', 'spring back; spring away from an impact'),\n",
+ " ('bound', 'spring back; spring away from an impact'),\n",
+ " ('rebound', 'spring back; spring away from an impact'),\n",
+ " ('take a hop', 'spring back; spring away from an impact'),\n",
+ " ('resile', 'spring back; spring away from an impact'),\n",
+ " ('jounce', 'move up and down repeatedly'),\n",
+ " ('reverberate', 'spring back; spring away from an impact'),\n",
+ " ('ricochet', 'spring back; spring away from an impact'),\n",
+ " ('recoil', 'spring back; spring away from an impact')]},\n",
+ " {'answer': 'bound',\n",
+ " 'hint': 'synonyms for bound',\n",
+ " 'clues': [('bond', 'stick to firmly'),\n",
+ " ('rebound', 'spring back; spring away from an impact'),\n",
+ " ('bind', 'create social or emotional ties'),\n",
+ " ('adhere', 'stick to firmly'),\n",
+ " ('hold fast', 'stick to firmly'),\n",
+ " ('tie up', 'secure with or as if with ropes'),\n",
+ " ('stick', 'stick to firmly'),\n",
+ " ('oblige', 'bind by an obligation; cause to be indebted'),\n",
+ " ('constipate', 'cause to be constipated'),\n",
+ " ('bounce', 'spring back; spring away from an impact'),\n",
+ " ('spring', 'move forward by leaps and bounds'),\n",
+ " ('confine', 'place limits on (extent or access)'),\n",
+ " ('take a hop', 'spring back; spring away from an impact'),\n",
+ " ('bandage', 'wrap around with something so as to cover or enclose'),\n",
+ " ('hold', 'bind by an obligation; cause to be indebted'),\n",
+ " ('stick to', 'stick to firmly'),\n",
+ " ('leap', 'move forward by leaps and bounds'),\n",
+ " ('tie down', 'secure with or as if with ropes'),\n",
+ " ('tie', 'create social or emotional ties'),\n",
+ " ('truss', 'secure with or as if with ropes'),\n",
+ " ('border', 'form the boundary of; be contiguous to'),\n",
+ " ('attach', 'create social or emotional ties'),\n",
+ " ('throttle', 'place limits on (extent or access)'),\n",
+ " ('restrict', 'place limits on (extent or access)'),\n",
+ " ('reverberate', 'spring back; spring away from an impact'),\n",
+ " ('jump', 'move forward by leaps and bounds'),\n",
+ " ('limit', 'place limits on (extent or access)'),\n",
+ " ('restrain', 'place limits on (extent or access)'),\n",
+ " ('resile', 'spring back; spring away from an impact'),\n",
+ " ('trammel', 'place limits on (extent or access)'),\n",
+ " ('ricochet', 'spring back; spring away from an impact'),\n",
+ " ('recoil', 'spring back; spring away from an impact')]},\n",
+ " {'answer': 'bounded',\n",
+ " 'hint': 'synonyms for bounded',\n",
+ " 'clues': [('bound', 'move forward by leaps and bounds'),\n",
+ " ('rebound', 'spring back; spring away from an impact'),\n",
+ " ('border', 'form the boundary of; be contiguous to'),\n",
+ " ('throttle', 'place limits on (extent or access)'),\n",
+ " ('restrict', 'place limits on (extent or access)'),\n",
+ " ('bounce', 'spring back; spring away from an impact'),\n",
+ " ('reverberate', 'spring back; spring away from an impact'),\n",
+ " ('spring', 'move forward by leaps and bounds'),\n",
+ " ('confine', 'place limits on (extent or access)'),\n",
+ " ('jump', 'move forward by leaps and bounds'),\n",
+ " ('limit', 'place limits on (extent or access)'),\n",
+ " ('take a hop', 'spring back; spring away from an impact'),\n",
+ " ('restrain', 'place limits on (extent or access)'),\n",
+ " ('resile', 'spring back; spring away from an impact'),\n",
+ " ('trammel', 'place limits on (extent or access)'),\n",
+ " ('leap', 'move forward by leaps and bounds'),\n",
+ " ('ricochet', 'spring back; spring away from an impact'),\n",
+ " ('recoil', 'spring back; spring away from an impact')]},\n",
+ " {'answer': 'bowed',\n",
+ " 'hint': 'synonyms for bowed',\n",
+ " 'clues': [('bow', \"bend one's back forward from the waist on down\"),\n",
+ " ('bow down', \"bend one's knee or body, or lower one's head\"),\n",
+ " ('give in', \"yield to another's wish or opinion\"),\n",
+ " ('stoop', \"bend one's back forward from the waist on down\"),\n",
+ " ('crouch', \"bend one's back forward from the waist on down\"),\n",
+ " ('accede', \"yield to another's wish or opinion\"),\n",
+ " ('submit', \"yield to another's wish or opinion\"),\n",
+ " ('bend', \"bend one's back forward from the waist on down\"),\n",
+ " ('defer', \"yield to another's wish or opinion\")]},\n",
+ " {'answer': 'bowing',\n",
+ " 'hint': 'synonyms for bowing',\n",
+ " 'clues': [('bow', \"bend one's back forward from the waist on down\"),\n",
+ " ('bow down', \"bend one's knee or body, or lower one's head\"),\n",
+ " ('give in', \"yield to another's wish or opinion\"),\n",
+ " ('stoop', \"bend one's back forward from the waist on down\"),\n",
+ " ('crouch', \"bend one's back forward from the waist on down\"),\n",
+ " ('accede', \"yield to another's wish or opinion\"),\n",
+ " ('submit', \"yield to another's wish or opinion\"),\n",
+ " ('bend', \"bend one's back forward from the waist on down\"),\n",
+ " ('defer', \"yield to another's wish or opinion\")]},\n",
+ " {'answer': 'braced',\n",
+ " 'hint': 'synonyms for braced',\n",
+ " 'clues': [('energize', 'cause to be alert and energetic'),\n",
+ " ('stabilize',\n",
+ " 'support or hold steady and make steadfast, with or as if with a brace'),\n",
+ " ('poise', 'prepare (oneself) for something unpleasant or difficult'),\n",
+ " ('arouse', 'cause to be alert and energetic'),\n",
+ " ('perk up', 'cause to be alert and energetic'),\n",
+ " ('stimulate', 'cause to be alert and energetic'),\n",
+ " ('brace', 'cause to be alert and energetic'),\n",
+ " ('steady',\n",
+ " 'support or hold steady and make steadfast, with or as if with a brace')]},\n",
+ " {'answer': 'bracing',\n",
+ " 'hint': 'synonyms for bracing',\n",
+ " 'clues': [('energize', 'cause to be alert and energetic'),\n",
+ " ('stabilize',\n",
+ " 'support or hold steady and make steadfast, with or as if with a brace'),\n",
+ " ('poise', 'prepare (oneself) for something unpleasant or difficult'),\n",
+ " ('arouse', 'cause to be alert and energetic'),\n",
+ " ('perk up', 'cause to be alert and energetic'),\n",
+ " ('stimulate', 'cause to be alert and energetic'),\n",
+ " ('brace', 'cause to be alert and energetic'),\n",
+ " ('steady',\n",
+ " 'support or hold steady and make steadfast, with or as if with a brace')]},\n",
+ " {'answer': 'brag',\n",
+ " 'hint': 'synonyms for brag',\n",
+ " 'clues': [('boast', 'show off'),\n",
+ " ('bluster', 'show off'),\n",
+ " ('swash', 'show off'),\n",
+ " ('gasconade', 'show off'),\n",
+ " ('gas', 'show off'),\n",
+ " ('blow', 'show off'),\n",
+ " ('shoot a line', 'show off'),\n",
+ " ('vaunt', 'show off'),\n",
+ " ('tout', 'show off')]},\n",
+ " {'answer': 'bragging',\n",
+ " 'hint': 'synonyms for bragging',\n",
+ " 'clues': [('brag', 'show off'),\n",
+ " ('boast', 'show off'),\n",
+ " ('bluster', 'show off'),\n",
+ " ('swash', 'show off'),\n",
+ " ('gasconade', 'show off'),\n",
+ " ('gas', 'show off'),\n",
+ " ('blow', 'show off'),\n",
+ " ('shoot a line', 'show off'),\n",
+ " ('vaunt', 'show off'),\n",
+ " ('tout', 'show off')]},\n",
+ " {'answer': 'braided',\n",
+ " 'hint': 'synonyms for braided',\n",
+ " 'clues': [('pleach', 'form or weave into a braid or braids'),\n",
+ " ('lace', 'make by braiding or interlacing'),\n",
+ " ('braid', 'form or weave into a braid or braids'),\n",
+ " ('plait', 'make by braiding or interlacing')]},\n",
+ " {'answer': 'branched',\n",
+ " 'hint': 'synonyms for branched',\n",
+ " 'clues': [('branch',\n",
+ " 'grow and send out branches or branch-like structures'),\n",
+ " ('ramify', 'divide into two or more branches so as to form a fork'),\n",
+ " ('furcate', 'divide into two or more branches so as to form a fork'),\n",
+ " ('fork', 'divide into two or more branches so as to form a fork'),\n",
+ " ('separate', 'divide into two or more branches so as to form a fork')]},\n",
+ " {'answer': 'branching',\n",
+ " 'hint': 'synonyms for branching',\n",
+ " 'clues': [('branch',\n",
+ " 'grow and send out branches or branch-like structures'),\n",
+ " ('ramify', 'divide into two or more branches so as to form a fork'),\n",
+ " ('furcate', 'divide into two or more branches so as to form a fork'),\n",
+ " ('fork', 'divide into two or more branches so as to form a fork'),\n",
+ " ('separate', 'divide into two or more branches so as to form a fork')]},\n",
+ " {'answer': 'branded',\n",
+ " 'hint': 'synonyms for branded',\n",
+ " 'clues': [('brand',\n",
+ " 'to accuse or condemn or openly or formally or brand as disgraceful'),\n",
+ " ('brandmark', 'mark with a brand or trademark'),\n",
+ " ('stigmatise',\n",
+ " 'to accuse or condemn or openly or formally or brand as disgraceful'),\n",
+ " ('trademark', 'mark with a brand or trademark'),\n",
+ " ('mark',\n",
+ " 'to accuse or condemn or openly or formally or brand as disgraceful'),\n",
+ " ('post', 'mark or expose as infamous'),\n",
+ " ('denounce',\n",
+ " 'to accuse or condemn or openly or formally or brand as disgraceful')]},\n",
+ " {'answer': 'breathed',\n",
+ " 'hint': 'synonyms for breathed',\n",
+ " 'clues': [('breathe',\n",
+ " 'reach full flavor by absorbing air and being let to stand after having been uncorked'),\n",
+ " ('pass off', 'expel (gases or odors)'),\n",
+ " ('emit', 'expel (gases or odors)'),\n",
+ " ('rest', \"take a short break from one's activities in order to relax\"),\n",
+ " ('suspire', 'draw air into, and expel out of, the lungs'),\n",
+ " ('take a breather',\n",
+ " \"take a short break from one's activities in order to relax\"),\n",
+ " (\"catch one's breath\",\n",
+ " \"take a short break from one's activities in order to relax\"),\n",
+ " ('respire', 'draw air into, and expel out of, the lungs')]},\n",
+ " {'answer': 'breathing',\n",
+ " 'hint': 'synonyms for breathing',\n",
+ " 'clues': [('breathe',\n",
+ " 'reach full flavor by absorbing air and being let to stand after having been uncorked'),\n",
+ " ('pass off', 'expel (gases or odors)'),\n",
+ " ('emit', 'expel (gases or odors)'),\n",
+ " ('rest', \"take a short break from one's activities in order to relax\"),\n",
+ " ('suspire', 'draw air into, and expel out of, the lungs'),\n",
+ " ('take a breather',\n",
+ " \"take a short break from one's activities in order to relax\"),\n",
+ " (\"catch one's breath\",\n",
+ " \"take a short break from one's activities in order to relax\"),\n",
+ " ('respire', 'draw air into, and expel out of, the lungs')]},\n",
+ " {'answer': 'breeding',\n",
+ " 'hint': 'synonyms for breeding',\n",
+ " 'clues': [('multiply', 'have young (animals) or reproduce (organisms)'),\n",
+ " ('breed', 'call forth'),\n",
+ " ('cover', 'copulate with a female, used especially of horses'),\n",
+ " ('engender', 'call forth'),\n",
+ " ('spawn', 'call forth')]},\n",
+ " {'answer': 'bristled',\n",
+ " 'hint': 'synonyms for bristled',\n",
+ " 'clues': [('burst', 'be in a state of movement or action'),\n",
+ " ('stand up', 'rise up as in fear'),\n",
+ " ('uprise', 'rise up as in fear'),\n",
+ " ('bristle', 'have or be thickly covered with or as if with bristles'),\n",
+ " ('abound', 'be in a state of movement or action')]},\n",
+ " {'answer': 'broke',\n",
+ " 'hint': 'synonyms for broke',\n",
+ " 'clues': [('break',\n",
+ " 'fail to agree with; be in violation of; as of rules or patterns'),\n",
+ " ('go against',\n",
+ " 'fail to agree with; be in violation of; as of rules or patterns'),\n",
+ " ('recrudesce', 'happen'),\n",
+ " ('break away', 'move away or escape suddenly'),\n",
+ " ('break out', 'move away or escape suddenly'),\n",
+ " ('dampen', 'lessen in force or effect'),\n",
+ " ('erupt',\n",
+ " 'force out or release suddenly and often violently something pent up'),\n",
+ " ('break up', 'destroy the completeness of a set of related items'),\n",
+ " ('founder', 'break down, literally or metaphorically'),\n",
+ " ('smash', 'reduce to bankruptcy'),\n",
+ " ('breach', 'act in disregard of laws, rules, contracts, or promises'),\n",
+ " ('bust', 'ruin completely'),\n",
+ " ('infract', 'act in disregard of laws, rules, contracts, or promises'),\n",
+ " ('let out',\n",
+ " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n",
+ " ('give out', 'stop operating or functioning'),\n",
+ " ('soften', 'lessen in force or effect'),\n",
+ " ('break-dance', 'do a break dance'),\n",
+ " ('separate', 'become separated into pieces or fragments'),\n",
+ " ('conk out', 'stop operating or functioning'),\n",
+ " ('go', 'stop operating or functioning'),\n",
+ " ('break off', 'prevent completion'),\n",
+ " ('fall in', 'break down, literally or metaphorically'),\n",
+ " ('go bad', 'stop operating or functioning'),\n",
+ " ('collapse', 'break down, literally or metaphorically'),\n",
+ " ('violate',\n",
+ " 'fail to agree with; be in violation of; as of rules or patterns'),\n",
+ " ('intermit', 'cease an action temporarily'),\n",
+ " ('ruin', 'reduce to bankruptcy'),\n",
+ " ('transgress', 'act in disregard of laws, rules, contracts, or promises'),\n",
+ " ('part', 'discontinue an association or relation; go different ways'),\n",
+ " ('discontinue', 'prevent completion'),\n",
+ " ('snap off', 'break a piece from a whole'),\n",
+ " ('break in',\n",
+ " \"enter someone's (virtual or real) property in an unauthorized manner, usually with the intent to steal or commit a violent act\"),\n",
+ " ('check', 'become fractured; break or crack on the surface only'),\n",
+ " ('divulge',\n",
+ " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n",
+ " ('fall apart', 'become separated into pieces or fragments'),\n",
+ " ('offend', 'act in disregard of laws, rules, contracts, or promises'),\n",
+ " ('split up', 'discontinue an association or relation; go different ways'),\n",
+ " ('demote', 'assign to a lower position; reduce in rank'),\n",
+ " ('relegate', 'assign to a lower position; reduce in rank'),\n",
+ " ('interrupt', 'terminate'),\n",
+ " ('bump', 'assign to a lower position; reduce in rank'),\n",
+ " ('break down', 'stop operating or functioning'),\n",
+ " ('wear out', 'go to pieces'),\n",
+ " ('develop', 'happen'),\n",
+ " ('discover',\n",
+ " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n",
+ " ('let on',\n",
+ " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n",
+ " ('disclose',\n",
+ " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n",
+ " ('give way', 'break down, literally or metaphorically'),\n",
+ " ('weaken', 'lessen in force or effect'),\n",
+ " ('cave in', 'break down, literally or metaphorically'),\n",
+ " ('come apart', 'become separated into pieces or fragments'),\n",
+ " ('die', 'stop operating or functioning'),\n",
+ " ('wear', 'go to pieces'),\n",
+ " ('damp', 'lessen in force or effect'),\n",
+ " ('unwrap',\n",
+ " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n",
+ " ('crack', 'become fractured; break or crack on the surface only'),\n",
+ " ('split', 'discontinue an association or relation; go different ways'),\n",
+ " ('get around', 'be released or become known; of news'),\n",
+ " ('fracture', 'fracture a bone of'),\n",
+ " ('stop', 'prevent completion'),\n",
+ " ('better', 'surpass in excellence'),\n",
+ " ('give', 'break down, literally or metaphorically'),\n",
+ " ('kick downstairs', 'assign to a lower position; reduce in rank'),\n",
+ " ('bankrupt', 'reduce to bankruptcy'),\n",
+ " ('pause', 'cease an action temporarily'),\n",
+ " ('fail', 'stop operating or functioning'),\n",
+ " ('bring out',\n",
+ " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n",
+ " ('reveal',\n",
+ " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n",
+ " ('expose',\n",
+ " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret')]},\n",
+ " {'answer': 'broken',\n",
+ " 'hint': 'synonyms for broken',\n",
+ " 'clues': [('break',\n",
+ " 'fail to agree with; be in violation of; as of rules or patterns'),\n",
+ " ('go against',\n",
+ " 'fail to agree with; be in violation of; as of rules or patterns'),\n",
+ " ('recrudesce', 'happen'),\n",
+ " ('break away', 'move away or escape suddenly'),\n",
+ " ('break out', 'move away or escape suddenly'),\n",
+ " ('dampen', 'lessen in force or effect'),\n",
+ " ('erupt',\n",
+ " 'force out or release suddenly and often violently something pent up'),\n",
+ " ('break up', 'destroy the completeness of a set of related items'),\n",
+ " ('founder', 'break down, literally or metaphorically'),\n",
+ " ('smash', 'reduce to bankruptcy'),\n",
+ " ('breach', 'act in disregard of laws, rules, contracts, or promises'),\n",
+ " ('bust', 'ruin completely'),\n",
+ " ('infract', 'act in disregard of laws, rules, contracts, or promises'),\n",
+ " ('let out',\n",
+ " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n",
+ " ('give out', 'stop operating or functioning'),\n",
+ " ('soften', 'lessen in force or effect'),\n",
+ " ('break-dance', 'do a break dance'),\n",
+ " ('separate', 'become separated into pieces or fragments'),\n",
+ " ('conk out', 'stop operating or functioning'),\n",
+ " ('go', 'stop operating or functioning'),\n",
+ " ('break off', 'prevent completion'),\n",
+ " ('fall in', 'break down, literally or metaphorically'),\n",
+ " ('go bad', 'stop operating or functioning'),\n",
+ " ('collapse', 'break down, literally or metaphorically'),\n",
+ " ('violate',\n",
+ " 'fail to agree with; be in violation of; as of rules or patterns'),\n",
+ " ('intermit', 'cease an action temporarily'),\n",
+ " ('ruin', 'reduce to bankruptcy'),\n",
+ " ('transgress', 'act in disregard of laws, rules, contracts, or promises'),\n",
+ " ('part', 'discontinue an association or relation; go different ways'),\n",
+ " ('discontinue', 'prevent completion'),\n",
+ " ('snap off', 'break a piece from a whole'),\n",
+ " ('break in',\n",
+ " \"enter someone's (virtual or real) property in an unauthorized manner, usually with the intent to steal or commit a violent act\"),\n",
+ " ('check', 'become fractured; break or crack on the surface only'),\n",
+ " ('divulge',\n",
+ " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n",
+ " ('fall apart', 'become separated into pieces or fragments'),\n",
+ " ('offend', 'act in disregard of laws, rules, contracts, or promises'),\n",
+ " ('split up', 'discontinue an association or relation; go different ways'),\n",
+ " ('demote', 'assign to a lower position; reduce in rank'),\n",
+ " ('relegate', 'assign to a lower position; reduce in rank'),\n",
+ " ('interrupt', 'terminate'),\n",
+ " ('bump', 'assign to a lower position; reduce in rank'),\n",
+ " ('break down', 'stop operating or functioning'),\n",
+ " ('wear out', 'go to pieces'),\n",
+ " ('develop', 'happen'),\n",
+ " ('discover',\n",
+ " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n",
+ " ('let on',\n",
+ " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n",
+ " ('disclose',\n",
+ " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n",
+ " ('give way', 'break down, literally or metaphorically'),\n",
+ " ('weaken', 'lessen in force or effect'),\n",
+ " ('cave in', 'break down, literally or metaphorically'),\n",
+ " ('come apart', 'become separated into pieces or fragments'),\n",
+ " ('die', 'stop operating or functioning'),\n",
+ " ('wear', 'go to pieces'),\n",
+ " ('damp', 'lessen in force or effect'),\n",
+ " ('unwrap',\n",
+ " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n",
+ " ('crack', 'become fractured; break or crack on the surface only'),\n",
+ " ('split', 'discontinue an association or relation; go different ways'),\n",
+ " ('get around', 'be released or become known; of news'),\n",
+ " ('fracture', 'fracture a bone of'),\n",
+ " ('stop', 'prevent completion'),\n",
+ " ('better', 'surpass in excellence'),\n",
+ " ('give', 'break down, literally or metaphorically'),\n",
+ " ('kick downstairs', 'assign to a lower position; reduce in rank'),\n",
+ " ('bankrupt', 'reduce to bankruptcy'),\n",
+ " ('pause', 'cease an action temporarily'),\n",
+ " ('fail', 'stop operating or functioning'),\n",
+ " ('bring out',\n",
+ " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n",
+ " ('reveal',\n",
+ " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n",
+ " ('expose',\n",
+ " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret')]},\n",
+ " {'answer': 'brooding',\n",
+ " 'hint': 'synonyms for brooding',\n",
+ " 'clues': [('sulk', \"be in a huff and display one's displeasure\"),\n",
+ " ('cover', 'sit on (eggs)'),\n",
+ " ('brood', 'hang over, as of something threatening, dark, or menacing'),\n",
+ " ('grizzle', 'be in a huff; be silent or sullen'),\n",
+ " ('stew', 'be in a huff; be silent or sullen'),\n",
+ " ('hatch', 'sit on (eggs)'),\n",
+ " ('loom', 'hang over, as of something threatening, dark, or menacing'),\n",
+ " ('pout', \"be in a huff and display one's displeasure\"),\n",
+ " ('dwell', 'think moodily or anxiously about something'),\n",
+ " ('incubate', 'sit on (eggs)'),\n",
+ " ('hover', 'hang over, as of something threatening, dark, or menacing'),\n",
+ " ('bulk large',\n",
+ " 'hang over, as of something threatening, dark, or menacing')]},\n",
+ " {'answer': 'bruising',\n",
+ " 'hint': 'synonyms for bruising',\n",
+ " 'clues': [('spite', 'hurt the feelings of'),\n",
+ " ('contuse', 'injure the underlying soft tissue or bone of'),\n",
+ " ('injure', 'hurt the feelings of'),\n",
+ " ('bruise', 'damage (plant tissue) by abrasion or pressure'),\n",
+ " ('wound', 'hurt the feelings of'),\n",
+ " ('offend', 'hurt the feelings of'),\n",
+ " ('hurt', 'hurt the feelings of')]},\n",
+ " {'answer': 'bubbling',\n",
+ " 'hint': 'synonyms for bubbling',\n",
+ " 'clues': [('bubble', 'form, produce, or emit bubbles'),\n",
+ " ('burble', 'flow in an irregular current with a bubbling noise'),\n",
+ " ('gurgle', 'flow in an irregular current with a bubbling noise'),\n",
+ " ('ripple', 'flow in an irregular current with a bubbling noise'),\n",
+ " ('babble', 'flow in an irregular current with a bubbling noise'),\n",
+ " ('belch', 'expel gas from the stomach'),\n",
+ " ('burp', 'expel gas from the stomach'),\n",
+ " ('eruct', 'expel gas from the stomach'),\n",
+ " ('guggle', 'flow in an irregular current with a bubbling noise')]},\n",
+ " {'answer': 'buffeted',\n",
+ " 'hint': 'synonyms for buffeted',\n",
+ " 'clues': [('buffet', 'strike, beat repeatedly'),\n",
+ " ('buff', 'strike, beat repeatedly'),\n",
+ " ('batter', 'strike against forcefully'),\n",
+ " ('knock about', 'strike against forcefully')]},\n",
+ " {'answer': 'bugged',\n",
+ " 'hint': 'synonyms for bugged',\n",
+ " 'clues': [('bug', 'tap a telephone or telegraph wire to get information'),\n",
+ " ('tease', 'annoy persistently'),\n",
+ " ('wiretap', 'tap a telephone or telegraph wire to get information'),\n",
+ " ('pester', 'annoy persistently'),\n",
+ " ('tap', 'tap a telephone or telegraph wire to get information'),\n",
+ " ('intercept', 'tap a telephone or telegraph wire to get information'),\n",
+ " ('beleaguer', 'annoy persistently'),\n",
+ " ('badger', 'annoy persistently')]},\n",
+ " {'answer': 'built',\n",
+ " 'hint': 'synonyms for built',\n",
+ " 'clues': [('build up', 'form or accumulate steadily'),\n",
+ " ('build', 'develop and grow'),\n",
+ " ('establish', 'build or establish something abstract'),\n",
+ " ('progress', 'form or accumulate steadily'),\n",
+ " ('work up', 'form or accumulate steadily'),\n",
+ " ('ramp up', 'bolster or strengthen'),\n",
+ " ('construct', 'make by combining materials and parts'),\n",
+ " ('make', 'make by combining materials and parts')]},\n",
+ " {'answer': 'bulging',\n",
+ " 'hint': 'synonyms for bulging',\n",
+ " 'clues': [('pouch', 'swell or protrude outwards'),\n",
+ " ('bag',\n",
+ " 'bulge out; form a bulge outward, or be so full as to appear to bulge'),\n",
+ " ('come out', 'bulge outward'),\n",
+ " ('bulge out', 'bulge outward'),\n",
+ " ('bulge', 'bulge outward'),\n",
+ " ('pop out', 'bulge outward'),\n",
+ " ('pop', 'bulge outward'),\n",
+ " ('protrude', 'bulge outward'),\n",
+ " ('start', 'bulge outward'),\n",
+ " ('bulk', 'cause to bulge or swell outwards')]},\n",
+ " {'answer': 'bully',\n",
+ " 'hint': 'synonyms for bully',\n",
+ " 'clues': [('bullyrag', 'be bossy towards'),\n",
+ " ('browbeat',\n",
+ " 'discourage or frighten with threats or a domineering manner; intimidate'),\n",
+ " ('push around', 'be bossy towards'),\n",
+ " ('strong-arm', 'be bossy towards'),\n",
+ " ('hector', 'be bossy towards'),\n",
+ " ('swagger',\n",
+ " 'discourage or frighten with threats or a domineering manner; intimidate'),\n",
+ " ('boss around', 'be bossy towards')]},\n",
+ " {'answer': 'bullying',\n",
+ " 'hint': 'synonyms for bullying',\n",
+ " 'clues': [('bully', 'be bossy towards'),\n",
+ " ('bullyrag', 'be bossy towards'),\n",
+ " ('browbeat',\n",
+ " 'discourage or frighten with threats or a domineering manner; intimidate'),\n",
+ " ('push around', 'be bossy towards'),\n",
+ " ('strong-arm', 'be bossy towards'),\n",
+ " ('hector', 'be bossy towards'),\n",
+ " ('swagger',\n",
+ " 'discourage or frighten with threats or a domineering manner; intimidate'),\n",
+ " ('boss around', 'be bossy towards')]},\n",
+ " {'answer': 'bum',\n",
+ " 'hint': 'synonyms for bum',\n",
+ " 'clues': [('loll', 'be lazy or idle'),\n",
+ " ('loll around', 'be lazy or idle'),\n",
+ " ('frig around', 'be lazy or idle'),\n",
+ " ('arse around', 'be lazy or idle'),\n",
+ " ('mooch', 'ask for and get free; be a parasite'),\n",
+ " ('sponge', 'ask for and get free; be a parasite'),\n",
+ " ('loaf', 'be lazy or idle'),\n",
+ " ('bum about', 'be lazy or idle'),\n",
+ " ('arse about', 'be lazy or idle'),\n",
+ " ('fuck off', 'be lazy or idle'),\n",
+ " ('lounge about', 'be lazy or idle'),\n",
+ " (\"waste one's time\", 'be lazy or idle'),\n",
+ " ('bum around', 'be lazy or idle'),\n",
+ " ('cadge', 'ask for and get free; be a parasite'),\n",
+ " ('grub', 'ask for and get free; be a parasite'),\n",
+ " ('lounge around', 'be lazy or idle')]},\n",
+ " {'answer': 'bumbling',\n",
+ " 'hint': 'synonyms for bumbling',\n",
+ " 'clues': [('muck up', 'make a mess of, destroy or ruin'),\n",
+ " ('fumble', 'make a mess of, destroy or ruin'),\n",
+ " ('bungle', 'make a mess of, destroy or ruin'),\n",
+ " ('bollix', 'make a mess of, destroy or ruin'),\n",
+ " ('stammer', 'speak haltingly'),\n",
+ " ('ball up', 'make a mess of, destroy or ruin'),\n",
+ " ('screw up', 'make a mess of, destroy or ruin'),\n",
+ " ('botch up', 'make a mess of, destroy or ruin'),\n",
+ " ('spoil', 'make a mess of, destroy or ruin'),\n",
+ " ('stumble', 'walk unsteadily'),\n",
+ " ('stutter', 'speak haltingly'),\n",
+ " ('bumble', 'make a mess of, destroy or ruin'),\n",
+ " ('mishandle', 'make a mess of, destroy or ruin'),\n",
+ " ('foul up', 'make a mess of, destroy or ruin'),\n",
+ " ('muff', 'make a mess of, destroy or ruin'),\n",
+ " ('louse up', 'make a mess of, destroy or ruin'),\n",
+ " ('fluff', 'make a mess of, destroy or ruin'),\n",
+ " ('bodge', 'make a mess of, destroy or ruin'),\n",
+ " ('falter', 'speak haltingly'),\n",
+ " ('bollocks up', 'make a mess of, destroy or ruin'),\n",
+ " ('bollocks', 'make a mess of, destroy or ruin'),\n",
+ " ('blow', 'make a mess of, destroy or ruin'),\n",
+ " ('botch', 'make a mess of, destroy or ruin'),\n",
+ " ('flub', 'make a mess of, destroy or ruin'),\n",
+ " ('mess up', 'make a mess of, destroy or ruin'),\n",
+ " ('bollix up', 'make a mess of, destroy or ruin'),\n",
+ " ('bobble', 'make a mess of, destroy or ruin')]},\n",
+ " {'answer': 'bungled',\n",
+ " 'hint': 'synonyms for bungled',\n",
+ " 'clues': [('muck up', 'make a mess of, destroy or ruin'),\n",
+ " ('fumble', 'make a mess of, destroy or ruin'),\n",
+ " ('bungle', 'make a mess of, destroy or ruin'),\n",
+ " ('bollix', 'make a mess of, destroy or ruin'),\n",
+ " ('ball up', 'make a mess of, destroy or ruin'),\n",
+ " ('screw up', 'make a mess of, destroy or ruin'),\n",
+ " ('botch up', 'make a mess of, destroy or ruin'),\n",
+ " ('spoil', 'make a mess of, destroy or ruin'),\n",
+ " ('bumble', 'make a mess of, destroy or ruin'),\n",
+ " ('mishandle', 'make a mess of, destroy or ruin'),\n",
+ " ('foul up', 'make a mess of, destroy or ruin'),\n",
+ " ('muff', 'make a mess of, destroy or ruin'),\n",
+ " ('louse up', 'make a mess of, destroy or ruin'),\n",
+ " ('fluff', 'make a mess of, destroy or ruin'),\n",
+ " ('bodge', 'make a mess of, destroy or ruin'),\n",
+ " ('bollocks up', 'make a mess of, destroy or ruin'),\n",
+ " ('bollocks', 'make a mess of, destroy or ruin'),\n",
+ " ('blow', 'make a mess of, destroy or ruin'),\n",
+ " ('botch', 'make a mess of, destroy or ruin'),\n",
+ " ('flub', 'make a mess of, destroy or ruin'),\n",
+ " ('mess up', 'make a mess of, destroy or ruin'),\n",
+ " ('bollix up', 'make a mess of, destroy or ruin'),\n",
+ " ('bobble', 'make a mess of, destroy or ruin')]},\n",
+ " {'answer': 'bungling',\n",
+ " 'hint': 'synonyms for bungling',\n",
+ " 'clues': [('muck up', 'make a mess of, destroy or ruin'),\n",
+ " ('fumble', 'make a mess of, destroy or ruin'),\n",
+ " ('bungle', 'make a mess of, destroy or ruin'),\n",
+ " ('bollix', 'make a mess of, destroy or ruin'),\n",
+ " ('ball up', 'make a mess of, destroy or ruin'),\n",
+ " ('screw up', 'make a mess of, destroy or ruin'),\n",
+ " ('botch up', 'make a mess of, destroy or ruin'),\n",
+ " ('spoil', 'make a mess of, destroy or ruin'),\n",
+ " ('bumble', 'make a mess of, destroy or ruin'),\n",
+ " ('mishandle', 'make a mess of, destroy or ruin'),\n",
+ " ('foul up', 'make a mess of, destroy or ruin'),\n",
+ " ('muff', 'make a mess of, destroy or ruin'),\n",
+ " ('louse up', 'make a mess of, destroy or ruin'),\n",
+ " ('fluff', 'make a mess of, destroy or ruin'),\n",
+ " ('bodge', 'make a mess of, destroy or ruin'),\n",
+ " ('bollocks up', 'make a mess of, destroy or ruin'),\n",
+ " ('bollocks', 'make a mess of, destroy or ruin'),\n",
+ " ('blow', 'make a mess of, destroy or ruin'),\n",
+ " ('botch', 'make a mess of, destroy or ruin'),\n",
+ " ('flub', 'make a mess of, destroy or ruin'),\n",
+ " ('mess up', 'make a mess of, destroy or ruin'),\n",
+ " ('bollix up', 'make a mess of, destroy or ruin'),\n",
+ " ('bobble', 'make a mess of, destroy or ruin')]},\n",
+ " {'answer': 'burbling',\n",
+ " 'hint': 'synonyms for burbling',\n",
+ " 'clues': [('burble', 'flow in an irregular current with a bubbling noise'),\n",
+ " ('gurgle', 'flow in an irregular current with a bubbling noise'),\n",
+ " ('bubble', 'flow in an irregular current with a bubbling noise'),\n",
+ " ('guggle', 'flow in an irregular current with a bubbling noise'),\n",
+ " ('ripple', 'flow in an irregular current with a bubbling noise'),\n",
+ " ('babble', 'flow in an irregular current with a bubbling noise')]},\n",
+ " {'answer': 'burdened',\n",
+ " 'hint': 'synonyms for burdened',\n",
+ " 'clues': [('weight', 'weight down with a load'),\n",
+ " ('burthen', 'weight down with a load'),\n",
+ " ('burden', 'impose a task upon, assign a responsibility to'),\n",
+ " ('charge', 'impose a task upon, assign a responsibility to'),\n",
+ " ('saddle', 'impose a task upon, assign a responsibility to'),\n",
+ " ('weight down', 'weight down with a load')]},\n",
+ " {'answer': 'buried',\n",
+ " 'hint': 'synonyms for buried',\n",
+ " 'clues': [('sink', 'embed deeply'),\n",
+ " ('immerse', 'enclose or envelop completely, as if by swallowing'),\n",
+ " ('entomb', 'place in a grave or tomb'),\n",
+ " ('inter', 'place in a grave or tomb'),\n",
+ " ('inhume', 'place in a grave or tomb'),\n",
+ " ('bury', 'place in the earth and cover with soil'),\n",
+ " ('eat up', 'enclose or envelop completely, as if by swallowing'),\n",
+ " ('lay to rest', 'place in a grave or tomb'),\n",
+ " ('forget', 'dismiss from the mind; stop remembering'),\n",
+ " ('swallow', 'enclose or envelop completely, as if by swallowing'),\n",
+ " ('swallow up', 'enclose or envelop completely, as if by swallowing')]},\n",
+ " {'answer': 'burned',\n",
+ " 'hint': 'synonyms for burned',\n",
+ " 'clues': [('cauterise',\n",
+ " 'burn, sear, or freeze (tissue) using a hot iron or electric current or a caustic agent'),\n",
+ " ('burn',\n",
+ " 'burn, sear, or freeze (tissue) using a hot iron or electric current or a caustic agent'),\n",
+ " ('glow', 'shine intensely, as if with heat'),\n",
+ " ('burn off', 'use up (energy)'),\n",
+ " ('combust', 'cause to burn or combust'),\n",
+ " ('fire', 'destroy by fire'),\n",
+ " ('bite', 'cause a sharp or stinging pain or discomfort'),\n",
+ " ('burn up', 'use up (energy)'),\n",
+ " ('sting', 'cause a sharp or stinging pain or discomfort'),\n",
+ " ('sunburn', 'get a sunburn by overexposure to the sun'),\n",
+ " ('incinerate', 'cause to undergo combustion'),\n",
+ " ('cut', 'create by duplicating data'),\n",
+ " ('burn down', 'destroy by fire')]},\n",
+ " {'answer': 'burning',\n",
+ " 'hint': 'synonyms for burning',\n",
+ " 'clues': [('cauterise',\n",
+ " 'burn, sear, or freeze (tissue) using a hot iron or electric current or a caustic agent'),\n",
+ " ('burn',\n",
+ " 'burn, sear, or freeze (tissue) using a hot iron or electric current or a caustic agent'),\n",
+ " ('glow', 'shine intensely, as if with heat'),\n",
+ " ('burn off', 'use up (energy)'),\n",
+ " ('combust', 'cause to burn or combust'),\n",
+ " ('fire', 'destroy by fire'),\n",
+ " ('bite', 'cause a sharp or stinging pain or discomfort'),\n",
+ " ('burn up', 'use up (energy)'),\n",
+ " ('sting', 'cause a sharp or stinging pain or discomfort'),\n",
+ " ('sunburn', 'get a sunburn by overexposure to the sun'),\n",
+ " ('incinerate', 'cause to undergo combustion'),\n",
+ " ('cut', 'create by duplicating data'),\n",
+ " ('burn down', 'destroy by fire')]},\n",
+ " {'answer': 'burnt',\n",
+ " 'hint': 'synonyms for burnt',\n",
+ " 'clues': [('cauterise',\n",
+ " 'burn, sear, or freeze (tissue) using a hot iron or electric current or a caustic agent'),\n",
+ " ('burn',\n",
+ " 'burn, sear, or freeze (tissue) using a hot iron or electric current or a caustic agent'),\n",
+ " ('glow', 'shine intensely, as if with heat'),\n",
+ " ('burn off', 'use up (energy)'),\n",
+ " ('combust', 'cause to burn or combust'),\n",
+ " ('fire', 'destroy by fire'),\n",
+ " ('bite', 'cause a sharp or stinging pain or discomfort'),\n",
+ " ('burn up', 'use up (energy)'),\n",
+ " ('sting', 'cause a sharp or stinging pain or discomfort'),\n",
+ " ('sunburn', 'get a sunburn by overexposure to the sun'),\n",
+ " ('incinerate', 'cause to undergo combustion'),\n",
+ " ('cut', 'create by duplicating data'),\n",
+ " ('burn down', 'destroy by fire')]},\n",
+ " {'answer': 'bushwhacking',\n",
+ " 'hint': 'synonyms for bushwhacking',\n",
+ " 'clues': [('lurk', 'wait in hiding to attack'),\n",
+ " ('lie in wait', 'wait in hiding to attack'),\n",
+ " ('waylay', 'wait in hiding to attack'),\n",
+ " ('bushwhack', 'wait in hiding to attack'),\n",
+ " ('scupper', 'wait in hiding to attack'),\n",
+ " ('ambush', 'wait in hiding to attack'),\n",
+ " ('ambuscade', 'wait in hiding to attack')]},\n",
+ " {'answer': 'bust',\n",
+ " 'hint': 'synonyms for bust',\n",
+ " 'clues': [('rupture', 'separate or cause to separate abruptly'),\n",
+ " ('fall apart', 'go to pieces'),\n",
+ " ('wear', 'go to pieces'),\n",
+ " ('tear', 'separate or cause to separate abruptly'),\n",
+ " ('burst', 'break open or apart suddenly and forcefully'),\n",
+ " ('break', 'ruin completely'),\n",
+ " ('snap', 'separate or cause to separate abruptly'),\n",
+ " ('raid', 'search without warning, make a sudden surprise attack on'),\n",
+ " ('wear out', 'go to pieces')]},\n",
+ " {'answer': 'busted',\n",
+ " 'hint': 'synonyms for busted',\n",
+ " 'clues': [('rupture', 'separate or cause to separate abruptly'),\n",
+ " ('fall apart', 'go to pieces'),\n",
+ " ('wear', 'go to pieces'),\n",
+ " ('tear', 'separate or cause to separate abruptly'),\n",
+ " ('bust', 'go to pieces'),\n",
+ " ('break', 'ruin completely'),\n",
+ " ('snap', 'separate or cause to separate abruptly'),\n",
+ " ('raid', 'search without warning, make a sudden surprise attack on'),\n",
+ " ('wear out', 'go to pieces')]},\n",
+ " {'answer': 'buzzing',\n",
+ " 'hint': 'synonyms for buzzing',\n",
+ " 'clues': [('buzz', 'call with a buzzer'),\n",
+ " ('bombinate', 'make a buzzing sound'),\n",
+ " ('hum', 'be noisy with activity'),\n",
+ " ('seethe', 'be noisy with activity')]},\n",
+ " {'answer': 'bypast',\n",
+ " 'hint': 'synonyms for bypast',\n",
+ " 'clues': [('bypass', 'avoid something unpleasant or laborious'),\n",
+ " ('get around', 'avoid something unpleasant or laborious'),\n",
+ " ('short-circuit', 'avoid something unpleasant or laborious'),\n",
+ " ('go around', 'avoid something unpleasant or laborious')]},\n",
+ " {'answer': 'calculated',\n",
+ " 'hint': 'synonyms for calculated',\n",
+ " 'clues': [('forecast', 'predict in advance'),\n",
+ " ('direct',\n",
+ " 'specifically design a product, event, or activity for a certain public'),\n",
+ " ('count on', 'judge to be probable'),\n",
+ " ('estimate', 'judge to be probable'),\n",
+ " ('aim',\n",
+ " 'specifically design a product, event, or activity for a certain public'),\n",
+ " ('calculate',\n",
+ " 'specifically design a product, event, or activity for a certain public'),\n",
+ " ('account', 'keep an account of'),\n",
+ " ('work out', 'make a mathematical calculation or computation'),\n",
+ " ('bet', 'have faith or confidence in'),\n",
+ " ('compute', 'make a mathematical calculation or computation'),\n",
+ " ('reckon', 'make a mathematical calculation or computation'),\n",
+ " ('count', 'have faith or confidence in'),\n",
+ " ('figure', 'make a mathematical calculation or computation'),\n",
+ " ('look', 'have faith or confidence in'),\n",
+ " ('depend', 'have faith or confidence in'),\n",
+ " ('cypher', 'make a mathematical calculation or computation'),\n",
+ " ('cipher', 'make a mathematical calculation or computation')]},\n",
+ " {'answer': 'calculating',\n",
+ " 'hint': 'synonyms for calculating',\n",
+ " 'clues': [('forecast', 'predict in advance'),\n",
+ " ('direct',\n",
+ " 'specifically design a product, event, or activity for a certain public'),\n",
+ " ('count on', 'judge to be probable'),\n",
+ " ('estimate', 'judge to be probable'),\n",
+ " ('aim',\n",
+ " 'specifically design a product, event, or activity for a certain public'),\n",
+ " ('calculate',\n",
+ " 'specifically design a product, event, or activity for a certain public'),\n",
+ " ('account', 'keep an account of'),\n",
+ " ('work out', 'make a mathematical calculation or computation'),\n",
+ " ('bet', 'have faith or confidence in'),\n",
+ " ('compute', 'make a mathematical calculation or computation'),\n",
+ " ('reckon', 'make a mathematical calculation or computation'),\n",
+ " ('count', 'have faith or confidence in'),\n",
+ " ('figure', 'make a mathematical calculation or computation'),\n",
+ " ('look', 'have faith or confidence in'),\n",
+ " ('depend', 'have faith or confidence in'),\n",
+ " ('cypher', 'make a mathematical calculation or computation'),\n",
+ " ('cipher', 'make a mathematical calculation or computation')]},\n",
+ " {'answer': 'calm',\n",
+ " 'hint': 'synonyms for calm',\n",
+ " 'clues': [('calm down',\n",
+ " 'become quiet or calm, especially after a state of agitation'),\n",
+ " ('steady', 'make steady'),\n",
+ " ('sedate', 'cause to be calm or quiet as by administering a sedative to'),\n",
+ " ('still', 'make calm or still'),\n",
+ " ('quieten', 'make calm or still'),\n",
+ " ('cool it',\n",
+ " 'become quiet or calm, especially after a state of agitation'),\n",
+ " ('tranquillise',\n",
+ " 'cause to be calm or quiet as by administering a sedative to'),\n",
+ " ('chill out',\n",
+ " 'become quiet or calm, especially after a state of agitation'),\n",
+ " ('quiet', 'make calm or still'),\n",
+ " ('cool off',\n",
+ " 'become quiet or calm, especially after a state of agitation'),\n",
+ " ('lull', 'make calm or still'),\n",
+ " ('settle down',\n",
+ " 'become quiet or calm, especially after a state of agitation'),\n",
+ " ('simmer down',\n",
+ " 'become quiet or calm, especially after a state of agitation'),\n",
+ " ('becalm', 'make steady')]},\n",
+ " {'answer': 'camp',\n",
+ " 'hint': 'synonyms for camp',\n",
+ " 'clues': [('encamp', 'live in or as if in a tent'),\n",
+ " ('camp out', 'live in or as if in a tent'),\n",
+ " ('camp down', 'establish or set up a camp'),\n",
+ " ('tent', 'live in or as if in a tent'),\n",
+ " ('bivouac', 'live in or as if in a tent')]},\n",
+ " {'answer': 'cancelled',\n",
+ " 'hint': 'synonyms for cancelled',\n",
+ " 'clues': [('delete', 'remove or make invisible'),\n",
+ " ('scrub', 'postpone indefinitely or annul something that was scheduled'),\n",
+ " ('call off',\n",
+ " 'postpone indefinitely or annul something that was scheduled'),\n",
+ " ('cancel', 'make invalid for use'),\n",
+ " ('invalidate', 'make invalid for use'),\n",
+ " ('strike down', 'declare null and void; make ineffective'),\n",
+ " ('scratch',\n",
+ " 'postpone indefinitely or annul something that was scheduled'),\n",
+ " ('offset', 'make up for'),\n",
+ " ('set off', 'make up for')]},\n",
+ " {'answer': 'canned',\n",
+ " 'hint': 'synonyms for canned',\n",
+ " 'clues': [('fire',\n",
+ " 'terminate the employment of; discharge from an office or position'),\n",
+ " ('force out',\n",
+ " 'terminate the employment of; discharge from an office or position'),\n",
+ " ('terminate',\n",
+ " 'terminate the employment of; discharge from an office or position'),\n",
+ " ('dismiss',\n",
+ " 'terminate the employment of; discharge from an office or position'),\n",
+ " ('send away',\n",
+ " 'terminate the employment of; discharge from an office or position'),\n",
+ " ('tin', 'preserve in a can or tin'),\n",
+ " ('put up', 'preserve in a can or tin'),\n",
+ " ('give the sack',\n",
+ " 'terminate the employment of; discharge from an office or position'),\n",
+ " ('sack',\n",
+ " 'terminate the employment of; discharge from an office or position'),\n",
+ " ('give the axe',\n",
+ " 'terminate the employment of; discharge from an office or position'),\n",
+ " ('can',\n",
+ " 'terminate the employment of; discharge from an office or position'),\n",
+ " ('give notice',\n",
+ " 'terminate the employment of; discharge from an office or position'),\n",
+ " ('displace',\n",
+ " 'terminate the employment of; discharge from an office or position')]},\n",
+ " {'answer': 'canted',\n",
+ " 'hint': 'synonyms for canted',\n",
+ " 'clues': [('tilt', 'heel over'),\n",
+ " ('pitch', 'heel over'),\n",
+ " ('cant over', 'heel over'),\n",
+ " ('slant', 'heel over'),\n",
+ " ('cant', 'heel over')]},\n",
+ " {'answer': 'captivated',\n",
+ " 'hint': 'synonyms for captivated',\n",
+ " 'clues': [('trance', 'attract; cause to be enamored'),\n",
+ " ('bewitch', 'attract; cause to be enamored'),\n",
+ " ('becharm', 'attract; cause to be enamored'),\n",
+ " ('enchant', 'attract; cause to be enamored'),\n",
+ " ('enamour', 'attract; cause to be enamored'),\n",
+ " ('fascinate', 'attract; cause to be enamored'),\n",
+ " ('charm', 'attract; cause to be enamored'),\n",
+ " ('beguile', 'attract; cause to be enamored'),\n",
+ " ('capture', 'attract; cause to be enamored'),\n",
+ " ('catch', 'attract; cause to be enamored'),\n",
+ " ('captivate', 'attract; cause to be enamored')]},\n",
+ " {'answer': 'captivating',\n",
+ " 'hint': 'synonyms for captivating',\n",
+ " 'clues': [('trance', 'attract; cause to be enamored'),\n",
+ " ('bewitch', 'attract; cause to be enamored'),\n",
+ " ('becharm', 'attract; cause to be enamored'),\n",
+ " ('enchant', 'attract; cause to be enamored'),\n",
+ " ('enamour', 'attract; cause to be enamored'),\n",
+ " ('fascinate', 'attract; cause to be enamored'),\n",
+ " ('charm', 'attract; cause to be enamored'),\n",
+ " ('beguile', 'attract; cause to be enamored'),\n",
+ " ('capture', 'attract; cause to be enamored'),\n",
+ " ('catch', 'attract; cause to be enamored'),\n",
+ " ('captivate', 'attract; cause to be enamored')]},\n",
+ " {'answer': 'caring',\n",
+ " 'hint': 'synonyms for caring',\n",
+ " 'clues': [('care', 'prefer or wish to do something'),\n",
+ " ('give care', 'provide care for'),\n",
+ " ('manage', 'be in charge of, act on, or dispose of'),\n",
+ " ('like', 'prefer or wish to do something'),\n",
+ " ('worry', 'be concerned with'),\n",
+ " ('handle', 'be in charge of, act on, or dispose of'),\n",
+ " ('deal', 'be in charge of, act on, or dispose of'),\n",
+ " ('wish', 'prefer or wish to do something')]},\n",
+ " {'answer': 'castrated',\n",
+ " 'hint': 'synonyms for castrated',\n",
+ " 'clues': [('expurgate',\n",
+ " 'edit by omitting or modifying parts considered indelicate'),\n",
+ " ('castrate', 'remove the testicles of a male animal'),\n",
+ " ('spay', 'remove the ovaries of'),\n",
+ " ('demasculinize', 'remove the testicles of a male animal'),\n",
+ " ('emasculate', 'remove the testicles of a male animal'),\n",
+ " ('alter', 'remove the ovaries of'),\n",
+ " ('shorten', 'edit by omitting or modifying parts considered indelicate'),\n",
+ " ('bowdlerise',\n",
+ " 'edit by omitting or modifying parts considered indelicate'),\n",
+ " ('neuter', 'remove the ovaries of')]},\n",
+ " {'answer': 'catching',\n",
+ " 'hint': 'synonyms for catching',\n",
+ " 'clues': [('catch', 'capture as if by hunting, snaring, or trapping'),\n",
+ " ('trance', 'attract; cause to be enamored'),\n",
+ " ('hitch', 'to hook or entangle'),\n",
+ " ('trip up', 'detect a blunder or misstep'),\n",
+ " ('becharm', 'attract; cause to be enamored'),\n",
+ " ('fascinate', 'attract; cause to be enamored'),\n",
+ " ('take in', 'hear, usually without the knowledge of the speakers'),\n",
+ " ('get', 'succeed in catching or seizing, especially after a chase'),\n",
+ " ('enamor', 'attract; cause to be enamored'),\n",
+ " ('beguile', 'attract; cause to be enamored'),\n",
+ " ('capture', 'attract; cause to be enamored'),\n",
+ " ('see', 'see or watch'),\n",
+ " ('grab', 'take hold of so as to seize or restrain or stop the motion of'),\n",
+ " ('captivate', 'attract; cause to be enamored'),\n",
+ " ('bewitch', 'attract; cause to be enamored'),\n",
+ " ('arrest', 'attract and fix'),\n",
+ " ('take hold of',\n",
+ " 'take hold of so as to seize or restrain or stop the motion of'),\n",
+ " ('charm', 'attract; cause to be enamored'),\n",
+ " ('overtake', 'catch up with and possibly overtake'),\n",
+ " ('overhear', 'hear, usually without the knowledge of the speakers'),\n",
+ " ('enchant', 'attract; cause to be enamored'),\n",
+ " ('catch up with', 'catch up with and possibly overtake'),\n",
+ " ('watch', 'see or watch'),\n",
+ " ('view', 'see or watch'),\n",
+ " ('pick up',\n",
+ " 'perceive with the senses quickly, suddenly, or momentarily')]},\n",
+ " {'answer': 'celebrated',\n",
+ " 'hint': 'synonyms for celebrated',\n",
+ " 'clues': [('observe', 'behave as expected during of holidays or rites'),\n",
+ " ('celebrate', 'behave as expected during of holidays or rites'),\n",
+ " ('lionize', 'assign great social importance to'),\n",
+ " ('keep', 'behave as expected during of holidays or rites'),\n",
+ " ('fete', 'have a celebration')]},\n",
+ " {'answer': 'center',\n",
+ " 'hint': 'synonyms for center',\n",
+ " 'clues': [('pore', \"direct one's attention on something\"),\n",
+ " ('centre', 'move into the center'),\n",
+ " ('revolve about', 'center upon'),\n",
+ " ('revolve around', 'center upon'),\n",
+ " ('concentrate', \"direct one's attention on something\"),\n",
+ " ('focus', \"direct one's attention on something\"),\n",
+ " ('rivet', \"direct one's attention on something\"),\n",
+ " ('focus on', 'center upon'),\n",
+ " ('center on', 'center upon')]},\n",
+ " {'answer': 'centered',\n",
+ " 'hint': 'synonyms for centered',\n",
+ " 'clues': [('pore', \"direct one's attention on something\"),\n",
+ " ('centre', 'move into the center'),\n",
+ " ('revolve about', 'center upon'),\n",
+ " ('center', 'center upon'),\n",
+ " ('revolve around', 'center upon'),\n",
+ " ('concentrate', \"direct one's attention on something\"),\n",
+ " ('focus', \"direct one's attention on something\"),\n",
+ " ('rivet', \"direct one's attention on something\"),\n",
+ " ('focus on', 'center upon'),\n",
+ " ('center on', 'center upon')]},\n",
+ " {'answer': 'certified',\n",
+ " 'hint': 'synonyms for certified',\n",
+ " 'clues': [('licence', 'authorize officially'),\n",
+ " ('certify', 'declare legally insane'),\n",
+ " ('indorse', 'guarantee as meeting a certain standard'),\n",
+ " ('manifest',\n",
+ " \"provide evidence for; stand as proof of; show by one's behavior, attitude, or external attributes\"),\n",
+ " ('demonstrate',\n",
+ " \"provide evidence for; stand as proof of; show by one's behavior, attitude, or external attributes\"),\n",
+ " ('attest',\n",
+ " \"provide evidence for; stand as proof of; show by one's behavior, attitude, or external attributes\"),\n",
+ " ('evidence',\n",
+ " \"provide evidence for; stand as proof of; show by one's behavior, attitude, or external attributes\")]},\n",
+ " {'answer': 'chafed',\n",
+ " 'hint': 'synonyms for chafed',\n",
+ " 'clues': [('rub', 'cause friction'),\n",
+ " ('chafe', 'become or make sore by or as if by rubbing'),\n",
+ " ('gravel',\n",
+ " 'cause annoyance in; disturb, especially by minor irritations'),\n",
+ " ('gall', 'become or make sore by or as if by rubbing'),\n",
+ " ('get to',\n",
+ " 'cause annoyance in; disturb, especially by minor irritations'),\n",
+ " ('vex', 'cause annoyance in; disturb, especially by minor irritations'),\n",
+ " ('irritate',\n",
+ " 'cause annoyance in; disturb, especially by minor irritations'),\n",
+ " ('devil', 'cause annoyance in; disturb, especially by minor irritations'),\n",
+ " ('annoy', 'cause annoyance in; disturb, especially by minor irritations'),\n",
+ " ('fret', 'cause friction'),\n",
+ " ('bother',\n",
+ " 'cause annoyance in; disturb, especially by minor irritations'),\n",
+ " ('excoriate', 'tear or wear off the skin or make sore by abrading'),\n",
+ " ('nettle',\n",
+ " 'cause annoyance in; disturb, especially by minor irritations'),\n",
+ " ('fray', 'cause friction'),\n",
+ " ('rile', 'cause annoyance in; disturb, especially by minor irritations'),\n",
+ " ('rag', 'cause annoyance in; disturb, especially by minor irritations'),\n",
+ " ('scratch', 'cause friction'),\n",
+ " ('get at',\n",
+ " 'cause annoyance in; disturb, especially by minor irritations'),\n",
+ " ('nark',\n",
+ " 'cause annoyance in; disturb, especially by minor irritations')]},\n",
+ " {'answer': 'chagrined',\n",
+ " 'hint': 'synonyms for chagrined',\n",
+ " 'clues': [('chagrin', 'cause to feel shame; hurt the pride of'),\n",
+ " ('humiliate', 'cause to feel shame; hurt the pride of'),\n",
+ " ('mortify', 'cause to feel shame; hurt the pride of'),\n",
+ " ('abase', 'cause to feel shame; hurt the pride of'),\n",
+ " ('humble', 'cause to feel shame; hurt the pride of')]},\n",
+ " {'answer': 'challenging',\n",
+ " 'hint': 'synonyms for challenging',\n",
+ " 'clues': [('dispute', 'take exception to'),\n",
+ " ('challenge', 'raise a formal objection in a court of law'),\n",
+ " ('take exception', 'raise a formal objection in a court of law'),\n",
+ " ('gainsay', 'take exception to')]},\n",
+ " {'answer': 'chance',\n",
+ " 'hint': 'synonyms for chance',\n",
+ " 'clues': [('gamble', 'take a risk in the hope of a favorable outcome'),\n",
+ " ('run a risk', 'take a risk in the hope of a favorable outcome'),\n",
+ " ('bump', 'come upon, as if by accident; meet with'),\n",
+ " ('happen', 'come upon, as if by accident; meet with'),\n",
+ " ('take a chance', 'take a risk in the hope of a favorable outcome'),\n",
+ " ('risk', 'take a risk in the hope of a favorable outcome'),\n",
+ " ('encounter', 'come upon, as if by accident; meet with'),\n",
+ " ('hazard', 'take a risk in the hope of a favorable outcome'),\n",
+ " ('adventure', 'take a risk in the hope of a favorable outcome'),\n",
+ " ('find', 'come upon, as if by accident; meet with')]},\n",
+ " {'answer': 'changed',\n",
+ " 'hint': 'synonyms for changed',\n",
+ " 'clues': [('commute',\n",
+ " 'exchange or replace with another, usually of the same kind or category'),\n",
+ " ('change', 'remove or replace the coverings of'),\n",
+ " ('alter', 'cause to change; make different; cause a transformation'),\n",
+ " ('modify', 'cause to change; make different; cause a transformation'),\n",
+ " ('switch', 'lay aside, abandon, or leave for another'),\n",
+ " ('interchange', 'give to, and receive from, one another'),\n",
+ " ('shift', 'lay aside, abandon, or leave for another'),\n",
+ " ('convert',\n",
+ " 'exchange or replace with another, usually of the same kind or category'),\n",
+ " ('vary',\n",
+ " \"become different in some particular way, without permanently losing one's or its former characteristics or essence\"),\n",
+ " ('transfer', 'change from one vehicle or transportation line to another'),\n",
+ " ('deepen', 'become deeper in tone')]},\n",
+ " {'answer': 'changing',\n",
+ " 'hint': 'synonyms for changing',\n",
+ " 'clues': [('commute',\n",
+ " 'exchange or replace with another, usually of the same kind or category'),\n",
+ " ('change', 'remove or replace the coverings of'),\n",
+ " ('alter', 'cause to change; make different; cause a transformation'),\n",
+ " ('modify', 'cause to change; make different; cause a transformation'),\n",
+ " ('switch', 'lay aside, abandon, or leave for another'),\n",
+ " ('interchange', 'give to, and receive from, one another'),\n",
+ " ('shift', 'lay aside, abandon, or leave for another'),\n",
+ " ('convert',\n",
+ " 'exchange or replace with another, usually of the same kind or category'),\n",
+ " ('vary',\n",
+ " \"become different in some particular way, without permanently losing one's or its former characteristics or essence\"),\n",
+ " ('transfer', 'change from one vehicle or transportation line to another'),\n",
+ " ('deepen', 'become deeper in tone')]},\n",
+ " {'answer': 'chanted',\n",
+ " 'hint': 'synonyms for chanted',\n",
+ " 'clues': [('chant',\n",
+ " 'utter monotonously and repetitively and rhythmically'),\n",
+ " ('intone',\n",
+ " 'recite with musical intonation; recite as a chant or a psalm'),\n",
+ " ('tone', 'utter monotonously and repetitively and rhythmically'),\n",
+ " ('cantillate',\n",
+ " 'recite with musical intonation; recite as a chant or a psalm')]},\n",
+ " {'answer': 'charged',\n",
+ " 'hint': 'synonyms for charged',\n",
+ " 'clues': [('charge', 'instruct or command with authority'),\n",
+ " ('level', 'direct into a position for use'),\n",
+ " ('point', 'direct into a position for use'),\n",
+ " ('load', 'provide (a device) with something necessary'),\n",
+ " ('appoint', 'assign a duty, responsibility or obligation to'),\n",
+ " ('charge up', 'cause to be agitated, excited, or roused'),\n",
+ " ('saddle', 'impose a task upon, assign a responsibility to'),\n",
+ " ('shoot', 'move quickly and violently'),\n",
+ " ('agitate', 'cause to be agitated, excited, or roused'),\n",
+ " ('accuse',\n",
+ " 'blame for, make a claim of wrongdoing or misbehavior against'),\n",
+ " ('tear', 'move quickly and violently'),\n",
+ " ('bill', 'demand payment'),\n",
+ " ('institutionalize',\n",
+ " 'cause to be admitted; of persons to an institution'),\n",
+ " ('excite', 'cause to be agitated, excited, or roused'),\n",
+ " ('blame', 'attribute responsibility to'),\n",
+ " ('lodge', 'file a formal charge against'),\n",
+ " ('turn on', 'cause to be agitated, excited, or roused'),\n",
+ " ('rouse', 'cause to be agitated, excited, or roused'),\n",
+ " ('commit', 'cause to be admitted; of persons to an institution'),\n",
+ " ('bear down', 'to make a rush at or sudden attack upon, as in battle'),\n",
+ " ('send', 'cause to be admitted; of persons to an institution'),\n",
+ " ('burden', 'impose a task upon, assign a responsibility to'),\n",
+ " ('commove', 'cause to be agitated, excited, or roused'),\n",
+ " ('consign', 'give over to another for care or safekeeping'),\n",
+ " ('shoot down', 'move quickly and violently'),\n",
+ " ('file', 'file a formal charge against'),\n",
+ " ('buck', 'move quickly and violently')]},\n",
+ " {'answer': 'charmed',\n",
+ " 'hint': 'synonyms for charmed',\n",
+ " 'clues': [('trance', 'attract; cause to be enamored'),\n",
+ " ('becharm', 'attract; cause to be enamored'),\n",
+ " ('enchant', 'attract; cause to be enamored'),\n",
+ " ('enamour', 'attract; cause to be enamored'),\n",
+ " ('fascinate', 'attract; cause to be enamored'),\n",
+ " ('charm', 'control by magic spells, as by practicing witchcraft'),\n",
+ " ('beguile', 'attract; cause to be enamored'),\n",
+ " ('capture', 'attract; cause to be enamored'),\n",
+ " ('catch', 'attract; cause to be enamored'),\n",
+ " ('influence', \"induce into action by using one's charm\"),\n",
+ " ('tempt', \"induce into action by using one's charm\"),\n",
+ " ('captivate', 'attract; cause to be enamored'),\n",
+ " ('bewitch', 'attract; cause to be enamored')]},\n",
+ " {'answer': 'charming',\n",
+ " 'hint': 'synonyms for charming',\n",
+ " 'clues': [('trance', 'attract; cause to be enamored'),\n",
+ " ('becharm', 'attract; cause to be enamored'),\n",
+ " ('enchant', 'attract; cause to be enamored'),\n",
+ " ('enamour', 'attract; cause to be enamored'),\n",
+ " ('fascinate', 'attract; cause to be enamored'),\n",
+ " ('charm', 'control by magic spells, as by practicing witchcraft'),\n",
+ " ('beguile', 'attract; cause to be enamored'),\n",
+ " ('capture', 'attract; cause to be enamored'),\n",
+ " ('catch', 'attract; cause to be enamored'),\n",
+ " ('influence', \"induce into action by using one's charm\"),\n",
+ " ('tempt', \"induce into action by using one's charm\"),\n",
+ " ('captivate', 'attract; cause to be enamored'),\n",
+ " ('bewitch', 'attract; cause to be enamored')]},\n",
+ " {'answer': 'chartered',\n",
+ " 'hint': 'synonyms for chartered',\n",
+ " 'clues': [('engage', 'engage for service under a term of contract'),\n",
+ " ('rent', 'engage for service under a term of contract'),\n",
+ " ('hire', 'hold under a lease or rental agreement; of goods and services'),\n",
+ " ('charter',\n",
+ " 'hold under a lease or rental agreement; of goods and services'),\n",
+ " ('lease',\n",
+ " 'hold under a lease or rental agreement; of goods and services'),\n",
+ " ('take', 'engage for service under a term of contract')]},\n",
+ " {'answer': 'cheating',\n",
+ " 'hint': 'synonyms for cheating',\n",
+ " 'clues': [('rip off', 'deprive somebody of something by deceit'),\n",
+ " ('chisel', 'deprive somebody of something by deceit'),\n",
+ " ('cheat', 'engage in deceitful behavior; practice trickery or fraud'),\n",
+ " ('betray', \"be sexually unfaithful to one's partner in marriage\"),\n",
+ " ('wander', \"be sexually unfaithful to one's partner in marriage\"),\n",
+ " ('cuckold', \"be sexually unfaithful to one's partner in marriage\"),\n",
+ " ('cheat on', \"be sexually unfaithful to one's partner in marriage\"),\n",
+ " ('jockey', 'defeat someone through trickery or deceit'),\n",
+ " ('chicane', 'defeat someone through trickery or deceit'),\n",
+ " ('shaft', 'defeat someone through trickery or deceit'),\n",
+ " ('chouse', 'defeat someone through trickery or deceit'),\n",
+ " ('screw', 'defeat someone through trickery or deceit')]},\n",
+ " {'answer': 'checked',\n",
+ " 'hint': 'synonyms for checked',\n",
+ " 'clues': [('gibe',\n",
+ " 'be compatible, similar or consistent; coincide in their characteristics'),\n",
+ " ('contain',\n",
+ " 'hold back, as of a danger or an enemy; check the expansion or influence of'),\n",
+ " ('determine',\n",
+ " 'find out, learn, or determine with certainty, usually by making an inquiry or other effort'),\n",
+ " ('control',\n",
+ " 'lessen the intensity of; temper; hold in restraint; hold or keep within limits'),\n",
+ " ('retard', 'slow the growth or development of'),\n",
+ " ('check', 'decline to initiate betting'),\n",
+ " ('chink', 'make cracks or chinks in'),\n",
+ " ('tick off', 'put a check mark on or near or next to'),\n",
+ " ('delay', 'slow the growth or development of'),\n",
+ " ('condition',\n",
+ " \"develop (children's) behavior by instruction and practice; especially to teach self-control\"),\n",
+ " ('fit',\n",
+ " 'be compatible, similar or consistent; coincide in their characteristics'),\n",
+ " ('moderate',\n",
+ " 'lessen the intensity of; temper; hold in restraint; hold or keep within limits'),\n",
+ " ('correspond',\n",
+ " 'be compatible, similar or consistent; coincide in their characteristics'),\n",
+ " ('insure',\n",
+ " 'be careful or certain to do something; make certain of something'),\n",
+ " ('mark off', 'put a check mark on or near or next to'),\n",
+ " ('check out',\n",
+ " 'examine so as to determine accuracy, quality, or condition'),\n",
+ " ('ascertain',\n",
+ " 'be careful or certain to do something; make certain of something'),\n",
+ " ('discipline',\n",
+ " \"develop (children's) behavior by instruction and practice; especially to teach self-control\"),\n",
+ " ('see',\n",
+ " 'be careful or certain to do something; make certain of something'),\n",
+ " ('suss out',\n",
+ " 'examine so as to determine accuracy, quality, or condition'),\n",
+ " ('stop',\n",
+ " 'hold back, as of a danger or an enemy; check the expansion or influence of'),\n",
+ " ('break', 'become fractured; break or crack on the surface only'),\n",
+ " ('agree',\n",
+ " 'be compatible, similar or consistent; coincide in their characteristics'),\n",
+ " ('jibe',\n",
+ " 'be compatible, similar or consistent; coincide in their characteristics'),\n",
+ " ('checker',\n",
+ " 'mark into squares or draw squares on; draw crossed lines on'),\n",
+ " ('turn back',\n",
+ " 'hold back, as of a danger or an enemy; check the expansion or influence of'),\n",
+ " ('hold in',\n",
+ " 'lessen the intensity of; temper; hold in restraint; hold or keep within limits'),\n",
+ " ('ensure',\n",
+ " 'be careful or certain to do something; make certain of something'),\n",
+ " ('check into',\n",
+ " 'examine so as to determine accuracy, quality, or condition'),\n",
+ " ('hold back',\n",
+ " 'hold back, as of a danger or an enemy; check the expansion or influence of'),\n",
+ " ('tally',\n",
+ " 'be compatible, similar or consistent; coincide in their characteristics'),\n",
+ " ('find out',\n",
+ " 'find out, learn, or determine with certainty, usually by making an inquiry or other effort'),\n",
+ " ('watch',\n",
+ " 'find out, learn, or determine with certainty, usually by making an inquiry or other effort'),\n",
+ " ('mark', 'put a check mark on or near or next to'),\n",
+ " ('curb',\n",
+ " 'lessen the intensity of; temper; hold in restraint; hold or keep within limits'),\n",
+ " ('check up on',\n",
+ " 'examine so as to determine accuracy, quality, or condition'),\n",
+ " ('look into',\n",
+ " 'examine so as to determine accuracy, quality, or condition'),\n",
+ " ('go over', 'examine so as to determine accuracy, quality, or condition'),\n",
+ " ('see to it',\n",
+ " 'be careful or certain to do something; make certain of something'),\n",
+ " ('match',\n",
+ " 'be compatible, similar or consistent; coincide in their characteristics'),\n",
+ " ('hold',\n",
+ " 'lessen the intensity of; temper; hold in restraint; hold or keep within limits'),\n",
+ " ('crack', 'become fractured; break or crack on the surface only'),\n",
+ " ('check over',\n",
+ " 'examine so as to determine accuracy, quality, or condition'),\n",
+ " ('learn',\n",
+ " 'find out, learn, or determine with certainty, usually by making an inquiry or other effort'),\n",
+ " ('check off', 'put a check mark on or near or next to'),\n",
+ " ('assure',\n",
+ " 'be careful or certain to do something; make certain of something'),\n",
+ " ('chequer',\n",
+ " 'mark into squares or draw squares on; draw crossed lines on'),\n",
+ " ('arrest',\n",
+ " 'hold back, as of a danger or an enemy; check the expansion or influence of'),\n",
+ " ('tick', 'put a check mark on or near or next to'),\n",
+ " ('train',\n",
+ " \"develop (children's) behavior by instruction and practice; especially to teach self-control\")]},\n",
+ " {'answer': 'cheering',\n",
+ " 'hint': 'synonyms for cheering',\n",
+ " 'clues': [('chirk up', 'become cheerful'),\n",
+ " ('cheer', 'give encouragement to'),\n",
+ " ('inspire', 'spur on or encourage especially by cheers and shouts'),\n",
+ " ('embolden', 'give encouragement to'),\n",
+ " ('exhort', 'spur on or encourage especially by cheers and shouts'),\n",
+ " ('urge on', 'spur on or encourage especially by cheers and shouts'),\n",
+ " ('jolly up', 'cause (somebody) to feel happier or more cheerful'),\n",
+ " ('urge', 'spur on or encourage especially by cheers and shouts'),\n",
+ " ('cheer up', 'become cheerful'),\n",
+ " ('root on', 'spur on or encourage especially by cheers and shouts'),\n",
+ " ('recreate', 'give encouragement to'),\n",
+ " ('hearten', 'give encouragement to'),\n",
+ " ('barrack', 'spur on or encourage especially by cheers and shouts'),\n",
+ " ('pep up', 'spur on or encourage especially by cheers and shouts'),\n",
+ " ('jolly along', 'cause (somebody) to feel happier or more cheerful')]},\n",
+ " {'answer': 'cherished',\n",
+ " 'hint': 'synonyms for cherished',\n",
+ " 'clues': [('cherish', 'be fond of; be attached to'),\n",
+ " ('treasure', 'be fond of; be attached to'),\n",
+ " ('hold dear', 'be fond of; be attached to'),\n",
+ " ('care for', 'be fond of; be attached to')]},\n",
+ " {'answer': 'chinked',\n",
+ " 'hint': 'synonyms for chinked',\n",
+ " 'clues': [('chink', 'fill the chinks of, as with caulking'),\n",
+ " ('check', 'make cracks or chinks in'),\n",
+ " ('clink', 'make or emit a high sound'),\n",
+ " ('tinkle', 'make or emit a high sound'),\n",
+ " ('tink', 'make or emit a high sound')]},\n",
+ " {'answer': 'choked',\n",
+ " 'hint': 'synonyms for choked',\n",
+ " 'clues': [('fret', 'be too tight; rub or press'),\n",
+ " ('decease',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('throttle', 'reduce the air supply'),\n",
+ " ('suffocate', 'become stultified, suppressed, or stifled'),\n",
+ " ('choke', 'fail to perform adequately due to tension or agitation'),\n",
+ " ('go',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('gag', 'be too tight; rub or press'),\n",
+ " ('asphyxiate',\n",
+ " 'impair the respiration of or obstruct the air passage of'),\n",
+ " ('kick the bucket',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('strangle', 'struggle for breath; have insufficient oxygen intake'),\n",
+ " ('foul', 'become or cause to become obstructed'),\n",
+ " ('exit',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('congest', 'become or cause to become obstructed'),\n",
+ " ('die',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('scrag', 'wring the neck of'),\n",
+ " ('croak',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('drop dead',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('choke off', 'become or cause to become obstructed'),\n",
+ " ('clog', 'become or cause to become obstructed'),\n",
+ " ('give-up the ghost',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " (\"cash in one's chips\",\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('stifle', 'impair the respiration of or obstruct the air passage of'),\n",
+ " ('perish',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('snuff it',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('buy the farm',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('back up', 'become or cause to become obstructed'),\n",
+ " ('pass',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('expire',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('pass away',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('conk',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('pop off',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('clog up', 'become or cause to become obstructed')]},\n",
+ " {'answer': 'churning',\n",
+ " 'hint': 'synonyms for churning',\n",
+ " 'clues': [('moil', 'be agitated'),\n",
+ " ('churn', 'stir (cream) vigorously in order to make butter'),\n",
+ " ('boil', 'be agitated'),\n",
+ " ('roil', 'be agitated')]},\n",
+ " {'answer': 'circulating',\n",
+ " 'hint': 'synonyms for circulating',\n",
+ " 'clues': [('propagate', 'cause to become widely known'),\n",
+ " ('diffuse', 'cause to become widely known'),\n",
+ " ('disseminate', 'cause to become widely known'),\n",
+ " ('circulate', 'cause to move in a circuit or system'),\n",
+ " ('pass around', 'cause be distributed'),\n",
+ " ('mobilise', 'cause to move around'),\n",
+ " ('distribute', 'cause to become widely known'),\n",
+ " ('circularize', 'cause to become widely known'),\n",
+ " ('circle', 'move in circles'),\n",
+ " ('go around', 'become widely known and passed on'),\n",
+ " ('pass on', 'cause be distributed'),\n",
+ " ('spread', 'cause to become widely known'),\n",
+ " ('disperse', 'cause to become widely known'),\n",
+ " ('broadcast', 'cause to become widely known')]},\n",
+ " {'answer': 'civilised',\n",
+ " 'hint': 'synonyms for civilised',\n",
+ " 'clues': [('educate',\n",
+ " 'teach or refine to be discriminative in taste or judgment'),\n",
+ " ('school', 'teach or refine to be discriminative in taste or judgment'),\n",
+ " ('civilise', 'teach or refine to be discriminative in taste or judgment'),\n",
+ " ('cultivate',\n",
+ " 'teach or refine to be discriminative in taste or judgment'),\n",
+ " ('train', 'teach or refine to be discriminative in taste or judgment')]},\n",
+ " {'answer': 'civilized',\n",
+ " 'hint': 'synonyms for civilized',\n",
+ " 'clues': [('educate',\n",
+ " 'teach or refine to be discriminative in taste or judgment'),\n",
+ " ('school', 'teach or refine to be discriminative in taste or judgment'),\n",
+ " ('civilise', 'teach or refine to be discriminative in taste or judgment'),\n",
+ " ('cultivate',\n",
+ " 'teach or refine to be discriminative in taste or judgment'),\n",
+ " ('train', 'teach or refine to be discriminative in taste or judgment')]},\n",
+ " {'answer': 'clad',\n",
+ " 'hint': 'synonyms for clad',\n",
+ " 'clues': [('cloak', 'cover as if with clothing'),\n",
+ " ('raiment', 'provide with clothes or put clothes on'),\n",
+ " ('invest', 'furnish with power or authority; of kings or emperors'),\n",
+ " ('enclothe', 'provide with clothes or put clothes on'),\n",
+ " ('garb', 'provide with clothes or put clothes on'),\n",
+ " ('garment', 'provide with clothes or put clothes on'),\n",
+ " ('habilitate', 'provide with clothes or put clothes on'),\n",
+ " ('tog', 'provide with clothes or put clothes on'),\n",
+ " ('fit out', 'provide with clothes or put clothes on'),\n",
+ " ('dress', 'provide with clothes or put clothes on'),\n",
+ " ('adorn', 'furnish with power or authority; of kings or emperors'),\n",
+ " ('drape', 'cover as if with clothing'),\n",
+ " ('apparel', 'provide with clothes or put clothes on'),\n",
+ " ('robe', 'cover as if with clothing')]},\n",
+ " {'answer': 'classified',\n",
+ " 'hint': 'synonyms for classified',\n",
+ " 'clues': [('sort out', 'arrange or order by classes or categories'),\n",
+ " ('classify', 'declare unavailable, as for security reasons'),\n",
+ " ('assort', 'arrange or order by classes or categories'),\n",
+ " ('class', 'arrange or order by classes or categories'),\n",
+ " ('relegate', 'assign to a class or kind'),\n",
+ " ('sort', 'arrange or order by classes or categories'),\n",
+ " ('separate', 'arrange or order by classes or categories')]},\n",
+ " {'answer': 'clean',\n",
+ " 'hint': 'synonyms for clean',\n",
+ " 'clues': [('pick',\n",
+ " 'remove unwanted substances from, such as feathers or pits'),\n",
+ " ('cleanse', \"clean one's body or parts thereof, as by washing\"),\n",
+ " ('clean house', 'clean and tidy up the house'),\n",
+ " ('houseclean', 'clean and tidy up the house'),\n",
+ " ('strip', 'remove all contents or possession from, or empty completely'),\n",
+ " ('make clean',\n",
+ " 'make clean by removing dirt, filth, or unwanted substances from'),\n",
+ " ('scavenge', 'remove unwanted substances from')]},\n",
+ " {'answer': 'clear',\n",
+ " 'hint': 'synonyms for clear',\n",
+ " 'clues': [('straighten out',\n",
+ " 'make free from confusion or ambiguity; make clear'),\n",
+ " ('crystallize', 'make free from confusion or ambiguity; make clear'),\n",
+ " ('exonerate', 'pronounce not guilty of criminal charges'),\n",
+ " ('authorise', 'grant authorization or clearance for'),\n",
+ " ('light up', 'become clear'),\n",
+ " ('net', 'yield as a net profit'),\n",
+ " ('gain',\n",
+ " 'earn on some commercial or business transaction; earn as salary or wages'),\n",
+ " ('realise',\n",
+ " 'earn on some commercial or business transaction; earn as salary or wages'),\n",
+ " ('sack up', 'make as a net profit'),\n",
+ " ('bring in',\n",
+ " 'earn on some commercial or business transaction; earn as salary or wages'),\n",
+ " ('top', 'pass by, over, or under without making contact'),\n",
+ " ('sack', 'make as a net profit'),\n",
+ " ('discharge', 'pronounce not guilty of criminal charges'),\n",
+ " ('clear up', 'make free from confusion or ambiguity; make clear'),\n",
+ " ('take in',\n",
+ " 'earn on some commercial or business transaction; earn as salary or wages'),\n",
+ " ('shed light on', 'make free from confusion or ambiguity; make clear'),\n",
+ " ('acquit', 'pronounce not guilty of criminal charges'),\n",
+ " ('brighten', 'become clear'),\n",
+ " ('sort out', 'make free from confusion or ambiguity; make clear'),\n",
+ " ('enlighten', 'make free from confusion or ambiguity; make clear'),\n",
+ " ('assoil', 'pronounce not guilty of criminal charges'),\n",
+ " ('unclutter', 'rid of obstructions'),\n",
+ " ('pass', 'grant authorization or clearance for'),\n",
+ " ('solve', 'settle, as of a debt'),\n",
+ " ('elucidate', 'make free from confusion or ambiguity; make clear'),\n",
+ " ('pull in',\n",
+ " 'earn on some commercial or business transaction; earn as salary or wages'),\n",
+ " ('make',\n",
+ " 'earn on some commercial or business transaction; earn as salary or wages'),\n",
+ " ('earn',\n",
+ " 'earn on some commercial or business transaction; earn as salary or wages'),\n",
+ " ('illuminate', 'make free from confusion or ambiguity; make clear'),\n",
+ " ('exculpate', 'pronounce not guilty of criminal charges')]},\n",
+ " {'answer': 'cleared',\n",
+ " 'hint': 'synonyms for cleared',\n",
+ " 'clues': [('straighten out',\n",
+ " 'make free from confusion or ambiguity; make clear'),\n",
+ " ('clear', 'remove (people) from a building'),\n",
+ " ('crystallize', 'make free from confusion or ambiguity; make clear'),\n",
+ " ('exonerate', 'pronounce not guilty of criminal charges'),\n",
+ " ('authorise', 'grant authorization or clearance for'),\n",
+ " ('light up', 'become clear'),\n",
+ " ('net', 'yield as a net profit'),\n",
+ " ('gain',\n",
+ " 'earn on some commercial or business transaction; earn as salary or wages'),\n",
+ " ('realise',\n",
+ " 'earn on some commercial or business transaction; earn as salary or wages'),\n",
+ " ('sack up', 'make as a net profit'),\n",
+ " ('bring in',\n",
+ " 'earn on some commercial or business transaction; earn as salary or wages'),\n",
+ " ('top', 'pass by, over, or under without making contact'),\n",
+ " ('sack', 'make as a net profit'),\n",
+ " ('discharge', 'pronounce not guilty of criminal charges'),\n",
+ " ('clear up', 'make free from confusion or ambiguity; make clear'),\n",
+ " ('take in',\n",
+ " 'earn on some commercial or business transaction; earn as salary or wages'),\n",
+ " ('shed light on', 'make free from confusion or ambiguity; make clear'),\n",
+ " ('acquit', 'pronounce not guilty of criminal charges'),\n",
+ " ('brighten', 'become clear'),\n",
+ " ('sort out', 'make free from confusion or ambiguity; make clear'),\n",
+ " ('enlighten', 'make free from confusion or ambiguity; make clear'),\n",
+ " ('assoil', 'pronounce not guilty of criminal charges'),\n",
+ " ('unclutter', 'rid of obstructions'),\n",
+ " ('pass', 'grant authorization or clearance for'),\n",
+ " ('solve', 'settle, as of a debt'),\n",
+ " ('elucidate', 'make free from confusion or ambiguity; make clear'),\n",
+ " ('pull in',\n",
+ " 'earn on some commercial or business transaction; earn as salary or wages'),\n",
+ " ('make',\n",
+ " 'earn on some commercial or business transaction; earn as salary or wages'),\n",
+ " ('earn',\n",
+ " 'earn on some commercial or business transaction; earn as salary or wages'),\n",
+ " ('illuminate', 'make free from confusion or ambiguity; make clear'),\n",
+ " ('exculpate', 'pronounce not guilty of criminal charges')]},\n",
+ " {'answer': 'cleft',\n",
+ " 'hint': 'synonyms for cleft',\n",
+ " 'clues': [('cohere',\n",
+ " 'come or be in close contact with; stick or hold together and resist separation'),\n",
+ " ('cleave',\n",
+ " 'come or be in close contact with; stick or hold together and resist separation'),\n",
+ " ('rive', 'separate or cut with a tool, such as a sharp instrument'),\n",
+ " ('adhere',\n",
+ " 'come or be in close contact with; stick or hold together and resist separation'),\n",
+ " ('stick',\n",
+ " 'come or be in close contact with; stick or hold together and resist separation'),\n",
+ " ('cling',\n",
+ " 'come or be in close contact with; stick or hold together and resist separation'),\n",
+ " ('split', 'separate or cut with a tool, such as a sharp instrument')]},\n",
+ " {'answer': 'clinking',\n",
+ " 'hint': 'synonyms for clinking',\n",
+ " 'clues': [('clink', 'make a high sound typical of glass'),\n",
+ " ('chink', 'make or emit a high sound'),\n",
+ " ('tinkle', 'make or emit a high sound'),\n",
+ " ('tink', 'make or emit a high sound')]},\n",
+ " {'answer': 'clipped',\n",
+ " 'hint': 'synonyms for clipped',\n",
+ " 'clues': [('clip', 'cultivate, tend, and cut back the growth of'),\n",
+ " ('prune', 'cultivate, tend, and cut back the growth of'),\n",
+ " ('lop', 'cultivate, tend, and cut back the growth of'),\n",
+ " ('jog', 'run at a moderately swift pace'),\n",
+ " ('nip', 'sever or remove by pinching or snipping'),\n",
+ " ('cut back', 'cultivate, tend, and cut back the growth of'),\n",
+ " ('dress', 'cultivate, tend, and cut back the growth of'),\n",
+ " ('nip off', 'sever or remove by pinching or snipping'),\n",
+ " ('cut short',\n",
+ " 'terminate or abbreviate before its intended or proper end or its full extent'),\n",
+ " ('crop', 'cultivate, tend, and cut back the growth of'),\n",
+ " ('trot', 'run at a moderately swift pace'),\n",
+ " ('curtail',\n",
+ " 'terminate or abbreviate before its intended or proper end or its full extent'),\n",
+ " ('trim', 'cultivate, tend, and cut back the growth of')]},\n",
+ " {'answer': 'cloaked',\n",
+ " 'hint': 'synonyms for cloaked',\n",
+ " 'clues': [('cloak', 'hide under a false appearance'),\n",
+ " ('mask', 'hide under a false appearance'),\n",
+ " ('dissemble', 'hide under a false appearance'),\n",
+ " ('clothe', 'cover as if with clothing'),\n",
+ " ('drape', 'cover as if with clothing'),\n",
+ " ('robe', 'cover as if with clothing')]},\n",
+ " {'answer': 'clogged',\n",
+ " 'hint': 'synonyms for clogged',\n",
+ " 'clues': [('back up', 'become or cause to become obstructed'),\n",
+ " ('clog', 'impede the motion of, as with a chain or a burden'),\n",
+ " ('foul', 'become or cause to become obstructed'),\n",
+ " ('choke off', 'become or cause to become obstructed'),\n",
+ " ('constipate', 'impede with a clog or as if with a clog'),\n",
+ " ('congest', 'become or cause to become obstructed'),\n",
+ " ('overload', 'fill to excess so that function is impaired'),\n",
+ " ('clot', 'coalesce or unite in a mass'),\n",
+ " ('choke', 'become or cause to become obstructed'),\n",
+ " ('clog up', 'become or cause to become obstructed')]},\n",
+ " {'answer': 'clogging',\n",
+ " 'hint': 'synonyms for clogging',\n",
+ " 'clues': [('back up', 'become or cause to become obstructed'),\n",
+ " ('clog', 'impede the motion of, as with a chain or a burden'),\n",
+ " ('foul', 'become or cause to become obstructed'),\n",
+ " ('choke off', 'become or cause to become obstructed'),\n",
+ " ('constipate', 'impede with a clog or as if with a clog'),\n",
+ " ('congest', 'become or cause to become obstructed'),\n",
+ " ('overload', 'fill to excess so that function is impaired'),\n",
+ " ('clot', 'coalesce or unite in a mass'),\n",
+ " ('choke', 'become or cause to become obstructed'),\n",
+ " ('clog up', 'become or cause to become obstructed')]},\n",
+ " {'answer': 'close',\n",
+ " 'hint': 'synonyms for close',\n",
+ " 'clues': [('come together', 'come together, as if in an embrace'),\n",
+ " ('fold', 'cease to operate or cause to cease operating'),\n",
+ " ('shut down', 'cease to operate or cause to cease operating'),\n",
+ " ('shut', 'become closed'),\n",
+ " ('conclude', 'come to a close'),\n",
+ " ('close down', 'cease to operate or cause to cease operating'),\n",
+ " ('close up',\n",
+ " 'unite or bring into contact or bring together the edges of'),\n",
+ " ('fill up', 'fill or stop up')]},\n",
+ " {'answer': 'closed',\n",
+ " 'hint': 'synonyms for closed',\n",
+ " 'clues': [('close', 'be priced or listed when trading stops'),\n",
+ " ('shut', 'become closed'),\n",
+ " ('conclude', 'come to a close'),\n",
+ " ('close up',\n",
+ " 'unite or bring into contact or bring together the edges of'),\n",
+ " ('come together', 'come together, as if in an embrace'),\n",
+ " ('shut down', 'cease to operate or cause to cease operating'),\n",
+ " ('close down', 'cease to operate or cause to cease operating'),\n",
+ " ('fold', 'cease to operate or cause to cease operating'),\n",
+ " ('fill up', 'fill or stop up')]},\n",
+ " {'answer': 'closing',\n",
+ " 'hint': 'synonyms for closing',\n",
+ " 'clues': [('close', 'be priced or listed when trading stops'),\n",
+ " ('shut', 'become closed'),\n",
+ " ('conclude', 'come to a close'),\n",
+ " ('close up',\n",
+ " 'unite or bring into contact or bring together the edges of'),\n",
+ " ('come together', 'come together, as if in an embrace'),\n",
+ " ('shut down', 'cease to operate or cause to cease operating'),\n",
+ " ('close down', 'cease to operate or cause to cease operating'),\n",
+ " ('fold', 'cease to operate or cause to cease operating'),\n",
+ " ('fill up', 'fill or stop up')]},\n",
+ " {'answer': 'clothed',\n",
+ " 'hint': 'synonyms for clothed',\n",
+ " 'clues': [('cloak', 'cover as if with clothing'),\n",
+ " ('raiment', 'provide with clothes or put clothes on'),\n",
+ " ('invest', 'furnish with power or authority; of kings or emperors'),\n",
+ " ('enclothe', 'provide with clothes or put clothes on'),\n",
+ " ('garb', 'provide with clothes or put clothes on'),\n",
+ " ('garment', 'provide with clothes or put clothes on'),\n",
+ " ('habilitate', 'provide with clothes or put clothes on'),\n",
+ " ('tog', 'provide with clothes or put clothes on'),\n",
+ " ('fit out', 'provide with clothes or put clothes on'),\n",
+ " ('dress', 'provide with clothes or put clothes on'),\n",
+ " ('adorn', 'furnish with power or authority; of kings or emperors'),\n",
+ " ('drape', 'cover as if with clothing'),\n",
+ " ('apparel', 'provide with clothes or put clothes on'),\n",
+ " ('robe', 'cover as if with clothing')]},\n",
+ " {'answer': 'clotted',\n",
+ " 'hint': 'synonyms for clotted',\n",
+ " 'clues': [('curdle', 'turn into curds'),\n",
+ " ('clog', 'coalesce or unite in a mass'),\n",
+ " ('clot', 'cause to change from a liquid to a solid or thickened state'),\n",
+ " ('clabber', 'turn into curds'),\n",
+ " ('coagulate', 'change from a liquid to a thickened or solid state')]},\n",
+ " {'answer': 'clouded',\n",
+ " 'hint': 'synonyms for clouded',\n",
+ " 'clues': [('cloud', 'billow up in the form of a cloud'),\n",
+ " ('haze over', 'make less visible or unclear'),\n",
+ " ('taint', 'place under suspicion or cast doubt upon'),\n",
+ " ('corrupt', 'place under suspicion or cast doubt upon'),\n",
+ " ('sully', 'place under suspicion or cast doubt upon'),\n",
+ " ('obnubilate', 'make less visible or unclear'),\n",
+ " ('dapple', 'colour with streaks or blotches of different shades'),\n",
+ " ('fog', 'make less visible or unclear'),\n",
+ " ('overcast', 'make overcast or cloudy'),\n",
+ " ('becloud', 'make less visible or unclear'),\n",
+ " ('obscure', 'make less visible or unclear'),\n",
+ " ('defile', 'place under suspicion or cast doubt upon'),\n",
+ " ('mist', 'make less visible or unclear'),\n",
+ " ('mottle', 'colour with streaks or blotches of different shades'),\n",
+ " ('befog', 'make less visible or unclear')]},\n",
+ " {'answer': 'cloven',\n",
+ " 'hint': 'synonyms for cloven',\n",
+ " 'clues': [('cohere',\n",
+ " 'come or be in close contact with; stick or hold together and resist separation'),\n",
+ " ('cleave',\n",
+ " 'come or be in close contact with; stick or hold together and resist separation'),\n",
+ " ('rive', 'separate or cut with a tool, such as a sharp instrument'),\n",
+ " ('adhere',\n",
+ " 'come or be in close contact with; stick or hold together and resist separation'),\n",
+ " ('stick',\n",
+ " 'come or be in close contact with; stick or hold together and resist separation'),\n",
+ " ('cling',\n",
+ " 'come or be in close contact with; stick or hold together and resist separation'),\n",
+ " ('split', 'separate or cut with a tool, such as a sharp instrument')]},\n",
+ " {'answer': 'clustered',\n",
+ " 'hint': 'synonyms for clustered',\n",
+ " 'clues': [('bunch up', 'gather or cause to gather into a cluster'),\n",
+ " ('bunch', 'gather or cause to gather into a cluster'),\n",
+ " ('bundle', 'gather or cause to gather into a cluster'),\n",
+ " ('cluster', 'gather or cause to gather into a cluster'),\n",
+ " ('clump', 'gather or cause to gather into a cluster'),\n",
+ " ('constellate', 'come together as in a cluster or flock'),\n",
+ " ('flock', 'come together as in a cluster or flock')]},\n",
+ " {'answer': 'coalesced',\n",
+ " 'hint': 'synonyms for coalesced',\n",
+ " 'clues': [('fuse', 'mix together different elements'),\n",
+ " ('coalesce', 'mix together different elements'),\n",
+ " ('blend', 'mix together different elements'),\n",
+ " ('flux', 'mix together different elements'),\n",
+ " ('merge', 'mix together different elements'),\n",
+ " ('combine', 'mix together different elements'),\n",
+ " ('commingle', 'mix together different elements'),\n",
+ " ('immix', 'mix together different elements'),\n",
+ " ('mix', 'mix together different elements'),\n",
+ " ('meld', 'mix together different elements'),\n",
+ " ('conflate', 'mix together different elements')]},\n",
+ " {'answer': 'coalescing',\n",
+ " 'hint': 'synonyms for coalescing',\n",
+ " 'clues': [('fuse', 'mix together different elements'),\n",
+ " ('coalesce', 'mix together different elements'),\n",
+ " ('blend', 'mix together different elements'),\n",
+ " ('flux', 'mix together different elements'),\n",
+ " ('merge', 'mix together different elements'),\n",
+ " ('combine', 'mix together different elements'),\n",
+ " ('commingle', 'mix together different elements'),\n",
+ " ('immix', 'mix together different elements'),\n",
+ " ('mix', 'mix together different elements'),\n",
+ " ('meld', 'mix together different elements'),\n",
+ " ('conflate', 'mix together different elements')]},\n",
+ " {'answer': 'coaxing',\n",
+ " 'hint': 'synonyms for coaxing',\n",
+ " 'clues': [('blarney',\n",
+ " 'influence or urge by gentle urging, caressing, or flattering'),\n",
+ " ('wheedle',\n",
+ " 'influence or urge by gentle urging, caressing, or flattering'),\n",
+ " ('palaver',\n",
+ " 'influence or urge by gentle urging, caressing, or flattering'),\n",
+ " ('sweet-talk',\n",
+ " 'influence or urge by gentle urging, caressing, or flattering'),\n",
+ " ('cajole',\n",
+ " 'influence or urge by gentle urging, caressing, or flattering'),\n",
+ " ('coax', 'influence or urge by gentle urging, caressing, or flattering'),\n",
+ " ('inveigle',\n",
+ " 'influence or urge by gentle urging, caressing, or flattering')]},\n",
+ " {'answer': 'cod',\n",
+ " 'hint': 'synonyms for cod',\n",
+ " 'clues': [('tantalise', 'harass with persistent criticism or carping'),\n",
+ " ('gull', 'fool or hoax'),\n",
+ " ('put one across', 'fool or hoax'),\n",
+ " ('rag', 'harass with persistent criticism or carping'),\n",
+ " ('rally', 'harass with persistent criticism or carping'),\n",
+ " ('fool', 'fool or hoax'),\n",
+ " ('twit', 'harass with persistent criticism or carping'),\n",
+ " ('razz', 'harass with persistent criticism or carping'),\n",
+ " ('put one over', 'fool or hoax'),\n",
+ " ('befool', 'fool or hoax'),\n",
+ " ('dupe', 'fool or hoax'),\n",
+ " ('tease', 'harass with persistent criticism or carping'),\n",
+ " ('taunt', 'harass with persistent criticism or carping'),\n",
+ " ('bait', 'harass with persistent criticism or carping'),\n",
+ " ('ride', 'harass with persistent criticism or carping'),\n",
+ " ('take in', 'fool or hoax'),\n",
+ " ('put on', 'fool or hoax'),\n",
+ " ('slang', 'fool or hoax')]},\n",
+ " {'answer': 'coiled',\n",
+ " 'hint': 'synonyms for coiled',\n",
+ " 'clues': [('spiral', 'to wind or move in a spiral course'),\n",
+ " ('coil', 'wind around something in coils or loops'),\n",
+ " ('hand-build', \"make without a potter's wheel\"),\n",
+ " ('gyrate', 'to wind or move in a spiral course'),\n",
+ " ('curl', 'wind around something in coils or loops'),\n",
+ " ('loop', 'wind around something in coils or loops')]},\n",
+ " {'answer': 'coiling',\n",
+ " 'hint': 'synonyms for coiling',\n",
+ " 'clues': [('spiral', 'to wind or move in a spiral course'),\n",
+ " ('coil', 'wind around something in coils or loops'),\n",
+ " ('hand-build', \"make without a potter's wheel\"),\n",
+ " ('gyrate', 'to wind or move in a spiral course'),\n",
+ " ('curl', 'wind around something in coils or loops'),\n",
+ " ('loop', 'wind around something in coils or loops')]},\n",
+ " {'answer': 'collect',\n",
+ " 'hint': 'synonyms for collect',\n",
+ " 'clues': [('pull together', 'assemble or get together'),\n",
+ " ('pull in', 'get or bring together'),\n",
+ " ('accumulate', 'get or gather together'),\n",
+ " ('gather', 'assemble or get together'),\n",
+ " ('amass', 'get or gather together'),\n",
+ " ('hoard', 'get or gather together'),\n",
+ " ('garner', 'assemble or get together'),\n",
+ " ('take in', 'call for and obtain payment of'),\n",
+ " ('call for', 'gather or collect'),\n",
+ " ('compile', 'get or gather together'),\n",
+ " ('roll up', 'get or gather together'),\n",
+ " ('pile up', 'get or gather together'),\n",
+ " ('pick up', 'gather or collect'),\n",
+ " ('gather up', 'gather or collect')]},\n",
+ " {'answer': 'collected',\n",
+ " 'hint': 'synonyms for collected',\n",
+ " 'clues': [('pull together', 'assemble or get together'),\n",
+ " ('pull in', 'get or bring together'),\n",
+ " ('collect', 'get or gather together'),\n",
+ " ('hoard', 'get or gather together'),\n",
+ " ('call for', 'gather or collect'),\n",
+ " ('gather up', 'gather or collect'),\n",
+ " ('accumulate', 'get or gather together'),\n",
+ " ('gather', 'assemble or get together'),\n",
+ " ('amass', 'get or gather together'),\n",
+ " ('garner', 'assemble or get together'),\n",
+ " ('take in', 'call for and obtain payment of'),\n",
+ " ('compile', 'get or gather together'),\n",
+ " ('roll up', 'get or gather together'),\n",
+ " ('pile up', 'get or gather together'),\n",
+ " ('pick up', 'gather or collect')]},\n",
+ " {'answer': 'color',\n",
+ " 'hint': 'synonyms for color',\n",
+ " 'clues': [('colour', 'give a deceptive explanation or excuse for'),\n",
+ " ('distort', 'affect as in thought or feeling'),\n",
+ " ('emblazon', 'decorate with colors'),\n",
+ " ('colourize', 'add color to'),\n",
+ " ('tinge', 'affect as in thought or feeling'),\n",
+ " ('discolor', 'change color, often in an undesired manner'),\n",
+ " ('colour in', 'add color to'),\n",
+ " ('gloss', 'give a deceptive explanation or excuse for'),\n",
+ " ('colorise', 'add color to')]},\n",
+ " {'answer': 'colored',\n",
+ " 'hint': 'synonyms for colored',\n",
+ " 'clues': [('emblazon', 'decorate with colors'),\n",
+ " ('color', 'modify or bias'),\n",
+ " ('colourise', 'add color to'),\n",
+ " ('colour in', 'add color to'),\n",
+ " ('discolour', 'change color, often in an undesired manner'),\n",
+ " ('gloss', 'give a deceptive explanation or excuse for'),\n",
+ " ('distort', 'affect as in thought or feeling'),\n",
+ " ('tinge', 'affect as in thought or feeling'),\n",
+ " ('colorize', 'add color to')]},\n",
+ " {'answer': 'colour',\n",
+ " 'hint': 'synonyms for colour',\n",
+ " 'clues': [('color', 'give a deceptive explanation or excuse for'),\n",
+ " ('distort', 'affect as in thought or feeling'),\n",
+ " ('emblazon', 'decorate with colors'),\n",
+ " ('tinge', 'affect as in thought or feeling'),\n",
+ " ('colourize', 'add color to'),\n",
+ " ('discolor', 'change color, often in an undesired manner'),\n",
+ " ('colour in', 'add color to'),\n",
+ " ('gloss', 'give a deceptive explanation or excuse for'),\n",
+ " ('colorise', 'add color to')]},\n",
+ " {'answer': 'coloured',\n",
+ " 'hint': 'synonyms for coloured',\n",
+ " 'clues': [('emblazon', 'decorate with colors'),\n",
+ " ('color', 'modify or bias'),\n",
+ " ('colourise', 'add color to'),\n",
+ " ('colour in', 'add color to'),\n",
+ " ('discolour', 'change color, often in an undesired manner'),\n",
+ " ('gloss', 'give a deceptive explanation or excuse for'),\n",
+ " ('distort', 'affect as in thought or feeling'),\n",
+ " ('tinge', 'affect as in thought or feeling'),\n",
+ " ('colorize', 'add color to')]},\n",
+ " {'answer': 'combed',\n",
+ " 'hint': 'synonyms for combed',\n",
+ " 'clues': [('comb', 'smoothen and neaten with or as with a comb'),\n",
+ " ('comb out', 'smoothen and neaten with or as with a comb'),\n",
+ " ('ransack', 'search thoroughly'),\n",
+ " ('disentangle', 'smoothen and neaten with or as with a comb')]},\n",
+ " {'answer': 'combined',\n",
+ " 'hint': 'synonyms for combined',\n",
+ " 'clues': [('aggregate', 'gather in a mass, sum, or whole'),\n",
+ " ('unite', 'have or possess in combination'),\n",
+ " ('coalesce', 'mix together different elements'),\n",
+ " ('flux', 'mix together different elements'),\n",
+ " ('combine', 'combine so as to form a whole; mix'),\n",
+ " ('compound', 'put or add together'),\n",
+ " ('meld', 'mix together different elements'),\n",
+ " ('blend', 'mix together different elements'),\n",
+ " ('fuse', 'mix together different elements'),\n",
+ " ('mix', 'mix together different elements'),\n",
+ " ('conflate', 'mix together different elements'),\n",
+ " ('merge', 'mix together different elements'),\n",
+ " ('commingle', 'mix together different elements'),\n",
+ " ('immix', 'mix together different elements')]},\n",
+ " {'answer': 'comforted',\n",
+ " 'hint': 'synonyms for comforted',\n",
+ " 'clues': [('ease', 'lessen pain or discomfort; alleviate'),\n",
+ " ('console', 'give moral or emotional strength to'),\n",
+ " ('comfort', 'lessen pain or discomfort; alleviate'),\n",
+ " ('soothe', 'give moral or emotional strength to'),\n",
+ " ('solace', 'give moral or emotional strength to')]},\n",
+ " {'answer': 'comforting',\n",
+ " 'hint': 'synonyms for comforting',\n",
+ " 'clues': [('ease', 'lessen pain or discomfort; alleviate'),\n",
+ " ('console', 'give moral or emotional strength to'),\n",
+ " ('comfort', 'lessen pain or discomfort; alleviate'),\n",
+ " ('soothe', 'give moral or emotional strength to'),\n",
+ " ('solace', 'give moral or emotional strength to')]},\n",
+ " {'answer': 'coming',\n",
+ " 'hint': 'synonyms for coming',\n",
+ " 'clues': [('come', 'be found or available'),\n",
+ " ('get', 'reach a destination; arrive by movement or progress'),\n",
+ " ('arrive', 'reach a destination; arrive by movement or progress'),\n",
+ " ('total', 'add up in number or quantity'),\n",
+ " ('number', 'add up in number or quantity'),\n",
+ " ('follow', 'to be the product or result'),\n",
+ " ('get along', 'proceed or get along'),\n",
+ " ('add up', 'develop into'),\n",
+ " ('amount', 'develop into'),\n",
+ " ('come in', 'be received'),\n",
+ " ('fall', 'come under, be classified or included'),\n",
+ " ('issue forth', 'come forth'),\n",
+ " ('occur', \"come to one's mind; suggest itself\"),\n",
+ " ('make out', 'proceed or get along'),\n",
+ " ('fare', 'proceed or get along'),\n",
+ " ('hail', 'be a native of'),\n",
+ " ('come up',\n",
+ " 'move toward, travel toward something or somebody or approach something or somebody'),\n",
+ " ('descend',\n",
+ " 'come from; be connected by a relationship of blood, for example'),\n",
+ " ('do', 'proceed or get along'),\n",
+ " ('derive',\n",
+ " 'come from; be connected by a relationship of blood, for example')]},\n",
+ " {'answer': 'commanding',\n",
+ " 'hint': 'synonyms for commanding',\n",
+ " 'clues': [('require', 'make someone do something'),\n",
+ " ('overlook', 'look down on'),\n",
+ " ('command', 'exercise authoritative control or power over'),\n",
+ " ('control', 'exercise authoritative control or power over'),\n",
+ " ('overtop', 'look down on'),\n",
+ " ('dominate', 'look down on')]},\n",
+ " {'answer': 'commemorating',\n",
+ " 'hint': 'synonyms for commemorating',\n",
+ " 'clues': [('remember',\n",
+ " 'call to remembrance; keep alive the memory of someone or something, as in a ceremony'),\n",
+ " ('immortalize', 'be or provide a memorial to a person or an event'),\n",
+ " ('memorialise', 'be or provide a memorial to a person or an event'),\n",
+ " ('commemorate',\n",
+ " 'call to remembrance; keep alive the memory of someone or something, as in a ceremony'),\n",
+ " ('record', 'be or provide a memorial to a person or an event'),\n",
+ " ('mark', 'mark by some ceremony or observation')]},\n",
+ " {'answer': 'committed',\n",
+ " 'hint': 'synonyms for committed',\n",
+ " 'clues': [('institutionalize',\n",
+ " 'cause to be admitted; of persons to an institution'),\n",
+ " ('commit', 'give entirely to a specific person, activity, or cause'),\n",
+ " ('dedicate', 'give entirely to a specific person, activity, or cause'),\n",
+ " ('entrust', 'confer a trust upon'),\n",
+ " ('confide', 'confer a trust upon'),\n",
+ " ('pull', 'perform an act, usually with a negative connotation'),\n",
+ " ('devote', 'give entirely to a specific person, activity, or cause'),\n",
+ " ('consecrate', 'give entirely to a specific person, activity, or cause'),\n",
+ " ('invest', 'make an investment'),\n",
+ " ('send', 'cause to be admitted; of persons to an institution'),\n",
+ " ('trust', 'confer a trust upon'),\n",
+ " ('perpetrate', 'perform an act, usually with a negative connotation'),\n",
+ " ('give', 'give entirely to a specific person, activity, or cause'),\n",
+ " ('put', 'make an investment'),\n",
+ " ('charge', 'cause to be admitted; of persons to an institution'),\n",
+ " ('place', 'make an investment'),\n",
+ " ('practice', 'engage in or perform')]},\n",
+ " {'answer': 'compact',\n",
+ " 'hint': 'synonyms for compact',\n",
+ " 'clues': [('compress', 'squeeze or press together'),\n",
+ " ('bundle', 'compress into a wad'),\n",
+ " ('pack', 'compress into a wad'),\n",
+ " ('contract', 'squeeze or press together'),\n",
+ " ('constrict', 'squeeze or press together'),\n",
+ " ('pack together', 'make more compact by or as if by pressing'),\n",
+ " ('press', 'squeeze or press together'),\n",
+ " ('squeeze', 'squeeze or press together'),\n",
+ " ('wad', 'compress into a wad')]},\n",
+ " {'answer': 'compassionate',\n",
+ " 'hint': 'synonyms for compassionate',\n",
+ " 'clues': [('feel for', 'share the suffering of'),\n",
+ " ('pity', 'share the suffering of'),\n",
+ " ('condole with', 'share the suffering of'),\n",
+ " ('sympathize with', 'share the suffering of')]},\n",
+ " {'answer': 'compensated',\n",
+ " 'hint': 'synonyms for compensated',\n",
+ " 'clues': [('make up', 'adjust for'),\n",
+ " ('compensate', 'make amends for; pay compensation for'),\n",
+ " ('recompense', 'make amends for; pay compensation for'),\n",
+ " ('pay', 'do or give something to somebody in return'),\n",
+ " ('correct', 'make reparations or amends for'),\n",
+ " ('remunerate', 'make payment to; compensate'),\n",
+ " ('pay off', 'do or give something to somebody in return'),\n",
+ " ('cover',\n",
+ " 'make up for shortcomings or a feeling of inferiority by exaggerating good qualities'),\n",
+ " ('even up', 'adjust for'),\n",
+ " ('redress', 'make reparations or amends for'),\n",
+ " ('even out', 'adjust for'),\n",
+ " ('repair', 'make amends for; pay compensation for'),\n",
+ " ('right', 'make reparations or amends for'),\n",
+ " ('counterbalance', 'adjust for'),\n",
+ " ('overcompensate',\n",
+ " 'make up for shortcomings or a feeling of inferiority by exaggerating good qualities'),\n",
+ " ('even off', 'adjust for'),\n",
+ " ('indemnify', 'make amends for; pay compensation for')]},\n",
+ " {'answer': 'complaining',\n",
+ " 'hint': 'synonyms for complaining',\n",
+ " 'clues': [('sound off',\n",
+ " 'express complaints, discontent, displeasure, or unhappiness'),\n",
+ " ('complain', 'make a formal accusation; bring a formal charge'),\n",
+ " ('plain', 'express complaints, discontent, displeasure, or unhappiness'),\n",
+ " ('kick', 'express complaints, discontent, displeasure, or unhappiness'),\n",
+ " ('quetch', 'express complaints, discontent, displeasure, or unhappiness'),\n",
+ " ('kvetch',\n",
+ " 'express complaints, discontent, displeasure, or unhappiness')]},\n",
+ " {'answer': 'complete',\n",
+ " 'hint': 'synonyms for complete',\n",
+ " 'clues': [('finish', 'come or bring to a finish or an end'),\n",
+ " ('dispatch', 'complete or carry out'),\n",
+ " ('fill in', 'write all the required information onto a form'),\n",
+ " ('fill out', 'write all the required information onto a form'),\n",
+ " ('nail', 'complete a pass'),\n",
+ " ('make out', 'write all the required information onto a form'),\n",
+ " ('discharge', 'complete or carry out')]},\n",
+ " {'answer': 'completed',\n",
+ " 'hint': 'synonyms for completed',\n",
+ " 'clues': [('finish', 'come or bring to a finish or an end'),\n",
+ " ('fill out', 'write all the required information onto a form'),\n",
+ " ('discharge', 'complete or carry out'),\n",
+ " ('complete', 'complete or carry out'),\n",
+ " ('dispatch', 'complete or carry out'),\n",
+ " ('fill in', 'write all the required information onto a form'),\n",
+ " ('nail', 'complete a pass'),\n",
+ " ('make out', 'write all the required information onto a form')]},\n",
+ " {'answer': 'completing',\n",
+ " 'hint': 'synonyms for completing',\n",
+ " 'clues': [('finish', 'come or bring to a finish or an end'),\n",
+ " ('fill out', 'write all the required information onto a form'),\n",
+ " ('discharge', 'complete or carry out'),\n",
+ " ('complete', 'complete or carry out'),\n",
+ " ('dispatch', 'complete or carry out'),\n",
+ " ('fill in', 'write all the required information onto a form'),\n",
+ " ('nail', 'complete a pass'),\n",
+ " ('make out', 'write all the required information onto a form')]},\n",
+ " {'answer': 'complicated',\n",
+ " 'hint': 'synonyms for complicated',\n",
+ " 'clues': [('elaborate', 'make more complex, intricate, or richer'),\n",
+ " ('rarify', 'make more complex, intricate, or richer'),\n",
+ " ('complicate', 'make more complicated'),\n",
+ " ('perplex', 'make more complicated'),\n",
+ " ('refine', 'make more complex, intricate, or richer')]},\n",
+ " {'answer': 'composed',\n",
+ " 'hint': 'synonyms for composed',\n",
+ " 'clues': [('compose', 'make up plans or basic details for'),\n",
+ " ('write', 'write music'),\n",
+ " ('frame', 'make up plans or basic details for'),\n",
+ " ('compile', 'put together out of existing material'),\n",
+ " ('indite', 'produce a literary work'),\n",
+ " ('draw up', 'make up plans or basic details for'),\n",
+ " ('pen', 'produce a literary work')]},\n",
+ " {'answer': 'compound',\n",
+ " 'hint': 'synonyms for compound',\n",
+ " 'clues': [('combine', 'put or add together'),\n",
+ " ('heighten', 'make more intense, stronger, or more marked; ,'),\n",
+ " ('intensify', 'make more intense, stronger, or more marked; ,'),\n",
+ " ('deepen', 'make more intense, stronger, or more marked; ,')]},\n",
+ " {'answer': 'compounded',\n",
+ " 'hint': 'synonyms for compounded',\n",
+ " 'clues': [('combine', 'put or add together'),\n",
+ " ('heighten', 'make more intense, stronger, or more marked; ,'),\n",
+ " ('compound', 'make more intense, stronger, or more marked; ,'),\n",
+ " ('intensify', 'make more intense, stronger, or more marked; ,'),\n",
+ " ('deepen', 'make more intense, stronger, or more marked; ,')]},\n",
+ " {'answer': 'comprehended',\n",
+ " 'hint': 'synonyms for comprehended',\n",
+ " 'clues': [('grok', 'get the meaning of something'),\n",
+ " ('dig', 'get the meaning of something'),\n",
+ " ('cover',\n",
+ " \"include in scope; include as part of something broader; have as one's sphere or territory\"),\n",
+ " ('apprehend', 'get the meaning of something'),\n",
+ " ('comprehend', 'to become aware of through the senses'),\n",
+ " ('grasp', 'get the meaning of something'),\n",
+ " ('get the picture', 'get the meaning of something'),\n",
+ " ('perceive', 'to become aware of through the senses'),\n",
+ " ('embrace',\n",
+ " \"include in scope; include as part of something broader; have as one's sphere or territory\"),\n",
+ " ('compass', 'get the meaning of something'),\n",
+ " ('savvy', 'get the meaning of something')]},\n",
+ " {'answer': 'compressed',\n",
+ " 'hint': 'synonyms for compressed',\n",
+ " 'clues': [('compress', 'squeeze or press together'),\n",
+ " ('compact', 'squeeze or press together'),\n",
+ " ('contract', 'squeeze or press together'),\n",
+ " ('constrict', 'squeeze or press together'),\n",
+ " ('pack together', 'make more compact by or as if by pressing'),\n",
+ " ('press', 'squeeze or press together'),\n",
+ " ('squeeze', 'squeeze or press together')]},\n",
+ " {'answer': 'concealed',\n",
+ " 'hint': 'synonyms for concealed',\n",
+ " 'clues': [('conceal', 'prevent from being seen or discovered'),\n",
+ " ('hold in', 'hold back; keep from being perceived by others'),\n",
+ " ('hold back', 'hold back; keep from being perceived by others'),\n",
+ " ('hide', 'prevent from being seen or discovered')]},\n",
+ " {'answer': 'concealing',\n",
+ " 'hint': 'synonyms for concealing',\n",
+ " 'clues': [('conceal', 'prevent from being seen or discovered'),\n",
+ " ('hold in', 'hold back; keep from being perceived by others'),\n",
+ " ('hold back', 'hold back; keep from being perceived by others'),\n",
+ " ('hide', 'prevent from being seen or discovered')]},\n",
+ " {'answer': 'concentrated',\n",
+ " 'hint': 'synonyms for concentrated',\n",
+ " 'clues': [('contract', 'compress or concentrate'),\n",
+ " ('concentrate', 'draw together or meet in one common center'),\n",
+ " ('centralize', 'make central'),\n",
+ " ('reduce', 'be cooked until very little liquid is left'),\n",
+ " ('condense', 'make more concise'),\n",
+ " ('focus', \"direct one's attention on something\"),\n",
+ " ('boil down', 'be cooked until very little liquid is left'),\n",
+ " ('centre', \"direct one's attention on something\"),\n",
+ " ('pore', \"direct one's attention on something\"),\n",
+ " ('rivet', \"direct one's attention on something\"),\n",
+ " ('digest', 'make more concise'),\n",
+ " ('decoct', 'be cooked until very little liquid is left'),\n",
+ " ('center', \"direct one's attention on something\")]},\n",
+ " {'answer': 'concerned',\n",
+ " 'hint': 'synonyms for concerned',\n",
+ " 'clues': [('have-to doe with', 'be relevant to'),\n",
+ " ('concern', 'be on the mind of'),\n",
+ " ('worry', 'be on the mind of'),\n",
+ " ('relate', 'be relevant to'),\n",
+ " ('come to', 'be relevant to'),\n",
+ " ('pertain', 'be relevant to'),\n",
+ " ('refer', 'be relevant to'),\n",
+ " ('bear on', 'be relevant to'),\n",
+ " ('touch', 'be relevant to'),\n",
+ " ('occupy', 'be on the mind of'),\n",
+ " ('interest', 'be on the mind of'),\n",
+ " ('touch on', 'be relevant to')]},\n",
+ " {'answer': 'concluded',\n",
+ " 'hint': 'synonyms for concluded',\n",
+ " 'clues': [('conclude',\n",
+ " 'decide by reasoning; draw or come to a conclusion'),\n",
+ " ('reason', 'decide by reasoning; draw or come to a conclusion'),\n",
+ " ('close', 'come to a close'),\n",
+ " ('resolve', 'reach a conclusion after a discussion or deliberation'),\n",
+ " ('reason out', 'decide by reasoning; draw or come to a conclusion')]},\n",
+ " {'answer': 'concluding',\n",
+ " 'hint': 'synonyms for concluding',\n",
+ " 'clues': [('conclude',\n",
+ " 'decide by reasoning; draw or come to a conclusion'),\n",
+ " ('reason', 'decide by reasoning; draw or come to a conclusion'),\n",
+ " ('close', 'come to a close'),\n",
+ " ('resolve', 'reach a conclusion after a discussion or deliberation'),\n",
+ " ('reason out', 'decide by reasoning; draw or come to a conclusion')]},\n",
+ " {'answer': 'concurring',\n",
+ " 'hint': 'synonyms for concurring',\n",
+ " 'clues': [('concord', 'be in accord; be in agreement'),\n",
+ " ('concur', 'be in accord; be in agreement'),\n",
+ " ('coincide', 'happen simultaneously'),\n",
+ " ('hold', 'be in accord; be in agreement'),\n",
+ " ('agree', 'be in accord; be in agreement')]},\n",
+ " {'answer': 'condemning',\n",
+ " 'hint': 'synonyms for condemning',\n",
+ " 'clues': [('condemn', 'express strong disapproval of'),\n",
+ " ('excoriate', 'express strong disapproval of'),\n",
+ " ('doom', 'pronounce a sentence on (somebody) in a court of law'),\n",
+ " ('sentence', 'pronounce a sentence on (somebody) in a court of law'),\n",
+ " ('decry', 'express strong disapproval of'),\n",
+ " ('reprobate', 'express strong disapproval of'),\n",
+ " ('objurgate', 'express strong disapproval of')]},\n",
+ " {'answer': 'condescending',\n",
+ " 'hint': 'synonyms for condescending',\n",
+ " 'clues': [('patronise', 'treat condescendingly'),\n",
+ " ('condescend',\n",
+ " \"do something that one considers to be below one's dignity\"),\n",
+ " ('deign', \"do something that one considers to be below one's dignity\"),\n",
+ " ('lower oneself',\n",
+ " 'debase oneself morally, act in an undignified, unworthy, or dishonorable way'),\n",
+ " ('stoop',\n",
+ " 'debase oneself morally, act in an undignified, unworthy, or dishonorable way'),\n",
+ " ('descend',\n",
+ " \"do something that one considers to be below one's dignity\")]},\n",
+ " {'answer': 'conditioned',\n",
+ " 'hint': 'synonyms for conditioned',\n",
+ " 'clues': [('check',\n",
+ " \"develop (children's) behavior by instruction and practice; especially to teach self-control\"),\n",
+ " ('qualify',\n",
+ " 'specify as a condition or requirement in a contract or agreement; make an express demand or provision in an agreement'),\n",
+ " ('condition',\n",
+ " 'specify as a condition or requirement in a contract or agreement; make an express demand or provision in an agreement'),\n",
+ " ('specify',\n",
+ " 'specify as a condition or requirement in a contract or agreement; make an express demand or provision in an agreement'),\n",
+ " ('discipline',\n",
+ " \"develop (children's) behavior by instruction and practice; especially to teach self-control\"),\n",
+ " ('train',\n",
+ " \"develop (children's) behavior by instruction and practice; especially to teach self-control\"),\n",
+ " ('stipulate',\n",
+ " 'specify as a condition or requirement in a contract or agreement; make an express demand or provision in an agreement')]},\n",
+ " {'answer': 'confiding',\n",
+ " 'hint': 'synonyms for confiding',\n",
+ " 'clues': [('trust', 'confer a trust upon'),\n",
+ " ('entrust', 'confer a trust upon'),\n",
+ " ('confide', 'confer a trust upon'),\n",
+ " ('commit', 'confer a trust upon')]},\n",
+ " {'answer': 'confined',\n",
+ " 'hint': 'synonyms for confined',\n",
+ " 'clues': [('circumscribe', 'restrict or confine,'),\n",
+ " ('confine', 'close in; darkness enclosed him\"'),\n",
+ " ('throttle', 'place limits on (extent or access)'),\n",
+ " ('restrict', 'place limits on (extent or access)'),\n",
+ " ('limit', 'restrict or confine,'),\n",
+ " ('bound', 'place limits on (extent or access)'),\n",
+ " ('restrain', 'place limits on (extent or access)'),\n",
+ " ('hold', 'to close within bounds, limit or hold back from movement'),\n",
+ " ('detain', 'deprive of freedom; take into confinement'),\n",
+ " ('trammel', 'place limits on (extent or access)'),\n",
+ " ('enclose', 'close in; darkness enclosed him\"'),\n",
+ " ('hold in', 'close in; darkness enclosed him\"')]},\n",
+ " {'answer': 'confining',\n",
+ " 'hint': 'synonyms for confining',\n",
+ " 'clues': [('circumscribe', 'restrict or confine,'),\n",
+ " ('confine', 'close in; darkness enclosed him\"'),\n",
+ " ('throttle', 'place limits on (extent or access)'),\n",
+ " ('restrict', 'place limits on (extent or access)'),\n",
+ " ('limit', 'restrict or confine,'),\n",
+ " ('bound', 'place limits on (extent or access)'),\n",
+ " ('restrain', 'place limits on (extent or access)'),\n",
+ " ('hold', 'to close within bounds, limit or hold back from movement'),\n",
+ " ('detain', 'deprive of freedom; take into confinement'),\n",
+ " ('trammel', 'place limits on (extent or access)'),\n",
+ " ('enclose', 'close in; darkness enclosed him\"'),\n",
+ " ('hold in', 'close in; darkness enclosed him\"')]},\n",
+ " {'answer': 'confirmed',\n",
+ " 'hint': 'synonyms for confirmed',\n",
+ " 'clues': [('reassert', 'strengthen or make more firm'),\n",
+ " ('confirm', 'establish or strengthen as with new evidence or facts'),\n",
+ " ('affirm', 'establish or strengthen as with new evidence or facts'),\n",
+ " ('support', 'establish or strengthen as with new evidence or facts'),\n",
+ " ('sustain', 'establish or strengthen as with new evidence or facts'),\n",
+ " ('substantiate', 'establish or strengthen as with new evidence or facts'),\n",
+ " ('corroborate',\n",
+ " 'establish or strengthen as with new evidence or facts')]},\n",
+ " {'answer': 'confirming',\n",
+ " 'hint': 'synonyms for confirming',\n",
+ " 'clues': [('reassert', 'strengthen or make more firm'),\n",
+ " ('confirm', 'establish or strengthen as with new evidence or facts'),\n",
+ " ('affirm', 'establish or strengthen as with new evidence or facts'),\n",
+ " ('support', 'establish or strengthen as with new evidence or facts'),\n",
+ " ('sustain', 'establish or strengthen as with new evidence or facts'),\n",
+ " ('substantiate', 'establish or strengthen as with new evidence or facts'),\n",
+ " ('corroborate',\n",
+ " 'establish or strengthen as with new evidence or facts')]},\n",
+ " {'answer': 'confiscate',\n",
+ " 'hint': 'synonyms for confiscate',\n",
+ " 'clues': [('impound',\n",
+ " 'take temporary possession of as a security, by legal authority'),\n",
+ " ('sequester',\n",
+ " 'take temporary possession of as a security, by legal authority'),\n",
+ " ('seize',\n",
+ " 'take temporary possession of as a security, by legal authority'),\n",
+ " ('attach',\n",
+ " 'take temporary possession of as a security, by legal authority')]},\n",
+ " {'answer': 'conflicting',\n",
+ " 'hint': 'synonyms for conflicting',\n",
+ " 'clues': [('conflict', 'be in conflict'),\n",
+ " ('run afoul', 'go against, as of rules and laws'),\n",
+ " ('contravene', 'go against, as of rules and laws'),\n",
+ " ('infringe', 'go against, as of rules and laws')]},\n",
+ " {'answer': 'confounded',\n",
+ " 'hint': 'synonyms for confounded',\n",
+ " 'clues': [('fuddle',\n",
+ " 'be confusing or perplexing to; cause to be unable to think clearly'),\n",
+ " ('bedevil',\n",
+ " 'be confusing or perplexing to; cause to be unable to think clearly'),\n",
+ " ('discombobulate',\n",
+ " 'be confusing or perplexing to; cause to be unable to think clearly'),\n",
+ " ('fox',\n",
+ " 'be confusing or perplexing to; cause to be unable to think clearly'),\n",
+ " ('confuse', 'mistake one thing for another'),\n",
+ " ('throw',\n",
+ " 'be confusing or perplexing to; cause to be unable to think clearly'),\n",
+ " ('confound', 'mistake one thing for another')]},\n",
+ " {'answer': 'confounding',\n",
+ " 'hint': 'synonyms for confounding',\n",
+ " 'clues': [('fuddle',\n",
+ " 'be confusing or perplexing to; cause to be unable to think clearly'),\n",
+ " ('bedevil',\n",
+ " 'be confusing or perplexing to; cause to be unable to think clearly'),\n",
+ " ('discombobulate',\n",
+ " 'be confusing or perplexing to; cause to be unable to think clearly'),\n",
+ " ('fox',\n",
+ " 'be confusing or perplexing to; cause to be unable to think clearly'),\n",
+ " ('confuse', 'mistake one thing for another'),\n",
+ " ('throw',\n",
+ " 'be confusing or perplexing to; cause to be unable to think clearly'),\n",
+ " ('confound', 'mistake one thing for another')]},\n",
+ " {'answer': 'confused',\n",
+ " 'hint': 'synonyms for confused',\n",
+ " 'clues': [('disconcert', 'cause to feel embarrassment'),\n",
+ " ('discombobulate',\n",
+ " 'be confusing or perplexing to; cause to be unable to think clearly'),\n",
+ " ('fox',\n",
+ " 'be confusing or perplexing to; cause to be unable to think clearly'),\n",
+ " ('befuddle',\n",
+ " 'be confusing or perplexing to; cause to be unable to think clearly'),\n",
+ " ('confuse', 'cause to feel embarrassment'),\n",
+ " ('put off', 'cause to feel embarrassment'),\n",
+ " ('confound',\n",
+ " 'be confusing or perplexing to; cause to be unable to think clearly'),\n",
+ " ('flurry', 'cause to feel embarrassment'),\n",
+ " ('mix up', 'assemble without order or sense'),\n",
+ " ('jumble', 'assemble without order or sense'),\n",
+ " ('bedevil',\n",
+ " 'be confusing or perplexing to; cause to be unable to think clearly'),\n",
+ " ('obnubilate', 'make unclear, indistinct, or blurred'),\n",
+ " ('blur', 'make unclear, indistinct, or blurred'),\n",
+ " ('throw',\n",
+ " 'be confusing or perplexing to; cause to be unable to think clearly'),\n",
+ " ('obscure', 'make unclear, indistinct, or blurred')]},\n",
+ " {'answer': 'confusing',\n",
+ " 'hint': 'synonyms for confusing',\n",
+ " 'clues': [('disconcert', 'cause to feel embarrassment'),\n",
+ " ('discombobulate',\n",
+ " 'be confusing or perplexing to; cause to be unable to think clearly'),\n",
+ " ('fox',\n",
+ " 'be confusing or perplexing to; cause to be unable to think clearly'),\n",
+ " ('befuddle',\n",
+ " 'be confusing or perplexing to; cause to be unable to think clearly'),\n",
+ " ('confuse', 'cause to feel embarrassment'),\n",
+ " ('put off', 'cause to feel embarrassment'),\n",
+ " ('confound',\n",
+ " 'be confusing or perplexing to; cause to be unable to think clearly'),\n",
+ " ('flurry', 'cause to feel embarrassment'),\n",
+ " ('mix up', 'assemble without order or sense'),\n",
+ " ('jumble', 'assemble without order or sense'),\n",
+ " ('bedevil',\n",
+ " 'be confusing or perplexing to; cause to be unable to think clearly'),\n",
+ " ('obnubilate', 'make unclear, indistinct, or blurred'),\n",
+ " ('blur', 'make unclear, indistinct, or blurred'),\n",
+ " ('throw',\n",
+ " 'be confusing or perplexing to; cause to be unable to think clearly'),\n",
+ " ('obscure', 'make unclear, indistinct, or blurred')]},\n",
+ " {'answer': 'congested',\n",
+ " 'hint': 'synonyms for congested',\n",
+ " 'clues': [('back up', 'become or cause to become obstructed'),\n",
+ " ('clog up', 'become or cause to become obstructed'),\n",
+ " ('foul', 'become or cause to become obstructed'),\n",
+ " ('choke off', 'become or cause to become obstructed'),\n",
+ " ('choke', 'become or cause to become obstructed'),\n",
+ " ('congest', 'become or cause to become obstructed'),\n",
+ " ('clog', 'become or cause to become obstructed')]},\n",
+ " {'answer': 'conglomerate',\n",
+ " 'hint': 'synonyms for conglomerate',\n",
+ " 'clues': [('gather', 'collect or gather'),\n",
+ " ('cumulate', 'collect or gather'),\n",
+ " ('amass', 'collect or gather'),\n",
+ " ('pile up', 'collect or gather')]},\n",
+ " {'answer': 'conjoined',\n",
+ " 'hint': 'synonyms for conjoined',\n",
+ " 'clues': [('join', 'make contact or come together'),\n",
+ " ('get hitched with', 'take in marriage'),\n",
+ " ('conjoin', 'take in marriage'),\n",
+ " ('wed', 'take in marriage'),\n",
+ " ('espouse', 'take in marriage'),\n",
+ " ('get married', 'take in marriage'),\n",
+ " ('hook up with', 'take in marriage'),\n",
+ " ('marry', 'take in marriage')]},\n",
+ " {'answer': 'connected',\n",
+ " 'hint': 'synonyms for connected',\n",
+ " 'clues': [('relate', 'make a logical or causal connection'),\n",
+ " ('tie in', 'make a logical or causal connection'),\n",
+ " ('connect', 'make a logical or causal connection'),\n",
+ " ('link up', 'connect, fasten, or put together two or more pieces'),\n",
+ " ('colligate', 'make a logical or causal connection'),\n",
+ " ('tie', 'connect, fasten, or put together two or more pieces'),\n",
+ " ('link', 'make a logical or causal connection'),\n",
+ " ('plug into', 'plug into an outlet'),\n",
+ " ('associate', 'make a logical or causal connection'),\n",
+ " ('get in touch', 'establish communication with someone'),\n",
+ " ('unite', 'be or become joined or united or linked'),\n",
+ " ('join', 'be or become joined or united or linked'),\n",
+ " ('touch base', 'establish communication with someone')]},\n",
+ " {'answer': 'consecrate',\n",
+ " 'hint': 'synonyms for consecrate',\n",
+ " 'clues': [('hallow', 'render holy by means of religious rites'),\n",
+ " ('bless', 'render holy by means of religious rites'),\n",
+ " ('commit', 'give entirely to a specific person, activity, or cause'),\n",
+ " ('give', 'give entirely to a specific person, activity, or cause'),\n",
+ " ('ordinate', 'appoint to a clerical posts'),\n",
+ " ('dedicate', 'give entirely to a specific person, activity, or cause'),\n",
+ " ('vow', 'dedicate to a deity by a vow'),\n",
+ " ('order', 'appoint to a clerical posts'),\n",
+ " ('sanctify', 'render holy by means of religious rites'),\n",
+ " ('ordain', 'appoint to a clerical posts'),\n",
+ " ('devote', 'give entirely to a specific person, activity, or cause')]},\n",
+ " {'answer': 'consecrated',\n",
+ " 'hint': 'synonyms for consecrated',\n",
+ " 'clues': [('hallow', 'render holy by means of religious rites'),\n",
+ " ('bless', 'render holy by means of religious rites'),\n",
+ " ('commit', 'give entirely to a specific person, activity, or cause'),\n",
+ " ('ordinate', 'appoint to a clerical posts'),\n",
+ " ('give', 'give entirely to a specific person, activity, or cause'),\n",
+ " ('consecrate', 'appoint to a clerical posts'),\n",
+ " ('dedicate', 'give entirely to a specific person, activity, or cause'),\n",
+ " ('vow', 'dedicate to a deity by a vow'),\n",
+ " ('order', 'appoint to a clerical posts'),\n",
+ " ('ordain', 'appoint to a clerical posts'),\n",
+ " ('sanctify', 'render holy by means of religious rites'),\n",
+ " ('devote', 'give entirely to a specific person, activity, or cause')]},\n",
+ " {'answer': 'conserved',\n",
+ " 'hint': 'synonyms for conserved',\n",
+ " 'clues': [('husband', 'use cautiously and frugally'),\n",
+ " ('maintain',\n",
+ " 'keep in safety and protect from harm, decay, loss, or destruction'),\n",
+ " ('conserve', 'use cautiously and frugally'),\n",
+ " ('economize', 'use cautiously and frugally'),\n",
+ " ('preserve',\n",
+ " 'keep in safety and protect from harm, decay, loss, or destruction'),\n",
+ " ('keep up',\n",
+ " 'keep in safety and protect from harm, decay, loss, or destruction')]},\n",
+ " {'answer': 'considered',\n",
+ " 'hint': 'synonyms for considered',\n",
+ " 'clues': [('look at', 'look at carefully; study mentally'),\n",
+ " ('deliberate', 'think about carefully; weigh'),\n",
+ " ('weigh', 'show consideration for; take into account'),\n",
+ " ('consider', 'think about carefully; weigh'),\n",
+ " ('view', 'look at carefully; study mentally'),\n",
+ " ('count', 'show consideration for; take into account'),\n",
+ " ('debate', 'think about carefully; weigh'),\n",
+ " ('regard', 'deem to be'),\n",
+ " ('take', 'take into consideration for exemplifying purposes'),\n",
+ " ('moot', 'think about carefully; weigh'),\n",
+ " ('believe', 'judge or regard; look upon; judge'),\n",
+ " ('think', 'judge or regard; look upon; judge'),\n",
+ " ('turn over', 'think about carefully; weigh'),\n",
+ " ('study', 'give careful consideration to'),\n",
+ " ('deal', 'take into consideration for exemplifying purposes'),\n",
+ " ('conceive', 'judge or regard; look upon; judge'),\n",
+ " ('see', 'deem to be'),\n",
+ " ('reckon', 'deem to be')]},\n",
+ " {'answer': 'consoling',\n",
+ " 'hint': 'synonyms for consoling',\n",
+ " 'clues': [('soothe', 'give moral or emotional strength to'),\n",
+ " ('console', 'give moral or emotional strength to'),\n",
+ " ('solace', 'give moral or emotional strength to'),\n",
+ " ('comfort', 'give moral or emotional strength to')]},\n",
+ " {'answer': 'constituted',\n",
+ " 'hint': 'synonyms for constituted',\n",
+ " 'clues': [('represent', 'form or compose'),\n",
+ " ('nominate', 'create and charge with a task or function'),\n",
+ " ('constitute', 'create and charge with a task or function'),\n",
+ " ('institute', 'set up or lay the groundwork for'),\n",
+ " ('form', 'to compose or represent:'),\n",
+ " ('found', 'set up or lay the groundwork for'),\n",
+ " ('plant', 'set up or lay the groundwork for'),\n",
+ " ('make', 'to compose or represent:'),\n",
+ " ('name', 'create and charge with a task or function'),\n",
+ " ('appoint', 'create and charge with a task or function'),\n",
+ " ('be', 'form or compose'),\n",
+ " ('make up', 'form or compose'),\n",
+ " ('comprise', 'form or compose'),\n",
+ " ('establish', 'set up or lay the groundwork for')]},\n",
+ " {'answer': 'constrained',\n",
+ " 'hint': 'synonyms for constrained',\n",
+ " 'clues': [('stiffen', 'restrict'),\n",
+ " ('restrain', 'hold back'),\n",
+ " ('constrain', 'restrict'),\n",
+ " ('tighten', 'restrict'),\n",
+ " ('tighten up', 'restrict'),\n",
+ " ('cumber', 'hold back')]},\n",
+ " {'answer': 'constraining',\n",
+ " 'hint': 'synonyms for constraining',\n",
+ " 'clues': [('stiffen', 'restrict'),\n",
+ " ('restrain', 'hold back'),\n",
+ " ('constrain', 'restrict'),\n",
+ " ('tighten', 'restrict'),\n",
+ " ('tighten up', 'restrict'),\n",
+ " ('cumber', 'hold back')]},\n",
+ " {'answer': 'constricted',\n",
+ " 'hint': 'synonyms for constricted',\n",
+ " 'clues': [('compress', 'squeeze or press together'),\n",
+ " ('compact', 'squeeze or press together'),\n",
+ " ('contract', 'squeeze or press together'),\n",
+ " ('constringe', 'become tight or as if tight'),\n",
+ " ('constrict', 'squeeze or press together'),\n",
+ " ('narrow', 'become tight or as if tight'),\n",
+ " ('press', 'squeeze or press together'),\n",
+ " ('squeeze', 'squeeze or press together')]},\n",
+ " {'answer': 'constricting',\n",
+ " 'hint': 'synonyms for constricting',\n",
+ " 'clues': [('compress', 'squeeze or press together'),\n",
+ " ('compact', 'squeeze or press together'),\n",
+ " ('contract', 'squeeze or press together'),\n",
+ " ('constringe', 'become tight or as if tight'),\n",
+ " ('constrict', 'squeeze or press together'),\n",
+ " ('narrow', 'become tight or as if tight'),\n",
+ " ('press', 'squeeze or press together'),\n",
+ " ('squeeze', 'squeeze or press together')]},\n",
+ " {'answer': 'consuming',\n",
+ " 'hint': 'synonyms for consuming',\n",
+ " 'clues': [('ware', 'spend extravagantly'),\n",
+ " ('consume', 'use up (resources or materials)'),\n",
+ " ('devour', 'eat immoderately'),\n",
+ " ('waste', 'spend extravagantly'),\n",
+ " ('use up', 'use up (resources or materials)'),\n",
+ " ('eat up', 'use up (resources or materials)'),\n",
+ " ('eat', 'use up (resources or materials)'),\n",
+ " ('wipe out', 'use up (resources or materials)'),\n",
+ " ('exhaust', 'use up (resources or materials)'),\n",
+ " ('deplete', 'use up (resources or materials)'),\n",
+ " ('run through', 'use up (resources or materials)'),\n",
+ " ('down', 'eat immoderately'),\n",
+ " ('ingest', 'serve oneself to, or consume regularly'),\n",
+ " ('take in', 'serve oneself to, or consume regularly'),\n",
+ " ('squander', 'spend extravagantly'),\n",
+ " ('take', 'serve oneself to, or consume regularly'),\n",
+ " ('go through', 'eat immoderately'),\n",
+ " ('have', 'serve oneself to, or consume regularly')]},\n",
+ " {'answer': 'contained',\n",
+ " 'hint': 'synonyms for contained',\n",
+ " 'clues': [('contain',\n",
+ " 'hold back, as of a danger or an enemy; check the expansion or influence of'),\n",
+ " ('control',\n",
+ " 'lessen the intensity of; temper; hold in restraint; hold or keep within limits'),\n",
+ " ('hold', 'be capable of holding or containing'),\n",
+ " ('stop',\n",
+ " 'hold back, as of a danger or an enemy; check the expansion or influence of'),\n",
+ " ('comprise', 'include or contain; have as a component'),\n",
+ " ('take', 'be capable of holding or containing'),\n",
+ " ('turn back',\n",
+ " 'hold back, as of a danger or an enemy; check the expansion or influence of'),\n",
+ " ('incorporate', 'include or contain; have as a component'),\n",
+ " ('arrest',\n",
+ " 'hold back, as of a danger or an enemy; check the expansion or influence of'),\n",
+ " ('check',\n",
+ " 'hold back, as of a danger or an enemy; check the expansion or influence of'),\n",
+ " ('bear', 'contain or hold; have within'),\n",
+ " ('curb',\n",
+ " 'lessen the intensity of; temper; hold in restraint; hold or keep within limits'),\n",
+ " ('moderate',\n",
+ " 'lessen the intensity of; temper; hold in restraint; hold or keep within limits'),\n",
+ " ('hold in',\n",
+ " 'lessen the intensity of; temper; hold in restraint; hold or keep within limits'),\n",
+ " ('hold back',\n",
+ " 'hold back, as of a danger or an enemy; check the expansion or influence of'),\n",
+ " ('carry', 'contain or hold; have within')]},\n",
+ " {'answer': 'continued',\n",
+ " 'hint': 'synonyms for continued',\n",
+ " 'clues': [('retain',\n",
+ " 'allow to remain in a place or position or maintain a property or feature'),\n",
+ " ('proceed', 'move ahead; travel onward in time or space'),\n",
+ " ('continue', 'continue talking; he continued,'),\n",
+ " ('stay on', 'continue in a place, position, or situation'),\n",
+ " ('bear on',\n",
+ " 'keep or maintain in unaltered condition; cause to remain or last'),\n",
+ " ('go on', 'continue talking; he continued,'),\n",
+ " ('go along', 'continue a certain state, condition, or activity'),\n",
+ " ('uphold',\n",
+ " 'keep or maintain in unaltered condition; cause to remain or last'),\n",
+ " ('extend', 'span an interval of distance, space or time'),\n",
+ " ('keep', 'continue a certain state, condition, or activity'),\n",
+ " ('go forward', 'move ahead; travel onward in time or space'),\n",
+ " ('remain', 'continue in a place, position, or situation'),\n",
+ " ('carry on', 'continue talking; he continued,'),\n",
+ " ('persist in',\n",
+ " 'do something repeatedly and showing no intention to stop'),\n",
+ " ('keep on',\n",
+ " 'allow to remain in a place or position or maintain a property or feature'),\n",
+ " ('stay', 'continue in a place, position, or situation'),\n",
+ " ('cover', 'span an interval of distance, space or time'),\n",
+ " ('preserve',\n",
+ " 'keep or maintain in unaltered condition; cause to remain or last')]},\n",
+ " {'answer': 'continuing',\n",
+ " 'hint': 'synonyms for continuing',\n",
+ " 'clues': [('retain',\n",
+ " 'allow to remain in a place or position or maintain a property or feature'),\n",
+ " ('proceed', 'move ahead; travel onward in time or space'),\n",
+ " ('continue', 'continue talking; he continued,'),\n",
+ " ('stay on', 'continue in a place, position, or situation'),\n",
+ " ('bear on',\n",
+ " 'keep or maintain in unaltered condition; cause to remain or last'),\n",
+ " ('go on', 'continue talking; he continued,'),\n",
+ " ('go along', 'continue a certain state, condition, or activity'),\n",
+ " ('uphold',\n",
+ " 'keep or maintain in unaltered condition; cause to remain or last'),\n",
+ " ('extend', 'span an interval of distance, space or time'),\n",
+ " ('keep', 'continue a certain state, condition, or activity'),\n",
+ " ('go forward', 'move ahead; travel onward in time or space'),\n",
+ " ('remain', 'continue in a place, position, or situation'),\n",
+ " ('carry on', 'continue talking; he continued,'),\n",
+ " ('persist in',\n",
+ " 'do something repeatedly and showing no intention to stop'),\n",
+ " ('keep on',\n",
+ " 'allow to remain in a place or position or maintain a property or feature'),\n",
+ " ('stay', 'continue in a place, position, or situation'),\n",
+ " ('cover', 'span an interval of distance, space or time'),\n",
+ " ('preserve',\n",
+ " 'keep or maintain in unaltered condition; cause to remain or last')]},\n",
+ " {'answer': 'contorted',\n",
+ " 'hint': 'synonyms for contorted',\n",
+ " 'clues': [('contort', 'twist and press out of shape'),\n",
+ " ('wring', 'twist and press out of shape'),\n",
+ " ('distort', 'twist and press out of shape'),\n",
+ " ('deform', 'twist and press out of shape')]},\n",
+ " {'answer': 'contracted',\n",
+ " 'hint': 'synonyms for contracted',\n",
+ " 'clues': [('contract', 'compress or concentrate'),\n",
+ " ('compress', 'squeeze or press together'),\n",
+ " ('reduce', 'reduce in scope while retaining essential elements'),\n",
+ " ('compact', 'squeeze or press together'),\n",
+ " ('foreshorten', 'reduce in scope while retaining essential elements'),\n",
+ " ('abridge', 'reduce in scope while retaining essential elements'),\n",
+ " ('take', 'be stricken by an illness, fall victim to an illness'),\n",
+ " ('condense', 'compress or concentrate'),\n",
+ " ('sign on', 'engage by written agreement'),\n",
+ " ('shrink', 'become smaller or draw together'),\n",
+ " ('get', 'be stricken by an illness, fall victim to an illness'),\n",
+ " ('undertake', 'enter into a contractual arrangement'),\n",
+ " ('concentrate', 'compress or concentrate'),\n",
+ " ('press', 'squeeze or press together'),\n",
+ " ('cut', 'reduce in scope while retaining essential elements'),\n",
+ " ('squeeze', 'squeeze or press together'),\n",
+ " ('abbreviate', 'reduce in scope while retaining essential elements'),\n",
+ " ('sign up', 'engage by written agreement'),\n",
+ " ('constrict', 'squeeze or press together'),\n",
+ " ('sign', 'engage by written agreement'),\n",
+ " ('shorten', 'reduce in scope while retaining essential elements'),\n",
+ " ('narrow', 'make or become more narrow or restricted')]},\n",
+ " {'answer': 'contributing',\n",
+ " 'hint': 'synonyms for contributing',\n",
+ " 'clues': [('lend', 'bestow a quality on'),\n",
+ " ('lead', 'be conducive to'),\n",
+ " ('bestow', 'bestow a quality on'),\n",
+ " ('conduce', 'be conducive to'),\n",
+ " ('chip in', 'contribute to some cause'),\n",
+ " ('give', 'contribute to some cause'),\n",
+ " ('kick in', 'contribute to some cause'),\n",
+ " ('contribute', 'be conducive to'),\n",
+ " ('put up', 'provide'),\n",
+ " ('bring', 'bestow a quality on'),\n",
+ " ('impart', 'bestow a quality on'),\n",
+ " ('add', 'bestow a quality on')]},\n",
+ " {'answer': 'contrived',\n",
+ " 'hint': 'synonyms for contrived',\n",
+ " 'clues': [('contrive',\n",
+ " 'come up with (an idea, plan, explanation, theory, or principle) after a mental effort'),\n",
+ " ('formulate',\n",
+ " 'come up with (an idea, plan, explanation, theory, or principle) after a mental effort'),\n",
+ " ('forge',\n",
+ " 'come up with (an idea, plan, explanation, theory, or principle) after a mental effort'),\n",
+ " ('excogitate',\n",
+ " 'come up with (an idea, plan, explanation, theory, or principle) after a mental effort'),\n",
+ " ('project', 'make or work out a plan for; devise'),\n",
+ " ('cast', 'put or send forth'),\n",
+ " ('design', 'make or work out a plan for; devise'),\n",
+ " ('throw', 'put or send forth'),\n",
+ " ('plan', 'make or work out a plan for; devise'),\n",
+ " ('invent',\n",
+ " 'come up with (an idea, plan, explanation, theory, or principle) after a mental effort'),\n",
+ " ('devise',\n",
+ " 'come up with (an idea, plan, explanation, theory, or principle) after a mental effort')]},\n",
+ " {'answer': 'controlled',\n",
+ " 'hint': 'synonyms for controlled',\n",
+ " 'clues': [('verify',\n",
+ " 'check or regulate (a scientific experiment) by conducting a parallel experiment or comparing with another standard'),\n",
+ " ('command', 'exercise authoritative control or power over'),\n",
+ " ('see to it',\n",
+ " 'be careful or certain to do something; make certain of something'),\n",
+ " ('ascertain',\n",
+ " 'be careful or certain to do something; make certain of something'),\n",
+ " ('control',\n",
+ " 'check or regulate (a scientific experiment) by conducting a parallel experiment or comparing with another standard'),\n",
+ " ('see',\n",
+ " 'be careful or certain to do something; make certain of something'),\n",
+ " ('contain',\n",
+ " 'lessen the intensity of; temper; hold in restraint; hold or keep within limits'),\n",
+ " ('manipulate',\n",
+ " \"control (others or oneself) or influence skillfully, usually to one's advantage\"),\n",
+ " ('hold',\n",
+ " 'lessen the intensity of; temper; hold in restraint; hold or keep within limits'),\n",
+ " ('check',\n",
+ " 'be careful or certain to do something; make certain of something'),\n",
+ " ('assure',\n",
+ " 'be careful or certain to do something; make certain of something'),\n",
+ " ('master', 'have a firm understanding or knowledge of; be on top of'),\n",
+ " ('curb',\n",
+ " 'lessen the intensity of; temper; hold in restraint; hold or keep within limits'),\n",
+ " ('keep in line',\n",
+ " \"control (others or oneself) or influence skillfully, usually to one's advantage\"),\n",
+ " ('moderate',\n",
+ " 'lessen the intensity of; temper; hold in restraint; hold or keep within limits'),\n",
+ " ('hold in',\n",
+ " 'lessen the intensity of; temper; hold in restraint; hold or keep within limits'),\n",
+ " ('ensure',\n",
+ " 'be careful or certain to do something; make certain of something'),\n",
+ " ('insure',\n",
+ " 'be careful or certain to do something; make certain of something'),\n",
+ " ('operate', 'handle and cause to function')]},\n",
+ " {'answer': 'controlling',\n",
+ " 'hint': 'synonyms for controlling',\n",
+ " 'clues': [('verify',\n",
+ " 'check or regulate (a scientific experiment) by conducting a parallel experiment or comparing with another standard'),\n",
+ " ('command', 'exercise authoritative control or power over'),\n",
+ " ('see to it',\n",
+ " 'be careful or certain to do something; make certain of something'),\n",
+ " ('ascertain',\n",
+ " 'be careful or certain to do something; make certain of something'),\n",
+ " ('control',\n",
+ " 'check or regulate (a scientific experiment) by conducting a parallel experiment or comparing with another standard'),\n",
+ " ('see',\n",
+ " 'be careful or certain to do something; make certain of something'),\n",
+ " ('contain',\n",
+ " 'lessen the intensity of; temper; hold in restraint; hold or keep within limits'),\n",
+ " ('manipulate',\n",
+ " \"control (others or oneself) or influence skillfully, usually to one's advantage\"),\n",
+ " ('hold',\n",
+ " 'lessen the intensity of; temper; hold in restraint; hold or keep within limits'),\n",
+ " ('check',\n",
+ " 'be careful or certain to do something; make certain of something'),\n",
+ " ('assure',\n",
+ " 'be careful or certain to do something; make certain of something'),\n",
+ " ('master', 'have a firm understanding or knowledge of; be on top of'),\n",
+ " ('curb',\n",
+ " 'lessen the intensity of; temper; hold in restraint; hold or keep within limits'),\n",
+ " ('keep in line',\n",
+ " \"control (others or oneself) or influence skillfully, usually to one's advantage\"),\n",
+ " ('moderate',\n",
+ " 'lessen the intensity of; temper; hold in restraint; hold or keep within limits'),\n",
+ " ('hold in',\n",
+ " 'lessen the intensity of; temper; hold in restraint; hold or keep within limits'),\n",
+ " ('ensure',\n",
+ " 'be careful or certain to do something; make certain of something'),\n",
+ " ('insure',\n",
+ " 'be careful or certain to do something; make certain of something'),\n",
+ " ('operate', 'handle and cause to function')]},\n",
+ " {'answer': 'converted',\n",
+ " 'hint': 'synonyms for converted',\n",
+ " 'clues': [('commute',\n",
+ " 'exchange or replace with another, usually of the same kind or category'),\n",
+ " ('convert', 'complete successfully'),\n",
+ " ('exchange',\n",
+ " 'exchange or replace with another, usually of the same kind or category'),\n",
+ " ('win over',\n",
+ " 'make (someone) agree, understand, or realize the truth or validity of something'),\n",
+ " ('change over',\n",
+ " 'change from one system to another or to a new plan or policy'),\n",
+ " ('convince',\n",
+ " 'make (someone) agree, understand, or realize the truth or validity of something')]},\n",
+ " {'answer': 'convolute',\n",
+ " 'hint': 'synonyms for convolute',\n",
+ " 'clues': [('sophisticate',\n",
+ " 'practice sophistry; change the meaning of or be vague about in order to mislead or deceive'),\n",
+ " ('twist',\n",
+ " 'practice sophistry; change the meaning of or be vague about in order to mislead or deceive'),\n",
+ " ('twist around',\n",
+ " 'practice sophistry; change the meaning of or be vague about in order to mislead or deceive'),\n",
+ " ('convolve', 'curl, wind, or twist together'),\n",
+ " ('pervert',\n",
+ " 'practice sophistry; change the meaning of or be vague about in order to mislead or deceive')]},\n",
+ " {'answer': 'convoluted',\n",
+ " 'hint': 'synonyms for convoluted',\n",
+ " 'clues': [('sophisticate',\n",
+ " 'practice sophistry; change the meaning of or be vague about in order to mislead or deceive'),\n",
+ " ('convolute',\n",
+ " 'practice sophistry; change the meaning of or be vague about in order to mislead or deceive'),\n",
+ " ('twist',\n",
+ " 'practice sophistry; change the meaning of or be vague about in order to mislead or deceive'),\n",
+ " ('twist around',\n",
+ " 'practice sophistry; change the meaning of or be vague about in order to mislead or deceive'),\n",
+ " ('convolve', 'curl, wind, or twist together'),\n",
+ " ('pervert',\n",
+ " 'practice sophistry; change the meaning of or be vague about in order to mislead or deceive')]},\n",
+ " {'answer': 'cooked',\n",
+ " 'hint': 'synonyms for cooked',\n",
+ " 'clues': [('misrepresent', 'tamper, with the purpose of deception'),\n",
+ " ('cook', 'prepare a hot meal'),\n",
+ " ('ready', 'prepare for eating by applying heat'),\n",
+ " ('fudge', 'tamper, with the purpose of deception'),\n",
+ " ('wangle', 'tamper, with the purpose of deception'),\n",
+ " ('falsify', 'tamper, with the purpose of deception'),\n",
+ " ('prepare', 'prepare for eating by applying heat'),\n",
+ " ('make', 'prepare for eating by applying heat'),\n",
+ " ('fix', 'prepare for eating by applying heat'),\n",
+ " ('manipulate', 'tamper, with the purpose of deception'),\n",
+ " ('fake', 'tamper, with the purpose of deception')]},\n",
+ " {'answer': 'correct',\n",
+ " 'hint': 'synonyms for correct',\n",
+ " 'clues': [('make up', 'adjust for'),\n",
+ " ('objurgate', 'censure severely'),\n",
+ " ('chasten', 'censure severely'),\n",
+ " ('chastise', 'censure severely'),\n",
+ " ('right', 'make right or correct'),\n",
+ " ('set',\n",
+ " 'alter or regulate so as to achieve accuracy or conform to a standard'),\n",
+ " ('compensate', 'make reparations or amends for'),\n",
+ " ('even up', 'adjust for'),\n",
+ " ('castigate', 'censure severely'),\n",
+ " ('redress', 'make reparations or amends for'),\n",
+ " ('even out', 'adjust for'),\n",
+ " ('adjust',\n",
+ " 'alter or regulate so as to achieve accuracy or conform to a standard'),\n",
+ " ('discipline', 'punish in order to gain control or enforce obedience'),\n",
+ " ('rectify', 'make right or correct'),\n",
+ " ('sort out', 'punish in order to gain control or enforce obedience'),\n",
+ " ('counterbalance', 'adjust for'),\n",
+ " ('slump', 'go down in value'),\n",
+ " ('even off', 'adjust for'),\n",
+ " ('decline', 'go down in value')]},\n",
+ " {'answer': 'corrected',\n",
+ " 'hint': 'synonyms for corrected',\n",
+ " 'clues': [('make up', 'adjust for'),\n",
+ " ('objurgate', 'censure severely'),\n",
+ " ('chasten', 'censure severely'),\n",
+ " ('chastise', 'censure severely'),\n",
+ " ('correct', 'treat a defect'),\n",
+ " ('right', 'make right or correct'),\n",
+ " ('set',\n",
+ " 'alter or regulate so as to achieve accuracy or conform to a standard'),\n",
+ " ('compensate', 'make reparations or amends for'),\n",
+ " ('even up', 'adjust for'),\n",
+ " ('castigate', 'censure severely'),\n",
+ " ('redress', 'make reparations or amends for'),\n",
+ " ('even out', 'adjust for'),\n",
+ " ('adjust',\n",
+ " 'alter or regulate so as to achieve accuracy or conform to a standard'),\n",
+ " ('rectify', 'make right or correct'),\n",
+ " ('sort out', 'punish in order to gain control or enforce obedience'),\n",
+ " ('counterbalance', 'adjust for'),\n",
+ " ('discipline', 'punish in order to gain control or enforce obedience'),\n",
+ " ('even off', 'adjust for'),\n",
+ " ('decline', 'go down in value'),\n",
+ " ('slump', 'go down in value')]},\n",
+ " {'answer': 'corresponding',\n",
+ " 'hint': 'synonyms for corresponding',\n",
+ " 'clues': [('gibe',\n",
+ " 'be compatible, similar or consistent; coincide in their characteristics'),\n",
+ " ('correspond', 'exchange messages'),\n",
+ " ('match',\n",
+ " 'be compatible, similar or consistent; coincide in their characteristics'),\n",
+ " ('tally',\n",
+ " 'be compatible, similar or consistent; coincide in their characteristics'),\n",
+ " ('equate', 'be equivalent or parallel, in mathematics'),\n",
+ " ('stand for', 'take the place of or be parallel or equivalent to'),\n",
+ " ('fit',\n",
+ " 'be compatible, similar or consistent; coincide in their characteristics'),\n",
+ " ('check',\n",
+ " 'be compatible, similar or consistent; coincide in their characteristics'),\n",
+ " ('represent', 'take the place of or be parallel or equivalent to'),\n",
+ " ('agree',\n",
+ " 'be compatible, similar or consistent; coincide in their characteristics'),\n",
+ " ('jibe',\n",
+ " 'be compatible, similar or consistent; coincide in their characteristics')]},\n",
+ " {'answer': 'corrupt',\n",
+ " 'hint': 'synonyms for corrupt',\n",
+ " 'clues': [('deprave', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('debauch', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('misdirect', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('vitiate', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('pervert', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('bribe', 'make illegal payments to in exchange for favors or influence'),\n",
+ " ('cloud', 'place under suspicion or cast doubt upon'),\n",
+ " ('defile', 'place under suspicion or cast doubt upon'),\n",
+ " ('spoil', 'alter from the original'),\n",
+ " (\"grease one's palms\",\n",
+ " 'make illegal payments to in exchange for favors or influence'),\n",
+ " ('demoralise', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('buy', 'make illegal payments to in exchange for favors or influence'),\n",
+ " ('taint', 'place under suspicion or cast doubt upon'),\n",
+ " ('profane', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('sully', 'place under suspicion or cast doubt upon'),\n",
+ " ('subvert', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('debase', 'corrupt morally or by intemperance or sensuality')]},\n",
+ " {'answer': 'corrupted',\n",
+ " 'hint': 'synonyms for corrupted',\n",
+ " 'clues': [('deprave', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('debauch', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('corrupt', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('bribe', 'make illegal payments to in exchange for favors or influence'),\n",
+ " ('pervert', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('spoil', 'alter from the original'),\n",
+ " ('taint', 'place under suspicion or cast doubt upon'),\n",
+ " ('buy', 'make illegal payments to in exchange for favors or influence'),\n",
+ " ('sully', 'place under suspicion or cast doubt upon'),\n",
+ " ('subvert', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('debase', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('misdirect', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('vitiate', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('defile', 'place under suspicion or cast doubt upon'),\n",
+ " (\"grease one's palms\",\n",
+ " 'make illegal payments to in exchange for favors or influence'),\n",
+ " ('demoralise', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('profane', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('cloud', 'place under suspicion or cast doubt upon')]},\n",
+ " {'answer': 'corrupting',\n",
+ " 'hint': 'synonyms for corrupting',\n",
+ " 'clues': [('deprave', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('debauch', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('corrupt', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('bribe', 'make illegal payments to in exchange for favors or influence'),\n",
+ " ('pervert', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('spoil', 'alter from the original'),\n",
+ " ('taint', 'place under suspicion or cast doubt upon'),\n",
+ " ('buy', 'make illegal payments to in exchange for favors or influence'),\n",
+ " ('sully', 'place under suspicion or cast doubt upon'),\n",
+ " ('subvert', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('debase', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('misdirect', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('vitiate', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('defile', 'place under suspicion or cast doubt upon'),\n",
+ " (\"grease one's palms\",\n",
+ " 'make illegal payments to in exchange for favors or influence'),\n",
+ " ('demoralise', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('profane', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('cloud', 'place under suspicion or cast doubt upon')]},\n",
+ " {'answer': 'counterbalanced',\n",
+ " 'hint': 'synonyms for counterbalanced',\n",
+ " 'clues': [('even up', 'adjust for'),\n",
+ " ('make up', 'adjust for'),\n",
+ " ('countervail', 'oppose and mitigate the effects of by contrary actions'),\n",
+ " ('neutralize', 'oppose and mitigate the effects of by contrary actions'),\n",
+ " ('even out', 'adjust for'),\n",
+ " ('counterbalance',\n",
+ " 'oppose and mitigate the effects of by contrary actions'),\n",
+ " ('correct', 'adjust for'),\n",
+ " ('oppose', 'contrast with equal weight or force'),\n",
+ " ('compensate', 'adjust for'),\n",
+ " ('even off', 'adjust for'),\n",
+ " ('counteract',\n",
+ " 'oppose and mitigate the effects of by contrary actions')]},\n",
+ " {'answer': 'coupled',\n",
+ " 'hint': 'synonyms for coupled',\n",
+ " 'clues': [('couple', 'link together'),\n",
+ " ('partner off', 'form a pair or pairs'),\n",
+ " ('copulate', 'engage in sexual intercourse'),\n",
+ " ('match', 'bring two objects, ideas, or people together'),\n",
+ " ('pair off', 'form a pair or pairs'),\n",
+ " ('couple on', 'link together'),\n",
+ " ('pair', 'form a pair or pairs'),\n",
+ " ('couple up', 'link together'),\n",
+ " ('mate', 'engage in sexual intercourse'),\n",
+ " ('twin', 'bring two objects, ideas, or people together')]},\n",
+ " {'answer': 'covered',\n",
+ " 'hint': 'synonyms for covered',\n",
+ " 'clues': [('cover',\n",
+ " 'to take an action to protect against future problems'),\n",
+ " ('plow', 'act on verbally or in some form of artistic expression'),\n",
+ " ('spread over', 'form a cover over'),\n",
+ " ('report',\n",
+ " 'be responsible for reporting the details of, as in journalism'),\n",
+ " ('comprehend',\n",
+ " \"include in scope; include as part of something broader; have as one's sphere or territory\"),\n",
+ " ('handle', 'act on verbally or in some form of artistic expression'),\n",
+ " ('pass over', 'travel across or pass over'),\n",
+ " ('extend', 'span an interval of distance, space or time'),\n",
+ " ('continue', 'span an interval of distance, space or time'),\n",
+ " ('treat', 'act on verbally or in some form of artistic expression'),\n",
+ " ('encompass',\n",
+ " \"include in scope; include as part of something broader; have as one's sphere or territory\"),\n",
+ " ('compensate',\n",
+ " 'make up for shortcomings or a feeling of inferiority by exaggerating good qualities'),\n",
+ " ('overlay', 'put something on top of something else'),\n",
+ " ('get over', 'travel across or pass over'),\n",
+ " ('hide', 'cover as if with a shroud'),\n",
+ " ('overcompensate',\n",
+ " 'make up for shortcomings or a feeling of inferiority by exaggerating good qualities'),\n",
+ " ('get across', 'travel across or pass over'),\n",
+ " ('track', 'travel across or pass over'),\n",
+ " ('insure', 'protect by insurance'),\n",
+ " ('brood', 'sit on (eggs)'),\n",
+ " ('cover up', 'hide from view or knowledge'),\n",
+ " ('shroud', 'cover as if with a shroud'),\n",
+ " ('breed', 'copulate with a female, used especially of horses'),\n",
+ " ('underwrite', 'protect by insurance'),\n",
+ " ('address', 'act on verbally or in some form of artistic expression'),\n",
+ " ('cross', 'travel across or pass over'),\n",
+ " ('cut through', 'travel across or pass over'),\n",
+ " ('traverse', 'travel across or pass over'),\n",
+ " ('deal', 'act on verbally or in some form of artistic expression'),\n",
+ " ('hatch', 'sit on (eggs)'),\n",
+ " ('incubate', 'sit on (eggs)'),\n",
+ " ('embrace',\n",
+ " \"include in scope; include as part of something broader; have as one's sphere or territory\"),\n",
+ " ('wrap up', 'clothe, as if for protection from the elements'),\n",
+ " ('cut across', 'travel across or pass over')]},\n",
+ " {'answer': 'crabbed',\n",
+ " 'hint': 'synonyms for crabbed',\n",
+ " 'clues': [('crab', 'scurry sideways like a crab'),\n",
+ " ('squawk', 'complain'),\n",
+ " ('holler', 'complain'),\n",
+ " ('bellyache', 'complain'),\n",
+ " ('grouse', 'complain'),\n",
+ " ('bitch', 'complain'),\n",
+ " ('gripe', 'complain'),\n",
+ " ('beef', 'complain')]},\n",
+ " {'answer': 'crack',\n",
+ " 'hint': 'synonyms for crack',\n",
+ " 'clues': [('collapse', 'suffer a nervous breakdown'),\n",
+ " ('crack up', 'suffer a nervous breakdown'),\n",
+ " ('check', 'become fractured; break or crack on the surface only'),\n",
+ " ('break through', 'pass through (a barrier)'),\n",
+ " ('break up', 'suffer a nervous breakdown'),\n",
+ " ('snap', 'make a sharp sound'),\n",
+ " ('break', 'become fractured; break or crack on the surface only')]},\n",
+ " {'answer': 'cracked',\n",
+ " 'hint': 'synonyms for cracked',\n",
+ " 'clues': [('collapse', 'suffer a nervous breakdown'),\n",
+ " ('crack', 'break suddenly and abruptly, as under tension'),\n",
+ " ('snap', 'make a sharp sound'),\n",
+ " ('break', 'become fractured; break or crack on the surface only'),\n",
+ " ('crack up', 'suffer a nervous breakdown'),\n",
+ " ('check', 'become fractured; break or crack on the surface only'),\n",
+ " ('break through', 'pass through (a barrier)'),\n",
+ " ('break up', 'suffer a nervous breakdown')]},\n",
+ " {'answer': 'cracking',\n",
+ " 'hint': 'synonyms for cracking',\n",
+ " 'clues': [('collapse', 'suffer a nervous breakdown'),\n",
+ " ('crack', 'break suddenly and abruptly, as under tension'),\n",
+ " ('snap', 'make a sharp sound'),\n",
+ " ('break', 'become fractured; break or crack on the surface only'),\n",
+ " ('crack up', 'suffer a nervous breakdown'),\n",
+ " ('check', 'become fractured; break or crack on the surface only'),\n",
+ " ('break through', 'pass through (a barrier)'),\n",
+ " ('break up', 'suffer a nervous breakdown')]},\n",
+ " {'answer': 'cramped',\n",
+ " 'hint': 'synonyms for cramped',\n",
+ " 'clues': [('cramp', 'affect with or as if with a cramp'),\n",
+ " ('strangle', 'prevent the progress or free movement of'),\n",
+ " ('halter', 'prevent the progress or free movement of'),\n",
+ " ('hamper', 'prevent the progress or free movement of')]},\n",
+ " {'answer': 'crashing',\n",
+ " 'hint': 'synonyms for crashing',\n",
+ " 'clues': [('crash', 'break violently or noisily; smash'),\n",
+ " ('barge in', 'enter uninvited; informal'),\n",
+ " ('go down', 'stop operating'),\n",
+ " ('break apart', 'break violently or noisily; smash'),\n",
+ " ('doss down', 'sleep in a convenient place'),\n",
+ " ('doss', 'sleep in a convenient place'),\n",
+ " ('ram', 'undergo damage or destruction on impact'),\n",
+ " ('gate-crash', 'enter uninvited; informal'),\n",
+ " ('break up', 'break violently or noisily; smash'),\n",
+ " ('dash', 'hurl or thrust violently')]},\n",
+ " {'answer': 'craved',\n",
+ " 'hint': 'synonyms for craved',\n",
+ " 'clues': [('crave', 'have a craving, appetite, or great desire for'),\n",
+ " ('starve', 'have a craving, appetite, or great desire for'),\n",
+ " ('thirst', 'have a craving, appetite, or great desire for'),\n",
+ " ('lust', 'have a craving, appetite, or great desire for'),\n",
+ " ('hunger', 'have a craving, appetite, or great desire for')]},\n",
+ " {'answer': 'cringing',\n",
+ " 'hint': 'synonyms for cringing',\n",
+ " 'clues': [('cringe', 'show submission or fear'),\n",
+ " ('flinch', 'draw back, as with fear or pain'),\n",
+ " ('creep', 'show submission or fear'),\n",
+ " ('grovel', 'show submission or fear'),\n",
+ " ('funk', 'draw back, as with fear or pain'),\n",
+ " ('wince', 'draw back, as with fear or pain'),\n",
+ " ('squinch', 'draw back, as with fear or pain'),\n",
+ " ('cower', 'show submission or fear'),\n",
+ " ('crawl', 'show submission or fear'),\n",
+ " ('quail', 'draw back, as with fear or pain'),\n",
+ " ('shrink', 'draw back, as with fear or pain'),\n",
+ " ('recoil', 'draw back, as with fear or pain'),\n",
+ " ('fawn', 'show submission or fear')]},\n",
+ " {'answer': 'crinkled',\n",
+ " 'hint': 'synonyms for crinkled',\n",
+ " 'clues': [('crease', 'become wrinkled or crumpled or creased'),\n",
+ " ('scrunch up',\n",
+ " 'make wrinkles or creases on a smooth surface; make a pressed, folded or wrinkled line in'),\n",
+ " ('scrunch',\n",
+ " 'make wrinkles or creases on a smooth surface; make a pressed, folded or wrinkled line in'),\n",
+ " ('crumple', 'become wrinkled or crumpled or creased'),\n",
+ " ('crinkle',\n",
+ " 'make wrinkles or creases on a smooth surface; make a pressed, folded or wrinkled line in'),\n",
+ " ('crisp',\n",
+ " 'make wrinkles or creases on a smooth surface; make a pressed, folded or wrinkled line in'),\n",
+ " ('ruckle',\n",
+ " 'make wrinkles or creases on a smooth surface; make a pressed, folded or wrinkled line in')]},\n",
+ " {'answer': 'crisp',\n",
+ " 'hint': 'synonyms for crisp',\n",
+ " 'clues': [('crinkle',\n",
+ " 'make wrinkles or creases on a smooth surface; make a pressed, folded or wrinkled line in'),\n",
+ " ('crispen', 'make brown and crisp by heating'),\n",
+ " ('toast', 'make brown and crisp by heating'),\n",
+ " ('scrunch up',\n",
+ " 'make wrinkles or creases on a smooth surface; make a pressed, folded or wrinkled line in'),\n",
+ " ('scrunch',\n",
+ " 'make wrinkles or creases on a smooth surface; make a pressed, folded or wrinkled line in'),\n",
+ " ('ruckle',\n",
+ " 'make wrinkles or creases on a smooth surface; make a pressed, folded or wrinkled line in'),\n",
+ " ('crease',\n",
+ " 'make wrinkles or creases on a smooth surface; make a pressed, folded or wrinkled line in')]},\n",
+ " {'answer': 'cropped',\n",
+ " 'hint': 'synonyms for cropped',\n",
+ " 'clues': [('crop', 'prepare for crops'),\n",
+ " ('clip', 'cultivate, tend, and cut back the growth of'),\n",
+ " ('prune', 'cultivate, tend, and cut back the growth of'),\n",
+ " ('cultivate', 'prepare for crops'),\n",
+ " ('pasture', 'let feed in a field or pasture or meadow'),\n",
+ " ('work', 'prepare for crops'),\n",
+ " ('lop', 'cultivate, tend, and cut back the growth of'),\n",
+ " ('cut back', 'cultivate, tend, and cut back the growth of'),\n",
+ " ('range', 'feed as in a meadow or pasture'),\n",
+ " ('dress', 'cultivate, tend, and cut back the growth of'),\n",
+ " ('graze', 'feed as in a meadow or pasture'),\n",
+ " ('snip', 'cultivate, tend, and cut back the growth of'),\n",
+ " ('browse', 'feed as in a meadow or pasture'),\n",
+ " ('trim', 'cultivate, tend, and cut back the growth of')]},\n",
+ " {'answer': 'cross',\n",
+ " 'hint': 'synonyms for cross',\n",
+ " 'clues': [('traverse',\n",
+ " 'to cover or extend over an area or time period; ,'),\n",
+ " ('queer', 'hinder or prevent (the efforts, plans, or desires) of'),\n",
+ " ('get across', 'travel across or pass over'),\n",
+ " ('track', 'travel across or pass over'),\n",
+ " ('sweep', 'to cover or extend over an area or time period; ,'),\n",
+ " ('bilk', 'hinder or prevent (the efforts, plans, or desires) of'),\n",
+ " ('pass over', 'travel across or pass over'),\n",
+ " ('intersect', 'meet at a point'),\n",
+ " ('interbreed',\n",
+ " 'breed animals or plants using parents of different races and varieties'),\n",
+ " ('hybridise',\n",
+ " 'breed animals or plants using parents of different races and varieties'),\n",
+ " ('thwart', 'hinder or prevent (the efforts, plans, or desires) of'),\n",
+ " ('crossbreed',\n",
+ " 'breed animals or plants using parents of different races and varieties'),\n",
+ " ('cover', 'travel across or pass over'),\n",
+ " ('baffle', 'hinder or prevent (the efforts, plans, or desires) of'),\n",
+ " ('scotch', 'hinder or prevent (the efforts, plans, or desires) of'),\n",
+ " ('spoil', 'hinder or prevent (the efforts, plans, or desires) of'),\n",
+ " ('get over', 'travel across or pass over'),\n",
+ " ('cut through', 'travel across or pass over'),\n",
+ " ('frustrate', 'hinder or prevent (the efforts, plans, or desires) of'),\n",
+ " ('span', 'to cover or extend over an area or time period; ,'),\n",
+ " ('foil', 'hinder or prevent (the efforts, plans, or desires) of'),\n",
+ " ('cut across', 'travel across or pass over')]},\n",
+ " {'answer': 'crossbred',\n",
+ " 'hint': 'synonyms for crossbred',\n",
+ " 'clues': [('hybridize',\n",
+ " 'breed animals or plants using parents of different races and varieties'),\n",
+ " ('interbreed',\n",
+ " 'breed animals or plants using parents of different races and varieties'),\n",
+ " ('cross',\n",
+ " 'breed animals or plants using parents of different races and varieties'),\n",
+ " ('crossbreed',\n",
+ " 'breed animals or plants using parents of different races and varieties')]},\n",
+ " {'answer': 'crossed',\n",
+ " 'hint': 'synonyms for crossed',\n",
+ " 'clues': [('traverse',\n",
+ " 'to cover or extend over an area or time period; ,'),\n",
+ " ('queer', 'hinder or prevent (the efforts, plans, or desires) of'),\n",
+ " ('get across', 'travel across or pass over'),\n",
+ " ('track', 'travel across or pass over'),\n",
+ " ('sweep', 'to cover or extend over an area or time period; ,'),\n",
+ " ('cross', 'fold so as to resemble a cross'),\n",
+ " ('bilk', 'hinder or prevent (the efforts, plans, or desires) of'),\n",
+ " ('pass over', 'travel across or pass over'),\n",
+ " ('intersect', 'meet at a point'),\n",
+ " ('interbreed',\n",
+ " 'breed animals or plants using parents of different races and varieties'),\n",
+ " ('hybridise',\n",
+ " 'breed animals or plants using parents of different races and varieties'),\n",
+ " ('thwart', 'hinder or prevent (the efforts, plans, or desires) of'),\n",
+ " ('crossbreed',\n",
+ " 'breed animals or plants using parents of different races and varieties'),\n",
+ " ('cover', 'travel across or pass over'),\n",
+ " ('baffle', 'hinder or prevent (the efforts, plans, or desires) of'),\n",
+ " ('scotch', 'hinder or prevent (the efforts, plans, or desires) of'),\n",
+ " ('spoil', 'hinder or prevent (the efforts, plans, or desires) of'),\n",
+ " ('cut through', 'travel across or pass over'),\n",
+ " ('get over', 'travel across or pass over'),\n",
+ " ('frustrate', 'hinder or prevent (the efforts, plans, or desires) of'),\n",
+ " ('span', 'to cover or extend over an area or time period; ,'),\n",
+ " ('foil', 'hinder or prevent (the efforts, plans, or desires) of'),\n",
+ " ('cut across', 'travel across or pass over')]},\n",
+ " {'answer': 'crowded',\n",
+ " 'hint': 'synonyms for crowded',\n",
+ " 'clues': [('crowd', 'approach a certain age or speed'),\n",
+ " ('crowd together', 'to gather together in large numbers'),\n",
+ " ('herd', 'cause to herd, drive, or crowd together'),\n",
+ " ('push', 'approach a certain age or speed')]},\n",
+ " {'answer': 'crumpled',\n",
+ " 'hint': 'synonyms for crumpled',\n",
+ " 'clues': [('tumble', 'fall apart'),\n",
+ " ('buckle', 'fold or collapse'),\n",
+ " ('rumple', 'to gather something into small wrinkles or folds'),\n",
+ " ('crease', 'become wrinkled or crumpled or creased'),\n",
+ " ('knit', 'to gather something into small wrinkles or folds'),\n",
+ " ('crumble', 'fall apart'),\n",
+ " ('collapse', 'fall apart'),\n",
+ " ('crinkle', 'become wrinkled or crumpled or creased'),\n",
+ " ('cockle', 'to gather something into small wrinkles or folds'),\n",
+ " ('pucker', 'to gather something into small wrinkles or folds'),\n",
+ " ('break down', 'fall apart')]},\n",
+ " {'answer': 'crushed',\n",
+ " 'hint': 'synonyms for crushed',\n",
+ " 'clues': [('break down', 'make ineffective'),\n",
+ " ('demolish', 'humiliate or depress completely'),\n",
+ " ('beat out', 'come out better in a competition, race, or conflict'),\n",
+ " ('suppress',\n",
+ " \"come down on or keep down by unjust use of one's authority\"),\n",
+ " ('squeeze',\n",
+ " 'to compress with violence, out of natural shape or condition'),\n",
+ " ('shell', 'come out better in a competition, race, or conflict'),\n",
+ " ('crush', 'come out better in a competition, race, or conflict'),\n",
+ " ('squash',\n",
+ " 'to compress with violence, out of natural shape or condition'),\n",
+ " ('oppress', \"come down on or keep down by unjust use of one's authority\"),\n",
+ " ('mash', 'to compress with violence, out of natural shape or condition'),\n",
+ " ('trounce', 'come out better in a competition, race, or conflict'),\n",
+ " ('jam', 'crush or bruise'),\n",
+ " ('squelch',\n",
+ " 'to compress with violence, out of natural shape or condition'),\n",
+ " ('vanquish', 'come out better in a competition, race, or conflict'),\n",
+ " ('beat', 'come out better in a competition, race, or conflict')]},\n",
+ " {'answer': 'crushing',\n",
+ " 'hint': 'synonyms for crushing',\n",
+ " 'clues': [('break down', 'make ineffective'),\n",
+ " ('demolish', 'humiliate or depress completely'),\n",
+ " ('beat out', 'come out better in a competition, race, or conflict'),\n",
+ " ('suppress',\n",
+ " \"come down on or keep down by unjust use of one's authority\"),\n",
+ " ('squeeze',\n",
+ " 'to compress with violence, out of natural shape or condition'),\n",
+ " ('shell', 'come out better in a competition, race, or conflict'),\n",
+ " ('crush', 'come out better in a competition, race, or conflict'),\n",
+ " ('squash',\n",
+ " 'to compress with violence, out of natural shape or condition'),\n",
+ " ('oppress', \"come down on or keep down by unjust use of one's authority\"),\n",
+ " ('mash', 'to compress with violence, out of natural shape or condition'),\n",
+ " ('trounce', 'come out better in a competition, race, or conflict'),\n",
+ " ('jam', 'crush or bruise'),\n",
+ " ('squelch',\n",
+ " 'to compress with violence, out of natural shape or condition'),\n",
+ " ('vanquish', 'come out better in a competition, race, or conflict'),\n",
+ " ('beat', 'come out better in a competition, race, or conflict')]},\n",
+ " {'answer': 'crying',\n",
+ " 'hint': 'synonyms for crying',\n",
+ " 'clues': [('scream', 'utter a sudden loud cry'),\n",
+ " ('shout out', 'utter a sudden loud cry'),\n",
+ " ('call', 'utter a sudden loud cry'),\n",
+ " ('cry', 'proclaim or announce in public'),\n",
+ " ('squall', 'utter a sudden loud cry'),\n",
+ " ('hollo', 'utter a sudden loud cry'),\n",
+ " ('blazon out', 'proclaim or announce in public'),\n",
+ " ('call out', 'utter aloud; often with surprise, horror, or joy'),\n",
+ " ('shout', 'utter a sudden loud cry'),\n",
+ " ('yell', 'utter a sudden loud cry'),\n",
+ " ('holler', 'utter a sudden loud cry'),\n",
+ " ('weep', 'shed tears because of sadness, rage, or pain'),\n",
+ " ('outcry', 'utter aloud; often with surprise, horror, or joy'),\n",
+ " ('exclaim', 'utter aloud; often with surprise, horror, or joy'),\n",
+ " ('cry out', 'utter aloud; often with surprise, horror, or joy')]},\n",
+ " {'answer': 'crystalised',\n",
+ " 'hint': 'synonyms for crystalised',\n",
+ " 'clues': [('crystalise',\n",
+ " 'cause to form crystals or assume crystalline form'),\n",
+ " ('straighten out', 'make free from confusion or ambiguity; make clear'),\n",
+ " ('sort out', 'make free from confusion or ambiguity; make clear'),\n",
+ " ('clear', 'make free from confusion or ambiguity; make clear'),\n",
+ " ('effloresce', 'assume crystalline form; become crystallized'),\n",
+ " ('enlighten', 'make free from confusion or ambiguity; make clear'),\n",
+ " ('elucidate', 'make free from confusion or ambiguity; make clear'),\n",
+ " ('illuminate', 'make free from confusion or ambiguity; make clear'),\n",
+ " ('clear up', 'make free from confusion or ambiguity; make clear'),\n",
+ " ('shed light on', 'make free from confusion or ambiguity; make clear')]},\n",
+ " {'answer': 'crystalized',\n",
+ " 'hint': 'synonyms for crystalized',\n",
+ " 'clues': [('crystalise',\n",
+ " 'cause to form crystals or assume crystalline form'),\n",
+ " ('straighten out', 'make free from confusion or ambiguity; make clear'),\n",
+ " ('sort out', 'make free from confusion or ambiguity; make clear'),\n",
+ " ('clear', 'make free from confusion or ambiguity; make clear'),\n",
+ " ('effloresce', 'assume crystalline form; become crystallized'),\n",
+ " ('enlighten', 'make free from confusion or ambiguity; make clear'),\n",
+ " ('elucidate', 'make free from confusion or ambiguity; make clear'),\n",
+ " ('illuminate', 'make free from confusion or ambiguity; make clear'),\n",
+ " ('clear up', 'make free from confusion or ambiguity; make clear'),\n",
+ " ('shed light on', 'make free from confusion or ambiguity; make clear')]},\n",
+ " {'answer': 'crystallised',\n",
+ " 'hint': 'synonyms for crystallised',\n",
+ " 'clues': [('crystalise',\n",
+ " 'cause to form crystals or assume crystalline form'),\n",
+ " ('straighten out', 'make free from confusion or ambiguity; make clear'),\n",
+ " ('sort out', 'make free from confusion or ambiguity; make clear'),\n",
+ " ('clear', 'make free from confusion or ambiguity; make clear'),\n",
+ " ('enlighten', 'make free from confusion or ambiguity; make clear'),\n",
+ " ('elucidate', 'make free from confusion or ambiguity; make clear'),\n",
+ " ('illuminate', 'make free from confusion or ambiguity; make clear'),\n",
+ " ('clear up', 'make free from confusion or ambiguity; make clear'),\n",
+ " ('shed light on', 'make free from confusion or ambiguity; make clear')]},\n",
+ " {'answer': 'crystallized',\n",
+ " 'hint': 'synonyms for crystallized',\n",
+ " 'clues': [('crystalise', 'cause to take on a definite and clear shape'),\n",
+ " ('straighten out', 'make free from confusion or ambiguity; make clear'),\n",
+ " ('sort out', 'make free from confusion or ambiguity; make clear'),\n",
+ " ('clear', 'make free from confusion or ambiguity; make clear'),\n",
+ " ('effloresce', 'assume crystalline form; become crystallized'),\n",
+ " ('enlighten', 'make free from confusion or ambiguity; make clear'),\n",
+ " ('elucidate', 'make free from confusion or ambiguity; make clear'),\n",
+ " ('illuminate', 'make free from confusion or ambiguity; make clear'),\n",
+ " ('clear up', 'make free from confusion or ambiguity; make clear'),\n",
+ " ('shed light on', 'make free from confusion or ambiguity; make clear')]},\n",
+ " {'answer': 'cultivated',\n",
+ " 'hint': 'synonyms for cultivated',\n",
+ " 'clues': [('naturalize',\n",
+ " 'adapt (a wild plant or unclaimed land) to the environment'),\n",
+ " ('crop', 'prepare for crops'),\n",
+ " ('educate', 'teach or refine to be discriminative in taste or judgment'),\n",
+ " ('civilise', 'teach or refine to be discriminative in taste or judgment'),\n",
+ " ('tame', 'adapt (a wild plant or unclaimed land) to the environment'),\n",
+ " ('cultivate', 'prepare for crops'),\n",
+ " ('work', 'prepare for crops'),\n",
+ " ('train', 'teach or refine to be discriminative in taste or judgment'),\n",
+ " ('domesticate',\n",
+ " 'adapt (a wild plant or unclaimed land) to the environment'),\n",
+ " ('school', 'teach or refine to be discriminative in taste or judgment')]},\n",
+ " {'answer': 'curled',\n",
+ " 'hint': 'synonyms for curled',\n",
+ " 'clues': [('draw in', \"shape one's body into a curl\"),\n",
+ " ('curl', 'play the Scottish game of curling'),\n",
+ " ('curve', 'form a curl, curve, or kink'),\n",
+ " ('coil', 'wind around something in coils or loops'),\n",
+ " ('curl up', \"shape one's body into a curl\"),\n",
+ " ('kink', 'form a curl, curve, or kink'),\n",
+ " ('wave', 'twist or roll into coils or ringlets'),\n",
+ " ('loop', 'wind around something in coils or loops')]},\n",
+ " {'answer': 'curling',\n",
+ " 'hint': 'synonyms for curling',\n",
+ " 'clues': [('draw in', \"shape one's body into a curl\"),\n",
+ " ('curl', 'play the Scottish game of curling'),\n",
+ " ('curve', 'form a curl, curve, or kink'),\n",
+ " ('coil', 'wind around something in coils or loops'),\n",
+ " ('curl up', \"shape one's body into a curl\"),\n",
+ " ('kink', 'form a curl, curve, or kink'),\n",
+ " ('wave', 'twist or roll into coils or ringlets'),\n",
+ " ('loop', 'wind around something in coils or loops')]},\n",
+ " {'answer': 'cursed',\n",
+ " 'hint': 'synonyms for cursed',\n",
+ " 'clues': [('maledict', 'wish harm upon; invoke evil upon'),\n",
+ " ('imprecate', 'utter obscenities or profanities'),\n",
+ " ('beshrew', 'wish harm upon; invoke evil upon'),\n",
+ " ('anathemise', 'wish harm upon; invoke evil upon'),\n",
+ " ('excommunicate', 'exclude from a church or a religious community'),\n",
+ " ('curse', 'utter obscenities or profanities'),\n",
+ " ('swear', 'utter obscenities or profanities'),\n",
+ " ('cuss', 'utter obscenities or profanities'),\n",
+ " ('damn', 'wish harm upon; invoke evil upon'),\n",
+ " ('bedamn', 'wish harm upon; invoke evil upon'),\n",
+ " ('unchurch', 'exclude from a church or a religious community'),\n",
+ " ('blaspheme', 'utter obscenities or profanities')]},\n",
+ " {'answer': 'curst',\n",
+ " 'hint': 'synonyms for curst',\n",
+ " 'clues': [('maledict', 'wish harm upon; invoke evil upon'),\n",
+ " ('imprecate', 'utter obscenities or profanities'),\n",
+ " ('beshrew', 'wish harm upon; invoke evil upon'),\n",
+ " ('anathemise', 'wish harm upon; invoke evil upon'),\n",
+ " ('excommunicate', 'exclude from a church or a religious community'),\n",
+ " ('curse', 'utter obscenities or profanities'),\n",
+ " ('swear', 'utter obscenities or profanities'),\n",
+ " ('cuss', 'utter obscenities or profanities'),\n",
+ " ('damn', 'wish harm upon; invoke evil upon'),\n",
+ " ('bedamn', 'wish harm upon; invoke evil upon'),\n",
+ " ('unchurch', 'exclude from a church or a religious community'),\n",
+ " ('blaspheme', 'utter obscenities or profanities')]},\n",
+ " {'answer': 'curved',\n",
+ " 'hint': 'synonyms for curved',\n",
+ " 'clues': [('twist', 'extend in curves and turns'),\n",
+ " ('slew', 'turn sharply; change direction abruptly'),\n",
+ " ('crook', 'bend or cause to bend'),\n",
+ " ('slue', 'turn sharply; change direction abruptly'),\n",
+ " ('curve', 'form an arch or curve'),\n",
+ " ('sheer', 'turn sharply; change direction abruptly'),\n",
+ " ('arc', 'form an arch or curve'),\n",
+ " ('cut', 'turn sharply; change direction abruptly'),\n",
+ " ('kink', 'form a curl, curve, or kink'),\n",
+ " ('swerve', 'turn sharply; change direction abruptly'),\n",
+ " ('veer', 'turn sharply; change direction abruptly'),\n",
+ " ('curl', 'form a curl, curve, or kink'),\n",
+ " ('wind', 'extend in curves and turns'),\n",
+ " ('trend', 'turn sharply; change direction abruptly')]},\n",
+ " {'answer': 'curving',\n",
+ " 'hint': 'synonyms for curving',\n",
+ " 'clues': [('twist', 'extend in curves and turns'),\n",
+ " ('slew', 'turn sharply; change direction abruptly'),\n",
+ " ('crook', 'bend or cause to bend'),\n",
+ " ('slue', 'turn sharply; change direction abruptly'),\n",
+ " ('curve', 'form an arch or curve'),\n",
+ " ('sheer', 'turn sharply; change direction abruptly'),\n",
+ " ('arc', 'form an arch or curve'),\n",
+ " ('cut', 'turn sharply; change direction abruptly'),\n",
+ " ('kink', 'form a curl, curve, or kink'),\n",
+ " ('swerve', 'turn sharply; change direction abruptly'),\n",
+ " ('veer', 'turn sharply; change direction abruptly'),\n",
+ " ('curl', 'form a curl, curve, or kink'),\n",
+ " ('wind', 'extend in curves and turns'),\n",
+ " ('trend', 'turn sharply; change direction abruptly')]},\n",
+ " {'answer': 'cussed',\n",
+ " 'hint': 'synonyms for cussed',\n",
+ " 'clues': [('swear', 'utter obscenities or profanities'),\n",
+ " ('imprecate', 'utter obscenities or profanities'),\n",
+ " ('cuss', 'utter obscenities or profanities'),\n",
+ " ('curse', 'utter obscenities or profanities'),\n",
+ " ('blaspheme', 'utter obscenities or profanities')]},\n",
+ " {'answer': 'cut',\n",
+ " 'hint': 'synonyms for cut',\n",
+ " 'clues': [('trend', 'turn sharply; change direction abruptly'),\n",
+ " ('switch off', 'cause to stop operating by disengaging a switch'),\n",
+ " ('reduce', 'reduce in scope while retaining essential elements'),\n",
+ " ('rationalise', 'weed out unwanted or unnecessary things'),\n",
+ " ('abridge', 'reduce in scope while retaining essential elements'),\n",
+ " ('make out', 'make out and issue'),\n",
+ " ('sheer', 'turn sharply; change direction abruptly'),\n",
+ " ('prune', 'weed out unwanted or unnecessary things'),\n",
+ " ('cut off', 'cease, stop'),\n",
+ " ('ignore', 'refuse to acknowledge'),\n",
+ " ('abbreviate', 'reduce in scope while retaining essential elements'),\n",
+ " ('write out', 'make out and issue'),\n",
+ " ('edit out', 'cut and assemble the components of'),\n",
+ " ('trim down', 'cut down on; make a reduction in'),\n",
+ " ('snub', 'refuse to acknowledge'),\n",
+ " ('issue', 'make out and issue'),\n",
+ " ('swerve', 'turn sharply; change direction abruptly'),\n",
+ " ('turn off', 'cause to stop operating by disengaging a switch'),\n",
+ " ('trim back', 'cut down on; make a reduction in'),\n",
+ " ('geld', 'cut off the testicles (of male animals such as horses)'),\n",
+ " ('shorten', 'reduce in scope while retaining essential elements'),\n",
+ " ('thin', 'lessen the strength or flavor of a solution or mixture'),\n",
+ " ('burn', 'create by duplicating data'),\n",
+ " ('skip', 'intentionally fail to attend'),\n",
+ " ('foreshorten', 'reduce in scope while retaining essential elements'),\n",
+ " ('contract', 'reduce in scope while retaining essential elements'),\n",
+ " ('hack', 'be able to manage or manage successfully'),\n",
+ " ('slew', 'turn sharply; change direction abruptly'),\n",
+ " ('cut down', 'cut down on; make a reduction in'),\n",
+ " ('slue', 'turn sharply; change direction abruptly'),\n",
+ " ('edit', 'cut and assemble the components of'),\n",
+ " ('thin out', 'lessen the strength or flavor of a solution or mixture'),\n",
+ " ('curve', 'turn sharply; change direction abruptly'),\n",
+ " ('trim', 'cut down on; make a reduction in'),\n",
+ " ('bring down', 'cut down on; make a reduction in'),\n",
+ " ('tailor', 'style and tailor in a certain fashion'),\n",
+ " ('dilute', 'lessen the strength or flavor of a solution or mixture'),\n",
+ " ('veer', 'turn sharply; change direction abruptly'),\n",
+ " ('turn out', 'cause to stop operating by disengaging a switch'),\n",
+ " ('cut back', 'cut down on; make a reduction in'),\n",
+ " ('disregard', 'refuse to acknowledge')]},\n",
+ " {'answer': 'cut_off',\n",
+ " 'hint': 'synonyms for cut off',\n",
+ " 'clues': [('knap', 'break a small piece off from'),\n",
+ " ('disrupt', 'make a break in'),\n",
+ " ('cut out', 'cut off and stop'),\n",
+ " ('break off', 'break a small piece off from'),\n",
+ " ('chip', 'break a small piece off from'),\n",
+ " ('chop off', 'remove by or as if by cutting'),\n",
+ " ('break up', 'make a break in'),\n",
+ " ('interrupt', 'make a break in'),\n",
+ " ('cut', 'cease, stop'),\n",
+ " ('amputate', 'remove surgically'),\n",
+ " ('lop off', 'remove by or as if by cutting')]},\n",
+ " {'answer': 'cut_up',\n",
+ " 'hint': 'synonyms for cut up',\n",
+ " 'clues': [('compartmentalise',\n",
+ " 'separate into isolated compartments or categories'),\n",
+ " ('hack', 'significantly cut up a manuscript'),\n",
+ " ('carve', 'cut to pieces'),\n",
+ " ('mangle', 'destroy or injure severely'),\n",
+ " ('mutilate', 'destroy or injure severely')]},\n",
+ " {'answer': 'cutting',\n",
+ " 'hint': 'synonyms for cutting',\n",
+ " 'clues': [('reduce', 'reduce in scope while retaining essential elements'),\n",
+ " ('cut', 'be able to manage or manage successfully'),\n",
+ " ('rationalise', 'weed out unwanted or unnecessary things'),\n",
+ " ('ignore', 'refuse to acknowledge'),\n",
+ " ('abbreviate', 'reduce in scope while retaining essential elements'),\n",
+ " ('swerve', 'turn sharply; change direction abruptly'),\n",
+ " ('trim back', 'cut down on; make a reduction in'),\n",
+ " ('burn', 'create by duplicating data'),\n",
+ " ('skip', 'intentionally fail to attend'),\n",
+ " ('foreshorten', 'reduce in scope while retaining essential elements'),\n",
+ " ('hack', 'be able to manage or manage successfully'),\n",
+ " ('cut down', 'cut down on; make a reduction in'),\n",
+ " ('edit', 'cut and assemble the components of'),\n",
+ " ('thin out', 'lessen the strength or flavor of a solution or mixture'),\n",
+ " ('tailor', 'style and tailor in a certain fashion'),\n",
+ " ('veer', 'turn sharply; change direction abruptly'),\n",
+ " ('turn out', 'cause to stop operating by disengaging a switch'),\n",
+ " ('switch off', 'cause to stop operating by disengaging a switch'),\n",
+ " ('trend', 'turn sharply; change direction abruptly'),\n",
+ " ('abridge', 'reduce in scope while retaining essential elements'),\n",
+ " ('make out', 'make out and issue'),\n",
+ " ('sheer', 'turn sharply; change direction abruptly'),\n",
+ " ('prune', 'weed out unwanted or unnecessary things'),\n",
+ " ('cut off', 'cease, stop'),\n",
+ " ('write out', 'make out and issue'),\n",
+ " ('edit out', 'cut and assemble the components of'),\n",
+ " ('trim down', 'cut down on; make a reduction in'),\n",
+ " ('snub', 'refuse to acknowledge'),\n",
+ " ('issue', 'make out and issue'),\n",
+ " ('turn off', 'cause to stop operating by disengaging a switch'),\n",
+ " ('geld', 'cut off the testicles (of male animals such as horses)'),\n",
+ " ('shorten', 'reduce in scope while retaining essential elements'),\n",
+ " ('thin', 'lessen the strength or flavor of a solution or mixture'),\n",
+ " ('contract', 'reduce in scope while retaining essential elements'),\n",
+ " ('slew', 'turn sharply; change direction abruptly'),\n",
+ " ('slue', 'turn sharply; change direction abruptly'),\n",
+ " ('curve', 'turn sharply; change direction abruptly'),\n",
+ " ('trim', 'cut down on; make a reduction in'),\n",
+ " ('bring down', 'cut down on; make a reduction in'),\n",
+ " ('dilute', 'lessen the strength or flavor of a solution or mixture'),\n",
+ " ('cut back', 'cut down on; make a reduction in'),\n",
+ " ('disregard', 'refuse to acknowledge')]},\n",
+ " {'answer': 'dabbled',\n",
+ " 'hint': 'synonyms for dabbled',\n",
+ " 'clues': [('smatter', 'work with in an amateurish manner'),\n",
+ " ('dabble', 'play in or as if in water, as of small children'),\n",
+ " ('play around', 'work with in an amateurish manner'),\n",
+ " ('splash around', 'play in or as if in water, as of small children'),\n",
+ " ('paddle', 'play in or as if in water, as of small children')]},\n",
+ " {'answer': 'damn',\n",
+ " 'hint': 'synonyms for damn',\n",
+ " 'clues': [('maledict', 'wish harm upon; invoke evil upon'),\n",
+ " ('bedamn', 'wish harm upon; invoke evil upon'),\n",
+ " ('curse', 'wish harm upon; invoke evil upon'),\n",
+ " ('beshrew', 'wish harm upon; invoke evil upon'),\n",
+ " ('anathemise', 'wish harm upon; invoke evil upon'),\n",
+ " ('imprecate', 'wish harm upon; invoke evil upon')]},\n",
+ " {'answer': 'damned',\n",
+ " 'hint': 'synonyms for damned',\n",
+ " 'clues': [('maledict', 'wish harm upon; invoke evil upon'),\n",
+ " ('beshrew', 'wish harm upon; invoke evil upon'),\n",
+ " ('anathemise', 'wish harm upon; invoke evil upon'),\n",
+ " ('imprecate', 'wish harm upon; invoke evil upon'),\n",
+ " ('damn', 'wish harm upon; invoke evil upon'),\n",
+ " ('curse', 'wish harm upon; invoke evil upon'),\n",
+ " ('bedamn', 'wish harm upon; invoke evil upon')]},\n",
+ " {'answer': 'damning',\n",
+ " 'hint': 'synonyms for damning',\n",
+ " 'clues': [('maledict', 'wish harm upon; invoke evil upon'),\n",
+ " ('beshrew', 'wish harm upon; invoke evil upon'),\n",
+ " ('anathemise', 'wish harm upon; invoke evil upon'),\n",
+ " ('imprecate', 'wish harm upon; invoke evil upon'),\n",
+ " ('damn', 'wish harm upon; invoke evil upon'),\n",
+ " ('curse', 'wish harm upon; invoke evil upon'),\n",
+ " ('bedamn', 'wish harm upon; invoke evil upon')]},\n",
+ " {'answer': 'damp',\n",
+ " 'hint': 'synonyms for damp',\n",
+ " 'clues': [('muffle', 'deaden (a sound or noise), especially by wrapping'),\n",
+ " ('break', 'lessen in force or effect'),\n",
+ " ('weaken', 'lessen in force or effect'),\n",
+ " ('soften', 'lessen in force or effect'),\n",
+ " ('deaden', 'make vague or obscure or make (an image) less visible'),\n",
+ " ('dampen', 'deaden (a sound or noise), especially by wrapping'),\n",
+ " ('dull', 'deaden (a sound or noise), especially by wrapping'),\n",
+ " ('mute', 'deaden (a sound or noise), especially by wrapping'),\n",
+ " ('tone down', 'deaden (a sound or noise), especially by wrapping')]},\n",
+ " {'answer': 'daring',\n",
+ " 'hint': 'synonyms for daring',\n",
+ " 'clues': [('presume',\n",
+ " 'take upon oneself; act presumptuously, without permission'),\n",
+ " ('make bold',\n",
+ " 'take upon oneself; act presumptuously, without permission'),\n",
+ " ('dare', 'challenge'),\n",
+ " ('defy', 'challenge')]},\n",
+ " {'answer': 'dashed',\n",
+ " 'hint': 'synonyms for dashed',\n",
+ " 'clues': [('daunt', 'cause to lose courage'),\n",
+ " ('dart', 'run or move very quickly or hastily'),\n",
+ " ('frighten off', 'cause to lose courage'),\n",
+ " ('smash', 'break into pieces, as by striking or knocking over'),\n",
+ " ('crash', 'hurl or thrust violently'),\n",
+ " ('scare away', 'cause to lose courage'),\n",
+ " ('scud', 'run or move very quickly or hastily'),\n",
+ " ('dash', 'cause to lose courage'),\n",
+ " ('scare', 'cause to lose courage'),\n",
+ " ('scoot', 'run or move very quickly or hastily'),\n",
+ " ('pall', 'cause to lose courage'),\n",
+ " ('frighten away', 'cause to lose courage'),\n",
+ " ('scare off', 'cause to lose courage'),\n",
+ " ('flash', 'run or move very quickly or hastily'),\n",
+ " ('shoot', 'run or move very quickly or hastily')]},\n",
+ " {'answer': 'dashing',\n",
+ " 'hint': 'synonyms for dashing',\n",
+ " 'clues': [('daunt', 'cause to lose courage'),\n",
+ " ('dart', 'run or move very quickly or hastily'),\n",
+ " ('frighten off', 'cause to lose courage'),\n",
+ " ('smash', 'break into pieces, as by striking or knocking over'),\n",
+ " ('crash', 'hurl or thrust violently'),\n",
+ " ('scare away', 'cause to lose courage'),\n",
+ " ('scud', 'run or move very quickly or hastily'),\n",
+ " ('dash', 'cause to lose courage'),\n",
+ " ('scare', 'cause to lose courage'),\n",
+ " ('scoot', 'run or move very quickly or hastily'),\n",
+ " ('pall', 'cause to lose courage'),\n",
+ " ('frighten away', 'cause to lose courage'),\n",
+ " ('scare off', 'cause to lose courage'),\n",
+ " ('flash', 'run or move very quickly or hastily'),\n",
+ " ('shoot', 'run or move very quickly or hastily')]},\n",
+ " {'answer': 'dated',\n",
+ " 'hint': 'synonyms for dated',\n",
+ " 'clues': [('go out', 'date regularly; have a steady relationship with'),\n",
+ " ('date stamp', 'stamp with a date'),\n",
+ " ('date', 'go on a date with'),\n",
+ " ('go steady', 'date regularly; have a steady relationship with'),\n",
+ " ('see', 'date regularly; have a steady relationship with')]},\n",
+ " {'answer': 'daunted',\n",
+ " 'hint': 'synonyms for daunted',\n",
+ " 'clues': [('daunt', 'cause to lose courage'),\n",
+ " ('frighten off', 'cause to lose courage'),\n",
+ " ('pall', 'cause to lose courage'),\n",
+ " ('scare away', 'cause to lose courage'),\n",
+ " ('frighten away', 'cause to lose courage'),\n",
+ " ('scare off', 'cause to lose courage'),\n",
+ " ('dash', 'cause to lose courage'),\n",
+ " ('scare', 'cause to lose courage')]},\n",
+ " {'answer': 'daunting',\n",
+ " 'hint': 'synonyms for daunting',\n",
+ " 'clues': [('daunt', 'cause to lose courage'),\n",
+ " ('frighten off', 'cause to lose courage'),\n",
+ " ('pall', 'cause to lose courage'),\n",
+ " ('scare away', 'cause to lose courage'),\n",
+ " ('frighten away', 'cause to lose courage'),\n",
+ " ('scare off', 'cause to lose courage'),\n",
+ " ('dash', 'cause to lose courage'),\n",
+ " ('scare', 'cause to lose courage')]},\n",
+ " {'answer': 'dazed',\n",
+ " 'hint': 'synonyms for dazed',\n",
+ " 'clues': [('daze',\n",
+ " 'to cause someone to lose clear vision, especially from intense light'),\n",
+ " ('dazzle',\n",
+ " 'to cause someone to lose clear vision, especially from intense light'),\n",
+ " ('bedaze', 'overcome as with astonishment or disbelief'),\n",
+ " ('stun', 'overcome as with astonishment or disbelief')]},\n",
+ " {'answer': 'deadened',\n",
+ " 'hint': 'synonyms for deadened',\n",
+ " 'clues': [('deaden',\n",
+ " 'make less lively, intense, or vigorous; impair in vigor, force, activity, or sensation'),\n",
+ " ('damp', 'make vague or obscure or make (an image) less visible'),\n",
+ " ('dampen', 'make vague or obscure or make (an image) less visible'),\n",
+ " ('blunt',\n",
+ " 'make less lively, intense, or vigorous; impair in vigor, force, activity, or sensation'),\n",
+ " ('girdle',\n",
+ " 'cut a girdle around so as to kill by interrupting the circulation of water and nutrients')]},\n",
+ " {'answer': 'deadening',\n",
+ " 'hint': 'synonyms for deadening',\n",
+ " 'clues': [('deaden',\n",
+ " 'make less lively, intense, or vigorous; impair in vigor, force, activity, or sensation'),\n",
+ " ('damp', 'make vague or obscure or make (an image) less visible'),\n",
+ " ('dampen', 'make vague or obscure or make (an image) less visible'),\n",
+ " ('blunt',\n",
+ " 'make less lively, intense, or vigorous; impair in vigor, force, activity, or sensation'),\n",
+ " ('girdle',\n",
+ " 'cut a girdle around so as to kill by interrupting the circulation of water and nutrients')]},\n",
+ " {'answer': 'debased',\n",
+ " 'hint': 'synonyms for debased',\n",
+ " 'clues': [('deprave', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('debauch', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('corrupt', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('misdirect', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('vitiate', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('pervert', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('alloy', 'lower in value by increasing the base-metal content'),\n",
+ " ('dilute',\n",
+ " 'corrupt, debase, or make impure by adding a foreign or inferior substance; often by replacing valuable ingredients with inferior ones'),\n",
+ " ('load',\n",
+ " 'corrupt, debase, or make impure by adding a foreign or inferior substance; often by replacing valuable ingredients with inferior ones'),\n",
+ " ('debase',\n",
+ " 'corrupt, debase, or make impure by adding a foreign or inferior substance; often by replacing valuable ingredients with inferior ones'),\n",
+ " ('demoralise', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('profane', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('adulterate',\n",
+ " 'corrupt, debase, or make impure by adding a foreign or inferior substance; often by replacing valuable ingredients with inferior ones'),\n",
+ " ('stretch',\n",
+ " 'corrupt, debase, or make impure by adding a foreign or inferior substance; often by replacing valuable ingredients with inferior ones'),\n",
+ " ('subvert', 'corrupt morally or by intemperance or sensuality')]},\n",
+ " {'answer': 'debasing',\n",
+ " 'hint': 'synonyms for debasing',\n",
+ " 'clues': [('deprave', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('debauch', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('corrupt', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('misdirect', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('vitiate', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('pervert', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('alloy', 'lower in value by increasing the base-metal content'),\n",
+ " ('dilute',\n",
+ " 'corrupt, debase, or make impure by adding a foreign or inferior substance; often by replacing valuable ingredients with inferior ones'),\n",
+ " ('load',\n",
+ " 'corrupt, debase, or make impure by adding a foreign or inferior substance; often by replacing valuable ingredients with inferior ones'),\n",
+ " ('debase',\n",
+ " 'corrupt, debase, or make impure by adding a foreign or inferior substance; often by replacing valuable ingredients with inferior ones'),\n",
+ " ('demoralise', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('profane', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('adulterate',\n",
+ " 'corrupt, debase, or make impure by adding a foreign or inferior substance; often by replacing valuable ingredients with inferior ones'),\n",
+ " ('stretch',\n",
+ " 'corrupt, debase, or make impure by adding a foreign or inferior substance; often by replacing valuable ingredients with inferior ones'),\n",
+ " ('subvert', 'corrupt morally or by intemperance or sensuality')]},\n",
+ " {'answer': 'debauched',\n",
+ " 'hint': 'synonyms for debauched',\n",
+ " 'clues': [('deprave', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('debauch', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('corrupt', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('misdirect', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('vitiate', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('pervert', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('demoralise', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('profane', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('subvert', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('debase', 'corrupt morally or by intemperance or sensuality')]},\n",
+ " {'answer': 'decayed',\n",
+ " 'hint': 'synonyms for decayed',\n",
+ " 'clues': [('decay', 'lose a stored charge, magnetic flux, or current'),\n",
+ " ('disintegrate', 'lose a stored charge, magnetic flux, or current'),\n",
+ " ('dilapidate', 'fall into decay or ruin'),\n",
+ " ('decompose', 'lose a stored charge, magnetic flux, or current'),\n",
+ " ('crumble', 'fall into decay or ruin')]},\n",
+ " {'answer': 'deceased',\n",
+ " 'hint': 'synonyms for deceased',\n",
+ " 'clues': [('drop dead',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('decease',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('give-up the ghost',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " (\"cash in one's chips\",\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('go',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('choke',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('perish',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('snuff it',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('kick the bucket',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('buy the farm',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('pass',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('exit',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('expire',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('pass away',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('die',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('conk',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('croak',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('pop off',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life')]},\n",
+ " {'answer': 'decided',\n",
+ " 'hint': 'synonyms for decided',\n",
+ " 'clues': [('decide', 'reach, make, or come to a decision about something'),\n",
+ " ('resolve', 'bring to an end; settle conclusively'),\n",
+ " ('settle', 'bring to an end; settle conclusively'),\n",
+ " ('adjudicate', 'bring to an end; settle conclusively'),\n",
+ " ('determine', 'reach, make, or come to a decision about something'),\n",
+ " (\"make up one's mind\",\n",
+ " 'reach, make, or come to a decision about something')]},\n",
+ " {'answer': 'deciding',\n",
+ " 'hint': 'synonyms for deciding',\n",
+ " 'clues': [('decide', 'reach, make, or come to a decision about something'),\n",
+ " ('resolve', 'bring to an end; settle conclusively'),\n",
+ " ('settle', 'bring to an end; settle conclusively'),\n",
+ " ('adjudicate', 'bring to an end; settle conclusively'),\n",
+ " ('determine', 'reach, make, or come to a decision about something'),\n",
+ " (\"make up one's mind\",\n",
+ " 'reach, make, or come to a decision about something')]},\n",
+ " {'answer': 'deciphered',\n",
+ " 'hint': 'synonyms for deciphered',\n",
+ " 'clues': [('decrypt', 'convert code into ordinary language'),\n",
+ " ('decipher', 'convert code into ordinary language'),\n",
+ " ('trace', 'read with difficulty'),\n",
+ " ('decode', 'convert code into ordinary language')]},\n",
+ " {'answer': 'declared',\n",
+ " 'hint': 'synonyms for declared',\n",
+ " 'clues': [('declare', 'announce publicly or officially'),\n",
+ " ('announce', 'announce publicly or officially'),\n",
+ " ('adjudge', 'declare to be'),\n",
+ " ('hold', 'declare to be')]},\n",
+ " {'answer': 'decorated',\n",
+ " 'hint': 'synonyms for decorated',\n",
+ " 'clues': [('adorn',\n",
+ " 'make more attractive by adding ornament, colour, etc.'),\n",
+ " ('beautify', 'make more attractive by adding ornament, colour, etc.'),\n",
+ " ('decorate', 'provide with decoration'),\n",
+ " ('grace', 'be beautiful to look at'),\n",
+ " ('embellish', 'make more attractive by adding ornament, colour, etc.'),\n",
+ " ('ornament', 'make more attractive by adding ornament, colour, etc.'),\n",
+ " ('deck', 'be beautiful to look at'),\n",
+ " ('dress', 'provide with decoration')]},\n",
+ " {'answer': 'decreased',\n",
+ " 'hint': 'synonyms for decreased',\n",
+ " 'clues': [('lessen', 'make smaller'),\n",
+ " ('minify', 'make smaller'),\n",
+ " ('decrease', 'make smaller'),\n",
+ " ('diminish', 'decrease in size, extent, or range'),\n",
+ " ('fall', 'decrease in size, extent, or range')]},\n",
+ " {'answer': 'decreasing',\n",
+ " 'hint': 'synonyms for decreasing',\n",
+ " 'clues': [('lessen', 'make smaller'),\n",
+ " ('minify', 'make smaller'),\n",
+ " ('decrease', 'make smaller'),\n",
+ " ('diminish', 'decrease in size, extent, or range'),\n",
+ " ('fall', 'decrease in size, extent, or range')]},\n",
+ " {'answer': 'dedicated',\n",
+ " 'hint': 'synonyms for dedicated',\n",
+ " 'clues': [('dedicate',\n",
+ " 'give entirely to a specific person, activity, or cause'),\n",
+ " ('commit', 'give entirely to a specific person, activity, or cause'),\n",
+ " ('devote', 'give entirely to a specific person, activity, or cause'),\n",
+ " ('consecrate', 'give entirely to a specific person, activity, or cause'),\n",
+ " ('give', 'give entirely to a specific person, activity, or cause')]},\n",
+ " {'answer': 'deepening',\n",
+ " 'hint': 'synonyms for deepening',\n",
+ " 'clues': [('deepen', 'become more intense'),\n",
+ " ('heighten', 'make more intense, stronger, or more marked; ,'),\n",
+ " ('compound', 'make more intense, stronger, or more marked; ,'),\n",
+ " ('change', 'become deeper in tone'),\n",
+ " ('intensify', 'make more intense, stronger, or more marked; ,')]},\n",
+ " {'answer': 'defeated',\n",
+ " 'hint': 'synonyms for defeated',\n",
+ " 'clues': [('defeat', 'thwart the passage of'),\n",
+ " ('vote out', 'thwart the passage of'),\n",
+ " ('get the better of', 'win a victory over'),\n",
+ " ('overcome', 'win a victory over'),\n",
+ " ('shoot down', 'thwart the passage of'),\n",
+ " ('vote down', 'thwart the passage of'),\n",
+ " ('kill', 'thwart the passage of')]},\n",
+ " {'answer': 'defending',\n",
+ " 'hint': 'synonyms for defending',\n",
+ " 'clues': [('maintain', 'state or assert'),\n",
+ " ('defend', 'fight against or resist strongly'),\n",
+ " ('represent', 'be the defense counsel for someone in a trial'),\n",
+ " ('fight down', 'fight against or resist strongly'),\n",
+ " ('support', 'argue or speak in defense of'),\n",
+ " ('fend for', 'argue or speak in defense of'),\n",
+ " ('fight', 'fight against or resist strongly'),\n",
+ " ('oppose', 'fight against or resist strongly'),\n",
+ " ('guard', 'protect against a challenge or attack'),\n",
+ " ('champion', 'protect or fight for as a champion'),\n",
+ " ('hold', 'protect against a challenge or attack'),\n",
+ " ('fight back', 'fight against or resist strongly')]},\n",
+ " {'answer': 'defiled',\n",
+ " 'hint': 'synonyms for defiled',\n",
+ " 'clues': [('maculate', 'spot, stain, or pollute'),\n",
+ " ('befoul', 'spot, stain, or pollute'),\n",
+ " ('tarnish',\n",
+ " 'make dirty or spotty, as by exposure to air; also used metaphorically'),\n",
+ " ('defile', 'spot, stain, or pollute'),\n",
+ " ('cloud', 'place under suspicion or cast doubt upon'),\n",
+ " ('stain',\n",
+ " 'make dirty or spotty, as by exposure to air; also used metaphorically'),\n",
+ " ('foul', 'spot, stain, or pollute'),\n",
+ " ('taint', 'place under suspicion or cast doubt upon'),\n",
+ " ('corrupt', 'place under suspicion or cast doubt upon'),\n",
+ " ('sully', 'place under suspicion or cast doubt upon')]},\n",
+ " {'answer': 'defined',\n",
+ " 'hint': 'synonyms for defined',\n",
+ " 'clues': [('specify', 'decide upon or fix definitely'),\n",
+ " ('delineate', 'show the form or outline of'),\n",
+ " ('define', 'determine the essential quality of'),\n",
+ " ('fix', 'decide upon or fix definitely'),\n",
+ " ('limit', 'decide upon or fix definitely'),\n",
+ " ('determine', 'decide upon or fix definitely'),\n",
+ " ('set', 'decide upon or fix definitely'),\n",
+ " ('delimitate', 'determine the essential quality of'),\n",
+ " ('delimit', 'determine the essential quality of')]},\n",
+ " {'answer': 'deformed',\n",
+ " 'hint': 'synonyms for deformed',\n",
+ " 'clues': [('flex',\n",
+ " 'cause (a plastic object) to assume a crooked or angular form'),\n",
+ " ('deform', 'assume a different shape or form'),\n",
+ " ('turn', 'cause (a plastic object) to assume a crooked or angular form'),\n",
+ " ('distort', 'alter the shape of (something) by stress'),\n",
+ " ('change form', 'assume a different shape or form'),\n",
+ " ('contort', 'twist and press out of shape'),\n",
+ " ('twist', 'cause (a plastic object) to assume a crooked or angular form'),\n",
+ " ('change shape', 'assume a different shape or form'),\n",
+ " ('bend', 'cause (a plastic object) to assume a crooked or angular form'),\n",
+ " ('strain', 'alter the shape of (something) by stress'),\n",
+ " ('wring', 'twist and press out of shape')]},\n",
+ " {'answer': 'degraded',\n",
+ " 'hint': 'synonyms for degraded',\n",
+ " 'clues': [('demean', 'reduce in worth or character, usually verbally'),\n",
+ " ('degrade', 'reduce in worth or character, usually verbally'),\n",
+ " ('disgrace', 'reduce in worth or character, usually verbally'),\n",
+ " ('cheapen', 'lower the grade of something; reduce its worth'),\n",
+ " ('put down', 'reduce in worth or character, usually verbally'),\n",
+ " ('take down', 'reduce in worth or character, usually verbally')]},\n",
+ " {'answer': 'degrading',\n",
+ " 'hint': 'synonyms for degrading',\n",
+ " 'clues': [('demean', 'reduce in worth or character, usually verbally'),\n",
+ " ('degrade', 'reduce in worth or character, usually verbally'),\n",
+ " ('disgrace', 'reduce in worth or character, usually verbally'),\n",
+ " ('cheapen', 'lower the grade of something; reduce its worth'),\n",
+ " ('put down', 'reduce in worth or character, usually verbally'),\n",
+ " ('take down', 'reduce in worth or character, usually verbally')]},\n",
+ " {'answer': 'dejected',\n",
+ " 'hint': 'synonyms for dejected',\n",
+ " 'clues': [('demoralise', \"lower someone's spirits; make downhearted\"),\n",
+ " ('dismay', \"lower someone's spirits; make downhearted\"),\n",
+ " ('cast down', \"lower someone's spirits; make downhearted\"),\n",
+ " ('dispirit', \"lower someone's spirits; make downhearted\"),\n",
+ " ('get down', \"lower someone's spirits; make downhearted\"),\n",
+ " ('deject', \"lower someone's spirits; make downhearted\"),\n",
+ " ('depress', \"lower someone's spirits; make downhearted\")]},\n",
+ " {'answer': 'delayed',\n",
+ " 'hint': 'synonyms for delayed',\n",
+ " 'clues': [('detain', 'cause to be slowed down or delayed'),\n",
+ " ('delay', 'cause to be slowed down or delayed'),\n",
+ " ('check', 'slow the growth or development of'),\n",
+ " ('retard', 'slow the growth or development of'),\n",
+ " ('hold up', 'cause to be slowed down or delayed'),\n",
+ " ('stay', 'stop or halt')]},\n",
+ " {'answer': 'deliberate',\n",
+ " 'hint': 'synonyms for deliberate',\n",
+ " 'clues': [('turn over', 'think about carefully; weigh'),\n",
+ " ('debate', 'think about carefully; weigh'),\n",
+ " ('consider', 'think about carefully; weigh'),\n",
+ " ('moot', 'think about carefully; weigh')]},\n",
+ " {'answer': 'delighted',\n",
+ " 'hint': 'synonyms for delighted',\n",
+ " 'clues': [('ravish', 'hold spellbound'),\n",
+ " ('transport', 'hold spellbound'),\n",
+ " ('enchant', 'hold spellbound'),\n",
+ " ('enthral', 'hold spellbound'),\n",
+ " ('enjoy', 'take delight in'),\n",
+ " ('delight', 'take delight in'),\n",
+ " ('please', 'give pleasure to or be pleasing to'),\n",
+ " ('enrapture', 'hold spellbound'),\n",
+ " ('revel', 'take delight in')]},\n",
+ " {'answer': 'delimited',\n",
+ " 'hint': 'synonyms for delimited',\n",
+ " 'clues': [('define', 'determine the essential quality of'),\n",
+ " ('specify', 'determine the essential quality of'),\n",
+ " ('delimitate', 'determine the essential quality of'),\n",
+ " ('demarcate', 'set, mark, or draw the boundaries of something'),\n",
+ " ('subtend', 'be opposite to; of angles and sides, in geometry'),\n",
+ " ('delineate', 'determine the essential quality of'),\n",
+ " ('delimit', 'be opposite to; of angles and sides, in geometry')]},\n",
+ " {'answer': 'delineate',\n",
+ " 'hint': 'synonyms for delineate',\n",
+ " 'clues': [('line', 'make a mark or lines on a surface'),\n",
+ " ('define', 'determine the essential quality of'),\n",
+ " ('describe', 'make a mark or lines on a surface'),\n",
+ " ('draw', 'make a mark or lines on a surface'),\n",
+ " ('specify', 'determine the essential quality of'),\n",
+ " ('limn', 'trace the shape of'),\n",
+ " ('delimitate', 'determine the essential quality of'),\n",
+ " ('trace', 'make a mark or lines on a surface'),\n",
+ " ('delimit', 'determine the essential quality of'),\n",
+ " ('outline', 'trace the shape of')]},\n",
+ " {'answer': 'delineated',\n",
+ " 'hint': 'synonyms for delineated',\n",
+ " 'clues': [('line', 'make a mark or lines on a surface'),\n",
+ " ('delineate', 'show the form or outline of'),\n",
+ " ('define', 'determine the essential quality of'),\n",
+ " ('describe', 'make a mark or lines on a surface'),\n",
+ " ('draw', 'make a mark or lines on a surface'),\n",
+ " ('specify', 'determine the essential quality of'),\n",
+ " ('limn', 'trace the shape of'),\n",
+ " ('delimitate', 'determine the essential quality of'),\n",
+ " ('trace', 'make a mark or lines on a surface'),\n",
+ " ('delimit', 'determine the essential quality of'),\n",
+ " ('outline', 'trace the shape of')]},\n",
+ " {'answer': 'demanding',\n",
+ " 'hint': 'synonyms for demanding',\n",
+ " 'clues': [('need', 'require as useful, just, or proper'),\n",
+ " ('require', 'require as useful, just, or proper'),\n",
+ " ('take', 'require as useful, just, or proper'),\n",
+ " ('call for', 'require as useful, just, or proper'),\n",
+ " ('demand', 'lay legal claim to'),\n",
+ " ('ask', 'require as useful, just, or proper'),\n",
+ " ('necessitate', 'require as useful, just, or proper'),\n",
+ " ('involve', 'require as useful, just, or proper'),\n",
+ " ('postulate', 'require as useful, just, or proper'),\n",
+ " ('exact', 'claim as due or just')]},\n",
+ " {'answer': 'demeaning',\n",
+ " 'hint': 'synonyms for demeaning',\n",
+ " 'clues': [('demean', 'reduce in worth or character, usually verbally'),\n",
+ " ('degrade', 'reduce in worth or character, usually verbally'),\n",
+ " ('disgrace', 'reduce in worth or character, usually verbally'),\n",
+ " ('put down', 'reduce in worth or character, usually verbally'),\n",
+ " ('take down', 'reduce in worth or character, usually verbally')]},\n",
+ " {'answer': 'demolished',\n",
+ " 'hint': 'synonyms for demolished',\n",
+ " 'clues': [('pulverise', 'destroy completely'),\n",
+ " ('demolish', 'humiliate or depress completely'),\n",
+ " ('destroy', 'defeat soundly'),\n",
+ " ('crush', 'humiliate or depress completely'),\n",
+ " ('smash', 'humiliate or depress completely')]},\n",
+ " {'answer': 'demonstrated',\n",
+ " 'hint': 'synonyms for demonstrated',\n",
+ " 'clues': [('attest',\n",
+ " \"provide evidence for; stand as proof of; show by one's behavior, attitude, or external attributes\"),\n",
+ " ('shew',\n",
+ " 'establish the validity of something, as by an example, explanation or experiment'),\n",
+ " ('establish',\n",
+ " 'establish the validity of something, as by an example, explanation or experiment'),\n",
+ " ('certify',\n",
+ " \"provide evidence for; stand as proof of; show by one's behavior, attitude, or external attributes\"),\n",
+ " ('exhibit', 'give an exhibition of to an interested audience'),\n",
+ " ('manifest',\n",
+ " \"provide evidence for; stand as proof of; show by one's behavior, attitude, or external attributes\"),\n",
+ " ('prove',\n",
+ " 'establish the validity of something, as by an example, explanation or experiment'),\n",
+ " ('show', 'give an exhibition of to an interested audience'),\n",
+ " ('demonstrate',\n",
+ " 'establish the validity of something, as by an example, explanation or experiment'),\n",
+ " ('present', 'give an exhibition of to an interested audience'),\n",
+ " ('march', 'march in protest; take part in a demonstration'),\n",
+ " ('demo', 'give an exhibition of to an interested audience'),\n",
+ " ('evidence',\n",
+ " \"provide evidence for; stand as proof of; show by one's behavior, attitude, or external attributes\")]},\n",
+ " {'answer': 'demoralised',\n",
+ " 'hint': 'synonyms for demoralised',\n",
+ " 'clues': [('deprave', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('demoralise', \"lower someone's spirits; make downhearted\"),\n",
+ " ('debauch', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('dismay', \"lower someone's spirits; make downhearted\"),\n",
+ " ('corrupt', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('pervert', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('cast down', \"lower someone's spirits; make downhearted\"),\n",
+ " ('depress', \"lower someone's spirits; make downhearted\"),\n",
+ " ('debase', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('misdirect', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('vitiate', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('dispirit', \"lower someone's spirits; make downhearted\"),\n",
+ " ('get down', \"lower someone's spirits; make downhearted\"),\n",
+ " ('deject', \"lower someone's spirits; make downhearted\"),\n",
+ " ('profane', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('subvert', 'corrupt morally or by intemperance or sensuality')]},\n",
+ " {'answer': 'demoralising',\n",
+ " 'hint': 'synonyms for demoralising',\n",
+ " 'clues': [('deprave', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('demoralise', \"lower someone's spirits; make downhearted\"),\n",
+ " ('debauch', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('dismay', \"lower someone's spirits; make downhearted\"),\n",
+ " ('corrupt', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('pervert', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('cast down', \"lower someone's spirits; make downhearted\"),\n",
+ " ('depress', \"lower someone's spirits; make downhearted\"),\n",
+ " ('debase', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('misdirect', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('vitiate', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('dispirit', \"lower someone's spirits; make downhearted\"),\n",
+ " ('get down', \"lower someone's spirits; make downhearted\"),\n",
+ " ('deject', \"lower someone's spirits; make downhearted\"),\n",
+ " ('profane', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('subvert', 'corrupt morally or by intemperance or sensuality')]},\n",
+ " {'answer': 'demoralized',\n",
+ " 'hint': 'synonyms for demoralized',\n",
+ " 'clues': [('deprave', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('demoralise', \"lower someone's spirits; make downhearted\"),\n",
+ " ('debauch', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('dismay', \"lower someone's spirits; make downhearted\"),\n",
+ " ('corrupt', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('pervert', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('cast down', \"lower someone's spirits; make downhearted\"),\n",
+ " ('depress', \"lower someone's spirits; make downhearted\"),\n",
+ " ('debase', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('misdirect', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('vitiate', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('dispirit', \"lower someone's spirits; make downhearted\"),\n",
+ " ('get down', \"lower someone's spirits; make downhearted\"),\n",
+ " ('deject', \"lower someone's spirits; make downhearted\"),\n",
+ " ('profane', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('subvert', 'corrupt morally or by intemperance or sensuality')]},\n",
+ " {'answer': 'demoralizing',\n",
+ " 'hint': 'synonyms for demoralizing',\n",
+ " 'clues': [('deprave', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('demoralise', \"lower someone's spirits; make downhearted\"),\n",
+ " ('debauch', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('dismay', \"lower someone's spirits; make downhearted\"),\n",
+ " ('corrupt', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('pervert', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('cast down', \"lower someone's spirits; make downhearted\"),\n",
+ " ('depress', \"lower someone's spirits; make downhearted\"),\n",
+ " ('debase', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('misdirect', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('vitiate', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('dispirit', \"lower someone's spirits; make downhearted\"),\n",
+ " ('get down', \"lower someone's spirits; make downhearted\"),\n",
+ " ('deject', \"lower someone's spirits; make downhearted\"),\n",
+ " ('profane', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('subvert', 'corrupt morally or by intemperance or sensuality')]},\n",
+ " {'answer': 'denigrating',\n",
+ " 'hint': 'synonyms for denigrating',\n",
+ " 'clues': [('slander',\n",
+ " 'charge falsely or with malicious intent; attack the good name and reputation of someone'),\n",
+ " ('derogate', 'cause to seem less serious; play down'),\n",
+ " ('besmirch',\n",
+ " 'charge falsely or with malicious intent; attack the good name and reputation of someone'),\n",
+ " ('minimize', 'cause to seem less serious; play down'),\n",
+ " ('smear',\n",
+ " 'charge falsely or with malicious intent; attack the good name and reputation of someone'),\n",
+ " ('defame',\n",
+ " 'charge falsely or with malicious intent; attack the good name and reputation of someone'),\n",
+ " ('belittle', 'cause to seem less serious; play down'),\n",
+ " ('denigrate',\n",
+ " 'charge falsely or with malicious intent; attack the good name and reputation of someone'),\n",
+ " ('asperse',\n",
+ " 'charge falsely or with malicious intent; attack the good name and reputation of someone'),\n",
+ " ('sully',\n",
+ " 'charge falsely or with malicious intent; attack the good name and reputation of someone'),\n",
+ " ('calumniate',\n",
+ " 'charge falsely or with malicious intent; attack the good name and reputation of someone')]},\n",
+ " {'answer': 'departed',\n",
+ " 'hint': 'synonyms for departed',\n",
+ " 'clues': [('straggle', 'wander from a direct or straight course'),\n",
+ " ('vary', 'be at variance with; be out of line with'),\n",
+ " ('take off', 'leave'),\n",
+ " ('depart', 'leave'),\n",
+ " ('set forth', 'leave'),\n",
+ " ('start', 'leave'),\n",
+ " ('pull up stakes',\n",
+ " 'remove oneself from an association with or participation in'),\n",
+ " ('deviate', 'be at variance with; be out of line with'),\n",
+ " ('diverge', 'be at variance with; be out of line with'),\n",
+ " ('set out', 'leave'),\n",
+ " ('go', 'move away from a place into another direction'),\n",
+ " ('take leave', 'go away or leave'),\n",
+ " ('leave', 'remove oneself from an association with or participation in'),\n",
+ " ('digress', 'wander from a direct or straight course'),\n",
+ " ('set off', 'leave'),\n",
+ " ('quit', 'go away or leave'),\n",
+ " ('part', 'leave'),\n",
+ " ('sidetrack', 'wander from a direct or straight course'),\n",
+ " ('start out', 'leave'),\n",
+ " ('go away', 'move away from a place into another direction')]},\n",
+ " {'answer': 'depicted',\n",
+ " 'hint': 'synonyms for depicted',\n",
+ " 'clues': [('depict', 'show in, or as in, a picture'),\n",
+ " ('portray', 'make a portrait of'),\n",
+ " ('describe', 'give a description of'),\n",
+ " ('draw', 'give a description of'),\n",
+ " ('show', 'show in, or as in, a picture'),\n",
+ " ('render', 'show in, or as in, a picture'),\n",
+ " ('picture', 'show in, or as in, a picture'),\n",
+ " ('limn', 'make a portrait of')]},\n",
+ " {'answer': 'depleted',\n",
+ " 'hint': 'synonyms for depleted',\n",
+ " 'clues': [('wipe out', 'use up (resources or materials)'),\n",
+ " ('consume', 'use up (resources or materials)'),\n",
+ " ('exhaust', 'use up (resources or materials)'),\n",
+ " ('deplete', 'use up (resources or materials)'),\n",
+ " ('run through', 'use up (resources or materials)'),\n",
+ " ('use up', 'use up (resources or materials)'),\n",
+ " ('eat up', 'use up (resources or materials)'),\n",
+ " ('eat', 'use up (resources or materials)')]},\n",
+ " {'answer': 'depraved',\n",
+ " 'hint': 'synonyms for depraved',\n",
+ " 'clues': [('deprave', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('debauch', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('corrupt', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('misdirect', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('vitiate', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('pervert', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('demoralise', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('profane', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('subvert', 'corrupt morally or by intemperance or sensuality'),\n",
+ " ('debase', 'corrupt morally or by intemperance or sensuality')]},\n",
+ " {'answer': 'depreciating',\n",
+ " 'hint': 'synonyms for depreciating',\n",
+ " 'clues': [('depreciate', 'lower the value of something'),\n",
+ " ('undervalue', 'lose in value'),\n",
+ " ('devalue', 'lose in value'),\n",
+ " ('vilipend', 'belittle')]},\n",
+ " {'answer': 'depressed',\n",
+ " 'hint': 'synonyms for depressed',\n",
+ " 'clues': [('depress', 'press down'),\n",
+ " ('demoralise', \"lower someone's spirits; make downhearted\"),\n",
+ " ('dismay', \"lower someone's spirits; make downhearted\"),\n",
+ " ('press down', 'press down'),\n",
+ " ('cast down', \"lower someone's spirits; make downhearted\"),\n",
+ " ('dispirit', \"lower someone's spirits; make downhearted\"),\n",
+ " ('get down', \"lower someone's spirits; make downhearted\"),\n",
+ " ('deject', \"lower someone's spirits; make downhearted\"),\n",
+ " ('lower', 'cause to drop or sink')]},\n",
+ " {'answer': 'depressing',\n",
+ " 'hint': 'synonyms for depressing',\n",
+ " 'clues': [('depress', 'press down'),\n",
+ " ('demoralise', \"lower someone's spirits; make downhearted\"),\n",
+ " ('dismay', \"lower someone's spirits; make downhearted\"),\n",
+ " ('press down', 'press down'),\n",
+ " ('cast down', \"lower someone's spirits; make downhearted\"),\n",
+ " ('dispirit', \"lower someone's spirits; make downhearted\"),\n",
+ " ('get down', \"lower someone's spirits; make downhearted\"),\n",
+ " ('deject', \"lower someone's spirits; make downhearted\"),\n",
+ " ('lower', 'cause to drop or sink')]},\n",
+ " {'answer': 'deprived',\n",
+ " 'hint': 'synonyms for deprived',\n",
+ " 'clues': [('deprive', 'take away'),\n",
+ " ('divest', 'take away possessions from someone'),\n",
+ " ('impoverish', 'take away'),\n",
+ " ('strip', 'take away possessions from someone')]},\n",
+ " {'answer': 'deranged',\n",
+ " 'hint': 'synonyms for deranged',\n",
+ " 'clues': [('perturb', 'throw into great confusion or disorder'),\n",
+ " ('derange', 'throw into great confusion or disorder'),\n",
+ " ('unbalance',\n",
+ " 'derange mentally, throw out of mental balance; make insane'),\n",
+ " ('throw out of kilter', 'throw into great confusion or disorder')]},\n",
+ " {'answer': 'derived',\n",
+ " 'hint': 'synonyms for derived',\n",
+ " 'clues': [('deduce', 'reason by deduction; establish by deduction'),\n",
+ " ('descend',\n",
+ " 'come from; be connected by a relationship of blood, for example'),\n",
+ " ('derive', 'come from'),\n",
+ " ('gain', 'obtain'),\n",
+ " ('infer', 'reason by deduction; establish by deduction'),\n",
+ " ('deduct', 'reason by deduction; establish by deduction'),\n",
+ " ('come',\n",
+ " 'come from; be connected by a relationship of blood, for example')]},\n",
+ " {'answer': 'descending',\n",
+ " 'hint': 'synonyms for descending',\n",
+ " 'clues': [('condescend',\n",
+ " \"do something that one considers to be below one's dignity\"),\n",
+ " ('go down', 'move downward and lower, but not necessarily all the way'),\n",
+ " ('descend',\n",
+ " 'come from; be connected by a relationship of blood, for example'),\n",
+ " ('come down', 'move downward and lower, but not necessarily all the way'),\n",
+ " ('deign', \"do something that one considers to be below one's dignity\"),\n",
+ " ('fall', 'move downward and lower, but not necessarily all the way'),\n",
+ " ('settle', 'come as if by falling'),\n",
+ " ('derive',\n",
+ " 'come from; be connected by a relationship of blood, for example'),\n",
+ " ('come',\n",
+ " 'come from; be connected by a relationship of blood, for example')]},\n",
+ " {'answer': 'described',\n",
+ " 'hint': 'synonyms for described',\n",
+ " 'clues': [('line', 'make a mark or lines on a surface'),\n",
+ " ('describe', 'to give an account or representation of in words'),\n",
+ " ('draw', 'give a description of'),\n",
+ " ('account', 'to give an account or representation of in words'),\n",
+ " ('depict', 'give a description of'),\n",
+ " ('delineate', 'make a mark or lines on a surface'),\n",
+ " ('name', 'identify as in botany or biology, for example'),\n",
+ " ('distinguish', 'identify as in botany or biology, for example'),\n",
+ " ('key', 'identify as in botany or biology, for example'),\n",
+ " ('trace', 'make a mark or lines on a surface'),\n",
+ " ('key out', 'identify as in botany or biology, for example'),\n",
+ " ('identify', 'identify as in botany or biology, for example'),\n",
+ " ('report', 'to give an account or representation of in words'),\n",
+ " ('discover', 'identify as in botany or biology, for example')]},\n",
+ " {'answer': 'desecrated',\n",
+ " 'hint': 'synonyms for desecrated',\n",
+ " 'clues': [('desecrate',\n",
+ " 'remove the consecration from a person or an object'),\n",
+ " ('outrage', 'violate the sacred character of a place or language'),\n",
+ " ('violate', 'violate the sacred character of a place or language'),\n",
+ " ('profane', 'violate the sacred character of a place or language'),\n",
+ " ('unhallow', 'remove the consecration from a person or an object')]},\n",
+ " {'answer': 'deserted',\n",
+ " 'hint': 'synonyms for deserted',\n",
+ " 'clues': [('desolate',\n",
+ " 'leave someone who needs or counts on you; leave in the lurch'),\n",
+ " ('desert', 'leave behind'),\n",
+ " ('abandon',\n",
+ " 'leave someone who needs or counts on you; leave in the lurch'),\n",
+ " ('defect',\n",
+ " 'desert (a cause, a country or an army), often in order to join the opposing cause, country, or army'),\n",
+ " ('forsake',\n",
+ " 'leave someone who needs or counts on you; leave in the lurch')]},\n",
+ " {'answer': 'designate',\n",
+ " 'hint': 'synonyms for designate',\n",
+ " 'clues': [('denominate', 'assign a name or title to'),\n",
+ " ('depute',\n",
+ " 'give an assignment to (a person) to a post, or assign a task to (a person)'),\n",
+ " ('indicate',\n",
+ " 'indicate a place, direction, person, or thing; either spatially or figuratively'),\n",
+ " ('doom', 'decree or designate beforehand'),\n",
+ " ('destine', 'design or destine'),\n",
+ " ('assign',\n",
+ " 'give an assignment to (a person) to a post, or assign a task to (a person)'),\n",
+ " ('point',\n",
+ " 'indicate a place, direction, person, or thing; either spatially or figuratively'),\n",
+ " ('fate', 'decree or designate beforehand'),\n",
+ " ('specify', 'design or destine'),\n",
+ " ('intend', 'design or destine'),\n",
+ " ('delegate',\n",
+ " 'give an assignment to (a person) to a post, or assign a task to (a person)'),\n",
+ " ('show',\n",
+ " 'indicate a place, direction, person, or thing; either spatially or figuratively')]},\n",
+ " {'answer': 'designed',\n",
+ " 'hint': 'synonyms for designed',\n",
+ " 'clues': [('design',\n",
+ " 'create the design for; create or execute in an artistic or highly skilled manner'),\n",
+ " ('plan', 'make a design of; plan out in systematic, often graphic form'),\n",
+ " ('project', 'make or work out a plan for; devise'),\n",
+ " ('contrive', 'make or work out a plan for; devise')]},\n",
+ " {'answer': 'designing',\n",
+ " 'hint': 'synonyms for designing',\n",
+ " 'clues': [('design',\n",
+ " 'create the design for; create or execute in an artistic or highly skilled manner'),\n",
+ " ('plan', 'make a design of; plan out in systematic, often graphic form'),\n",
+ " ('project', 'make or work out a plan for; devise'),\n",
+ " ('contrive', 'make or work out a plan for; devise')]},\n",
+ " {'answer': 'desired',\n",
+ " 'hint': 'synonyms for desired',\n",
+ " 'clues': [('hope', 'expect and wish'),\n",
+ " ('desire', 'expect and wish'),\n",
+ " ('want', 'feel or have a desire for; want strongly'),\n",
+ " ('trust', 'expect and wish')]},\n",
+ " {'answer': 'desolate',\n",
+ " 'hint': 'synonyms for desolate',\n",
+ " 'clues': [('scourge', 'cause extensive destruction or ruin utterly'),\n",
+ " ('ravage', 'cause extensive destruction or ruin utterly'),\n",
+ " ('forsake',\n",
+ " 'leave someone who needs or counts on you; leave in the lurch'),\n",
+ " ('depopulate', 'reduce in population'),\n",
+ " ('abandon',\n",
+ " 'leave someone who needs or counts on you; leave in the lurch'),\n",
+ " ('waste', 'cause extensive destruction or ruin utterly'),\n",
+ " ('desert',\n",
+ " 'leave someone who needs or counts on you; leave in the lurch'),\n",
+ " ('devastate', 'cause extensive destruction or ruin utterly'),\n",
+ " ('lay waste to', 'cause extensive destruction or ruin utterly')]},\n",
+ " {'answer': 'despised',\n",
+ " 'hint': 'synonyms for despised',\n",
+ " 'clues': [('scorn', 'look down on with disdain'),\n",
+ " ('despise', 'look down on with disdain'),\n",
+ " ('disdain', 'look down on with disdain'),\n",
+ " ('contemn', 'look down on with disdain')]},\n",
+ " {'answer': 'despoiled',\n",
+ " 'hint': 'synonyms for despoiled',\n",
+ " 'clues': [('plunder', 'steal goods; take as spoils'),\n",
+ " ('loot', 'steal goods; take as spoils'),\n",
+ " ('spoil', 'destroy and strip of its possession'),\n",
+ " ('reave', 'steal goods; take as spoils'),\n",
+ " ('despoil', 'steal goods; take as spoils'),\n",
+ " ('rifle', 'steal goods; take as spoils'),\n",
+ " ('rape', 'destroy and strip of its possession'),\n",
+ " ('foray', 'steal goods; take as spoils'),\n",
+ " ('strip', 'steal goods; take as spoils'),\n",
+ " ('violate', 'destroy and strip of its possession'),\n",
+ " ('pillage', 'steal goods; take as spoils'),\n",
+ " ('ransack', 'steal goods; take as spoils')]},\n",
+ " {'answer': 'destined',\n",
+ " 'hint': 'synonyms for destined',\n",
+ " 'clues': [('doom', 'decree or designate beforehand'),\n",
+ " ('destine', 'design or destine'),\n",
+ " ('fate', 'decree or designate beforehand'),\n",
+ " ('designate', 'decree or designate beforehand'),\n",
+ " ('specify', 'design or destine'),\n",
+ " ('intend', 'design or destine')]},\n",
+ " {'answer': 'destroyed',\n",
+ " 'hint': 'synonyms for destroyed',\n",
+ " 'clues': [('destruct',\n",
+ " 'do away with, cause the destruction or undoing of'),\n",
+ " ('destroy', 'put (an animal) to death'),\n",
+ " ('ruin', 'destroy completely; damage irreparably'),\n",
+ " ('demolish', 'defeat soundly'),\n",
+ " ('put down', 'put (an animal) to death')]},\n",
+ " {'answer': 'detected',\n",
+ " 'hint': 'synonyms for detected',\n",
+ " 'clues': [('observe',\n",
+ " 'discover or determine the existence, presence, or fact of'),\n",
+ " ('discover', 'discover or determine the existence, presence, or fact of'),\n",
+ " ('find', 'discover or determine the existence, presence, or fact of'),\n",
+ " ('notice', 'discover or determine the existence, presence, or fact of'),\n",
+ " ('detect', 'discover or determine the existence, presence, or fact of')]},\n",
+ " {'answer': 'determined',\n",
+ " 'hint': 'synonyms for determined',\n",
+ " 'clues': [('fix', 'decide upon or fix definitely'),\n",
+ " ('determine',\n",
+ " 'find out, learn, or determine with certainty, usually by making an inquiry or other effort'),\n",
+ " ('regulate', 'shape or influence; give direction to'),\n",
+ " ('square up', 'settle conclusively; come to terms'),\n",
+ " ('check',\n",
+ " 'find out, learn, or determine with certainty, usually by making an inquiry or other effort'),\n",
+ " ('find out',\n",
+ " 'find out, learn, or determine with certainty, usually by making an inquiry or other effort'),\n",
+ " ('watch',\n",
+ " 'find out, learn, or determine with certainty, usually by making an inquiry or other effort'),\n",
+ " (\"make up one's mind\",\n",
+ " 'reach, make, or come to a decision about something'),\n",
+ " ('find',\n",
+ " 'establish after a calculation, investigation, experiment, survey, or study'),\n",
+ " ('mold', 'shape or influence; give direction to'),\n",
+ " ('shape', 'shape or influence; give direction to'),\n",
+ " ('ascertain',\n",
+ " 'establish after a calculation, investigation, experiment, survey, or study'),\n",
+ " ('learn',\n",
+ " 'find out, learn, or determine with certainty, usually by making an inquiry or other effort'),\n",
+ " ('specify', 'decide upon or fix definitely'),\n",
+ " ('decide', 'reach, make, or come to a decision about something'),\n",
+ " ('see',\n",
+ " 'find out, learn, or determine with certainty, usually by making an inquiry or other effort'),\n",
+ " ('limit', 'decide upon or fix definitely'),\n",
+ " ('settle', 'settle conclusively; come to terms'),\n",
+ " ('set', 'decide upon or fix definitely'),\n",
+ " ('square off', 'settle conclusively; come to terms'),\n",
+ " ('influence', 'shape or influence; give direction to'),\n",
+ " ('define', 'decide upon or fix definitely')]},\n",
+ " {'answer': 'determining',\n",
+ " 'hint': 'synonyms for determining',\n",
+ " 'clues': [('fix', 'decide upon or fix definitely'),\n",
+ " ('determine',\n",
+ " 'find out, learn, or determine with certainty, usually by making an inquiry or other effort'),\n",
+ " ('regulate', 'shape or influence; give direction to'),\n",
+ " ('square up', 'settle conclusively; come to terms'),\n",
+ " ('check',\n",
+ " 'find out, learn, or determine with certainty, usually by making an inquiry or other effort'),\n",
+ " ('find out',\n",
+ " 'find out, learn, or determine with certainty, usually by making an inquiry or other effort'),\n",
+ " ('watch',\n",
+ " 'find out, learn, or determine with certainty, usually by making an inquiry or other effort'),\n",
+ " (\"make up one's mind\",\n",
+ " 'reach, make, or come to a decision about something'),\n",
+ " ('find',\n",
+ " 'establish after a calculation, investigation, experiment, survey, or study'),\n",
+ " ('mold', 'shape or influence; give direction to'),\n",
+ " ('shape', 'shape or influence; give direction to'),\n",
+ " ('ascertain',\n",
+ " 'establish after a calculation, investigation, experiment, survey, or study'),\n",
+ " ('learn',\n",
+ " 'find out, learn, or determine with certainty, usually by making an inquiry or other effort'),\n",
+ " ('specify', 'decide upon or fix definitely'),\n",
+ " ('decide', 'reach, make, or come to a decision about something'),\n",
+ " ('see',\n",
+ " 'find out, learn, or determine with certainty, usually by making an inquiry or other effort'),\n",
+ " ('limit', 'decide upon or fix definitely'),\n",
+ " ('settle', 'settle conclusively; come to terms'),\n",
+ " ('set', 'decide upon or fix definitely'),\n",
+ " ('square off', 'settle conclusively; come to terms'),\n",
+ " ('influence', 'shape or influence; give direction to'),\n",
+ " ('define', 'decide upon or fix definitely')]},\n",
+ " {'answer': 'devastating',\n",
+ " 'hint': 'synonyms for devastating',\n",
+ " 'clues': [('devastate', 'overwhelm or overpower'),\n",
+ " ('waste', 'cause extensive destruction or ruin utterly'),\n",
+ " ('ravage', 'cause extensive destruction or ruin utterly'),\n",
+ " ('scourge', 'cause extensive destruction or ruin utterly'),\n",
+ " ('desolate', 'cause extensive destruction or ruin utterly'),\n",
+ " ('lay waste to', 'cause extensive destruction or ruin utterly')]},\n",
+ " {'answer': 'developed',\n",
+ " 'hint': 'synonyms for developed',\n",
+ " 'clues': [('arise', 'come into existence; take on form or shape'),\n",
+ " ('build up', 'change the use of and make available or usable'),\n",
+ " ('develop', 'become technologically advanced'),\n",
+ " ('break', 'happen'),\n",
+ " ('produce',\n",
+ " 'come to have or undergo a change of (physical features and attributes)'),\n",
+ " ('recrudesce', 'happen'),\n",
+ " ('evolve', 'work out'),\n",
+ " ('originate', 'come into existence; take on form or shape'),\n",
+ " ('spring up', 'come into existence; take on form or shape'),\n",
+ " ('acquire',\n",
+ " 'come to have or undergo a change of (physical features and attributes)'),\n",
+ " ('grow',\n",
+ " 'come to have or undergo a change of (physical features and attributes)'),\n",
+ " ('germinate', 'work out'),\n",
+ " ('explicate', 'elaborate, as of theories and hypotheses'),\n",
+ " ('uprise', 'come into existence; take on form or shape'),\n",
+ " ('make grow',\n",
+ " 'cause to grow and differentiate in ways conforming to its natural development'),\n",
+ " ('prepare', 'create by training and teaching'),\n",
+ " ('modernise', 'become technologically advanced'),\n",
+ " ('train', 'create by training and teaching'),\n",
+ " ('formulate', 'elaborate, as of theories and hypotheses'),\n",
+ " ('get',\n",
+ " 'come to have or undergo a change of (physical features and attributes)'),\n",
+ " ('educate', 'create by training and teaching')]},\n",
+ " {'answer': 'developing',\n",
+ " 'hint': 'synonyms for developing',\n",
+ " 'clues': [('arise', 'come into existence; take on form or shape'),\n",
+ " ('build up', 'change the use of and make available or usable'),\n",
+ " ('develop', 'become technologically advanced'),\n",
+ " ('break', 'happen'),\n",
+ " ('produce',\n",
+ " 'come to have or undergo a change of (physical features and attributes)'),\n",
+ " ('recrudesce', 'happen'),\n",
+ " ('evolve', 'work out'),\n",
+ " ('originate', 'come into existence; take on form or shape'),\n",
+ " ('spring up', 'come into existence; take on form or shape'),\n",
+ " ('acquire',\n",
+ " 'come to have or undergo a change of (physical features and attributes)'),\n",
+ " ('grow',\n",
+ " 'come to have or undergo a change of (physical features and attributes)'),\n",
+ " ('germinate', 'work out'),\n",
+ " ('explicate', 'elaborate, as of theories and hypotheses'),\n",
+ " ('uprise', 'come into existence; take on form or shape'),\n",
+ " ('make grow',\n",
+ " 'cause to grow and differentiate in ways conforming to its natural development'),\n",
+ " ('prepare', 'create by training and teaching'),\n",
+ " ('modernise', 'become technologically advanced'),\n",
+ " ('train', 'create by training and teaching'),\n",
+ " ('formulate', 'elaborate, as of theories and hypotheses'),\n",
+ " ('get',\n",
+ " 'come to have or undergo a change of (physical features and attributes)'),\n",
+ " ('educate', 'create by training and teaching')]},\n",
+ " {'answer': 'deviate',\n",
+ " 'hint': 'synonyms for deviate',\n",
+ " 'clues': [('diverge', 'be at variance with; be out of line with'),\n",
+ " ('vary', 'be at variance with; be out of line with'),\n",
+ " ('depart', 'be at variance with; be out of line with'),\n",
+ " ('divert', 'turn aside; turn away from')]},\n",
+ " {'answer': 'devoted',\n",
+ " 'hint': 'synonyms for devoted',\n",
+ " 'clues': [('consecrate',\n",
+ " 'give entirely to a specific person, activity, or cause'),\n",
+ " ('devote', 'dedicate'),\n",
+ " ('commit', 'give entirely to a specific person, activity, or cause'),\n",
+ " ('give', 'give entirely to a specific person, activity, or cause'),\n",
+ " ('dedicate', 'give entirely to a specific person, activity, or cause'),\n",
+ " ('pay', 'dedicate')]},\n",
+ " {'answer': 'devouring',\n",
+ " 'hint': 'synonyms for devouring',\n",
+ " 'clues': [('devour', 'eat greedily'),\n",
+ " ('guttle', 'eat greedily'),\n",
+ " ('down', 'eat immoderately'),\n",
+ " ('raven', 'eat greedily'),\n",
+ " ('pig', 'eat greedily'),\n",
+ " ('go through', 'eat immoderately'),\n",
+ " ('consume', 'eat immoderately')]},\n",
+ " {'answer': 'differentiated',\n",
+ " 'hint': 'synonyms for differentiated',\n",
+ " 'clues': [('speciate',\n",
+ " 'evolve so as to lead to a new species or develop in a way most suited to the environment'),\n",
+ " ('severalise', 'mark as different'),\n",
+ " ('specialize',\n",
+ " 'evolve so as to lead to a new species or develop in a way most suited to the environment'),\n",
+ " ('secern', 'mark as different'),\n",
+ " ('tell apart', 'mark as different'),\n",
+ " ('distinguish', 'mark as different'),\n",
+ " ('differentiate',\n",
+ " 'evolve so as to lead to a new species or develop in a way most suited to the environment'),\n",
+ " ('tell', 'mark as different'),\n",
+ " ('separate', 'mark as different'),\n",
+ " ('secernate', 'mark as different'),\n",
+ " ('mark',\n",
+ " 'be a distinctive feature, attribute, or trait; sometimes in a very positive sense')]},\n",
+ " {'answer': 'diffuse',\n",
+ " 'hint': 'synonyms for diffuse',\n",
+ " 'clues': [('propagate', 'cause to become widely known'),\n",
+ " ('spread out', 'move outward'),\n",
+ " ('permeate', 'spread or diffuse through'),\n",
+ " ('disseminate', 'cause to become widely known'),\n",
+ " ('penetrate', 'spread or diffuse through'),\n",
+ " ('distribute', 'cause to become widely known'),\n",
+ " ('circulate', 'cause to become widely known'),\n",
+ " ('imbue', 'spread or diffuse through'),\n",
+ " ('circularize', 'cause to become widely known'),\n",
+ " ('pervade', 'spread or diffuse through'),\n",
+ " ('broadcast', 'cause to become widely known'),\n",
+ " ('interpenetrate', 'spread or diffuse through'),\n",
+ " ('pass around', 'cause to become widely known'),\n",
+ " ('spread', 'cause to become widely known'),\n",
+ " ('disperse', 'cause to become widely known'),\n",
+ " ('fan out', 'move outward'),\n",
+ " ('riddle', 'spread or diffuse through')]},\n",
+ " {'answer': 'diffused',\n",
+ " 'hint': 'synonyms for diffused',\n",
+ " 'clues': [('propagate', 'cause to become widely known'),\n",
+ " ('spread out', 'move outward'),\n",
+ " ('diffuse', 'cause to become widely known'),\n",
+ " ('permeate', 'spread or diffuse through'),\n",
+ " ('riddle', 'spread or diffuse through'),\n",
+ " ('disseminate', 'cause to become widely known'),\n",
+ " ('penetrate', 'spread or diffuse through'),\n",
+ " ('distribute', 'cause to become widely known'),\n",
+ " ('circulate', 'cause to become widely known'),\n",
+ " ('imbue', 'spread or diffuse through'),\n",
+ " ('circularize', 'cause to become widely known'),\n",
+ " ('pervade', 'spread or diffuse through'),\n",
+ " ('broadcast', 'cause to become widely known'),\n",
+ " ('interpenetrate', 'spread or diffuse through'),\n",
+ " ('pass around', 'cause to become widely known'),\n",
+ " ('spread', 'cause to become widely known'),\n",
+ " ('disperse', 'cause to become widely known'),\n",
+ " ('fan out', 'move outward')]},\n",
+ " {'answer': 'diffusing',\n",
+ " 'hint': 'synonyms for diffusing',\n",
+ " 'clues': [('propagate', 'cause to become widely known'),\n",
+ " ('spread out', 'move outward'),\n",
+ " ('diffuse', 'cause to become widely known'),\n",
+ " ('permeate', 'spread or diffuse through'),\n",
+ " ('riddle', 'spread or diffuse through'),\n",
+ " ('disseminate', 'cause to become widely known'),\n",
+ " ('penetrate', 'spread or diffuse through'),\n",
+ " ('distribute', 'cause to become widely known'),\n",
+ " ('circulate', 'cause to become widely known'),\n",
+ " ('imbue', 'spread or diffuse through'),\n",
+ " ('circularize', 'cause to become widely known'),\n",
+ " ('pervade', 'spread or diffuse through'),\n",
+ " ('broadcast', 'cause to become widely known'),\n",
+ " ('interpenetrate', 'spread or diffuse through'),\n",
+ " ('pass around', 'cause to become widely known'),\n",
+ " ('spread', 'cause to become widely known'),\n",
+ " ('disperse', 'cause to become widely known'),\n",
+ " ('fan out', 'move outward')]},\n",
+ " {'answer': 'dilute',\n",
+ " 'hint': 'synonyms for dilute',\n",
+ " 'clues': [('cut',\n",
+ " 'lessen the strength or flavor of a solution or mixture'),\n",
+ " ('load',\n",
+ " 'corrupt, debase, or make impure by adding a foreign or inferior substance; often by replacing valuable ingredients with inferior ones'),\n",
+ " ('debase',\n",
+ " 'corrupt, debase, or make impure by adding a foreign or inferior substance; often by replacing valuable ingredients with inferior ones'),\n",
+ " ('reduce', 'lessen the strength or flavor of a solution or mixture'),\n",
+ " ('thin', 'lessen the strength or flavor of a solution or mixture'),\n",
+ " ('thin out', 'lessen the strength or flavor of a solution or mixture'),\n",
+ " ('adulterate',\n",
+ " 'corrupt, debase, or make impure by adding a foreign or inferior substance; often by replacing valuable ingredients with inferior ones'),\n",
+ " ('stretch',\n",
+ " 'corrupt, debase, or make impure by adding a foreign or inferior substance; often by replacing valuable ingredients with inferior ones')]},\n",
+ " {'answer': 'diluted',\n",
+ " 'hint': 'synonyms for diluted',\n",
+ " 'clues': [('cut',\n",
+ " 'lessen the strength or flavor of a solution or mixture'),\n",
+ " ('dilute', 'lessen the strength or flavor of a solution or mixture'),\n",
+ " ('load',\n",
+ " 'corrupt, debase, or make impure by adding a foreign or inferior substance; often by replacing valuable ingredients with inferior ones'),\n",
+ " ('debase',\n",
+ " 'corrupt, debase, or make impure by adding a foreign or inferior substance; often by replacing valuable ingredients with inferior ones'),\n",
+ " ('reduce', 'lessen the strength or flavor of a solution or mixture'),\n",
+ " ('thin', 'lessen the strength or flavor of a solution or mixture'),\n",
+ " ('thin out', 'lessen the strength or flavor of a solution or mixture'),\n",
+ " ('adulterate',\n",
+ " 'corrupt, debase, or make impure by adding a foreign or inferior substance; often by replacing valuable ingredients with inferior ones'),\n",
+ " ('stretch',\n",
+ " 'corrupt, debase, or make impure by adding a foreign or inferior substance; often by replacing valuable ingredients with inferior ones')]},\n",
+ " {'answer': 'dim',\n",
+ " 'hint': 'synonyms for dim',\n",
+ " 'clues': [('blind', 'make dim by comparison or conceal'),\n",
+ " ('slur', 'become vague or indistinct'),\n",
+ " ('dip', \"switch (a car's headlights) from a higher to a lower beam\"),\n",
+ " ('blur', 'become vague or indistinct')]},\n",
+ " {'answer': 'diminished',\n",
+ " 'hint': 'synonyms for diminished',\n",
+ " 'clues': [('belittle', 'lessen the authority, dignity, or reputation of'),\n",
+ " ('diminish', 'lessen the authority, dignity, or reputation of'),\n",
+ " ('lessen', 'decrease in size, extent, or range'),\n",
+ " ('fall', 'decrease in size, extent, or range'),\n",
+ " ('decrease', 'decrease in size, extent, or range')]},\n",
+ " {'answer': 'diminishing',\n",
+ " 'hint': 'synonyms for diminishing',\n",
+ " 'clues': [('belittle', 'lessen the authority, dignity, or reputation of'),\n",
+ " ('diminish', 'lessen the authority, dignity, or reputation of'),\n",
+ " ('lessen', 'decrease in size, extent, or range'),\n",
+ " ('fall', 'decrease in size, extent, or range'),\n",
+ " ('decrease', 'decrease in size, extent, or range')]},\n",
+ " {'answer': 'dimmed',\n",
+ " 'hint': 'synonyms for dimmed',\n",
+ " 'clues': [('slur', 'become vague or indistinct'),\n",
+ " ('dim', 'make dim or lusterless'),\n",
+ " ('dip', \"switch (a car's headlights) from a higher to a lower beam\"),\n",
+ " ('blur', 'become vague or indistinct'),\n",
+ " ('blind', 'make dim by comparison or conceal')]},\n",
+ " {'answer': 'dipped',\n",
+ " 'hint': 'synonyms for dipped',\n",
+ " 'clues': [('dip', 'lower briefly'),\n",
+ " ('douse', 'dip into a liquid'),\n",
+ " ('plunge',\n",
+ " 'immerse briefly into a liquid so as to wet, coat, or saturate'),\n",
+ " ('sink', 'appear to move downward'),\n",
+ " ('dunk', 'dip into a liquid while eating'),\n",
+ " ('souse',\n",
+ " 'immerse briefly into a liquid so as to wet, coat, or saturate'),\n",
+ " ('duck', 'dip into a liquid'),\n",
+ " ('dim', \"switch (a car's headlights) from a higher to a lower beam\")]},\n",
+ " {'answer': 'direct',\n",
+ " 'hint': 'synonyms for direct',\n",
+ " 'clues': [('address', 'put an address on (an envelope)'),\n",
+ " ('aim',\n",
+ " 'point or cause to go (blows, weapons, or objects such as photographic equipment) towards'),\n",
+ " ('organise', 'plan and direct (a complex undertaking)'),\n",
+ " ('channelize',\n",
+ " 'direct the course; determine the direction of travelling'),\n",
+ " ('engineer', 'plan and direct (a complex undertaking)'),\n",
+ " ('steer', 'direct the course; determine the direction of travelling'),\n",
+ " ('mastermind', 'plan and direct (a complex undertaking)'),\n",
+ " ('calculate',\n",
+ " 'specifically design a product, event, or activity for a certain public'),\n",
+ " ('place', 'intend (something) to move towards a certain goal'),\n",
+ " ('maneuver', 'direct the course; determine the direction of travelling'),\n",
+ " ('take',\n",
+ " 'point or cause to go (blows, weapons, or objects such as photographic equipment) towards'),\n",
+ " ('guide', 'take somebody somewhere'),\n",
+ " ('train',\n",
+ " 'point or cause to go (blows, weapons, or objects such as photographic equipment) towards'),\n",
+ " ('target', 'intend (something) to move towards a certain goal'),\n",
+ " ('point', 'direct the course; determine the direction of travelling'),\n",
+ " ('manoeuvre', 'direct the course; determine the direction of travelling'),\n",
+ " ('send', 'cause to go somewhere'),\n",
+ " ('take aim',\n",
+ " 'point or cause to go (blows, weapons, or objects such as photographic equipment) towards'),\n",
+ " ('conduct', 'lead, as in the performance of a composition'),\n",
+ " ('orchestrate', 'plan and direct (a complex undertaking)'),\n",
+ " ('head', 'direct the course; determine the direction of travelling'),\n",
+ " ('lead', 'take somebody somewhere')]},\n",
+ " {'answer': 'directed',\n",
+ " 'hint': 'synonyms for directed',\n",
+ " 'clues': [('address', 'put an address on (an envelope)'),\n",
+ " ('organise', 'plan and direct (a complex undertaking)'),\n",
+ " ('channelize',\n",
+ " 'direct the course; determine the direction of travelling'),\n",
+ " ('direct', 'give directions to; point somebody into a certain direction'),\n",
+ " ('mastermind', 'plan and direct (a complex undertaking)'),\n",
+ " ('aim',\n",
+ " 'specifically design a product, event, or activity for a certain public'),\n",
+ " ('place', 'intend (something) to move towards a certain goal'),\n",
+ " ('target', 'intend (something) to move towards a certain goal'),\n",
+ " ('point', 'direct the course; determine the direction of travelling'),\n",
+ " ('take', 'take somebody somewhere'),\n",
+ " ('take aim',\n",
+ " 'point or cause to go (blows, weapons, or objects such as photographic equipment) towards'),\n",
+ " ('conduct', 'take somebody somewhere'),\n",
+ " ('head', 'direct the course; determine the direction of travelling'),\n",
+ " ('lead', 'take somebody somewhere'),\n",
+ " ('engineer', 'plan and direct (a complex undertaking)'),\n",
+ " ('steer', 'direct the course; determine the direction of travelling'),\n",
+ " ('calculate',\n",
+ " 'specifically design a product, event, or activity for a certain public'),\n",
+ " ('guide', 'take somebody somewhere'),\n",
+ " ('train',\n",
+ " 'point or cause to go (blows, weapons, or objects such as photographic equipment) towards'),\n",
+ " ('manoeuver', 'direct the course; determine the direction of travelling'),\n",
+ " ('send', 'cause to go somewhere'),\n",
+ " ('orchestrate', 'plan and direct (a complex undertaking)')]},\n",
+ " {'answer': 'directing',\n",
+ " 'hint': 'synonyms for directing',\n",
+ " 'clues': [('address', 'put an address on (an envelope)'),\n",
+ " ('organise', 'plan and direct (a complex undertaking)'),\n",
+ " ('channelize',\n",
+ " 'direct the course; determine the direction of travelling'),\n",
+ " ('direct', 'give directions to; point somebody into a certain direction'),\n",
+ " ('mastermind', 'plan and direct (a complex undertaking)'),\n",
+ " ('aim',\n",
+ " 'specifically design a product, event, or activity for a certain public'),\n",
+ " ('place', 'intend (something) to move towards a certain goal'),\n",
+ " ('target', 'intend (something) to move towards a certain goal'),\n",
+ " ('point', 'direct the course; determine the direction of travelling'),\n",
+ " ('take', 'take somebody somewhere'),\n",
+ " ('take aim',\n",
+ " 'point or cause to go (blows, weapons, or objects such as photographic equipment) towards'),\n",
+ " ('conduct', 'take somebody somewhere'),\n",
+ " ('head', 'direct the course; determine the direction of travelling'),\n",
+ " ('lead', 'take somebody somewhere'),\n",
+ " ('engineer', 'plan and direct (a complex undertaking)'),\n",
+ " ('steer', 'direct the course; determine the direction of travelling'),\n",
+ " ('calculate',\n",
+ " 'specifically design a product, event, or activity for a certain public'),\n",
+ " ('guide', 'take somebody somewhere'),\n",
+ " ('train',\n",
+ " 'point or cause to go (blows, weapons, or objects such as photographic equipment) towards'),\n",
+ " ('manoeuver', 'direct the course; determine the direction of travelling'),\n",
+ " ('send', 'cause to go somewhere'),\n",
+ " ('orchestrate', 'plan and direct (a complex undertaking)')]},\n",
+ " {'answer': 'dirty',\n",
+ " 'hint': 'synonyms for dirty',\n",
+ " 'clues': [('soil', 'make soiled, filthy, or dirty'),\n",
+ " ('begrime', 'make soiled, filthy, or dirty'),\n",
+ " ('bemire', 'make soiled, filthy, or dirty'),\n",
+ " ('colly', 'make soiled, filthy, or dirty'),\n",
+ " ('grime', 'make soiled, filthy, or dirty')]},\n",
+ " {'answer': 'disabled',\n",
+ " 'hint': 'synonyms for disabled',\n",
+ " 'clues': [('handicap', 'injure permanently'),\n",
+ " ('incapacitate', 'make unable to perform a certain action'),\n",
+ " ('disenable', 'make unable to perform a certain action'),\n",
+ " ('invalid', 'injure permanently')]},\n",
+ " {'answer': 'disabling',\n",
+ " 'hint': 'synonyms for disabling',\n",
+ " 'clues': [('handicap', 'injure permanently'),\n",
+ " ('incapacitate', 'make unable to perform a certain action'),\n",
+ " ('disenable', 'make unable to perform a certain action'),\n",
+ " ('invalid', 'injure permanently')]},\n",
+ " {'answer': 'disaffected',\n",
+ " 'hint': 'synonyms for disaffected',\n",
+ " 'clues': [('alienate',\n",
+ " 'arouse hostility or indifference in where there had formerly been love, affection, or friendliness'),\n",
+ " ('disaffect',\n",
+ " 'arouse hostility or indifference in where there had formerly been love, affection, or friendliness'),\n",
+ " ('estrange',\n",
+ " 'arouse hostility or indifference in where there had formerly been love, affection, or friendliness'),\n",
+ " ('alien',\n",
+ " 'arouse hostility or indifference in where there had formerly been love, affection, or friendliness')]},\n",
+ " {'answer': 'discarded',\n",
+ " 'hint': 'synonyms for discarded',\n",
+ " 'clues': [('fling', 'throw or cast away'),\n",
+ " ('toss', 'throw or cast away'),\n",
+ " ('discard', 'throw or cast away'),\n",
+ " ('cast out', 'throw or cast away'),\n",
+ " ('cast aside', 'throw or cast away'),\n",
+ " ('throw out', 'throw or cast away'),\n",
+ " ('toss out', 'throw or cast away'),\n",
+ " ('chuck out', 'throw or cast away'),\n",
+ " ('toss away', 'throw or cast away'),\n",
+ " ('dispose', 'throw or cast away'),\n",
+ " ('throw away', 'throw or cast away'),\n",
+ " ('cast away', 'throw or cast away'),\n",
+ " ('put away', 'throw or cast away')]},\n",
+ " {'answer': 'discerning',\n",
+ " 'hint': 'synonyms for discerning',\n",
+ " 'clues': [('recognize', 'detect with the senses'),\n",
+ " ('make out', 'detect with the senses'),\n",
+ " ('spot', 'detect with the senses'),\n",
+ " ('discern', 'detect with the senses'),\n",
+ " ('distinguish', 'detect with the senses'),\n",
+ " ('tell apart', 'detect with the senses'),\n",
+ " ('pick out', 'detect with the senses')]},\n",
+ " {'answer': 'discharged',\n",
+ " 'hint': 'synonyms for discharged',\n",
+ " 'clues': [('acquit', 'pronounce not guilty of criminal charges'),\n",
+ " ('discharge', 'leave or unload'),\n",
+ " ('drop', 'leave or unload'),\n",
+ " ('exonerate', 'pronounce not guilty of criminal charges'),\n",
+ " ('assoil', 'pronounce not guilty of criminal charges'),\n",
+ " ('set down', 'leave or unload'),\n",
+ " ('empty', 'become empty or void of its content'),\n",
+ " ('exhaust', 'eliminate (a substance)'),\n",
+ " ('expel', 'eliminate (a substance)'),\n",
+ " ('unload', 'leave or unload'),\n",
+ " ('muster out', 'release from military service'),\n",
+ " ('drop off', 'leave or unload'),\n",
+ " ('release', 'eliminate (a substance)'),\n",
+ " ('fire', 'go off or discharge'),\n",
+ " ('complete', 'complete or carry out'),\n",
+ " ('put down', 'leave or unload'),\n",
+ " ('dispatch', 'complete or carry out'),\n",
+ " ('exculpate', 'pronounce not guilty of criminal charges'),\n",
+ " ('clear', 'pronounce not guilty of criminal charges'),\n",
+ " ('go off', 'go off or discharge'),\n",
+ " ('free', 'free from obligations or duties'),\n",
+ " ('eject', 'eliminate (a substance)')]},\n",
+ " {'answer': 'disciplined',\n",
+ " 'hint': 'synonyms for disciplined',\n",
+ " 'clues': [('check',\n",
+ " \"develop (children's) behavior by instruction and practice; especially to teach self-control\"),\n",
+ " ('correct', 'punish in order to gain control or enforce obedience'),\n",
+ " ('sort out', 'punish in order to gain control or enforce obedience'),\n",
+ " ('discipline', 'punish in order to gain control or enforce obedience'),\n",
+ " ('train',\n",
+ " \"develop (children's) behavior by instruction and practice; especially to teach self-control\"),\n",
+ " ('condition',\n",
+ " \"develop (children's) behavior by instruction and practice; especially to teach self-control\")]},\n",
+ " {'answer': 'disclosed',\n",
+ " 'hint': 'synonyms for disclosed',\n",
+ " 'clues': [('let out',\n",
+ " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n",
+ " ('break',\n",
+ " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n",
+ " ('unwrap',\n",
+ " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n",
+ " ('discover',\n",
+ " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n",
+ " ('divulge',\n",
+ " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n",
+ " ('give away',\n",
+ " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n",
+ " ('let on',\n",
+ " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n",
+ " ('disclose',\n",
+ " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n",
+ " ('bring out',\n",
+ " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n",
+ " ('reveal',\n",
+ " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n",
+ " ('expose',\n",
+ " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret')]},\n",
+ " {'answer': 'discombobulated',\n",
+ " 'hint': 'synonyms for discombobulated',\n",
+ " 'clues': [('fuddle',\n",
+ " 'be confusing or perplexing to; cause to be unable to think clearly'),\n",
+ " ('bedevil',\n",
+ " 'be confusing or perplexing to; cause to be unable to think clearly'),\n",
+ " ('discombobulate',\n",
+ " 'be confusing or perplexing to; cause to be unable to think clearly'),\n",
+ " ('throw', 'cause to be confused emotionally'),\n",
+ " ('bemuse', 'cause to be confused emotionally'),\n",
+ " ('fox',\n",
+ " 'be confusing or perplexing to; cause to be unable to think clearly'),\n",
+ " ('bewilder', 'cause to be confused emotionally'),\n",
+ " ('confound',\n",
+ " 'be confusing or perplexing to; cause to be unable to think clearly'),\n",
+ " ('confuse',\n",
+ " 'be confusing or perplexing to; cause to be unable to think clearly')]},\n",
+ " {'answer': 'discomfited',\n",
+ " 'hint': 'synonyms for discomfited',\n",
+ " 'clues': [('upset', \"cause to lose one's composure\"),\n",
+ " ('discomfit', \"cause to lose one's composure\"),\n",
+ " ('discompose', \"cause to lose one's composure\"),\n",
+ " ('disconcert', \"cause to lose one's composure\"),\n",
+ " ('untune', \"cause to lose one's composure\")]},\n",
+ " {'answer': 'discomposed',\n",
+ " 'hint': 'synonyms for discomposed',\n",
+ " 'clues': [('upset', \"cause to lose one's composure\"),\n",
+ " ('discomfit', \"cause to lose one's composure\"),\n",
+ " ('discompose', \"cause to lose one's composure\"),\n",
+ " ('disconcert', \"cause to lose one's composure\"),\n",
+ " ('untune', \"cause to lose one's composure\")]},\n",
+ " {'answer': 'disconcerted',\n",
+ " 'hint': 'synonyms for disconcerted',\n",
+ " 'clues': [('disconcert', 'cause to feel embarrassment'),\n",
+ " ('upset', \"cause to lose one's composure\"),\n",
+ " ('discomfit', \"cause to lose one's composure\"),\n",
+ " ('untune', \"cause to lose one's composure\"),\n",
+ " ('discompose', \"cause to lose one's composure\"),\n",
+ " ('confuse', 'cause to feel embarrassment'),\n",
+ " ('put off', 'cause to feel embarrassment'),\n",
+ " ('flurry', 'cause to feel embarrassment')]},\n",
+ " {'answer': 'disconcerting',\n",
+ " 'hint': 'synonyms for disconcerting',\n",
+ " 'clues': [('disconcert', 'cause to feel embarrassment'),\n",
+ " ('upset', \"cause to lose one's composure\"),\n",
+ " ('discomfit', \"cause to lose one's composure\"),\n",
+ " ('untune', \"cause to lose one's composure\"),\n",
+ " ('discompose', \"cause to lose one's composure\"),\n",
+ " ('confuse', 'cause to feel embarrassment'),\n",
+ " ('put off', 'cause to feel embarrassment'),\n",
+ " ('flurry', 'cause to feel embarrassment')]},\n",
+ " {'answer': 'discontinued',\n",
+ " 'hint': 'synonyms for discontinued',\n",
+ " 'clues': [('discontinue', 'prevent completion'),\n",
+ " ('cease', 'put an end to a state or an activity'),\n",
+ " ('stop', 'prevent completion'),\n",
+ " ('give up', 'put an end to a state or an activity'),\n",
+ " ('break off', 'prevent completion'),\n",
+ " ('quit', 'put an end to a state or an activity'),\n",
+ " ('break', 'prevent completion'),\n",
+ " ('lay off', 'put an end to a state or an activity')]},\n",
+ " {'answer': 'discouraged',\n",
+ " 'hint': 'synonyms for discouraged',\n",
+ " 'clues': [('monish', \"admonish or counsel in terms of someone's behavior\"),\n",
+ " ('discourage', \"admonish or counsel in terms of someone's behavior\"),\n",
+ " ('deter', 'try to prevent; show opposition to'),\n",
+ " ('warn', \"admonish or counsel in terms of someone's behavior\")]},\n",
+ " {'answer': 'discouraging',\n",
+ " 'hint': 'synonyms for discouraging',\n",
+ " 'clues': [('monish', \"admonish or counsel in terms of someone's behavior\"),\n",
+ " ('discourage', \"admonish or counsel in terms of someone's behavior\"),\n",
+ " ('deter', 'try to prevent; show opposition to'),\n",
+ " ('warn', \"admonish or counsel in terms of someone's behavior\")]},\n",
+ " {'answer': 'discovered',\n",
+ " 'hint': 'synonyms for discovered',\n",
+ " 'clues': [('distinguish', 'identify as in botany or biology, for example'),\n",
+ " ('attain', 'find unexpectedly'),\n",
+ " ('discover', 'find unexpectedly'),\n",
+ " ('hear', 'get to know or become aware of, usually accidentally'),\n",
+ " ('get wind', 'get to know or become aware of, usually accidentally'),\n",
+ " ('pick up', 'get to know or become aware of, usually accidentally'),\n",
+ " ('get a line', 'get to know or become aware of, usually accidentally'),\n",
+ " ('find out', 'get to know or become aware of, usually accidentally'),\n",
+ " ('let out',\n",
+ " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n",
+ " ('fall upon', 'find unexpectedly'),\n",
+ " ('get word', 'get to know or become aware of, usually accidentally'),\n",
+ " ('key', 'identify as in botany or biology, for example'),\n",
+ " ('notice', 'discover or determine the existence, presence, or fact of'),\n",
+ " ('find', 'make a discovery, make a new finding'),\n",
+ " ('let on',\n",
+ " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n",
+ " ('identify', 'identify as in botany or biology, for example'),\n",
+ " ('light upon', 'find unexpectedly'),\n",
+ " ('disclose',\n",
+ " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n",
+ " ('detect', 'discover or determine the existence, presence, or fact of'),\n",
+ " ('name', 'identify as in botany or biology, for example'),\n",
+ " ('observe', 'discover or determine the existence, presence, or fact of'),\n",
+ " ('chance upon', 'find unexpectedly'),\n",
+ " ('come across', 'find unexpectedly'),\n",
+ " ('key out', 'identify as in botany or biology, for example'),\n",
+ " ('describe', 'identify as in botany or biology, for example'),\n",
+ " ('unwrap',\n",
+ " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n",
+ " ('see', 'get to know or become aware of, usually accidentally'),\n",
+ " ('come upon', 'find unexpectedly'),\n",
+ " ('happen upon', 'find unexpectedly'),\n",
+ " ('learn', 'get to know or become aware of, usually accidentally'),\n",
+ " ('expose',\n",
+ " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n",
+ " ('break',\n",
+ " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n",
+ " ('divulge',\n",
+ " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n",
+ " ('give away',\n",
+ " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n",
+ " ('bring out',\n",
+ " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n",
+ " ('strike', 'find unexpectedly'),\n",
+ " ('reveal',\n",
+ " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret')]},\n",
+ " {'answer': 'discriminating',\n",
+ " 'hint': 'synonyms for discriminating',\n",
+ " 'clues': [('know apart', 'recognize or perceive the difference'),\n",
+ " ('single out', 'treat differently on the basis of sex or race'),\n",
+ " ('discriminate', 'recognize or perceive the difference'),\n",
+ " ('separate', 'treat differently on the basis of sex or race')]},\n",
+ " {'answer': 'disentangled',\n",
+ " 'hint': 'synonyms for disentangled',\n",
+ " 'clues': [('disentangle', 'release from entanglement of difficulty'),\n",
+ " ('comb', 'smoothen and neaten with or as with a comb'),\n",
+ " ('unwind', 'separate the tangles of'),\n",
+ " ('disinvolve', 'free from involvement or entanglement'),\n",
+ " ('unsnarl', 'extricate from entanglement'),\n",
+ " ('untangle', 'release from entanglement of difficulty'),\n",
+ " ('disembroil', 'free from involvement or entanglement'),\n",
+ " ('comb out', 'smoothen and neaten with or as with a comb'),\n",
+ " ('disencumber', 'release from entanglement of difficulty'),\n",
+ " ('extricate', 'release from entanglement of difficulty'),\n",
+ " ('straighten out', 'extricate from entanglement')]},\n",
+ " {'answer': 'disgraced',\n",
+ " 'hint': 'synonyms for disgraced',\n",
+ " 'clues': [('shame', 'bring shame or dishonor upon'),\n",
+ " ('disgrace', 'bring shame or dishonor upon'),\n",
+ " ('demean', 'reduce in worth or character, usually verbally'),\n",
+ " ('degrade', 'reduce in worth or character, usually verbally'),\n",
+ " ('dishonor', 'bring shame or dishonor upon'),\n",
+ " ('put down', 'reduce in worth or character, usually verbally'),\n",
+ " ('discredit', 'damage the reputation of'),\n",
+ " ('take down', 'reduce in worth or character, usually verbally'),\n",
+ " ('attaint', 'bring shame or dishonor upon')]},\n",
+ " {'answer': 'disgusted',\n",
+ " 'hint': 'synonyms for disgusted',\n",
+ " 'clues': [('churn up', 'cause aversion in; offend the moral sense of'),\n",
+ " ('revolt', 'fill with distaste'),\n",
+ " ('nauseate', 'cause aversion in; offend the moral sense of'),\n",
+ " ('gross out', 'fill with distaste'),\n",
+ " ('disgust', 'fill with distaste'),\n",
+ " ('sicken', 'cause aversion in; offend the moral sense of'),\n",
+ " ('repel', 'fill with distaste')]},\n",
+ " {'answer': 'disgusting',\n",
+ " 'hint': 'synonyms for disgusting',\n",
+ " 'clues': [('churn up', 'cause aversion in; offend the moral sense of'),\n",
+ " ('revolt', 'fill with distaste'),\n",
+ " ('nauseate', 'cause aversion in; offend the moral sense of'),\n",
+ " ('gross out', 'fill with distaste'),\n",
+ " ('disgust', 'fill with distaste'),\n",
+ " ('sicken', 'cause aversion in; offend the moral sense of'),\n",
+ " ('repel', 'fill with distaste')]},\n",
+ " {'answer': 'dished',\n",
+ " 'hint': 'synonyms for dished',\n",
+ " 'clues': [('serve up', 'provide (usually but not necessarily food)'),\n",
+ " ('dish', 'make concave; shape like a dish'),\n",
+ " ('dish out', 'provide (usually but not necessarily food)'),\n",
+ " ('serve', 'provide (usually but not necessarily food)'),\n",
+ " ('dish up', 'provide (usually but not necessarily food)')]},\n",
+ " {'answer': 'dishonored',\n",
+ " 'hint': 'synonyms for dishonored',\n",
+ " 'clues': [('shame', 'bring shame or dishonor upon'),\n",
+ " ('disgrace', 'bring shame or dishonor upon'),\n",
+ " ('dishonor', 'bring shame or dishonor upon'),\n",
+ " ('rape', 'force (someone) to have sex against their will'),\n",
+ " ('violate', 'force (someone) to have sex against their will'),\n",
+ " ('ravish', 'force (someone) to have sex against their will'),\n",
+ " ('assault', 'force (someone) to have sex against their will'),\n",
+ " ('outrage', 'force (someone) to have sex against their will'),\n",
+ " ('attaint', 'bring shame or dishonor upon')]},\n",
+ " {'answer': 'disjoint',\n",
+ " 'hint': 'synonyms for disjoint',\n",
+ " 'clues': [('dissociate', 'part; cease or break association with'),\n",
+ " ('divorce', 'part; cease or break association with'),\n",
+ " ('disjoin',\n",
+ " 'make disjoint, separated, or disconnected; undo the joining of'),\n",
+ " ('disunite', 'part; cease or break association with'),\n",
+ " ('disarticulate', 'separate at the joints')]},\n",
+ " {'answer': 'disjointed',\n",
+ " 'hint': 'synonyms for disjointed',\n",
+ " 'clues': [('disjoint', 'separate at the joints'),\n",
+ " ('disassociate', 'part; cease or break association with'),\n",
+ " ('disunite', 'part; cease or break association with'),\n",
+ " ('disarticulate', 'separate at the joints'),\n",
+ " ('divorce', 'part; cease or break association with')]},\n",
+ " {'answer': 'dislocated',\n",
+ " 'hint': 'synonyms for dislocated',\n",
+ " 'clues': [('slip', 'move out of position'),\n",
+ " ('dislocate', 'put out of its usual place, position, or relationship'),\n",
+ " ('splay', 'move out of position'),\n",
+ " ('luxate', 'move out of position')]},\n",
+ " {'answer': 'dismantled',\n",
+ " 'hint': 'synonyms for dismantled',\n",
+ " 'clues': [('take down', 'tear down so as to make flat with the ground'),\n",
+ " ('take apart', 'take apart into its constituent pieces'),\n",
+ " ('raze', 'tear down so as to make flat with the ground'),\n",
+ " ('pull down', 'tear down so as to make flat with the ground'),\n",
+ " ('dismantle', 'take apart into its constituent pieces'),\n",
+ " ('break up', 'take apart into its constituent pieces'),\n",
+ " ('break apart', 'take apart into its constituent pieces'),\n",
+ " ('disassemble', 'take apart into its constituent pieces'),\n",
+ " ('level', 'tear down so as to make flat with the ground'),\n",
+ " ('tear down', 'tear down so as to make flat with the ground'),\n",
+ " ('strip', 'take off or remove'),\n",
+ " ('rase', 'tear down so as to make flat with the ground')]},\n",
+ " {'answer': 'dismayed',\n",
+ " 'hint': 'synonyms for dismayed',\n",
+ " 'clues': [('demoralise', \"lower someone's spirits; make downhearted\"),\n",
+ " ('dismay', \"lower someone's spirits; make downhearted\"),\n",
+ " ('appal',\n",
+ " 'fill with apprehension or alarm; cause to be unpleasantly surprised'),\n",
+ " ('horrify',\n",
+ " 'fill with apprehension or alarm; cause to be unpleasantly surprised'),\n",
+ " ('cast down', \"lower someone's spirits; make downhearted\"),\n",
+ " ('alarm',\n",
+ " 'fill with apprehension or alarm; cause to be unpleasantly surprised'),\n",
+ " ('dispirit', \"lower someone's spirits; make downhearted\"),\n",
+ " ('get down', \"lower someone's spirits; make downhearted\"),\n",
+ " ('deject', \"lower someone's spirits; make downhearted\"),\n",
+ " ('depress', \"lower someone's spirits; make downhearted\")]},\n",
+ " {'answer': 'dismaying',\n",
+ " 'hint': 'synonyms for dismaying',\n",
+ " 'clues': [('demoralise', \"lower someone's spirits; make downhearted\"),\n",
+ " ('dismay', \"lower someone's spirits; make downhearted\"),\n",
+ " ('appal',\n",
+ " 'fill with apprehension or alarm; cause to be unpleasantly surprised'),\n",
+ " ('horrify',\n",
+ " 'fill with apprehension or alarm; cause to be unpleasantly surprised'),\n",
+ " ('cast down', \"lower someone's spirits; make downhearted\"),\n",
+ " ('alarm',\n",
+ " 'fill with apprehension or alarm; cause to be unpleasantly surprised'),\n",
+ " ('dispirit', \"lower someone's spirits; make downhearted\"),\n",
+ " ('get down', \"lower someone's spirits; make downhearted\"),\n",
+ " ('deject', \"lower someone's spirits; make downhearted\"),\n",
+ " ('depress', \"lower someone's spirits; make downhearted\")]},\n",
+ " {'answer': 'dismissed',\n",
+ " 'hint': 'synonyms for dismissed',\n",
+ " 'clues': [('send packing', 'stop associating with'),\n",
+ " ('disregard', 'bar from attention or consideration'),\n",
+ " ('fire',\n",
+ " 'terminate the employment of; discharge from an office or position'),\n",
+ " ('terminate',\n",
+ " 'terminate the employment of; discharge from an office or position'),\n",
+ " ('usher out',\n",
+ " \"end one's encounter with somebody by causing or permitting the person to leave\"),\n",
+ " ('dismiss',\n",
+ " \"end one's encounter with somebody by causing or permitting the person to leave\"),\n",
+ " ('push aside', 'bar from attention or consideration'),\n",
+ " ('force out',\n",
+ " 'terminate the employment of; discharge from an office or position'),\n",
+ " ('can',\n",
+ " 'terminate the employment of; discharge from an office or position'),\n",
+ " ('give notice',\n",
+ " 'terminate the employment of; discharge from an office or position'),\n",
+ " ('displace',\n",
+ " 'terminate the employment of; discharge from an office or position'),\n",
+ " ('ignore', 'bar from attention or consideration'),\n",
+ " ('sack',\n",
+ " 'terminate the employment of; discharge from an office or position'),\n",
+ " ('brush off', 'bar from attention or consideration'),\n",
+ " ('send away',\n",
+ " 'terminate the employment of; discharge from an office or position'),\n",
+ " ('dissolve', 'declare void'),\n",
+ " ('throw out', 'cease to consider; put out of judicial consideration'),\n",
+ " ('discount', 'bar from attention or consideration'),\n",
+ " ('give the sack',\n",
+ " 'terminate the employment of; discharge from an office or position'),\n",
+ " ('give the axe',\n",
+ " 'terminate the employment of; discharge from an office or position'),\n",
+ " ('drop', 'stop associating with')]},\n",
+ " {'answer': 'disobliging',\n",
+ " 'hint': 'synonyms for disobliging',\n",
+ " 'clues': [('trouble', 'to cause inconvenience or discomfort to'),\n",
+ " ('put out', 'to cause inconvenience or discomfort to'),\n",
+ " ('incommode', 'to cause inconvenience or discomfort to'),\n",
+ " ('disoblige', 'to cause inconvenience or discomfort to'),\n",
+ " ('inconvenience', 'to cause inconvenience or discomfort to'),\n",
+ " ('bother', 'to cause inconvenience or discomfort to'),\n",
+ " ('discommode', 'to cause inconvenience or discomfort to')]},\n",
+ " {'answer': 'disordered',\n",
+ " 'hint': 'synonyms for disordered',\n",
+ " 'clues': [('unhinge',\n",
+ " 'disturb in mind or make uneasy or cause to be worried or alarmed'),\n",
+ " ('distract',\n",
+ " 'disturb in mind or make uneasy or cause to be worried or alarmed'),\n",
+ " ('disorder', 'bring disorder to'),\n",
+ " ('disquiet',\n",
+ " 'disturb in mind or make uneasy or cause to be worried or alarmed'),\n",
+ " ('disarray', 'bring disorder to'),\n",
+ " ('cark',\n",
+ " 'disturb in mind or make uneasy or cause to be worried or alarmed'),\n",
+ " ('trouble',\n",
+ " 'disturb in mind or make uneasy or cause to be worried or alarmed'),\n",
+ " ('perturb',\n",
+ " 'disturb in mind or make uneasy or cause to be worried or alarmed')]},\n",
+ " {'answer': 'dispensed',\n",
+ " 'hint': 'synonyms for dispensed',\n",
+ " 'clues': [('administer', 'administer or bestow, as in small portions'),\n",
+ " ('dish out', 'administer or bestow, as in small portions'),\n",
+ " ('deal', 'administer or bestow, as in small portions'),\n",
+ " ('allot', 'administer or bestow, as in small portions'),\n",
+ " ('dispense', 'grant a dispensation; grant an exemption'),\n",
+ " ('distribute', 'administer or bestow, as in small portions'),\n",
+ " ('dole out', 'administer or bestow, as in small portions'),\n",
+ " ('parcel out', 'administer or bestow, as in small portions'),\n",
+ " ('mete out', 'administer or bestow, as in small portions'),\n",
+ " ('lot', 'administer or bestow, as in small portions'),\n",
+ " ('shell out', 'administer or bestow, as in small portions'),\n",
+ " ('deal out', 'administer or bestow, as in small portions')]},\n",
+ " {'answer': 'dispersed',\n",
+ " 'hint': 'synonyms for dispersed',\n",
+ " 'clues': [('propagate', 'cause to become widely known'),\n",
+ " ('diffuse', 'cause to become widely known'),\n",
+ " ('break up', 'to cause to separate and go in different directions'),\n",
+ " ('disseminate', 'cause to become widely known'),\n",
+ " ('disperse', 'separate (light) into spectral rays'),\n",
+ " ('scatter', 'distribute loosely'),\n",
+ " ('sprinkle', 'distribute loosely'),\n",
+ " ('dissipate', 'to cause to separate and go in different directions'),\n",
+ " ('distribute', 'cause to become widely known'),\n",
+ " ('spread out', 'move away from each other'),\n",
+ " ('circulate', 'cause to become widely known'),\n",
+ " ('dot', 'distribute loosely'),\n",
+ " ('circularize', 'cause to become widely known'),\n",
+ " ('dispel', 'to cause to separate and go in different directions'),\n",
+ " ('pass around', 'cause to become widely known'),\n",
+ " ('spread', 'cause to become widely known'),\n",
+ " ('dust', 'distribute loosely'),\n",
+ " ('broadcast', 'cause to become widely known')]},\n",
+ " {'answer': 'dispirited',\n",
+ " 'hint': 'synonyms for dispirited',\n",
+ " 'clues': [('demoralise', \"lower someone's spirits; make downhearted\"),\n",
+ " ('dismay', \"lower someone's spirits; make downhearted\"),\n",
+ " ('cast down', \"lower someone's spirits; make downhearted\"),\n",
+ " ('dispirit', \"lower someone's spirits; make downhearted\"),\n",
+ " ('get down', \"lower someone's spirits; make downhearted\"),\n",
+ " ('deject', \"lower someone's spirits; make downhearted\"),\n",
+ " ('depress', \"lower someone's spirits; make downhearted\")]},\n",
+ " {'answer': 'dispiriting',\n",
+ " 'hint': 'synonyms for dispiriting',\n",
+ " 'clues': [('demoralise', \"lower someone's spirits; make downhearted\"),\n",
+ " ('dismay', \"lower someone's spirits; make downhearted\"),\n",
+ " ('cast down', \"lower someone's spirits; make downhearted\"),\n",
+ " ('dispirit', \"lower someone's spirits; make downhearted\"),\n",
+ " ('get down', \"lower someone's spirits; make downhearted\"),\n",
+ " ('deject', \"lower someone's spirits; make downhearted\"),\n",
+ " ('depress', \"lower someone's spirits; make downhearted\")]},\n",
+ " {'answer': 'disposed',\n",
+ " 'hint': 'synonyms for disposed',\n",
+ " 'clues': [('toss', 'throw or cast away'),\n",
+ " ('dispose',\n",
+ " 'make receptive or willing towards an action or attitude or belief'),\n",
+ " ('cast out', 'throw or cast away'),\n",
+ " ('cast aside', 'throw or cast away'),\n",
+ " ('chuck out', 'throw or cast away'),\n",
+ " ('toss away', 'throw or cast away'),\n",
+ " ('throw away', 'throw or cast away'),\n",
+ " ('fling', 'throw or cast away'),\n",
+ " ('discard', 'throw or cast away'),\n",
+ " ('qualify', 'make fit or prepared'),\n",
+ " ('throw out', 'throw or cast away'),\n",
+ " ('toss out', 'throw or cast away'),\n",
+ " ('incline',\n",
+ " 'make receptive or willing towards an action or attitude or belief'),\n",
+ " ('cast away', 'throw or cast away'),\n",
+ " ('put away', 'throw or cast away')]},\n",
+ " {'answer': 'disputed',\n",
+ " 'hint': 'synonyms for disputed',\n",
+ " 'clues': [('dispute', 'take exception to'),\n",
+ " ('challenge', 'take exception to'),\n",
+ " ('argufy', 'have a disagreement over something'),\n",
+ " ('altercate', 'have a disagreement over something'),\n",
+ " ('scrap', 'have a disagreement over something'),\n",
+ " ('gainsay', 'take exception to'),\n",
+ " ('quarrel', 'have a disagreement over something')]},\n",
+ " {'answer': 'disquieted',\n",
+ " 'hint': 'synonyms for disquieted',\n",
+ " 'clues': [('unhinge',\n",
+ " 'disturb in mind or make uneasy or cause to be worried or alarmed'),\n",
+ " ('cark',\n",
+ " 'disturb in mind or make uneasy or cause to be worried or alarmed'),\n",
+ " ('trouble',\n",
+ " 'disturb in mind or make uneasy or cause to be worried or alarmed'),\n",
+ " ('distract',\n",
+ " 'disturb in mind or make uneasy or cause to be worried or alarmed'),\n",
+ " ('perturb',\n",
+ " 'disturb in mind or make uneasy or cause to be worried or alarmed'),\n",
+ " ('disorder',\n",
+ " 'disturb in mind or make uneasy or cause to be worried or alarmed'),\n",
+ " ('disquiet',\n",
+ " 'disturb in mind or make uneasy or cause to be worried or alarmed')]},\n",
+ " {'answer': 'disquieting',\n",
+ " 'hint': 'synonyms for disquieting',\n",
+ " 'clues': [('unhinge',\n",
+ " 'disturb in mind or make uneasy or cause to be worried or alarmed'),\n",
+ " ('cark',\n",
+ " 'disturb in mind or make uneasy or cause to be worried or alarmed'),\n",
+ " ('trouble',\n",
+ " 'disturb in mind or make uneasy or cause to be worried or alarmed'),\n",
+ " ('distract',\n",
+ " 'disturb in mind or make uneasy or cause to be worried or alarmed'),\n",
+ " ('perturb',\n",
+ " 'disturb in mind or make uneasy or cause to be worried or alarmed'),\n",
+ " ('disorder',\n",
+ " 'disturb in mind or make uneasy or cause to be worried or alarmed'),\n",
+ " ('disquiet',\n",
+ " 'disturb in mind or make uneasy or cause to be worried or alarmed')]},\n",
+ " {'answer': 'disregarded',\n",
+ " 'hint': 'synonyms for disregarded',\n",
+ " 'clues': [('ignore', 'bar from attention or consideration'),\n",
+ " ('brush aside', 'bar from attention or consideration'),\n",
+ " ('cut', 'refuse to acknowledge'),\n",
+ " ('snub', 'refuse to acknowledge'),\n",
+ " ('disregard', 'bar from attention or consideration'),\n",
+ " ('neglect', 'give little or no attention to'),\n",
+ " ('brush off', 'bar from attention or consideration'),\n",
+ " ('discount', 'bar from attention or consideration'),\n",
+ " ('dismiss', 'bar from attention or consideration')]},\n",
+ " {'answer': 'disrupted',\n",
+ " 'hint': 'synonyms for disrupted',\n",
+ " 'clues': [('break up', 'make a break in'),\n",
+ " ('interrupt', \"interfere in someone else's activity\"),\n",
+ " ('disrupt', \"interfere in someone else's activity\"),\n",
+ " ('cut off', 'make a break in')]},\n",
+ " {'answer': 'dissected',\n",
+ " 'hint': 'synonyms for dissected',\n",
+ " 'clues': [('analyze',\n",
+ " 'make a mathematical, chemical, or grammatical analysis of; break down into components or essential features'),\n",
+ " ('take apart',\n",
+ " 'make a mathematical, chemical, or grammatical analysis of; break down into components or essential features'),\n",
+ " ('break down',\n",
+ " 'make a mathematical, chemical, or grammatical analysis of; break down into components or essential features'),\n",
+ " ('dissect', 'cut open or cut apart')]},\n",
+ " {'answer': 'dissenting',\n",
+ " 'hint': 'synonyms for dissenting',\n",
+ " 'clues': [('protest', 'express opposition through action or words'),\n",
+ " ('take issue', 'be of different opinions'),\n",
+ " ('dissent', 'express opposition through action or words'),\n",
+ " ('disagree', 'be of different opinions'),\n",
+ " ('resist', 'express opposition through action or words'),\n",
+ " ('differ', 'be of different opinions')]},\n",
+ " {'answer': 'dissipated',\n",
+ " 'hint': 'synonyms for dissipated',\n",
+ " 'clues': [('disperse',\n",
+ " 'to cause to separate and go in different directions'),\n",
+ " ('scatter', 'to cause to separate and go in different directions'),\n",
+ " ('dispel', 'to cause to separate and go in different directions'),\n",
+ " ('fool away', 'spend frivolously and unwisely'),\n",
+ " ('break up', 'to cause to separate and go in different directions'),\n",
+ " ('dissipate', 'spend frivolously and unwisely'),\n",
+ " ('shoot', 'spend frivolously and unwisely'),\n",
+ " ('fritter', 'spend frivolously and unwisely'),\n",
+ " ('frivol away', 'spend frivolously and unwisely'),\n",
+ " ('spread out', 'move away from each other'),\n",
+ " ('fool', 'spend frivolously and unwisely'),\n",
+ " ('fritter away', 'spend frivolously and unwisely')]},\n",
+ " {'answer': 'dissolved',\n",
+ " 'hint': 'synonyms for dissolved',\n",
+ " 'clues': [('dissolve', 'become or cause to become soft or liquid'),\n",
+ " ('unthaw', 'become or cause to become soft or liquid'),\n",
+ " ('unfreeze', 'become or cause to become soft or liquid'),\n",
+ " ('break up', 'come to an end'),\n",
+ " ('thaw', 'become or cause to become soft or liquid'),\n",
+ " ('resolve', 'cause to go into a solution'),\n",
+ " ('fade out', 'become weaker'),\n",
+ " ('dismiss', 'declare void'),\n",
+ " ('melt', 'become or cause to become soft or liquid'),\n",
+ " ('dethaw', 'become or cause to become soft or liquid'),\n",
+ " ('fade away', 'become weaker'),\n",
+ " ('disband', 'stop functioning or cohering as a unit')]},\n",
+ " {'answer': 'distinguished',\n",
+ " 'hint': 'synonyms for distinguished',\n",
+ " 'clues': [('distinguish',\n",
+ " 'be a distinctive feature, attribute, or trait; sometimes in a very positive sense'),\n",
+ " ('severalise', 'mark as different'),\n",
+ " ('name', 'identify as in botany or biology, for example'),\n",
+ " ('signalize', 'make conspicuous or noteworthy'),\n",
+ " ('key out', 'identify as in botany or biology, for example'),\n",
+ " ('describe', 'identify as in botany or biology, for example'),\n",
+ " ('make out', 'detect with the senses'),\n",
+ " ('secern', 'mark as different'),\n",
+ " ('tell apart', 'mark as different'),\n",
+ " ('discern', 'detect with the senses'),\n",
+ " ('tell', 'mark as different'),\n",
+ " ('differentiate',\n",
+ " 'be a distinctive feature, attribute, or trait; sometimes in a very positive sense'),\n",
+ " ('pick out', 'detect with the senses'),\n",
+ " ('separate', 'mark as different'),\n",
+ " ('recognize', 'detect with the senses'),\n",
+ " ('secernate', 'mark as different'),\n",
+ " ('key', 'identify as in botany or biology, for example'),\n",
+ " ('spot', 'detect with the senses'),\n",
+ " ('mark',\n",
+ " 'be a distinctive feature, attribute, or trait; sometimes in a very positive sense'),\n",
+ " ('identify', 'identify as in botany or biology, for example'),\n",
+ " ('discover', 'identify as in botany or biology, for example')]},\n",
+ " {'answer': 'distorted',\n",
+ " 'hint': 'synonyms for distorted',\n",
+ " 'clues': [('distort',\n",
+ " 'make false by mutilation or addition; as of a message or story'),\n",
+ " ('twist', 'form into a spiral shape'),\n",
+ " ('color', 'affect as in thought or feeling'),\n",
+ " ('tinge', 'affect as in thought or feeling'),\n",
+ " ('contort', 'twist and press out of shape'),\n",
+ " ('wring', 'twist and press out of shape'),\n",
+ " ('deform', 'alter the shape of (something) by stress'),\n",
+ " ('warp',\n",
+ " 'make false by mutilation or addition; as of a message or story'),\n",
+ " ('garble',\n",
+ " 'make false by mutilation or addition; as of a message or story'),\n",
+ " ('twine', 'form into a spiral shape'),\n",
+ " ('strain', 'alter the shape of (something) by stress'),\n",
+ " ('falsify',\n",
+ " 'make false by mutilation or addition; as of a message or story')]},\n",
+ " {'answer': 'distracted',\n",
+ " 'hint': 'synonyms for distracted',\n",
+ " 'clues': [('unhinge',\n",
+ " 'disturb in mind or make uneasy or cause to be worried or alarmed'),\n",
+ " ('distract', \"draw someone's attention away from something\"),\n",
+ " ('disorder',\n",
+ " 'disturb in mind or make uneasy or cause to be worried or alarmed'),\n",
+ " ('disquiet',\n",
+ " 'disturb in mind or make uneasy or cause to be worried or alarmed'),\n",
+ " ('cark',\n",
+ " 'disturb in mind or make uneasy or cause to be worried or alarmed'),\n",
+ " ('trouble',\n",
+ " 'disturb in mind or make uneasy or cause to be worried or alarmed'),\n",
+ " ('deflect', \"draw someone's attention away from something\"),\n",
+ " ('perturb',\n",
+ " 'disturb in mind or make uneasy or cause to be worried or alarmed')]},\n",
+ " {'answer': 'distributed',\n",
+ " 'hint': 'synonyms for distributed',\n",
+ " 'clues': [('propagate', 'cause to become widely known'),\n",
+ " ('distribute', 'be mathematically distributive'),\n",
+ " ('dispense', 'administer or bestow, as in small portions'),\n",
+ " ('circulate', 'cause to become widely known'),\n",
+ " ('shell out', 'administer or bestow, as in small portions'),\n",
+ " ('circularize', 'cause to become widely known'),\n",
+ " ('administer', 'administer or bestow, as in small portions'),\n",
+ " ('dish out', 'administer or bestow, as in small portions'),\n",
+ " ('deal', 'administer or bestow, as in small portions'),\n",
+ " ('allot', 'administer or bestow, as in small portions'),\n",
+ " ('give out', 'give to several people'),\n",
+ " ('spread', 'cause to become widely known'),\n",
+ " ('parcel out', 'administer or bestow, as in small portions'),\n",
+ " ('hand out', 'give to several people'),\n",
+ " ('mete out', 'administer or bestow, as in small portions'),\n",
+ " ('diffuse', 'cause to become widely known'),\n",
+ " ('disseminate', 'cause to become widely known'),\n",
+ " ('pass around', 'cause be distributed'),\n",
+ " ('stagger', 'to arrange in a systematic order'),\n",
+ " ('deal out', 'administer or bestow, as in small portions'),\n",
+ " ('pass on', 'cause be distributed'),\n",
+ " ('dole out', 'administer or bestow, as in small portions'),\n",
+ " ('lot', 'administer or bestow, as in small portions'),\n",
+ " ('broadcast', 'cause to become widely known'),\n",
+ " ('pass out', 'give to several people')]},\n",
+ " {'answer': 'disturbed',\n",
+ " 'hint': 'synonyms for disturbed',\n",
+ " 'clues': [('agitate', 'change the arrangement or position of'),\n",
+ " ('interrupt', 'destroy the peace or tranquility of'),\n",
+ " ('commove', 'change the arrangement or position of'),\n",
+ " ('raise up', 'change the arrangement or position of'),\n",
+ " ('vex', 'change the arrangement or position of'),\n",
+ " ('disturb', 'destroy the peace or tranquility of'),\n",
+ " ('shake up', 'change the arrangement or position of'),\n",
+ " ('upset', 'move deeply'),\n",
+ " ('stir up', 'change the arrangement or position of'),\n",
+ " ('touch', 'tamper with'),\n",
+ " ('trouble', 'move deeply')]},\n",
+ " {'answer': 'disturbing',\n",
+ " 'hint': 'synonyms for disturbing',\n",
+ " 'clues': [('agitate', 'change the arrangement or position of'),\n",
+ " ('interrupt', 'destroy the peace or tranquility of'),\n",
+ " ('commove', 'change the arrangement or position of'),\n",
+ " ('raise up', 'change the arrangement or position of'),\n",
+ " ('vex', 'change the arrangement or position of'),\n",
+ " ('disturb', 'destroy the peace or tranquility of'),\n",
+ " ('shake up', 'change the arrangement or position of'),\n",
+ " ('upset', 'move deeply'),\n",
+ " ('stir up', 'change the arrangement or position of'),\n",
+ " ('touch', 'tamper with'),\n",
+ " ('trouble', 'move deeply')]},\n",
+ " {'answer': 'disunited',\n",
+ " 'hint': 'synonyms for disunited',\n",
+ " 'clues': [('disassociate', 'part; cease or break association with'),\n",
+ " ('disunite', 'part; cease or break association with'),\n",
+ " ('separate', 'force, take, or pull apart'),\n",
+ " ('disjoint', 'part; cease or break association with'),\n",
+ " ('part', 'force, take, or pull apart'),\n",
+ " ('divide', 'force, take, or pull apart'),\n",
+ " ('divorce', 'part; cease or break association with')]},\n",
+ " {'answer': 'diverging',\n",
+ " 'hint': 'synonyms for diverging',\n",
+ " 'clues': [('diverge', 'be at variance with; be out of line with'),\n",
+ " ('deviate', 'be at variance with; be out of line with'),\n",
+ " ('vary', 'be at variance with; be out of line with'),\n",
+ " ('depart', 'be at variance with; be out of line with')]},\n",
+ " {'answer': 'diversified',\n",
+ " 'hint': 'synonyms for diversified',\n",
+ " 'clues': [('radiate',\n",
+ " 'spread into new habitats and produce variety or variegate'),\n",
+ " ('branch out', 'vary in order to spread risk or to expand'),\n",
+ " ('broaden', 'vary in order to spread risk or to expand'),\n",
+ " ('diversify', 'make (more) diverse')]},\n",
+ " {'answer': 'diverted',\n",
+ " 'hint': 'synonyms for diverted',\n",
+ " 'clues': [('deviate', 'turn aside; turn away from'),\n",
+ " ('divert',\n",
+ " 'send on a course or in a direction different from the planned or intended one'),\n",
+ " ('hive off',\n",
+ " 'withdraw (money) and move into a different location, often secretly and with dishonest intentions'),\n",
+ " ('amuse', 'occupy in an agreeable, entertaining or pleasant fashion'),\n",
+ " ('disport', 'occupy in an agreeable, entertaining or pleasant fashion')]},\n",
+ " {'answer': 'diverting',\n",
+ " 'hint': 'synonyms for diverting',\n",
+ " 'clues': [('deviate', 'turn aside; turn away from'),\n",
+ " ('divert',\n",
+ " 'send on a course or in a direction different from the planned or intended one'),\n",
+ " ('hive off',\n",
+ " 'withdraw (money) and move into a different location, often secretly and with dishonest intentions'),\n",
+ " ('amuse', 'occupy in an agreeable, entertaining or pleasant fashion'),\n",
+ " ('disport', 'occupy in an agreeable, entertaining or pleasant fashion')]},\n",
+ " {'answer': 'divided',\n",
+ " 'hint': 'synonyms for divided',\n",
+ " 'clues': [('separate', 'force, take, or pull apart'),\n",
+ " ('part', 'force, take, or pull apart'),\n",
+ " ('dissever', 'separate into parts or portions'),\n",
+ " ('divide', 'force, take, or pull apart'),\n",
+ " ('carve up', 'separate into parts or portions'),\n",
+ " ('split up', 'separate into parts or portions'),\n",
+ " ('disunite', 'force, take, or pull apart'),\n",
+ " ('split', 'separate into parts or portions'),\n",
+ " ('fraction', 'perform a division')]},\n",
+ " {'answer': 'divorced',\n",
+ " 'hint': 'synonyms for divorced',\n",
+ " 'clues': [('dissociate', 'part; cease or break association with'),\n",
+ " ('divorce', 'part; cease or break association with'),\n",
+ " ('disunite', 'part; cease or break association with'),\n",
+ " ('disjoint', 'part; cease or break association with'),\n",
+ " ('split up', 'get a divorce; formally terminate a marriage')]},\n",
+ " {'answer': 'doddering',\n",
+ " 'hint': 'synonyms for doddering',\n",
+ " 'clues': [('toddle', 'walk unsteadily'),\n",
+ " ('paddle', 'walk unsteadily'),\n",
+ " ('coggle', 'walk unsteadily'),\n",
+ " ('waddle', 'walk unsteadily'),\n",
+ " ('dodder', 'walk unsteadily'),\n",
+ " ('totter', 'walk unsteadily')]},\n",
+ " {'answer': 'dogged',\n",
+ " 'hint': 'synonyms for dogged',\n",
+ " 'clues': [('track', 'go after with the intent to catch'),\n",
+ " ('give chase', 'go after with the intent to catch'),\n",
+ " ('tail', 'go after with the intent to catch'),\n",
+ " ('chase', 'go after with the intent to catch'),\n",
+ " ('go after', 'go after with the intent to catch'),\n",
+ " ('dog', 'go after with the intent to catch'),\n",
+ " ('tag', 'go after with the intent to catch'),\n",
+ " ('chase after', 'go after with the intent to catch')]},\n",
+ " {'answer': 'dogging',\n",
+ " 'hint': 'synonyms for dogging',\n",
+ " 'clues': [('track', 'go after with the intent to catch'),\n",
+ " ('give chase', 'go after with the intent to catch'),\n",
+ " ('tail', 'go after with the intent to catch'),\n",
+ " ('chase', 'go after with the intent to catch'),\n",
+ " ('go after', 'go after with the intent to catch'),\n",
+ " ('dog', 'go after with the intent to catch'),\n",
+ " ('tag', 'go after with the intent to catch'),\n",
+ " ('chase after', 'go after with the intent to catch')]},\n",
+ " {'answer': 'domesticated',\n",
+ " 'hint': 'synonyms for domesticated',\n",
+ " 'clues': [('naturalize',\n",
+ " 'adapt (a wild plant or unclaimed land) to the environment'),\n",
+ " ('domesticize', 'overcome the wildness of; make docile and tractable'),\n",
+ " ('reclaim', 'overcome the wildness of; make docile and tractable'),\n",
+ " ('tame', 'adapt (a wild plant or unclaimed land) to the environment'),\n",
+ " ('domesticate',\n",
+ " 'adapt (a wild plant or unclaimed land) to the environment'),\n",
+ " ('cultivate',\n",
+ " 'adapt (a wild plant or unclaimed land) to the environment')]},\n",
+ " {'answer': 'dominated',\n",
+ " 'hint': 'synonyms for dominated',\n",
+ " 'clues': [('dominate', 'be in control'),\n",
+ " ('overlook', 'look down on'),\n",
+ " ('eclipse', 'be greater in significance than'),\n",
+ " ('overtop', 'look down on'),\n",
+ " ('predominate',\n",
+ " 'be larger in number, quantity, power, status or importance'),\n",
+ " ('rule', 'be larger in number, quantity, power, status or importance'),\n",
+ " ('master', 'have dominance or the power to defeat over'),\n",
+ " ('prevail', 'be larger in number, quantity, power, status or importance'),\n",
+ " ('reign', 'be larger in number, quantity, power, status or importance'),\n",
+ " ('overshadow', 'be greater in significance than'),\n",
+ " ('command', 'look down on')]},\n",
+ " {'answer': 'dominating',\n",
+ " 'hint': 'synonyms for dominating',\n",
+ " 'clues': [('dominate', 'be in control'),\n",
+ " ('overlook', 'look down on'),\n",
+ " ('eclipse', 'be greater in significance than'),\n",
+ " ('overtop', 'look down on'),\n",
+ " ('predominate',\n",
+ " 'be larger in number, quantity, power, status or importance'),\n",
+ " ('rule', 'be larger in number, quantity, power, status or importance'),\n",
+ " ('master', 'have dominance or the power to defeat over'),\n",
+ " ('prevail', 'be larger in number, quantity, power, status or importance'),\n",
+ " ('reign', 'be larger in number, quantity, power, status or importance'),\n",
+ " ('overshadow', 'be greater in significance than'),\n",
+ " ('command', 'look down on')]},\n",
+ " {'answer': 'done',\n",
+ " 'hint': 'synonyms for done',\n",
+ " 'clues': [('do',\n",
+ " 'give rise to; cause to happen or occur, not always intentionally'),\n",
+ " ('coiffe', 'arrange attractively'),\n",
+ " ('make',\n",
+ " 'give rise to; cause to happen or occur, not always intentionally'),\n",
+ " ('practise', 'carry out or practice; as of jobs and professions'),\n",
+ " ('set', 'arrange attractively'),\n",
+ " ('serve', 'spend time in prison or in a labor camp'),\n",
+ " ('behave',\n",
+ " 'behave in a certain manner; show a certain behavior; conduct or comport oneself'),\n",
+ " ('dress', 'arrange attractively'),\n",
+ " ('exercise', 'carry out or practice; as of jobs and professions'),\n",
+ " ('cause',\n",
+ " 'give rise to; cause to happen or occur, not always intentionally'),\n",
+ " ('get along', 'proceed or get along'),\n",
+ " ('coif', 'arrange attractively'),\n",
+ " ('make out', 'proceed or get along'),\n",
+ " ('fare', 'proceed or get along'),\n",
+ " ('come', 'proceed or get along'),\n",
+ " ('act',\n",
+ " 'behave in a certain manner; show a certain behavior; conduct or comport oneself'),\n",
+ " ('execute', 'carry out or perform an action'),\n",
+ " ('perform', 'carry out or perform an action'),\n",
+ " ('answer', 'be sufficient; be adequate, either in quality or quantity'),\n",
+ " ('manage', 'carry on or function'),\n",
+ " ('suffice', 'be sufficient; be adequate, either in quality or quantity'),\n",
+ " ('arrange', 'arrange attractively')]},\n",
+ " {'answer': 'doomed',\n",
+ " 'hint': 'synonyms for doomed',\n",
+ " 'clues': [('fate', 'decree or designate beforehand'),\n",
+ " ('doom', 'pronounce a sentence on (somebody) in a court of law'),\n",
+ " ('designate', 'decree or designate beforehand'),\n",
+ " ('sentence', 'pronounce a sentence on (somebody) in a court of law'),\n",
+ " ('condemn', 'pronounce a sentence on (somebody) in a court of law'),\n",
+ " ('destine', 'decree or designate beforehand')]},\n",
+ " {'answer': 'doting',\n",
+ " 'hint': 'synonyms for doting',\n",
+ " 'clues': [('dot', 'mark with a dot'),\n",
+ " ('constellate', 'scatter or intersperse like dots or studs'),\n",
+ " ('stud', 'scatter or intersperse like dots or studs'),\n",
+ " ('scatter', 'distribute loosely'),\n",
+ " ('sprinkle', 'distribute loosely'),\n",
+ " ('disperse', 'distribute loosely'),\n",
+ " ('dust', 'distribute loosely')]},\n",
+ " {'answer': 'dotted',\n",
+ " 'hint': 'synonyms for dotted',\n",
+ " 'clues': [('dot', 'mark with a dot'),\n",
+ " ('constellate', 'scatter or intersperse like dots or studs'),\n",
+ " ('stud', 'scatter or intersperse like dots or studs'),\n",
+ " ('scatter', 'distribute loosely'),\n",
+ " ('sprinkle', 'distribute loosely'),\n",
+ " ('disperse', 'distribute loosely'),\n",
+ " ('dust', 'distribute loosely')]},\n",
+ " {'answer': 'double',\n",
+ " 'hint': 'synonyms for double',\n",
+ " 'clues': [('double over',\n",
+ " 'bend over or curl up, usually with laughter or pain'),\n",
+ " ('double up', 'bend over or curl up, usually with laughter or pain'),\n",
+ " ('duplicate', 'make or do or perform again'),\n",
+ " ('repeat', 'make or do or perform again'),\n",
+ " ('replicate', 'make or do or perform again')]},\n",
+ " {'answer': 'doubled',\n",
+ " 'hint': 'synonyms for doubled',\n",
+ " 'clues': [('double over',\n",
+ " 'bend over or curl up, usually with laughter or pain'),\n",
+ " ('double', 'do double duty; serve two purposes or have two functions'),\n",
+ " ('repeat', 'make or do or perform again'),\n",
+ " ('reduplicate', 'make or do or perform again'),\n",
+ " ('double up', 'bend over or curl up, usually with laughter or pain')]},\n",
+ " {'answer': 'down',\n",
+ " 'hint': 'synonyms for down',\n",
+ " 'clues': [('kill', 'drink down entirely'),\n",
+ " ('pop', 'drink down entirely'),\n",
+ " ('cut down', 'cause to come or go down'),\n",
+ " ('devour', 'eat immoderately'),\n",
+ " ('drink down', 'drink down entirely'),\n",
+ " ('fine-tune', 'improve or perfect by pruning or polishing'),\n",
+ " ('shoot down', 'shoot at and force to come down'),\n",
+ " ('land', 'shoot at and force to come down'),\n",
+ " ('refine', 'improve or perfect by pruning or polishing'),\n",
+ " ('push down', 'cause to come or go down'),\n",
+ " ('belt down', 'drink down entirely'),\n",
+ " ('polish', 'improve or perfect by pruning or polishing'),\n",
+ " ('knock down', 'cause to come or go down'),\n",
+ " ('pour down', 'drink down entirely'),\n",
+ " ('toss off', 'drink down entirely'),\n",
+ " ('go through', 'eat immoderately'),\n",
+ " ('pull down', 'cause to come or go down'),\n",
+ " ('consume', 'eat immoderately')]},\n",
+ " {'answer': 'dragging',\n",
+ " 'hint': 'synonyms for dragging',\n",
+ " 'clues': [('drag', 'move slowly and as if with great effort'),\n",
+ " ('puff', 'suck in or take (air)'),\n",
+ " ('hale', 'draw slowly or heavily'),\n",
+ " ('haul', 'draw slowly or heavily'),\n",
+ " ('get behind', 'to lag or linger behind'),\n",
+ " ('drop back', 'to lag or linger behind'),\n",
+ " ('tangle',\n",
+ " 'force into some kind of situation, condition, or course of action'),\n",
+ " ('sweep up',\n",
+ " 'force into some kind of situation, condition, or course of action'),\n",
+ " ('drag in',\n",
+ " 'force into some kind of situation, condition, or course of action'),\n",
+ " ('embroil',\n",
+ " 'force into some kind of situation, condition, or course of action'),\n",
+ " ('draw', 'suck in or take (air)'),\n",
+ " ('trail', 'to lag or linger behind'),\n",
+ " ('dredge',\n",
+ " 'search (as the bottom of a body of water) for something valuable or lost'),\n",
+ " ('cart', 'draw slowly or heavily'),\n",
+ " ('drop behind', 'to lag or linger behind'),\n",
+ " ('hang back', 'to lag or linger behind'),\n",
+ " ('drag out', 'proceed for an extended period of time'),\n",
+ " ('scuff', 'walk without lifting the feet'),\n",
+ " ('sweep',\n",
+ " 'force into some kind of situation, condition, or course of action')]},\n",
+ " {'answer': 'drained',\n",
+ " 'hint': 'synonyms for drained',\n",
+ " 'clues': [('drain', 'empty of liquid; drain the liquid from'),\n",
+ " ('debilitate', 'make weak'),\n",
+ " ('run out', 'flow off gradually'),\n",
+ " ('enfeeble', 'make weak')]},\n",
+ " {'answer': 'draining',\n",
+ " 'hint': 'synonyms for draining',\n",
+ " 'clues': [('drain', 'empty of liquid; drain the liquid from'),\n",
+ " ('debilitate', 'make weak'),\n",
+ " ('run out', 'flow off gradually'),\n",
+ " ('enfeeble', 'make weak')]},\n",
+ " {'answer': 'draped',\n",
+ " 'hint': 'synonyms for draped',\n",
+ " 'clues': [('drape', 'arrange in a particular way'),\n",
+ " ('clothe', 'cover as if with clothing'),\n",
+ " ('robe', 'cover as if with clothing'),\n",
+ " ('cloak', 'cover as if with clothing')]},\n",
+ " {'answer': 'drawn',\n",
+ " 'hint': 'synonyms for drawn',\n",
+ " 'clues': [('line', 'make a mark or lines on a surface'),\n",
+ " ('draw', 'move or go steadily or gradually'),\n",
+ " ('puff', 'suck in or take (air)'),\n",
+ " ('take up', 'take in, also metaphorically'),\n",
+ " ('run', 'pass over, across, or through'),\n",
+ " ('thread', 'thread on or as if on a string'),\n",
+ " ('reap', 'get or derive'),\n",
+ " ('draw and quarter',\n",
+ " 'pull (a person) apart with four horses tied to his extremities, so as to execute him'),\n",
+ " ('draw off', 'remove (a commodity) from (a supply source)'),\n",
+ " ('depict', 'give a description of'),\n",
+ " ('pull', 'cause to move by pulling'),\n",
+ " ('pull out',\n",
+ " 'bring, take, or pull out of a container or from under a cover'),\n",
+ " ('attract',\n",
+ " 'direct toward itself or oneself by means of some psychological power or physical attributes'),\n",
+ " ('take out',\n",
+ " 'bring, take, or pull out of a container or from under a cover'),\n",
+ " ('pass', 'pass over, across, or through'),\n",
+ " ('guide', 'pass over, across, or through'),\n",
+ " ('get out',\n",
+ " 'bring, take, or pull out of a container or from under a cover'),\n",
+ " ('withdraw', 'remove (a commodity) from (a supply source)'),\n",
+ " ('absorb', 'take in, also metaphorically'),\n",
+ " ('quarter',\n",
+ " 'pull (a person) apart with four horses tied to his extremities, so as to execute him'),\n",
+ " ('imbibe', 'take in, also metaphorically'),\n",
+ " ('suck', 'take in, also metaphorically'),\n",
+ " ('drag', 'suck in or take (air)'),\n",
+ " ('describe', 'make a mark or lines on a surface'),\n",
+ " ('make', 'make, formulate, or derive in the mind'),\n",
+ " ('get', 'earn or achieve a base by being walked by the pitcher'),\n",
+ " ('draw in',\n",
+ " 'direct toward itself or oneself by means of some psychological power or physical attributes'),\n",
+ " ('pull back', \"stretch back a bowstring (on an archer's bow)\"),\n",
+ " ('force', 'cause to move by pulling'),\n",
+ " ('soak up', 'take in, also metaphorically'),\n",
+ " ('take in', 'take in, also metaphorically'),\n",
+ " ('pull in',\n",
+ " 'direct toward itself or oneself by means of some psychological power or physical attributes'),\n",
+ " ('sop up', 'take in, also metaphorically'),\n",
+ " ('disembowel', 'remove the entrails of'),\n",
+ " ('delineate', 'make a mark or lines on a surface'),\n",
+ " ('cast', 'choose at random'),\n",
+ " ('suck up', 'take in, also metaphorically'),\n",
+ " ('eviscerate', 'remove the entrails of'),\n",
+ " ('string', 'thread on or as if on a string'),\n",
+ " ('trace', 'make a mark or lines on a surface'),\n",
+ " ('tie', 'finish a game with an equal number of points, goals, etc.')]},\n",
+ " {'answer': 'dreamed',\n",
+ " 'hint': 'synonyms for dreamed',\n",
+ " 'clues': [('woolgather', 'have a daydream; indulge in a fantasy'),\n",
+ " ('dream', 'experience while sleeping'),\n",
+ " ('stargaze', 'have a daydream; indulge in a fantasy'),\n",
+ " ('daydream', 'have a daydream; indulge in a fantasy')]},\n",
+ " {'answer': 'drenched',\n",
+ " 'hint': 'synonyms for drenched',\n",
+ " 'clues': [('dowse', 'cover with liquid; pour liquid onto'),\n",
+ " ('sop', 'cover with liquid; pour liquid onto'),\n",
+ " ('swamp', 'drench or submerge or be drenched or submerged'),\n",
+ " ('douse', 'cover with liquid; pour liquid onto'),\n",
+ " ('drench', 'drench or submerge or be drenched or submerged'),\n",
+ " ('souse', 'cover with liquid; pour liquid onto'),\n",
+ " ('imbrue', 'permeate or impregnate'),\n",
+ " ('soak', 'cover with liquid; pour liquid onto')]},\n",
+ " {'answer': 'dress',\n",
+ " 'hint': 'synonyms for dress',\n",
+ " 'clues': [('coiffe', 'arrange attractively'),\n",
+ " ('decorate', 'provide with decoration'),\n",
+ " ('clip', 'cultivate, tend, and cut back the growth of'),\n",
+ " ('enclothe', 'provide with clothes or put clothes on'),\n",
+ " ('prune', 'cultivate, tend, and cut back the growth of'),\n",
+ " ('do', 'arrange attractively'),\n",
+ " ('habilitate', 'provide with clothes or put clothes on'),\n",
+ " ('lop', 'cultivate, tend, and cut back the growth of'),\n",
+ " ('fit out', 'provide with clothes or put clothes on'),\n",
+ " ('cut back', 'cultivate, tend, and cut back the growth of'),\n",
+ " ('groom', 'give a neat appearance to'),\n",
+ " ('primp', 'dress or groom with elaborate care'),\n",
+ " ('garnish', 'decorate (food), as with parsley or other ornamental foods'),\n",
+ " ('curry', 'give a neat appearance to'),\n",
+ " ('set', 'arrange attractively'),\n",
+ " ('preen', 'dress or groom with elaborate care'),\n",
+ " ('line up', 'arrange in ranks'),\n",
+ " ('dress up', 'dress in a certain manner'),\n",
+ " ('dress out', 'kill and prepare for market or consumption'),\n",
+ " ('raiment', 'provide with clothes or put clothes on'),\n",
+ " ('plume', 'dress or groom with elaborate care'),\n",
+ " ('garb', 'provide with clothes or put clothes on'),\n",
+ " ('garment', 'provide with clothes or put clothes on'),\n",
+ " ('tog', 'provide with clothes or put clothes on'),\n",
+ " ('arrange', 'arrange attractively'),\n",
+ " ('get dressed', 'put on clothes'),\n",
+ " ('crop', 'cultivate, tend, and cut back the growth of'),\n",
+ " ('snip', 'cultivate, tend, and cut back the growth of'),\n",
+ " ('coif', 'arrange attractively'),\n",
+ " ('trim', 'cultivate, tend, and cut back the growth of'),\n",
+ " ('apparel', 'provide with clothes or put clothes on')]},\n",
+ " {'answer': 'dressed',\n",
+ " 'hint': 'synonyms for dressed',\n",
+ " 'clues': [('coiffe', 'arrange attractively'),\n",
+ " ('clip', 'cultivate, tend, and cut back the growth of'),\n",
+ " ('habilitate', 'provide with clothes or put clothes on'),\n",
+ " ('lop', 'cultivate, tend, and cut back the growth of'),\n",
+ " ('fit out', 'provide with clothes or put clothes on'),\n",
+ " ('set', 'arrange attractively'),\n",
+ " ('primp', 'dress or groom with elaborate care'),\n",
+ " ('garnish', 'decorate (food), as with parsley or other ornamental foods'),\n",
+ " ('dress', 'arrange attractively'),\n",
+ " ('preen', 'dress or groom with elaborate care'),\n",
+ " ('raiment', 'provide with clothes or put clothes on'),\n",
+ " ('plume', 'dress or groom with elaborate care'),\n",
+ " ('garment', 'provide with clothes or put clothes on'),\n",
+ " ('tog', 'provide with clothes or put clothes on'),\n",
+ " ('get dressed', 'put on clothes'),\n",
+ " ('crop', 'cultivate, tend, and cut back the growth of'),\n",
+ " ('coif', 'arrange attractively'),\n",
+ " ('trim', 'decorate (food), as with parsley or other ornamental foods'),\n",
+ " ('decorate', 'provide with decoration'),\n",
+ " ('prune', 'cultivate, tend, and cut back the growth of'),\n",
+ " ('enclothe', 'provide with clothes or put clothes on'),\n",
+ " ('do', 'arrange attractively'),\n",
+ " ('groom', 'give a neat appearance to'),\n",
+ " ('cut back', 'cultivate, tend, and cut back the growth of'),\n",
+ " ('curry', 'give a neat appearance to'),\n",
+ " ('line up', 'arrange in ranks'),\n",
+ " ('dress up', 'dress in a certain manner'),\n",
+ " ('dress out', 'kill and prepare for market or consumption'),\n",
+ " ('garb', 'provide with clothes or put clothes on'),\n",
+ " ('snip', 'cultivate, tend, and cut back the growth of'),\n",
+ " ('arrange', 'arrange attractively'),\n",
+ " ('apparel', 'provide with clothes or put clothes on')]},\n",
+ " {'answer': 'drifting',\n",
+ " 'hint': 'synonyms for drifting',\n",
+ " 'clues': [('cast',\n",
+ " 'move about aimlessly or without any destination, often in search of food or employment'),\n",
+ " ('be adrift', 'be in motion due to some air or water current'),\n",
+ " ('vagabond',\n",
+ " 'move about aimlessly or without any destination, often in search of food or employment'),\n",
+ " ('drift',\n",
+ " 'be piled up in banks or heaps by the force of wind or a current'),\n",
+ " ('ramble',\n",
+ " 'move about aimlessly or without any destination, often in search of food or employment'),\n",
+ " ('swan',\n",
+ " 'move about aimlessly or without any destination, often in search of food or employment'),\n",
+ " ('float', 'be in motion due to some air or water current'),\n",
+ " ('roll',\n",
+ " 'move about aimlessly or without any destination, often in search of food or employment'),\n",
+ " ('range',\n",
+ " 'move about aimlessly or without any destination, often in search of food or employment'),\n",
+ " ('tramp',\n",
+ " 'move about aimlessly or without any destination, often in search of food or employment'),\n",
+ " ('wander',\n",
+ " 'move about aimlessly or without any destination, often in search of food or employment'),\n",
+ " ('blow', 'be in motion due to some air or water current'),\n",
+ " ('rove',\n",
+ " 'move about aimlessly or without any destination, often in search of food or employment'),\n",
+ " ('stray',\n",
+ " 'move about aimlessly or without any destination, often in search of food or employment'),\n",
+ " ('freewheel', 'live unhurriedly, irresponsibly, or freely'),\n",
+ " ('roam',\n",
+ " 'move about aimlessly or without any destination, often in search of food or employment'),\n",
+ " ('err', 'wander from a direct course or at random')]},\n",
+ " {'answer': 'drilled',\n",
+ " 'hint': 'synonyms for drilled',\n",
+ " 'clues': [('drill',\n",
+ " 'make a hole, especially with a pointed power or hand tool'),\n",
+ " ('practice', 'learn by repetition'),\n",
+ " ('bore', 'make a hole, especially with a pointed power or hand tool'),\n",
+ " ('exercise', 'learn by repetition')]},\n",
+ " {'answer': 'driven',\n",
+ " 'hint': 'synonyms for driven',\n",
+ " 'clues': [('motor', 'travel or be transported in a vehicle'),\n",
+ " ('push', 'strive and make an effort to reach a goal'),\n",
+ " ('drive', 'strike with a driver, as in teeing off'),\n",
+ " ('ride', 'have certain properties when driven'),\n",
+ " ('force',\n",
+ " 'force into or from an action or state, either physically or metaphorically'),\n",
+ " ('repulse', 'cause to move back by force or influence'),\n",
+ " ('ram',\n",
+ " 'force into or from an action or state, either physically or metaphorically'),\n",
+ " ('beat back', 'cause to move back by force or influence'),\n",
+ " ('aim', 'move into a desired direction of discourse'),\n",
+ " ('force back', 'cause to move back by force or influence'),\n",
+ " ('labour', 'strive and make an effort to reach a goal'),\n",
+ " ('get', 'move into a desired direction of discourse'),\n",
+ " ('take', 'proceed along in a vehicle'),\n",
+ " ('tug', 'strive and make an effort to reach a goal'),\n",
+ " ('repel', 'cause to move back by force or influence'),\n",
+ " ('push back', 'cause to move back by force or influence')]},\n",
+ " {'answer': 'driving',\n",
+ " 'hint': 'synonyms for driving',\n",
+ " 'clues': [('motor', 'travel or be transported in a vehicle'),\n",
+ " ('push', 'strive and make an effort to reach a goal'),\n",
+ " ('drive', 'strike with a driver, as in teeing off'),\n",
+ " ('ride', 'have certain properties when driven'),\n",
+ " ('force',\n",
+ " 'force into or from an action or state, either physically or metaphorically'),\n",
+ " ('repulse', 'cause to move back by force or influence'),\n",
+ " ('ram',\n",
+ " 'force into or from an action or state, either physically or metaphorically'),\n",
+ " ('beat back', 'cause to move back by force or influence'),\n",
+ " ('aim', 'move into a desired direction of discourse'),\n",
+ " ('force back', 'cause to move back by force or influence'),\n",
+ " ('labour', 'strive and make an effort to reach a goal'),\n",
+ " ('get', 'move into a desired direction of discourse'),\n",
+ " ('take', 'proceed along in a vehicle'),\n",
+ " ('tug', 'strive and make an effort to reach a goal'),\n",
+ " ('repel', 'cause to move back by force or influence'),\n",
+ " ('push back', 'cause to move back by force or influence')]},\n",
+ " {'answer': 'drooping',\n",
+ " 'hint': 'synonyms for drooping',\n",
+ " 'clues': [('droop', 'hang loosely or laxly'),\n",
+ " ('swag',\n",
+ " 'droop, sink, or settle from or as if from pressure or loss of tautness'),\n",
+ " ('loll', 'hang loosely or laxly'),\n",
+ " ('wilt', 'become limp'),\n",
+ " ('flag',\n",
+ " 'droop, sink, or settle from or as if from pressure or loss of tautness')]},\n",
+ " {'answer': 'dropping',\n",
+ " 'hint': 'synonyms for dropping',\n",
+ " 'clues': [('dangle', 'hang freely'),\n",
+ " ('throw', 'get rid of'),\n",
+ " ('throw off', 'get rid of'),\n",
+ " ('overlook', 'leave undone or leave out'),\n",
+ " ('drop', 'go down in value'),\n",
+ " ('overleap', 'leave undone or leave out'),\n",
+ " ('cut down', 'cause to fall by or as if by delivering a blow'),\n",
+ " ('fell', 'cause to fall by or as if by delivering a blow'),\n",
+ " ('expend', 'pay out'),\n",
+ " ('set down', 'leave or unload'),\n",
+ " ('dribble', 'let or cause to fall in drops'),\n",
+ " ('shed', 'get rid of'),\n",
+ " ('unload', 'leave or unload'),\n",
+ " ('flatten', 'lower the pitch of (musical notes)'),\n",
+ " ('neglect', 'leave undone or leave out'),\n",
+ " ('shake off', 'get rid of'),\n",
+ " ('omit', 'leave undone or leave out'),\n",
+ " ('drop down', 'fall or descend to a lower place or level'),\n",
+ " ('devolve', 'grow worse'),\n",
+ " ('cast', 'get rid of'),\n",
+ " ('pretermit', 'leave undone or leave out'),\n",
+ " ('leave out', 'leave undone or leave out'),\n",
+ " ('sink', 'fall or descend to a lower place or level'),\n",
+ " ('send packing', 'stop associating with'),\n",
+ " ('cast off', 'get rid of'),\n",
+ " ('discharge', 'leave or unload'),\n",
+ " ('throw away', 'get rid of'),\n",
+ " ('degenerate', 'grow worse'),\n",
+ " ('drip', 'let or cause to fall in drops'),\n",
+ " ('miss', 'leave undone or leave out'),\n",
+ " ('drop off', 'leave or unload'),\n",
+ " ('strike down', 'cause to fall by or as if by delivering a blow'),\n",
+ " ('deteriorate', 'grow worse'),\n",
+ " ('dismiss', 'stop associating with'),\n",
+ " ('swing', 'hang freely'),\n",
+ " ('send away', 'stop associating with'),\n",
+ " ('spend', 'pay out'),\n",
+ " ('knock off', 'stop pursuing or acting')]},\n",
+ " {'answer': 'drudging',\n",
+ " 'hint': 'synonyms for drudging',\n",
+ " 'clues': [('grind', 'work hard'),\n",
+ " ('drudge', 'work hard'),\n",
+ " ('travail', 'work hard'),\n",
+ " ('fag', 'work hard'),\n",
+ " ('moil', 'work hard'),\n",
+ " ('labor', 'work hard'),\n",
+ " ('toil', 'work hard'),\n",
+ " ('dig', 'work hard')]},\n",
+ " {'answer': 'drunk',\n",
+ " 'hint': 'synonyms for drunk',\n",
+ " 'clues': [('pledge', 'propose a toast to'),\n",
+ " ('drink', 'drink excessive amounts of alcohol; be an alcoholic'),\n",
+ " ('imbibe', 'take in liquids'),\n",
+ " ('booze', 'consume alcohol'),\n",
+ " ('salute', 'propose a toast to'),\n",
+ " ('wassail', 'propose a toast to'),\n",
+ " ('drink in', 'be fascinated or spell-bound by; pay close attention to'),\n",
+ " ('fuddle', 'consume alcohol'),\n",
+ " ('tope', 'drink excessive amounts of alcohol; be an alcoholic'),\n",
+ " ('toast', 'propose a toast to')]},\n",
+ " {'answer': 'dull',\n",
+ " 'hint': 'synonyms for dull',\n",
+ " 'clues': [('muffle', 'deaden (a sound or noise), especially by wrapping'),\n",
+ " ('damp', 'deaden (a sound or noise), especially by wrapping'),\n",
+ " ('blunt', 'make dull or blunt'),\n",
+ " ('dampen', 'deaden (a sound or noise), especially by wrapping'),\n",
+ " ('pall', 'become less interesting or attractive'),\n",
+ " ('benumb', 'make numb or insensitive'),\n",
+ " ('numb', 'make numb or insensitive'),\n",
+ " ('mute', 'deaden (a sound or noise), especially by wrapping'),\n",
+ " ('tone down', 'deaden (a sound or noise), especially by wrapping')]},\n",
+ " {'answer': 'dulled',\n",
+ " 'hint': 'synonyms for dulled',\n",
+ " 'clues': [('muffle', 'deaden (a sound or noise), especially by wrapping'),\n",
+ " ('dull', 'make less lively or vigorous'),\n",
+ " ('damp', 'deaden (a sound or noise), especially by wrapping'),\n",
+ " ('dampen', 'deaden (a sound or noise), especially by wrapping'),\n",
+ " ('blunt', 'make dull or blunt'),\n",
+ " ('pall', 'become less interesting or attractive'),\n",
+ " ('benumb', 'make numb or insensitive'),\n",
+ " ('mute', 'deaden (a sound or noise), especially by wrapping'),\n",
+ " ('numb', 'make numb or insensitive'),\n",
+ " ('tone down', 'deaden (a sound or noise), especially by wrapping')]},\n",
+ " {'answer': 'dumbfounded',\n",
+ " 'hint': 'synonyms for dumbfounded',\n",
+ " 'clues': [('puzzle', 'be a mystery or bewildering to'),\n",
+ " ('get', 'be a mystery or bewildering to'),\n",
+ " ('beat', 'be a mystery or bewildering to'),\n",
+ " ('amaze', 'be a mystery or bewildering to'),\n",
+ " ('stupefy', 'be a mystery or bewildering to'),\n",
+ " ('baffle', 'be a mystery or bewildering to'),\n",
+ " ('dumbfound', 'be a mystery or bewildering to'),\n",
+ " ('pose', 'be a mystery or bewildering to'),\n",
+ " ('bewilder', 'be a mystery or bewildering to'),\n",
+ " ('perplex', 'be a mystery or bewildering to'),\n",
+ " ('gravel', 'be a mystery or bewildering to'),\n",
+ " ('mystify', 'be a mystery or bewildering to'),\n",
+ " ('stick', 'be a mystery or bewildering to'),\n",
+ " ('nonplus', 'be a mystery or bewildering to'),\n",
+ " ('vex', 'be a mystery or bewildering to'),\n",
+ " ('flummox', 'be a mystery or bewildering to')]},\n",
+ " {'answer': 'dumbfounding',\n",
+ " 'hint': 'synonyms for dumbfounding',\n",
+ " 'clues': [('puzzle', 'be a mystery or bewildering to'),\n",
+ " ('get', 'be a mystery or bewildering to'),\n",
+ " ('beat', 'be a mystery or bewildering to'),\n",
+ " ('amaze', 'be a mystery or bewildering to'),\n",
+ " ('stupefy', 'be a mystery or bewildering to'),\n",
+ " ('baffle', 'be a mystery or bewildering to'),\n",
+ " ('dumbfound', 'be a mystery or bewildering to'),\n",
+ " ('pose', 'be a mystery or bewildering to'),\n",
+ " ('bewilder', 'be a mystery or bewildering to'),\n",
+ " ('perplex', 'be a mystery or bewildering to'),\n",
+ " ('gravel', 'be a mystery or bewildering to'),\n",
+ " ('mystify', 'be a mystery or bewildering to'),\n",
+ " ('stick', 'be a mystery or bewildering to'),\n",
+ " ('nonplus', 'be a mystery or bewildering to'),\n",
+ " ('vex', 'be a mystery or bewildering to'),\n",
+ " ('flummox', 'be a mystery or bewildering to')]},\n",
+ " {'answer': 'dun',\n",
+ " 'hint': 'synonyms for dun',\n",
+ " 'clues': [('rag', 'treat cruelly'),\n",
+ " ('bedevil', 'treat cruelly'),\n",
+ " ('torment', 'treat cruelly'),\n",
+ " ('crucify', 'treat cruelly'),\n",
+ " ('frustrate', 'treat cruelly')]},\n",
+ " {'answer': 'duplicate',\n",
+ " 'hint': 'synonyms for duplicate',\n",
+ " 'clues': [('double', 'make or do or perform again'),\n",
+ " ('twin', 'duplicate or match'),\n",
+ " ('parallel', 'duplicate or match'),\n",
+ " ('repeat', 'make or do or perform again'),\n",
+ " ('replicate', 'make or do or perform again')]},\n",
+ " {'answer': 'dying',\n",
+ " 'hint': 'synonyms for dying',\n",
+ " 'clues': [('decease',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('die', 'feel indifferent towards'),\n",
+ " ('go',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('become flat', 'lose sparkle or bouquet'),\n",
+ " ('choke',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('kick the bucket',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('break down', 'stop operating or functioning'),\n",
+ " ('give out', 'stop operating or functioning'),\n",
+ " ('break', 'stop operating or functioning'),\n",
+ " ('exit',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('conk out', 'stop operating or functioning'),\n",
+ " ('croak',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('go bad', 'stop operating or functioning'),\n",
+ " ('drop dead',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('give way', 'stop operating or functioning'),\n",
+ " ('give-up the ghost',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " (\"cash in one's chips\",\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('pall', 'lose sparkle or bouquet'),\n",
+ " ('perish',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('snuff it',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('buy the farm',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('pass',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('expire',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('pass away',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('die out', 'cut or shape with a die'),\n",
+ " ('fail', 'stop operating or functioning'),\n",
+ " ('conk',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('pop off',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life')]},\n",
+ " {'answer': 'earned',\n",
+ " 'hint': 'synonyms for earned',\n",
+ " 'clues': [('bring in',\n",
+ " 'earn on some commercial or business transaction; earn as salary or wages'),\n",
+ " ('clear',\n",
+ " 'earn on some commercial or business transaction; earn as salary or wages'),\n",
+ " ('garner', \"acquire or deserve by one's efforts or actions\"),\n",
+ " ('earn', \"acquire or deserve by one's efforts or actions\"),\n",
+ " ('pull in',\n",
+ " 'earn on some commercial or business transaction; earn as salary or wages'),\n",
+ " ('make',\n",
+ " 'earn on some commercial or business transaction; earn as salary or wages'),\n",
+ " ('take in',\n",
+ " 'earn on some commercial or business transaction; earn as salary or wages'),\n",
+ " ('realize',\n",
+ " 'earn on some commercial or business transaction; earn as salary or wages'),\n",
+ " ('gain',\n",
+ " 'earn on some commercial or business transaction; earn as salary or wages')]},\n",
+ " {'answer': 'eased',\n",
+ " 'hint': 'synonyms for eased',\n",
+ " 'clues': [('ease', 'lessen pain or discomfort; alleviate'),\n",
+ " ('facilitate', 'make easier'),\n",
+ " ('still', 'lessen the intensity of or calm'),\n",
+ " ('alleviate', 'make easier'),\n",
+ " ('allay', 'lessen the intensity of or calm'),\n",
+ " ('comfort', 'lessen pain or discomfort; alleviate'),\n",
+ " ('relieve', 'lessen the intensity of or calm')]},\n",
+ " {'answer': 'echoing',\n",
+ " 'hint': 'synonyms for echoing',\n",
+ " 'clues': [('echo', 'call to mind'),\n",
+ " ('recall', 'call to mind'),\n",
+ " ('reverberate', 'ring or echo with sound'),\n",
+ " ('repeat', 'to say again or imitate'),\n",
+ " ('ring', 'ring or echo with sound'),\n",
+ " ('resound', 'ring or echo with sound')]},\n",
+ " {'answer': 'edged',\n",
+ " 'hint': 'synonyms for edged',\n",
+ " 'clues': [('adjoin', 'lie adjacent to another or share a boundary'),\n",
+ " ('abut', 'lie adjacent to another or share a boundary'),\n",
+ " ('butt against', 'lie adjacent to another or share a boundary'),\n",
+ " ('march', 'lie adjacent to another or share a boundary'),\n",
+ " ('edge', 'provide with an edge'),\n",
+ " ('butt', 'lie adjacent to another or share a boundary'),\n",
+ " ('border', 'provide with a border or edge'),\n",
+ " ('butt on', 'lie adjacent to another or share a boundary'),\n",
+ " ('inch', 'advance slowly, as if by inches')]},\n",
+ " {'answer': 'edited',\n",
+ " 'hint': 'synonyms for edited',\n",
+ " 'clues': [('edit', 'cut or eliminate'),\n",
+ " ('delete', 'cut or eliminate'),\n",
+ " ('redact',\n",
+ " 'prepare for publication or presentation by correcting, revising, or adapting'),\n",
+ " ('cut', 'cut and assemble the components of'),\n",
+ " ('blue-pencil', 'cut or eliminate'),\n",
+ " ('edit out', 'cut and assemble the components of')]},\n",
+ " {'answer': 'educated',\n",
+ " 'hint': 'synonyms for educated',\n",
+ " 'clues': [('educate',\n",
+ " 'teach or refine to be discriminative in taste or judgment'),\n",
+ " ('civilise', 'teach or refine to be discriminative in taste or judgment'),\n",
+ " ('train', 'create by training and teaching'),\n",
+ " ('school', 'teach or refine to be discriminative in taste or judgment'),\n",
+ " ('cultivate',\n",
+ " 'teach or refine to be discriminative in taste or judgment'),\n",
+ " ('develop', 'create by training and teaching'),\n",
+ " ('prepare', 'create by training and teaching')]},\n",
+ " {'answer': 'effervescing',\n",
+ " 'hint': 'synonyms for effervescing',\n",
+ " 'clues': [('form bubbles', 'become bubbly or frothy or foaming'),\n",
+ " ('fizz', 'become bubbly or frothy or foaming'),\n",
+ " ('froth', 'become bubbly or frothy or foaming'),\n",
+ " ('effervesce', 'become bubbly or frothy or foaming'),\n",
+ " ('sparkle', 'become bubbly or frothy or foaming'),\n",
+ " ('foam', 'become bubbly or frothy or foaming')]},\n",
+ " {'answer': 'elaborate',\n",
+ " 'hint': 'synonyms for elaborate',\n",
+ " 'clues': [('expatiate',\n",
+ " 'add details, as to an account or idea; clarify the meaning of and discourse in a learned way, usually in writing'),\n",
+ " ('rarify', 'make more complex, intricate, or richer'),\n",
+ " ('enlarge',\n",
+ " 'add details, as to an account or idea; clarify the meaning of and discourse in a learned way, usually in writing'),\n",
+ " ('lucubrate',\n",
+ " 'add details, as to an account or idea; clarify the meaning of and discourse in a learned way, usually in writing'),\n",
+ " ('expand',\n",
+ " 'add details, as to an account or idea; clarify the meaning of and discourse in a learned way, usually in writing'),\n",
+ " ('work out', 'work out in detail'),\n",
+ " ('flesh out',\n",
+ " 'add details, as to an account or idea; clarify the meaning of and discourse in a learned way, usually in writing'),\n",
+ " ('complicate', 'make more complex, intricate, or richer'),\n",
+ " ('exposit',\n",
+ " 'add details, as to an account or idea; clarify the meaning of and discourse in a learned way, usually in writing'),\n",
+ " ('expound',\n",
+ " 'add details, as to an account or idea; clarify the meaning of and discourse in a learned way, usually in writing'),\n",
+ " ('dilate',\n",
+ " 'add details, as to an account or idea; clarify the meaning of and discourse in a learned way, usually in writing'),\n",
+ " ('refine', 'make more complex, intricate, or richer')]},\n",
+ " {'answer': 'elaborated',\n",
+ " 'hint': 'synonyms for elaborated',\n",
+ " 'clues': [('elaborate', 'make more complex, intricate, or richer'),\n",
+ " ('expatiate',\n",
+ " 'add details, as to an account or idea; clarify the meaning of and discourse in a learned way, usually in writing'),\n",
+ " ('rarify', 'make more complex, intricate, or richer'),\n",
+ " ('enlarge',\n",
+ " 'add details, as to an account or idea; clarify the meaning of and discourse in a learned way, usually in writing'),\n",
+ " ('lucubrate',\n",
+ " 'add details, as to an account or idea; clarify the meaning of and discourse in a learned way, usually in writing'),\n",
+ " ('expand',\n",
+ " 'add details, as to an account or idea; clarify the meaning of and discourse in a learned way, usually in writing'),\n",
+ " ('work out', 'work out in detail'),\n",
+ " ('flesh out',\n",
+ " 'add details, as to an account or idea; clarify the meaning of and discourse in a learned way, usually in writing'),\n",
+ " ('complicate', 'make more complex, intricate, or richer'),\n",
+ " ('exposit',\n",
+ " 'add details, as to an account or idea; clarify the meaning of and discourse in a learned way, usually in writing'),\n",
+ " ('expound',\n",
+ " 'add details, as to an account or idea; clarify the meaning of and discourse in a learned way, usually in writing'),\n",
+ " ('dilate',\n",
+ " 'add details, as to an account or idea; clarify the meaning of and discourse in a learned way, usually in writing'),\n",
+ " ('refine', 'make more complex, intricate, or richer')]},\n",
+ " {'answer': 'elapsed',\n",
+ " 'hint': 'synonyms for elapsed',\n",
+ " 'clues': [('slide by', 'pass by'),\n",
+ " ('go by', 'pass by'),\n",
+ " ('go along', 'pass by'),\n",
+ " ('elapse', 'pass by'),\n",
+ " ('slip away', 'pass by'),\n",
+ " ('slip by', 'pass by'),\n",
+ " ('pass', 'pass by')]},\n",
+ " {'answer': 'elated',\n",
+ " 'hint': 'synonyms for elated',\n",
+ " 'clues': [('pick up', 'fill with high spirits; fill with optimism'),\n",
+ " ('lift up', 'fill with high spirits; fill with optimism'),\n",
+ " ('uplift', 'fill with high spirits; fill with optimism'),\n",
+ " ('intoxicate', 'fill with high spirits; fill with optimism'),\n",
+ " ('elate', 'fill with high spirits; fill with optimism')]},\n",
+ " {'answer': 'elating',\n",
+ " 'hint': 'synonyms for elating',\n",
+ " 'clues': [('pick up', 'fill with high spirits; fill with optimism'),\n",
+ " ('lift up', 'fill with high spirits; fill with optimism'),\n",
+ " ('uplift', 'fill with high spirits; fill with optimism'),\n",
+ " ('intoxicate', 'fill with high spirits; fill with optimism'),\n",
+ " ('elate', 'fill with high spirits; fill with optimism')]},\n",
+ " {'answer': 'elevated',\n",
+ " 'hint': 'synonyms for elevated',\n",
+ " 'clues': [('raise', 'raise from a lower to a higher position'),\n",
+ " ('bring up', 'raise from a lower to a higher position'),\n",
+ " ('kick upstairs', 'give a promotion to or assign to a higher position'),\n",
+ " ('lift', 'raise in rank or condition'),\n",
+ " ('elevate', 'raise in rank or condition'),\n",
+ " ('get up', 'raise from a lower to a higher position'),\n",
+ " ('upgrade', 'give a promotion to or assign to a higher position'),\n",
+ " ('advance', 'give a promotion to or assign to a higher position'),\n",
+ " ('promote', 'give a promotion to or assign to a higher position')]},\n",
+ " {'answer': 'elicited',\n",
+ " 'hint': 'synonyms for elicited',\n",
+ " 'clues': [('draw out', 'deduce (a principle) or construe (a meaning)'),\n",
+ " ('raise', 'call forth (emotions, feelings, and responses)'),\n",
+ " ('elicit', 'deduce (a principle) or construe (a meaning)'),\n",
+ " ('evoke', 'call forth (emotions, feelings, and responses)'),\n",
+ " ('fire', 'call forth (emotions, feelings, and responses)'),\n",
+ " ('kindle', 'call forth (emotions, feelings, and responses)'),\n",
+ " ('provoke', 'call forth (emotions, feelings, and responses)'),\n",
+ " ('educe', 'deduce (a principle) or construe (a meaning)'),\n",
+ " ('extract', 'deduce (a principle) or construe (a meaning)'),\n",
+ " ('arouse', 'call forth (emotions, feelings, and responses)')]},\n",
+ " {'answer': 'embarrassed',\n",
+ " 'hint': 'synonyms for embarrassed',\n",
+ " 'clues': [('abash',\n",
+ " 'cause to be embarrassed; cause to feel self-conscious'),\n",
+ " ('blockade', 'hinder or prevent the progress or accomplishment of'),\n",
+ " ('stymie', 'hinder or prevent the progress or accomplishment of'),\n",
+ " ('hinder', 'hinder or prevent the progress or accomplishment of'),\n",
+ " ('stymy', 'hinder or prevent the progress or accomplishment of'),\n",
+ " ('obstruct', 'hinder or prevent the progress or accomplishment of'),\n",
+ " ('block', 'hinder or prevent the progress or accomplishment of'),\n",
+ " ('embarrass', 'hinder or prevent the progress or accomplishment of')]},\n",
+ " {'answer': 'embarrassing',\n",
+ " 'hint': 'synonyms for embarrassing',\n",
+ " 'clues': [('abash',\n",
+ " 'cause to be embarrassed; cause to feel self-conscious'),\n",
+ " ('blockade', 'hinder or prevent the progress or accomplishment of'),\n",
+ " ('stymie', 'hinder or prevent the progress or accomplishment of'),\n",
+ " ('hinder', 'hinder or prevent the progress or accomplishment of'),\n",
+ " ('stymy', 'hinder or prevent the progress or accomplishment of'),\n",
+ " ('obstruct', 'hinder or prevent the progress or accomplishment of'),\n",
+ " ('block', 'hinder or prevent the progress or accomplishment of'),\n",
+ " ('embarrass', 'hinder or prevent the progress or accomplishment of')]},\n",
+ " {'answer': 'embedded',\n",
+ " 'hint': 'synonyms for embedded',\n",
+ " 'clues': [('imbed', 'fix or set securely or deeply'),\n",
+ " ('engraft', 'fix or set securely or deeply'),\n",
+ " ('embed',\n",
+ " 'attach to, as a journalist to a military unit when reporting on a war'),\n",
+ " ('plant', 'fix or set securely or deeply'),\n",
+ " ('implant', 'fix or set securely or deeply')]},\n",
+ " {'answer': 'embezzled',\n",
+ " 'hint': 'synonyms for embezzled',\n",
+ " 'clues': [('defalcate',\n",
+ " \"appropriate (as property entrusted to one's care) fraudulently to one's own use\"),\n",
+ " ('malversate',\n",
+ " \"appropriate (as property entrusted to one's care) fraudulently to one's own use\"),\n",
+ " ('peculate',\n",
+ " \"appropriate (as property entrusted to one's care) fraudulently to one's own use\"),\n",
+ " ('embezzle',\n",
+ " \"appropriate (as property entrusted to one's care) fraudulently to one's own use\"),\n",
+ " ('misappropriate',\n",
+ " \"appropriate (as property entrusted to one's care) fraudulently to one's own use\")]},\n",
+ " {'answer': 'embodied',\n",
+ " 'hint': 'synonyms for embodied',\n",
+ " 'clues': [('be', 'represent, as of a character on stage'),\n",
+ " ('embody', 'represent or express something abstract in tangible form'),\n",
+ " ('personify', 'represent, as of a character on stage'),\n",
+ " ('substantiate', 'represent in bodily form'),\n",
+ " ('incarnate', 'represent in bodily form'),\n",
+ " ('body forth', 'represent in bodily form')]},\n",
+ " {'answer': 'emboldened',\n",
+ " 'hint': 'synonyms for emboldened',\n",
+ " 'clues': [('recreate', 'give encouragement to'),\n",
+ " ('embolden', 'give encouragement to'),\n",
+ " ('cheer', 'give encouragement to'),\n",
+ " ('hearten', 'give encouragement to')]},\n",
+ " {'answer': 'embroiled',\n",
+ " 'hint': 'synonyms for embroiled',\n",
+ " 'clues': [('embroil',\n",
+ " 'force into some kind of situation, condition, or course of action'),\n",
+ " ('tangle',\n",
+ " 'force into some kind of situation, condition, or course of action'),\n",
+ " ('sweep up',\n",
+ " 'force into some kind of situation, condition, or course of action'),\n",
+ " ('drag',\n",
+ " 'force into some kind of situation, condition, or course of action'),\n",
+ " ('drag in',\n",
+ " 'force into some kind of situation, condition, or course of action'),\n",
+ " ('sweep',\n",
+ " 'force into some kind of situation, condition, or course of action')]},\n",
+ " {'answer': 'emerging',\n",
+ " 'hint': 'synonyms for emerging',\n",
+ " 'clues': [('emerge', 'become known or apparent'),\n",
+ " ('issue', 'come out of'),\n",
+ " ('come forth', 'come out of'),\n",
+ " ('come out', 'come out of'),\n",
+ " ('egress', 'come out of'),\n",
+ " ('go forth', 'come out of')]},\n",
+ " {'answer': 'emphasised',\n",
+ " 'hint': 'synonyms for emphasised',\n",
+ " 'clues': [('emphasize', 'give extra weight to (a communication)'),\n",
+ " ('underline', 'give extra weight to (a communication)'),\n",
+ " ('punctuate', 'to stress, single out as important'),\n",
+ " ('underscore', 'give extra weight to (a communication)'),\n",
+ " ('accentuate', 'to stress, single out as important'),\n",
+ " ('accent', 'to stress, single out as important'),\n",
+ " ('stress', 'to stress, single out as important')]},\n",
+ " {'answer': 'emphasized',\n",
+ " 'hint': 'synonyms for emphasized',\n",
+ " 'clues': [('emphasize', 'to stress, single out as important'),\n",
+ " ('underline', 'give extra weight to (a communication)'),\n",
+ " ('punctuate', 'to stress, single out as important'),\n",
+ " ('underscore', 'give extra weight to (a communication)'),\n",
+ " ('accentuate', 'to stress, single out as important'),\n",
+ " ('accent', 'to stress, single out as important'),\n",
+ " ('stress', 'to stress, single out as important')]},\n",
+ " {'answer': 'employed',\n",
+ " 'hint': 'synonyms for employed',\n",
+ " 'clues': [('apply',\n",
+ " 'put into service; make work or employ for a particular purpose or for its inherent or natural purpose'),\n",
+ " ('hire', 'engage or hire for work'),\n",
+ " ('utilise',\n",
+ " 'put into service; make work or employ for a particular purpose or for its inherent or natural purpose'),\n",
+ " ('employ',\n",
+ " 'put into service; make work or employ for a particular purpose or for its inherent or natural purpose'),\n",
+ " ('engage', 'engage or hire for work'),\n",
+ " ('use',\n",
+ " 'put into service; make work or employ for a particular purpose or for its inherent or natural purpose')]},\n",
+ " {'answer': 'empowered',\n",
+ " 'hint': 'synonyms for empowered',\n",
+ " 'clues': [('endue', 'give qualities or abilities to'),\n",
+ " ('empower', 'give qualities or abilities to'),\n",
+ " ('authorize', 'give or delegate power or authority to'),\n",
+ " ('invest', 'give qualities or abilities to'),\n",
+ " ('gift', 'give qualities or abilities to'),\n",
+ " ('endow', 'give qualities or abilities to'),\n",
+ " ('indue', 'give qualities or abilities to')]},\n",
+ " {'answer': 'empty',\n",
+ " 'hint': 'synonyms for empty',\n",
+ " 'clues': [('abandon', 'leave behind empty; move out of'),\n",
+ " ('evacuate', 'excrete or discharge from the body'),\n",
+ " ('void', 'excrete or discharge from the body'),\n",
+ " ('discharge', 'become empty or void of its content')]},\n",
+ " {'answer': 'enamored',\n",
+ " 'hint': 'synonyms for enamored',\n",
+ " 'clues': [('trance', 'attract; cause to be enamored'),\n",
+ " ('bewitch', 'attract; cause to be enamored'),\n",
+ " ('becharm', 'attract; cause to be enamored'),\n",
+ " ('enchant', 'attract; cause to be enamored'),\n",
+ " ('enamour', 'attract; cause to be enamored'),\n",
+ " ('fascinate', 'attract; cause to be enamored'),\n",
+ " ('charm', 'attract; cause to be enamored'),\n",
+ " ('beguile', 'attract; cause to be enamored'),\n",
+ " ('capture', 'attract; cause to be enamored'),\n",
+ " ('catch', 'attract; cause to be enamored'),\n",
+ " ('captivate', 'attract; cause to be enamored')]},\n",
+ " {'answer': 'enchanted',\n",
+ " 'hint': 'synonyms for enchanted',\n",
+ " 'clues': [('ravish', 'hold spellbound'),\n",
+ " ('transport', 'hold spellbound'),\n",
+ " ('trance', 'attract; cause to be enamored'),\n",
+ " ('becharm', 'attract; cause to be enamored'),\n",
+ " ('enchant', 'attract; cause to be enamored'),\n",
+ " ('bewitch',\n",
+ " 'cast a spell over someone or something; put a hex on someone or something'),\n",
+ " ('enamour', 'attract; cause to be enamored'),\n",
+ " ('fascinate', 'attract; cause to be enamored'),\n",
+ " ('beguile', 'attract; cause to be enamored'),\n",
+ " ('capture', 'attract; cause to be enamored'),\n",
+ " ('catch', 'attract; cause to be enamored'),\n",
+ " ('captivate', 'attract; cause to be enamored'),\n",
+ " ('hex',\n",
+ " 'cast a spell over someone or something; put a hex on someone or something'),\n",
+ " ('enthral', 'hold spellbound'),\n",
+ " ('enrapture', 'hold spellbound'),\n",
+ " ('delight', 'hold spellbound'),\n",
+ " ('glamour',\n",
+ " 'cast a spell over someone or something; put a hex on someone or something'),\n",
+ " ('charm', 'attract; cause to be enamored'),\n",
+ " ('jinx',\n",
+ " 'cast a spell over someone or something; put a hex on someone or something'),\n",
+ " ('witch',\n",
+ " 'cast a spell over someone or something; put a hex on someone or something')]},\n",
+ " {'answer': 'enchanting',\n",
+ " 'hint': 'synonyms for enchanting',\n",
+ " 'clues': [('ravish', 'hold spellbound'),\n",
+ " ('transport', 'hold spellbound'),\n",
+ " ('trance', 'attract; cause to be enamored'),\n",
+ " ('becharm', 'attract; cause to be enamored'),\n",
+ " ('enchant', 'attract; cause to be enamored'),\n",
+ " ('bewitch',\n",
+ " 'cast a spell over someone or something; put a hex on someone or something'),\n",
+ " ('enamour', 'attract; cause to be enamored'),\n",
+ " ('fascinate', 'attract; cause to be enamored'),\n",
+ " ('beguile', 'attract; cause to be enamored'),\n",
+ " ('capture', 'attract; cause to be enamored'),\n",
+ " ('catch', 'attract; cause to be enamored'),\n",
+ " ('captivate', 'attract; cause to be enamored'),\n",
+ " ('hex',\n",
+ " 'cast a spell over someone or something; put a hex on someone or something'),\n",
+ " ('enthral', 'hold spellbound'),\n",
+ " ('enrapture', 'hold spellbound'),\n",
+ " ('delight', 'hold spellbound'),\n",
+ " ('glamour',\n",
+ " 'cast a spell over someone or something; put a hex on someone or something'),\n",
+ " ('charm', 'attract; cause to be enamored'),\n",
+ " ('jinx',\n",
+ " 'cast a spell over someone or something; put a hex on someone or something'),\n",
+ " ('witch',\n",
+ " 'cast a spell over someone or something; put a hex on someone or something')]},\n",
+ " {'answer': 'enclosed',\n",
+ " 'hint': 'synonyms for enclosed',\n",
+ " 'clues': [('introduce', 'introduce'),\n",
+ " ('enclose', 'surround completely'),\n",
+ " ('enwrap', 'enclose or enfold completely with or as if with a covering'),\n",
+ " ('insert', 'introduce'),\n",
+ " ('enfold', 'enclose or enfold completely with or as if with a covering'),\n",
+ " ('wrap', 'enclose or enfold completely with or as if with a covering'),\n",
+ " ('close in', 'surround completely'),\n",
+ " ('stick in', 'introduce'),\n",
+ " ('envelop', 'enclose or enfold completely with or as if with a covering'),\n",
+ " ('confine', 'close in; darkness enclosed him\"'),\n",
+ " ('shut in', 'surround completely'),\n",
+ " ('put in', 'introduce'),\n",
+ " ('hold in', 'close in; darkness enclosed him\"')]},\n",
+ " {'answer': 'encompassing',\n",
+ " 'hint': 'synonyms for encompassing',\n",
+ " 'clues': [('cover',\n",
+ " \"include in scope; include as part of something broader; have as one's sphere or territory\"),\n",
+ " ('comprehend',\n",
+ " \"include in scope; include as part of something broader; have as one's sphere or territory\"),\n",
+ " ('embrace',\n",
+ " \"include in scope; include as part of something broader; have as one's sphere or territory\"),\n",
+ " ('encompass',\n",
+ " \"include in scope; include as part of something broader; have as one's sphere or territory\")]},\n",
+ " {'answer': 'encouraged',\n",
+ " 'hint': 'synonyms for encouraged',\n",
+ " 'clues': [('boost', 'contribute to the progress or growth of'),\n",
+ " ('encourage', 'spur on'),\n",
+ " ('promote', 'contribute to the progress or growth of'),\n",
+ " ('advance', 'contribute to the progress or growth of'),\n",
+ " ('further', 'contribute to the progress or growth of')]},\n",
+ " {'answer': 'encouraging',\n",
+ " 'hint': 'synonyms for encouraging',\n",
+ " 'clues': [('boost', 'contribute to the progress or growth of'),\n",
+ " ('encourage', 'spur on'),\n",
+ " ('promote', 'contribute to the progress or growth of'),\n",
+ " ('advance', 'contribute to the progress or growth of'),\n",
+ " ('further', 'contribute to the progress or growth of')]},\n",
+ " {'answer': 'encroaching',\n",
+ " 'hint': 'synonyms for encroaching',\n",
+ " 'clues': [('encroach', 'impinge or infringe upon'),\n",
+ " ('impinge', 'impinge or infringe upon'),\n",
+ " ('trench', 'impinge or infringe upon'),\n",
+ " ('infringe', 'advance beyond the usual limit')]},\n",
+ " {'answer': 'endangered',\n",
+ " 'hint': 'synonyms for endangered',\n",
+ " 'clues': [('endanger', 'pose a threat to; present a danger to'),\n",
+ " ('peril', 'pose a threat to; present a danger to'),\n",
+ " ('jeopardize', 'pose a threat to; present a danger to'),\n",
+ " ('threaten', 'pose a threat to; present a danger to'),\n",
+ " ('queer', 'put in a dangerous, disadvantageous, or difficult position'),\n",
+ " ('menace', 'pose a threat to; present a danger to'),\n",
+ " ('expose', 'put in a dangerous, disadvantageous, or difficult position'),\n",
+ " ('scupper', 'put in a dangerous, disadvantageous, or difficult position'),\n",
+ " ('imperil', 'pose a threat to; present a danger to')]},\n",
+ " {'answer': 'ended',\n",
+ " 'hint': 'synonyms for ended',\n",
+ " 'clues': [('end',\n",
+ " 'have an end, in a temporal, spatial, or quantitative sense; either spatial or metaphorical'),\n",
+ " ('terminate', 'be the end of; be the last or concluding part of'),\n",
+ " ('cease',\n",
+ " 'have an end, in a temporal, spatial, or quantitative sense; either spatial or metaphorical'),\n",
+ " ('finish',\n",
+ " 'have an end, in a temporal, spatial, or quantitative sense; either spatial or metaphorical'),\n",
+ " ('stop',\n",
+ " 'have an end, in a temporal, spatial, or quantitative sense; either spatial or metaphorical')]},\n",
+ " {'answer': 'endowed',\n",
+ " 'hint': 'synonyms for endowed',\n",
+ " 'clues': [('endue', 'give qualities or abilities to'),\n",
+ " ('empower', 'give qualities or abilities to'),\n",
+ " ('dower', 'furnish with an endowment'),\n",
+ " ('invest', 'give qualities or abilities to'),\n",
+ " ('indue', 'give qualities or abilities to'),\n",
+ " ('endow', 'give qualities or abilities to'),\n",
+ " ('gift', 'give qualities or abilities to')]},\n",
+ " {'answer': 'enduring',\n",
+ " 'hint': 'synonyms for enduring',\n",
+ " 'clues': [('hold out', 'continue to live through hardship or adversity'),\n",
+ " ('suffer', 'put up with something or somebody unpleasant'),\n",
+ " ('brave', 'face and withstand with courage'),\n",
+ " ('endure', 'undergo or be subjected to'),\n",
+ " ('tolerate', 'put up with something or somebody unpleasant'),\n",
+ " ('brave out', 'face and withstand with courage'),\n",
+ " ('persist', 'continue to exist'),\n",
+ " ('weather', 'face and withstand with courage'),\n",
+ " ('run', 'continue to exist'),\n",
+ " ('live', 'continue to live through hardship or adversity'),\n",
+ " ('support', 'put up with something or somebody unpleasant'),\n",
+ " ('hold up', 'continue to live through hardship or adversity'),\n",
+ " ('stomach', 'put up with something or somebody unpleasant'),\n",
+ " ('live on', 'continue to live through hardship or adversity'),\n",
+ " ('brook', 'put up with something or somebody unpleasant'),\n",
+ " ('stand', 'put up with something or somebody unpleasant'),\n",
+ " ('go', 'continue to live through hardship or adversity'),\n",
+ " ('bear', 'put up with something or somebody unpleasant'),\n",
+ " ('stick out', 'put up with something or somebody unpleasant'),\n",
+ " ('wear', 'last and be usable'),\n",
+ " ('die hard', 'continue to exist'),\n",
+ " ('abide', 'put up with something or somebody unpleasant'),\n",
+ " ('last', 'continue to live through hardship or adversity'),\n",
+ " ('prevail', 'continue to exist'),\n",
+ " ('survive', 'continue to live through hardship or adversity'),\n",
+ " ('put up', 'put up with something or somebody unpleasant'),\n",
+ " ('digest', 'put up with something or somebody unpleasant')]},\n",
+ " {'answer': 'energising',\n",
+ " 'hint': 'synonyms for energising',\n",
+ " 'clues': [('energize', 'cause to be alert and energetic'),\n",
+ " ('arouse', 'cause to be alert and energetic'),\n",
+ " ('perk up', 'cause to be alert and energetic'),\n",
+ " ('stimulate', 'cause to be alert and energetic'),\n",
+ " ('excite', 'raise to a higher energy level'),\n",
+ " ('brace', 'cause to be alert and energetic')]},\n",
+ " {'answer': 'energizing',\n",
+ " 'hint': 'synonyms for energizing',\n",
+ " 'clues': [('energize', 'cause to be alert and energetic'),\n",
+ " ('arouse', 'cause to be alert and energetic'),\n",
+ " ('perk up', 'cause to be alert and energetic'),\n",
+ " ('stimulate', 'cause to be alert and energetic'),\n",
+ " ('excite', 'raise to a higher energy level'),\n",
+ " ('brace', 'cause to be alert and energetic')]},\n",
+ " {'answer': 'enervated',\n",
+ " 'hint': 'synonyms for enervated',\n",
+ " 'clues': [('enervate', 'weaken mentally or morally'),\n",
+ " ('unsettle', 'disturb the composure of'),\n",
+ " ('unnerve', 'disturb the composure of'),\n",
+ " ('faze', 'disturb the composure of')]},\n",
+ " {'answer': 'enervating',\n",
+ " 'hint': 'synonyms for enervating',\n",
+ " 'clues': [('enervate', 'weaken mentally or morally'),\n",
+ " ('unsettle', 'disturb the composure of'),\n",
+ " ('unnerve', 'disturb the composure of'),\n",
+ " ('faze', 'disturb the composure of')]},\n",
+ " {'answer': 'enforced',\n",
+ " 'hint': 'synonyms for enforced',\n",
+ " 'clues': [('enforce', 'ensure observance of laws and rules'),\n",
+ " ('impose', 'compel to behave in a certain way'),\n",
+ " ('apply', 'ensure observance of laws and rules'),\n",
+ " ('implement', 'ensure observance of laws and rules')]},\n",
+ " {'answer': 'engaged',\n",
+ " 'hint': 'synonyms for engaged',\n",
+ " 'clues': [('absorb', \"consume all of one's attention or time\"),\n",
+ " ('engage', 'carry out or participate in an activity; be involved in'),\n",
+ " ('pursue', 'carry out or participate in an activity; be involved in'),\n",
+ " ('employ', 'engage or hire for work'),\n",
+ " ('rent', 'engage for service under a term of contract'),\n",
+ " ('hire', 'engage for service under a term of contract'),\n",
+ " ('engross', \"consume all of one's attention or time\"),\n",
+ " ('plight', 'give to in marriage'),\n",
+ " ('affiance', 'give to in marriage'),\n",
+ " ('prosecute', 'carry out or participate in an activity; be involved in'),\n",
+ " ('betroth', 'give to in marriage'),\n",
+ " ('enlist', 'hire for work or assistance'),\n",
+ " ('wage', 'carry on (wars, battles, or campaigns)'),\n",
+ " ('charter', 'engage for service under a term of contract'),\n",
+ " ('occupy', \"consume all of one's attention or time\"),\n",
+ " ('mesh', 'keep engaged'),\n",
+ " ('lease', 'engage for service under a term of contract'),\n",
+ " ('operate', 'keep engaged'),\n",
+ " ('lock', 'keep engaged'),\n",
+ " ('take', 'engage for service under a term of contract')]},\n",
+ " {'answer': 'engaging',\n",
+ " 'hint': 'synonyms for engaging',\n",
+ " 'clues': [('absorb', \"consume all of one's attention or time\"),\n",
+ " ('engage', 'carry out or participate in an activity; be involved in'),\n",
+ " ('pursue', 'carry out or participate in an activity; be involved in'),\n",
+ " ('employ', 'engage or hire for work'),\n",
+ " ('rent', 'engage for service under a term of contract'),\n",
+ " ('hire', 'engage for service under a term of contract'),\n",
+ " ('engross', \"consume all of one's attention or time\"),\n",
+ " ('plight', 'give to in marriage'),\n",
+ " ('affiance', 'give to in marriage'),\n",
+ " ('prosecute', 'carry out or participate in an activity; be involved in'),\n",
+ " ('betroth', 'give to in marriage'),\n",
+ " ('enlist', 'hire for work or assistance'),\n",
+ " ('wage', 'carry on (wars, battles, or campaigns)'),\n",
+ " ('charter', 'engage for service under a term of contract'),\n",
+ " ('occupy', \"consume all of one's attention or time\"),\n",
+ " ('mesh', 'keep engaged'),\n",
+ " ('lease', 'engage for service under a term of contract'),\n",
+ " ('operate', 'keep engaged'),\n",
+ " ('lock', 'keep engaged'),\n",
+ " ('take', 'engage for service under a term of contract')]},\n",
+ " {'answer': 'engorged',\n",
+ " 'hint': 'synonyms for engorged',\n",
+ " 'clues': [('englut', 'overeat or eat immodestly; make a pig of oneself'),\n",
+ " ('engorge', 'overeat or eat immodestly; make a pig of oneself'),\n",
+ " ('stuff', 'overeat or eat immodestly; make a pig of oneself'),\n",
+ " ('satiate', 'overeat or eat immodestly; make a pig of oneself'),\n",
+ " ('gourmandize', 'overeat or eat immodestly; make a pig of oneself'),\n",
+ " ('gorge', 'overeat or eat immodestly; make a pig of oneself'),\n",
+ " ('overgorge', 'overeat or eat immodestly; make a pig of oneself'),\n",
+ " ('ingurgitate', 'overeat or eat immodestly; make a pig of oneself'),\n",
+ " ('overeat', 'overeat or eat immodestly; make a pig of oneself'),\n",
+ " ('overindulge', 'overeat or eat immodestly; make a pig of oneself'),\n",
+ " ('glut', 'overeat or eat immodestly; make a pig of oneself'),\n",
+ " ('pig out', 'overeat or eat immodestly; make a pig of oneself'),\n",
+ " ('binge', 'overeat or eat immodestly; make a pig of oneself'),\n",
+ " ('scarf out', 'overeat or eat immodestly; make a pig of oneself')]},\n",
+ " {'answer': 'engraved',\n",
+ " 'hint': 'synonyms for engraved',\n",
+ " 'clues': [('grave', 'carve, cut, or etch into a material or surface'),\n",
+ " ('engrave', 'carve or cut a design or letters into'),\n",
+ " ('etch', 'carve or cut a design or letters into'),\n",
+ " ('inscribe', 'carve, cut, or etch into a material or surface'),\n",
+ " ('scratch', 'carve, cut, or etch into a material or surface')]},\n",
+ " {'answer': 'engrossed',\n",
+ " 'hint': 'synonyms for engrossed',\n",
+ " 'clues': [('absorb', \"consume all of one's attention or time\"),\n",
+ " ('engage', \"consume all of one's attention or time\"),\n",
+ " ('engulf', 'devote (oneself) fully to'),\n",
+ " ('plunge', 'devote (oneself) fully to'),\n",
+ " ('engross', 'devote (oneself) fully to'),\n",
+ " ('occupy', \"consume all of one's attention or time\"),\n",
+ " ('immerse', 'devote (oneself) fully to'),\n",
+ " ('soak up', 'devote (oneself) fully to'),\n",
+ " ('steep', 'devote (oneself) fully to')]},\n",
+ " {'answer': 'engrossing',\n",
+ " 'hint': 'synonyms for engrossing',\n",
+ " 'clues': [('absorb', \"consume all of one's attention or time\"),\n",
+ " ('engage', \"consume all of one's attention or time\"),\n",
+ " ('engulf', 'devote (oneself) fully to'),\n",
+ " ('plunge', 'devote (oneself) fully to'),\n",
+ " ('engross', 'devote (oneself) fully to'),\n",
+ " ('occupy', \"consume all of one's attention or time\"),\n",
+ " ('immerse', 'devote (oneself) fully to'),\n",
+ " ('soak up', 'devote (oneself) fully to'),\n",
+ " ('steep', 'devote (oneself) fully to')]},\n",
+ " {'answer': 'enkindled',\n",
+ " 'hint': 'synonyms for enkindled',\n",
+ " 'clues': [('raise', 'call forth (emotions, feelings, and responses)'),\n",
+ " ('kindle', 'cause to start burning'),\n",
+ " ('conflagrate', 'cause to start burning'),\n",
+ " ('evoke', 'call forth (emotions, feelings, and responses)'),\n",
+ " ('fire', 'call forth (emotions, feelings, and responses)'),\n",
+ " ('provoke', 'call forth (emotions, feelings, and responses)'),\n",
+ " ('arouse', 'call forth (emotions, feelings, and responses)'),\n",
+ " ('elicit', 'call forth (emotions, feelings, and responses)'),\n",
+ " ('inflame', 'cause to start burning')]},\n",
+ " {'answer': 'enlarged',\n",
+ " 'hint': 'synonyms for enlarged',\n",
+ " 'clues': [('magnify', 'make large'),\n",
+ " ('enlarge', 'make large'),\n",
+ " ('elaborate',\n",
+ " 'add details, as to an account or idea; clarify the meaning of and discourse in a learned way, usually in writing'),\n",
+ " ('expatiate',\n",
+ " 'add details, as to an account or idea; clarify the meaning of and discourse in a learned way, usually in writing'),\n",
+ " ('lucubrate',\n",
+ " 'add details, as to an account or idea; clarify the meaning of and discourse in a learned way, usually in writing'),\n",
+ " ('expand',\n",
+ " 'add details, as to an account or idea; clarify the meaning of and discourse in a learned way, usually in writing'),\n",
+ " ('blow up', 'make large'),\n",
+ " ('flesh out',\n",
+ " 'add details, as to an account or idea; clarify the meaning of and discourse in a learned way, usually in writing'),\n",
+ " ('exposit',\n",
+ " 'add details, as to an account or idea; clarify the meaning of and discourse in a learned way, usually in writing'),\n",
+ " ('expound',\n",
+ " 'add details, as to an account or idea; clarify the meaning of and discourse in a learned way, usually in writing'),\n",
+ " ('dilate',\n",
+ " 'add details, as to an account or idea; clarify the meaning of and discourse in a learned way, usually in writing')]},\n",
+ " {'answer': 'enlightened',\n",
+ " 'hint': 'synonyms for enlightened',\n",
+ " 'clues': [('straighten out',\n",
+ " 'make free from confusion or ambiguity; make clear'),\n",
+ " ('irradiate', 'give spiritual insight to; in religion'),\n",
+ " ('sort out', 'make free from confusion or ambiguity; make clear'),\n",
+ " ('clear', 'make free from confusion or ambiguity; make clear'),\n",
+ " ('crystallize', 'make free from confusion or ambiguity; make clear'),\n",
+ " ('shed light on', 'make free from confusion or ambiguity; make clear'),\n",
+ " ('enlighten', 'make free from confusion or ambiguity; make clear'),\n",
+ " ('edify', 'make understand'),\n",
+ " ('elucidate', 'make free from confusion or ambiguity; make clear'),\n",
+ " ('illuminate', 'make free from confusion or ambiguity; make clear'),\n",
+ " ('clear up', 'make free from confusion or ambiguity; make clear')]},\n",
+ " {'answer': 'enlightening',\n",
+ " 'hint': 'synonyms for enlightening',\n",
+ " 'clues': [('straighten out',\n",
+ " 'make free from confusion or ambiguity; make clear'),\n",
+ " ('irradiate', 'give spiritual insight to; in religion'),\n",
+ " ('sort out', 'make free from confusion or ambiguity; make clear'),\n",
+ " ('clear', 'make free from confusion or ambiguity; make clear'),\n",
+ " ('crystallize', 'make free from confusion or ambiguity; make clear'),\n",
+ " ('shed light on', 'make free from confusion or ambiguity; make clear'),\n",
+ " ('enlighten', 'make free from confusion or ambiguity; make clear'),\n",
+ " ('edify', 'make understand'),\n",
+ " ('elucidate', 'make free from confusion or ambiguity; make clear'),\n",
+ " ('illuminate', 'make free from confusion or ambiguity; make clear'),\n",
+ " ('clear up', 'make free from confusion or ambiguity; make clear')]},\n",
+ " {'answer': 'enlivened',\n",
+ " 'hint': 'synonyms for enlivened',\n",
+ " 'clues': [('liven', 'make lively'),\n",
+ " ('animate', 'make lively'),\n",
+ " ('invigorate', 'heighten or intensify'),\n",
+ " ('enliven', 'heighten or intensify'),\n",
+ " ('exalt', 'heighten or intensify'),\n",
+ " ('inspire', 'heighten or intensify'),\n",
+ " ('liven up', 'make lively')]},\n",
+ " {'answer': 'enlivening',\n",
+ " 'hint': 'synonyms for enlivening',\n",
+ " 'clues': [('liven', 'make lively'),\n",
+ " ('animate', 'make lively'),\n",
+ " ('invigorate', 'heighten or intensify'),\n",
+ " ('enliven', 'heighten or intensify'),\n",
+ " ('exalt', 'heighten or intensify'),\n",
+ " ('inspire', 'heighten or intensify'),\n",
+ " ('liven up', 'make lively')]},\n",
+ " {'answer': 'ennobling',\n",
+ " 'hint': 'synonyms for ennobling',\n",
+ " 'clues': [('dignify', 'confer dignity or honor upon'),\n",
+ " ('ennoble', 'confer dignity or honor upon'),\n",
+ " ('entitle',\n",
+ " 'give a title to someone; make someone a member of the nobility'),\n",
+ " ('gentle',\n",
+ " 'give a title to someone; make someone a member of the nobility')]},\n",
+ " {'answer': 'enraptured',\n",
+ " 'hint': 'synonyms for enraptured',\n",
+ " 'clues': [('ravish', 'hold spellbound'),\n",
+ " ('transport', 'hold spellbound'),\n",
+ " ('enchant', 'hold spellbound'),\n",
+ " ('enthral', 'hold spellbound'),\n",
+ " ('enrapture', 'hold spellbound'),\n",
+ " ('delight', 'hold spellbound')]},\n",
+ " {'answer': 'entangled',\n",
+ " 'hint': 'synonyms for entangled',\n",
+ " 'clues': [('snarl', 'twist together or entwine into a confusing mass'),\n",
+ " ('tangle', 'twist together or entwine into a confusing mass'),\n",
+ " ('mire', 'entrap'),\n",
+ " ('mat', 'twist together or entwine into a confusing mass')]},\n",
+ " {'answer': 'entertained',\n",
+ " 'hint': 'synonyms for entertained',\n",
+ " 'clues': [('nurse', 'maintain (a theory, thoughts, or feelings)'),\n",
+ " ('hold', 'maintain (a theory, thoughts, or feelings)'),\n",
+ " ('entertain', 'take into consideration, have in view'),\n",
+ " ('think of', 'take into consideration, have in view'),\n",
+ " ('toy with', 'take into consideration, have in view'),\n",
+ " ('harbor', 'maintain (a theory, thoughts, or feelings)'),\n",
+ " ('flirt with', 'take into consideration, have in view'),\n",
+ " ('think about', 'take into consideration, have in view')]},\n",
+ " {'answer': 'entertaining',\n",
+ " 'hint': 'synonyms for entertaining',\n",
+ " 'clues': [('nurse', 'maintain (a theory, thoughts, or feelings)'),\n",
+ " ('hold', 'maintain (a theory, thoughts, or feelings)'),\n",
+ " ('entertain', 'take into consideration, have in view'),\n",
+ " ('think of', 'take into consideration, have in view'),\n",
+ " ('toy with', 'take into consideration, have in view'),\n",
+ " ('harbor', 'maintain (a theory, thoughts, or feelings)'),\n",
+ " ('flirt with', 'take into consideration, have in view'),\n",
+ " ('think about', 'take into consideration, have in view')]},\n",
+ " {'answer': 'enthralled',\n",
+ " 'hint': 'synonyms for enthralled',\n",
+ " 'clues': [('ravish', 'hold spellbound'),\n",
+ " ('transport', 'hold spellbound'),\n",
+ " ('enchant', 'hold spellbound'),\n",
+ " ('enthral', 'hold spellbound'),\n",
+ " ('enrapture', 'hold spellbound'),\n",
+ " ('delight', 'hold spellbound')]},\n",
+ " {'answer': 'enthralling',\n",
+ " 'hint': 'synonyms for enthralling',\n",
+ " 'clues': [('ravish', 'hold spellbound'),\n",
+ " ('transport', 'hold spellbound'),\n",
+ " ('enchant', 'hold spellbound'),\n",
+ " ('enthral', 'hold spellbound'),\n",
+ " ('enrapture', 'hold spellbound'),\n",
+ " ('delight', 'hold spellbound')]},\n",
+ " {'answer': 'entitled',\n",
+ " 'hint': 'synonyms for entitled',\n",
+ " 'clues': [('ennoble',\n",
+ " 'give a title to someone; make someone a member of the nobility'),\n",
+ " ('entitle',\n",
+ " 'give a title to someone; make someone a member of the nobility'),\n",
+ " ('title', 'give a title to'),\n",
+ " ('gentle',\n",
+ " 'give a title to someone; make someone a member of the nobility')]},\n",
+ " {'answer': 'entranced',\n",
+ " 'hint': 'synonyms for entranced',\n",
+ " 'clues': [('trance', 'attract; cause to be enamored'),\n",
+ " ('bewitch', 'attract; cause to be enamored'),\n",
+ " ('becharm', 'attract; cause to be enamored'),\n",
+ " ('enchant', 'attract; cause to be enamored'),\n",
+ " ('enamour', 'attract; cause to be enamored'),\n",
+ " ('fascinate', 'attract; cause to be enamored'),\n",
+ " ('charm', 'attract; cause to be enamored'),\n",
+ " ('beguile', 'attract; cause to be enamored'),\n",
+ " ('spellbind', 'put into a trance'),\n",
+ " ('capture', 'attract; cause to be enamored'),\n",
+ " ('catch', 'attract; cause to be enamored'),\n",
+ " ('captivate', 'attract; cause to be enamored')]},\n",
+ " {'answer': 'entrancing',\n",
+ " 'hint': 'synonyms for entrancing',\n",
+ " 'clues': [('trance', 'attract; cause to be enamored'),\n",
+ " ('bewitch', 'attract; cause to be enamored'),\n",
+ " ('becharm', 'attract; cause to be enamored'),\n",
+ " ('enchant', 'attract; cause to be enamored'),\n",
+ " ('enamour', 'attract; cause to be enamored'),\n",
+ " ('fascinate', 'attract; cause to be enamored'),\n",
+ " ('charm', 'attract; cause to be enamored'),\n",
+ " ('beguile', 'attract; cause to be enamored'),\n",
+ " ('spellbind', 'put into a trance'),\n",
+ " ('capture', 'attract; cause to be enamored'),\n",
+ " ('catch', 'attract; cause to be enamored'),\n",
+ " ('captivate', 'attract; cause to be enamored')]},\n",
+ " {'answer': 'entrenched',\n",
+ " 'hint': 'synonyms for entrenched',\n",
+ " 'clues': [('encroach', 'impinge or infringe upon'),\n",
+ " ('entrench', 'occupy a trench or secured area'),\n",
+ " ('impinge', 'impinge or infringe upon'),\n",
+ " ('dig in', 'occupy a trench or secured area')]},\n",
+ " {'answer': 'enveloping',\n",
+ " 'hint': 'synonyms for enveloping',\n",
+ " 'clues': [('enwrap',\n",
+ " 'enclose or enfold completely with or as if with a covering'),\n",
+ " ('enclose', 'enclose or enfold completely with or as if with a covering'),\n",
+ " ('enfold', 'enclose or enfold completely with or as if with a covering'),\n",
+ " ('wrap', 'enclose or enfold completely with or as if with a covering'),\n",
+ " ('envelop',\n",
+ " 'enclose or enfold completely with or as if with a covering')]},\n",
+ " {'answer': 'envisioned',\n",
+ " 'hint': 'synonyms for envisioned',\n",
+ " 'clues': [('fancy', \"imagine; conceive of; see in one's mind\"),\n",
+ " ('envision', 'picture to oneself; imagine possible'),\n",
+ " ('see', \"imagine; conceive of; see in one's mind\"),\n",
+ " ('image', \"imagine; conceive of; see in one's mind\"),\n",
+ " ('figure', \"imagine; conceive of; see in one's mind\"),\n",
+ " ('project', \"imagine; conceive of; see in one's mind\"),\n",
+ " ('visualize', \"imagine; conceive of; see in one's mind\"),\n",
+ " ('foresee', 'picture to oneself; imagine possible'),\n",
+ " ('picture', \"imagine; conceive of; see in one's mind\")]},\n",
+ " {'answer': 'enwrapped',\n",
+ " 'hint': 'synonyms for enwrapped',\n",
+ " 'clues': [('enwrap',\n",
+ " 'enclose or enfold completely with or as if with a covering'),\n",
+ " ('enclose', 'enclose or enfold completely with or as if with a covering'),\n",
+ " ('enfold', 'enclose or enfold completely with or as if with a covering'),\n",
+ " ('wrap', 'enclose or enfold completely with or as if with a covering'),\n",
+ " ('envelop',\n",
+ " 'enclose or enfold completely with or as if with a covering')]},\n",
+ " {'answer': 'equal',\n",
+ " 'hint': 'synonyms for equal',\n",
+ " 'clues': [('match', 'be equal to in quality or ability'),\n",
+ " ('be', 'be identical or equivalent to'),\n",
+ " ('touch', 'be equal to in quality or ability'),\n",
+ " ('equalise', 'make equal, uniform, corresponding, or matching'),\n",
+ " ('rival', 'be equal to in quality or ability'),\n",
+ " ('equate', 'make equal, uniform, corresponding, or matching')]},\n",
+ " {'answer': 'equipped',\n",
+ " 'hint': 'synonyms for equipped',\n",
+ " 'clues': [('outfit',\n",
+ " 'provide with (something) usually for a specific purpose'),\n",
+ " ('fit out', 'provide with (something) usually for a specific purpose'),\n",
+ " ('equip', 'provide with (something) usually for a specific purpose'),\n",
+ " ('fit', 'provide with (something) usually for a specific purpose')]},\n",
+ " {'answer': 'erect',\n",
+ " 'hint': 'synonyms for erect',\n",
+ " 'clues': [('raise', 'construct, build, or erect'),\n",
+ " ('set up', 'construct, build, or erect'),\n",
+ " ('rear', 'cause to rise up'),\n",
+ " ('put up', 'construct, build, or erect')]},\n",
+ " {'answer': 'eroded',\n",
+ " 'hint': 'synonyms for eroded',\n",
+ " 'clues': [('gnaw at', 'become ground down or deteriorate'),\n",
+ " ('wear away', 'become ground down or deteriorate'),\n",
+ " ('erode', 'remove soil or rock'),\n",
+ " ('fret', 'remove soil or rock'),\n",
+ " ('eat at', 'become ground down or deteriorate'),\n",
+ " ('gnaw', 'become ground down or deteriorate'),\n",
+ " ('eat away', 'remove soil or rock')]},\n",
+ " {'answer': 'erring',\n",
+ " 'hint': 'synonyms for erring',\n",
+ " 'clues': [('slip', 'to make a mistake or be incorrect'),\n",
+ " ('drift', 'wander from a direct course or at random'),\n",
+ " ('mistake', 'to make a mistake or be incorrect'),\n",
+ " ('err', 'wander from a direct course or at random'),\n",
+ " ('stray', 'wander from a direct course or at random')]},\n",
+ " {'answer': 'escaped',\n",
+ " 'hint': 'synonyms for escaped',\n",
+ " 'clues': [('get away', 'run away from confinement'),\n",
+ " ('escape', 'issue or leak, as from a small opening'),\n",
+ " ('hightail it', \"flee; take to one's heels; cut and run\"),\n",
+ " ('get out',\n",
+ " 'escape potentially unpleasant consequences; get away with a forbidden action'),\n",
+ " ('lam', \"flee; take to one's heels; cut and run\"),\n",
+ " ('scarper', \"flee; take to one's heels; cut and run\"),\n",
+ " ('break loose', 'run away from confinement'),\n",
+ " ('break away', \"flee; take to one's heels; cut and run\"),\n",
+ " ('miss', 'fail to experience'),\n",
+ " ('take to the woods', \"flee; take to one's heels; cut and run\"),\n",
+ " ('bunk', \"flee; take to one's heels; cut and run\"),\n",
+ " ('turn tail', \"flee; take to one's heels; cut and run\"),\n",
+ " ('get off',\n",
+ " 'escape potentially unpleasant consequences; get away with a forbidden action'),\n",
+ " ('elude', 'be incomprehensible to; escape understanding by'),\n",
+ " ('fly the coop', \"flee; take to one's heels; cut and run\"),\n",
+ " ('get by',\n",
+ " 'escape potentially unpleasant consequences; get away with a forbidden action'),\n",
+ " ('run', \"flee; take to one's heels; cut and run\"),\n",
+ " ('head for the hills', \"flee; take to one's heels; cut and run\"),\n",
+ " ('scat', \"flee; take to one's heels; cut and run\"),\n",
+ " ('run away', \"flee; take to one's heels; cut and run\")]},\n",
+ " {'answer': 'established',\n",
+ " 'hint': 'synonyms for established',\n",
+ " 'clues': [('shew',\n",
+ " 'establish the validity of something, as by an example, explanation or experiment'),\n",
+ " ('set up', 'place'),\n",
+ " ('base', 'use as a basis for; found on'),\n",
+ " ('make', 'institute, enact, or establish'),\n",
+ " ('give', 'bring about'),\n",
+ " ('found', 'set up or lay the groundwork for'),\n",
+ " ('establish', 'build or establish something abstract'),\n",
+ " ('prove',\n",
+ " 'establish the validity of something, as by an example, explanation or experiment'),\n",
+ " ('build', 'build or establish something abstract'),\n",
+ " ('launch', 'set up or found'),\n",
+ " ('install', 'place'),\n",
+ " ('show',\n",
+ " 'establish the validity of something, as by an example, explanation or experiment'),\n",
+ " ('institute', 'set up or lay the groundwork for'),\n",
+ " ('ground', 'use as a basis for; found on'),\n",
+ " ('plant', 'set up or lay the groundwork for'),\n",
+ " ('constitute', 'set up or lay the groundwork for'),\n",
+ " ('lay down', 'institute, enact, or establish'),\n",
+ " ('demonstrate',\n",
+ " 'establish the validity of something, as by an example, explanation or experiment')]},\n",
+ " {'answer': 'esteemed',\n",
+ " 'hint': 'synonyms for esteemed',\n",
+ " 'clues': [('prize', 'regard highly; think much of'),\n",
+ " ('prise', 'regard highly; think much of'),\n",
+ " ('esteem', 'look on as or consider'),\n",
+ " ('look upon', 'look on as or consider'),\n",
+ " ('think of', 'look on as or consider'),\n",
+ " ('respect', 'regard highly; think much of'),\n",
+ " ('repute', 'look on as or consider'),\n",
+ " ('take to be', 'look on as or consider'),\n",
+ " ('value', 'regard highly; think much of'),\n",
+ " ('regard as', 'look on as or consider')]},\n",
+ " {'answer': 'estranged',\n",
+ " 'hint': 'synonyms for estranged',\n",
+ " 'clues': [('alienate',\n",
+ " 'arouse hostility or indifference in where there had formerly been love, affection, or friendliness'),\n",
+ " ('estrange',\n",
+ " 'arouse hostility or indifference in where there had formerly been love, affection, or friendliness'),\n",
+ " ('disaffect',\n",
+ " 'arouse hostility or indifference in where there had formerly been love, affection, or friendliness'),\n",
+ " ('alien',\n",
+ " 'arouse hostility or indifference in where there had formerly been love, affection, or friendliness')]},\n",
+ " {'answer': 'estranging',\n",
+ " 'hint': 'synonyms for estranging',\n",
+ " 'clues': [('alienate',\n",
+ " 'arouse hostility or indifference in where there had formerly been love, affection, or friendliness'),\n",
+ " ('estrange',\n",
+ " 'arouse hostility or indifference in where there had formerly been love, affection, or friendliness'),\n",
+ " ('disaffect',\n",
+ " 'arouse hostility or indifference in where there had formerly been love, affection, or friendliness'),\n",
+ " ('alien',\n",
+ " 'arouse hostility or indifference in where there had formerly been love, affection, or friendliness')]},\n",
+ " {'answer': 'evaporated',\n",
+ " 'hint': 'synonyms for evaporated',\n",
+ " 'clues': [('evaporate', 'become less intense and fade away gradually'),\n",
+ " ('vaporise', 'cause to change into a vapor'),\n",
+ " ('disappear', 'become less intense and fade away gradually'),\n",
+ " ('melt', 'become less intense and fade away gradually')]},\n",
+ " {'answer': 'evidenced',\n",
+ " 'hint': 'synonyms for evidenced',\n",
+ " 'clues': [('tell', 'give evidence'),\n",
+ " ('prove', 'provide evidence for'),\n",
+ " ('certify',\n",
+ " \"provide evidence for; stand as proof of; show by one's behavior, attitude, or external attributes\"),\n",
+ " ('testify', 'provide evidence for'),\n",
+ " ('manifest',\n",
+ " \"provide evidence for; stand as proof of; show by one's behavior, attitude, or external attributes\"),\n",
+ " ('show', 'provide evidence for'),\n",
+ " ('evidence', 'provide evidence for'),\n",
+ " ('demonstrate',\n",
+ " \"provide evidence for; stand as proof of; show by one's behavior, attitude, or external attributes\"),\n",
+ " ('bear witness', 'provide evidence for'),\n",
+ " ('attest',\n",
+ " \"provide evidence for; stand as proof of; show by one's behavior, attitude, or external attributes\")]},\n",
+ " {'answer': 'evoked',\n",
+ " 'hint': 'synonyms for evoked',\n",
+ " 'clues': [('draw out', 'deduce (a principle) or construe (a meaning)'),\n",
+ " ('raise', 'call forth (emotions, feelings, and responses)'),\n",
+ " ('elicit', 'deduce (a principle) or construe (a meaning)'),\n",
+ " ('arouse',\n",
+ " 'summon into action or bring into existence, often as if by magic'),\n",
+ " ('evoke', 'call forth (emotions, feelings, and responses)'),\n",
+ " ('stir',\n",
+ " 'summon into action or bring into existence, often as if by magic'),\n",
+ " ('fire', 'call forth (emotions, feelings, and responses)'),\n",
+ " ('educe', 'deduce (a principle) or construe (a meaning)'),\n",
+ " ('extract', 'deduce (a principle) or construe (a meaning)'),\n",
+ " ('call forth', 'evoke or provoke to appear or occur'),\n",
+ " ('conjure',\n",
+ " 'summon into action or bring into existence, often as if by magic'),\n",
+ " ('put forward',\n",
+ " 'summon into action or bring into existence, often as if by magic'),\n",
+ " ('invoke',\n",
+ " 'summon into action or bring into existence, often as if by magic'),\n",
+ " ('bring up',\n",
+ " 'summon into action or bring into existence, often as if by magic'),\n",
+ " ('conjure up',\n",
+ " 'summon into action or bring into existence, often as if by magic'),\n",
+ " ('paint a picture', 'call to mind'),\n",
+ " ('kindle', 'call forth (emotions, feelings, and responses)'),\n",
+ " ('provoke', 'call forth (emotions, feelings, and responses)'),\n",
+ " ('kick up', 'evoke or provoke to appear or occur'),\n",
+ " ('call down',\n",
+ " 'summon into action or bring into existence, often as if by magic'),\n",
+ " ('suggest', 'call to mind')]},\n",
+ " {'answer': 'exacerbating',\n",
+ " 'hint': 'synonyms for exacerbating',\n",
+ " 'clues': [('aggravate', 'exasperate or irritate'),\n",
+ " ('exacerbate', 'exasperate or irritate'),\n",
+ " ('exasperate', 'exasperate or irritate'),\n",
+ " ('worsen', 'make worse')]},\n",
+ " {'answer': 'exacting',\n",
+ " 'hint': 'synonyms for exacting',\n",
+ " 'clues': [('demand', 'claim as due or just'),\n",
+ " ('claim',\n",
+ " 'take as an undesirable consequence of some event or state of affairs'),\n",
+ " ('exact',\n",
+ " 'take as an undesirable consequence of some event or state of affairs'),\n",
+ " ('take',\n",
+ " 'take as an undesirable consequence of some event or state of affairs')]},\n",
+ " {'answer': 'exaggerated',\n",
+ " 'hint': 'synonyms for exaggerated',\n",
+ " 'clues': [('hyperbolise', 'to enlarge beyond bounds or the truth'),\n",
+ " ('amplify', 'to enlarge beyond bounds or the truth'),\n",
+ " ('overdraw', 'to enlarge beyond bounds or the truth'),\n",
+ " ('exaggerate', 'do something to an excessive degree'),\n",
+ " ('overdo', 'do something to an excessive degree'),\n",
+ " ('magnify', 'to enlarge beyond bounds or the truth'),\n",
+ " ('overstate', 'to enlarge beyond bounds or the truth')]},\n",
+ " {'answer': 'exalted',\n",
+ " 'hint': 'synonyms for exalted',\n",
+ " 'clues': [('laud', 'praise, glorify, or honor'),\n",
+ " ('glorify', 'praise, glorify, or honor'),\n",
+ " ('beatify', 'fill with sublime emotion'),\n",
+ " ('invigorate', 'heighten or intensify'),\n",
+ " ('exalt', 'praise, glorify, or honor'),\n",
+ " ('extol', 'praise, glorify, or honor'),\n",
+ " ('enliven', 'heighten or intensify'),\n",
+ " ('thrill', 'fill with sublime emotion'),\n",
+ " ('tickle pink', 'fill with sublime emotion'),\n",
+ " ('exhilarate', 'fill with sublime emotion'),\n",
+ " ('proclaim', 'praise, glorify, or honor'),\n",
+ " ('inspire', 'heighten or intensify'),\n",
+ " ('inebriate', 'fill with sublime emotion'),\n",
+ " ('animate', 'heighten or intensify')]},\n",
+ " {'answer': 'exalting',\n",
+ " 'hint': 'synonyms for exalting',\n",
+ " 'clues': [('laud', 'praise, glorify, or honor'),\n",
+ " ('glorify', 'praise, glorify, or honor'),\n",
+ " ('beatify', 'fill with sublime emotion'),\n",
+ " ('invigorate', 'heighten or intensify'),\n",
+ " ('exalt', 'praise, glorify, or honor'),\n",
+ " ('extol', 'praise, glorify, or honor'),\n",
+ " ('enliven', 'heighten or intensify'),\n",
+ " ('thrill', 'fill with sublime emotion'),\n",
+ " ('tickle pink', 'fill with sublime emotion'),\n",
+ " ('exhilarate', 'fill with sublime emotion'),\n",
+ " ('proclaim', 'praise, glorify, or honor'),\n",
+ " ('inspire', 'heighten or intensify'),\n",
+ " ('inebriate', 'fill with sublime emotion'),\n",
+ " ('animate', 'heighten or intensify')]},\n",
+ " {'answer': 'exasperated',\n",
+ " 'hint': 'synonyms for exasperated',\n",
+ " 'clues': [('aggravate', 'exasperate or irritate'),\n",
+ " ('worsen', 'make worse'),\n",
+ " ('incense', 'make furious'),\n",
+ " ('exacerbate', 'exasperate or irritate'),\n",
+ " ('exasperate', 'exasperate or irritate'),\n",
+ " ('infuriate', 'make furious')]},\n",
+ " {'answer': 'exasperating',\n",
+ " 'hint': 'synonyms for exasperating',\n",
+ " 'clues': [('aggravate', 'exasperate or irritate'),\n",
+ " ('worsen', 'make worse'),\n",
+ " ('incense', 'make furious'),\n",
+ " ('exacerbate', 'exasperate or irritate'),\n",
+ " ('exasperate', 'exasperate or irritate'),\n",
+ " ('infuriate', 'make furious')]},\n",
+ " {'answer': 'exceeding',\n",
+ " 'hint': 'synonyms for exceeding',\n",
+ " 'clues': [('outstrip', 'be or do something to a greater degree'),\n",
+ " ('transcend', 'be superior or better than some standard'),\n",
+ " ('surpass', 'be or do something to a greater degree'),\n",
+ " ('overstep', 'be superior or better than some standard'),\n",
+ " ('exceed', 'be greater in scope or size than some standard'),\n",
+ " ('pass', 'be superior or better than some standard'),\n",
+ " ('outperform', 'be or do something to a greater degree'),\n",
+ " ('outmatch', 'be or do something to a greater degree'),\n",
+ " ('outgo', 'be or do something to a greater degree'),\n",
+ " ('outdo', 'be or do something to a greater degree'),\n",
+ " ('surmount', 'be or do something to a greater degree'),\n",
+ " ('top', 'be superior or better than some standard'),\n",
+ " ('go past', 'be superior or better than some standard')]},\n",
+ " {'answer': 'exchanged',\n",
+ " 'hint': 'synonyms for exchanged',\n",
+ " 'clues': [('substitute',\n",
+ " 'put in the place of another; switch seemingly equivalent items'),\n",
+ " ('commute',\n",
+ " 'exchange or replace with another, usually of the same kind or category'),\n",
+ " ('convert',\n",
+ " 'exchange or replace with another, usually of the same kind or category'),\n",
+ " ('exchange',\n",
+ " 'hand over one and receive another, approximately equivalent'),\n",
+ " ('switch', 'change over, change around, as to a new order or sequence'),\n",
+ " ('interchange',\n",
+ " 'put in the place of another; switch seemingly equivalent items'),\n",
+ " ('replace',\n",
+ " 'put in the place of another; switch seemingly equivalent items'),\n",
+ " ('switch over',\n",
+ " 'change over, change around, as to a new order or sequence')]},\n",
+ " {'answer': 'excited',\n",
+ " 'hint': 'synonyms for excited',\n",
+ " 'clues': [('stimulate', 'stir feelings in'),\n",
+ " ('excite', 'stir feelings in'),\n",
+ " ('shake', 'stir the feelings, emotions, or peace of'),\n",
+ " ('shake up', 'stir the feelings, emotions, or peace of'),\n",
+ " ('charge', 'cause to be agitated, excited, or roused'),\n",
+ " ('stir', 'stir the feelings, emotions, or peace of'),\n",
+ " ('wind up', 'stimulate sexually'),\n",
+ " ('turn on', 'cause to be agitated, excited, or roused'),\n",
+ " ('charge up', 'cause to be agitated, excited, or roused'),\n",
+ " ('rouse', 'cause to be agitated, excited, or roused'),\n",
+ " ('agitate', 'cause to be agitated, excited, or roused'),\n",
+ " ('energise', 'raise to a higher energy level'),\n",
+ " ('commove', 'cause to be agitated, excited, or roused'),\n",
+ " ('sex', 'stimulate sexually')]},\n",
+ " {'answer': 'exciting',\n",
+ " 'hint': 'synonyms for exciting',\n",
+ " 'clues': [('stimulate', 'stir feelings in'),\n",
+ " ('excite', 'stir feelings in'),\n",
+ " ('shake', 'stir the feelings, emotions, or peace of'),\n",
+ " ('shake up', 'stir the feelings, emotions, or peace of'),\n",
+ " ('charge', 'cause to be agitated, excited, or roused'),\n",
+ " ('stir', 'stir the feelings, emotions, or peace of'),\n",
+ " ('wind up', 'stimulate sexually'),\n",
+ " ('turn on', 'cause to be agitated, excited, or roused'),\n",
+ " ('charge up', 'cause to be agitated, excited, or roused'),\n",
+ " ('rouse', 'cause to be agitated, excited, or roused'),\n",
+ " ('agitate', 'cause to be agitated, excited, or roused'),\n",
+ " ('energise', 'raise to a higher energy level'),\n",
+ " ('commove', 'cause to be agitated, excited, or roused'),\n",
+ " ('sex', 'stimulate sexually')]},\n",
+ " {'answer': 'excruciating',\n",
+ " 'hint': 'synonyms for excruciating',\n",
+ " 'clues': [('excruciate', 'subject to torture'),\n",
+ " ('torment', 'torment emotionally or mentally'),\n",
+ " ('rack', 'torment emotionally or mentally'),\n",
+ " ('torture', 'subject to torture')]},\n",
+ " {'answer': 'exculpated',\n",
+ " 'hint': 'synonyms for exculpated',\n",
+ " 'clues': [('assoil', 'pronounce not guilty of criminal charges'),\n",
+ " ('exculpate', 'pronounce not guilty of criminal charges'),\n",
+ " ('acquit', 'pronounce not guilty of criminal charges'),\n",
+ " ('clear', 'pronounce not guilty of criminal charges'),\n",
+ " ('discharge', 'pronounce not guilty of criminal charges'),\n",
+ " ('exonerate', 'pronounce not guilty of criminal charges')]},\n",
+ " {'answer': 'excused',\n",
+ " 'hint': 'synonyms for excused',\n",
+ " 'clues': [('rationalise',\n",
+ " 'defend, explain, clear away, or make excuses for by reasoning'),\n",
+ " ('excuse', 'grant exemption or release to'),\n",
+ " ('exempt', 'grant exemption or release to'),\n",
+ " ('apologize',\n",
+ " 'defend, explain, clear away, or make excuses for by reasoning'),\n",
+ " ('justify',\n",
+ " 'defend, explain, clear away, or make excuses for by reasoning'),\n",
+ " ('beg off', 'ask for permission to be released from an engagement'),\n",
+ " ('condone', 'excuse, overlook, or make allowances for; be lenient with'),\n",
+ " ('pardon', 'accept an excuse for'),\n",
+ " ('relieve', 'grant exemption or release to'),\n",
+ " ('explain', 'serve as a reason or cause or justification of'),\n",
+ " ('let off', 'grant exemption or release to')]},\n",
+ " {'answer': 'executed',\n",
+ " 'hint': 'synonyms for executed',\n",
+ " 'clues': [('execute', 'carry out or perform an action'),\n",
+ " ('perform', 'carry out or perform an action'),\n",
+ " ('fulfil', 'put in effect'),\n",
+ " ('run', 'carry out a process or program, as on a computer or a machine'),\n",
+ " ('do', 'carry out or perform an action'),\n",
+ " ('carry through', 'put in effect'),\n",
+ " ('accomplish', 'put in effect'),\n",
+ " ('put to death', 'kill as a means of socially sanctioned punishment'),\n",
+ " ('action', 'put in effect'),\n",
+ " ('carry out', 'put in effect')]},\n",
+ " {'answer': 'exemplifying',\n",
+ " 'hint': 'synonyms for exemplifying',\n",
+ " 'clues': [('represent', 'be characteristic of'),\n",
+ " ('instance', 'clarify by giving an example of'),\n",
+ " ('exemplify', 'clarify by giving an example of'),\n",
+ " ('illustrate', 'clarify by giving an example of')]},\n",
+ " {'answer': 'exempt',\n",
+ " 'hint': 'synonyms for exempt',\n",
+ " 'clues': [('free',\n",
+ " 'grant relief or an exemption from a rule or requirement to'),\n",
+ " ('relieve', 'grant relief or an exemption from a rule or requirement to'),\n",
+ " ('excuse', 'grant exemption or release to'),\n",
+ " ('let off', 'grant exemption or release to')]},\n",
+ " {'answer': 'exhausted',\n",
+ " 'hint': 'synonyms for exhausted',\n",
+ " 'clues': [('tucker out', 'wear out completely'),\n",
+ " ('exhaust', 'wear out completely'),\n",
+ " ('consume', 'use up (resources or materials)'),\n",
+ " ('sap', 'deplete'),\n",
+ " ('wash up', 'wear out completely'),\n",
+ " ('eat up', 'use up (resources or materials)'),\n",
+ " ('use up', 'use up (resources or materials)'),\n",
+ " ('run down', 'deplete'),\n",
+ " ('expel', 'eliminate (a substance)'),\n",
+ " ('beat', 'wear out completely'),\n",
+ " ('play out', 'deplete'),\n",
+ " ('wipe out', 'use up (resources or materials)'),\n",
+ " ('release', 'eliminate (a substance)'),\n",
+ " ('tucker', 'wear out completely'),\n",
+ " ('deplete', 'use up (resources or materials)'),\n",
+ " ('run through', 'use up (resources or materials)'),\n",
+ " ('tire', 'deplete'),\n",
+ " ('discharge', 'eliminate (a substance)'),\n",
+ " ('eject', 'eliminate (a substance)')]},\n",
+ " {'answer': 'exhausting',\n",
+ " 'hint': 'synonyms for exhausting',\n",
+ " 'clues': [('tucker out', 'wear out completely'),\n",
+ " ('exhaust', 'wear out completely'),\n",
+ " ('consume', 'use up (resources or materials)'),\n",
+ " ('sap', 'deplete'),\n",
+ " ('wash up', 'wear out completely'),\n",
+ " ('eat up', 'use up (resources or materials)'),\n",
+ " ('use up', 'use up (resources or materials)'),\n",
+ " ('run down', 'deplete'),\n",
+ " ('expel', 'eliminate (a substance)'),\n",
+ " ('beat', 'wear out completely'),\n",
+ " ('play out', 'deplete'),\n",
+ " ('wipe out', 'use up (resources or materials)'),\n",
+ " ('release', 'eliminate (a substance)'),\n",
+ " ('tucker', 'wear out completely'),\n",
+ " ('deplete', 'use up (resources or materials)'),\n",
+ " ('run through', 'use up (resources or materials)'),\n",
+ " ('tire', 'deplete'),\n",
+ " ('discharge', 'eliminate (a substance)'),\n",
+ " ('eject', 'eliminate (a substance)')]},\n",
+ " {'answer': 'exhilarated',\n",
+ " 'hint': 'synonyms for exhilarated',\n",
+ " 'clues': [('exalt', 'fill with sublime emotion'),\n",
+ " ('beatify', 'fill with sublime emotion'),\n",
+ " ('thrill', 'fill with sublime emotion'),\n",
+ " ('tickle pink', 'fill with sublime emotion'),\n",
+ " ('exhilarate', 'fill with sublime emotion'),\n",
+ " ('inebriate', 'fill with sublime emotion')]},\n",
+ " {'answer': 'exhilarating',\n",
+ " 'hint': 'synonyms for exhilarating',\n",
+ " 'clues': [('exalt', 'fill with sublime emotion'),\n",
+ " ('beatify', 'fill with sublime emotion'),\n",
+ " ('thrill', 'fill with sublime emotion'),\n",
+ " ('tickle pink', 'fill with sublime emotion'),\n",
+ " ('exhilarate', 'fill with sublime emotion'),\n",
+ " ('inebriate', 'fill with sublime emotion')]},\n",
+ " {'answer': 'existing',\n",
+ " 'hint': 'synonyms for existing',\n",
+ " 'clues': [('subsist', 'support oneself'),\n",
+ " ('survive', 'support oneself'),\n",
+ " ('exist', 'support oneself'),\n",
+ " ('be', 'have an existence, be extant'),\n",
+ " ('live', 'support oneself')]},\n",
+ " {'answer': 'exonerated',\n",
+ " 'hint': 'synonyms for exonerated',\n",
+ " 'clues': [('assoil', 'pronounce not guilty of criminal charges'),\n",
+ " ('exculpate', 'pronounce not guilty of criminal charges'),\n",
+ " ('acquit', 'pronounce not guilty of criminal charges'),\n",
+ " ('clear', 'pronounce not guilty of criminal charges'),\n",
+ " ('discharge', 'pronounce not guilty of criminal charges'),\n",
+ " ('exonerate', 'pronounce not guilty of criminal charges')]},\n",
+ " {'answer': 'expanded',\n",
+ " 'hint': 'synonyms for expanded',\n",
+ " 'clues': [('spread out', 'extend in one or more directions'),\n",
+ " ('blow up', 'exaggerate or make bigger'),\n",
+ " ('elaborate',\n",
+ " 'add details, as to an account or idea; clarify the meaning of and discourse in a learned way, usually in writing'),\n",
+ " ('enlarge',\n",
+ " 'add details, as to an account or idea; clarify the meaning of and discourse in a learned way, usually in writing'),\n",
+ " ('expand', 'make bigger or wider in size, volume, or quantity'),\n",
+ " ('exposit',\n",
+ " 'add details, as to an account or idea; clarify the meaning of and discourse in a learned way, usually in writing'),\n",
+ " ('expound',\n",
+ " 'add details, as to an account or idea; clarify the meaning of and discourse in a learned way, usually in writing'),\n",
+ " ('dilate',\n",
+ " 'add details, as to an account or idea; clarify the meaning of and discourse in a learned way, usually in writing'),\n",
+ " ('amplify', 'exaggerate or make bigger'),\n",
+ " ('boom', 'grow vigorously'),\n",
+ " ('flourish', 'grow vigorously'),\n",
+ " ('inflate', 'exaggerate or make bigger'),\n",
+ " ('expatiate',\n",
+ " 'add details, as to an account or idea; clarify the meaning of and discourse in a learned way, usually in writing'),\n",
+ " ('extend', 'expand the influence of'),\n",
+ " ('lucubrate',\n",
+ " 'add details, as to an account or idea; clarify the meaning of and discourse in a learned way, usually in writing'),\n",
+ " ('flesh out',\n",
+ " 'add details, as to an account or idea; clarify the meaning of and discourse in a learned way, usually in writing'),\n",
+ " ('thrive', 'grow vigorously')]},\n",
+ " {'answer': 'expected',\n",
+ " 'hint': 'synonyms for expected',\n",
+ " 'clues': [('expect', 'consider obligatory; request and expect'),\n",
+ " ('have a bun in the oven', 'be pregnant with'),\n",
+ " ('ask', 'consider obligatory; request and expect'),\n",
+ " ('await', 'look forward to the probable occurrence of'),\n",
+ " ('gestate', 'be pregnant with'),\n",
+ " ('require', 'consider obligatory; request and expect'),\n",
+ " ('look', 'look forward to the probable occurrence of'),\n",
+ " ('bear', 'be pregnant with'),\n",
+ " ('carry', 'be pregnant with'),\n",
+ " ('anticipate', 'regard something as probable or likely')]},\n",
+ " {'answer': 'experienced',\n",
+ " 'hint': 'synonyms for experienced',\n",
+ " 'clues': [('experience',\n",
+ " 'go through (mental or physical states or experiences)'),\n",
+ " ('get', 'go through (mental or physical states or experiences)'),\n",
+ " ('live',\n",
+ " 'have firsthand knowledge of states, situations, emotions, or sensations'),\n",
+ " ('have', 'go through (mental or physical states or experiences)'),\n",
+ " ('go through', 'go or live through'),\n",
+ " ('know',\n",
+ " 'have firsthand knowledge of states, situations, emotions, or sensations'),\n",
+ " ('receive', 'go through (mental or physical states or experiences)'),\n",
+ " ('see', 'go or live through'),\n",
+ " ('feel',\n",
+ " 'undergo an emotional sensation or be in a particular state of mind')]},\n",
+ " {'answer': 'expired',\n",
+ " 'hint': 'synonyms for expired',\n",
+ " 'clues': [('drop dead',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('decease',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('exhale', 'expel air'),\n",
+ " ('give-up the ghost',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " (\"cash in one's chips\",\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('go',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('choke',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('perish',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('snuff it',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('kick the bucket',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('buy the farm',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('pass',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('exit',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('expire',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('pass away',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('die',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('breathe out', 'expel air'),\n",
+ " ('run out', 'lose validity'),\n",
+ " ('conk',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('croak',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('pop off',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life')]},\n",
+ " {'answer': 'exploded',\n",
+ " 'hint': 'synonyms for exploded',\n",
+ " 'clues': [('set off', 'cause to burst with a violent release of energy'),\n",
+ " ('explode',\n",
+ " 'cause to burst as a result of air pressure; of stop consonants like /p/, /t/, and /k/'),\n",
+ " ('detonate',\n",
+ " 'burst and release energy as through a violent chemical or physical reaction'),\n",
+ " ('blow up', 'cause to burst with a violent release of energy'),\n",
+ " ('burst', 'burst outward, usually with noise'),\n",
+ " ('irrupt', 'increase rapidly and in an uncontrolled manner'),\n",
+ " ('break loose', 'be unleashed; emerge with violence or noise'),\n",
+ " ('burst forth', 'be unleashed; emerge with violence or noise')]},\n",
+ " {'answer': 'exploited',\n",
+ " 'hint': 'synonyms for exploited',\n",
+ " 'clues': [('exploit', \"use or manipulate to one's advantage\"),\n",
+ " ('overwork', 'work excessively hard'),\n",
+ " ('work', \"use or manipulate to one's advantage\"),\n",
+ " ('tap', 'draw from; make good use of')]},\n",
+ " {'answer': 'exposed',\n",
+ " 'hint': 'synonyms for exposed',\n",
+ " 'clues': [('expose', 'abandon by leaving out in the open air'),\n",
+ " ('unwrap',\n",
+ " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n",
+ " ('peril', 'put in a dangerous, disadvantageous, or difficult position'),\n",
+ " ('display', 'to show, make visible or apparent'),\n",
+ " ('debunk',\n",
+ " 'expose while ridiculing; especially of pretentious or false claims and ideas'),\n",
+ " ('uncover', \"remove all or part of one's clothes to show one's body\"),\n",
+ " ('let out',\n",
+ " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n",
+ " ('queer', 'put in a dangerous, disadvantageous, or difficult position'),\n",
+ " ('break',\n",
+ " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n",
+ " ('endanger',\n",
+ " 'put in a dangerous, disadvantageous, or difficult position'),\n",
+ " ('discover',\n",
+ " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n",
+ " ('divulge',\n",
+ " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n",
+ " ('give away',\n",
+ " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n",
+ " ('let on',\n",
+ " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n",
+ " ('exhibit', 'to show, make visible or apparent'),\n",
+ " ('disclose',\n",
+ " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n",
+ " ('bring out',\n",
+ " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n",
+ " ('scupper', 'put in a dangerous, disadvantageous, or difficult position'),\n",
+ " ('reveal',\n",
+ " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret')]},\n",
+ " {'answer': 'express',\n",
+ " 'hint': 'synonyms for express',\n",
+ " 'clues': [('convey', 'serve as a means for expressing something'),\n",
+ " ('extract', 'obtain from a substance, as by mechanical action'),\n",
+ " ('press out', 'obtain from a substance, as by mechanical action'),\n",
+ " ('show', 'give expression to'),\n",
+ " ('carry', 'serve as a means for expressing something'),\n",
+ " ('verbalize',\n",
+ " 'articulate; either verbally or with a cry, shout, or noise'),\n",
+ " ('state', 'indicate through a symbol, formula, etc.'),\n",
+ " ('give tongue to',\n",
+ " 'articulate; either verbally or with a cry, shout, or noise'),\n",
+ " ('evince', 'give expression to'),\n",
+ " ('utter', 'articulate; either verbally or with a cry, shout, or noise')]},\n",
+ " {'answer': 'expressed',\n",
+ " 'hint': 'synonyms for expressed',\n",
+ " 'clues': [('utter',\n",
+ " 'articulate; either verbally or with a cry, shout, or noise'),\n",
+ " ('express', 'serve as a means for expressing something'),\n",
+ " ('convey', 'serve as a means for expressing something'),\n",
+ " ('extract', 'obtain from a substance, as by mechanical action'),\n",
+ " ('press out', 'obtain from a substance, as by mechanical action'),\n",
+ " ('show', 'give expression to'),\n",
+ " ('carry', 'serve as a means for expressing something'),\n",
+ " ('verbalize',\n",
+ " 'articulate; either verbally or with a cry, shout, or noise'),\n",
+ " ('state', 'indicate through a symbol, formula, etc.'),\n",
+ " ('give tongue to',\n",
+ " 'articulate; either verbally or with a cry, shout, or noise'),\n",
+ " ('evince', 'give expression to')]},\n",
+ " {'answer': 'expurgated',\n",
+ " 'hint': 'synonyms for expurgated',\n",
+ " 'clues': [('castrate',\n",
+ " 'edit by omitting or modifying parts considered indelicate'),\n",
+ " ('bowdlerise',\n",
+ " 'edit by omitting or modifying parts considered indelicate'),\n",
+ " ('shorten', 'edit by omitting or modifying parts considered indelicate'),\n",
+ " ('expurgate',\n",
+ " 'edit by omitting or modifying parts considered indelicate')]},\n",
+ " {'answer': 'extended',\n",
+ " 'hint': 'synonyms for extended',\n",
+ " 'clues': [('prolong', 'lengthen in time; cause to be or last longer'),\n",
+ " ('extend', 'reach outward in space'),\n",
+ " ('stretch', 'extend or stretch out to a greater or the full length'),\n",
+ " ('stretch out', 'thrust or extend out'),\n",
+ " ('hold out', 'thrust or extend out'),\n",
+ " ('expand', 'expand the influence of'),\n",
+ " ('poke out', 'reach outward in space'),\n",
+ " ('broaden', 'extend in scope or range or area'),\n",
+ " ('run',\n",
+ " 'stretch out over a distance, space, time, or scope; run or extend between two points or beyond a certain point'),\n",
+ " ('continue', 'span an interval of distance, space or time'),\n",
+ " ('unfold', 'extend or stretch out to a greater or the full length'),\n",
+ " ('offer', 'make available; provide'),\n",
+ " ('carry', 'continue or extend'),\n",
+ " ('stretch forth', 'thrust or extend out'),\n",
+ " ('widen', 'extend in scope or range or area'),\n",
+ " ('lead',\n",
+ " 'stretch out over a distance, space, time, or scope; run or extend between two points or beyond a certain point'),\n",
+ " ('protract', 'lengthen in time; cause to be or last longer'),\n",
+ " ('pass',\n",
+ " 'stretch out over a distance, space, time, or scope; run or extend between two points or beyond a certain point'),\n",
+ " ('gallop', 'cause to move at full gallop'),\n",
+ " ('reach out', 'reach outward in space'),\n",
+ " ('draw out', 'lengthen in time; cause to be or last longer'),\n",
+ " ('strain', 'use to the utmost; exert vigorously or to full capacity'),\n",
+ " ('exsert', 'thrust or extend out'),\n",
+ " ('put out', 'thrust or extend out'),\n",
+ " ('cover', 'span an interval of distance, space or time'),\n",
+ " ('go',\n",
+ " 'stretch out over a distance, space, time, or scope; run or extend between two points or beyond a certain point')]},\n",
+ " {'answer': 'exterminated',\n",
+ " 'hint': 'synonyms for exterminated',\n",
+ " 'clues': [('extirpate', 'destroy completely, as if down to the roots'),\n",
+ " ('eradicate', 'destroy completely, as if down to the roots'),\n",
+ " ('root out', 'destroy completely, as if down to the roots'),\n",
+ " ('uproot', 'destroy completely, as if down to the roots'),\n",
+ " ('exterminate', 'destroy completely, as if down to the roots'),\n",
+ " ('kill off', 'kill en masse; kill on a large scale; kill many')]},\n",
+ " {'answer': 'extinguished',\n",
+ " 'hint': 'synonyms for extinguished',\n",
+ " 'clues': [('quench', 'put out, as of fires, flames, or lights'),\n",
+ " ('do away with', 'terminate, end, or take out'),\n",
+ " ('decimate', 'kill in large numbers'),\n",
+ " ('wipe out', 'kill in large numbers'),\n",
+ " ('stub out', 'extinguish by crushing'),\n",
+ " ('eradicate', 'kill in large numbers'),\n",
+ " ('eliminate', 'kill in large numbers'),\n",
+ " ('extinguish', 'put out, as of fires, flames, or lights'),\n",
+ " ('snuff out', 'put an end to; kill'),\n",
+ " ('annihilate', 'kill in large numbers'),\n",
+ " ('carry off', 'kill in large numbers'),\n",
+ " ('get rid of', 'terminate, end, or take out'),\n",
+ " ('crush out', 'extinguish by crushing'),\n",
+ " ('press out', 'extinguish by crushing'),\n",
+ " ('blow out', 'put out, as of fires, flames, or lights')]},\n",
+ " {'answer': 'exulting',\n",
+ " 'hint': 'synonyms for exulting',\n",
+ " 'clues': [('rejoice', 'to express great joy'),\n",
+ " ('exult', 'to express great joy'),\n",
+ " ('triumph', 'to express great joy'),\n",
+ " ('jump for joy', 'feel extreme happiness or elation'),\n",
+ " ('exuberate', 'to express great joy'),\n",
+ " ('be on cloud nine', 'feel extreme happiness or elation'),\n",
+ " ('jubilate', 'to express great joy'),\n",
+ " ('walk on air', 'feel extreme happiness or elation')]},\n",
+ " {'answer': 'fabricated',\n",
+ " 'hint': 'synonyms for fabricated',\n",
+ " 'clues': [('manufacture', 'make up something artificial or untrue'),\n",
+ " ('cook up', 'make up something artificial or untrue'),\n",
+ " ('make up', 'make up something artificial or untrue'),\n",
+ " ('fabricate',\n",
+ " 'put together out of artificial or natural components or parts; ; ; He manufactured a popular cereal\"'),\n",
+ " ('construct',\n",
+ " 'put together out of artificial or natural components or parts; ; ; He manufactured a popular cereal\"'),\n",
+ " ('invent', 'make up something artificial or untrue')]},\n",
+ " {'answer': 'faced',\n",
+ " 'hint': 'synonyms for faced',\n",
+ " 'clues': [('face', 'deal with (something unpleasant) head on'),\n",
+ " ('look',\n",
+ " 'be oriented in a certain direction, often with respect to another reference point; be opposite to'),\n",
+ " ('present',\n",
+ " 'present somebody with something, usually to accuse or criticize'),\n",
+ " ('confront', 'deal with (something unpleasant) head on'),\n",
+ " ('face up', 'deal with (something unpleasant) head on'),\n",
+ " ('front',\n",
+ " 'be oriented in a certain direction, often with respect to another reference point; be opposite to')]},\n",
+ " {'answer': 'faded',\n",
+ " 'hint': 'synonyms for faded',\n",
+ " 'clues': [('pass off', 'disappear gradually'),\n",
+ " ('fleet', 'disappear gradually'),\n",
+ " ('evanesce', 'disappear gradually'),\n",
+ " ('languish', 'become feeble'),\n",
+ " ('fade',\n",
+ " 'become less clearly visible or distinguishable; disappear gradually or seemingly'),\n",
+ " ('pass', 'disappear gradually'),\n",
+ " ('blow over', 'disappear gradually'),\n",
+ " ('melt',\n",
+ " 'become less clearly visible or distinguishable; disappear gradually or seemingly'),\n",
+ " ('wither', 'lose freshness, vigor, or vitality')]},\n",
+ " {'answer': 'fagged',\n",
+ " 'hint': 'synonyms for fagged',\n",
+ " 'clues': [('wear upon',\n",
+ " 'exhaust or get tired through overuse or great strain or stress'),\n",
+ " ('grind', 'work hard'),\n",
+ " ('drudge', 'work hard'),\n",
+ " ('outwear',\n",
+ " 'exhaust or get tired through overuse or great strain or stress'),\n",
+ " ('fag', 'work hard'),\n",
+ " ('tire',\n",
+ " 'exhaust or get tired through overuse or great strain or stress'),\n",
+ " ('fag out',\n",
+ " 'exhaust or get tired through overuse or great strain or stress'),\n",
+ " ('labor', 'work hard'),\n",
+ " ('moil', 'work hard'),\n",
+ " ('fatigue',\n",
+ " 'exhaust or get tired through overuse or great strain or stress'),\n",
+ " ('wear out',\n",
+ " 'exhaust or get tired through overuse or great strain or stress'),\n",
+ " ('weary',\n",
+ " 'exhaust or get tired through overuse or great strain or stress'),\n",
+ " ('tire out',\n",
+ " 'exhaust or get tired through overuse or great strain or stress'),\n",
+ " ('travail', 'work hard'),\n",
+ " ('jade',\n",
+ " 'exhaust or get tired through overuse or great strain or stress'),\n",
+ " ('wear down',\n",
+ " 'exhaust or get tired through overuse or great strain or stress'),\n",
+ " ('toil', 'work hard'),\n",
+ " ('dig', 'work hard')]},\n",
+ " {'answer': 'failing',\n",
+ " 'hint': 'synonyms for failing',\n",
+ " 'clues': [('give way', 'stop operating or functioning'),\n",
+ " ('fail', 'disappoint, prove undependable to; abandon, forsake'),\n",
+ " ('miscarry', 'be unsuccessful'),\n",
+ " ('bomb', 'fail to get a passing grade'),\n",
+ " ('die', 'stop operating or functioning'),\n",
+ " ('betray', 'disappoint, prove undependable to; abandon, forsake'),\n",
+ " ('run out', 'prove insufficient'),\n",
+ " ('break down', 'stop operating or functioning'),\n",
+ " ('go wrong', 'be unsuccessful'),\n",
+ " ('give out', 'stop operating or functioning'),\n",
+ " ('flunk', 'fail to get a passing grade'),\n",
+ " ('break', 'stop operating or functioning'),\n",
+ " ('flush it', 'fail to get a passing grade'),\n",
+ " ('neglect', 'fail to do something; leave something undone'),\n",
+ " ('conk out', 'stop operating or functioning'),\n",
+ " ('go', 'stop operating or functioning'),\n",
+ " ('go bad', 'stop operating or functioning')]},\n",
+ " {'answer': 'fake',\n",
+ " 'hint': 'synonyms for fake',\n",
+ " 'clues': [('fudge', 'tamper, with the purpose of deception'),\n",
+ " ('wangle', 'tamper, with the purpose of deception'),\n",
+ " (\"talk through one's hat\",\n",
+ " 'speak insincerely or without regard for facts or truths'),\n",
+ " ('forge', 'make a copy of with the intent to deceive'),\n",
+ " ('counterfeit', 'make a copy of with the intent to deceive'),\n",
+ " ('bull', 'speak insincerely or without regard for facts or truths'),\n",
+ " ('misrepresent', 'tamper, with the purpose of deception'),\n",
+ " ('cook', 'tamper, with the purpose of deception'),\n",
+ " ('manipulate', 'tamper, with the purpose of deception'),\n",
+ " ('falsify', 'tamper, with the purpose of deception'),\n",
+ " ('bullshit', 'speak insincerely or without regard for facts or truths')]},\n",
+ " {'answer': 'fallen',\n",
+ " 'hint': 'synonyms for fallen',\n",
+ " 'clues': [('come', 'come under, be classified or included'),\n",
+ " ('fall', 'be captured'),\n",
+ " ('hang', 'fall or flow in a certain way'),\n",
+ " ('accrue', 'come into the possession of'),\n",
+ " ('devolve', 'be inherited by'),\n",
+ " ('descend', 'move downward and lower, but not necessarily all the way'),\n",
+ " ('pass', 'be inherited by'),\n",
+ " ('go down', 'move downward and lower, but not necessarily all the way'),\n",
+ " ('come down', 'fall from clouds'),\n",
+ " ('strike', 'touch or seem as if touching visually or audibly'),\n",
+ " ('light', 'fall to somebody by assignment or lot'),\n",
+ " ('flow', 'fall or flow in a certain way'),\n",
+ " ('settle', 'come as if by falling'),\n",
+ " ('return', 'be inherited by'),\n",
+ " ('lessen', 'decrease in size, extent, or range'),\n",
+ " ('diminish', 'decrease in size, extent, or range'),\n",
+ " ('decrease', 'decrease in size, extent, or range'),\n",
+ " ('shine', 'touch or seem as if touching visually or audibly'),\n",
+ " ('fall down', 'lose an upright position suddenly'),\n",
+ " ('precipitate', 'fall from clouds')]},\n",
+ " {'answer': 'falling',\n",
+ " 'hint': 'synonyms for falling',\n",
+ " 'clues': [('come', 'come under, be classified or included'),\n",
+ " ('fall', 'be captured'),\n",
+ " ('hang', 'fall or flow in a certain way'),\n",
+ " ('accrue', 'come into the possession of'),\n",
+ " ('devolve', 'be inherited by'),\n",
+ " ('descend', 'move downward and lower, but not necessarily all the way'),\n",
+ " ('pass', 'be inherited by'),\n",
+ " ('go down', 'move downward and lower, but not necessarily all the way'),\n",
+ " ('come down', 'fall from clouds'),\n",
+ " ('strike', 'touch or seem as if touching visually or audibly'),\n",
+ " ('light', 'fall to somebody by assignment or lot'),\n",
+ " ('flow', 'fall or flow in a certain way'),\n",
+ " ('settle', 'come as if by falling'),\n",
+ " ('return', 'be inherited by'),\n",
+ " ('lessen', 'decrease in size, extent, or range'),\n",
+ " ('diminish', 'decrease in size, extent, or range'),\n",
+ " ('decrease', 'decrease in size, extent, or range'),\n",
+ " ('shine', 'touch or seem as if touching visually or audibly'),\n",
+ " ('fall down', 'lose an upright position suddenly'),\n",
+ " ('precipitate', 'fall from clouds')]},\n",
+ " {'answer': 'faltering',\n",
+ " 'hint': 'synonyms for faltering',\n",
+ " 'clues': [('bumble', 'walk unsteadily'),\n",
+ " ('falter', 'speak haltingly'),\n",
+ " ('stammer', 'speak haltingly'),\n",
+ " ('stumble', 'walk unsteadily'),\n",
+ " ('stutter', 'speak haltingly'),\n",
+ " ('waver', 'move hesitatingly, as if about to give way')]},\n",
+ " {'answer': 'fancied',\n",
+ " 'hint': 'synonyms for fancied',\n",
+ " 'clues': [('fancy', \"imagine; conceive of; see in one's mind\"),\n",
+ " ('see', \"imagine; conceive of; see in one's mind\"),\n",
+ " ('image', \"imagine; conceive of; see in one's mind\"),\n",
+ " ('figure', \"imagine; conceive of; see in one's mind\"),\n",
+ " ('go for', 'have a fancy or particular liking or desire for'),\n",
+ " ('project', \"imagine; conceive of; see in one's mind\"),\n",
+ " ('visualize', \"imagine; conceive of; see in one's mind\"),\n",
+ " ('take to', 'have a fancy or particular liking or desire for'),\n",
+ " ('picture', \"imagine; conceive of; see in one's mind\"),\n",
+ " ('envision', \"imagine; conceive of; see in one's mind\")]},\n",
+ " {'answer': 'fancy',\n",
+ " 'hint': 'synonyms for fancy',\n",
+ " 'clues': [('see', \"imagine; conceive of; see in one's mind\"),\n",
+ " ('image', \"imagine; conceive of; see in one's mind\"),\n",
+ " ('figure', \"imagine; conceive of; see in one's mind\"),\n",
+ " ('go for', 'have a fancy or particular liking or desire for'),\n",
+ " ('project', \"imagine; conceive of; see in one's mind\"),\n",
+ " ('visualize', \"imagine; conceive of; see in one's mind\"),\n",
+ " ('take to', 'have a fancy or particular liking or desire for'),\n",
+ " ('picture', \"imagine; conceive of; see in one's mind\"),\n",
+ " ('envision', \"imagine; conceive of; see in one's mind\")]},\n",
+ " {'answer': 'farming',\n",
+ " 'hint': 'synonyms for farming',\n",
+ " 'clues': [('farm', 'collect fees or profits'),\n",
+ " ('grow',\n",
+ " 'cultivate by growing, often involving improvements by means of agricultural techniques'),\n",
+ " ('produce',\n",
+ " 'cultivate by growing, often involving improvements by means of agricultural techniques'),\n",
+ " ('raise',\n",
+ " 'cultivate by growing, often involving improvements by means of agricultural techniques')]},\n",
+ " {'answer': 'fascinated',\n",
+ " 'hint': 'synonyms for fascinated',\n",
+ " 'clues': [('fascinate',\n",
+ " 'to render motionless, as with a fixed stare or by arousing terror or awe'),\n",
+ " ('trance', 'attract; cause to be enamored'),\n",
+ " ('intrigue', 'cause to be interested or curious'),\n",
+ " ('becharm', 'attract; cause to be enamored'),\n",
+ " ('enchant', 'attract; cause to be enamored'),\n",
+ " ('spellbind',\n",
+ " 'to render motionless, as with a fixed stare or by arousing terror or awe'),\n",
+ " ('enamour', 'attract; cause to be enamored'),\n",
+ " ('beguile', 'attract; cause to be enamored'),\n",
+ " ('capture', 'attract; cause to be enamored'),\n",
+ " ('catch', 'attract; cause to be enamored'),\n",
+ " ('captivate', 'attract; cause to be enamored'),\n",
+ " ('bewitch', 'attract; cause to be enamored'),\n",
+ " ('transfix',\n",
+ " 'to render motionless, as with a fixed stare or by arousing terror or awe'),\n",
+ " ('charm', 'attract; cause to be enamored'),\n",
+ " ('grip',\n",
+ " 'to render motionless, as with a fixed stare or by arousing terror or awe')]},\n",
+ " {'answer': 'fascinating',\n",
+ " 'hint': 'synonyms for fascinating',\n",
+ " 'clues': [('fascinate',\n",
+ " 'to render motionless, as with a fixed stare or by arousing terror or awe'),\n",
+ " ('trance', 'attract; cause to be enamored'),\n",
+ " ('intrigue', 'cause to be interested or curious'),\n",
+ " ('becharm', 'attract; cause to be enamored'),\n",
+ " ('enchant', 'attract; cause to be enamored'),\n",
+ " ('spellbind',\n",
+ " 'to render motionless, as with a fixed stare or by arousing terror or awe'),\n",
+ " ('enamour', 'attract; cause to be enamored'),\n",
+ " ('beguile', 'attract; cause to be enamored'),\n",
+ " ('capture', 'attract; cause to be enamored'),\n",
+ " ('catch', 'attract; cause to be enamored'),\n",
+ " ('captivate', 'attract; cause to be enamored'),\n",
+ " ('bewitch', 'attract; cause to be enamored'),\n",
+ " ('transfix',\n",
+ " 'to render motionless, as with a fixed stare or by arousing terror or awe'),\n",
+ " ('charm', 'attract; cause to be enamored'),\n",
+ " ('grip',\n",
+ " 'to render motionless, as with a fixed stare or by arousing terror or awe')]},\n",
+ " {'answer': 'fastened',\n",
+ " 'hint': 'synonyms for fastened',\n",
+ " 'clues': [('fasten', 'make tight or tighter'),\n",
+ " ('tighten', 'make tight or tighter'),\n",
+ " ('secure', 'cause to be firmly attached'),\n",
+ " ('fix', 'cause to be firmly attached')]},\n",
+ " {'answer': 'fat',\n",
+ " 'hint': 'synonyms for fat',\n",
+ " 'clues': [('flesh out', 'make fat or plump'),\n",
+ " ('fatten up', 'make fat or plump'),\n",
+ " ('plump out', 'make fat or plump'),\n",
+ " ('fatten out', 'make fat or plump'),\n",
+ " ('fill out', 'make fat or plump'),\n",
+ " ('fatten', 'make fat or plump'),\n",
+ " ('plump', 'make fat or plump')]},\n",
+ " {'answer': 'fated',\n",
+ " 'hint': 'synonyms for fated',\n",
+ " 'clues': [('flesh out', 'make fat or plump'),\n",
+ " ('fatten up', 'make fat or plump'),\n",
+ " ('doom', 'decree or designate beforehand'),\n",
+ " ('plump out', 'make fat or plump'),\n",
+ " ('fat', 'make fat or plump'),\n",
+ " ('fill out', 'make fat or plump'),\n",
+ " ('fatten', 'make fat or plump'),\n",
+ " ('designate', 'decree or designate beforehand'),\n",
+ " ('fatten out', 'make fat or plump'),\n",
+ " ('destine', 'decree or designate beforehand'),\n",
+ " ('plump', 'make fat or plump')]},\n",
+ " {'answer': 'fatigued',\n",
+ " 'hint': 'synonyms for fatigued',\n",
+ " 'clues': [('tire',\n",
+ " 'lose interest or become bored with something or somebody'),\n",
+ " ('wear upon',\n",
+ " 'exhaust or get tired through overuse or great strain or stress'),\n",
+ " ('outwear',\n",
+ " 'exhaust or get tired through overuse or great strain or stress'),\n",
+ " ('fag out',\n",
+ " 'exhaust or get tired through overuse or great strain or stress'),\n",
+ " ('weary', 'lose interest or become bored with something or somebody'),\n",
+ " ('fatigue', 'lose interest or become bored with something or somebody'),\n",
+ " ('fag', 'exhaust or get tired through overuse or great strain or stress'),\n",
+ " ('wear out',\n",
+ " 'exhaust or get tired through overuse or great strain or stress'),\n",
+ " ('tire out',\n",
+ " 'exhaust or get tired through overuse or great strain or stress'),\n",
+ " ('jade', 'lose interest or become bored with something or somebody'),\n",
+ " ('wear down',\n",
+ " 'exhaust or get tired through overuse or great strain or stress'),\n",
+ " ('pall', 'lose interest or become bored with something or somebody')]},\n",
+ " {'answer': 'fattened',\n",
+ " 'hint': 'synonyms for fattened',\n",
+ " 'clues': [('flesh out', 'make fat or plump'),\n",
+ " ('fatten up', 'make fat or plump'),\n",
+ " ('plump out', 'make fat or plump'),\n",
+ " ('fat', 'make fat or plump'),\n",
+ " ('fill out', 'make fat or plump'),\n",
+ " ('fatten', 'make fat or plump'),\n",
+ " ('plump', 'make fat or plump'),\n",
+ " ('fatten out', 'make fat or plump')]},\n",
+ " {'answer': 'fattening',\n",
+ " 'hint': 'synonyms for fattening',\n",
+ " 'clues': [('flesh out', 'make fat or plump'),\n",
+ " ('fatten up', 'make fat or plump'),\n",
+ " ('plump out', 'make fat or plump'),\n",
+ " ('fat', 'make fat or plump'),\n",
+ " ('fill out', 'make fat or plump'),\n",
+ " ('fatten', 'make fat or plump'),\n",
+ " ('plump', 'make fat or plump'),\n",
+ " ('fatten out', 'make fat or plump')]},\n",
+ " {'answer': 'fawning',\n",
+ " 'hint': 'synonyms for fawning',\n",
+ " 'clues': [('cringe', 'show submission or fear'),\n",
+ " ('kotow', 'try to gain favor by cringing or flattering'),\n",
+ " ('bootlick', 'try to gain favor by cringing or flattering'),\n",
+ " ('toady', 'try to gain favor by cringing or flattering'),\n",
+ " ('creep', 'show submission or fear'),\n",
+ " ('grovel', 'show submission or fear'),\n",
+ " ('suck up', 'try to gain favor by cringing or flattering'),\n",
+ " ('cower', 'show submission or fear'),\n",
+ " ('truckle', 'try to gain favor by cringing or flattering'),\n",
+ " ('crawl', 'show submission or fear'),\n",
+ " ('fawn', 'try to gain favor by cringing or flattering')]},\n",
+ " {'answer': 'fazed',\n",
+ " 'hint': 'synonyms for fazed',\n",
+ " 'clues': [('unnerve', 'disturb the composure of'),\n",
+ " ('enervate', 'disturb the composure of'),\n",
+ " ('unsettle', 'disturb the composure of'),\n",
+ " ('faze', 'disturb the composure of')]},\n",
+ " {'answer': 'featured',\n",
+ " 'hint': 'synonyms for featured',\n",
+ " 'clues': [('feature',\n",
+ " 'wear or display in an ostentatious or proud manner'),\n",
+ " ('have', 'have as a feature'),\n",
+ " ('boast', 'wear or display in an ostentatious or proud manner'),\n",
+ " ('sport', 'wear or display in an ostentatious or proud manner')]},\n",
+ " {'answer': 'feigned',\n",
+ " 'hint': 'synonyms for feigned',\n",
+ " 'clues': [('pretend', 'make believe with the intent to deceive'),\n",
+ " ('sham', 'make a pretence of'),\n",
+ " ('affect', 'make believe with the intent to deceive'),\n",
+ " ('assume', 'make a pretence of'),\n",
+ " ('simulate', 'make a pretence of'),\n",
+ " ('feign', 'make a pretence of'),\n",
+ " ('dissemble', 'make believe with the intent to deceive')]},\n",
+ " {'answer': 'fell',\n",
+ " 'hint': 'synonyms for fell',\n",
+ " 'clues': [('vanish', 'pass away rapidly'),\n",
+ " ('come', 'come under, be classified or included'),\n",
+ " ('fall', 'be captured'),\n",
+ " ('cut down', 'cause to fall by or as if by delivering a blow'),\n",
+ " ('hang', 'fall or flow in a certain way'),\n",
+ " ('accrue', 'come into the possession of'),\n",
+ " ('devolve', 'be inherited by'),\n",
+ " ('descend', 'move downward and lower, but not necessarily all the way'),\n",
+ " ('pass', 'be inherited by'),\n",
+ " ('go down', 'move downward and lower, but not necessarily all the way'),\n",
+ " ('come down', 'fall from clouds'),\n",
+ " ('strike', 'touch or seem as if touching visually or audibly'),\n",
+ " ('light', 'fall to somebody by assignment or lot'),\n",
+ " ('flow', 'fall or flow in a certain way'),\n",
+ " ('settle', 'come as if by falling'),\n",
+ " ('fly', 'pass away rapidly'),\n",
+ " ('return', 'be inherited by'),\n",
+ " ('drop', 'cause to fall by or as if by delivering a blow'),\n",
+ " ('strike down', 'cause to fall by or as if by delivering a blow'),\n",
+ " ('lessen', 'decrease in size, extent, or range'),\n",
+ " ('diminish', 'decrease in size, extent, or range'),\n",
+ " ('decrease', 'decrease in size, extent, or range'),\n",
+ " ('shine', 'touch or seem as if touching visually or audibly'),\n",
+ " ('fall down', 'lose an upright position suddenly'),\n",
+ " ('precipitate', 'fall from clouds')]},\n",
+ " {'answer': 'felted',\n",
+ " 'hint': 'synonyms for felted',\n",
+ " 'clues': [('felt', 'mat together and make felt-like'),\n",
+ " ('mat', 'change texture so as to become matted and felt-like'),\n",
+ " ('matte', 'change texture so as to become matted and felt-like'),\n",
+ " ('mat up', 'change texture so as to become matted and felt-like'),\n",
+ " ('felt up', 'change texture so as to become matted and felt-like'),\n",
+ " ('matt-up', 'change texture so as to become matted and felt-like')]},\n",
+ " {'answer': 'fetching',\n",
+ " 'hint': 'synonyms for fetching',\n",
+ " 'clues': [('bring', 'be sold for a certain price'),\n",
+ " ('get', 'go or come after and bring or take back'),\n",
+ " ('convey', 'go or come after and bring or take back'),\n",
+ " ('bring in', 'be sold for a certain price'),\n",
+ " ('fetch', 'take away or remove')]},\n",
+ " {'answer': 'fiddling',\n",
+ " 'hint': 'synonyms for fiddling',\n",
+ " 'clues': [('tinker', 'try to fix or mend'),\n",
+ " ('fiddle',\n",
+ " 'play around with or alter or falsify, usually secretively or dishonestly'),\n",
+ " ('monkey',\n",
+ " 'play around with or alter or falsify, usually secretively or dishonestly'),\n",
+ " ('goldbrick', \"avoid (one's assigned duties)\"),\n",
+ " ('toy', \"manipulate manually or in one's mind or imagination\"),\n",
+ " ('shrink from', \"avoid (one's assigned duties)\"),\n",
+ " ('shirk', \"avoid (one's assigned duties)\"),\n",
+ " ('diddle', \"manipulate manually or in one's mind or imagination\"),\n",
+ " ('play', \"manipulate manually or in one's mind or imagination\"),\n",
+ " ('tamper',\n",
+ " 'play around with or alter or falsify, usually secretively or dishonestly')]},\n",
+ " {'answer': 'fighting',\n",
+ " 'hint': 'synonyms for fighting',\n",
+ " 'clues': [('defend', 'fight against or resist strongly'),\n",
+ " ('fight', 'make a strenuous or labored effort'),\n",
+ " ('push',\n",
+ " 'exert oneself continuously, vigorously, or obtrusively to gain an end or engage in a crusade for a certain cause or person; be an advocate for'),\n",
+ " ('campaign',\n",
+ " 'exert oneself continuously, vigorously, or obtrusively to gain an end or engage in a crusade for a certain cause or person; be an advocate for'),\n",
+ " ('contend', 'be engaged in a fight; carry on a fight'),\n",
+ " ('struggle', 'make a strenuous or labored effort'),\n",
+ " ('press',\n",
+ " 'exert oneself continuously, vigorously, or obtrusively to gain an end or engage in a crusade for a certain cause or person; be an advocate for'),\n",
+ " ('agitate',\n",
+ " 'exert oneself continuously, vigorously, or obtrusively to gain an end or engage in a crusade for a certain cause or person; be an advocate for'),\n",
+ " ('oppose', 'fight against or resist strongly'),\n",
+ " ('crusade',\n",
+ " 'exert oneself continuously, vigorously, or obtrusively to gain an end or engage in a crusade for a certain cause or person; be an advocate for'),\n",
+ " ('fight down', 'fight against or resist strongly'),\n",
+ " ('fight back', 'fight against or resist strongly')]},\n",
+ " {'answer': 'figured',\n",
+ " 'hint': 'synonyms for figured',\n",
+ " 'clues': [('fancy', \"imagine; conceive of; see in one's mind\"),\n",
+ " ('count on', 'judge to be probable'),\n",
+ " ('estimate', 'judge to be probable'),\n",
+ " ('enter', 'be or play a part of or in'),\n",
+ " ('work out', 'make a mathematical calculation or computation'),\n",
+ " ('project', \"imagine; conceive of; see in one's mind\"),\n",
+ " ('calculate', 'make a mathematical calculation or computation'),\n",
+ " ('compute', 'make a mathematical calculation or computation'),\n",
+ " ('visualize', \"imagine; conceive of; see in one's mind\"),\n",
+ " ('reckon', 'make a mathematical calculation or computation'),\n",
+ " ('see', \"imagine; conceive of; see in one's mind\"),\n",
+ " ('figure', 'understand'),\n",
+ " ('cypher', 'make a mathematical calculation or computation'),\n",
+ " ('image', \"imagine; conceive of; see in one's mind\"),\n",
+ " ('forecast', 'judge to be probable'),\n",
+ " ('cipher', 'make a mathematical calculation or computation'),\n",
+ " ('picture', \"imagine; conceive of; see in one's mind\"),\n",
+ " ('envision', \"imagine; conceive of; see in one's mind\")]},\n",
+ " {'answer': 'filled',\n",
+ " 'hint': 'synonyms for filled',\n",
+ " 'clues': [('satiate', 'fill to satisfaction'),\n",
+ " ('make full', 'make full, also in a metaphorical sense'),\n",
+ " ('fulfil', 'fill or meet a want or need'),\n",
+ " ('meet', 'fill or meet a want or need'),\n",
+ " ('fill up', 'eat until one is sated'),\n",
+ " ('fill', 'eat until one is sated'),\n",
+ " ('satisfy', 'fill or meet a want or need'),\n",
+ " ('sate', 'fill to satisfaction'),\n",
+ " ('take', 'assume, as of positions or roles'),\n",
+ " ('replete', 'fill to satisfaction'),\n",
+ " ('occupy', 'assume, as of positions or roles')]},\n",
+ " {'answer': 'finished',\n",
+ " 'hint': 'synonyms for finished',\n",
+ " 'clues': [('finish', 'come or bring to a finish or an end'),\n",
+ " ('wind up', 'finally be or do something'),\n",
+ " ('eat up', \"finish eating all the food on one's plate or on the table\"),\n",
+ " ('end up', 'finally be or do something'),\n",
+ " ('land up', 'finally be or do something'),\n",
+ " ('cease',\n",
+ " 'have an end, in a temporal, spatial, or quantitative sense; either spatial or metaphorical'),\n",
+ " ('terminate',\n",
+ " 'have an end, in a temporal, spatial, or quantitative sense; either spatial or metaphorical'),\n",
+ " ('polish off',\n",
+ " \"finish eating all the food on one's plate or on the table\"),\n",
+ " ('fetch up', 'finally be or do something'),\n",
+ " ('complete', 'come or bring to a finish or an end'),\n",
+ " ('stop',\n",
+ " 'have an end, in a temporal, spatial, or quantitative sense; either spatial or metaphorical'),\n",
+ " ('finish up', 'finally be or do something'),\n",
+ " ('end',\n",
+ " 'have an end, in a temporal, spatial, or quantitative sense; either spatial or metaphorical')]},\n",
+ " {'answer': 'fired',\n",
+ " 'hint': 'synonyms for fired',\n",
+ " 'clues': [('fire', 'provide with fuel'),\n",
+ " ('raise', 'call forth (emotions, feelings, and responses)'),\n",
+ " ('open fire', 'start firing a weapon'),\n",
+ " ('evoke', 'call forth (emotions, feelings, and responses)'),\n",
+ " ('terminate',\n",
+ " 'terminate the employment of; discharge from an office or position'),\n",
+ " ('burn', 'destroy by fire'),\n",
+ " ('go off', 'go off or discharge'),\n",
+ " ('fuel', 'provide with fuel'),\n",
+ " ('discharge', 'go off or discharge'),\n",
+ " ('force out',\n",
+ " 'terminate the employment of; discharge from an office or position'),\n",
+ " ('can',\n",
+ " 'terminate the employment of; discharge from an office or position'),\n",
+ " ('elicit', 'call forth (emotions, feelings, and responses)'),\n",
+ " ('give notice',\n",
+ " 'terminate the employment of; discharge from an office or position'),\n",
+ " ('displace',\n",
+ " 'terminate the employment of; discharge from an office or position'),\n",
+ " ('dismiss',\n",
+ " 'terminate the employment of; discharge from an office or position'),\n",
+ " ('send away',\n",
+ " 'terminate the employment of; discharge from an office or position'),\n",
+ " ('kindle', 'call forth (emotions, feelings, and responses)'),\n",
+ " ('provoke', 'call forth (emotions, feelings, and responses)'),\n",
+ " ('give the sack',\n",
+ " 'terminate the employment of; discharge from an office or position'),\n",
+ " ('arouse', 'call forth (emotions, feelings, and responses)'),\n",
+ " ('sack',\n",
+ " 'terminate the employment of; discharge from an office or position'),\n",
+ " ('give the axe',\n",
+ " 'terminate the employment of; discharge from an office or position'),\n",
+ " ('burn down', 'destroy by fire')]},\n",
+ " {'answer': 'fit',\n",
+ " 'hint': 'synonyms for fit',\n",
+ " 'clues': [('gibe',\n",
+ " 'be compatible, similar or consistent; coincide in their characteristics'),\n",
+ " ('match', 'make correspond or harmonize'),\n",
+ " ('accommodate', 'be agreeable or acceptable to'),\n",
+ " ('meet', 'satisfy a condition or restriction'),\n",
+ " ('fit out', 'provide with (something) usually for a specific purpose'),\n",
+ " ('tally',\n",
+ " 'be compatible, similar or consistent; coincide in their characteristics'),\n",
+ " ('equip', 'provide with (something) usually for a specific purpose'),\n",
+ " ('check',\n",
+ " 'be compatible, similar or consistent; coincide in their characteristics'),\n",
+ " ('go', 'be the right size or shape; fit correctly or as desired'),\n",
+ " ('outfit', 'provide with (something) usually for a specific purpose'),\n",
+ " ('correspond',\n",
+ " 'be compatible, similar or consistent; coincide in their characteristics'),\n",
+ " ('agree',\n",
+ " 'be compatible, similar or consistent; coincide in their characteristics'),\n",
+ " ('suit', 'be agreeable or acceptable to'),\n",
+ " ('conform to', 'satisfy a condition or restriction'),\n",
+ " ('jibe',\n",
+ " 'be compatible, similar or consistent; coincide in their characteristics')]},\n",
+ " {'answer': 'fitted',\n",
+ " 'hint': 'synonyms for fitted',\n",
+ " 'clues': [('gibe',\n",
+ " 'be compatible, similar or consistent; coincide in their characteristics'),\n",
+ " ('match',\n",
+ " 'be compatible, similar or consistent; coincide in their characteristics'),\n",
+ " ('fit out', 'provide with (something) usually for a specific purpose'),\n",
+ " ('tally',\n",
+ " 'be compatible, similar or consistent; coincide in their characteristics'),\n",
+ " ('equip', 'provide with (something) usually for a specific purpose'),\n",
+ " ('fit', 'make correspond or harmonize'),\n",
+ " ('check',\n",
+ " 'be compatible, similar or consistent; coincide in their characteristics'),\n",
+ " ('go', 'be the right size or shape; fit correctly or as desired'),\n",
+ " ('outfit', 'provide with (something) usually for a specific purpose'),\n",
+ " ('suit', 'be agreeable or acceptable to'),\n",
+ " ('agree',\n",
+ " 'be compatible, similar or consistent; coincide in their characteristics'),\n",
+ " ('conform to', 'satisfy a condition or restriction'),\n",
+ " ('jibe',\n",
+ " 'be compatible, similar or consistent; coincide in their characteristics'),\n",
+ " ('accommodate', 'be agreeable or acceptable to'),\n",
+ " ('meet', 'satisfy a condition or restriction'),\n",
+ " ('correspond',\n",
+ " 'be compatible, similar or consistent; coincide in their characteristics')]},\n",
+ " {'answer': 'fitting',\n",
+ " 'hint': 'synonyms for fitting',\n",
+ " 'clues': [('gibe',\n",
+ " 'be compatible, similar or consistent; coincide in their characteristics'),\n",
+ " ('match',\n",
+ " 'be compatible, similar or consistent; coincide in their characteristics'),\n",
+ " ('fit out', 'provide with (something) usually for a specific purpose'),\n",
+ " ('tally',\n",
+ " 'be compatible, similar or consistent; coincide in their characteristics'),\n",
+ " ('equip', 'provide with (something) usually for a specific purpose'),\n",
+ " ('fit', 'make correspond or harmonize'),\n",
+ " ('check',\n",
+ " 'be compatible, similar or consistent; coincide in their characteristics'),\n",
+ " ('go', 'be the right size or shape; fit correctly or as desired'),\n",
+ " ('outfit', 'provide with (something) usually for a specific purpose'),\n",
+ " ('suit', 'be agreeable or acceptable to'),\n",
+ " ('agree',\n",
+ " 'be compatible, similar or consistent; coincide in their characteristics'),\n",
+ " ('conform to', 'satisfy a condition or restriction'),\n",
+ " ('jibe',\n",
+ " 'be compatible, similar or consistent; coincide in their characteristics'),\n",
+ " ('accommodate', 'be agreeable or acceptable to'),\n",
+ " ('meet', 'satisfy a condition or restriction'),\n",
+ " ('correspond',\n",
+ " 'be compatible, similar or consistent; coincide in their characteristics')]},\n",
+ " {'answer': 'fixed',\n",
+ " 'hint': 'synonyms for fixed',\n",
+ " 'clues': [('fix', 'make infertile'),\n",
+ " ('ready', 'prepare for eating by applying heat'),\n",
+ " ('determine', 'decide upon or fix definitely'),\n",
+ " ('fixate', 'make fixed, stable or stationary'),\n",
+ " ('desex', 'make infertile'),\n",
+ " ('cook', 'prepare for eating by applying heat'),\n",
+ " ('prepare',\n",
+ " 'make ready or suitable or equip in advance for a particular purpose or for some use, event, etc'),\n",
+ " ('bushel',\n",
+ " 'restore by replacing a part or putting together what is torn or broken'),\n",
+ " ('furbish up',\n",
+ " 'restore by replacing a part or putting together what is torn or broken'),\n",
+ " ('specify', 'decide upon or fix definitely'),\n",
+ " ('set', 'decide upon or fix definitely'),\n",
+ " ('mend',\n",
+ " 'restore by replacing a part or putting together what is torn or broken'),\n",
+ " ('sterilise', 'make infertile'),\n",
+ " ('repair',\n",
+ " 'restore by replacing a part or putting together what is torn or broken'),\n",
+ " ('desexualise', 'make infertile'),\n",
+ " ('pay off', 'take vengeance on or get even'),\n",
+ " ('unsex', 'make infertile'),\n",
+ " ('set up',\n",
+ " 'make ready or suitable or equip in advance for a particular purpose or for some use, event, etc'),\n",
+ " ('posit', 'put (something somewhere) firmly'),\n",
+ " ('gear up',\n",
+ " 'make ready or suitable or equip in advance for a particular purpose or for some use, event, etc'),\n",
+ " ('restore',\n",
+ " 'restore by replacing a part or putting together what is torn or broken'),\n",
+ " ('get', 'take vengeance on or get even'),\n",
+ " ('make', 'prepare for eating by applying heat'),\n",
+ " ('fasten', 'cause to be firmly attached'),\n",
+ " ('secure', 'cause to be firmly attached'),\n",
+ " ('touch on',\n",
+ " 'restore by replacing a part or putting together what is torn or broken'),\n",
+ " ('situate', 'put (something somewhere) firmly'),\n",
+ " ('deposit', 'put (something somewhere) firmly'),\n",
+ " ('limit', 'decide upon or fix definitely'),\n",
+ " ('doctor',\n",
+ " 'restore by replacing a part or putting together what is torn or broken'),\n",
+ " ('pay back', 'take vengeance on or get even'),\n",
+ " ('define', 'decide upon or fix definitely')]},\n",
+ " {'answer': 'fizzing',\n",
+ " 'hint': 'synonyms for fizzing',\n",
+ " 'clues': [('form bubbles', 'become bubbly or frothy or foaming'),\n",
+ " ('fizz', 'become bubbly or frothy or foaming'),\n",
+ " ('froth', 'become bubbly or frothy or foaming'),\n",
+ " ('effervesce', 'become bubbly or frothy or foaming'),\n",
+ " ('sparkle', 'become bubbly or frothy or foaming'),\n",
+ " ('foam', 'become bubbly or frothy or foaming')]},\n",
+ " {'answer': 'flagging',\n",
+ " 'hint': 'synonyms for flagging',\n",
+ " 'clues': [('swag',\n",
+ " 'droop, sink, or settle from or as if from pressure or loss of tautness'),\n",
+ " ('ease up', 'become less intense'),\n",
+ " ('droop',\n",
+ " 'droop, sink, or settle from or as if from pressure or loss of tautness'),\n",
+ " ('flag', 'provide with a flag'),\n",
+ " ('slacken off', 'become less intense'),\n",
+ " ('ease off', 'become less intense')]},\n",
+ " {'answer': 'flaring',\n",
+ " 'hint': 'synonyms for flaring',\n",
+ " 'clues': [('flare', 'erupt or intensify suddenly'),\n",
+ " ('erupt', 'erupt or intensify suddenly'),\n",
+ " ('burn up', 'burn brightly'),\n",
+ " ('flare out', 'become flared and widen, usually at one end'),\n",
+ " ('flame up', 'burn brightly'),\n",
+ " ('irrupt', 'erupt or intensify suddenly'),\n",
+ " ('burst out', 'erupt or intensify suddenly'),\n",
+ " ('blaze up', 'burn brightly'),\n",
+ " ('break open', 'erupt or intensify suddenly'),\n",
+ " ('flame', 'shine with a sudden light')]},\n",
+ " {'answer': 'flash',\n",
+ " 'hint': 'synonyms for flash',\n",
+ " 'clues': [('ostentate',\n",
+ " 'display proudly; act ostentatiously or pretentiously'),\n",
+ " ('dart', 'run or move very quickly or hastily'),\n",
+ " ('blink', 'gleam or glow intermittently'),\n",
+ " ('swank', 'display proudly; act ostentatiously or pretentiously'),\n",
+ " ('flaunt', 'display proudly; act ostentatiously or pretentiously'),\n",
+ " ('show off', 'display proudly; act ostentatiously or pretentiously'),\n",
+ " ('scoot', 'run or move very quickly or hastily'),\n",
+ " ('scud', 'run or move very quickly or hastily'),\n",
+ " ('winkle', 'gleam or glow intermittently'),\n",
+ " ('shoot', 'run or move very quickly or hastily'),\n",
+ " ('dash', 'run or move very quickly or hastily'),\n",
+ " ('wink', 'gleam or glow intermittently')]},\n",
+ " {'answer': 'flecked',\n",
+ " 'hint': 'synonyms for flecked',\n",
+ " 'clues': [('spot', 'make a spot or mark onto'),\n",
+ " ('blot', 'make a spot or mark onto'),\n",
+ " ('blob', 'make a spot or mark onto'),\n",
+ " ('fleck', 'make a spot or mark onto')]},\n",
+ " {'answer': 'fleet',\n",
+ " 'hint': 'synonyms for fleet',\n",
+ " 'clues': [('pass off', 'disappear gradually'),\n",
+ " ('flit', 'move along rapidly and lightly; skim or dart'),\n",
+ " ('evanesce', 'disappear gradually'),\n",
+ " ('flutter', 'move along rapidly and lightly; skim or dart'),\n",
+ " ('pass', 'disappear gradually'),\n",
+ " ('blow over', 'disappear gradually'),\n",
+ " ('dart', 'move along rapidly and lightly; skim or dart'),\n",
+ " ('fade', 'disappear gradually')]},\n",
+ " {'answer': 'fleeting',\n",
+ " 'hint': 'synonyms for fleeting',\n",
+ " 'clues': [('pass off', 'disappear gradually'),\n",
+ " ('fleet', 'disappear gradually'),\n",
+ " ('flit', 'move along rapidly and lightly; skim or dart'),\n",
+ " ('evanesce', 'disappear gradually'),\n",
+ " ('flutter', 'move along rapidly and lightly; skim or dart'),\n",
+ " ('pass', 'disappear gradually'),\n",
+ " ('blow over', 'disappear gradually'),\n",
+ " ('dart', 'move along rapidly and lightly; skim or dart'),\n",
+ " ('fade', 'disappear gradually')]},\n",
+ " {'answer': 'flickering',\n",
+ " 'hint': 'synonyms for flickering',\n",
+ " 'clues': [('flicker', 'move back and forth very rapidly'),\n",
+ " ('flick', 'shine unsteadily'),\n",
+ " ('waver', 'move back and forth very rapidly'),\n",
+ " ('flutter', 'move back and forth very rapidly'),\n",
+ " ('quiver', 'move back and forth very rapidly')]},\n",
+ " {'answer': 'flip',\n",
+ " 'hint': 'synonyms for flip',\n",
+ " 'clues': [('alternate',\n",
+ " 'reverse (a direction, attitude, or course of action)'),\n",
+ " ('toss', 'throw or toss with a light motion'),\n",
+ " ('twitch',\n",
+ " 'toss with a sharp movement so as to cause to turn over in the air'),\n",
+ " ('riffle', 'look through a book or other written material'),\n",
+ " ('riff', 'look through a book or other written material'),\n",
+ " ('interchange', 'reverse (a direction, attitude, or course of action)'),\n",
+ " ('flip over', 'turn upside down, or throw so as to reverse'),\n",
+ " ('switch', 'reverse (a direction, attitude, or course of action)'),\n",
+ " ('throw', 'cause to go on or to be engaged or set in operation'),\n",
+ " ('tack', 'reverse (a direction, attitude, or course of action)'),\n",
+ " ('flip out', 'react in an excited, delighted, or surprised way'),\n",
+ " ('flip-flop', 'reverse (a direction, attitude, or course of action)'),\n",
+ " ('flick', 'look through a book or other written material'),\n",
+ " ('thumb', 'look through a book or other written material'),\n",
+ " ('leaf', 'look through a book or other written material'),\n",
+ " ('turn over', 'turn upside down, or throw so as to reverse'),\n",
+ " ('pitch', 'throw or toss with a light motion'),\n",
+ " ('sky', 'throw or toss with a light motion')]},\n",
+ " {'answer': 'floating',\n",
+ " 'hint': 'synonyms for floating',\n",
+ " 'clues': [('be adrift', 'be in motion due to some air or water current'),\n",
+ " ('float', 'set afloat'),\n",
+ " ('swim',\n",
+ " 'be afloat either on or below a liquid surface and not sink to the bottom'),\n",
+ " ('drift', 'be in motion due to some air or water current'),\n",
+ " ('blow', 'be in motion due to some air or water current')]},\n",
+ " {'answer': 'flooded',\n",
+ " 'hint': 'synonyms for flooded',\n",
+ " 'clues': [('flood', 'cover with liquid, usually water'),\n",
+ " ('swamp', 'fill quickly beyond capacity; as with a liquid'),\n",
+ " ('glut', 'supply with an excess of'),\n",
+ " ('inundate', 'fill quickly beyond capacity; as with a liquid'),\n",
+ " ('oversupply', 'supply with an excess of'),\n",
+ " ('deluge', 'fill quickly beyond capacity; as with a liquid')]},\n",
+ " {'answer': 'floored',\n",
+ " 'hint': 'synonyms for floored',\n",
+ " 'clues': [('blow out of the water',\n",
+ " \"surprise greatly; knock someone's socks off\"),\n",
+ " ('floor', 'knock down with force'),\n",
+ " ('coldcock', 'knock down with force'),\n",
+ " ('deck', 'knock down with force'),\n",
+ " ('take aback', \"surprise greatly; knock someone's socks off\"),\n",
+ " ('dump', 'knock down with force'),\n",
+ " ('ball over', \"surprise greatly; knock someone's socks off\"),\n",
+ " ('knock down', 'knock down with force'),\n",
+ " ('shock', \"surprise greatly; knock someone's socks off\")]},\n",
+ " {'answer': 'flourishing',\n",
+ " 'hint': 'synonyms for flourishing',\n",
+ " 'clues': [('fly high',\n",
+ " \"make steady progress; be at the high point in one's career or reach a high point in historical significance or importance\"),\n",
+ " ('flourish', 'move or swing back and forth'),\n",
+ " ('prosper',\n",
+ " \"make steady progress; be at the high point in one's career or reach a high point in historical significance or importance\"),\n",
+ " ('thrive',\n",
+ " \"make steady progress; be at the high point in one's career or reach a high point in historical significance or importance\"),\n",
+ " ('expand', 'grow vigorously'),\n",
+ " ('wave', 'move or swing back and forth'),\n",
+ " ('brandish', 'move or swing back and forth'),\n",
+ " ('boom', 'grow vigorously')]},\n",
+ " {'answer': 'flowing',\n",
+ " 'hint': 'synonyms for flowing',\n",
+ " 'clues': [('flow', 'move or progress freely as if in a stream'),\n",
+ " ('hang', 'fall or flow in a certain way'),\n",
+ " ('menstruate', 'undergo menstruation'),\n",
+ " ('feed', 'move along, of liquids'),\n",
+ " ('run', 'move along, of liquids'),\n",
+ " ('course', 'move along, of liquids'),\n",
+ " ('flux', 'move or progress freely as if in a stream'),\n",
+ " ('fall', 'fall or flow in a certain way')]},\n",
+ " {'answer': 'flush',\n",
+ " 'hint': 'synonyms for flush',\n",
+ " 'clues': [('even', 'make level or straight'),\n",
+ " ('purge', 'rinse, clean, or empty with a liquid'),\n",
+ " ('sluice', 'irrigate with water from a sluice'),\n",
+ " ('redden', 'turn red, as if in embarrassment or shame'),\n",
+ " ('even out', 'make level or straight'),\n",
+ " ('blush', 'turn red, as if in embarrassment or shame'),\n",
+ " ('level', 'make level or straight'),\n",
+ " ('scour', 'rinse, clean, or empty with a liquid'),\n",
+ " ('crimson', 'turn red, as if in embarrassment or shame')]},\n",
+ " {'answer': 'flushed',\n",
+ " 'hint': 'synonyms for flushed',\n",
+ " 'clues': [('even', 'make level or straight'),\n",
+ " ('purge', 'rinse, clean, or empty with a liquid'),\n",
+ " ('sluice', 'irrigate with water from a sluice'),\n",
+ " ('flush', 'cause to flow or flood with or as if with water'),\n",
+ " ('redden', 'turn red, as if in embarrassment or shame'),\n",
+ " ('even out', 'make level or straight'),\n",
+ " ('blush', 'turn red, as if in embarrassment or shame'),\n",
+ " ('level', 'make level or straight'),\n",
+ " ('scour', 'rinse, clean, or empty with a liquid'),\n",
+ " ('crimson', 'turn red, as if in embarrassment or shame')]},\n",
+ " {'answer': 'fly',\n",
+ " 'hint': 'synonyms for fly',\n",
+ " 'clues': [('vanish', 'decrease rapidly and disappear'),\n",
+ " ('pilot', 'operate an airplane'),\n",
+ " ('fell', 'pass away rapidly'),\n",
+ " ('vaporize', 'decrease rapidly and disappear'),\n",
+ " ('take flight', 'run away quickly'),\n",
+ " ('aviate', 'operate an airplane'),\n",
+ " ('flee', 'run away quickly'),\n",
+ " ('wing', 'travel through the air; be airborne')]},\n",
+ " {'answer': 'flying',\n",
+ " 'hint': 'synonyms for flying',\n",
+ " 'clues': [('vanish', 'decrease rapidly and disappear'),\n",
+ " ('pilot', 'operate an airplane'),\n",
+ " ('fly', 'display in the air or cause to float'),\n",
+ " ('fell', 'pass away rapidly'),\n",
+ " ('take flight', 'run away quickly'),\n",
+ " ('aviate', 'operate an airplane'),\n",
+ " ('flee', 'run away quickly'),\n",
+ " ('wing', 'travel through the air; be airborne'),\n",
+ " ('vaporize', 'decrease rapidly and disappear')]},\n",
+ " {'answer': 'foaming',\n",
+ " 'hint': 'synonyms for foaming',\n",
+ " 'clues': [('form bubbles', 'become bubbly or frothy or foaming'),\n",
+ " ('fizz', 'become bubbly or frothy or foaming'),\n",
+ " ('froth', 'become bubbly or frothy or foaming'),\n",
+ " ('effervesce', 'become bubbly or frothy or foaming'),\n",
+ " ('sparkle', 'become bubbly or frothy or foaming'),\n",
+ " ('foam', 'become bubbly or frothy or foaming')]},\n",
+ " {'answer': 'focused',\n",
+ " 'hint': 'synonyms for focused',\n",
+ " 'clues': [('focalise', 'put (an image) into focus'),\n",
+ " ('concentrate', \"direct one's attention on something\"),\n",
+ " ('focus', 'put (an image) into focus'),\n",
+ " ('sharpen', 'put (an image) into focus'),\n",
+ " ('centre', \"direct one's attention on something\"),\n",
+ " ('concenter',\n",
+ " 'bring into focus or alignment; to converge or cause to converge; of ideas or emotions'),\n",
+ " ('pore', \"direct one's attention on something\"),\n",
+ " ('rivet', \"direct one's attention on something\"),\n",
+ " ('center', \"direct one's attention on something\")]},\n",
+ " {'answer': 'focussed',\n",
+ " 'hint': 'synonyms for focussed',\n",
+ " 'clues': [('focalise', 'put (an image) into focus'),\n",
+ " ('concentrate', \"direct one's attention on something\"),\n",
+ " ('focus', 'put (an image) into focus'),\n",
+ " ('sharpen', 'put (an image) into focus'),\n",
+ " ('centre', \"direct one's attention on something\"),\n",
+ " ('concenter',\n",
+ " 'bring into focus or alignment; to converge or cause to converge; of ideas or emotions'),\n",
+ " ('pore', \"direct one's attention on something\"),\n",
+ " ('rivet', \"direct one's attention on something\"),\n",
+ " ('center', \"direct one's attention on something\")]},\n",
+ " {'answer': 'fogged',\n",
+ " 'hint': 'synonyms for fogged',\n",
+ " 'clues': [('fog', 'make less visible or unclear'),\n",
+ " ('becloud', 'make less visible or unclear'),\n",
+ " ('haze over', 'make less visible or unclear'),\n",
+ " ('obscure', 'make less visible or unclear'),\n",
+ " ('cloud', 'make less visible or unclear'),\n",
+ " ('mist', 'make less visible or unclear'),\n",
+ " ('obnubilate', 'make less visible or unclear'),\n",
+ " ('befog', 'make less visible or unclear')]},\n",
+ " {'answer': 'foiled',\n",
+ " 'hint': 'synonyms for foiled',\n",
+ " 'clues': [('baffle',\n",
+ " 'hinder or prevent (the efforts, plans, or desires) of'),\n",
+ " ('scotch', 'hinder or prevent (the efforts, plans, or desires) of'),\n",
+ " ('spoil', 'hinder or prevent (the efforts, plans, or desires) of'),\n",
+ " ('queer', 'hinder or prevent (the efforts, plans, or desires) of'),\n",
+ " ('frustrate', 'hinder or prevent (the efforts, plans, or desires) of'),\n",
+ " ('foil', 'cover or back with foil'),\n",
+ " ('bilk', 'hinder or prevent (the efforts, plans, or desires) of'),\n",
+ " ('thwart', 'hinder or prevent (the efforts, plans, or desires) of'),\n",
+ " ('cross', 'hinder or prevent (the efforts, plans, or desires) of')]},\n",
+ " {'answer': 'folding',\n",
+ " 'hint': 'synonyms for folding',\n",
+ " 'clues': [('fold up', 'bend or lay so that one part covers the other'),\n",
+ " ('fold', 'become folded or folded up'),\n",
+ " ('pen up', 'confine in a fold, like sheep'),\n",
+ " ('shut down', 'cease to operate or cause to cease operating'),\n",
+ " ('close down', 'cease to operate or cause to cease operating'),\n",
+ " ('turn up', 'bend or lay so that one part covers the other'),\n",
+ " ('close', 'cease to operate or cause to cease operating'),\n",
+ " ('close up', 'cease to operate or cause to cease operating')]},\n",
+ " {'answer': 'following',\n",
+ " 'hint': 'synonyms for following',\n",
+ " 'clues': [('be',\n",
+ " 'work in a specific place, with a specific subject, or in a specific function'),\n",
+ " ('comply', \"act in accordance with someone's rules, commands, or wishes\"),\n",
+ " ('accompany', 'perform an accompaniment to'),\n",
+ " ('follow',\n",
+ " 'follow, discover, or ascertain the course of development of something'),\n",
+ " ('trace',\n",
+ " 'follow, discover, or ascertain the course of development of something'),\n",
+ " ('come after', 'be the successor (of)'),\n",
+ " ('espouse',\n",
+ " 'choose and follow; as of theories, ideas, policies, strategies or plans'),\n",
+ " ('travel along', 'travel along a certain course'),\n",
+ " ('come', 'to be the product or result'),\n",
+ " ('watch over', 'follow with the eyes or the mind'),\n",
+ " ('play along', 'perform an accompaniment to'),\n",
+ " ('succeed', 'be the successor (of)'),\n",
+ " ('stick to', 'keep to'),\n",
+ " ('abide by',\n",
+ " \"act in accordance with someone's rules, commands, or wishes\"),\n",
+ " ('watch', 'follow with the eyes or the mind'),\n",
+ " ('adopt',\n",
+ " 'choose and follow; as of theories, ideas, policies, strategies or plans'),\n",
+ " ('survey', 'keep under surveillance'),\n",
+ " ('stick with', 'keep to'),\n",
+ " ('fall out', 'come as a logical consequence; follow logically'),\n",
+ " ('keep abreast', 'keep informed'),\n",
+ " ('take after', 'imitate in behavior; take as a model'),\n",
+ " ('postdate', 'be later in time'),\n",
+ " ('conform to', 'behave in accordance or in agreement with'),\n",
+ " ('observe', 'follow with the eyes or the mind'),\n",
+ " ('keep an eye on', 'follow with the eyes or the mind'),\n",
+ " ('keep up', 'keep informed'),\n",
+ " ('pursue', 'follow in or as if in pursuit'),\n",
+ " ('surveil', 'keep under surveillance')]},\n",
+ " {'answer': 'fooling',\n",
+ " 'hint': 'synonyms for fooling',\n",
+ " 'clues': [('fool away', 'spend frivolously and unwisely'),\n",
+ " ('fool', 'make a fool or dupe of'),\n",
+ " ('dissipate', 'spend frivolously and unwisely'),\n",
+ " ('gull', 'fool or hoax'),\n",
+ " ('put one across', 'fool or hoax'),\n",
+ " ('arse around', 'indulge in horseplay'),\n",
+ " ('frivol away', 'spend frivolously and unwisely'),\n",
+ " ('befool', 'make a fool or dupe of'),\n",
+ " ('cod', 'fool or hoax'),\n",
+ " ('put one over', 'fool or hoax'),\n",
+ " ('shoot', 'spend frivolously and unwisely'),\n",
+ " ('fritter', 'spend frivolously and unwisely'),\n",
+ " ('dupe', 'fool or hoax'),\n",
+ " ('fool around', 'indulge in horseplay'),\n",
+ " ('take in', 'fool or hoax'),\n",
+ " ('put on', 'fool or hoax'),\n",
+ " ('slang', 'fool or hoax'),\n",
+ " ('fritter away', 'spend frivolously and unwisely')]},\n",
+ " {'answer': 'footed',\n",
+ " 'hint': 'synonyms for footed',\n",
+ " 'clues': [('foot', 'add a column of numbers'),\n",
+ " ('foot up', 'add a column of numbers'),\n",
+ " ('pick', 'pay for something'),\n",
+ " ('leg it', 'walk'),\n",
+ " ('hoof', 'walk'),\n",
+ " ('hoof it', 'walk')]},\n",
+ " {'answer': 'footless',\n",
+ " 'hint': 'synonyms for footless',\n",
+ " 'clues': [('loaf', 'be about'),\n",
+ " ('mess about', 'be about'),\n",
+ " ('tarry', 'be about'),\n",
+ " ('loiter', 'be about'),\n",
+ " ('lollygag', 'be about'),\n",
+ " ('lounge', 'be about'),\n",
+ " ('hang around', 'be about'),\n",
+ " ('lurk', 'be about'),\n",
+ " ('footle', 'be about'),\n",
+ " ('mill about', 'be about'),\n",
+ " ('linger', 'be about'),\n",
+ " ('mill around', 'be about')]},\n",
+ " {'answer': 'footling',\n",
+ " 'hint': 'synonyms for footling',\n",
+ " 'clues': [('loaf', 'be about'),\n",
+ " ('mess about', 'be about'),\n",
+ " ('tarry', 'be about'),\n",
+ " ('loiter', 'be about'),\n",
+ " ('lollygag', 'be about'),\n",
+ " ('lounge', 'be about'),\n",
+ " ('hang around', 'be about'),\n",
+ " ('lurk', 'be about'),\n",
+ " ('footle', 'be about'),\n",
+ " ('mill about', 'be about'),\n",
+ " ('linger', 'be about'),\n",
+ " ('mill around', 'be about')]},\n",
+ " {'answer': 'forbidden',\n",
+ " 'hint': 'synonyms for forbidden',\n",
+ " 'clues': [('preclude', 'keep from happening or arising; make impossible'),\n",
+ " ('interdict', 'command against'),\n",
+ " ('nix', 'command against'),\n",
+ " ('veto', 'command against'),\n",
+ " ('proscribe', 'command against'),\n",
+ " ('forbid', 'keep from happening or arising; make impossible'),\n",
+ " ('forestall', 'keep from happening or arising; make impossible'),\n",
+ " ('prevent', 'keep from happening or arising; make impossible'),\n",
+ " ('foreclose', 'keep from happening or arising; make impossible'),\n",
+ " ('disallow', 'command against'),\n",
+ " ('prohibit', 'command against')]},\n",
+ " {'answer': 'forbidding',\n",
+ " 'hint': 'synonyms for forbidding',\n",
+ " 'clues': [('preclude', 'keep from happening or arising; make impossible'),\n",
+ " ('interdict', 'command against'),\n",
+ " ('nix', 'command against'),\n",
+ " ('veto', 'command against'),\n",
+ " ('proscribe', 'command against'),\n",
+ " ('forbid', 'keep from happening or arising; make impossible'),\n",
+ " ('forestall', 'keep from happening or arising; make impossible'),\n",
+ " ('prevent', 'keep from happening or arising; make impossible'),\n",
+ " ('foreclose', 'keep from happening or arising; make impossible'),\n",
+ " ('disallow', 'command against'),\n",
+ " ('prohibit', 'command against')]},\n",
+ " {'answer': 'forced',\n",
+ " 'hint': 'synonyms for forced',\n",
+ " 'clues': [('force', 'cause to move by pulling'),\n",
+ " ('ram',\n",
+ " 'force into or from an action or state, either physically or metaphorically'),\n",
+ " ('push', 'move with force,'),\n",
+ " ('hale',\n",
+ " 'to cause to do through pressure or necessity, by physical, moral or intellectual means :'),\n",
+ " ('squeeze',\n",
+ " 'to cause to do through pressure or necessity, by physical, moral or intellectual means :'),\n",
+ " ('draw', 'cause to move by pulling'),\n",
+ " ('pressure',\n",
+ " 'to cause to do through pressure or necessity, by physical, moral or intellectual means :'),\n",
+ " ('thrust', 'impose urgently, importunately, or inexorably'),\n",
+ " ('pull', 'cause to move by pulling'),\n",
+ " ('storm', 'take by force'),\n",
+ " ('wedge', 'squeeze like a wedge into a tight space'),\n",
+ " ('impel', 'urge or force (a person) to an action; constrain or motivate'),\n",
+ " ('coerce',\n",
+ " 'to cause to do through pressure or necessity, by physical, moral or intellectual means :'),\n",
+ " ('drive',\n",
+ " 'force into or from an action or state, either physically or metaphorically')]},\n",
+ " {'answer': 'foreboding',\n",
+ " 'hint': 'synonyms for foreboding',\n",
+ " 'clues': [('promise', 'make a prediction about; tell in advance'),\n",
+ " ('call', 'make a prediction about; tell in advance'),\n",
+ " ('anticipate', 'make a prediction about; tell in advance'),\n",
+ " ('prognosticate', 'make a prediction about; tell in advance'),\n",
+ " ('predict', 'make a prediction about; tell in advance'),\n",
+ " ('forebode', 'make a prediction about; tell in advance'),\n",
+ " ('foretell', 'make a prediction about; tell in advance')]},\n",
+ " {'answer': 'foregoing',\n",
+ " 'hint': 'synonyms for foregoing',\n",
+ " 'clues': [('forego', 'do without or cease to hold or adhere to'),\n",
+ " ('waive', 'do without or cease to hold or adhere to'),\n",
+ " ('relinquish', 'do without or cease to hold or adhere to'),\n",
+ " ('give up',\n",
+ " 'lose (s.th.) or lose the right to (s.th.) by some error, offense, or crime'),\n",
+ " ('throw overboard',\n",
+ " 'lose (s.th.) or lose the right to (s.th.) by some error, offense, or crime'),\n",
+ " ('antecede', 'be earlier in time; go back further'),\n",
+ " ('dispense with', 'do without or cease to hold or adhere to'),\n",
+ " ('antedate', 'be earlier in time; go back further'),\n",
+ " ('forfeit',\n",
+ " 'lose (s.th.) or lose the right to (s.th.) by some error, offense, or crime'),\n",
+ " ('predate', 'be earlier in time; go back further'),\n",
+ " ('precede', 'be earlier in time; go back further'),\n",
+ " ('foreswear', 'do without or cease to hold or adhere to')]},\n",
+ " {'answer': 'foregone',\n",
+ " 'hint': 'synonyms for foregone',\n",
+ " 'clues': [('forego', 'do without or cease to hold or adhere to'),\n",
+ " ('waive', 'do without or cease to hold or adhere to'),\n",
+ " ('relinquish', 'do without or cease to hold or adhere to'),\n",
+ " ('give up',\n",
+ " 'lose (s.th.) or lose the right to (s.th.) by some error, offense, or crime'),\n",
+ " ('throw overboard',\n",
+ " 'lose (s.th.) or lose the right to (s.th.) by some error, offense, or crime'),\n",
+ " ('antecede', 'be earlier in time; go back further'),\n",
+ " ('dispense with', 'do without or cease to hold or adhere to'),\n",
+ " ('antedate', 'be earlier in time; go back further'),\n",
+ " ('forfeit',\n",
+ " 'lose (s.th.) or lose the right to (s.th.) by some error, offense, or crime'),\n",
+ " ('predate', 'be earlier in time; go back further'),\n",
+ " ('precede', 'be earlier in time; go back further'),\n",
+ " ('foreswear', 'do without or cease to hold or adhere to')]},\n",
+ " {'answer': 'foreshadowing',\n",
+ " 'hint': 'synonyms for foreshadowing',\n",
+ " 'clues': [('omen', 'indicate by signs'),\n",
+ " ('foretell', 'indicate by signs'),\n",
+ " ('prognosticate', 'indicate by signs'),\n",
+ " ('predict', 'indicate by signs'),\n",
+ " ('auspicate', 'indicate by signs'),\n",
+ " ('prefigure', 'indicate by signs'),\n",
+ " ('forecast', 'indicate by signs'),\n",
+ " ('portend', 'indicate by signs'),\n",
+ " ('bode', 'indicate by signs'),\n",
+ " ('betoken', 'indicate by signs'),\n",
+ " ('foreshadow', 'indicate by signs'),\n",
+ " ('presage', 'indicate by signs'),\n",
+ " ('augur', 'indicate by signs')]},\n",
+ " {'answer': 'forfeit',\n",
+ " 'hint': 'synonyms for forfeit',\n",
+ " 'clues': [('forgo',\n",
+ " 'lose (s.th.) or lose the right to (s.th.) by some error, offense, or crime'),\n",
+ " ('give up',\n",
+ " 'lose (s.th.) or lose the right to (s.th.) by some error, offense, or crime'),\n",
+ " ('throw overboard',\n",
+ " 'lose (s.th.) or lose the right to (s.th.) by some error, offense, or crime'),\n",
+ " ('waive',\n",
+ " 'lose (s.th.) or lose the right to (s.th.) by some error, offense, or crime')]},\n",
+ " {'answer': 'forfeited',\n",
+ " 'hint': 'synonyms for forfeited',\n",
+ " 'clues': [('forfeit',\n",
+ " 'lose (s.th.) or lose the right to (s.th.) by some error, offense, or crime'),\n",
+ " ('forgo',\n",
+ " 'lose (s.th.) or lose the right to (s.th.) by some error, offense, or crime'),\n",
+ " ('give up',\n",
+ " 'lose (s.th.) or lose the right to (s.th.) by some error, offense, or crime'),\n",
+ " ('throw overboard',\n",
+ " 'lose (s.th.) or lose the right to (s.th.) by some error, offense, or crime'),\n",
+ " ('waive',\n",
+ " 'lose (s.th.) or lose the right to (s.th.) by some error, offense, or crime')]},\n",
+ " {'answer': 'forged',\n",
+ " 'hint': 'synonyms for forged',\n",
+ " 'clues': [('forge', 'make something, usually for a specific function'),\n",
+ " ('formulate',\n",
+ " 'come up with (an idea, plan, explanation, theory, or principle) after a mental effort'),\n",
+ " ('excogitate',\n",
+ " 'come up with (an idea, plan, explanation, theory, or principle) after a mental effort'),\n",
+ " ('work', 'make something, usually for a specific function'),\n",
+ " ('fake', 'make a copy of with the intent to deceive'),\n",
+ " ('devise',\n",
+ " 'come up with (an idea, plan, explanation, theory, or principle) after a mental effort'),\n",
+ " ('form', 'make something, usually for a specific function'),\n",
+ " ('contrive',\n",
+ " 'come up with (an idea, plan, explanation, theory, or principle) after a mental effort'),\n",
+ " ('hammer', 'create by hammering'),\n",
+ " ('spirt', 'move or act with a sudden increase in speed or energy'),\n",
+ " ('mold', 'make something, usually for a specific function'),\n",
+ " ('counterfeit', 'make a copy of with the intent to deceive'),\n",
+ " ('spurt', 'move or act with a sudden increase in speed or energy'),\n",
+ " ('shape', 'make something, usually for a specific function'),\n",
+ " ('invent',\n",
+ " 'come up with (an idea, plan, explanation, theory, or principle) after a mental effort'),\n",
+ " ('fashion', 'make out of components (often in an improvising manner)')]},\n",
+ " {'answer': 'forgotten',\n",
+ " 'hint': 'synonyms for forgotten',\n",
+ " 'clues': [('draw a blank', 'be unable to remember'),\n",
+ " ('block', 'be unable to remember'),\n",
+ " ('forget', 'leave behind unintentionally'),\n",
+ " ('leave', 'leave behind unintentionally'),\n",
+ " ('bury', 'dismiss from the mind; stop remembering'),\n",
+ " ('blank out', 'be unable to remember')]},\n",
+ " {'answer': 'forked',\n",
+ " 'hint': 'synonyms for forked',\n",
+ " 'clues': [('pitchfork', 'lift with a pitchfork'),\n",
+ " ('ramify', 'divide into two or more branches so as to form a fork'),\n",
+ " ('fork', 'shape like a fork'),\n",
+ " ('furcate', 'divide into two or more branches so as to form a fork'),\n",
+ " ('branch', 'divide into two or more branches so as to form a fork'),\n",
+ " ('separate', 'divide into two or more branches so as to form a fork')]},\n",
+ " {'answer': 'formed',\n",
+ " 'hint': 'synonyms for formed',\n",
+ " 'clues': [('forge', 'make something, usually for a specific function'),\n",
+ " ('form', 'assume a form or shape'),\n",
+ " ('take form', 'develop into a distinctive entity'),\n",
+ " ('make', 'to compose or represent:'),\n",
+ " ('work', 'make something, usually for a specific function'),\n",
+ " ('imprint', 'establish or impress firmly in the mind'),\n",
+ " ('shape', 'give shape or form to'),\n",
+ " ('spring', 'develop into a distinctive entity'),\n",
+ " ('constitute', 'to compose or represent:'),\n",
+ " ('take shape', 'develop into a distinctive entity'),\n",
+ " ('organize', 'create (as an entity)'),\n",
+ " ('mold', 'make something, usually for a specific function')]},\n",
+ " {'answer': 'formulated',\n",
+ " 'hint': 'synonyms for formulated',\n",
+ " 'clues': [('explicate', 'elaborate, as of theories and hypotheses'),\n",
+ " ('contrive',\n",
+ " 'come up with (an idea, plan, explanation, theory, or principle) after a mental effort'),\n",
+ " ('formulate', 'put into words or an expression'),\n",
+ " ('forge',\n",
+ " 'come up with (an idea, plan, explanation, theory, or principle) after a mental effort'),\n",
+ " ('excogitate',\n",
+ " 'come up with (an idea, plan, explanation, theory, or principle) after a mental effort'),\n",
+ " ('articulate', 'put into words or an expression'),\n",
+ " ('develop', 'elaborate, as of theories and hypotheses'),\n",
+ " ('give voice', 'put into words or an expression'),\n",
+ " ('word', 'put into words or an expression'),\n",
+ " ('invent',\n",
+ " 'come up with (an idea, plan, explanation, theory, or principle) after a mental effort'),\n",
+ " ('phrase', 'put into words or an expression'),\n",
+ " ('devise',\n",
+ " 'come up with (an idea, plan, explanation, theory, or principle) after a mental effort')]},\n",
+ " {'answer': 'fortified',\n",
+ " 'hint': 'synonyms for fortified',\n",
+ " 'clues': [('spike', 'add alcohol to (beverages)'),\n",
+ " ('gird', 'prepare oneself for a military confrontation'),\n",
+ " ('arm', 'prepare oneself for a military confrontation'),\n",
+ " ('beef up', 'make strong or stronger'),\n",
+ " ('fortify', 'enclose by or as if by a fortification'),\n",
+ " ('lace', 'add alcohol to (beverages)'),\n",
+ " ('strengthen', 'make strong or stronger'),\n",
+ " ('fort', 'enclose by or as if by a fortification'),\n",
+ " ('build up', 'prepare oneself for a military confrontation')]},\n",
+ " {'answer': 'foul',\n",
+ " 'hint': 'synonyms for foul',\n",
+ " 'clues': [('maculate', 'spot, stain, or pollute'),\n",
+ " ('back up', 'become or cause to become obstructed'),\n",
+ " ('befoul', 'spot, stain, or pollute'),\n",
+ " ('choke off', 'become or cause to become obstructed'),\n",
+ " ('contaminate', 'make impure'),\n",
+ " ('congest', 'become or cause to become obstructed'),\n",
+ " ('defile', 'spot, stain, or pollute'),\n",
+ " ('clog', 'become or cause to become obstructed'),\n",
+ " ('pollute', 'make impure'),\n",
+ " ('choke', 'become or cause to become obstructed'),\n",
+ " ('clog up', 'become or cause to become obstructed')]},\n",
+ " {'answer': 'fouled',\n",
+ " 'hint': 'synonyms for fouled',\n",
+ " 'clues': [('maculate', 'spot, stain, or pollute'),\n",
+ " ('foul', 'commit a foul; break the rules'),\n",
+ " ('back up', 'become or cause to become obstructed'),\n",
+ " ('befoul', 'spot, stain, or pollute'),\n",
+ " ('contaminate', 'make impure'),\n",
+ " ('choke off', 'become or cause to become obstructed'),\n",
+ " ('congest', 'become or cause to become obstructed'),\n",
+ " ('clog', 'become or cause to become obstructed'),\n",
+ " ('defile', 'spot, stain, or pollute'),\n",
+ " ('pollute', 'make impure'),\n",
+ " ('choke', 'become or cause to become obstructed'),\n",
+ " ('clog up', 'become or cause to become obstructed')]},\n",
+ " {'answer': 'found',\n",
+ " 'hint': 'synonyms for found',\n",
+ " 'clues': [('find',\n",
+ " 'perceive oneself to be in a certain condition or place'),\n",
+ " ('base', 'use as a basis for; found on'),\n",
+ " ('see', 'perceive or be contemporaneous with'),\n",
+ " ('line up', 'get something or somebody for a specific purpose'),\n",
+ " ('get', 'receive a specified treatment (abstract)'),\n",
+ " ('recover', 'get or find back; recover the use of'),\n",
+ " ('determine',\n",
+ " 'establish after a calculation, investigation, experiment, survey, or study'),\n",
+ " ('establish', 'set up or found'),\n",
+ " ('notice', 'discover or determine the existence, presence, or fact of'),\n",
+ " ('find out',\n",
+ " 'establish after a calculation, investigation, experiment, survey, or study'),\n",
+ " ('rule', 'decide on and make a declaration about'),\n",
+ " ('retrieve', 'get or find back; recover the use of'),\n",
+ " ('feel',\n",
+ " 'come to believe on the basis of emotion, intuitions, or indefinite grounds'),\n",
+ " ('detect', 'discover or determine the existence, presence, or fact of'),\n",
+ " ('receive', 'receive a specified treatment (abstract)'),\n",
+ " ('regain',\n",
+ " 'come upon after searching; find the location of something that was missed or lost'),\n",
+ " ('bump', 'come upon, as if by accident; meet with'),\n",
+ " ('observe', 'discover or determine the existence, presence, or fact of'),\n",
+ " ('obtain', 'receive a specified treatment (abstract)'),\n",
+ " ('incur', 'receive a specified treatment (abstract)'),\n",
+ " ('discover', 'make a discovery, make a new finding'),\n",
+ " ('launch', 'set up or found'),\n",
+ " ('set up', 'set up or found'),\n",
+ " ('ascertain',\n",
+ " 'establish after a calculation, investigation, experiment, survey, or study'),\n",
+ " ('chance', 'come upon, as if by accident; meet with'),\n",
+ " ('institute', 'set up or lay the groundwork for'),\n",
+ " ('find oneself',\n",
+ " \"accept and make use of one's personality, abilities, and situation\"),\n",
+ " ('come up', 'get something or somebody for a specific purpose'),\n",
+ " ('happen', 'come upon, as if by accident; meet with'),\n",
+ " ('witness', 'perceive or be contemporaneous with'),\n",
+ " ('ground', 'use as a basis for; found on'),\n",
+ " ('plant', 'set up or lay the groundwork for'),\n",
+ " ('constitute', 'set up or lay the groundwork for'),\n",
+ " ('encounter', 'come upon, as if by accident; meet with'),\n",
+ " ('get hold', 'get something or somebody for a specific purpose')]},\n",
+ " {'answer': 'framed',\n",
+ " 'hint': 'synonyms for framed',\n",
+ " 'clues': [('frame', 'enclose in a frame, as of a picture'),\n",
+ " ('entrap', 'take or catch as if in a snare or trap'),\n",
+ " ('compose', 'make up plans or basic details for'),\n",
+ " ('couch', 'formulate in a particular style or language'),\n",
+ " ('ensnare', 'take or catch as if in a snare or trap'),\n",
+ " ('put', 'formulate in a particular style or language'),\n",
+ " ('redact', 'formulate in a particular style or language'),\n",
+ " ('border', 'enclose in or as if in a frame'),\n",
+ " ('draw up', 'make up plans or basic details for'),\n",
+ " ('frame in', 'enclose in or as if in a frame'),\n",
+ " ('cast', 'formulate in a particular style or language'),\n",
+ " ('frame up', 'construct by fitting or uniting parts together'),\n",
+ " ('set up', 'take or catch as if in a snare or trap')]},\n",
+ " {'answer': 'frayed',\n",
+ " 'hint': 'synonyms for frayed',\n",
+ " 'clues': [('frazzle', 'wear away by rubbing'),\n",
+ " ('chafe', 'cause friction'),\n",
+ " ('fray', 'cause friction'),\n",
+ " ('rub', 'cause friction'),\n",
+ " ('scratch', 'cause friction'),\n",
+ " ('fret', 'cause friction')]},\n",
+ " {'answer': 'free',\n",
+ " 'hint': 'synonyms for free',\n",
+ " 'clues': [('disembarrass', 'relieve from'),\n",
+ " ('give up', 'part with a possession or right'),\n",
+ " ('release', 'make (assets) available'),\n",
+ " ('exempt', 'grant relief or an exemption from a rule or requirement to'),\n",
+ " ('absolve', 'let off the hook'),\n",
+ " ('loose', 'grant freedom to; free from confinement'),\n",
+ " ('liberate', 'grant freedom to; free from confinement'),\n",
+ " ('relieve', 'grant relief or an exemption from a rule or requirement to'),\n",
+ " ('unblock', 'make (assets) available'),\n",
+ " ('disengage', 'free or remove obstruction from'),\n",
+ " ('justify', 'let off the hook'),\n",
+ " ('resign', 'part with a possession or right'),\n",
+ " ('rid', 'relieve from'),\n",
+ " ('discharge', 'free from obligations or duties'),\n",
+ " ('unfreeze', 'make (assets) available'),\n",
+ " ('relinquish', 'part with a possession or right'),\n",
+ " ('unloosen', 'grant freedom to; free from confinement'),\n",
+ " ('dislodge', 'remove or force out from a position')]},\n",
+ " {'answer': 'frequent',\n",
+ " 'hint': 'synonyms for frequent',\n",
+ " 'clues': [('patronise',\n",
+ " \"do one's shopping at; do business with; be a customer or client of\"),\n",
+ " ('haunt', 'be a regular or frequent visitor to a certain place'),\n",
+ " ('buy at',\n",
+ " \"do one's shopping at; do business with; be a customer or client of\"),\n",
+ " ('shop',\n",
+ " \"do one's shopping at; do business with; be a customer or client of\"),\n",
+ " ('shop at',\n",
+ " \"do one's shopping at; do business with; be a customer or client of\"),\n",
+ " ('sponsor',\n",
+ " \"do one's shopping at; do business with; be a customer or client of\")]},\n",
+ " {'answer': 'fretted',\n",
+ " 'hint': 'synonyms for fretted',\n",
+ " 'clues': [('fret', 'be too tight; rub or press'),\n",
+ " ('niggle', 'worry unnecessarily or excessively'),\n",
+ " ('fuss', 'worry unnecessarily or excessively'),\n",
+ " ('chafe', 'become or make sore by or as if by rubbing'),\n",
+ " ('rub', 'cause friction'),\n",
+ " ('gall', 'become or make sore by or as if by rubbing'),\n",
+ " ('gag', 'be too tight; rub or press'),\n",
+ " ('grate', 'gnaw into; make resentful or angry'),\n",
+ " ('erode', 'remove soil or rock'),\n",
+ " ('eat away', 'remove soil or rock'),\n",
+ " ('fray', 'cause friction'),\n",
+ " ('rankle', 'gnaw into; make resentful or angry'),\n",
+ " ('scratch', 'cause friction'),\n",
+ " ('choke', 'be too tight; rub or press'),\n",
+ " ('eat into', 'gnaw into; make resentful or angry')]},\n",
+ " {'answer': 'frothing',\n",
+ " 'hint': 'synonyms for frothing',\n",
+ " 'clues': [('form bubbles', 'become bubbly or frothy or foaming'),\n",
+ " ('froth', 'exude or expel foam'),\n",
+ " ('sparkle', 'become bubbly or frothy or foaming'),\n",
+ " ('foam', 'become bubbly or frothy or foaming'),\n",
+ " ('spume', 'make froth or foam and become bubbly'),\n",
+ " ('suds', 'make froth or foam and become bubbly'),\n",
+ " ('fizz', 'become bubbly or frothy or foaming'),\n",
+ " ('effervesce', 'become bubbly or frothy or foaming')]},\n",
+ " {'answer': 'frozen',\n",
+ " 'hint': 'synonyms for frozen',\n",
+ " 'clues': [('suspend',\n",
+ " 'stop a process or a habit by imposing a freeze on it'),\n",
+ " ('freeze', 'stop a process or a habit by imposing a freeze on it'),\n",
+ " ('stop dead', 'stop moving or become immobilized'),\n",
+ " ('immobilize', 'prohibit the conversion or use of (assets)'),\n",
+ " ('freeze out', 'change from a liquid to a solid when cold'),\n",
+ " ('freeze down', 'change from a liquid to a solid when cold'),\n",
+ " ('block', 'prohibit the conversion or use of (assets)')]},\n",
+ " {'answer': 'frustrated',\n",
+ " 'hint': 'synonyms for frustrated',\n",
+ " 'clues': [('rag', 'treat cruelly'),\n",
+ " ('baffle', 'hinder or prevent (the efforts, plans, or desires) of'),\n",
+ " ('scotch', 'hinder or prevent (the efforts, plans, or desires) of'),\n",
+ " ('torment', 'treat cruelly'),\n",
+ " ('spoil', 'hinder or prevent (the efforts, plans, or desires) of'),\n",
+ " ('queer', 'hinder or prevent (the efforts, plans, or desires) of'),\n",
+ " ('frustrate', 'hinder or prevent (the efforts, plans, or desires) of'),\n",
+ " ('bilk', 'hinder or prevent (the efforts, plans, or desires) of'),\n",
+ " ('bedevil', 'treat cruelly'),\n",
+ " ('foil', 'hinder or prevent (the efforts, plans, or desires) of'),\n",
+ " ('thwart', 'hinder or prevent (the efforts, plans, or desires) of'),\n",
+ " ('crucify', 'treat cruelly'),\n",
+ " ('cross', 'hinder or prevent (the efforts, plans, or desires) of'),\n",
+ " ('dun', 'treat cruelly')]},\n",
+ " {'answer': 'frustrating',\n",
+ " 'hint': 'synonyms for frustrating',\n",
+ " 'clues': [('rag', 'treat cruelly'),\n",
+ " ('baffle', 'hinder or prevent (the efforts, plans, or desires) of'),\n",
+ " ('scotch', 'hinder or prevent (the efforts, plans, or desires) of'),\n",
+ " ('torment', 'treat cruelly'),\n",
+ " ('spoil', 'hinder or prevent (the efforts, plans, or desires) of'),\n",
+ " ('queer', 'hinder or prevent (the efforts, plans, or desires) of'),\n",
+ " ('frustrate', 'hinder or prevent (the efforts, plans, or desires) of'),\n",
+ " ('bilk', 'hinder or prevent (the efforts, plans, or desires) of'),\n",
+ " ('bedevil', 'treat cruelly'),\n",
+ " ('foil', 'hinder or prevent (the efforts, plans, or desires) of'),\n",
+ " ('thwart', 'hinder or prevent (the efforts, plans, or desires) of'),\n",
+ " ('crucify', 'treat cruelly'),\n",
+ " ('cross', 'hinder or prevent (the efforts, plans, or desires) of'),\n",
+ " ('dun', 'treat cruelly')]},\n",
+ " {'answer': 'fucking',\n",
+ " 'hint': 'synonyms for fucking',\n",
+ " 'clues': [('have it away', 'have sexual intercourse with'),\n",
+ " ('roll in the hay', 'have sexual intercourse with'),\n",
+ " ('jazz', 'have sexual intercourse with'),\n",
+ " ('get it on', 'have sexual intercourse with'),\n",
+ " ('hump', 'have sexual intercourse with'),\n",
+ " ('screw', 'have sexual intercourse with'),\n",
+ " ('have sex', 'have sexual intercourse with'),\n",
+ " ('have intercourse', 'have sexual intercourse with'),\n",
+ " ('eff', 'have sexual intercourse with'),\n",
+ " ('get laid', 'have sexual intercourse with'),\n",
+ " ('love', 'have sexual intercourse with'),\n",
+ " ('have it off', 'have sexual intercourse with'),\n",
+ " ('fuck', 'have sexual intercourse with'),\n",
+ " ('do it', 'have sexual intercourse with'),\n",
+ " ('be intimate', 'have sexual intercourse with'),\n",
+ " ('bang', 'have sexual intercourse with'),\n",
+ " ('bed', 'have sexual intercourse with'),\n",
+ " ('make love', 'have sexual intercourse with'),\n",
+ " ('have a go at it', 'have sexual intercourse with'),\n",
+ " ('bonk', 'have sexual intercourse with'),\n",
+ " ('sleep with', 'have sexual intercourse with'),\n",
+ " ('sleep together', 'have sexual intercourse with'),\n",
+ " ('know', 'have sexual intercourse with'),\n",
+ " ('make out', 'have sexual intercourse with'),\n",
+ " ('lie with', 'have sexual intercourse with')]},\n",
+ " {'answer': 'fuddled',\n",
+ " 'hint': 'synonyms for fuddled',\n",
+ " 'clues': [('bedevil',\n",
+ " 'be confusing or perplexing to; cause to be unable to think clearly'),\n",
+ " ('discombobulate',\n",
+ " 'be confusing or perplexing to; cause to be unable to think clearly'),\n",
+ " ('booze', 'consume alcohol'),\n",
+ " ('befuddle', 'make stupid with alcohol'),\n",
+ " ('fox',\n",
+ " 'be confusing or perplexing to; cause to be unable to think clearly'),\n",
+ " ('throw',\n",
+ " 'be confusing or perplexing to; cause to be unable to think clearly'),\n",
+ " ('drink', 'consume alcohol'),\n",
+ " ('confound',\n",
+ " 'be confusing or perplexing to; cause to be unable to think clearly'),\n",
+ " ('confuse',\n",
+ " 'be confusing or perplexing to; cause to be unable to think clearly')]},\n",
+ " {'answer': 'fulfilled',\n",
+ " 'hint': 'synonyms for fulfilled',\n",
+ " 'clues': [('fulfil', 'put in effect'),\n",
+ " ('carry through', 'put in effect'),\n",
+ " ('meet', 'fill or meet a want or need'),\n",
+ " ('satisfy', 'fill or meet a want or need'),\n",
+ " ('fill', 'fill or meet a want or need'),\n",
+ " ('action', 'put in effect'),\n",
+ " ('carry out', 'put in effect'),\n",
+ " ('live up to', 'meet the requirements or expectations of'),\n",
+ " ('execute', 'put in effect'),\n",
+ " ('accomplish', 'put in effect')]},\n",
+ " {'answer': 'fumbling',\n",
+ " 'hint': 'synonyms for fumbling',\n",
+ " 'clues': [('muck up', 'make a mess of, destroy or ruin'),\n",
+ " ('fumble', 'make a mess of, destroy or ruin'),\n",
+ " ('bungle', 'make a mess of, destroy or ruin'),\n",
+ " ('grope', 'feel about uncertainly or blindly'),\n",
+ " ('bollix', 'make a mess of, destroy or ruin'),\n",
+ " ('ball up', 'make a mess of, destroy or ruin'),\n",
+ " ('screw up', 'make a mess of, destroy or ruin'),\n",
+ " ('botch up', 'make a mess of, destroy or ruin'),\n",
+ " ('spoil', 'make a mess of, destroy or ruin'),\n",
+ " ('bumble', 'make a mess of, destroy or ruin'),\n",
+ " ('mishandle', 'make a mess of, destroy or ruin'),\n",
+ " ('foul up', 'make a mess of, destroy or ruin'),\n",
+ " ('muff', 'make a mess of, destroy or ruin'),\n",
+ " ('louse up', 'make a mess of, destroy or ruin'),\n",
+ " ('fluff', 'make a mess of, destroy or ruin'),\n",
+ " ('bodge', 'make a mess of, destroy or ruin'),\n",
+ " ('blunder', \"make one's way clumsily or blindly\"),\n",
+ " ('bollocks up', 'make a mess of, destroy or ruin'),\n",
+ " ('bollocks', 'make a mess of, destroy or ruin'),\n",
+ " ('blow', 'make a mess of, destroy or ruin'),\n",
+ " ('botch', 'make a mess of, destroy or ruin'),\n",
+ " ('flub', 'make a mess of, destroy or ruin'),\n",
+ " ('mess up', 'make a mess of, destroy or ruin'),\n",
+ " ('bollix up', 'make a mess of, destroy or ruin'),\n",
+ " ('bobble', 'make a mess of, destroy or ruin')]},\n",
+ " {'answer': 'fumed',\n",
+ " 'hint': 'synonyms for fumed',\n",
+ " 'clues': [('fume', \"be wet with sweat or blood, as of one's face\"),\n",
+ " ('reek', \"be wet with sweat or blood, as of one's face\"),\n",
+ " ('fumigate',\n",
+ " 'treat with fumes, expose to fumes, especially with the aim of disinfecting or eradicating pests'),\n",
+ " ('smoke', 'emit a cloud of fine particles')]},\n",
+ " {'answer': 'functioning',\n",
+ " 'hint': 'synonyms for functioning',\n",
+ " 'clues': [('function',\n",
+ " 'perform duties attached to a particular office or place or function'),\n",
+ " ('run', 'perform as expected when applied'),\n",
+ " ('go', 'perform as expected when applied'),\n",
+ " ('serve', 'serve a purpose, role, or function'),\n",
+ " ('operate', 'perform as expected when applied'),\n",
+ " ('work', 'perform as expected when applied'),\n",
+ " ('officiate',\n",
+ " 'perform duties attached to a particular office or place or function')]},\n",
+ " {'answer': 'furnished',\n",
+ " 'hint': 'synonyms for furnished',\n",
+ " 'clues': [('furnish', 'give something useful or necessary to'),\n",
+ " ('provide', 'give something useful or necessary to'),\n",
+ " ('render', 'give something useful or necessary to'),\n",
+ " ('supply', 'give something useful or necessary to')]},\n",
+ " {'answer': 'furrowed',\n",
+ " 'hint': 'synonyms for furrowed',\n",
+ " 'clues': [('chase', 'cut a furrow into a columns'),\n",
+ " ('wrinkle', 'make wrinkled or creased'),\n",
+ " ('furrow', 'cut a furrow into a columns'),\n",
+ " ('chamfer', 'cut a furrow into a columns'),\n",
+ " ('groove', 'hollow out in the form of a furrow or groove'),\n",
+ " ('crease', 'make wrinkled or creased'),\n",
+ " ('rut', 'hollow out in the form of a furrow or groove')]},\n",
+ " {'answer': 'further',\n",
+ " 'hint': 'synonyms for further',\n",
+ " 'clues': [('foster', 'promote the growth of'),\n",
+ " ('boost', 'contribute to the progress or growth of'),\n",
+ " ('promote', 'contribute to the progress or growth of'),\n",
+ " ('encourage', 'contribute to the progress or growth of'),\n",
+ " ('advance', 'contribute to the progress or growth of')]},\n",
+ " {'answer': 'fused',\n",
+ " 'hint': 'synonyms for fused',\n",
+ " 'clues': [('fuse', 'mix together different elements'),\n",
+ " ('coalesce', 'mix together different elements'),\n",
+ " ('blend', 'mix together different elements'),\n",
+ " ('flux', 'mix together different elements'),\n",
+ " ('merge', 'mix together different elements'),\n",
+ " ('combine', 'mix together different elements'),\n",
+ " ('commingle', 'mix together different elements'),\n",
+ " ('immix', 'mix together different elements'),\n",
+ " ('mix', 'mix together different elements'),\n",
+ " ('meld', 'mix together different elements'),\n",
+ " ('conflate', 'mix together different elements')]},\n",
+ " {'answer': 'galled',\n",
+ " 'hint': 'synonyms for galled',\n",
+ " 'clues': [('gall', 'become or make sore by or as if by rubbing'),\n",
+ " ('irk', 'irritate or vex'),\n",
+ " ('chafe', 'become or make sore by or as if by rubbing'),\n",
+ " ('fret', 'become or make sore by or as if by rubbing')]},\n",
+ " {'answer': 'galling',\n",
+ " 'hint': 'synonyms for galling',\n",
+ " 'clues': [('gall', 'become or make sore by or as if by rubbing'),\n",
+ " ('irk', 'irritate or vex'),\n",
+ " ('chafe', 'become or make sore by or as if by rubbing'),\n",
+ " ('fret', 'become or make sore by or as if by rubbing')]},\n",
+ " {'answer': 'game',\n",
+ " 'hint': 'synonyms for game',\n",
+ " 'clues': [('gage', 'place a bet on'),\n",
+ " ('punt', 'place a bet on'),\n",
+ " ('stake', 'place a bet on'),\n",
+ " ('back', 'place a bet on'),\n",
+ " ('bet on', 'place a bet on')]},\n",
+ " {'answer': 'gaping',\n",
+ " 'hint': 'synonyms for gaping',\n",
+ " 'clues': [('gape', 'be wide open'),\n",
+ " ('goggle', 'look with amazement; look stupidly'),\n",
+ " ('gawp', 'look with amazement; look stupidly'),\n",
+ " ('yawn', 'be wide open'),\n",
+ " ('breach', 'make an opening or gap in'),\n",
+ " ('gawk', 'look with amazement; look stupidly')]},\n",
+ " {'answer': 'garbed',\n",
+ " 'hint': 'synonyms for garbed',\n",
+ " 'clues': [('raiment', 'provide with clothes or put clothes on'),\n",
+ " ('enclothe', 'provide with clothes or put clothes on'),\n",
+ " ('garb', 'provide with clothes or put clothes on'),\n",
+ " ('garment', 'provide with clothes or put clothes on'),\n",
+ " ('habilitate', 'provide with clothes or put clothes on'),\n",
+ " ('tog', 'provide with clothes or put clothes on'),\n",
+ " ('fit out', 'provide with clothes or put clothes on'),\n",
+ " ('dress', 'provide with clothes or put clothes on'),\n",
+ " ('apparel', 'provide with clothes or put clothes on')]},\n",
+ " {'answer': 'garbled',\n",
+ " 'hint': 'synonyms for garbled',\n",
+ " 'clues': [('warp',\n",
+ " 'make false by mutilation or addition; as of a message or story'),\n",
+ " ('distort',\n",
+ " 'make false by mutilation or addition; as of a message or story'),\n",
+ " ('garble',\n",
+ " 'make false by mutilation or addition; as of a message or story'),\n",
+ " ('falsify',\n",
+ " 'make false by mutilation or addition; as of a message or story')]},\n",
+ " {'answer': 'garmented',\n",
+ " 'hint': 'synonyms for garmented',\n",
+ " 'clues': [('raiment', 'provide with clothes or put clothes on'),\n",
+ " ('enclothe', 'provide with clothes or put clothes on'),\n",
+ " ('garb', 'provide with clothes or put clothes on'),\n",
+ " ('garment', 'provide with clothes or put clothes on'),\n",
+ " ('habilitate', 'provide with clothes or put clothes on'),\n",
+ " ('tog', 'provide with clothes or put clothes on'),\n",
+ " ('fit out', 'provide with clothes or put clothes on'),\n",
+ " ('dress', 'provide with clothes or put clothes on'),\n",
+ " ('apparel', 'provide with clothes or put clothes on')]},\n",
+ " {'answer': 'gathered',\n",
+ " 'hint': 'synonyms for gathered',\n",
+ " 'clues': [('pull together', 'assemble or get together'),\n",
+ " ('gather', 'draw and bring closer'),\n",
+ " ('meet', 'collect in one place'),\n",
+ " ('gain', 'increase or develop'),\n",
+ " ('cumulate', 'collect or gather'),\n",
+ " ('collect', 'assemble or get together'),\n",
+ " ('foregather', 'collect in one place'),\n",
+ " ('pucker', 'draw together into folds or puckers'),\n",
+ " ('pile up', 'collect or gather'),\n",
+ " ('tuck', 'draw together into folds or puckers'),\n",
+ " ('get together', 'get people together'),\n",
+ " ('garner', 'assemble or get together'),\n",
+ " ('assemble', 'collect in one place'),\n",
+ " ('conglomerate', 'collect or gather'),\n",
+ " ('amass', 'collect or gather')]},\n",
+ " {'answer': 'generalised',\n",
+ " 'hint': 'synonyms for generalised',\n",
+ " 'clues': [('generalise', 'speak or write in generalities'),\n",
+ " ('popularize',\n",
+ " 'cater to popular taste to make popular and present to the general public; bring into general or common use'),\n",
+ " ('vulgarize',\n",
+ " 'cater to popular taste to make popular and present to the general public; bring into general or common use'),\n",
+ " ('extrapolate', 'draw from specific cases for more general cases'),\n",
+ " ('infer', 'draw from specific cases for more general cases')]},\n",
+ " {'answer': 'generalized',\n",
+ " 'hint': 'synonyms for generalized',\n",
+ " 'clues': [('generalise', 'speak or write in generalities'),\n",
+ " ('popularize',\n",
+ " 'cater to popular taste to make popular and present to the general public; bring into general or common use'),\n",
+ " ('vulgarize',\n",
+ " 'cater to popular taste to make popular and present to the general public; bring into general or common use'),\n",
+ " ('extrapolate', 'draw from specific cases for more general cases'),\n",
+ " ('infer', 'draw from specific cases for more general cases')]},\n",
+ " {'answer': 'gentle',\n",
+ " 'hint': 'synonyms for gentle',\n",
+ " 'clues': [('lenify',\n",
+ " 'cause to be more favorably inclined; gain the good will of'),\n",
+ " ('appease', 'cause to be more favorably inclined; gain the good will of'),\n",
+ " ('entitle',\n",
+ " 'give a title to someone; make someone a member of the nobility'),\n",
+ " ('mollify', 'cause to be more favorably inclined; gain the good will of'),\n",
+ " ('conciliate',\n",
+ " 'cause to be more favorably inclined; gain the good will of'),\n",
+ " ('ennoble',\n",
+ " 'give a title to someone; make someone a member of the nobility'),\n",
+ " ('pacify', 'cause to be more favorably inclined; gain the good will of'),\n",
+ " ('assuage', 'cause to be more favorably inclined; gain the good will of'),\n",
+ " ('gruntle', 'cause to be more favorably inclined; gain the good will of'),\n",
+ " ('placate',\n",
+ " 'cause to be more favorably inclined; gain the good will of')]},\n",
+ " {'answer': 'gifted',\n",
+ " 'hint': 'synonyms for gifted',\n",
+ " 'clues': [('endue', 'give qualities or abilities to'),\n",
+ " ('empower', 'give qualities or abilities to'),\n",
+ " ('gift', 'give as a present; make a gift of'),\n",
+ " ('invest', 'give qualities or abilities to'),\n",
+ " ('give', 'give as a present; make a gift of'),\n",
+ " ('present', 'give as a present; make a gift of'),\n",
+ " ('endow', 'give qualities or abilities to'),\n",
+ " ('indue', 'give qualities or abilities to')]},\n",
+ " {'answer': 'given',\n",
+ " 'hint': 'synonyms for given',\n",
+ " 'clues': [('devote', 'dedicate'),\n",
+ " ('reach', 'place into the hands or custody of'),\n",
+ " ('give', 'afford access to'),\n",
+ " ('give way', 'move in order to make room for someone for something'),\n",
+ " ('founder', 'break down, literally or metaphorically'),\n",
+ " ('feed', 'give food to'),\n",
+ " ('have', 'organize or be responsible for'),\n",
+ " ('pass on', 'place into the hands or custody of'),\n",
+ " ('kick in', 'contribute to some cause'),\n",
+ " ('fall in', 'break down, literally or metaphorically'),\n",
+ " ('pass', 'place into the hands or custody of'),\n",
+ " ('collapse', 'break down, literally or metaphorically'),\n",
+ " ('yield', 'move in order to make room for someone for something'),\n",
+ " ('throw', 'organize or be responsible for'),\n",
+ " ('consecrate', 'give entirely to a specific person, activity, or cause'),\n",
+ " ('turn over', 'place into the hands or custody of'),\n",
+ " ('apply', 'give or convey physically'),\n",
+ " ('render', 'give or supply'),\n",
+ " ('return', 'give or supply'),\n",
+ " ('establish', 'bring about'),\n",
+ " ('leave', 'transmit (knowledge or skills)'),\n",
+ " ('pay', 'convey, as of a compliment, regards, attention, etc.; bestow'),\n",
+ " ('gift', 'give as a present; make a gift of'),\n",
+ " ('make', 'organize or be responsible for'),\n",
+ " ('present', 'give as a present; make a gift of'),\n",
+ " ('generate', 'give or supply'),\n",
+ " ('sacrifice', 'endure the loss of'),\n",
+ " ('contribute', 'contribute to some cause'),\n",
+ " ('ease up', 'move in order to make room for someone for something'),\n",
+ " ('break', 'break down, literally or metaphorically'),\n",
+ " ('impart', 'transmit (knowledge or skills)'),\n",
+ " ('grant', 'bestow, especially officially'),\n",
+ " ('hand', 'place into the hands or custody of'),\n",
+ " ('cave in', 'break down, literally or metaphorically'),\n",
+ " ('commit', 'give entirely to a specific person, activity, or cause'),\n",
+ " ('hold', 'organize or be responsible for'),\n",
+ " ('dedicate', 'give entirely to a specific person, activity, or cause'),\n",
+ " ('afford', 'afford access to'),\n",
+ " ('chip in', 'contribute to some cause'),\n",
+ " ('move over', 'move in order to make room for someone for something'),\n",
+ " ('open', 'afford access to')]},\n",
+ " {'answer': 'giving',\n",
+ " 'hint': 'synonyms for giving',\n",
+ " 'clues': [('devote', 'dedicate'),\n",
+ " ('reach', 'place into the hands or custody of'),\n",
+ " ('give', 'afford access to'),\n",
+ " ('give way', 'move in order to make room for someone for something'),\n",
+ " ('founder', 'break down, literally or metaphorically'),\n",
+ " ('feed', 'give food to'),\n",
+ " ('have', 'organize or be responsible for'),\n",
+ " ('pass on', 'place into the hands or custody of'),\n",
+ " ('kick in', 'contribute to some cause'),\n",
+ " ('fall in', 'break down, literally or metaphorically'),\n",
+ " ('pass', 'place into the hands or custody of'),\n",
+ " ('collapse', 'break down, literally or metaphorically'),\n",
+ " ('yield', 'move in order to make room for someone for something'),\n",
+ " ('throw', 'organize or be responsible for'),\n",
+ " ('consecrate', 'give entirely to a specific person, activity, or cause'),\n",
+ " ('turn over', 'place into the hands or custody of'),\n",
+ " ('apply', 'give or convey physically'),\n",
+ " ('render', 'give or supply'),\n",
+ " ('return', 'give or supply'),\n",
+ " ('establish', 'bring about'),\n",
+ " ('leave', 'transmit (knowledge or skills)'),\n",
+ " ('pay', 'convey, as of a compliment, regards, attention, etc.; bestow'),\n",
+ " ('gift', 'give as a present; make a gift of'),\n",
+ " ('make', 'organize or be responsible for'),\n",
+ " ('present', 'give as a present; make a gift of'),\n",
+ " ('generate', 'give or supply'),\n",
+ " ('sacrifice', 'endure the loss of'),\n",
+ " ('contribute', 'contribute to some cause'),\n",
+ " ('ease up', 'move in order to make room for someone for something'),\n",
+ " ('break', 'break down, literally or metaphorically'),\n",
+ " ('impart', 'transmit (knowledge or skills)'),\n",
+ " ('grant', 'bestow, especially officially'),\n",
+ " ('hand', 'place into the hands or custody of'),\n",
+ " ('cave in', 'break down, literally or metaphorically'),\n",
+ " ('commit', 'give entirely to a specific person, activity, or cause'),\n",
+ " ('hold', 'organize or be responsible for'),\n",
+ " ('dedicate', 'give entirely to a specific person, activity, or cause'),\n",
+ " ('afford', 'afford access to'),\n",
+ " ('chip in', 'contribute to some cause'),\n",
+ " ('move over', 'move in order to make room for someone for something'),\n",
+ " ('open', 'afford access to')]},\n",
+ " {'answer': 'glassed',\n",
+ " 'hint': 'synonyms for glassed',\n",
+ " 'clues': [('glass', 'put in a glass container'),\n",
+ " ('glaze over', 'become glassy or take on a glass-like appearance'),\n",
+ " ('glaze', 'furnish with glass'),\n",
+ " ('glass in', 'enclose with glass'),\n",
+ " ('glass over', 'become glassy or take on a glass-like appearance')]},\n",
+ " {'answer': 'glazed',\n",
+ " 'hint': 'synonyms for glazed',\n",
+ " 'clues': [('glaze over',\n",
+ " 'become glassy or take on a glass-like appearance'),\n",
+ " ('glaze', 'coat with a glaze'),\n",
+ " ('candy', 'coat with something sweet, such as a hard sugar glaze'),\n",
+ " ('glass', 'furnish with glass'),\n",
+ " ('sugarcoat', 'coat with something sweet, such as a hard sugar glaze'),\n",
+ " ('glass over', 'become glassy or take on a glass-like appearance')]},\n",
+ " {'answer': 'gleaming',\n",
+ " 'hint': 'synonyms for gleaming',\n",
+ " 'clues': [('glisten', 'be shiny, as if wet'),\n",
+ " ('glitter', 'be shiny, as if wet'),\n",
+ " ('glimmer', 'shine brightly, like a star or a light'),\n",
+ " ('gleam', 'be shiny, as if wet'),\n",
+ " ('shine', 'be shiny, as if wet'),\n",
+ " ('glint', 'be shiny, as if wet')]},\n",
+ " {'answer': 'glinting',\n",
+ " 'hint': 'synonyms for glinting',\n",
+ " 'clues': [('glisten', 'be shiny, as if wet'),\n",
+ " ('glint', 'throw a glance at; take a brief look at'),\n",
+ " ('glitter', 'be shiny, as if wet'),\n",
+ " ('gleam', 'be shiny, as if wet'),\n",
+ " ('shine', 'be shiny, as if wet'),\n",
+ " ('peek', 'throw a glance at; take a brief look at'),\n",
+ " ('glance', 'throw a glance at; take a brief look at')]},\n",
+ " {'answer': 'glistening',\n",
+ " 'hint': 'synonyms for glistening',\n",
+ " 'clues': [('glisten', 'be shiny, as if wet'),\n",
+ " ('glitter', 'be shiny, as if wet'),\n",
+ " ('gleam', 'be shiny, as if wet'),\n",
+ " ('shine', 'be shiny, as if wet'),\n",
+ " ('glint', 'be shiny, as if wet')]},\n",
+ " {'answer': 'glittering',\n",
+ " 'hint': 'synonyms for glittering',\n",
+ " 'clues': [('glisten', 'be shiny, as if wet'),\n",
+ " ('glitter', 'be shiny, as if wet'),\n",
+ " ('gleam', 'be shiny, as if wet'),\n",
+ " ('shine', 'be shiny, as if wet'),\n",
+ " ('glint', 'be shiny, as if wet')]},\n",
+ " {'answer': 'glorified',\n",
+ " 'hint': 'synonyms for glorified',\n",
+ " 'clues': [('laud', 'praise, glorify, or honor'),\n",
+ " ('glorify',\n",
+ " \"elevate or idealize, in allusion to Christ's transfiguration\"),\n",
+ " ('spiritualize',\n",
+ " \"elevate or idealize, in allusion to Christ's transfiguration\"),\n",
+ " ('transfigure',\n",
+ " \"elevate or idealize, in allusion to Christ's transfiguration\"),\n",
+ " ('exalt', 'praise, glorify, or honor'),\n",
+ " ('extol', 'praise, glorify, or honor'),\n",
+ " ('proclaim', 'praise, glorify, or honor')]},\n",
+ " {'answer': 'glowering',\n",
+ " 'hint': 'synonyms for glowering',\n",
+ " 'clues': [('glower', 'look at with a fixed gaze'),\n",
+ " ('glare', 'look at with a fixed gaze'),\n",
+ " ('frown',\n",
+ " \"look angry or sullen, wrinkle one's forehead, as if to signal disapproval\"),\n",
+ " ('lour',\n",
+ " \"look angry or sullen, wrinkle one's forehead, as if to signal disapproval\")]},\n",
+ " {'answer': 'glowing',\n",
+ " 'hint': 'synonyms for glowing',\n",
+ " 'clues': [('burn', 'shine intensely, as if with heat'),\n",
+ " ('radiate',\n",
+ " 'have a complexion with a strong bright color, such as red or pink'),\n",
+ " ('beam',\n",
+ " 'have a complexion with a strong bright color, such as red or pink'),\n",
+ " ('glow', 'shine intensely, as if with heat'),\n",
+ " ('shine',\n",
+ " 'experience a feeling of well-being or happiness, as from good health or an intense emotion')]},\n",
+ " {'answer': 'glutted',\n",
+ " 'hint': 'synonyms for glutted',\n",
+ " 'clues': [('englut', 'overeat or eat immodestly; make a pig of oneself'),\n",
+ " ('engorge', 'overeat or eat immodestly; make a pig of oneself'),\n",
+ " ('stuff', 'overeat or eat immodestly; make a pig of oneself'),\n",
+ " ('satiate', 'overeat or eat immodestly; make a pig of oneself'),\n",
+ " ('gourmandize', 'overeat or eat immodestly; make a pig of oneself'),\n",
+ " ('oversupply', 'supply with an excess of'),\n",
+ " ('gorge', 'overeat or eat immodestly; make a pig of oneself'),\n",
+ " ('overgorge', 'overeat or eat immodestly; make a pig of oneself'),\n",
+ " ('ingurgitate', 'overeat or eat immodestly; make a pig of oneself'),\n",
+ " ('overeat', 'overeat or eat immodestly; make a pig of oneself'),\n",
+ " ('overindulge', 'overeat or eat immodestly; make a pig of oneself'),\n",
+ " ('glut', 'overeat or eat immodestly; make a pig of oneself'),\n",
+ " ('pig out', 'overeat or eat immodestly; make a pig of oneself'),\n",
+ " ('binge', 'overeat or eat immodestly; make a pig of oneself'),\n",
+ " ('scarf out', 'overeat or eat immodestly; make a pig of oneself'),\n",
+ " ('flood', 'supply with an excess of')]},\n",
+ " {'answer': 'gnarled',\n",
+ " 'hint': 'synonyms for gnarled',\n",
+ " 'clues': [('croak',\n",
+ " \"make complaining remarks or noises under one's breath\"),\n",
+ " ('mutter', \"make complaining remarks or noises under one's breath\"),\n",
+ " ('murmur', \"make complaining remarks or noises under one's breath\"),\n",
+ " ('gnarl', \"make complaining remarks or noises under one's breath\"),\n",
+ " ('grumble', \"make complaining remarks or noises under one's breath\")]},\n",
+ " {'answer': 'go',\n",
+ " 'hint': 'synonyms for go',\n",
+ " 'clues': [('decease',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('lead', 'lead, extend, or afford access'),\n",
+ " ('rifle',\n",
+ " \"go through in search of something; search through someone's belongings in an unauthorized way\"),\n",
+ " ('start', 'begin or set in motion'),\n",
+ " ('extend',\n",
+ " 'stretch out over a distance, space, time, or scope; run or extend between two points or beyond a certain point'),\n",
+ " ('run short', 'to be spent or finished'),\n",
+ " ('plump',\n",
+ " 'give support (to) or make a choice (of) one out of a group or number'),\n",
+ " ('sound', 'make a certain noise or sound'),\n",
+ " ('run',\n",
+ " 'stretch out over a distance, space, time, or scope; run or extend between two points or beyond a certain point'),\n",
+ " ('move',\n",
+ " 'change location; move, travel, or proceed, also metaphorically'),\n",
+ " ('get', 'enter or assume a certain state or condition'),\n",
+ " ('hold up', 'continue to live through hardship or adversity'),\n",
+ " ('choke',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('run low', 'to be spent or finished'),\n",
+ " ('live on', 'continue to live through hardship or adversity'),\n",
+ " ('kick the bucket',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('break down', 'stop operating or functioning'),\n",
+ " ('give out', 'stop operating or functioning'),\n",
+ " ('break', 'stop operating or functioning'),\n",
+ " ('exit',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('die',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('fit', 'be the right size or shape; fit correctly or as desired'),\n",
+ " ('function', 'perform as expected when applied'),\n",
+ " ('conk out', 'stop operating or functioning'),\n",
+ " ('proceed', 'follow a procedure or take a course'),\n",
+ " ('travel',\n",
+ " 'change location; move, travel, or proceed, also metaphorically'),\n",
+ " ('croak',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('go bad', 'stop operating or functioning'),\n",
+ " ('drop dead',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('hold out', 'continue to live through hardship or adversity'),\n",
+ " ('pass',\n",
+ " 'stretch out over a distance, space, time, or scope; run or extend between two points or beyond a certain point'),\n",
+ " ('give way', 'stop operating or functioning'),\n",
+ " ('belong', 'be in the right place or situation'),\n",
+ " ('depart', 'move away from a place into another direction'),\n",
+ " ('give-up the ghost',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " (\"cash in one's chips\",\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('get going', 'begin or set in motion'),\n",
+ " ('live', 'continue to live through hardship or adversity'),\n",
+ " ('become', 'enter or assume a certain state or condition'),\n",
+ " ('blend in', 'blend or harmonize'),\n",
+ " ('locomote',\n",
+ " 'change location; move, travel, or proceed, also metaphorically'),\n",
+ " ('perish',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('snuff it',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('blend', 'blend or harmonize'),\n",
+ " ('endure', 'continue to live through hardship or adversity'),\n",
+ " ('buy the farm',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('expire',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('pass away',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('conk',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('last', 'continue to live through hardship or adversity'),\n",
+ " ('operate', 'perform as expected when applied'),\n",
+ " ('fail', 'stop operating or functioning'),\n",
+ " ('pop off',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('survive', 'continue to live through hardship or adversity'),\n",
+ " ('go away', 'move away from a place into another direction'),\n",
+ " ('work', 'perform as expected when applied')]},\n",
+ " {'answer': 'goaded',\n",
+ " 'hint': 'synonyms for goaded',\n",
+ " 'clues': [('spur', 'give heart or courage to'),\n",
+ " ('goad', 'urge with or as if with a goad'),\n",
+ " ('needle', 'goad or provoke,as by constant criticism'),\n",
+ " ('prick', 'stab or urge on as if with a pointed stick')]},\n",
+ " {'answer': 'going',\n",
+ " 'hint': 'synonyms for going',\n",
+ " 'clues': [('decease',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('lead', 'lead, extend, or afford access'),\n",
+ " ('rifle',\n",
+ " \"go through in search of something; search through someone's belongings in an unauthorized way\"),\n",
+ " ('go', 'change location; move, travel, or proceed, also metaphorically'),\n",
+ " ('plump',\n",
+ " 'give support (to) or make a choice (of) one out of a group or number'),\n",
+ " ('sound', 'make a certain noise or sound'),\n",
+ " ('move',\n",
+ " 'change location; move, travel, or proceed, also metaphorically'),\n",
+ " ('hold up', 'continue to live through hardship or adversity'),\n",
+ " ('run low', 'to be spent or finished'),\n",
+ " ('give out', 'stop operating or functioning'),\n",
+ " ('fit', 'be the right size or shape; fit correctly or as desired'),\n",
+ " ('function', 'perform as expected when applied'),\n",
+ " ('conk out', 'stop operating or functioning'),\n",
+ " ('proceed', 'follow a procedure or take a course'),\n",
+ " ('croak',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('travel',\n",
+ " 'change location; move, travel, or proceed, also metaphorically'),\n",
+ " ('go bad', 'stop operating or functioning'),\n",
+ " ('drop dead',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('hold out', 'continue to live through hardship or adversity'),\n",
+ " ('pass',\n",
+ " 'stretch out over a distance, space, time, or scope; run or extend between two points or beyond a certain point'),\n",
+ " ('depart', 'move away from a place into another direction'),\n",
+ " ('get going', 'begin or set in motion'),\n",
+ " ('live', 'continue to live through hardship or adversity'),\n",
+ " ('blend in', 'blend or harmonize'),\n",
+ " ('perish',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('buy the farm',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('expire',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('pass away',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('conk',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('last', 'continue to live through hardship or adversity'),\n",
+ " ('pop off',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('survive', 'continue to live through hardship or adversity'),\n",
+ " ('work', 'perform as expected when applied'),\n",
+ " ('start', 'begin or set in motion'),\n",
+ " ('extend',\n",
+ " 'stretch out over a distance, space, time, or scope; run or extend between two points or beyond a certain point'),\n",
+ " ('run short', 'to be spent or finished'),\n",
+ " ('run',\n",
+ " 'stretch out over a distance, space, time, or scope; run or extend between two points or beyond a certain point'),\n",
+ " ('choke',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('get', 'enter or assume a certain state or condition'),\n",
+ " ('kick the bucket',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('live on', 'continue to live through hardship or adversity'),\n",
+ " ('break down', 'stop operating or functioning'),\n",
+ " ('break', 'stop operating or functioning'),\n",
+ " ('exit',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('die',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('give way', 'stop operating or functioning'),\n",
+ " ('belong', 'be in the right place or situation'),\n",
+ " ('give-up the ghost',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " (\"cash in one's chips\",\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('become', 'enter or assume a certain state or condition'),\n",
+ " ('locomote',\n",
+ " 'change location; move, travel, or proceed, also metaphorically'),\n",
+ " ('snuff it',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('blend', 'blend or harmonize'),\n",
+ " ('endure', 'continue to live through hardship or adversity'),\n",
+ " ('fail', 'stop operating or functioning'),\n",
+ " ('operate', 'perform as expected when applied'),\n",
+ " ('go away', 'move away from a place into another direction')]},\n",
+ " {'answer': 'gone',\n",
+ " 'hint': 'synonyms for gone',\n",
+ " 'clues': [('decease',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('lead', 'lead, extend, or afford access'),\n",
+ " ('rifle',\n",
+ " \"go through in search of something; search through someone's belongings in an unauthorized way\"),\n",
+ " ('go', 'change location; move, travel, or proceed, also metaphorically'),\n",
+ " ('plump',\n",
+ " 'give support (to) or make a choice (of) one out of a group or number'),\n",
+ " ('sound', 'make a certain noise or sound'),\n",
+ " ('move',\n",
+ " 'change location; move, travel, or proceed, also metaphorically'),\n",
+ " ('hold up', 'continue to live through hardship or adversity'),\n",
+ " ('run low', 'to be spent or finished'),\n",
+ " ('give out', 'stop operating or functioning'),\n",
+ " ('fit', 'be the right size or shape; fit correctly or as desired'),\n",
+ " ('function', 'perform as expected when applied'),\n",
+ " ('conk out', 'stop operating or functioning'),\n",
+ " ('proceed', 'follow a procedure or take a course'),\n",
+ " ('croak',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('travel',\n",
+ " 'change location; move, travel, or proceed, also metaphorically'),\n",
+ " ('go bad', 'stop operating or functioning'),\n",
+ " ('drop dead',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('hold out', 'continue to live through hardship or adversity'),\n",
+ " ('pass',\n",
+ " 'stretch out over a distance, space, time, or scope; run or extend between two points or beyond a certain point'),\n",
+ " ('depart', 'move away from a place into another direction'),\n",
+ " ('get going', 'begin or set in motion'),\n",
+ " ('live', 'continue to live through hardship or adversity'),\n",
+ " ('blend in', 'blend or harmonize'),\n",
+ " ('perish',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('buy the farm',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('expire',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('pass away',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('conk',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('last', 'continue to live through hardship or adversity'),\n",
+ " ('pop off',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('survive', 'continue to live through hardship or adversity'),\n",
+ " ('work', 'perform as expected when applied'),\n",
+ " ('start', 'begin or set in motion'),\n",
+ " ('extend',\n",
+ " 'stretch out over a distance, space, time, or scope; run or extend between two points or beyond a certain point'),\n",
+ " ('run short', 'to be spent or finished'),\n",
+ " ('run',\n",
+ " 'stretch out over a distance, space, time, or scope; run or extend between two points or beyond a certain point'),\n",
+ " ('choke',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('get', 'enter or assume a certain state or condition'),\n",
+ " ('kick the bucket',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('live on', 'continue to live through hardship or adversity'),\n",
+ " ('break down', 'stop operating or functioning'),\n",
+ " ('break', 'stop operating or functioning'),\n",
+ " ('exit',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('die',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('give way', 'stop operating or functioning'),\n",
+ " ('belong', 'be in the right place or situation'),\n",
+ " ('give-up the ghost',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " (\"cash in one's chips\",\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('become', 'enter or assume a certain state or condition'),\n",
+ " ('locomote',\n",
+ " 'change location; move, travel, or proceed, also metaphorically'),\n",
+ " ('snuff it',\n",
+ " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n",
+ " ('blend', 'blend or harmonize'),\n",
+ " ('endure', 'continue to live through hardship or adversity'),\n",
+ " ('fail', 'stop operating or functioning'),\n",
+ " ('operate', 'perform as expected when applied'),\n",
+ " ('go away', 'move away from a place into another direction')]},\n",
+ " {'answer': 'governing',\n",
+ " 'hint': 'synonyms for governing',\n",
+ " 'clues': [('govern',\n",
+ " 'require to be in a certain grammatical case, voice, or mood'),\n",
+ " ('order',\n",
+ " 'bring into conformity with rules or principles or usage; impose regulations'),\n",
+ " ('regularize',\n",
+ " 'bring into conformity with rules or principles or usage; impose regulations'),\n",
+ " ('regulate',\n",
+ " 'bring into conformity with rules or principles or usage; impose regulations'),\n",
+ " ('rule', 'exercise authority over; as of nations')]},\n",
+ " {'answer': 'graded',\n",
+ " 'hint': 'synonyms for graded',\n",
+ " 'clues': [('grade', 'assign a rank or rating to'),\n",
+ " ('mark', \"assign a grade or rank to, according to one's evaluation\"),\n",
+ " ('range', 'assign a rank or rating to'),\n",
+ " ('place', 'assign a rank or rating to'),\n",
+ " ('score', \"assign a grade or rank to, according to one's evaluation\"),\n",
+ " ('rank', 'assign a rank or rating to'),\n",
+ " ('order', 'assign a rank or rating to'),\n",
+ " ('rate', 'assign a rank or rating to')]},\n",
+ " {'answer': 'granted',\n",
+ " 'hint': 'synonyms for granted',\n",
+ " 'clues': [('grant', 'let have'),\n",
+ " ('concede', 'be willing to concede'),\n",
+ " ('award', 'give as judged due or on the basis of merit'),\n",
+ " ('give', 'bestow, especially officially'),\n",
+ " ('accord', 'allow to have'),\n",
+ " ('yield',\n",
+ " 'give over; surrender or relinquish to the physical control of another'),\n",
+ " ('allow', 'let have'),\n",
+ " ('deed over', 'transfer by deed'),\n",
+ " ('allot', 'allow to have'),\n",
+ " ('cede',\n",
+ " 'give over; surrender or relinquish to the physical control of another')]},\n",
+ " {'answer': 'grasping',\n",
+ " 'hint': 'synonyms for grasping',\n",
+ " 'clues': [('grok', 'get the meaning of something'),\n",
+ " ('dig', 'get the meaning of something'),\n",
+ " ('apprehend', 'get the meaning of something'),\n",
+ " ('grasp', 'get the meaning of something'),\n",
+ " ('hold on', 'hold firmly'),\n",
+ " ('get the picture', 'get the meaning of something'),\n",
+ " ('compass', 'get the meaning of something'),\n",
+ " ('savvy', 'get the meaning of something'),\n",
+ " ('comprehend', 'get the meaning of something')]},\n",
+ " {'answer': 'gratified',\n",
+ " 'hint': 'synonyms for gratified',\n",
+ " 'clues': [('pander', 'yield (to); give satisfaction to'),\n",
+ " ('satisfy', 'make happy or satisfied'),\n",
+ " ('gratify', 'make happy or satisfied'),\n",
+ " ('indulge', 'yield (to); give satisfaction to')]},\n",
+ " {'answer': 'gratifying',\n",
+ " 'hint': 'synonyms for gratifying',\n",
+ " 'clues': [('pander', 'yield (to); give satisfaction to'),\n",
+ " ('satisfy', 'make happy or satisfied'),\n",
+ " ('gratify', 'make happy or satisfied'),\n",
+ " ('indulge', 'yield (to); give satisfaction to')]},\n",
+ " {'answer': 'grating',\n",
+ " 'hint': 'synonyms for grating',\n",
+ " 'clues': [('eat into', 'gnaw into; make resentful or angry'),\n",
+ " ('grate', 'furnish with a grate'),\n",
+ " ('rankle', 'gnaw into; make resentful or angry'),\n",
+ " ('scrape', 'scratch repeatedly'),\n",
+ " ('fret', 'gnaw into; make resentful or angry'),\n",
+ " ('grind', 'make a grating or grinding sound by rubbing together')]},\n",
+ " {'answer': 'grave',\n",
+ " 'hint': 'synonyms for grave',\n",
+ " 'clues': [('sculpture',\n",
+ " 'shape (a material like stone or wood) by whittling away at it'),\n",
+ " ('sculpt',\n",
+ " 'shape (a material like stone or wood) by whittling away at it'),\n",
+ " ('scratch', 'carve, cut, or etch into a material or surface'),\n",
+ " ('engrave', 'carve, cut, or etch into a material or surface'),\n",
+ " ('inscribe', 'carve, cut, or etch into a material or surface')]},\n",
+ " {'answer': 'graven',\n",
+ " 'hint': 'synonyms for graven',\n",
+ " 'clues': [('grave', 'carve, cut, or etch into a material or surface'),\n",
+ " ('sculpture',\n",
+ " 'shape (a material like stone or wood) by whittling away at it'),\n",
+ " ('sculpt',\n",
+ " 'shape (a material like stone or wood) by whittling away at it'),\n",
+ " ('scratch', 'carve, cut, or etch into a material or surface'),\n",
+ " ('engrave', 'carve, cut, or etch into a material or surface'),\n",
+ " ('inscribe', 'carve, cut, or etch into a material or surface')]},\n",
+ " {'answer': 'grazed',\n",
+ " 'hint': 'synonyms for grazed',\n",
+ " 'clues': [('graze', 'feed as in a meadow or pasture'),\n",
+ " ('crop', 'let feed in a field or pasture or meadow'),\n",
+ " ('crease', 'scrape gently'),\n",
+ " ('pasture', 'let feed in a field or pasture or meadow'),\n",
+ " ('rake', 'scrape gently'),\n",
+ " ('browse', 'feed as in a meadow or pasture'),\n",
+ " ('range', 'feed as in a meadow or pasture')]},\n",
+ " {'answer': 'gripping',\n",
+ " 'hint': 'synonyms for gripping',\n",
+ " 'clues': [('fascinate',\n",
+ " 'to render motionless, as with a fixed stare or by arousing terror or awe'),\n",
+ " ('grapple', 'to grip or seize, as in a wrestling match'),\n",
+ " ('grip',\n",
+ " 'to render motionless, as with a fixed stare or by arousing terror or awe'),\n",
+ " ('spellbind',\n",
+ " 'to render motionless, as with a fixed stare or by arousing terror or awe'),\n",
+ " ('transfix',\n",
+ " 'to render motionless, as with a fixed stare or by arousing terror or awe')]},\n",
+ " {'answer': 'grizzled',\n",
+ " 'hint': 'synonyms for grizzled',\n",
+ " 'clues': [('grizzle', 'be in a huff; be silent or sullen'),\n",
+ " ('stew', 'be in a huff; be silent or sullen'),\n",
+ " ('yawp', 'complain whiningly'),\n",
+ " ('brood', 'be in a huff; be silent or sullen'),\n",
+ " ('whine', 'complain whiningly'),\n",
+ " ('yammer', 'complain whiningly')]},\n",
+ " {'answer': 'groomed',\n",
+ " 'hint': 'synonyms for groomed',\n",
+ " 'clues': [('dress', 'give a neat appearance to'),\n",
+ " ('curry', 'give a neat appearance to'),\n",
+ " ('train', 'educate for a future role or function'),\n",
+ " ('neaten', \"care for one's external appearance\"),\n",
+ " ('groom', 'give a neat appearance to'),\n",
+ " ('prepare', 'educate for a future role or function')]},\n",
+ " {'answer': 'groveling',\n",
+ " 'hint': 'synonyms for groveling',\n",
+ " 'clues': [('cringe', 'show submission or fear'),\n",
+ " ('cower', 'show submission or fear'),\n",
+ " ('crawl', 'show submission or fear'),\n",
+ " ('creep', 'show submission or fear'),\n",
+ " ('fawn', 'show submission or fear'),\n",
+ " ('grovel', 'show submission or fear')]},\n",
+ " {'answer': 'grovelling',\n",
+ " 'hint': 'synonyms for grovelling',\n",
+ " 'clues': [('cringe', 'show submission or fear'),\n",
+ " ('cower', 'show submission or fear'),\n",
+ " ('crawl', 'show submission or fear'),\n",
+ " ('creep', 'show submission or fear'),\n",
+ " ('fawn', 'show submission or fear'),\n",
+ " ('grovel', 'show submission or fear')]},\n",
+ " {'answer': 'growing',\n",
+ " 'hint': 'synonyms for growing',\n",
+ " 'clues': [('produce',\n",
+ " 'cultivate by growing, often involving improvements by means of agricultural techniques'),\n",
+ " ('raise',\n",
+ " 'cultivate by growing, often involving improvements by means of agricultural techniques'),\n",
+ " ('grow', 'increase in size by natural process'),\n",
+ " ('arise', 'come into existence; take on form or shape'),\n",
+ " ('uprise', 'come into existence; take on form or shape'),\n",
+ " ('farm',\n",
+ " 'cultivate by growing, often involving improvements by means of agricultural techniques'),\n",
+ " ('mature', 'develop and reach maturity; undergo maturation'),\n",
+ " ('turn',\n",
+ " 'pass into a condition gradually, take on a specific property or attribute; become'),\n",
+ " ('originate', 'come into existence; take on form or shape'),\n",
+ " ('spring up', 'come into existence; take on form or shape'),\n",
+ " ('develop',\n",
+ " 'come to have or undergo a change of (physical features and attributes)'),\n",
+ " ('get',\n",
+ " 'come to have or undergo a change of (physical features and attributes)'),\n",
+ " ('acquire',\n",
+ " 'come to have or undergo a change of (physical features and attributes)')]},\n",
+ " {'answer': 'grown',\n",
+ " 'hint': 'synonyms for grown',\n",
+ " 'clues': [('produce',\n",
+ " 'cultivate by growing, often involving improvements by means of agricultural techniques'),\n",
+ " ('raise',\n",
+ " 'cultivate by growing, often involving improvements by means of agricultural techniques'),\n",
+ " ('grow', 'increase in size by natural process'),\n",
+ " ('arise', 'come into existence; take on form or shape'),\n",
+ " ('uprise', 'come into existence; take on form or shape'),\n",
+ " ('farm',\n",
+ " 'cultivate by growing, often involving improvements by means of agricultural techniques'),\n",
+ " ('mature', 'develop and reach maturity; undergo maturation'),\n",
+ " ('turn',\n",
+ " 'pass into a condition gradually, take on a specific property or attribute; become'),\n",
+ " ('originate', 'come into existence; take on form or shape'),\n",
+ " ('spring up', 'come into existence; take on form or shape'),\n",
+ " ('develop',\n",
+ " 'come to have or undergo a change of (physical features and attributes)'),\n",
+ " ('get',\n",
+ " 'come to have or undergo a change of (physical features and attributes)'),\n",
+ " ('acquire',\n",
+ " 'come to have or undergo a change of (physical features and attributes)')]},\n",
+ " {'answer': 'grumbling',\n",
+ " 'hint': 'synonyms for grumbling',\n",
+ " 'clues': [('croak',\n",
+ " \"make complaining remarks or noises under one's breath\"),\n",
+ " ('grumble', \"show one's unhappiness or critical attitude\"),\n",
+ " ('murmur', \"make complaining remarks or noises under one's breath\"),\n",
+ " ('growl', 'to utter or emit low dull rumbling sounds'),\n",
+ " ('gnarl', \"make complaining remarks or noises under one's breath\"),\n",
+ " ('grouch', \"show one's unhappiness or critical attitude\"),\n",
+ " ('mutter', \"make complaining remarks or noises under one's breath\"),\n",
+ " ('scold', \"show one's unhappiness or critical attitude\")]},\n",
+ " {'answer': 'guarded',\n",
+ " 'hint': 'synonyms for guarded',\n",
+ " 'clues': [('guard', 'to keep watch over'),\n",
+ " ('hold', 'protect against a challenge or attack'),\n",
+ " ('ward', 'watch over or shield from danger or harm; protect'),\n",
+ " ('defend', 'protect against a challenge or attack')]},\n",
+ " {'answer': 'guided',\n",
+ " 'hint': 'synonyms for guided',\n",
+ " 'clues': [('channelize',\n",
+ " 'direct the course; determine the direction of travelling'),\n",
+ " ('run', 'pass over, across, or through'),\n",
+ " ('steer', 'direct the course; determine the direction of travelling'),\n",
+ " ('maneuver', 'direct the course; determine the direction of travelling'),\n",
+ " ('guide', 'take somebody somewhere'),\n",
+ " ('direct', 'take somebody somewhere'),\n",
+ " ('draw', 'pass over, across, or through'),\n",
+ " ('point', 'direct the course; determine the direction of travelling'),\n",
+ " ('manoeuvre', 'direct the course; determine the direction of travelling'),\n",
+ " ('take', 'take somebody somewhere'),\n",
+ " ('conduct', 'take somebody somewhere'),\n",
+ " ('head', 'direct the course; determine the direction of travelling'),\n",
+ " ('pass', 'pass over, across, or through'),\n",
+ " ('guide on', 'use as a guide'),\n",
+ " ('lead', 'take somebody somewhere')]},\n",
+ " {'answer': 'guiding',\n",
+ " 'hint': 'synonyms for guiding',\n",
+ " 'clues': [('channelize',\n",
+ " 'direct the course; determine the direction of travelling'),\n",
+ " ('run', 'pass over, across, or through'),\n",
+ " ('steer', 'direct the course; determine the direction of travelling'),\n",
+ " ('maneuver', 'direct the course; determine the direction of travelling'),\n",
+ " ('guide', 'take somebody somewhere'),\n",
+ " ('direct', 'take somebody somewhere'),\n",
+ " ('draw', 'pass over, across, or through'),\n",
+ " ('point', 'direct the course; determine the direction of travelling'),\n",
+ " ('manoeuvre', 'direct the course; determine the direction of travelling'),\n",
+ " ('take', 'take somebody somewhere'),\n",
+ " ('conduct', 'take somebody somewhere'),\n",
+ " ('head', 'direct the course; determine the direction of travelling'),\n",
+ " ('pass', 'pass over, across, or through'),\n",
+ " ('guide on', 'use as a guide'),\n",
+ " ('lead', 'take somebody somewhere')]},\n",
+ " {'answer': 'gushing',\n",
+ " 'hint': 'synonyms for gushing',\n",
+ " 'clues': [('gush', 'praise enthusiastically'),\n",
+ " ('jet', 'issue in a jet; come out in a jet; stream or spring forth'),\n",
+ " ('rave', 'praise enthusiastically'),\n",
+ " ('spurt', 'gush forth in a sudden stream or jet'),\n",
+ " ('spout', 'gush forth in a sudden stream or jet'),\n",
+ " ('spirt', 'gush forth in a sudden stream or jet')]},\n",
+ " {'answer': 'hale',\n",
+ " 'hint': 'synonyms for hale',\n",
+ " 'clues': [('drag', 'draw slowly or heavily'),\n",
+ " ('cart', 'draw slowly or heavily'),\n",
+ " ('pressure',\n",
+ " 'to cause to do through pressure or necessity, by physical, moral or intellectual means :'),\n",
+ " ('coerce',\n",
+ " 'to cause to do through pressure or necessity, by physical, moral or intellectual means :'),\n",
+ " ('haul', 'draw slowly or heavily'),\n",
+ " ('squeeze',\n",
+ " 'to cause to do through pressure or necessity, by physical, moral or intellectual means :'),\n",
+ " ('force',\n",
+ " 'to cause to do through pressure or necessity, by physical, moral or intellectual means :')]},\n",
+ " {'answer': 'hallowed',\n",
+ " 'hint': 'synonyms for hallowed',\n",
+ " 'clues': [('consecrate', 'render holy by means of religious rites'),\n",
+ " ('hallow', 'render holy by means of religious rites'),\n",
+ " ('bless', 'render holy by means of religious rites'),\n",
+ " ('sanctify', 'render holy by means of religious rites')]},\n",
+ " {'answer': 'halt',\n",
+ " 'hint': 'synonyms for halt',\n",
+ " 'clues': [('stop', 'stop from happening or developing'),\n",
+ " ('hold', 'cause to stop'),\n",
+ " ('arrest', 'cause to stop'),\n",
+ " ('block', 'stop from happening or developing'),\n",
+ " ('stem', 'stop the flow of a liquid'),\n",
+ " ('stanch', 'stop the flow of a liquid'),\n",
+ " ('kibosh', 'stop from happening or developing')]},\n",
+ " {'answer': 'halting',\n",
+ " 'hint': 'synonyms for halting',\n",
+ " 'clues': [('halt', 'cause to stop'),\n",
+ " ('hold', 'cause to stop'),\n",
+ " ('arrest', 'cause to stop'),\n",
+ " ('stop', 'stop from happening or developing'),\n",
+ " ('block', 'stop from happening or developing'),\n",
+ " ('stem', 'stop the flow of a liquid'),\n",
+ " ('stanch', 'stop the flow of a liquid'),\n",
+ " ('kibosh', 'stop from happening or developing')]},\n",
+ " {'answer': 'handed',\n",
+ " 'hint': 'synonyms for handed',\n",
+ " 'clues': [('turn over', 'place into the hands or custody of'),\n",
+ " ('pass on', 'place into the hands or custody of'),\n",
+ " ('hand', 'place into the hands or custody of'),\n",
+ " ('give', 'place into the hands or custody of'),\n",
+ " ('reach', 'place into the hands or custody of'),\n",
+ " ('pass', 'place into the hands or custody of')]},\n",
+ " {'answer': 'handicapped',\n",
+ " 'hint': 'synonyms for handicapped',\n",
+ " 'clues': [('handicap', 'injure permanently'),\n",
+ " ('incapacitate', 'injure permanently'),\n",
+ " ('invalid', 'injure permanently'),\n",
+ " ('hamper', 'put at a disadvantage'),\n",
+ " ('hinder', 'put at a disadvantage'),\n",
+ " ('disable', 'injure permanently')]},\n",
+ " {'answer': 'handled',\n",
+ " 'hint': 'synonyms for handled',\n",
+ " 'clues': [('do by', 'interact in a certain way'),\n",
+ " ('manage', 'handle effectively'),\n",
+ " ('plow', 'act on verbally or in some form of artistic expression'),\n",
+ " ('wield', 'handle effectively'),\n",
+ " ('handle', 'act on verbally or in some form of artistic expression'),\n",
+ " ('palm', 'touch, lift, or hold with the hands'),\n",
+ " ('deal', 'be in charge of, act on, or dispose of'),\n",
+ " ('treat', 'act on verbally or in some form of artistic expression'),\n",
+ " ('address', 'act on verbally or in some form of artistic expression'),\n",
+ " ('cover', 'act on verbally or in some form of artistic expression'),\n",
+ " ('care', 'be in charge of, act on, or dispose of')]},\n",
+ " {'answer': 'handless',\n",
+ " 'hint': 'synonyms for handless',\n",
+ " 'clues': [('do by', 'interact in a certain way'),\n",
+ " ('manage', 'handle effectively'),\n",
+ " ('plow', 'act on verbally or in some form of artistic expression'),\n",
+ " ('wield', 'handle effectively'),\n",
+ " ('handle', 'act on verbally or in some form of artistic expression'),\n",
+ " ('palm', 'touch, lift, or hold with the hands'),\n",
+ " ('deal', 'be in charge of, act on, or dispose of'),\n",
+ " ('treat', 'act on verbally or in some form of artistic expression'),\n",
+ " ('address', 'act on verbally or in some form of artistic expression'),\n",
+ " ('cover', 'act on verbally or in some form of artistic expression'),\n",
+ " ('care', 'be in charge of, act on, or dispose of')]},\n",
+ " {'answer': 'harassed',\n",
+ " 'hint': 'synonyms for harassed',\n",
+ " 'clues': [('harass', 'exhaust by attacking repeatedly'),\n",
+ " ('chevvy', 'annoy continually or chronically'),\n",
+ " ('molest', 'annoy continually or chronically'),\n",
+ " ('hassle', 'annoy continually or chronically'),\n",
+ " ('chivvy', 'annoy continually or chronically'),\n",
+ " ('provoke', 'annoy continually or chronically'),\n",
+ " ('beset', 'annoy continually or chronically'),\n",
+ " ('harry', 'annoy continually or chronically'),\n",
+ " ('plague', 'annoy continually or chronically')]},\n",
+ " {'answer': 'hardened',\n",
+ " 'hint': 'synonyms for hardened',\n",
+ " 'clues': [('inure', 'cause to accept or become hardened to; habituate'),\n",
+ " ('season', 'make fit'),\n",
+ " ('temper', 'harden by reheating and cooling in oil'),\n",
+ " ('indurate', 'cause to accept or become hardened to; habituate'),\n",
+ " ('harden', 'make fit')]},\n",
+ " {'answer': 'harmonised',\n",
+ " 'hint': 'synonyms for harmonised',\n",
+ " 'clues': [('chord',\n",
+ " 'bring into consonance, harmony, or accord while making music or singing'),\n",
+ " ('fit in', 'go together'),\n",
+ " ('harmonise',\n",
+ " 'bring into consonance, harmony, or accord while making music or singing'),\n",
+ " ('accord', 'go together'),\n",
+ " ('reconcile', 'bring into consonance or accord'),\n",
+ " ('consort', 'go together'),\n",
+ " ('agree', 'go together'),\n",
+ " ('concord', 'go together')]},\n",
+ " {'answer': 'harmonized',\n",
+ " 'hint': 'synonyms for harmonized',\n",
+ " 'clues': [('chord',\n",
+ " 'bring into consonance, harmony, or accord while making music or singing'),\n",
+ " ('fit in', 'go together'),\n",
+ " ('harmonise',\n",
+ " 'bring into consonance, harmony, or accord while making music or singing'),\n",
+ " ('accord', 'go together'),\n",
+ " ('reconcile', 'bring into consonance or accord'),\n",
+ " ('consort', 'go together'),\n",
+ " ('agree', 'go together'),\n",
+ " ('concord', 'go together')]},\n",
+ " {'answer': 'harnessed',\n",
+ " 'hint': 'synonyms for harnessed',\n",
+ " 'clues': [('tackle', 'put a harness'),\n",
+ " ('harness', 'exploit the power of'),\n",
+ " ('draw rein', 'control and direct with or as if by reins'),\n",
+ " ('rein', 'control and direct with or as if by reins'),\n",
+ " ('rein in', 'control and direct with or as if by reins'),\n",
+ " ('rule', 'keep in check')]},\n",
+ " {'answer': 'harried',\n",
+ " 'hint': 'synonyms for harried',\n",
+ " 'clues': [('harass', 'annoy continually or chronically'),\n",
+ " ('chevvy', 'annoy continually or chronically'),\n",
+ " ('molest', 'annoy continually or chronically'),\n",
+ " ('harry',\n",
+ " 'make a pillaging or destructive raid on (a place), as in wartimes'),\n",
+ " ('hassle', 'annoy continually or chronically'),\n",
+ " ('chivvy', 'annoy continually or chronically'),\n",
+ " ('provoke', 'annoy continually or chronically'),\n",
+ " ('ravage',\n",
+ " 'make a pillaging or destructive raid on (a place), as in wartimes'),\n",
+ " ('beset', 'annoy continually or chronically'),\n",
+ " ('plague', 'annoy continually or chronically')]},\n",
+ " {'answer': 'hatched',\n",
+ " 'hint': 'synonyms for hatched',\n",
+ " 'clues': [('think up', 'devise or invent'),\n",
+ " ('hatch',\n",
+ " 'inlay with narrow strips or lines of a different substance such as gold or silver, for the purpose of decorating'),\n",
+ " ('concoct', 'devise or invent'),\n",
+ " ('brood', 'sit on (eggs)'),\n",
+ " ('incubate', 'sit on (eggs)'),\n",
+ " ('think of', 'devise or invent'),\n",
+ " ('dream up', 'devise or invent'),\n",
+ " ('cover', 'sit on (eggs)')]},\n",
+ " {'answer': 'haunted',\n",
+ " 'hint': 'synonyms for haunted',\n",
+ " 'clues': [('frequent',\n",
+ " 'be a regular or frequent visitor to a certain place'),\n",
+ " ('ghost', 'haunt like a ghost; pursue'),\n",
+ " ('haunt', 'be a regular or frequent visitor to a certain place'),\n",
+ " ('stalk', 'follow stealthily or recur constantly and spontaneously to'),\n",
+ " ('obsess', 'haunt like a ghost; pursue')]},\n",
+ " {'answer': 'haunting',\n",
+ " 'hint': 'synonyms for haunting',\n",
+ " 'clues': [('frequent',\n",
+ " 'be a regular or frequent visitor to a certain place'),\n",
+ " ('ghost', 'haunt like a ghost; pursue'),\n",
+ " ('haunt', 'be a regular or frequent visitor to a certain place'),\n",
+ " ('stalk', 'follow stealthily or recur constantly and spontaneously to'),\n",
+ " ('obsess', 'haunt like a ghost; pursue')]},\n",
+ " {'answer': 'headed',\n",
+ " 'hint': 'synonyms for headed',\n",
+ " 'clues': [('channelize',\n",
+ " 'direct the course; determine the direction of travelling'),\n",
+ " ('steer', 'direct the course; determine the direction of travelling'),\n",
+ " ('head up', 'be the first or leading member of (a group) and excel'),\n",
+ " ('head', 'to go or travel towards'),\n",
+ " ('manoeuver', 'direct the course; determine the direction of travelling'),\n",
+ " ('lead', 'be in charge of'),\n",
+ " ('point', 'direct the course; determine the direction of travelling'),\n",
+ " ('guide', 'direct the course; determine the direction of travelling'),\n",
+ " ('direct', 'direct the course; determine the direction of travelling')]},\n",
+ " {'answer': 'healed',\n",
+ " 'hint': 'synonyms for healed',\n",
+ " 'clues': [('heal', 'provide a cure for, make healthy again'),\n",
+ " ('mend', 'heal or recover'),\n",
+ " ('cure', 'provide a cure for, make healthy again'),\n",
+ " ('bring around', 'provide a cure for, make healthy again')]},\n",
+ " {'answer': 'healing',\n",
+ " 'hint': 'synonyms for healing',\n",
+ " 'clues': [('heal', 'provide a cure for, make healthy again'),\n",
+ " ('mend', 'heal or recover'),\n",
+ " ('cure', 'provide a cure for, make healthy again'),\n",
+ " ('bring around', 'provide a cure for, make healthy again')]},\n",
+ " {'answer': 'heard',\n",
+ " 'hint': 'synonyms for heard',\n",
+ " 'clues': [('find out',\n",
+ " 'get to know or become aware of, usually accidentally'),\n",
+ " ('try', 'examine or hear (evidence or a case) by judicial process'),\n",
+ " ('hear', 'listen and pay attention'),\n",
+ " ('discover', 'get to know or become aware of, usually accidentally'),\n",
+ " ('get word', 'get to know or become aware of, usually accidentally'),\n",
+ " ('learn', 'get to know or become aware of, usually accidentally'),\n",
+ " ('see', 'get to know or become aware of, usually accidentally'),\n",
+ " ('listen', 'listen and pay attention'),\n",
+ " ('get wind', 'get to know or become aware of, usually accidentally'),\n",
+ " ('pick up', 'get to know or become aware of, usually accidentally'),\n",
+ " ('get a line', 'get to know or become aware of, usually accidentally'),\n",
+ " ('take heed', 'listen and pay attention')]},\n",
+ " {'answer': 'hearing',\n",
+ " 'hint': 'synonyms for hearing',\n",
+ " 'clues': [('find out',\n",
+ " 'get to know or become aware of, usually accidentally'),\n",
+ " ('try', 'examine or hear (evidence or a case) by judicial process'),\n",
+ " ('hear', 'listen and pay attention'),\n",
+ " ('discover', 'get to know or become aware of, usually accidentally'),\n",
+ " ('get word', 'get to know or become aware of, usually accidentally'),\n",
+ " ('learn', 'get to know or become aware of, usually accidentally'),\n",
+ " ('see', 'get to know or become aware of, usually accidentally'),\n",
+ " ('listen', 'listen and pay attention'),\n",
+ " ('get wind', 'get to know or become aware of, usually accidentally'),\n",
+ " ('pick up', 'get to know or become aware of, usually accidentally'),\n",
+ " ('get a line', 'get to know or become aware of, usually accidentally'),\n",
+ " ('take heed', 'listen and pay attention')]},\n",
+ " {'answer': 'heartening',\n",
+ " 'hint': 'synonyms for heartening',\n",
+ " 'clues': [('recreate', 'give encouragement to'),\n",
+ " ('embolden', 'give encouragement to'),\n",
+ " ('cheer', 'give encouragement to'),\n",
+ " ('hearten', 'give encouragement to')]},\n",
+ " {'answer': 'heated',\n",
+ " 'hint': 'synonyms for heated',\n",
+ " 'clues': [('inflame', 'arouse or excite feelings and passions'),\n",
+ " ('heat up', 'gain heat or get hot'),\n",
+ " ('heat', 'gain heat or get hot'),\n",
+ " ('hot up', 'gain heat or get hot'),\n",
+ " ('stir up', 'arouse or excite feelings and passions'),\n",
+ " ('wake', 'arouse or excite feelings and passions'),\n",
+ " ('fire up', 'arouse or excite feelings and passions'),\n",
+ " ('ignite', 'arouse or excite feelings and passions')]},\n",
+ " {'answer': 'hedged',\n",
+ " 'hint': 'synonyms for hedged',\n",
+ " 'clues': [('sidestep',\n",
+ " 'avoid or try to avoid fulfilling, answering, or performing (duties, questions, or issues)'),\n",
+ " ('hedge in', 'enclose or bound in with or as it with a hedge or hedges'),\n",
+ " ('hedge', 'hinder or restrict with or as if with a hedge'),\n",
+ " ('fudge',\n",
+ " 'avoid or try to avoid fulfilling, answering, or performing (duties, questions, or issues)'),\n",
+ " ('duck',\n",
+ " 'avoid or try to avoid fulfilling, answering, or performing (duties, questions, or issues)'),\n",
+ " ('elude',\n",
+ " 'avoid or try to avoid fulfilling, answering, or performing (duties, questions, or issues)'),\n",
+ " ('circumvent',\n",
+ " 'avoid or try to avoid fulfilling, answering, or performing (duties, questions, or issues)'),\n",
+ " ('parry',\n",
+ " 'avoid or try to avoid fulfilling, answering, or performing (duties, questions, or issues)'),\n",
+ " ('dodge',\n",
+ " 'avoid or try to avoid fulfilling, answering, or performing (duties, questions, or issues)'),\n",
+ " ('skirt',\n",
+ " 'avoid or try to avoid fulfilling, answering, or performing (duties, questions, or issues)'),\n",
+ " ('put off',\n",
+ " 'avoid or try to avoid fulfilling, answering, or performing (duties, questions, or issues)'),\n",
+ " ('evade',\n",
+ " 'avoid or try to avoid fulfilling, answering, or performing (duties, questions, or issues)')]},\n",
+ " {'answer': 'heightening',\n",
+ " 'hint': 'synonyms for heightening',\n",
+ " 'clues': [('heighten',\n",
+ " 'make more extreme; raise in quantity, degree, or intensity'),\n",
+ " ('compound', 'make more intense, stronger, or more marked; ,'),\n",
+ " ('intensify', 'make more intense, stronger, or more marked; ,'),\n",
+ " ('sharpen', \"make (one's senses) more acute\"),\n",
+ " ('enhance', 'increase'),\n",
+ " ('raise', 'increase'),\n",
+ " ('deepen', 'make more intense, stronger, or more marked; ,')]},\n",
+ " {'answer': 'held',\n",
+ " 'hint': 'synonyms for held',\n",
+ " 'clues': [('keep back',\n",
+ " 'secure and keep for possible future use or application'),\n",
+ " ('maintain', 'keep in a certain state, position, or activity; e.g.,'),\n",
+ " ('hold', 'keep from departing'),\n",
+ " ('control',\n",
+ " 'lessen the intensity of; temper; hold in restraint; hold or keep within limits'),\n",
+ " ('deem', 'keep in mind or convey as a conviction or view'),\n",
+ " ('obtain', 'be valid, applicable, or true'),\n",
+ " ('admit', 'have room for; hold without crowding'),\n",
+ " ('have', 'organize or be responsible for'),\n",
+ " ('reserve',\n",
+ " 'arrange for and reserve (something for someone else) in advance'),\n",
+ " ('confine', 'to close within bounds, limit or hold back from movement'),\n",
+ " ('carry', 'support or hold in a certain manner'),\n",
+ " ('contain', 'contain or hold; have within'),\n",
+ " ('bear', 'contain or hold; have within'),\n",
+ " ('harbor', 'maintain (a theory, thoughts, or feelings)'),\n",
+ " ('moderate',\n",
+ " 'lessen the intensity of; temper; hold in restraint; hold or keep within limits'),\n",
+ " ('withstand', 'resist or confront with resistance'),\n",
+ " ('retain', 'secure and keep for possible future use or application'),\n",
+ " ('give', 'organize or be responsible for'),\n",
+ " ('have got',\n",
+ " 'have or possess, either in a concrete or an abstract sense'),\n",
+ " ('hold up', 'be the physical support of; carry the weight of'),\n",
+ " ('throw', 'organize or be responsible for'),\n",
+ " ('keep', 'keep in a certain state, position, or activity; e.g.,'),\n",
+ " ('support', 'be the physical support of; carry the weight of'),\n",
+ " ('take', 'be capable of holding or containing'),\n",
+ " ('take for', 'keep in mind or convey as a conviction or view'),\n",
+ " ('obligate', 'bind by an obligation; cause to be indebted'),\n",
+ " ('nurse', 'maintain (a theory, thoughts, or feelings)'),\n",
+ " ('agree', 'be in accord; be in agreement'),\n",
+ " ('entertain', 'maintain (a theory, thoughts, or feelings)'),\n",
+ " ('hold in',\n",
+ " 'lessen the intensity of; temper; hold in restraint; hold or keep within limits'),\n",
+ " ('declare', 'declare to be'),\n",
+ " ('concord', 'be in accord; be in agreement'),\n",
+ " ('take hold', \"have or hold in one's hands or grip\"),\n",
+ " ('make', 'organize or be responsible for'),\n",
+ " ('sustain', 'be the physical support of; carry the weight of'),\n",
+ " ('prevail', 'be valid, applicable, or true'),\n",
+ " ('adjudge', 'declare to be'),\n",
+ " ('hold back', 'secure and keep for possible future use or application'),\n",
+ " ('bind', 'bind by an obligation; cause to be indebted'),\n",
+ " ('concur', 'be in accord; be in agreement'),\n",
+ " ('curb',\n",
+ " 'lessen the intensity of; temper; hold in restraint; hold or keep within limits'),\n",
+ " ('halt', 'cause to stop'),\n",
+ " ('accommodate', 'have room for; hold without crowding'),\n",
+ " ('apply', 'be pertinent or relevant or applicable'),\n",
+ " ('defend', 'protect against a challenge or attack'),\n",
+ " ('arrest', 'cause to stop'),\n",
+ " ('defy', 'resist or confront with resistance'),\n",
+ " ('check',\n",
+ " 'lessen the intensity of; temper; hold in restraint; hold or keep within limits'),\n",
+ " ('view as', 'keep in mind or convey as a conviction or view'),\n",
+ " ('guard', 'protect against a challenge or attack'),\n",
+ " ('go for', 'be pertinent or relevant or applicable'),\n",
+ " ('book',\n",
+ " 'arrange for and reserve (something for someone else) in advance')]},\n",
+ " {'answer': 'heralded',\n",
+ " 'hint': 'synonyms for heralded',\n",
+ " 'clues': [('annunciate', 'foreshadow or presage'),\n",
+ " ('harbinger', 'foreshadow or presage'),\n",
+ " ('herald', 'praise vociferously'),\n",
+ " ('acclaim', 'praise vociferously'),\n",
+ " ('hail', 'praise vociferously'),\n",
+ " ('foretell', 'foreshadow or presage'),\n",
+ " ('announce', 'foreshadow or presage')]},\n",
+ " {'answer': 'hesitating',\n",
+ " 'hint': 'synonyms for hesitating',\n",
+ " 'clues': [('waffle', 'pause or hold back in uncertainty or unwillingness'),\n",
+ " ('hesitate', 'pause or hold back in uncertainty or unwillingness'),\n",
+ " ('waver', 'pause or hold back in uncertainty or unwillingness'),\n",
+ " ('pause', 'interrupt temporarily an activity before continuing')]},\n",
+ " {'answer': 'hex',\n",
+ " 'hint': 'synonyms for hex',\n",
+ " 'clues': [('jinx',\n",
+ " 'cast a spell over someone or something; put a hex on someone or something'),\n",
+ " ('witch',\n",
+ " 'cast a spell over someone or something; put a hex on someone or something'),\n",
+ " ('bewitch',\n",
+ " 'cast a spell over someone or something; put a hex on someone or something'),\n",
+ " ('glamour',\n",
+ " 'cast a spell over someone or something; put a hex on someone or something'),\n",
+ " ('enchant',\n",
+ " 'cast a spell over someone or something; put a hex on someone or something')]},\n",
+ " {'answer': 'hexed',\n",
+ " 'hint': 'synonyms for hexed',\n",
+ " 'clues': [('hex',\n",
+ " 'cast a spell over someone or something; put a hex on someone or something'),\n",
+ " ('jinx',\n",
+ " 'cast a spell over someone or something; put a hex on someone or something'),\n",
+ " ('witch',\n",
+ " 'cast a spell over someone or something; put a hex on someone or something'),\n",
+ " ('bewitch',\n",
+ " 'cast a spell over someone or something; put a hex on someone or something'),\n",
+ " ('glamour',\n",
+ " 'cast a spell over someone or something; put a hex on someone or something'),\n",
+ " ('enchant',\n",
+ " 'cast a spell over someone or something; put a hex on someone or something')]},\n",
+ " {'answer': 'hidden',\n",
+ " 'hint': 'synonyms for hidden',\n",
+ " 'clues': [('hide',\n",
+ " 'make undecipherable or imperceptible by obscuring or concealing'),\n",
+ " ('hide out',\n",
+ " 'be or go into hiding; keep out of sight, as for protection and safety'),\n",
+ " ('enshroud', 'cover as if with a shroud'),\n",
+ " ('veil',\n",
+ " 'make undecipherable or imperceptible by obscuring or concealing'),\n",
+ " ('obscure',\n",
+ " 'make undecipherable or imperceptible by obscuring or concealing'),\n",
+ " ('cover', 'cover as if with a shroud'),\n",
+ " ('obliterate',\n",
+ " 'make undecipherable or imperceptible by obscuring or concealing'),\n",
+ " ('conceal', 'prevent from being seen or discovered'),\n",
+ " ('blot out',\n",
+ " 'make undecipherable or imperceptible by obscuring or concealing')]},\n",
+ " {'answer': 'hinder',\n",
+ " 'hint': 'synonyms for hinder',\n",
+ " 'clues': [('blockade',\n",
+ " 'hinder or prevent the progress or accomplishment of'),\n",
+ " ('stymie', 'hinder or prevent the progress or accomplishment of'),\n",
+ " ('stymy', 'hinder or prevent the progress or accomplishment of'),\n",
+ " ('obstruct', 'hinder or prevent the progress or accomplishment of'),\n",
+ " ('block', 'hinder or prevent the progress or accomplishment of'),\n",
+ " ('handicap', 'put at a disadvantage'),\n",
+ " ('hamper', 'put at a disadvantage'),\n",
+ " ('impede', 'be a hindrance or obstacle to'),\n",
+ " ('embarrass', 'hinder or prevent the progress or accomplishment of')]},\n",
+ " {'answer': 'hindering',\n",
+ " 'hint': 'synonyms for hindering',\n",
+ " 'clues': [('blockade',\n",
+ " 'hinder or prevent the progress or accomplishment of'),\n",
+ " ('stymie', 'hinder or prevent the progress or accomplishment of'),\n",
+ " ('hinder', 'hinder or prevent the progress or accomplishment of'),\n",
+ " ('stymy', 'hinder or prevent the progress or accomplishment of'),\n",
+ " ('obstruct', 'hinder or prevent the progress or accomplishment of'),\n",
+ " ('block', 'hinder or prevent the progress or accomplishment of'),\n",
+ " ('handicap', 'put at a disadvantage'),\n",
+ " ('hamper', 'put at a disadvantage'),\n",
+ " ('impede', 'be a hindrance or obstacle to'),\n",
+ " ('embarrass', 'hinder or prevent the progress or accomplishment of')]},\n",
+ " {'answer': 'hired',\n",
+ " 'hint': 'synonyms for hired',\n",
+ " 'clues': [('engage', 'engage for service under a term of contract'),\n",
+ " ('employ', 'engage or hire for work'),\n",
+ " ('rent', 'engage for service under a term of contract'),\n",
+ " ('hire', 'hold under a lease or rental agreement; of goods and services'),\n",
+ " ('charter',\n",
+ " 'hold under a lease or rental agreement; of goods and services'),\n",
+ " ('lease',\n",
+ " 'hold under a lease or rental agreement; of goods and services'),\n",
+ " ('take', 'engage for service under a term of contract')]},\n",
+ " {'answer': 'hollow',\n",
+ " 'hint': 'synonyms for hollow',\n",
+ " 'clues': [('core out', 'remove the interior of'),\n",
+ " ('dig', 'remove the inner part or the core of'),\n",
+ " ('hollow out', 'remove the interior of'),\n",
+ " ('excavate', 'remove the inner part or the core of')]},\n",
+ " {'answer': 'honored',\n",
+ " 'hint': 'synonyms for honored',\n",
+ " 'clues': [('respect', 'show respect towards'),\n",
+ " ('honor', 'show respect towards'),\n",
+ " ('observe', 'show respect towards'),\n",
+ " ('abide by', 'show respect towards'),\n",
+ " ('reward', 'bestow honor or rewards upon')]},\n",
+ " {'answer': 'hoofed',\n",
+ " 'hint': 'synonyms for hoofed',\n",
+ " 'clues': [('foot', 'walk'),\n",
+ " ('leg it', 'walk'),\n",
+ " ('hoof', 'dance in a professional capacity'),\n",
+ " ('hoof it', 'walk')]},\n",
+ " {'answer': 'hooked',\n",
+ " 'hint': 'synonyms for hooked',\n",
+ " 'clues': [('pilfer', 'make off with belongings of others'),\n",
+ " ('hook',\n",
+ " 'to cause (someone or oneself) to become dependent (on something, especially a narcotic drug)'),\n",
+ " ('solicit', 'approach with an offer of sexual favors'),\n",
+ " ('purloin', 'make off with belongings of others'),\n",
+ " ('soak', 'rip off; ask an unreasonable price'),\n",
+ " ('pinch', 'make off with belongings of others'),\n",
+ " ('accost', 'approach with an offer of sexual favors'),\n",
+ " ('gazump', 'rip off; ask an unreasonable price'),\n",
+ " ('sneak', 'make off with belongings of others'),\n",
+ " ('filch', 'make off with belongings of others'),\n",
+ " ('cop', 'take by theft'),\n",
+ " ('crochet',\n",
+ " 'make a piece of needlework by interlocking and looping thread with a hooked needle'),\n",
+ " ('cabbage', 'make off with belongings of others'),\n",
+ " ('snarf', 'make off with belongings of others'),\n",
+ " ('rob', 'rip off; ask an unreasonable price'),\n",
+ " ('swipe', 'make off with belongings of others'),\n",
+ " ('glom', 'take by theft'),\n",
+ " ('knock off', 'take by theft'),\n",
+ " ('lift', 'make off with belongings of others'),\n",
+ " ('nobble', 'make off with belongings of others'),\n",
+ " ('pluck', 'rip off; ask an unreasonable price'),\n",
+ " ('overcharge', 'rip off; ask an unreasonable price'),\n",
+ " ('snitch', 'take by theft'),\n",
+ " ('fleece', 'rip off; ask an unreasonable price'),\n",
+ " ('snare', 'entice and trap'),\n",
+ " ('plume', 'rip off; ask an unreasonable price'),\n",
+ " ('thieve', 'take by theft'),\n",
+ " ('surcharge', 'rip off; ask an unreasonable price'),\n",
+ " ('abstract', 'make off with belongings of others'),\n",
+ " ('addict',\n",
+ " 'to cause (someone or oneself) to become dependent (on something, especially a narcotic drug)')]},\n",
+ " {'answer': 'horrified',\n",
+ " 'hint': 'synonyms for horrified',\n",
+ " 'clues': [('appal',\n",
+ " 'fill with apprehension or alarm; cause to be unpleasantly surprised'),\n",
+ " ('horrify',\n",
+ " 'fill with apprehension or alarm; cause to be unpleasantly surprised'),\n",
+ " ('dismay',\n",
+ " 'fill with apprehension or alarm; cause to be unpleasantly surprised'),\n",
+ " ('alarm',\n",
+ " 'fill with apprehension or alarm; cause to be unpleasantly surprised')]},\n",
+ " {'answer': 'horrifying',\n",
+ " 'hint': 'synonyms for horrifying',\n",
+ " 'clues': [('appal',\n",
+ " 'fill with apprehension or alarm; cause to be unpleasantly surprised'),\n",
+ " ('horrify',\n",
+ " 'fill with apprehension or alarm; cause to be unpleasantly surprised'),\n",
+ " ('dismay',\n",
+ " 'fill with apprehension or alarm; cause to be unpleasantly surprised'),\n",
+ " ('alarm',\n",
+ " 'fill with apprehension or alarm; cause to be unpleasantly surprised')]},\n",
+ " {'answer': 'howling',\n",
+ " 'hint': 'synonyms for howling',\n",
+ " 'clues': [('ululate', 'emit long loud cries'),\n",
+ " ('howl', 'make a loud noise, as of wind, water, or vehicles'),\n",
+ " ('yaup', 'emit long loud cries'),\n",
+ " ('wail', 'emit long loud cries'),\n",
+ " ('yawl', 'emit long loud cries'),\n",
+ " ('roar', 'make a loud noise, as of wind, water, or vehicles'),\n",
+ " ('wrawl', 'cry loudly, as of animals'),\n",
+ " ('yowl', 'cry loudly, as of animals'),\n",
+ " ('yammer', 'cry loudly, as of animals')]},\n",
+ " {'answer': 'hulking',\n",
+ " 'hint': 'synonyms for hulking',\n",
+ " 'clues': [('hulk', 'appear very large or occupy a commanding position'),\n",
+ " ('predominate', 'appear very large or occupy a commanding position'),\n",
+ " ('loom', 'appear very large or occupy a commanding position'),\n",
+ " ('tower', 'appear very large or occupy a commanding position')]},\n",
+ " {'answer': 'humble',\n",
+ " 'hint': 'synonyms for humble',\n",
+ " 'clues': [('chagrin', 'cause to feel shame; hurt the pride of'),\n",
+ " ('abase', 'cause to feel shame; hurt the pride of'),\n",
+ " ('humiliate', 'cause to feel shame; hurt the pride of'),\n",
+ " ('mortify', 'cause to feel shame; hurt the pride of')]},\n",
+ " {'answer': 'humbled',\n",
+ " 'hint': 'synonyms for humbled',\n",
+ " 'clues': [('chagrin', 'cause to feel shame; hurt the pride of'),\n",
+ " ('humiliate', 'cause to feel shame; hurt the pride of'),\n",
+ " ('humble', 'cause to be unpretentious'),\n",
+ " ('mortify', 'cause to feel shame; hurt the pride of'),\n",
+ " ('abase', 'cause to feel shame; hurt the pride of')]},\n",
+ " {'answer': 'humbling',\n",
+ " 'hint': 'synonyms for humbling',\n",
+ " 'clues': [('chagrin', 'cause to feel shame; hurt the pride of'),\n",
+ " ('humiliate', 'cause to feel shame; hurt the pride of'),\n",
+ " ('humble', 'cause to be unpretentious'),\n",
+ " ('mortify', 'cause to feel shame; hurt the pride of'),\n",
+ " ('abase', 'cause to feel shame; hurt the pride of')]},\n",
+ " {'answer': 'humiliated',\n",
+ " 'hint': 'synonyms for humiliated',\n",
+ " 'clues': [('chagrin', 'cause to feel shame; hurt the pride of'),\n",
+ " ('humiliate', 'cause to feel shame; hurt the pride of'),\n",
+ " ('mortify', 'cause to feel shame; hurt the pride of'),\n",
+ " ('abase', 'cause to feel shame; hurt the pride of'),\n",
+ " ('humble', 'cause to feel shame; hurt the pride of')]},\n",
+ " {'answer': 'humiliating',\n",
+ " 'hint': 'synonyms for humiliating',\n",
+ " 'clues': [('chagrin', 'cause to feel shame; hurt the pride of'),\n",
+ " ('humiliate', 'cause to feel shame; hurt the pride of'),\n",
+ " ('mortify', 'cause to feel shame; hurt the pride of'),\n",
+ " ('abase', 'cause to feel shame; hurt the pride of'),\n",
+ " ('humble', 'cause to feel shame; hurt the pride of')]},\n",
+ " {'answer': 'humped',\n",
+ " 'hint': 'synonyms for humped',\n",
+ " 'clues': [('have it away', 'have sexual intercourse with'),\n",
+ " ('roll in the hay', 'have sexual intercourse with'),\n",
+ " ('jazz', 'have sexual intercourse with'),\n",
+ " ('hunch',\n",
+ " \"round one's back by bending forward and drawing the shoulders forward\"),\n",
+ " ('get it on', 'have sexual intercourse with'),\n",
+ " ('hump',\n",
+ " \"round one's back by bending forward and drawing the shoulders forward\"),\n",
+ " ('screw', 'have sexual intercourse with'),\n",
+ " ('hunch over',\n",
+ " \"round one's back by bending forward and drawing the shoulders forward\"),\n",
+ " ('have sex', 'have sexual intercourse with'),\n",
+ " ('have intercourse', 'have sexual intercourse with'),\n",
+ " ('eff', 'have sexual intercourse with'),\n",
+ " ('get laid', 'have sexual intercourse with'),\n",
+ " ('love', 'have sexual intercourse with'),\n",
+ " ('have it off', 'have sexual intercourse with'),\n",
+ " ('fuck', 'have sexual intercourse with'),\n",
+ " ('do it', 'have sexual intercourse with'),\n",
+ " ('hunch forward',\n",
+ " \"round one's back by bending forward and drawing the shoulders forward\"),\n",
+ " ('bang', 'have sexual intercourse with'),\n",
+ " ('be intimate', 'have sexual intercourse with'),\n",
+ " ('bed', 'have sexual intercourse with'),\n",
+ " ('make love', 'have sexual intercourse with'),\n",
+ " ('have a go at it', 'have sexual intercourse with'),\n",
+ " ('bonk', 'have sexual intercourse with'),\n",
+ " ('sleep with', 'have sexual intercourse with'),\n",
+ " ('sleep together', 'have sexual intercourse with'),\n",
+ " ('know', 'have sexual intercourse with'),\n",
+ " ('make out', 'have sexual intercourse with'),\n",
+ " ('lie with', 'have sexual intercourse with')]},\n",
+ " {'answer': 'hunched',\n",
+ " 'hint': 'synonyms for hunched',\n",
+ " 'clues': [('hunch',\n",
+ " \"round one's back by bending forward and drawing the shoulders forward\"),\n",
+ " ('hunch forward',\n",
+ " \"round one's back by bending forward and drawing the shoulders forward\"),\n",
+ " ('hunch over',\n",
+ " \"round one's back by bending forward and drawing the shoulders forward\"),\n",
+ " ('hump',\n",
+ " \"round one's back by bending forward and drawing the shoulders forward\")]},\n",
+ " {'answer': 'hunted',\n",
+ " 'hint': 'synonyms for hunted',\n",
+ " 'clues': [('hunt',\n",
+ " 'oscillate about a desired speed, position, or state to an undesirable extent'),\n",
+ " ('hunt down', 'pursue for food or sport (as of wild animals)'),\n",
+ " ('trace', 'pursue or chase relentlessly'),\n",
+ " ('track down', 'pursue for food or sport (as of wild animals)'),\n",
+ " ('run', 'pursue for food or sport (as of wild animals)'),\n",
+ " ('hound', 'pursue or chase relentlessly')]},\n",
+ " {'answer': 'hurried',\n",
+ " 'hint': 'synonyms for hurried',\n",
+ " 'clues': [('hasten', 'act or move at high speed'),\n",
+ " ('festinate', 'act or move at high speed'),\n",
+ " ('zip', 'move very fast'),\n",
+ " ('look sharp', 'act or move at high speed'),\n",
+ " ('speed', 'move very fast'),\n",
+ " ('rush', 'act or move at high speed'),\n",
+ " ('hurry', 'move very fast'),\n",
+ " ('travel rapidly', 'move very fast')]},\n",
+ " {'answer': 'hurrying',\n",
+ " 'hint': 'synonyms for hurrying',\n",
+ " 'clues': [('hasten', 'act or move at high speed'),\n",
+ " ('festinate', 'act or move at high speed'),\n",
+ " ('zip', 'move very fast'),\n",
+ " ('look sharp', 'act or move at high speed'),\n",
+ " ('speed', 'move very fast'),\n",
+ " ('rush', 'act or move at high speed'),\n",
+ " ('hurry', 'move very fast'),\n",
+ " ('travel rapidly', 'move very fast')]},\n",
+ " {'answer': 'hurt',\n",
+ " 'hint': 'synonyms for hurt',\n",
+ " 'clues': [('spite', 'hurt the feelings of'),\n",
+ " ('ache', 'be the source of pain'),\n",
+ " ('suffer', 'feel pain or be in pain'),\n",
+ " ('anguish', 'cause emotional anguish or make miserable'),\n",
+ " ('pain', 'cause emotional anguish or make miserable'),\n",
+ " ('injure', 'hurt the feelings of'),\n",
+ " ('smart', 'be the source of pain'),\n",
+ " ('wound', 'hurt the feelings of'),\n",
+ " ('offend', 'hurt the feelings of'),\n",
+ " ('bruise', 'hurt the feelings of')]},\n",
+ " {'answer': 'hushed',\n",
+ " 'hint': 'synonyms for hushed',\n",
+ " 'clues': [('quieten', 'cause to be quiet or not talk'),\n",
+ " ('still', 'cause to be quiet or not talk'),\n",
+ " ('quiesce', 'become quiet or quieter'),\n",
+ " ('silence', 'cause to be quiet or not talk'),\n",
+ " ('quiet down', 'become quiet or quieter'),\n",
+ " ('shut up', 'cause to be quiet or not talk'),\n",
+ " ('hush',\n",
+ " 'run water over the ground to erode (soil), revealing the underlying strata and valuable minerals'),\n",
+ " ('pipe down', 'become quiet or quieter'),\n",
+ " ('quiet', 'become quiet or quieter'),\n",
+ " ('hush up', 'cause to be quiet or not talk')]},\n",
+ " {'answer': 'identified',\n",
+ " 'hint': 'synonyms for identified',\n",
+ " 'clues': [('identify',\n",
+ " 'recognize as being; establish the identity of someone or something'),\n",
+ " ('name', 'identify as in botany or biology, for example'),\n",
+ " ('distinguish', 'identify as in botany or biology, for example'),\n",
+ " ('key', 'identify as in botany or biology, for example'),\n",
+ " ('key out', 'identify as in botany or biology, for example'),\n",
+ " ('describe', 'identify as in botany or biology, for example'),\n",
+ " ('discover', 'identify as in botany or biology, for example'),\n",
+ " ('place',\n",
+ " 'recognize as being; establish the identity of someone or something')]},\n",
+ " {'answer': 'idle',\n",
+ " 'hint': 'synonyms for idle',\n",
+ " 'clues': [('stagnate', 'be idle; exist in a changeless situation'),\n",
+ " ('laze', 'be idle; exist in a changeless situation'),\n",
+ " ('tick over', 'run disconnected or idle'),\n",
+ " ('slug', 'be idle; exist in a changeless situation')]},\n",
+ " {'answer': 'idolised',\n",
+ " 'hint': 'synonyms for idolised',\n",
+ " 'clues': [('idolise',\n",
+ " 'love unquestioningly and uncritically or to excess; venerate as an idol'),\n",
+ " ('hero-worship',\n",
+ " 'love unquestioningly and uncritically or to excess; venerate as an idol'),\n",
+ " ('revere',\n",
+ " 'love unquestioningly and uncritically or to excess; venerate as an idol'),\n",
+ " ('worship',\n",
+ " 'love unquestioningly and uncritically or to excess; venerate as an idol')]},\n",
+ " {'answer': 'idolized',\n",
+ " 'hint': 'synonyms for idolized',\n",
+ " 'clues': [('idolise',\n",
+ " 'love unquestioningly and uncritically or to excess; venerate as an idol'),\n",
+ " ('hero-worship',\n",
+ " 'love unquestioningly and uncritically or to excess; venerate as an idol'),\n",
+ " ('revere',\n",
+ " 'love unquestioningly and uncritically or to excess; venerate as an idol'),\n",
+ " ('worship',\n",
+ " 'love unquestioningly and uncritically or to excess; venerate as an idol')]},\n",
+ " {'answer': 'ignited',\n",
+ " 'hint': 'synonyms for ignited',\n",
+ " 'clues': [('take fire', 'start to burn or burst into flames'),\n",
+ " ('catch fire', 'start to burn or burst into flames'),\n",
+ " ('inflame', 'arouse or excite feelings and passions'),\n",
+ " ('ignite', 'start to burn or burst into flames'),\n",
+ " ('erupt', 'start to burn or burst into flames'),\n",
+ " ('conflagrate', 'start to burn or burst into flames'),\n",
+ " ('stir up', 'arouse or excite feelings and passions'),\n",
+ " ('wake', 'arouse or excite feelings and passions'),\n",
+ " ('fire up', 'arouse or excite feelings and passions'),\n",
+ " ('light', 'cause to start burning; subject to fire or great heat'),\n",
+ " ('heat', 'arouse or excite feelings and passions'),\n",
+ " ('combust', 'start to burn or burst into flames')]},\n",
+ " {'answer': 'ignored',\n",
+ " 'hint': 'synonyms for ignored',\n",
+ " 'clues': [('ignore', 'bar from attention or consideration'),\n",
+ " ('brush aside', 'bar from attention or consideration'),\n",
+ " ('cut', 'refuse to acknowledge'),\n",
+ " ('snub', 'refuse to acknowledge'),\n",
+ " ('disregard', 'bar from attention or consideration'),\n",
+ " ('neglect', 'give little or no attention to'),\n",
+ " ('brush off', 'bar from attention or consideration'),\n",
+ " ('discount', 'bar from attention or consideration'),\n",
+ " ('dismiss', 'bar from attention or consideration')]},\n",
+ " {'answer': 'ill-treated',\n",
+ " 'hint': 'synonyms for ill-treated',\n",
+ " 'clues': [('ill-use', 'treat badly'),\n",
+ " ('ill-treat', 'treat badly'),\n",
+ " ('mistreat', 'treat badly'),\n",
+ " ('step', 'treat badly'),\n",
+ " ('abuse', 'treat badly'),\n",
+ " ('maltreat', 'treat badly')]},\n",
+ " {'answer': 'ill-used',\n",
+ " 'hint': 'synonyms for ill-used',\n",
+ " 'clues': [('ill-use', 'treat badly'),\n",
+ " ('ill-treat', 'treat badly'),\n",
+ " ('mistreat', 'treat badly'),\n",
+ " ('step', 'treat badly'),\n",
+ " ('abuse', 'treat badly'),\n",
+ " ('maltreat', 'treat badly')]},\n",
+ " {'answer': 'illuminated',\n",
+ " 'hint': 'synonyms for illuminated',\n",
+ " 'clues': [('straighten out',\n",
+ " 'make free from confusion or ambiguity; make clear'),\n",
+ " ('sort out', 'make free from confusion or ambiguity; make clear'),\n",
+ " ('illumine', 'make lighter or brighter'),\n",
+ " ('clear', 'make free from confusion or ambiguity; make clear'),\n",
+ " ('crystallize', 'make free from confusion or ambiguity; make clear'),\n",
+ " ('shed light on', 'make free from confusion or ambiguity; make clear'),\n",
+ " ('enlighten', 'make free from confusion or ambiguity; make clear'),\n",
+ " ('elucidate', 'make free from confusion or ambiguity; make clear'),\n",
+ " ('clear up', 'make free from confusion or ambiguity; make clear'),\n",
+ " ('light up', 'make lighter or brighter'),\n",
+ " ('light', 'make lighter or brighter')]},\n",
+ " {'answer': 'illuminating',\n",
+ " 'hint': 'synonyms for illuminating',\n",
+ " 'clues': [('straighten out',\n",
+ " 'make free from confusion or ambiguity; make clear'),\n",
+ " ('sort out', 'make free from confusion or ambiguity; make clear'),\n",
+ " ('illumine', 'make lighter or brighter'),\n",
+ " ('clear', 'make free from confusion or ambiguity; make clear'),\n",
+ " ('crystallize', 'make free from confusion or ambiguity; make clear'),\n",
+ " ('shed light on', 'make free from confusion or ambiguity; make clear'),\n",
+ " ('enlighten', 'make free from confusion or ambiguity; make clear'),\n",
+ " ('elucidate', 'make free from confusion or ambiguity; make clear'),\n",
+ " ('clear up', 'make free from confusion or ambiguity; make clear'),\n",
+ " ('light up', 'make lighter or brighter'),\n",
+ " ('light', 'make lighter or brighter')]},\n",
+ " {'answer': 'impacted',\n",
+ " 'hint': 'synonyms for impacted',\n",
+ " 'clues': [('impact', 'press or wedge together; pack together'),\n",
+ " ('affect', 'have an effect upon'),\n",
+ " ('bear upon', 'have an effect upon'),\n",
+ " ('touch on', 'have an effect upon'),\n",
+ " ('touch', 'have an effect upon')]},\n",
+ " {'answer': 'impaired',\n",
+ " 'hint': 'synonyms for impaired',\n",
+ " 'clues': [('impair', 'make worse or less effective'),\n",
+ " ('mar', 'make imperfect'),\n",
+ " ('vitiate', 'make imperfect'),\n",
+ " ('deflower', 'make imperfect'),\n",
+ " ('spoil', 'make imperfect')]},\n",
+ " {'answer': 'impeded',\n",
+ " 'hint': 'synonyms for impeded',\n",
+ " 'clues': [('close up', 'block passage through'),\n",
+ " ('block', 'block passage through'),\n",
+ " ('jam', 'block passage through'),\n",
+ " ('obstruct', 'block passage through'),\n",
+ " ('hinder', 'be a hindrance or obstacle to'),\n",
+ " ('impede', 'block passage through'),\n",
+ " ('obturate', 'block passage through'),\n",
+ " ('occlude', 'block passage through')]},\n",
+ " {'answer': 'impeding',\n",
+ " 'hint': 'synonyms for impeding',\n",
+ " 'clues': [('close up', 'block passage through'),\n",
+ " ('block', 'block passage through'),\n",
+ " ('jam', 'block passage through'),\n",
+ " ('obstruct', 'block passage through'),\n",
+ " ('hinder', 'be a hindrance or obstacle to'),\n",
+ " ('impede', 'block passage through'),\n",
+ " ('obturate', 'block passage through'),\n",
+ " ('occlude', 'block passage through')]},\n",
+ " {'answer': 'implanted',\n",
+ " 'hint': 'synonyms for implanted',\n",
+ " 'clues': [('implant', 'become attached to and embedded in the uterus'),\n",
+ " ('imbed', 'fix or set securely or deeply'),\n",
+ " ('plant', 'put firmly in the mind'),\n",
+ " ('engraft', 'fix or set securely or deeply'),\n",
+ " ('embed', 'fix or set securely or deeply')]},\n",
+ " {'answer': 'implemented',\n",
+ " 'hint': 'synonyms for implemented',\n",
+ " 'clues': [('put through',\n",
+ " 'pursue to a conclusion or bring to a successful issue'),\n",
+ " ('follow out', 'pursue to a conclusion or bring to a successful issue'),\n",
+ " ('follow up', 'pursue to a conclusion or bring to a successful issue'),\n",
+ " ('apply', 'ensure observance of laws and rules'),\n",
+ " ('go through', 'pursue to a conclusion or bring to a successful issue'),\n",
+ " ('follow through',\n",
+ " 'pursue to a conclusion or bring to a successful issue'),\n",
+ " ('enforce', 'ensure observance of laws and rules'),\n",
+ " ('carry out', 'pursue to a conclusion or bring to a successful issue'),\n",
+ " ('implement', 'pursue to a conclusion or bring to a successful issue')]},\n",
+ " {'answer': 'imposed',\n",
+ " 'hint': 'synonyms for imposed',\n",
+ " 'clues': [('levy', 'impose and collect'),\n",
+ " ('impose', 'compel to behave in a certain way'),\n",
+ " ('bring down', 'impose something unpleasant'),\n",
+ " ('enforce', 'compel to behave in a certain way'),\n",
+ " ('visit', 'impose something unpleasant'),\n",
+ " ('inflict', 'impose something unpleasant')]},\n",
+ " {'answer': 'imposing',\n",
+ " 'hint': 'synonyms for imposing',\n",
+ " 'clues': [('levy', 'impose and collect'),\n",
+ " ('impose', 'compel to behave in a certain way'),\n",
+ " ('bring down', 'impose something unpleasant'),\n",
+ " ('enforce', 'compel to behave in a certain way'),\n",
+ " ('visit', 'impose something unpleasant'),\n",
+ " ('inflict', 'impose something unpleasant')]},\n",
+ " {'answer': 'impressed',\n",
+ " 'hint': 'synonyms for impressed',\n",
+ " 'clues': [('impress', 'have an emotional or cognitive impact upon'),\n",
+ " ('instill', 'produce or try to produce a vivid impression of'),\n",
+ " ('yarn-dye', 'dye (fabric) before it is spun'),\n",
+ " ('shanghai',\n",
+ " 'take (someone) against his will for compulsory service, especially on board a ship'),\n",
+ " ('strike', 'have an emotional or cognitive impact upon'),\n",
+ " ('imprint', 'mark or stamp with or as if with pressure'),\n",
+ " ('ingrain', 'produce or try to produce a vivid impression of'),\n",
+ " ('print', 'reproduce by printing'),\n",
+ " ('affect', 'have an emotional or cognitive impact upon'),\n",
+ " ('move', 'have an emotional or cognitive impact upon')]},\n",
+ " {'answer': 'imprisoned',\n",
+ " 'hint': 'synonyms for imprisoned',\n",
+ " 'clues': [('imprison', 'lock up or confine, in or as in a jail'),\n",
+ " ('immure', 'lock up or confine, in or as in a jail'),\n",
+ " ('gaol', 'lock up or confine, in or as in a jail'),\n",
+ " ('remand', 'lock up or confine, in or as in a jail'),\n",
+ " ('put away', 'lock up or confine, in or as in a jail'),\n",
+ " ('lag', 'lock up or confine, in or as in a jail'),\n",
+ " ('incarcerate', 'lock up or confine, in or as in a jail'),\n",
+ " ('jail', 'lock up or confine, in or as in a jail'),\n",
+ " ('put behind bars', 'lock up or confine, in or as in a jail'),\n",
+ " ('jug', 'lock up or confine, in or as in a jail')]},\n",
+ " {'answer': 'improved',\n",
+ " 'hint': 'synonyms for improved',\n",
+ " 'clues': [('better', 'get better'),\n",
+ " ('ameliorate', 'to make better'),\n",
+ " ('improve', 'get better'),\n",
+ " ('amend', 'to make better')]},\n",
+ " {'answer': 'improving',\n",
+ " 'hint': 'synonyms for improving',\n",
+ " 'clues': [('better', 'get better'),\n",
+ " ('ameliorate', 'to make better'),\n",
+ " ('improve', 'get better'),\n",
+ " ('amend', 'to make better')]},\n",
+ " {'answer': 'incapacitated',\n",
+ " 'hint': 'synonyms for incapacitated',\n",
+ " 'clues': [('handicap', 'injure permanently'),\n",
+ " ('incapacitate', 'make unable to perform a certain action'),\n",
+ " ('disenable', 'make unable to perform a certain action'),\n",
+ " ('invalid', 'injure permanently')]},\n",
+ " {'answer': 'incapacitating',\n",
+ " 'hint': 'synonyms for incapacitating',\n",
+ " 'clues': [('handicap', 'injure permanently'),\n",
+ " ('incapacitate', 'make unable to perform a certain action'),\n",
+ " ('disenable', 'make unable to perform a certain action'),\n",
+ " ('invalid', 'injure permanently')]},\n",
+ " {'answer': 'incensed',\n",
+ " 'hint': 'synonyms for incensed',\n",
+ " 'clues': [('thurify', 'perfume especially with a censer'),\n",
+ " ('incense', 'perfume especially with a censer'),\n",
+ " ('cense', 'perfume especially with a censer'),\n",
+ " ('infuriate', 'make furious'),\n",
+ " ('exasperate', 'make furious')]},\n",
+ " ...],\n",
+ " 'portion': 0.6},\n",
+ " {'name': 'adverbs',\n",
+ " 'groups': [{'answer': 'about',\n",
+ " 'hint': 'synonyms for about',\n",
+ " 'clues': [('nigh',\n",
+ " '(of actions or states) slightly short of or not quite accomplished; all but'),\n",
+ " ('roughly', '(of quantities) imprecise but fairly close to correct'),\n",
+ " ('close to', '(of quantities) imprecise but fairly close to correct'),\n",
+ " ('just about', '(of quantities) imprecise but fairly close to correct'),\n",
+ " ('or so', '(of quantities) imprecise but fairly close to correct'),\n",
+ " ('well-nigh',\n",
+ " '(of actions or states) slightly short of or not quite accomplished; all but'),\n",
+ " ('most',\n",
+ " '(of actions or states) slightly short of or not quite accomplished; all but'),\n",
+ " ('around', 'in or to a reversed position or direction'),\n",
+ " ('more or less', '(of quantities) imprecise but fairly close to correct'),\n",
+ " ('virtually',\n",
+ " '(of actions or states) slightly short of or not quite accomplished; all but'),\n",
+ " ('almost',\n",
+ " '(of actions or states) slightly short of or not quite accomplished; all but'),\n",
+ " ('nearly',\n",
+ " '(of actions or states) slightly short of or not quite accomplished; all but'),\n",
+ " ('approximately',\n",
+ " '(of quantities) imprecise but fairly close to correct'),\n",
+ " ('some', '(of quantities) imprecise but fairly close to correct')]},\n",
+ " {'answer': 'after',\n",
+ " 'hint': 'synonyms for after',\n",
+ " 'clues': [('afterward',\n",
+ " 'happening at a time subsequent to a reference time'),\n",
+ " ('later on', 'happening at a time subsequent to a reference time'),\n",
+ " ('subsequently', 'happening at a time subsequent to a reference time'),\n",
+ " ('later', 'happening at a time subsequent to a reference time')]},\n",
+ " {'answer': 'ahead',\n",
+ " 'hint': 'synonyms for ahead',\n",
+ " 'clues': [('forward', 'in a forward direction'),\n",
+ " ('onward', 'in a forward direction'),\n",
+ " ('out front', 'leading or ahead in a competition'),\n",
+ " ('beforehand', 'ahead of time; in anticipation'),\n",
+ " ('forrader', 'in a forward direction'),\n",
+ " ('before', 'at or in the front'),\n",
+ " ('in the lead', 'leading or ahead in a competition'),\n",
+ " ('in front', 'at or in the front'),\n",
+ " ('in advance', 'ahead of time; in anticipation')]},\n",
+ " {'answer': 'all',\n",
+ " 'hint': 'synonyms for all',\n",
+ " 'clues': [('entirely',\n",
+ " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\"),\n",
+ " ('altogether',\n",
+ " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\"),\n",
+ " ('completely',\n",
+ " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\"),\n",
+ " ('totally',\n",
+ " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\"),\n",
+ " ('wholly',\n",
+ " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\"),\n",
+ " ('whole',\n",
+ " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\")]},\n",
+ " {'answer': 'all_right',\n",
+ " 'hint': 'synonyms for all right',\n",
+ " 'clues': [('okay',\n",
+ " \"in a satisfactory or adequate manner; ; ; (`alright' is a nonstandard variant of `all right')\"),\n",
+ " ('very well',\n",
+ " 'an expression of agreement normally occurring at the beginning of a sentence'),\n",
+ " ('alright',\n",
+ " \"in a satisfactory or adequate manner; ; ; (`alright' is a nonstandard variant of `all right')\"),\n",
+ " ('fine',\n",
+ " 'an expression of agreement normally occurring at the beginning of a sentence')]},\n",
+ " {'answer': 'alone',\n",
+ " 'hint': 'synonyms for alone',\n",
+ " 'clues': [('solely', 'without any others being included or involved'),\n",
+ " ('solo', 'without anybody else or anything else'),\n",
+ " ('entirely', 'without any others being included or involved'),\n",
+ " ('exclusively', 'without any others being included or involved'),\n",
+ " ('unaccompanied', 'without anybody else or anything else'),\n",
+ " ('only', 'without any others being included or involved')]},\n",
+ " {'answer': 'alright',\n",
+ " 'hint': 'synonyms for alright',\n",
+ " 'clues': [('okay',\n",
+ " \"in a satisfactory or adequate manner; ; ; (`alright' is a nonstandard variant of `all right')\"),\n",
+ " ('very well',\n",
+ " 'an expression of agreement normally occurring at the beginning of a sentence'),\n",
+ " ('all right',\n",
+ " 'an expression of agreement normally occurring at the beginning of a sentence'),\n",
+ " ('fine',\n",
+ " 'an expression of agreement normally occurring at the beginning of a sentence')]},\n",
+ " {'answer': 'apropos',\n",
+ " 'hint': 'synonyms for apropos',\n",
+ " 'clues': [('well-timed', 'at an opportune time'),\n",
+ " ('by the bye', 'introducing a different topic; in point of fact'),\n",
+ " ('timely', 'at an opportune time'),\n",
+ " ('incidentally', 'introducing a different topic; in point of fact'),\n",
+ " ('by the way', 'introducing a different topic; in point of fact'),\n",
+ " ('seasonably', 'at an opportune time')]},\n",
+ " {'answer': 'away',\n",
+ " 'hint': 'synonyms for away',\n",
+ " 'clues': [('off',\n",
+ " \"from a particular thing or place or position (`forth' is obsolete)\"),\n",
+ " ('aside', 'in a different direction'),\n",
+ " ('by', 'in reserve; not for immediate use'),\n",
+ " ('out', \"from one's possession\"),\n",
+ " ('forth',\n",
+ " \"from a particular thing or place or position (`forth' is obsolete)\")]},\n",
+ " {'answer': 'best',\n",
+ " 'hint': 'synonyms for best',\n",
+ " 'clues': [('well', 'with prudence or propriety'),\n",
+ " ('intimately', 'with great or especially intimate knowledge'),\n",
+ " ('considerably', 'to a great extent or degree'),\n",
+ " ('easily', 'indicating high probability; in all likelihood'),\n",
+ " ('substantially', 'to a great extent or degree'),\n",
+ " ('comfortably', 'in financial comfort'),\n",
+ " ('advantageously', 'in a manner affording benefit or advantage'),\n",
+ " ('better', 'from a position of superiority or authority'),\n",
+ " ('good',\n",
+ " \"(often used as a combining form) in a good or proper or satisfactory manner or to a high standard (`good' is a nonstandard dialectal variant for `well')\")]},\n",
+ " {'answer': 'better',\n",
+ " 'hint': 'synonyms for better',\n",
+ " 'clues': [('well', 'with prudence or propriety'),\n",
+ " ('intimately', 'with great or especially intimate knowledge'),\n",
+ " ('considerably', 'to a great extent or degree'),\n",
+ " ('easily', 'indicating high probability; in all likelihood'),\n",
+ " ('substantially', 'to a great extent or degree'),\n",
+ " ('comfortably', 'in financial comfort'),\n",
+ " ('advantageously', 'in a manner affording benefit or advantage'),\n",
+ " ('best', 'from a position of superiority or authority'),\n",
+ " ('good',\n",
+ " \"(often used as a combining form) in a good or proper or satisfactory manner or to a high standard (`good' is a nonstandard dialectal variant for `well')\")]},\n",
+ " {'answer': 'close',\n",
+ " 'hint': 'synonyms for close',\n",
+ " 'clues': [('nigh', 'near in time or place or relationship'),\n",
+ " ('closely', 'in an attentive manner'),\n",
+ " ('near', 'near in time or place or relationship'),\n",
+ " ('tight', 'in an attentive manner')]},\n",
+ " {'answer': 'dead',\n",
+ " 'hint': 'synonyms for dead',\n",
+ " 'clues': [('short', 'quickly and without warning'),\n",
+ " ('utterly',\n",
+ " 'completely and without qualification; used informally as intensifiers'),\n",
+ " ('abruptly', 'quickly and without warning'),\n",
+ " ('perfectly',\n",
+ " 'completely and without qualification; used informally as intensifiers'),\n",
+ " ('suddenly', 'quickly and without warning'),\n",
+ " ('absolutely',\n",
+ " 'completely and without qualification; used informally as intensifiers')]},\n",
+ " {'answer': 'deadly',\n",
+ " 'hint': 'synonyms for deadly',\n",
+ " 'clues': [('lifelessly', 'as if dead'),\n",
+ " ('madly', '(used as intensives) extremely'),\n",
+ " ('insanely', '(used as intensives) extremely'),\n",
+ " ('deucedly', '(used as intensives) extremely'),\n",
+ " ('devilishly', '(used as intensives) extremely')]},\n",
+ " {'answer': 'decent',\n",
+ " 'hint': 'synonyms for decent',\n",
+ " 'clues': [('decently', 'in the right manner'),\n",
+ " ('right', 'in the right manner'),\n",
+ " ('in good order', 'in the right manner'),\n",
+ " ('the right way', 'in the right manner'),\n",
+ " ('properly', 'in the right manner')]},\n",
+ " {'answer': 'earlier',\n",
+ " 'hint': 'synonyms for earlier',\n",
+ " 'clues': [('in the beginning', 'before now'),\n",
+ " ('sooner', \"comparatives of `soon' or `early'\"),\n",
+ " ('before', 'earlier in time; previously'),\n",
+ " ('to begin with', 'before now'),\n",
+ " ('originally', 'before now'),\n",
+ " ('in the first place', 'before now')]},\n",
+ " {'answer': 'early',\n",
+ " 'hint': 'synonyms for early',\n",
+ " 'clues': [('ahead of time', 'before the usual time or the time expected'),\n",
+ " ('early on', 'during an early stage'),\n",
+ " ('too soon', 'before the usual time or the time expected'),\n",
+ " ('betimes', 'in good time')]},\n",
+ " {'answer': 'easy',\n",
+ " 'hint': 'synonyms for easy',\n",
+ " 'clues': [('soft',\n",
+ " \"in a relaxed manner; or without hardship; (`soft' is nonstandard)\"),\n",
+ " ('slowly',\n",
+ " \"without speed (`slow' is sometimes used informally for `slowly')\"),\n",
+ " ('tardily',\n",
+ " \"without speed (`slow' is sometimes used informally for `slowly')\"),\n",
+ " ('easily',\n",
+ " \"with ease (`easy' is sometimes used informally for `easily')\")]},\n",
+ " {'answer': 'erstwhile',\n",
+ " 'hint': 'synonyms for erstwhile',\n",
+ " 'clues': [('at one time', 'at a previous time'),\n",
+ " ('formerly', 'at a previous time'),\n",
+ " ('once', 'at a previous time'),\n",
+ " ('erst', 'at a previous time')]},\n",
+ " {'answer': 'false',\n",
+ " 'hint': 'synonyms for false',\n",
+ " 'clues': [('treasonably', 'in a disloyal and faithless manner'),\n",
+ " ('traitorously', 'in a disloyal and faithless manner'),\n",
+ " ('treacherously', 'in a disloyal and faithless manner'),\n",
+ " ('faithlessly', 'in a disloyal and faithless manner')]},\n",
+ " {'answer': 'fine',\n",
+ " 'hint': 'synonyms for fine',\n",
+ " 'clues': [('very well',\n",
+ " 'an expression of agreement normally occurring at the beginning of a sentence'),\n",
+ " ('delicately', 'in a delicate manner'),\n",
+ " ('all right',\n",
+ " 'an expression of agreement normally occurring at the beginning of a sentence'),\n",
+ " ('finely', 'in a delicate manner'),\n",
+ " ('exquisitely', 'in a delicate manner')]},\n",
+ " {'answer': 'first',\n",
+ " 'hint': 'synonyms for first',\n",
+ " 'clues': [('first of all', 'before anything else'),\n",
+ " ('firstly', 'before anything else'),\n",
+ " ('foremost', 'before anything else'),\n",
+ " ('for the first time', 'the initial time'),\n",
+ " ('first off', 'before anything else')]},\n",
+ " {'answer': 'for_sure',\n",
+ " 'hint': 'synonyms for for sure',\n",
+ " 'clues': [('sure as shooting',\n",
+ " \"definitely or positively (`sure' is sometimes used informally for `surely')\"),\n",
+ " ('sure',\n",
+ " \"definitely or positively (`sure' is sometimes used informally for `surely')\"),\n",
+ " ('certainly',\n",
+ " \"definitely or positively (`sure' is sometimes used informally for `surely')\"),\n",
+ " ('for certain',\n",
+ " \"definitely or positively (`sure' is sometimes used informally for `surely')\"),\n",
+ " ('sure enough',\n",
+ " \"definitely or positively (`sure' is sometimes used informally for `surely')\")]},\n",
+ " {'answer': 'forward',\n",
+ " 'hint': 'synonyms for forward',\n",
+ " 'clues': [('onward', 'in a forward direction'),\n",
+ " ('forrader', 'in a forward direction'),\n",
+ " ('ahead', 'toward the future; forward in time'),\n",
+ " ('forwards', 'in a forward direction'),\n",
+ " ('forrard',\n",
+ " \"at or to or toward the front; ; ; ; (`forrad' and `forrard' are dialectal variations)\"),\n",
+ " ('frontwards',\n",
+ " \"at or to or toward the front; ; ; ; (`forrad' and `forrard' are dialectal variations)\"),\n",
+ " ('fore', 'near or toward the bow of a ship or cockpit of a plane'),\n",
+ " ('forth', 'forward in time or order or degree')]},\n",
+ " {'answer': 'hard',\n",
+ " 'hint': 'synonyms for hard',\n",
+ " 'clues': [('heavily', 'indulging excessively'),\n",
+ " ('intemperately', 'indulging excessively'),\n",
+ " ('firmly', 'with firmness'),\n",
+ " ('severely', 'causing great damage or hardship')]},\n",
+ " {'answer': 'inside',\n",
+ " 'hint': 'synonyms for inside',\n",
+ " 'clues': [('deep down', 'in reality'),\n",
+ " ('indoors', 'within a building'),\n",
+ " ('at bottom', 'in reality'),\n",
+ " ('within', 'on the inside'),\n",
+ " ('inwardly', 'with respect to private feelings'),\n",
+ " ('at heart', 'in reality'),\n",
+ " ('in spite of appearance', 'in reality')]},\n",
+ " {'answer': 'jolly',\n",
+ " 'hint': 'synonyms for jolly',\n",
+ " 'clues': [('somewhat', 'to a moderately sufficient extent or degree'),\n",
+ " ('passably', 'to a moderately sufficient extent or degree'),\n",
+ " ('middling', 'to a moderately sufficient extent or degree'),\n",
+ " ('pretty', 'to a moderately sufficient extent or degree'),\n",
+ " ('reasonably', 'to a moderately sufficient extent or degree'),\n",
+ " ('moderately', 'to a moderately sufficient extent or degree'),\n",
+ " ('fairly', 'to a moderately sufficient extent or degree')]},\n",
+ " {'answer': 'just',\n",
+ " 'hint': 'synonyms for just',\n",
+ " 'clues': [('precisely', 'indicating exactness or preciseness'),\n",
+ " ('hardly', 'only a very short time before; ; ; ; ; - W.B.Yeats'),\n",
+ " ('just now', 'only a moment ago'),\n",
+ " ('scarce', 'only a very short time before; ; ; ; ; - W.B.Yeats'),\n",
+ " ('merely', 'and nothing more'),\n",
+ " ('simply', 'absolutely'),\n",
+ " ('only', 'and nothing more'),\n",
+ " ('barely', 'only a very short time before; ; ; ; ; - W.B.Yeats'),\n",
+ " ('exactly', 'indicating exactness or preciseness'),\n",
+ " ('but', 'and nothing more')]},\n",
+ " {'answer': 'late',\n",
+ " 'hint': 'synonyms for late',\n",
+ " 'clues': [('lately', 'in the recent past'),\n",
+ " ('recently', 'in the recent past'),\n",
+ " ('tardily', 'later than usual or than expected'),\n",
+ " ('belatedly', 'later than usual or than expected'),\n",
+ " ('of late', 'in the recent past'),\n",
+ " ('deep', 'to an advanced time')]},\n",
+ " {'answer': 'later',\n",
+ " 'hint': 'synonyms for later',\n",
+ " 'clues': [('afterward',\n",
+ " 'happening at a time subsequent to a reference time'),\n",
+ " ('later on', 'happening at a time subsequent to a reference time'),\n",
+ " ('subsequently', 'happening at a time subsequent to a reference time'),\n",
+ " ('by and by', 'at some eventual time in the future'),\n",
+ " ('after', 'happening at a time subsequent to a reference time')]},\n",
+ " {'answer': 'lengthways',\n",
+ " 'hint': 'synonyms for lengthways',\n",
+ " 'clues': [('lengthwise', 'in the direction of the length'),\n",
+ " ('longwise', 'in the direction of the length'),\n",
+ " ('longitudinally', 'in the direction of the length'),\n",
+ " ('longways', 'in the direction of the length')]},\n",
+ " {'answer': 'lengthwise',\n",
+ " 'hint': 'synonyms for lengthwise',\n",
+ " 'clues': [('longways', 'in the direction of the length'),\n",
+ " ('longwise', 'in the direction of the length'),\n",
+ " ('lengthways', 'in the direction of the length'),\n",
+ " ('longitudinally', 'in the direction of the length')]},\n",
+ " {'answer': 'likely',\n",
+ " 'hint': 'synonyms for likely',\n",
+ " 'clues': [('probably', 'with considerable certainty; without much doubt'),\n",
+ " ('in all likelihood', 'with considerable certainty; without much doubt'),\n",
+ " ('in all probability', 'with considerable certainty; without much doubt'),\n",
+ " ('belike', 'with considerable certainty; without much doubt')]},\n",
+ " {'answer': 'middling',\n",
+ " 'hint': 'synonyms for middling',\n",
+ " 'clues': [('somewhat', 'to a moderately sufficient extent or degree'),\n",
+ " ('passably', 'to a moderately sufficient extent or degree'),\n",
+ " ('reasonably', 'to a moderately sufficient extent or degree'),\n",
+ " ('pretty', 'to a moderately sufficient extent or degree'),\n",
+ " ('moderately', 'to a moderately sufficient extent or degree'),\n",
+ " ('jolly', 'to a moderately sufficient extent or degree'),\n",
+ " ('fairly', 'to a moderately sufficient extent or degree')]},\n",
+ " {'answer': 'most',\n",
+ " 'hint': 'synonyms for most',\n",
+ " 'clues': [('nigh',\n",
+ " '(of actions or states) slightly short of or not quite accomplished; all but'),\n",
+ " ('almost',\n",
+ " '(of actions or states) slightly short of or not quite accomplished; all but'),\n",
+ " ('well-nigh',\n",
+ " '(of actions or states) slightly short of or not quite accomplished; all but'),\n",
+ " ('nearly',\n",
+ " '(of actions or states) slightly short of or not quite accomplished; all but'),\n",
+ " ('to the highest degree', 'used to form the superlative'),\n",
+ " ('about',\n",
+ " '(of actions or states) slightly short of or not quite accomplished; all but'),\n",
+ " ('virtually',\n",
+ " '(of actions or states) slightly short of or not quite accomplished; all but')]},\n",
+ " {'answer': 'much',\n",
+ " 'hint': 'synonyms for much',\n",
+ " 'clues': [('practically',\n",
+ " '(degree adverb used before a noun phrase) for all practical purposes but not completely'),\n",
+ " ('a good deal', 'to a very great degree or extent'),\n",
+ " ('a great deal', 'frequently or in great quantities'),\n",
+ " ('lots', 'to a very great degree or extent'),\n",
+ " ('a lot', 'to a very great degree or extent'),\n",
+ " ('very much', 'to a very great degree or extent'),\n",
+ " ('often', 'frequently or in great quantities')]},\n",
+ " {'answer': 'near',\n",
+ " 'hint': 'synonyms for near',\n",
+ " 'clues': [('nigh',\n",
+ " '(of actions or states) slightly short of or not quite accomplished; all but'),\n",
+ " ('almost',\n",
+ " '(of actions or states) slightly short of or not quite accomplished; all but'),\n",
+ " ('well-nigh',\n",
+ " '(of actions or states) slightly short of or not quite accomplished; all but'),\n",
+ " ('most',\n",
+ " '(of actions or states) slightly short of or not quite accomplished; all but'),\n",
+ " ('nearly',\n",
+ " '(of actions or states) slightly short of or not quite accomplished; all but'),\n",
+ " ('about',\n",
+ " '(of actions or states) slightly short of or not quite accomplished; all but'),\n",
+ " ('close', 'near in time or place or relationship'),\n",
+ " ('virtually',\n",
+ " '(of actions or states) slightly short of or not quite accomplished; all but')]},\n",
+ " {'answer': 'nigh',\n",
+ " 'hint': 'synonyms for nigh',\n",
+ " 'clues': [('almost',\n",
+ " '(of actions or states) slightly short of or not quite accomplished; all but'),\n",
+ " ('near', 'near in time or place or relationship'),\n",
+ " ('well-nigh',\n",
+ " '(of actions or states) slightly short of or not quite accomplished; all but'),\n",
+ " ('most',\n",
+ " '(of actions or states) slightly short of or not quite accomplished; all but'),\n",
+ " ('about',\n",
+ " '(of actions or states) slightly short of or not quite accomplished; all but'),\n",
+ " ('close', 'near in time or place or relationship'),\n",
+ " ('virtually',\n",
+ " '(of actions or states) slightly short of or not quite accomplished; all but')]},\n",
+ " {'answer': 'on_the_button',\n",
+ " 'hint': 'synonyms for on the button',\n",
+ " 'clues': [('precisely', 'just as it should be'),\n",
+ " ('on the nose', 'just as it should be'),\n",
+ " ('on the dot', 'just as it should be'),\n",
+ " ('exactly', 'just as it should be')]},\n",
+ " {'answer': 'on_the_nose',\n",
+ " 'hint': 'synonyms for on the nose',\n",
+ " 'clues': [('precisely', 'just as it should be'),\n",
+ " ('on the dot', 'just as it should be'),\n",
+ " ('exactly', 'just as it should be'),\n",
+ " ('on the button', 'just as it should be')]},\n",
+ " {'answer': 'only',\n",
+ " 'hint': 'synonyms for only',\n",
+ " 'clues': [('entirely', 'without any others being included or involved'),\n",
+ " ('only when', 'never except when'),\n",
+ " ('alone', 'without any others being included or involved'),\n",
+ " ('merely', 'and nothing more'),\n",
+ " ('solely', 'without any others being included or involved'),\n",
+ " ('only if', 'never except when'),\n",
+ " ('exclusively', 'without any others being included or involved'),\n",
+ " ('simply', 'and nothing more'),\n",
+ " ('but', 'and nothing more'),\n",
+ " ('just', 'and nothing more')]},\n",
+ " {'answer': 'plain',\n",
+ " 'hint': 'synonyms for plain',\n",
+ " 'clues': [('evidently',\n",
+ " \"unmistakably (`plain' is often used informally for `plainly')\"),\n",
+ " ('manifestly',\n",
+ " \"unmistakably (`plain' is often used informally for `plainly')\"),\n",
+ " ('plainly',\n",
+ " \"unmistakably (`plain' is often used informally for `plainly')\"),\n",
+ " ('apparently',\n",
+ " \"unmistakably (`plain' is often used informally for `plainly')\"),\n",
+ " ('obviously',\n",
+ " \"unmistakably (`plain' is often used informally for `plainly')\"),\n",
+ " ('patently',\n",
+ " \"unmistakably (`plain' is often used informally for `plainly')\")]},\n",
+ " {'answer': 'pretty',\n",
+ " 'hint': 'synonyms for pretty',\n",
+ " 'clues': [('somewhat', 'to a moderately sufficient extent or degree'),\n",
+ " ('passably', 'to a moderately sufficient extent or degree'),\n",
+ " ('middling', 'to a moderately sufficient extent or degree'),\n",
+ " ('reasonably', 'to a moderately sufficient extent or degree'),\n",
+ " ('moderately', 'to a moderately sufficient extent or degree'),\n",
+ " ('jolly', 'to a moderately sufficient extent or degree'),\n",
+ " ('fairly', 'to a moderately sufficient extent or degree')]},\n",
+ " {'answer': 'regardless',\n",
+ " 'hint': 'synonyms for regardless',\n",
+ " 'clues': [('no matter',\n",
+ " 'in spite of everything; without regard to drawbacks'),\n",
+ " ('disregardless', 'in spite of everything; without regard to drawbacks'),\n",
+ " ('irrespective', 'in spite of everything; without regard to drawbacks'),\n",
+ " ('disregarding', 'in spite of everything; without regard to drawbacks')]},\n",
+ " {'answer': 'right',\n",
+ " 'hint': 'synonyms for right',\n",
+ " 'clues': [('decently', 'in the right manner'),\n",
+ " ('correctly', 'in an accurate manner'),\n",
+ " ('in good order', 'in the right manner'),\n",
+ " ('aright', 'in an accurate manner'),\n",
+ " ('properly', 'in the right manner'),\n",
+ " ('mightily', '(Southern regional intensive) very; to a great degree'),\n",
+ " ('justly', 'in accordance with moral or social standards'),\n",
+ " ('powerful', '(Southern regional intensive) very; to a great degree'),\n",
+ " ('right on', 'an interjection expressing agreement'),\n",
+ " ('flop', 'exactly'),\n",
+ " ('the right way', 'in the right manner')]},\n",
+ " {'answer': 'scarce',\n",
+ " 'hint': 'synonyms for scarce',\n",
+ " 'clues': [('hardly', 'only a very short time before; ; ; ; ; - W.B.Yeats'),\n",
+ " ('barely', 'only a very short time before; ; ; ; ; - W.B.Yeats'),\n",
+ " ('scarcely', 'only a very short time before; ; ; ; ; - W.B.Yeats'),\n",
+ " ('just', 'only a very short time before; ; ; ; ; - W.B.Yeats')]},\n",
+ " {'answer': 'short',\n",
+ " 'hint': 'synonyms for short',\n",
+ " 'clues': [('dead', 'quickly and without warning'),\n",
+ " ('unawares', 'at a disadvantage'),\n",
+ " ('abruptly', 'quickly and without warning'),\n",
+ " ('curtly', 'in a curt, abrupt and discourteous manner'),\n",
+ " ('suddenly', 'quickly and without warning'),\n",
+ " ('shortly', 'in a curt, abrupt and discourteous manner')]},\n",
+ " {'answer': 'sideways',\n",
+ " 'hint': 'synonyms for sideways',\n",
+ " 'clues': [('sideway', 'toward one side'),\n",
+ " ('sidewise', 'from the side; obliquely'),\n",
+ " ('obliquely', 'to, toward or at one side'),\n",
+ " ('sidelong', 'to, toward or at one side')]},\n",
+ " {'answer': 'slapdash',\n",
+ " 'hint': 'synonyms for slapdash',\n",
+ " 'clues': [('bolt', 'directly'),\n",
+ " ('slam-bang', 'in a careless or reckless manner'),\n",
+ " ('slap', 'directly'),\n",
+ " ('smack', 'directly'),\n",
+ " ('bang', 'directly')]},\n",
+ " {'answer': 'slow',\n",
+ " 'hint': 'synonyms for slow',\n",
+ " 'clues': [('easy',\n",
+ " \"without speed (`slow' is sometimes used informally for `slowly')\"),\n",
+ " ('slowly',\n",
+ " \"without speed (`slow' is sometimes used informally for `slowly')\"),\n",
+ " ('tardily',\n",
+ " \"without speed (`slow' is sometimes used informally for `slowly')\"),\n",
+ " ('behind', 'of timepieces')]},\n",
+ " {'answer': 'some',\n",
+ " 'hint': 'synonyms for some',\n",
+ " 'clues': [('roughly',\n",
+ " '(of quantities) imprecise but fairly close to correct'),\n",
+ " ('close to', '(of quantities) imprecise but fairly close to correct'),\n",
+ " ('just about', '(of quantities) imprecise but fairly close to correct'),\n",
+ " ('or so', '(of quantities) imprecise but fairly close to correct'),\n",
+ " ('more or less', '(of quantities) imprecise but fairly close to correct'),\n",
+ " ('around', '(of quantities) imprecise but fairly close to correct'),\n",
+ " ('approximately',\n",
+ " '(of quantities) imprecise but fairly close to correct'),\n",
+ " ('about', '(of quantities) imprecise but fairly close to correct')]},\n",
+ " {'answer': 'still',\n",
+ " 'hint': 'synonyms for still',\n",
+ " 'clues': [('even so',\n",
+ " 'despite anything to the contrary (usually following a concession)'),\n",
+ " ('all the same',\n",
+ " 'despite anything to the contrary (usually following a concession)'),\n",
+ " ('stock-still', 'without moving or making a sound'),\n",
+ " ('yet',\n",
+ " 'despite anything to the contrary (usually following a concession)'),\n",
+ " ('withal',\n",
+ " 'despite anything to the contrary (usually following a concession)'),\n",
+ " ('nonetheless',\n",
+ " 'despite anything to the contrary (usually following a concession)'),\n",
+ " ('even', 'to a greater degree or extent; used with comparisons'),\n",
+ " ('nevertheless',\n",
+ " 'despite anything to the contrary (usually following a concession)'),\n",
+ " ('notwithstanding',\n",
+ " 'despite anything to the contrary (usually following a concession)'),\n",
+ " ('however',\n",
+ " 'despite anything to the contrary (usually following a concession)')]},\n",
+ " {'answer': 'straightaway',\n",
+ " 'hint': 'synonyms for straightaway',\n",
+ " 'clues': [('now', 'without delay or hesitation; with no time intervening'),\n",
+ " ('right away', 'without delay or hesitation; with no time intervening'),\n",
+ " ('forthwith', 'without delay or hesitation; with no time intervening'),\n",
+ " ('directly', 'without delay or hesitation; with no time intervening'),\n",
+ " ('like a shot', 'without delay or hesitation; with no time intervening'),\n",
+ " ('at once', 'without delay or hesitation; with no time intervening'),\n",
+ " ('straight off', 'without delay or hesitation; with no time intervening'),\n",
+ " ('immediately', 'without delay or hesitation; with no time intervening'),\n",
+ " ('instantly', 'without delay or hesitation; with no time intervening')]},\n",
+ " {'answer': 'sure',\n",
+ " 'hint': 'synonyms for sure',\n",
+ " 'clues': [('sure as shooting',\n",
+ " \"definitely or positively (`sure' is sometimes used informally for `surely')\"),\n",
+ " ('for sure',\n",
+ " \"definitely or positively (`sure' is sometimes used informally for `surely')\"),\n",
+ " ('certainly',\n",
+ " \"definitely or positively (`sure' is sometimes used informally for `surely')\"),\n",
+ " ('for certain',\n",
+ " \"definitely or positively (`sure' is sometimes used informally for `surely')\"),\n",
+ " ('sure enough',\n",
+ " \"definitely or positively (`sure' is sometimes used informally for `surely')\"),\n",
+ " ('surely',\n",
+ " \"definitely or positively (`sure' is sometimes used informally for `surely')\")]},\n",
+ " {'answer': 'sure_as_shooting',\n",
+ " 'hint': 'synonyms for sure as shooting',\n",
+ " 'clues': [('sure',\n",
+ " \"definitely or positively (`sure' is sometimes used informally for `surely')\"),\n",
+ " ('for sure',\n",
+ " \"definitely or positively (`sure' is sometimes used informally for `surely')\"),\n",
+ " ('certainly',\n",
+ " \"definitely or positively (`sure' is sometimes used informally for `surely')\"),\n",
+ " ('for certain',\n",
+ " \"definitely or positively (`sure' is sometimes used informally for `surely')\"),\n",
+ " ('sure enough',\n",
+ " \"definitely or positively (`sure' is sometimes used informally for `surely')\")]},\n",
+ " {'answer': 'topsy-turvy',\n",
+ " 'hint': 'synonyms for topsy-turvy',\n",
+ " 'clues': [('heels over head', 'in disorderly haste'),\n",
+ " ('topsy-turvily', 'in disorderly haste'),\n",
+ " ('in great confusion', 'in disorderly haste'),\n",
+ " ('head over heels', 'in disorderly haste'),\n",
+ " ('higgledy-piggledy', 'in a disordered manner')]},\n",
+ " {'answer': 'well',\n",
+ " 'hint': 'synonyms for well',\n",
+ " 'clues': [('considerably', 'to a great extent or degree'),\n",
+ " ('easily', 'indicating high probability; in all likelihood'),\n",
+ " ('advantageously', 'in a manner affording benefit or advantage'),\n",
+ " ('substantially', 'to a great extent or degree'),\n",
+ " ('comfortably', 'in financial comfort'),\n",
+ " ('intimately', 'with great or especially intimate knowledge'),\n",
+ " ('good',\n",
+ " \"(often used as a combining form) in a good or proper or satisfactory manner or to a high standard (`good' is a nonstandard dialectal variant for `well')\")]},\n",
+ " {'answer': 'whole',\n",
+ " 'hint': 'synonyms for whole',\n",
+ " 'clues': [('entirely',\n",
+ " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\"),\n",
+ " ('altogether',\n",
+ " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\"),\n",
+ " ('all',\n",
+ " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\"),\n",
+ " ('completely',\n",
+ " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\"),\n",
+ " ('totally',\n",
+ " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\"),\n",
+ " ('wholly',\n",
+ " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\")]},\n",
+ " {'answer': 'wondrous',\n",
+ " 'hint': 'synonyms for wondrous',\n",
+ " 'clues': [('wonderfully', '(used as an intensifier) extremely well'),\n",
+ " ('terrifically', '(used as an intensifier) extremely well'),\n",
+ " ('marvelously', '(used as an intensifier) extremely well'),\n",
+ " ('wondrously', '(used as an intensifier) extremely well'),\n",
+ " ('toppingly', '(used as an intensifier) extremely well'),\n",
+ " ('superbly', '(used as an intensifier) extremely well')]},\n",
+ " {'answer': 'a_good_deal',\n",
+ " 'hint': 'synonyms for a good deal',\n",
+ " 'clues': [('much', 'to a very great degree or extent'),\n",
+ " ('lots', 'to a very great degree or extent'),\n",
+ " ('a lot', 'to a very great degree or extent'),\n",
+ " ('very much', 'to a very great degree or extent'),\n",
+ " ('a great deal', 'to a very great degree or extent')]},\n",
+ " {'answer': 'a_great_deal',\n",
+ " 'hint': 'synonyms for a great deal',\n",
+ " 'clues': [('much', 'to a very great degree or extent'),\n",
+ " ('a good deal', 'to a very great degree or extent'),\n",
+ " ('lots', 'to a very great degree or extent'),\n",
+ " ('a lot', 'to a very great degree or extent'),\n",
+ " ('very much', 'to a very great degree or extent'),\n",
+ " ('often', 'frequently or in great quantities')]},\n",
+ " {'answer': 'a_lot',\n",
+ " 'hint': 'synonyms for a lot',\n",
+ " 'clues': [('much', 'to a very great degree or extent'),\n",
+ " ('a good deal', 'to a very great degree or extent'),\n",
+ " ('lots', 'to a very great degree or extent'),\n",
+ " ('very much', 'to a very great degree or extent'),\n",
+ " ('a great deal', 'to a very great degree or extent')]},\n",
+ " {'answer': 'abominably',\n",
+ " 'hint': 'synonyms for abominably',\n",
+ " 'clues': [('detestably', 'in an offensive and hateful manner'),\n",
+ " ('awfully', 'in a terrible manner'),\n",
+ " ('abysmally', 'in a terrible manner'),\n",
+ " ('atrociously', 'in a terrible manner'),\n",
+ " ('odiously', 'in an offensive and hateful manner'),\n",
+ " ('repulsively', 'in an offensive and hateful manner'),\n",
+ " ('rottenly', 'in a terrible manner'),\n",
+ " ('terribly', 'in a terrible manner')]},\n",
+ " {'answer': 'abysmally',\n",
+ " 'hint': 'synonyms for abysmally',\n",
+ " 'clues': [('abominably', 'in a terrible manner'),\n",
+ " ('rottenly', 'in a terrible manner'),\n",
+ " ('terribly', 'in a terrible manner'),\n",
+ " ('awfully', 'in a terrible manner'),\n",
+ " ('atrociously', 'in a terrible manner')]},\n",
+ " {'answer': 'accidentally',\n",
+ " 'hint': 'synonyms for accidentally',\n",
+ " 'clues': [('circumstantially', 'without advance planning'),\n",
+ " ('by chance', 'without advance planning'),\n",
+ " ('incidentally', 'of a minor or subordinate nature'),\n",
+ " ('unexpectedly', 'without advance planning'),\n",
+ " ('unintentionally', 'without intention; in an unintentional manner')]},\n",
+ " {'answer': 'acutely',\n",
+ " 'hint': 'synonyms for acutely',\n",
+ " 'clues': [('astutely', 'in a shrewd manner'),\n",
+ " ('sapiently', 'in a shrewd manner'),\n",
+ " ('sharp', 'changing suddenly in direction and degree'),\n",
+ " ('sagaciously', 'in a shrewd manner'),\n",
+ " ('shrewdly', 'in a shrewd manner')]},\n",
+ " {'answer': 'advisedly',\n",
+ " 'hint': 'synonyms for advisedly',\n",
+ " 'clues': [('purposely', 'with intention; in an intentional manner'),\n",
+ " ('intentionally', 'with intention; in an intentional manner'),\n",
+ " ('on purpose', 'with intention; in an intentional manner'),\n",
+ " ('by choice', 'with intention; in an intentional manner'),\n",
+ " ('deliberately', 'with intention; in an intentional manner'),\n",
+ " ('designedly', 'with intention; in an intentional manner'),\n",
+ " ('by design', 'with intention; in an intentional manner')]},\n",
+ " {'answer': 'afterward',\n",
+ " 'hint': 'synonyms for afterward',\n",
+ " 'clues': [('later', 'happening at a time subsequent to a reference time'),\n",
+ " ('later on', 'happening at a time subsequent to a reference time'),\n",
+ " ('subsequently', 'happening at a time subsequent to a reference time'),\n",
+ " ('after', 'happening at a time subsequent to a reference time'),\n",
+ " ('afterwards', 'happening at a time subsequent to a reference time')]},\n",
+ " {'answer': 'afterwards',\n",
+ " 'hint': 'synonyms for afterwards',\n",
+ " 'clues': [('afterward',\n",
+ " 'happening at a time subsequent to a reference time'),\n",
+ " ('later on', 'happening at a time subsequent to a reference time'),\n",
+ " ('subsequently', 'happening at a time subsequent to a reference time'),\n",
+ " ('after', 'happening at a time subsequent to a reference time'),\n",
+ " ('later', 'happening at a time subsequent to a reference time')]},\n",
+ " {'answer': 'again_and_again',\n",
+ " 'hint': 'synonyms for again and again',\n",
+ " 'clues': [('time and again', 'repeatedly'),\n",
+ " ('over and over again', 'repeatedly'),\n",
+ " ('over and over', 'repeatedly'),\n",
+ " ('time and time again', 'repeatedly')]},\n",
+ " {'answer': 'all_the_same',\n",
+ " 'hint': 'synonyms for all the same',\n",
+ " 'clues': [('even so',\n",
+ " 'despite anything to the contrary (usually following a concession)'),\n",
+ " ('yet',\n",
+ " 'despite anything to the contrary (usually following a concession)'),\n",
+ " ('withal',\n",
+ " 'despite anything to the contrary (usually following a concession)'),\n",
+ " ('nonetheless',\n",
+ " 'despite anything to the contrary (usually following a concession)'),\n",
+ " ('nevertheless',\n",
+ " 'despite anything to the contrary (usually following a concession)'),\n",
+ " ('notwithstanding',\n",
+ " 'despite anything to the contrary (usually following a concession)'),\n",
+ " ('still',\n",
+ " 'despite anything to the contrary (usually following a concession)'),\n",
+ " ('however',\n",
+ " 'despite anything to the contrary (usually following a concession)')]},\n",
+ " {'answer': 'almost',\n",
+ " 'hint': 'synonyms for almost',\n",
+ " 'clues': [('nearly',\n",
+ " '(of actions or states) slightly short of or not quite accomplished; all but'),\n",
+ " ('nigh',\n",
+ " '(of actions or states) slightly short of or not quite accomplished; all but'),\n",
+ " ('well-nigh',\n",
+ " '(of actions or states) slightly short of or not quite accomplished; all but'),\n",
+ " ('most',\n",
+ " '(of actions or states) slightly short of or not quite accomplished; all but'),\n",
+ " ('about',\n",
+ " '(of actions or states) slightly short of or not quite accomplished; all but'),\n",
+ " ('virtually',\n",
+ " '(of actions or states) slightly short of or not quite accomplished; all but')]},\n",
+ " {'answer': 'also',\n",
+ " 'hint': 'synonyms for also',\n",
+ " 'clues': [('too', 'in addition'),\n",
+ " ('as well', 'in addition'),\n",
+ " ('likewise', 'in addition'),\n",
+ " ('besides', 'in addition')]},\n",
+ " {'answer': 'altogether',\n",
+ " 'hint': 'synonyms for altogether',\n",
+ " 'clues': [('entirely',\n",
+ " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\"),\n",
+ " ('all',\n",
+ " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\"),\n",
+ " ('tout ensemble', 'with everything considered (and neglecting details)'),\n",
+ " ('all told', 'with everything included or counted'),\n",
+ " ('on the whole', 'with everything considered (and neglecting details)'),\n",
+ " ('whole',\n",
+ " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\"),\n",
+ " ('all in all', 'with everything considered (and neglecting details)'),\n",
+ " ('in all', 'with everything included or counted'),\n",
+ " ('completely',\n",
+ " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\"),\n",
+ " ('totally',\n",
+ " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\"),\n",
+ " ('wholly',\n",
+ " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\")]},\n",
+ " {'answer': 'always',\n",
+ " 'hint': 'synonyms for always',\n",
+ " 'clues': [('invariably', 'without variation or change, in every case'),\n",
+ " ('ever', 'at all times; all the time and on every occasion'),\n",
+ " (\"e'er\", 'at all times; all the time and on every occasion'),\n",
+ " ('incessantly', 'without interruption'),\n",
+ " ('forever', 'without interruption'),\n",
+ " ('perpetually', 'without interruption'),\n",
+ " ('constantly', 'without interruption')]},\n",
+ " {'answer': 'annually',\n",
+ " 'hint': 'synonyms for annually',\n",
+ " 'clues': [('per annum',\n",
+ " 'by the year; every year (usually with reference to a sum of money paid or received)'),\n",
+ " ('p.a.',\n",
+ " 'by the year; every year (usually with reference to a sum of money paid or received)'),\n",
+ " ('each year',\n",
+ " 'by the year; every year (usually with reference to a sum of money paid or received)'),\n",
+ " ('per year',\n",
+ " 'by the year; every year (usually with reference to a sum of money paid or received)'),\n",
+ " ('yearly', 'without missing a year'),\n",
+ " ('every year', 'without missing a year')]},\n",
+ " {'answer': 'anyhow',\n",
+ " 'hint': 'synonyms for anyhow',\n",
+ " 'clues': [('anyway', 'in any way whatsoever'),\n",
+ " ('at any rate',\n",
+ " 'used to indicate that a statement explains or supports a previous statement'),\n",
+ " ('in any event',\n",
+ " 'used to indicate that a statement explains or supports a previous statement'),\n",
+ " ('in any case',\n",
+ " 'used to indicate that a statement explains or supports a previous statement')]},\n",
+ " {'answer': 'anyway',\n",
+ " 'hint': 'synonyms for anyway',\n",
+ " 'clues': [('anyhow',\n",
+ " 'used to indicate that a statement explains or supports a previous statement'),\n",
+ " ('at any rate',\n",
+ " 'used to indicate that a statement explains or supports a previous statement'),\n",
+ " ('in any event',\n",
+ " 'used to indicate that a statement explains or supports a previous statement'),\n",
+ " ('in any case',\n",
+ " 'used to indicate that a statement explains or supports a previous statement'),\n",
+ " ('anyways',\n",
+ " 'used to indicate that a statement explains or supports a previous statement')]},\n",
+ " {'answer': 'anyways',\n",
+ " 'hint': 'synonyms for anyways',\n",
+ " 'clues': [('anyway',\n",
+ " 'used to indicate that a statement explains or supports a previous statement'),\n",
+ " ('at any rate',\n",
+ " 'used to indicate that a statement explains or supports a previous statement'),\n",
+ " ('in any event',\n",
+ " 'used to indicate that a statement explains or supports a previous statement'),\n",
+ " ('in any case',\n",
+ " 'used to indicate that a statement explains or supports a previous statement'),\n",
+ " ('anyhow',\n",
+ " 'used to indicate that a statement explains or supports a previous statement')]},\n",
+ " {'answer': 'apace',\n",
+ " 'hint': 'synonyms for apace',\n",
+ " 'clues': [('quickly', 'with rapid movements'),\n",
+ " ('speedily', 'with rapid movements'),\n",
+ " ('rapidly', 'with rapid movements'),\n",
+ " ('chop-chop', 'with rapid movements')]},\n",
+ " {'answer': 'apparently',\n",
+ " 'hint': 'synonyms for apparently',\n",
+ " 'clues': [('manifestly',\n",
+ " \"unmistakably (`plain' is often used informally for `plainly')\"),\n",
+ " ('plainly',\n",
+ " \"unmistakably (`plain' is often used informally for `plainly')\"),\n",
+ " ('patently',\n",
+ " \"unmistakably (`plain' is often used informally for `plainly')\"),\n",
+ " ('seemingly', 'from appearances alone; ; ; -Thomas Hardy'),\n",
+ " ('evidently',\n",
+ " \"unmistakably (`plain' is often used informally for `plainly')\"),\n",
+ " ('ostensibly', 'from appearances alone; ; ; -Thomas Hardy'),\n",
+ " ('obviously',\n",
+ " \"unmistakably (`plain' is often used informally for `plainly')\"),\n",
+ " ('on the face of it', 'from appearances alone; ; ; -Thomas Hardy')]},\n",
+ " {'answer': 'approximately',\n",
+ " 'hint': 'synonyms for approximately',\n",
+ " 'clues': [('roughly',\n",
+ " '(of quantities) imprecise but fairly close to correct'),\n",
+ " ('close to', '(of quantities) imprecise but fairly close to correct'),\n",
+ " ('just about', '(of quantities) imprecise but fairly close to correct'),\n",
+ " ('or so', '(of quantities) imprecise but fairly close to correct'),\n",
+ " ('more or less', '(of quantities) imprecise but fairly close to correct'),\n",
+ " ('around', '(of quantities) imprecise but fairly close to correct'),\n",
+ " ('about', '(of quantities) imprecise but fairly close to correct'),\n",
+ " ('some', '(of quantities) imprecise but fairly close to correct')]},\n",
+ " {'answer': 'arbitrarily',\n",
+ " 'hint': 'synonyms for arbitrarily',\n",
+ " 'clues': [('at random', 'in a random manner'),\n",
+ " ('every which way', 'in a random manner'),\n",
+ " ('indiscriminately', 'in a random manner'),\n",
+ " ('willy-nilly', 'in a random manner'),\n",
+ " ('randomly', 'in a random manner'),\n",
+ " ('haphazardly', 'in a random manner')]},\n",
+ " {'answer': 'around',\n",
+ " 'hint': 'synonyms for around',\n",
+ " 'clues': [('roughly',\n",
+ " '(of quantities) imprecise but fairly close to correct'),\n",
+ " ('close to', '(of quantities) imprecise but fairly close to correct'),\n",
+ " ('just about', '(of quantities) imprecise but fairly close to correct'),\n",
+ " ('or so', '(of quantities) imprecise but fairly close to correct'),\n",
+ " ('about', 'all around or on all sides'),\n",
+ " ('more or less', '(of quantities) imprecise but fairly close to correct'),\n",
+ " ('approximately',\n",
+ " '(of quantities) imprecise but fairly close to correct'),\n",
+ " ('round', 'from beginning to end; throughout'),\n",
+ " ('some', '(of quantities) imprecise but fairly close to correct')]},\n",
+ " {'answer': 'artfully',\n",
+ " 'hint': 'synonyms for artfully',\n",
+ " 'clues': [('foxily', 'in an artful manner'),\n",
+ " ('disingenuously', 'in a disingenuous manner'),\n",
+ " ('craftily', 'in an artful manner'),\n",
+ " ('knavishly', 'in an artful manner'),\n",
+ " ('slyly', 'in an artful manner'),\n",
+ " ('cunningly', 'in an artful manner'),\n",
+ " ('trickily', 'in an artful manner')]},\n",
+ " {'answer': 'as_well',\n",
+ " 'hint': 'synonyms for as well',\n",
+ " 'clues': [('too', 'in addition'),\n",
+ " ('likewise', 'in addition'),\n",
+ " ('also', 'in addition'),\n",
+ " ('besides', 'in addition')]},\n",
+ " {'answer': 'as_yet',\n",
+ " 'hint': 'synonyms for as yet',\n",
+ " 'clues': [('thus far',\n",
+ " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n",
+ " ('up to now',\n",
+ " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n",
+ " ('til now',\n",
+ " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n",
+ " ('heretofore',\n",
+ " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n",
+ " ('yet',\n",
+ " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n",
+ " ('so far',\n",
+ " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n",
+ " ('hitherto',\n",
+ " 'used in negative statement to describe a situation that has existed up to this point or up to the present time')]},\n",
+ " {'answer': 'astutely',\n",
+ " 'hint': 'synonyms for astutely',\n",
+ " 'clues': [('acutely', 'in a shrewd manner'),\n",
+ " ('sagaciously', 'in a shrewd manner'),\n",
+ " ('sapiently', 'in a shrewd manner'),\n",
+ " ('shrewdly', 'in a shrewd manner')]},\n",
+ " {'answer': 'at_any_rate',\n",
+ " 'hint': 'synonyms for at any rate',\n",
+ " 'clues': [('anyways',\n",
+ " 'used to indicate that a statement explains or supports a previous statement'),\n",
+ " ('in any event',\n",
+ " 'used to indicate that a statement explains or supports a previous statement'),\n",
+ " ('in any case',\n",
+ " 'used to indicate that a statement explains or supports a previous statement'),\n",
+ " ('leastways',\n",
+ " \"if nothing else (`leastwise' is informal and `leastways' is colloquial)\"),\n",
+ " ('anyhow',\n",
+ " 'used to indicate that a statement explains or supports a previous statement'),\n",
+ " ('at least',\n",
+ " \"if nothing else (`leastwise' is informal and `leastways' is colloquial)\"),\n",
+ " ('leastwise',\n",
+ " \"if nothing else (`leastwise' is informal and `leastways' is colloquial)\")]},\n",
+ " {'answer': 'at_bottom',\n",
+ " 'hint': 'synonyms for at bottom',\n",
+ " 'clues': [('at heart', 'in reality'),\n",
+ " ('deep down', 'in reality'),\n",
+ " ('inside', 'in reality'),\n",
+ " ('in spite of appearance', 'in reality')]},\n",
+ " {'answer': 'at_heart',\n",
+ " 'hint': 'synonyms for at heart',\n",
+ " 'clues': [('deep down', 'in reality'),\n",
+ " ('inside', 'in reality'),\n",
+ " ('at bottom', 'in reality'),\n",
+ " ('in spite of appearance', 'in reality')]},\n",
+ " {'answer': 'at_last',\n",
+ " 'hint': 'synonyms for at last',\n",
+ " 'clues': [('finally', 'as the end result of a succession or process'),\n",
+ " ('at long last', 'as the end result of a succession or process'),\n",
+ " ('ultimately', 'as the end result of a succession or process'),\n",
+ " ('in the end', 'as the end result of a succession or process')]},\n",
+ " {'answer': 'at_least',\n",
+ " 'hint': 'synonyms for at least',\n",
+ " 'clues': [('at the least', 'not less than'),\n",
+ " ('leastways',\n",
+ " \"if nothing else (`leastwise' is informal and `leastways' is colloquial)\"),\n",
+ " ('leastwise',\n",
+ " \"if nothing else (`leastwise' is informal and `leastways' is colloquial)\"),\n",
+ " ('at any rate',\n",
+ " \"if nothing else (`leastwise' is informal and `leastways' is colloquial)\")]},\n",
+ " {'answer': 'at_long_last',\n",
+ " 'hint': 'synonyms for at long last',\n",
+ " 'clues': [('at last', 'as the end result of a succession or process'),\n",
+ " ('finally', 'as the end result of a succession or process'),\n",
+ " ('ultimately', 'as the end result of a succession or process'),\n",
+ " ('in the end', 'as the end result of a succession or process')]},\n",
+ " {'answer': 'at_once',\n",
+ " 'hint': 'synonyms for at once',\n",
+ " 'clues': [('now', 'without delay or hesitation; with no time intervening'),\n",
+ " ('right away', 'without delay or hesitation; with no time intervening'),\n",
+ " ('forthwith', 'without delay or hesitation; with no time intervening'),\n",
+ " ('at a time', 'simultaneously'),\n",
+ " ('directly', 'without delay or hesitation; with no time intervening'),\n",
+ " ('like a shot', 'without delay or hesitation; with no time intervening'),\n",
+ " ('at one time', 'simultaneously'),\n",
+ " ('straight off', 'without delay or hesitation; with no time intervening'),\n",
+ " ('immediately', 'without delay or hesitation; with no time intervening'),\n",
+ " ('instantly', 'without delay or hesitation; with no time intervening'),\n",
+ " ('straightaway',\n",
+ " 'without delay or hesitation; with no time intervening')]},\n",
+ " {'answer': 'at_one_time',\n",
+ " 'hint': 'synonyms for at one time',\n",
+ " 'clues': [('erstwhile', 'at a previous time'),\n",
+ " ('erst', 'at a previous time'),\n",
+ " ('at a time', 'simultaneously'),\n",
+ " ('formerly', 'at a previous time'),\n",
+ " ('once', 'at a previous time'),\n",
+ " ('at once', 'simultaneously')]},\n",
+ " {'answer': 'at_random',\n",
+ " 'hint': 'synonyms for at random',\n",
+ " 'clues': [('every which way', 'in a random manner'),\n",
+ " ('indiscriminately', 'in a random manner'),\n",
+ " ('arbitrarily', 'in a random manner'),\n",
+ " ('willy-nilly', 'in a random manner'),\n",
+ " ('randomly', 'in a random manner'),\n",
+ " ('haphazardly', 'in a random manner')]},\n",
+ " {'answer': 'at_times',\n",
+ " 'hint': 'synonyms for at times',\n",
+ " 'clues': [('occasionally', 'now and then or here and there'),\n",
+ " ('on occasion', 'now and then or here and there'),\n",
+ " ('now and then', 'now and then or here and there'),\n",
+ " ('once in a while', 'now and then or here and there'),\n",
+ " ('now and again', 'now and then or here and there'),\n",
+ " ('from time to time', 'now and then or here and there')]},\n",
+ " {'answer': 'atrociously',\n",
+ " 'hint': 'synonyms for atrociously',\n",
+ " 'clues': [('outrageously', 'to an extravagant or immoderate degree'),\n",
+ " ('abominably', 'in a terrible manner'),\n",
+ " ('awfully', 'in a terrible manner'),\n",
+ " ('rottenly', 'in a terrible manner'),\n",
+ " ('terribly', 'in a terrible manner'),\n",
+ " ('abysmally', 'in a terrible manner')]},\n",
+ " {'answer': 'avowedly',\n",
+ " 'hint': 'synonyms for avowedly',\n",
+ " 'clues': [('admittedly', 'as acknowledged'),\n",
+ " ('professedly', 'by open declaration'),\n",
+ " ('confessedly', 'as acknowledged'),\n",
+ " ('true', 'as acknowledged')]},\n",
+ " {'answer': 'awfully',\n",
+ " 'hint': 'synonyms for awfully',\n",
+ " 'clues': [('horribly', 'of a dreadful kind'),\n",
+ " ('awful', 'used as intensifiers'),\n",
+ " ('abysmally', 'in a terrible manner'),\n",
+ " ('atrociously', 'in a terrible manner'),\n",
+ " ('dreadfully', 'of a dreadful kind'),\n",
+ " ('abominably', 'in a terrible manner'),\n",
+ " ('frightfully', 'used as intensifiers'),\n",
+ " ('terribly', 'used as intensifiers'),\n",
+ " ('rottenly', 'in a terrible manner')]},\n",
+ " {'answer': 'badly',\n",
+ " 'hint': 'synonyms for badly',\n",
+ " 'clues': [('disadvantageously',\n",
+ " \"in a disadvantageous way; to someone's disadvantage\"),\n",
+ " ('gravely', 'to a severe or serious degree'),\n",
+ " ('naughtily', 'in a disobedient or naughty way'),\n",
+ " ('ill',\n",
+ " \"(`ill' is often used as a combining form) in a poor or improper or unsatisfactory manner; not well\"),\n",
+ " ('severely', 'to a severe or serious degree'),\n",
+ " ('mischievously', 'in a disobedient or naughty way'),\n",
+ " ('bad', 'very much; strongly'),\n",
+ " ('poorly',\n",
+ " \"(`ill' is often used as a combining form) in a poor or improper or unsatisfactory manner; not well\"),\n",
+ " ('seriously', 'to a severe or serious degree')]},\n",
+ " {'answer': 'balmily',\n",
+ " 'hint': 'synonyms for balmily',\n",
+ " 'clues': [('wackily', 'in a mildly insane manner'),\n",
+ " ('dottily', 'in a mildly insane manner'),\n",
+ " ('daftly', 'in a mildly insane manner'),\n",
+ " ('nuttily', 'in a mildly insane manner')]},\n",
+ " {'answer': 'bang',\n",
+ " 'hint': 'synonyms for bang',\n",
+ " 'clues': [('slapdash', 'directly'),\n",
+ " ('smack', 'directly'),\n",
+ " ('bolt', 'directly'),\n",
+ " ('slap', 'directly')]},\n",
+ " {'answer': 'barely',\n",
+ " 'hint': 'synonyms for barely',\n",
+ " 'clues': [('hardly', 'only a very short time before; ; ; ; ; - W.B.Yeats'),\n",
+ " ('just', 'only a very short time before; ; ; ; ; - W.B.Yeats'),\n",
+ " ('scarcely', 'only a very short time before; ; ; ; ; - W.B.Yeats'),\n",
+ " ('scantily', 'in a sparse or scanty way')]},\n",
+ " {'answer': 'befittingly',\n",
+ " 'hint': 'synonyms for befittingly',\n",
+ " 'clues': [('fittingly', 'in an appropriate manner'),\n",
+ " ('appropriately', 'in an appropriate manner'),\n",
+ " ('suitably', 'in an appropriate manner'),\n",
+ " ('fitly', 'in an appropriate manner')]},\n",
+ " {'answer': 'belike',\n",
+ " 'hint': 'synonyms for belike',\n",
+ " 'clues': [('in all probability',\n",
+ " 'with considerable certainty; without much doubt'),\n",
+ " ('probably', 'with considerable certainty; without much doubt'),\n",
+ " ('in all likelihood', 'with considerable certainty; without much doubt'),\n",
+ " ('likely', 'with considerable certainty; without much doubt')]},\n",
+ " {'answer': 'below',\n",
+ " 'hint': 'synonyms for below',\n",
+ " 'clues': [('infra', '(in writing) see below'),\n",
+ " ('down the stairs', 'on a floor below'),\n",
+ " ('downstairs', 'on a floor below'),\n",
+ " ('on a lower floor', 'on a floor below'),\n",
+ " ('beneath', 'in or to a place that is lower'),\n",
+ " ('at a lower place', 'in or to a place that is lower'),\n",
+ " ('under', 'further down')]},\n",
+ " {'answer': 'beseechingly',\n",
+ " 'hint': 'synonyms for beseechingly',\n",
+ " 'clues': [('importunately', 'in a beseeching manner'),\n",
+ " ('pleadingly', 'in a beseeching manner'),\n",
+ " ('entreatingly', 'in a beseeching manner'),\n",
+ " ('imploringly', 'in a beseeching manner')]},\n",
+ " {'answer': 'besides',\n",
+ " 'hint': 'synonyms for besides',\n",
+ " 'clues': [('in any case', 'making an additional point; anyway'),\n",
+ " ('too', 'in addition'),\n",
+ " ('as well', 'in addition'),\n",
+ " ('also', 'in addition'),\n",
+ " ('likewise', 'in addition')]},\n",
+ " {'answer': 'bit_by_bit',\n",
+ " 'hint': 'synonyms for bit by bit',\n",
+ " 'clues': [('gradually', 'in a gradual manner'),\n",
+ " ('in stages', 'a little bit at a time'),\n",
+ " ('little by little', 'a little bit at a time'),\n",
+ " ('piecemeal', 'a little bit at a time'),\n",
+ " ('step by step', 'in a gradual manner')]},\n",
+ " {'answer': 'blithely',\n",
+ " 'hint': 'synonyms for blithely',\n",
+ " 'clues': [('merrily', 'in a joyous manner'),\n",
+ " ('happily', 'in a joyous manner'),\n",
+ " ('mirthfully', 'in a joyous manner'),\n",
+ " ('jubilantly', 'in a joyous manner'),\n",
+ " ('gayly', 'in a joyous manner')]},\n",
+ " {'answer': 'bluffly',\n",
+ " 'hint': 'synonyms for bluffly',\n",
+ " 'clues': [('roundly', 'in a blunt direct manner'),\n",
+ " ('brusquely', 'in a blunt direct manner'),\n",
+ " ('flat out', 'in a blunt direct manner'),\n",
+ " ('bluntly', 'in a blunt direct manner')]},\n",
+ " {'answer': 'bluntly',\n",
+ " 'hint': 'synonyms for bluntly',\n",
+ " 'clues': [('roundly', 'in a blunt direct manner'),\n",
+ " ('bluffly', 'in a blunt direct manner'),\n",
+ " ('flat out', 'in a blunt direct manner'),\n",
+ " ('brusquely', 'in a blunt direct manner')]},\n",
+ " {'answer': 'bolt',\n",
+ " 'hint': 'synonyms for bolt',\n",
+ " 'clues': [('rigidly', 'in a rigid manner'),\n",
+ " ('slapdash', 'directly'),\n",
+ " ('slap', 'directly'),\n",
+ " ('stiffly', 'in a rigid manner'),\n",
+ " ('smack', 'directly'),\n",
+ " ('bang', 'directly')]},\n",
+ " {'answer': 'briefly',\n",
+ " 'hint': 'synonyms for briefly',\n",
+ " 'clues': [('in short', 'in a concise manner; in a few words'),\n",
+ " ('concisely', 'in a concise manner; in a few words'),\n",
+ " ('in brief', 'in a concise manner; in a few words'),\n",
+ " ('shortly', 'in a concise manner; in a few words')]},\n",
+ " {'answer': 'brusquely',\n",
+ " 'hint': 'synonyms for brusquely',\n",
+ " 'clues': [('roundly', 'in a blunt direct manner'),\n",
+ " ('bluffly', 'in a blunt direct manner'),\n",
+ " ('flat out', 'in a blunt direct manner'),\n",
+ " ('bluntly', 'in a blunt direct manner')]},\n",
+ " {'answer': 'but',\n",
+ " 'hint': 'synonyms for but',\n",
+ " 'clues': [('simply', 'and nothing more'),\n",
+ " ('merely', 'and nothing more'),\n",
+ " ('only', 'and nothing more'),\n",
+ " ('just', 'and nothing more')]},\n",
+ " {'answer': 'by_all_odds',\n",
+ " 'hint': 'synonyms for by all odds',\n",
+ " 'clues': [('emphatically', 'without question and beyond doubt'),\n",
+ " ('in spades', 'without question and beyond doubt'),\n",
+ " ('decidedly', 'without question and beyond doubt'),\n",
+ " ('definitely', 'without question and beyond doubt'),\n",
+ " ('unquestionably', 'without question and beyond doubt')]},\n",
+ " {'answer': 'by_chance',\n",
+ " 'hint': 'synonyms for by chance',\n",
+ " 'clues': [('unexpectedly', 'without advance planning'),\n",
+ " ('perchance', 'through chance,'),\n",
+ " ('accidentally', 'without advance planning'),\n",
+ " ('haply', 'by accident'),\n",
+ " ('circumstantially', 'without advance planning'),\n",
+ " ('by luck', 'by accident')]},\n",
+ " {'answer': 'by_choice',\n",
+ " 'hint': 'synonyms for by choice',\n",
+ " 'clues': [('purposely', 'with intention; in an intentional manner'),\n",
+ " ('intentionally', 'with intention; in an intentional manner'),\n",
+ " ('on purpose', 'with intention; in an intentional manner'),\n",
+ " ('advisedly', 'with intention; in an intentional manner'),\n",
+ " ('deliberately', 'with intention; in an intentional manner'),\n",
+ " ('designedly', 'with intention; in an intentional manner'),\n",
+ " ('by design', 'with intention; in an intentional manner')]},\n",
+ " {'answer': 'by_design',\n",
+ " 'hint': 'synonyms for by design',\n",
+ " 'clues': [('purposely', 'with intention; in an intentional manner'),\n",
+ " ('intentionally', 'with intention; in an intentional manner'),\n",
+ " ('by choice', 'with intention; in an intentional manner'),\n",
+ " ('advisedly', 'with intention; in an intentional manner'),\n",
+ " ('deliberately', 'with intention; in an intentional manner'),\n",
+ " ('designedly', 'with intention; in an intentional manner'),\n",
+ " ('on purpose', 'with intention; in an intentional manner')]},\n",
+ " {'answer': 'carelessly',\n",
+ " 'hint': 'synonyms for carelessly',\n",
+ " 'clues': [('heedlessly', 'without care or concern'),\n",
+ " ('incautiously', 'without caution or prudence'),\n",
+ " ('rakishly', 'in a rakish manner'),\n",
+ " ('raffishly', 'in a rakish manner')]},\n",
+ " {'answer': 'ceaselessly',\n",
+ " 'hint': 'synonyms for ceaselessly',\n",
+ " 'clues': [('unendingly', 'with unflagging resolve'),\n",
+ " ('unceasingly', 'with unflagging resolve'),\n",
+ " ('incessantly', 'with unflagging resolve'),\n",
+ " ('endlessly', 'with unflagging resolve'),\n",
+ " ('continuously', 'with unflagging resolve')]},\n",
+ " {'answer': 'certainly',\n",
+ " 'hint': 'synonyms for certainly',\n",
+ " 'clues': [('sure as shooting',\n",
+ " \"definitely or positively (`sure' is sometimes used informally for `surely')\"),\n",
+ " ('sure',\n",
+ " \"definitely or positively (`sure' is sometimes used informally for `surely')\"),\n",
+ " ('for sure',\n",
+ " \"definitely or positively (`sure' is sometimes used informally for `surely')\"),\n",
+ " ('for certain',\n",
+ " \"definitely or positively (`sure' is sometimes used informally for `surely')\"),\n",
+ " ('sure enough',\n",
+ " \"definitely or positively (`sure' is sometimes used informally for `surely')\")]},\n",
+ " {'answer': 'cheaply',\n",
+ " 'hint': 'synonyms for cheaply',\n",
+ " 'clues': [('inexpensively', 'with little expenditure of money'),\n",
+ " ('chintzily', 'in a stingy manner'),\n",
+ " ('tattily', 'in a cheap manner'),\n",
+ " ('stingily', 'in a stingy manner')]},\n",
+ " {'answer': 'chiefly',\n",
+ " 'hint': 'synonyms for chiefly',\n",
+ " 'clues': [('primarily', 'for the most part'),\n",
+ " ('in the main', 'for the most part'),\n",
+ " ('principally', 'for the most part'),\n",
+ " ('mainly', 'for the most part')]},\n",
+ " {'answer': 'chop-chop',\n",
+ " 'hint': 'synonyms for chop-chop',\n",
+ " 'clues': [('apace', 'with rapid movements'),\n",
+ " ('speedily', 'with rapid movements'),\n",
+ " ('rapidly', 'with rapid movements'),\n",
+ " ('quickly', 'with rapid movements')]},\n",
+ " {'answer': 'circumstantially',\n",
+ " 'hint': 'synonyms for circumstantially',\n",
+ " 'clues': [('unexpectedly', 'without advance planning'),\n",
+ " ('by chance', 'without advance planning'),\n",
+ " ('accidentally', 'without advance planning'),\n",
+ " ('minutely', 'in minute detail')]},\n",
+ " {'answer': 'clearly',\n",
+ " 'hint': 'synonyms for clearly',\n",
+ " 'clues': [('distinctly',\n",
+ " 'clear to the mind; with distinct mental discernment'),\n",
+ " ('clear', 'in an easily perceptible manner'),\n",
+ " ('intelligibly', 'in an intelligible manner'),\n",
+ " ('understandably', 'in an intelligible manner')]},\n",
+ " {'answer': 'close_to',\n",
+ " 'hint': 'synonyms for close to',\n",
+ " 'clues': [('roughly',\n",
+ " '(of quantities) imprecise but fairly close to correct'),\n",
+ " ('just about', '(of quantities) imprecise but fairly close to correct'),\n",
+ " ('or so', '(of quantities) imprecise but fairly close to correct'),\n",
+ " ('more or less', '(of quantities) imprecise but fairly close to correct'),\n",
+ " ('around', '(of quantities) imprecise but fairly close to correct'),\n",
+ " ('approximately',\n",
+ " '(of quantities) imprecise but fairly close to correct'),\n",
+ " ('about', '(of quantities) imprecise but fairly close to correct'),\n",
+ " ('some', '(of quantities) imprecise but fairly close to correct')]},\n",
+ " {'answer': 'closely',\n",
+ " 'hint': 'synonyms for closely',\n",
+ " 'clues': [('tight', 'in an attentive manner'),\n",
+ " ('nearly', 'in a close manner'),\n",
+ " ('intimately', 'in a close manner'),\n",
+ " ('close', 'in an attentive manner')]},\n",
+ " {'answer': 'commonly',\n",
+ " 'hint': 'synonyms for commonly',\n",
+ " 'clues': [('usually', 'under normal conditions'),\n",
+ " ('normally', 'under normal conditions'),\n",
+ " ('ordinarily', 'under normal conditions'),\n",
+ " ('unremarkably', 'under normal conditions')]},\n",
+ " {'answer': 'completely',\n",
+ " 'hint': 'synonyms for completely',\n",
+ " 'clues': [('entirely',\n",
+ " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\"),\n",
+ " ('altogether',\n",
+ " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\"),\n",
+ " ('all',\n",
+ " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\"),\n",
+ " ('totally',\n",
+ " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\"),\n",
+ " ('wholly',\n",
+ " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\"),\n",
+ " ('whole',\n",
+ " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\")]},\n",
+ " {'answer': 'concisely',\n",
+ " 'hint': 'synonyms for concisely',\n",
+ " 'clues': [('in short', 'in a concise manner; in a few words'),\n",
+ " ('briefly', 'in a concise manner; in a few words'),\n",
+ " ('in brief', 'in a concise manner; in a few words'),\n",
+ " ('shortly', 'in a concise manner; in a few words')]},\n",
+ " {'answer': 'constantly',\n",
+ " 'hint': 'synonyms for constantly',\n",
+ " 'clues': [('always', 'without variation or change, in every case'),\n",
+ " ('invariably', 'without variation or change, in every case'),\n",
+ " ('forever', 'without interruption'),\n",
+ " ('perpetually', 'without interruption'),\n",
+ " ('incessantly', 'without interruption')]},\n",
+ " {'answer': 'continuously',\n",
+ " 'hint': 'synonyms for continuously',\n",
+ " 'clues': [('unceasingly', 'with unflagging resolve'),\n",
+ " ('unendingly', 'with unflagging resolve'),\n",
+ " ('incessantly', 'with unflagging resolve'),\n",
+ " ('endlessly', 'with unflagging resolve'),\n",
+ " ('ceaselessly', 'with unflagging resolve')]},\n",
+ " {'answer': 'contrariwise',\n",
+ " 'hint': 'synonyms for contrariwise',\n",
+ " 'clues': [('vice versa', 'with the order reversed'),\n",
+ " ('contrarily', 'contrary to expectations'),\n",
+ " ('on the contrary', 'contrary to expectations'),\n",
+ " ('the other way around', 'with the order reversed'),\n",
+ " ('perversely', 'in a contrary disobedient manner')]},\n",
+ " {'answer': 'covetously',\n",
+ " 'hint': 'synonyms for covetously',\n",
+ " 'clues': [('jealously', 'with jealousy; in an envious manner'),\n",
+ " ('avariciously', 'in a greedy manner'),\n",
+ " ('greedily', 'in a greedy manner'),\n",
+ " ('enviously', 'with jealousy; in an envious manner')]},\n",
+ " {'answer': 'craftily',\n",
+ " 'hint': 'synonyms for craftily',\n",
+ " 'clues': [('foxily', 'in an artful manner'),\n",
+ " ('knavishly', 'in an artful manner'),\n",
+ " ('slyly', 'in an artful manner'),\n",
+ " ('cunningly', 'in an artful manner'),\n",
+ " ('artfully', 'in an artful manner'),\n",
+ " ('trickily', 'in an artful manner')]},\n",
+ " {'answer': 'cunningly',\n",
+ " 'hint': 'synonyms for cunningly',\n",
+ " 'clues': [('foxily', 'in an artful manner'),\n",
+ " ('cutely', 'in an attractive manner'),\n",
+ " ('craftily', 'in an artful manner'),\n",
+ " ('knavishly', 'in an artful manner'),\n",
+ " ('slyly', 'in an artful manner'),\n",
+ " ('artfully', 'in an artful manner'),\n",
+ " ('trickily', 'in an artful manner')]},\n",
+ " {'answer': 'curiously',\n",
+ " 'hint': 'synonyms for curiously',\n",
+ " 'clues': [('peculiarly',\n",
+ " 'in a manner differing from the usual or expected'),\n",
+ " ('oddly', 'in a manner differing from the usual or expected'),\n",
+ " ('inquisitively', 'with curiosity'),\n",
+ " ('interrogatively', 'with curiosity')]},\n",
+ " {'answer': 'cussedly',\n",
+ " 'hint': 'synonyms for cussedly',\n",
+ " 'clues': [('stubbornly', 'in a stubborn unregenerate manner'),\n",
+ " ('obstinately', 'in a stubborn unregenerate manner'),\n",
+ " ('obdurately', 'in a stubborn unregenerate manner'),\n",
+ " ('pig-headedly', 'in a stubborn unregenerate manner'),\n",
+ " ('mulishly', 'in a stubborn unregenerate manner')]},\n",
+ " {'answer': 'daftly',\n",
+ " 'hint': 'synonyms for daftly',\n",
+ " 'clues': [('wackily', 'in a mildly insane manner'),\n",
+ " ('dottily', 'in a mildly insane manner'),\n",
+ " ('nuttily', 'in a mildly insane manner'),\n",
+ " ('balmily', 'in a mildly insane manner')]},\n",
+ " {'answer': 'decently',\n",
+ " 'hint': 'synonyms for decently',\n",
+ " 'clues': [('decent', 'in the right manner'),\n",
+ " ('right', 'in the right manner'),\n",
+ " ('in good order', 'in the right manner'),\n",
+ " ('the right way', 'in the right manner'),\n",
+ " ('properly', 'in the right manner')]},\n",
+ " {'answer': 'decidedly',\n",
+ " 'hint': 'synonyms for decidedly',\n",
+ " 'clues': [('emphatically', 'without question and beyond doubt'),\n",
+ " ('by all odds', 'without question and beyond doubt'),\n",
+ " ('in spades', 'without question and beyond doubt'),\n",
+ " ('definitely', 'without question and beyond doubt'),\n",
+ " ('unquestionably', 'without question and beyond doubt')]},\n",
+ " {'answer': 'deep_down',\n",
+ " 'hint': 'synonyms for deep down',\n",
+ " 'clues': [('at heart', 'in reality'),\n",
+ " ('inside', 'in reality'),\n",
+ " ('at bottom', 'in reality'),\n",
+ " ('in spite of appearance', 'in reality')]},\n",
+ " {'answer': 'definitely',\n",
+ " 'hint': 'synonyms for definitely',\n",
+ " 'clues': [('emphatically', 'without question and beyond doubt'),\n",
+ " ('by all odds', 'without question and beyond doubt'),\n",
+ " ('in spades', 'without question and beyond doubt'),\n",
+ " ('decidedly', 'without question and beyond doubt'),\n",
+ " ('unquestionably', 'without question and beyond doubt')]},\n",
+ " {'answer': 'deliberately',\n",
+ " 'hint': 'synonyms for deliberately',\n",
+ " 'clues': [('purposely', 'with intention; in an intentional manner'),\n",
+ " ('measuredly', 'in a deliberate unhurried manner'),\n",
+ " ('intentionally', 'with intention; in an intentional manner'),\n",
+ " ('on purpose', 'with intention; in an intentional manner'),\n",
+ " ('by choice', 'with intention; in an intentional manner'),\n",
+ " ('advisedly', 'with intention; in an intentional manner'),\n",
+ " ('designedly', 'with intention; in an intentional manner'),\n",
+ " ('by design', 'with intention; in an intentional manner')]},\n",
+ " {'answer': 'designedly',\n",
+ " 'hint': 'synonyms for designedly',\n",
+ " 'clues': [('purposely', 'with intention; in an intentional manner'),\n",
+ " ('intentionally', 'with intention; in an intentional manner'),\n",
+ " ('on purpose', 'with intention; in an intentional manner'),\n",
+ " ('by choice', 'with intention; in an intentional manner'),\n",
+ " ('advisedly', 'with intention; in an intentional manner'),\n",
+ " ('deliberately', 'with intention; in an intentional manner'),\n",
+ " ('by design', 'with intention; in an intentional manner')]},\n",
+ " {'answer': 'deucedly',\n",
+ " 'hint': 'synonyms for deucedly',\n",
+ " 'clues': [('devilishly', '(used as intensives) extremely'),\n",
+ " ('madly', '(used as intensives) extremely'),\n",
+ " ('insanely', '(used as intensives) extremely'),\n",
+ " ('deadly', '(used as intensives) extremely')]},\n",
+ " {'answer': 'devilishly',\n",
+ " 'hint': 'synonyms for devilishly',\n",
+ " 'clues': [('devilish', 'in a playfully devilish manner'),\n",
+ " ('madly', '(used as intensives) extremely'),\n",
+ " ('insanely', '(used as intensives) extremely'),\n",
+ " ('fiendishly', 'as a devil; in an evil manner'),\n",
+ " ('deucedly', '(used as intensives) extremely'),\n",
+ " ('diabolically', 'as a devil; in an evil manner'),\n",
+ " ('deadly', '(used as intensives) extremely')]},\n",
+ " {'answer': 'dimly',\n",
+ " 'hint': 'synonyms for dimly',\n",
+ " 'clues': [('murkily', 'with a dim light'),\n",
+ " ('indistinctly', 'in a dim indistinct manner'),\n",
+ " ('pallidly', 'in a manner lacking interest or vitality'),\n",
+ " ('palely', 'in a manner lacking interest or vitality')]},\n",
+ " {'answer': 'directly',\n",
+ " 'hint': 'synonyms for directly',\n",
+ " 'clues': [('now', 'without delay or hesitation; with no time intervening'),\n",
+ " ('right away', 'without delay or hesitation; with no time intervening'),\n",
+ " ('forthwith', 'without delay or hesitation; with no time intervening'),\n",
+ " ('straight', 'without deviation'),\n",
+ " ('like a shot', 'without delay or hesitation; with no time intervening'),\n",
+ " ('at once', 'without delay or hesitation; with no time intervening'),\n",
+ " ('straight off', 'without delay or hesitation; with no time intervening'),\n",
+ " ('flat', 'in a forthright manner; candidly or frankly'),\n",
+ " ('immediately', 'without delay or hesitation; with no time intervening'),\n",
+ " ('direct', 'without deviation'),\n",
+ " ('instantly', 'without delay or hesitation; with no time intervening'),\n",
+ " ('straightaway',\n",
+ " 'without delay or hesitation; with no time intervening')]},\n",
+ " {'answer': 'discreditably',\n",
+ " 'hint': 'synonyms for discreditably',\n",
+ " 'clues': [('dishonorably',\n",
+ " 'in a dishonorable manner or to a dishonorable degree'),\n",
+ " ('ingloriously', 'in a dishonorable manner or to a dishonorable degree'),\n",
+ " ('disgracefully', 'in a dishonorable manner or to a dishonorable degree'),\n",
+ " ('shamefully', 'in a dishonorable manner or to a dishonorable degree'),\n",
+ " ('ignominiously',\n",
+ " 'in a dishonorable manner or to a dishonorable degree')]},\n",
+ " {'answer': 'disdainfully',\n",
+ " 'hint': 'synonyms for disdainfully',\n",
+ " 'clues': [('contemptuously', 'without respect; in a disdainful manner'),\n",
+ " ('cavalierly', 'in a proud and domineering manner'),\n",
+ " ('contumeliously', 'without respect; in a disdainful manner'),\n",
+ " ('scornfully', 'without respect; in a disdainful manner')]},\n",
+ " {'answer': 'disgracefully',\n",
+ " 'hint': 'synonyms for disgracefully',\n",
+ " 'clues': [('dishonorably',\n",
+ " 'in a dishonorable manner or to a dishonorable degree'),\n",
+ " ('ingloriously', 'in a dishonorable manner or to a dishonorable degree'),\n",
+ " ('discreditably', 'in a dishonorable manner or to a dishonorable degree'),\n",
+ " ('ignominiously', 'in a dishonorable manner or to a dishonorable degree'),\n",
+ " ('shamefully', 'in a dishonorable manner or to a dishonorable degree')]},\n",
+ " {'answer': 'dishonorably',\n",
+ " 'hint': 'synonyms for dishonorably',\n",
+ " 'clues': [('ingloriously',\n",
+ " 'in a dishonorable manner or to a dishonorable degree'),\n",
+ " ('discreditably', 'in a dishonorable manner or to a dishonorable degree'),\n",
+ " ('disgracefully', 'in a dishonorable manner or to a dishonorable degree'),\n",
+ " ('shamefully', 'in a dishonorable manner or to a dishonorable degree'),\n",
+ " ('dishonourably', 'in a dishonorable manner or to a dishonorable degree'),\n",
+ " ('ignominiously',\n",
+ " 'in a dishonorable manner or to a dishonorable degree')]},\n",
+ " {'answer': 'dishonourably',\n",
+ " 'hint': 'synonyms for dishonourably',\n",
+ " 'clues': [('dishonorably',\n",
+ " 'in a dishonorable manner or to a dishonorable degree'),\n",
+ " ('ingloriously', 'in a dishonorable manner or to a dishonorable degree'),\n",
+ " ('discreditably', 'in a dishonorable manner or to a dishonorable degree'),\n",
+ " ('disgracefully', 'in a dishonorable manner or to a dishonorable degree'),\n",
+ " ('shamefully', 'in a dishonorable manner or to a dishonorable degree'),\n",
+ " ('ignominiously',\n",
+ " 'in a dishonorable manner or to a dishonorable degree')]},\n",
+ " {'answer': 'disregardless',\n",
+ " 'hint': 'synonyms for disregardless',\n",
+ " 'clues': [('no matter',\n",
+ " 'in spite of everything; without regard to drawbacks'),\n",
+ " ('regardless', 'in spite of everything; without regard to drawbacks'),\n",
+ " ('irrespective', 'in spite of everything; without regard to drawbacks'),\n",
+ " ('disregarding', 'in spite of everything; without regard to drawbacks')]},\n",
+ " {'answer': 'dottily',\n",
+ " 'hint': 'synonyms for dottily',\n",
+ " 'clues': [('wackily', 'in a mildly insane manner'),\n",
+ " ('daftly', 'in a mildly insane manner'),\n",
+ " ('nuttily', 'in a mildly insane manner'),\n",
+ " ('balmily', 'in a mildly insane manner')]},\n",
+ " {'answer': 'each_year',\n",
+ " 'hint': 'synonyms for each year',\n",
+ " 'clues': [('per annum',\n",
+ " 'by the year; every year (usually with reference to a sum of money paid or received)'),\n",
+ " ('p.a.',\n",
+ " 'by the year; every year (usually with reference to a sum of money paid or received)'),\n",
+ " ('per year',\n",
+ " 'by the year; every year (usually with reference to a sum of money paid or received)'),\n",
+ " ('annually',\n",
+ " 'by the year; every year (usually with reference to a sum of money paid or received)'),\n",
+ " ('yearly', 'without missing a year'),\n",
+ " ('every year', 'without missing a year')]},\n",
+ " {'answer': 'emphatically',\n",
+ " 'hint': 'synonyms for emphatically',\n",
+ " 'clues': [('by all odds', 'without question and beyond doubt'),\n",
+ " ('in spades', 'without question and beyond doubt'),\n",
+ " ('decidedly', 'without question and beyond doubt'),\n",
+ " ('definitely', 'without question and beyond doubt'),\n",
+ " ('unquestionably', 'without question and beyond doubt')]},\n",
+ " {'answer': 'endlessly',\n",
+ " 'hint': 'synonyms for endlessly',\n",
+ " 'clues': [('unendingly', 'with unflagging resolve'),\n",
+ " ('unceasingly', 'with unflagging resolve'),\n",
+ " ('incessantly', 'with unflagging resolve'),\n",
+ " ('interminably', 'all the time; seemingly without stopping'),\n",
+ " ('continuously', 'with unflagging resolve'),\n",
+ " ('infinitely', 'continuing forever without end'),\n",
+ " ('ceaselessly', 'with unflagging resolve')]},\n",
+ " {'answer': 'entirely',\n",
+ " 'hint': 'synonyms for entirely',\n",
+ " 'clues': [('all',\n",
+ " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\"),\n",
+ " ('alone', 'without any others being included or involved'),\n",
+ " ('only', 'without any others being included or involved'),\n",
+ " ('whole',\n",
+ " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\"),\n",
+ " ('solely', 'without any others being included or involved'),\n",
+ " ('altogether',\n",
+ " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\"),\n",
+ " ('exclusively', 'without any others being included or involved'),\n",
+ " ('completely',\n",
+ " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\"),\n",
+ " ('totally',\n",
+ " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\"),\n",
+ " ('wholly',\n",
+ " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\")]},\n",
+ " {'answer': 'entreatingly',\n",
+ " 'hint': 'synonyms for entreatingly',\n",
+ " 'clues': [('importunately', 'in a beseeching manner'),\n",
+ " ('pleadingly', 'in a beseeching manner'),\n",
+ " ('beseechingly', 'in a beseeching manner'),\n",
+ " ('imploringly', 'in a beseeching manner')]},\n",
+ " {'answer': 'erst',\n",
+ " 'hint': 'synonyms for erst',\n",
+ " 'clues': [('formerly', 'at a previous time'),\n",
+ " ('at one time', 'at a previous time'),\n",
+ " ('erstwhile', 'at a previous time'),\n",
+ " ('once', 'at a previous time')]},\n",
+ " {'answer': 'even_so',\n",
+ " 'hint': 'synonyms for even so',\n",
+ " 'clues': [('all the same',\n",
+ " 'despite anything to the contrary (usually following a concession)'),\n",
+ " ('yet',\n",
+ " 'despite anything to the contrary (usually following a concession)'),\n",
+ " ('withal',\n",
+ " 'despite anything to the contrary (usually following a concession)'),\n",
+ " ('nonetheless',\n",
+ " 'despite anything to the contrary (usually following a concession)'),\n",
+ " ('nevertheless',\n",
+ " 'despite anything to the contrary (usually following a concession)'),\n",
+ " ('notwithstanding',\n",
+ " 'despite anything to the contrary (usually following a concession)'),\n",
+ " ('still',\n",
+ " 'despite anything to the contrary (usually following a concession)'),\n",
+ " ('however',\n",
+ " 'despite anything to the contrary (usually following a concession)')]},\n",
+ " {'answer': 'ever',\n",
+ " 'hint': 'synonyms for ever',\n",
+ " 'clues': [(\"e'er\", 'at all times; all the time and on every occasion'),\n",
+ " ('always', 'at all times; all the time and on every occasion'),\n",
+ " ('ever so', '(intensifier for adjectives) very'),\n",
+ " ('of all time', 'at any time')]},\n",
+ " {'answer': 'evermore',\n",
+ " 'hint': 'synonyms for evermore',\n",
+ " 'clues': [('forevermore', 'at any future time; in the future'),\n",
+ " ('forever', 'for a limitless time; ; - P.P.Bliss'),\n",
+ " ('eternally', 'for a limitless time; ; - P.P.Bliss'),\n",
+ " ('everlastingly', 'for a limitless time; ; - P.P.Bliss')]},\n",
+ " {'answer': 'every_which_way',\n",
+ " 'hint': 'synonyms for every which way',\n",
+ " 'clues': [('helter-skelter', 'haphazardly'),\n",
+ " ('at random', 'in a random manner'),\n",
+ " ('indiscriminately', 'in a random manner'),\n",
+ " ('arbitrarily', 'in a random manner'),\n",
+ " ('willy-nilly', 'in a random manner'),\n",
+ " ('randomly', 'in a random manner'),\n",
+ " ('haphazardly', 'in a random manner')]},\n",
+ " {'answer': 'evidently',\n",
+ " 'hint': 'synonyms for evidently',\n",
+ " 'clues': [('manifestly',\n",
+ " \"unmistakably (`plain' is often used informally for `plainly')\"),\n",
+ " ('plainly',\n",
+ " \"unmistakably (`plain' is often used informally for `plainly')\"),\n",
+ " ('apparently',\n",
+ " \"unmistakably (`plain' is often used informally for `plainly')\"),\n",
+ " ('obviously',\n",
+ " \"unmistakably (`plain' is often used informally for `plainly')\"),\n",
+ " ('patently',\n",
+ " \"unmistakably (`plain' is often used informally for `plainly')\")]},\n",
+ " {'answer': 'exactly',\n",
+ " 'hint': 'synonyms for exactly',\n",
+ " 'clues': [('precisely', 'indicating exactness or preciseness'),\n",
+ " ('on the nose', 'just as it should be'),\n",
+ " ('just', 'indicating exactness or preciseness'),\n",
+ " ('on the dot', 'just as it should be'),\n",
+ " ('incisively', 'in a precise manner'),\n",
+ " ('on the button', 'just as it should be')]},\n",
+ " {'answer': 'exclusively',\n",
+ " 'hint': 'synonyms for exclusively',\n",
+ " 'clues': [('solely', 'without any others being included or involved'),\n",
+ " ('only', 'without any others being included or involved'),\n",
+ " ('alone', 'without any others being included or involved'),\n",
+ " ('entirely', 'without any others being included or involved')]},\n",
+ " {'answer': 'extravagantly',\n",
+ " 'hint': 'synonyms for extravagantly',\n",
+ " 'clues': [('richly', 'in a rich and lavish manner'),\n",
+ " ('abundantly', 'in an abundant manner'),\n",
+ " ('copiously', 'in an abundant manner'),\n",
+ " ('lavishly', 'in a wasteful manner'),\n",
+ " ('profusely', 'in an abundant manner')]},\n",
+ " {'answer': 'extremely',\n",
+ " 'hint': 'synonyms for extremely',\n",
+ " 'clues': [('exceedingly', 'to an extreme degree'),\n",
+ " ('passing', 'to an extreme degree'),\n",
+ " ('highly', 'to a high degree or extent; favorably or with much respect'),\n",
+ " ('super', 'to an extreme degree')]},\n",
+ " {'answer': 'fairly',\n",
+ " 'hint': 'synonyms for fairly',\n",
+ " 'clues': [('somewhat', 'to a moderately sufficient extent or degree'),\n",
+ " ('fair', 'without favoring one party, in a fair evenhanded manner'),\n",
+ " ('moderately', 'to a moderately sufficient extent or degree'),\n",
+ " ('jolly', 'to a moderately sufficient extent or degree'),\n",
+ " ('clean',\n",
+ " 'in conformity with the rules or laws and without fraud or cheating'),\n",
+ " ('passably', 'to a moderately sufficient extent or degree'),\n",
+ " ('middling', 'to a moderately sufficient extent or degree'),\n",
+ " ('pretty', 'to a moderately sufficient extent or degree'),\n",
+ " ('reasonably', 'to a moderately sufficient extent or degree'),\n",
+ " ('evenhandedly',\n",
+ " 'without favoring one party, in a fair evenhanded manner')]},\n",
+ " {'answer': 'faithlessly',\n",
+ " 'hint': 'synonyms for faithlessly',\n",
+ " 'clues': [('false', 'in a disloyal and faithless manner'),\n",
+ " ('treasonably', 'in a disloyal and faithless manner'),\n",
+ " ('traitorously', 'in a disloyal and faithless manner'),\n",
+ " ('treacherously', 'in a disloyal and faithless manner')]},\n",
+ " {'answer': 'finally',\n",
+ " 'hint': 'synonyms for finally',\n",
+ " 'clues': [('lastly', 'the item at the end'),\n",
+ " ('eventually',\n",
+ " 'after an unspecified period of time or an especially long delay'),\n",
+ " ('at last', 'as the end result of a succession or process'),\n",
+ " ('ultimately', 'as the end result of a succession or process'),\n",
+ " ('at long last', 'as the end result of a succession or process'),\n",
+ " ('in conclusion', 'the item at the end'),\n",
+ " ('in the end', 'as the end result of a succession or process')]},\n",
+ " {'answer': 'firmly',\n",
+ " 'hint': 'synonyms for firmly',\n",
+ " 'clues': [('firm', 'with resolute determination'),\n",
+ " ('hard', 'with firmness'),\n",
+ " ('securely', 'in a secure manner; in a manner free from danger'),\n",
+ " ('steadfastly', 'with resolute determination'),\n",
+ " ('unwaveringly', 'with resolute determination')]},\n",
+ " {'answer': 'firstly',\n",
+ " 'hint': 'synonyms for firstly',\n",
+ " 'clues': [('first of all', 'before anything else'),\n",
+ " ('first', 'before anything else'),\n",
+ " ('foremost', 'before anything else'),\n",
+ " ('first off', 'before anything else')]},\n",
+ " {'answer': 'fittingly',\n",
+ " 'hint': 'synonyms for fittingly',\n",
+ " 'clues': [('befittingly', 'in an appropriate manner'),\n",
+ " ('appropriately', 'in an appropriate manner'),\n",
+ " ('suitably', 'in an appropriate manner'),\n",
+ " ('fitly', 'in an appropriate manner')]},\n",
+ " {'answer': 'flat_out',\n",
+ " 'hint': 'synonyms for flat out',\n",
+ " 'clues': [('like blue murder', 'at top speed'),\n",
+ " ('roundly', 'in a blunt direct manner'),\n",
+ " ('brusquely', 'in a blunt direct manner'),\n",
+ " ('bluffly', 'in a blunt direct manner'),\n",
+ " ('bluntly', 'in a blunt direct manner')]},\n",
+ " {'answer': 'for_certain',\n",
+ " 'hint': 'synonyms for for certain',\n",
+ " 'clues': [('sure as shooting',\n",
+ " \"definitely or positively (`sure' is sometimes used informally for `surely')\"),\n",
+ " ('sure',\n",
+ " \"definitely or positively (`sure' is sometimes used informally for `surely')\"),\n",
+ " ('for sure',\n",
+ " \"definitely or positively (`sure' is sometimes used informally for `surely')\"),\n",
+ " ('certainly',\n",
+ " \"definitely or positively (`sure' is sometimes used informally for `surely')\"),\n",
+ " ('sure enough',\n",
+ " \"definitely or positively (`sure' is sometimes used informally for `surely')\")]},\n",
+ " {'answer': 'for_each_one',\n",
+ " 'hint': 'synonyms for for each one',\n",
+ " 'clues': [('to each one',\n",
+ " 'to or from every one of two or more (considered individually)'),\n",
+ " ('each', 'to or from every one of two or more (considered individually)'),\n",
+ " ('from each one',\n",
+ " 'to or from every one of two or more (considered individually)'),\n",
+ " ('apiece',\n",
+ " 'to or from every one of two or more (considered individually)')]},\n",
+ " {'answer': 'forever',\n",
+ " 'hint': 'synonyms for forever',\n",
+ " 'clues': [('forever and a day',\n",
+ " 'for a very long or seemingly endless time'),\n",
+ " ('incessantly', 'without interruption'),\n",
+ " ('everlastingly', 'for a limitless time; ; - P.P.Bliss'),\n",
+ " ('always', 'without interruption'),\n",
+ " ('eternally', 'for a limitless time; ; - P.P.Bliss'),\n",
+ " ('perpetually', 'without interruption'),\n",
+ " ('constantly', 'without interruption'),\n",
+ " ('evermore', 'for a limitless time; ; - P.P.Bliss')]},\n",
+ " {'answer': 'formerly',\n",
+ " 'hint': 'synonyms for formerly',\n",
+ " 'clues': [('at one time', 'at a previous time'),\n",
+ " ('erstwhile', 'at a previous time'),\n",
+ " ('once', 'at a previous time'),\n",
+ " ('erst', 'at a previous time')]},\n",
+ " {'answer': 'forth',\n",
+ " 'hint': 'synonyms for forth',\n",
+ " 'clues': [('off',\n",
+ " \"from a particular thing or place or position (`forth' is obsolete)\"),\n",
+ " ('onward', 'forward in time or order or degree'),\n",
+ " ('away',\n",
+ " \"from a particular thing or place or position (`forth' is obsolete)\"),\n",
+ " ('forward', 'forward in time or order or degree')]},\n",
+ " {'answer': 'forthwith',\n",
+ " 'hint': 'synonyms for forthwith',\n",
+ " 'clues': [('now', 'without delay or hesitation; with no time intervening'),\n",
+ " ('right away', 'without delay or hesitation; with no time intervening'),\n",
+ " ('directly', 'without delay or hesitation; with no time intervening'),\n",
+ " ('like a shot', 'without delay or hesitation; with no time intervening'),\n",
+ " ('at once', 'without delay or hesitation; with no time intervening'),\n",
+ " ('straight off', 'without delay or hesitation; with no time intervening'),\n",
+ " ('immediately', 'without delay or hesitation; with no time intervening'),\n",
+ " ('instantly', 'without delay or hesitation; with no time intervening'),\n",
+ " ('straightaway',\n",
+ " 'without delay or hesitation; with no time intervening')]},\n",
+ " {'answer': 'forwards',\n",
+ " 'hint': 'synonyms for forwards',\n",
+ " 'clues': [('forward', 'in a forward direction'),\n",
+ " ('onward', 'in a forward direction'),\n",
+ " ('forrader', 'in a forward direction'),\n",
+ " ('ahead', 'in a forward direction'),\n",
+ " ('frontwards',\n",
+ " \"at or to or toward the front; ; ; ; (`forrad' and `forrard' are dialectal variations)\")]},\n",
+ " {'answer': 'foxily',\n",
+ " 'hint': 'synonyms for foxily',\n",
+ " 'clues': [('craftily', 'in an artful manner'),\n",
+ " ('knavishly', 'in an artful manner'),\n",
+ " ('slyly', 'in an artful manner'),\n",
+ " ('cunningly', 'in an artful manner'),\n",
+ " ('artfully', 'in an artful manner'),\n",
+ " ('trickily', 'in an artful manner')]},\n",
+ " {'answer': 'freshly',\n",
+ " 'hint': 'synonyms for freshly',\n",
+ " 'clues': [('newly', 'very recently'),\n",
+ " ('impertinently', 'in an impudent or impertinent manner'),\n",
+ " ('pertly', 'in an impudent or impertinent manner'),\n",
+ " ('saucily', 'in an impudent or impertinent manner'),\n",
+ " ('impudently', 'in an impudent or impertinent manner'),\n",
+ " ('fresh', 'very recently')]},\n",
+ " {'answer': 'from_time_to_time',\n",
+ " 'hint': 'synonyms for from time to time',\n",
+ " 'clues': [('occasionally', 'now and then or here and there'),\n",
+ " ('at times', 'now and then or here and there'),\n",
+ " ('on occasion', 'now and then or here and there'),\n",
+ " ('once in a while', 'now and then or here and there'),\n",
+ " ('now and again', 'now and then or here and there'),\n",
+ " ('now and then', 'now and then or here and there')]},\n",
+ " {'answer': 'fully',\n",
+ " 'hint': 'synonyms for fully',\n",
+ " 'clues': [('to the full',\n",
+ " \"to the greatest degree or extent; completely or entirely; (`full' in this sense is used as a combining form)\"),\n",
+ " ('amply', 'sufficiently; more than adequately'),\n",
+ " ('in full', 'referring to a quantity'),\n",
+ " ('full',\n",
+ " \"to the greatest degree or extent; completely or entirely; (`full' in this sense is used as a combining form)\")]},\n",
+ " {'answer': 'gayly',\n",
+ " 'hint': 'synonyms for gayly',\n",
+ " 'clues': [('merrily', 'in a joyous manner'),\n",
+ " ('happily', 'in a joyous manner'),\n",
+ " ('blithely', 'in a joyous manner'),\n",
+ " ('mirthfully', 'in a joyous manner'),\n",
+ " ('jubilantly', 'in a joyous manner')]},\n",
+ " {'answer': 'generally',\n",
+ " 'hint': 'synonyms for generally',\n",
+ " 'clues': [('broadly speaking',\n",
+ " 'without regard to specific details or exceptions'),\n",
+ " ('mostly', 'usually; as a rule'),\n",
+ " ('loosely', 'without regard to specific details or exceptions'),\n",
+ " ('in the main', 'without distinction of one from others'),\n",
+ " ('by and large', 'usually; as a rule'),\n",
+ " ('broadly', 'without regard to specific details or exceptions'),\n",
+ " ('in general', 'without distinction of one from others'),\n",
+ " ('more often than not', 'usually; as a rule')]},\n",
+ " {'answer': 'gravely',\n",
+ " 'hint': 'synonyms for gravely',\n",
+ " 'clues': [('severely', 'to a severe or serious degree'),\n",
+ " ('soberly', 'in a grave and sober manner'),\n",
+ " ('badly', 'to a severe or serious degree'),\n",
+ " ('staidly', 'in a grave and sober manner'),\n",
+ " ('seriously', 'to a severe or serious degree')]},\n",
+ " {'answer': 'haphazardly',\n",
+ " 'hint': 'synonyms for haphazardly',\n",
+ " 'clues': [('haphazard', 'without care; in a slapdash manner'),\n",
+ " ('at random', 'in a random manner'),\n",
+ " ('every which way', 'in a random manner'),\n",
+ " ('indiscriminately', 'in a random manner'),\n",
+ " ('arbitrarily', 'in a random manner'),\n",
+ " ('willy-nilly', 'in a random manner'),\n",
+ " ('randomly', 'in a random manner')]},\n",
+ " {'answer': 'happily',\n",
+ " 'hint': 'synonyms for happily',\n",
+ " 'clues': [('merrily', 'in a joyous manner'),\n",
+ " ('blithely', 'in a joyous manner'),\n",
+ " ('mirthfully', 'in a joyous manner'),\n",
+ " ('jubilantly', 'in a joyous manner'),\n",
+ " ('gayly', 'in a joyous manner')]},\n",
+ " {'answer': 'heavily',\n",
+ " 'hint': 'synonyms for heavily',\n",
+ " 'clues': [('hard', 'indulging excessively'),\n",
+ " ('intemperately', 'indulging excessively'),\n",
+ " ('heavy', 'slowly as if burdened by much weight'),\n",
+ " ('to a great extent', 'to a considerable degree')]},\n",
+ " {'answer': 'hence',\n",
+ " 'hint': 'synonyms for hence',\n",
+ " 'clues': [('thus',\n",
+ " '(used to introduce a logical conclusion) from that fact or reason or as a result'),\n",
+ " ('therefore',\n",
+ " '(used to introduce a logical conclusion) from that fact or reason or as a result'),\n",
+ " ('so',\n",
+ " '(used to introduce a logical conclusion) from that fact or reason or as a result'),\n",
+ " ('thence',\n",
+ " '(used to introduce a logical conclusion) from that fact or reason or as a result')]},\n",
+ " {'answer': 'heretofore',\n",
+ " 'hint': 'synonyms for heretofore',\n",
+ " 'clues': [('thus far',\n",
+ " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n",
+ " ('up to now',\n",
+ " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n",
+ " ('til now',\n",
+ " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n",
+ " ('yet',\n",
+ " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n",
+ " ('so far',\n",
+ " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n",
+ " ('hitherto',\n",
+ " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n",
+ " ('as yet',\n",
+ " 'used in negative statement to describe a situation that has existed up to this point or up to the present time')]},\n",
+ " {'answer': 'hitherto',\n",
+ " 'hint': 'synonyms for hitherto',\n",
+ " 'clues': [('thus far',\n",
+ " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n",
+ " ('up to now',\n",
+ " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n",
+ " ('til now',\n",
+ " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n",
+ " ('heretofore',\n",
+ " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n",
+ " ('yet',\n",
+ " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n",
+ " ('so far',\n",
+ " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n",
+ " ('as yet',\n",
+ " 'used in negative statement to describe a situation that has existed up to this point or up to the present time')]},\n",
+ " {'answer': 'however',\n",
+ " 'hint': 'synonyms for however',\n",
+ " 'clues': [('even so',\n",
+ " 'despite anything to the contrary (usually following a concession)'),\n",
+ " ('all the same',\n",
+ " 'despite anything to the contrary (usually following a concession)'),\n",
+ " ('yet',\n",
+ " 'despite anything to the contrary (usually following a concession)'),\n",
+ " ('withal',\n",
+ " 'despite anything to the contrary (usually following a concession)'),\n",
+ " ('nonetheless',\n",
+ " 'despite anything to the contrary (usually following a concession)'),\n",
+ " ('nevertheless',\n",
+ " 'despite anything to the contrary (usually following a concession)'),\n",
+ " ('notwithstanding',\n",
+ " 'despite anything to the contrary (usually following a concession)'),\n",
+ " ('still',\n",
+ " 'despite anything to the contrary (usually following a concession)')]},\n",
+ " {'answer': 'ignominiously',\n",
+ " 'hint': 'synonyms for ignominiously',\n",
+ " 'clues': [('dishonorably',\n",
+ " 'in a dishonorable manner or to a dishonorable degree'),\n",
+ " ('ingloriously', 'in a dishonorable manner or to a dishonorable degree'),\n",
+ " ('discreditably', 'in a dishonorable manner or to a dishonorable degree'),\n",
+ " ('disgracefully', 'in a dishonorable manner or to a dishonorable degree'),\n",
+ " ('shamefully', 'in a dishonorable manner or to a dishonorable degree')]},\n",
+ " {'answer': 'immediately',\n",
+ " 'hint': 'synonyms for immediately',\n",
+ " 'clues': [('now', 'without delay or hesitation; with no time intervening'),\n",
+ " ('right away', 'without delay or hesitation; with no time intervening'),\n",
+ " ('forthwith', 'without delay or hesitation; with no time intervening'),\n",
+ " ('directly', 'without delay or hesitation; with no time intervening'),\n",
+ " ('like a shot', 'without delay or hesitation; with no time intervening'),\n",
+ " ('at once', 'without delay or hesitation; with no time intervening'),\n",
+ " ('straight off', 'without delay or hesitation; with no time intervening'),\n",
+ " ('instantly', 'without delay or hesitation; with no time intervening'),\n",
+ " ('straightaway',\n",
+ " 'without delay or hesitation; with no time intervening')]},\n",
+ " {'answer': 'impertinently',\n",
+ " 'hint': 'synonyms for impertinently',\n",
+ " 'clues': [('impudently', 'in an impudent or impertinent manner'),\n",
+ " ('pertly', 'in an impudent or impertinent manner'),\n",
+ " ('freshly', 'in an impudent or impertinent manner'),\n",
+ " ('saucily', 'in an impudent or impertinent manner')]},\n",
+ " {'answer': 'imploringly',\n",
+ " 'hint': 'synonyms for imploringly',\n",
+ " 'clues': [('importunately', 'in a beseeching manner'),\n",
+ " ('pleadingly', 'in a beseeching manner'),\n",
+ " ('beseechingly', 'in a beseeching manner'),\n",
+ " ('entreatingly', 'in a beseeching manner')]},\n",
+ " {'answer': 'importunately',\n",
+ " 'hint': 'synonyms for importunately',\n",
+ " 'clues': [('pleadingly', 'in a beseeching manner'),\n",
+ " ('beseechingly', 'in a beseeching manner'),\n",
+ " ('imploringly', 'in a beseeching manner'),\n",
+ " ('entreatingly', 'in a beseeching manner')]},\n",
+ " {'answer': 'impudently',\n",
+ " 'hint': 'synonyms for impudently',\n",
+ " 'clues': [('impertinently', 'in an impudent or impertinent manner'),\n",
+ " ('saucily', 'in an impudent or impertinent manner'),\n",
+ " ('pertly', 'in an impudent or impertinent manner'),\n",
+ " ('freshly', 'in an impudent or impertinent manner')]},\n",
+ " {'answer': 'in_all_likelihood',\n",
+ " 'hint': 'synonyms for in all likelihood',\n",
+ " 'clues': [('in all probability',\n",
+ " 'with considerable certainty; without much doubt'),\n",
+ " ('probably', 'with considerable certainty; without much doubt'),\n",
+ " ('belike', 'with considerable certainty; without much doubt'),\n",
+ " ('likely', 'with considerable certainty; without much doubt')]},\n",
+ " {'answer': 'in_all_probability',\n",
+ " 'hint': 'synonyms for in all probability',\n",
+ " 'clues': [('in all likelihood',\n",
+ " 'with considerable certainty; without much doubt'),\n",
+ " ('probably', 'with considerable certainty; without much doubt'),\n",
+ " ('belike', 'with considerable certainty; without much doubt'),\n",
+ " ('likely', 'with considerable certainty; without much doubt')]},\n",
+ " {'answer': 'in_any_case',\n",
+ " 'hint': 'synonyms for in any case',\n",
+ " 'clues': [('anyways',\n",
+ " 'used to indicate that a statement explains or supports a previous statement'),\n",
+ " ('at any rate',\n",
+ " 'used to indicate that a statement explains or supports a previous statement'),\n",
+ " ('in any event',\n",
+ " 'used to indicate that a statement explains or supports a previous statement'),\n",
+ " ('besides', 'making an additional point; anyway'),\n",
+ " ('anyhow',\n",
+ " 'used to indicate that a statement explains or supports a previous statement')]},\n",
+ " {'answer': 'in_any_event',\n",
+ " 'hint': 'synonyms for in any event',\n",
+ " 'clues': [('anyways',\n",
+ " 'used to indicate that a statement explains or supports a previous statement'),\n",
+ " ('at any rate',\n",
+ " 'used to indicate that a statement explains or supports a previous statement'),\n",
+ " ('in any case',\n",
+ " 'used to indicate that a statement explains or supports a previous statement'),\n",
+ " ('anyhow',\n",
+ " 'used to indicate that a statement explains or supports a previous statement')]},\n",
+ " {'answer': 'in_brief',\n",
+ " 'hint': 'synonyms for in brief',\n",
+ " 'clues': [('in short', 'in a concise manner; in a few words'),\n",
+ " ('briefly', 'in a concise manner; in a few words'),\n",
+ " ('concisely', 'in a concise manner; in a few words'),\n",
+ " ('shortly', 'in a concise manner; in a few words')]},\n",
+ " {'answer': 'in_due_course',\n",
+ " 'hint': 'synonyms for in due course',\n",
+ " 'clues': [('in due season', 'at the appropriate time'),\n",
+ " ('in good time', 'at the appropriate time'),\n",
+ " ('when the time comes', 'at the appropriate time'),\n",
+ " ('in due time', 'at the appropriate time')]},\n",
+ " {'answer': 'in_due_season',\n",
+ " 'hint': 'synonyms for in due season',\n",
+ " 'clues': [('in good time', 'at the appropriate time'),\n",
+ " ('in due course', 'at the appropriate time'),\n",
+ " ('when the time comes', 'at the appropriate time'),\n",
+ " ('in due time', 'at the appropriate time')]},\n",
+ " {'answer': 'in_due_time',\n",
+ " 'hint': 'synonyms for in due time',\n",
+ " 'clues': [('in due season', 'at the appropriate time'),\n",
+ " ('in good time', 'at the appropriate time'),\n",
+ " ('in due course', 'at the appropriate time'),\n",
+ " ('when the time comes', 'at the appropriate time')]},\n",
+ " {'answer': 'in_good_order',\n",
+ " 'hint': 'synonyms for in good order',\n",
+ " 'clues': [('decent', 'in the right manner'),\n",
+ " ('right', 'in the right manner'),\n",
+ " ('the right way', 'in the right manner'),\n",
+ " ('properly', 'in the right manner')]},\n",
+ " {'answer': 'in_good_time',\n",
+ " 'hint': 'synonyms for in good time',\n",
+ " 'clues': [('in due season', 'at the appropriate time'),\n",
+ " ('in due course', 'at the appropriate time'),\n",
+ " ('when the time comes', 'at the appropriate time'),\n",
+ " ('in due time', 'at the appropriate time')]},\n",
+ " {'answer': 'in_short',\n",
+ " 'hint': 'synonyms for in short',\n",
+ " 'clues': [('briefly', 'in a concise manner; in a few words'),\n",
+ " ('concisely', 'in a concise manner; in a few words'),\n",
+ " ('in brief', 'in a concise manner; in a few words'),\n",
+ " ('shortly', 'in a concise manner; in a few words')]},\n",
+ " {'answer': 'in_so_far',\n",
+ " 'hint': 'synonyms for in so far',\n",
+ " 'clues': [('to that extent', 'to the degree or extent that'),\n",
+ " ('so far', 'to the degree or extent that'),\n",
+ " ('to that degree', 'to the degree or extent that'),\n",
+ " ('insofar', 'to the degree or extent that')]},\n",
+ " {'answer': 'in_spades',\n",
+ " 'hint': 'synonyms for in spades',\n",
+ " 'clues': [('emphatically', 'without question and beyond doubt'),\n",
+ " ('by all odds', 'without question and beyond doubt'),\n",
+ " ('decidedly', 'without question and beyond doubt'),\n",
+ " ('definitely', 'without question and beyond doubt'),\n",
+ " ('unquestionably', 'without question and beyond doubt')]},\n",
+ " {'answer': 'in_spite_of_appearance',\n",
+ " 'hint': 'synonyms for in spite of appearance',\n",
+ " 'clues': [('at heart', 'in reality'),\n",
+ " ('deep down', 'in reality'),\n",
+ " ('inside', 'in reality'),\n",
+ " ('at bottom', 'in reality')]},\n",
+ " {'answer': 'in_the_beginning',\n",
+ " 'hint': 'synonyms for in the beginning',\n",
+ " 'clues': [('earlier', 'before now'),\n",
+ " ('originally', 'before now'),\n",
+ " ('in the first place', 'before now'),\n",
+ " ('to begin with', 'before now'),\n",
+ " ('primitively', 'with reference to the origin or beginning')]},\n",
+ " {'answer': 'in_the_end',\n",
+ " 'hint': 'synonyms for in the end',\n",
+ " 'clues': [('finally', 'as the end result of a succession or process'),\n",
+ " ('at last', 'as the end result of a succession or process'),\n",
+ " ('ultimately', 'as the end result of a succession or process'),\n",
+ " ('at long last', 'as the end result of a succession or process'),\n",
+ " ('in the long run', 'after a very lengthy period of time')]},\n",
+ " {'answer': 'in_the_first_place',\n",
+ " 'hint': 'synonyms for in the first place',\n",
+ " 'clues': [('earlier', 'before now'),\n",
+ " ('primarily', 'of primary import'),\n",
+ " ('in the beginning', 'before now'),\n",
+ " ('to begin with', 'before now'),\n",
+ " ('originally', 'before now')]},\n",
+ " {'answer': 'in_the_main',\n",
+ " 'hint': 'synonyms for in the main',\n",
+ " 'clues': [('generally', 'without distinction of one from others'),\n",
+ " ('principally', 'for the most part'),\n",
+ " ('chiefly', 'for the most part'),\n",
+ " ('primarily', 'for the most part'),\n",
+ " ('in general', 'without distinction of one from others'),\n",
+ " ('mainly', 'for the most part')]},\n",
+ " {'answer': 'incessantly',\n",
+ " 'hint': 'synonyms for incessantly',\n",
+ " 'clues': [('unceasingly', 'with unflagging resolve'),\n",
+ " ('unendingly', 'with unflagging resolve'),\n",
+ " ('ceaselessly', 'with unflagging resolve'),\n",
+ " ('always', 'without interruption'),\n",
+ " ('forever', 'without interruption'),\n",
+ " ('perpetually', 'without interruption'),\n",
+ " ('constantly', 'without interruption'),\n",
+ " ('endlessly', 'with unflagging resolve'),\n",
+ " ('continuously', 'with unflagging resolve')]},\n",
+ " {'answer': 'incidentally',\n",
+ " 'hint': 'synonyms for incidentally',\n",
+ " 'clues': [('accidentally', 'of a minor or subordinate nature'),\n",
+ " ('by the bye', 'introducing a different topic; in point of fact'),\n",
+ " ('by the way', 'introducing a different topic; in point of fact'),\n",
+ " ('apropos', 'introducing a different topic; in point of fact')]},\n",
+ " {'answer': 'incredibly',\n",
+ " 'hint': 'synonyms for incredibly',\n",
+ " 'clues': [('fantastically', 'exceedingly; extremely'),\n",
+ " ('improbably', 'not easy to believe'),\n",
+ " ('implausibly', 'not easy to believe'),\n",
+ " ('unbelievably', 'not easy to believe'),\n",
+ " ('fabulously', 'exceedingly; extremely')]},\n",
+ " {'answer': 'indiscriminately',\n",
+ " 'hint': 'synonyms for indiscriminately',\n",
+ " 'clues': [('at random', 'in a random manner'),\n",
+ " ('every which way', 'in a random manner'),\n",
+ " ('promiscuously', 'in an indiscriminate manner'),\n",
+ " ('arbitrarily', 'in a random manner'),\n",
+ " ('willy-nilly', 'in a random manner'),\n",
+ " ('randomly', 'in a random manner'),\n",
+ " ('haphazardly', 'in a random manner')]},\n",
+ " {'answer': 'individually',\n",
+ " 'hint': 'synonyms for individually',\n",
+ " 'clues': [('severally', 'apart from others'),\n",
+ " ('one by one', 'apart from others'),\n",
+ " ('on an individual basis', 'apart from others'),\n",
+ " ('singly', 'apart from others'),\n",
+ " ('separately', 'apart from others')]},\n",
+ " {'answer': 'inevitably',\n",
+ " 'hint': 'synonyms for inevitably',\n",
+ " 'clues': [('of necessity', 'in such a manner as could not be otherwise'),\n",
+ " ('necessarily', 'in such a manner as could not be otherwise'),\n",
+ " ('ineluctably', 'by necessity'),\n",
+ " ('needs', 'in such a manner as could not be otherwise'),\n",
+ " ('inescapably', 'by necessity'),\n",
+ " ('unavoidably', 'by necessity')]},\n",
+ " {'answer': 'ingloriously',\n",
+ " 'hint': 'synonyms for ingloriously',\n",
+ " 'clues': [('dishonorably',\n",
+ " 'in a dishonorable manner or to a dishonorable degree'),\n",
+ " ('discreditably', 'in a dishonorable manner or to a dishonorable degree'),\n",
+ " ('disgracefully', 'in a dishonorable manner or to a dishonorable degree'),\n",
+ " ('shamefully', 'in a dishonorable manner or to a dishonorable degree'),\n",
+ " ('ignominiously',\n",
+ " 'in a dishonorable manner or to a dishonorable degree')]},\n",
+ " {'answer': 'insanely',\n",
+ " 'hint': 'synonyms for insanely',\n",
+ " 'clues': [('madly', 'in an insane manner'),\n",
+ " ('deucedly', '(used as intensives) extremely'),\n",
+ " ('dementedly', 'in an insane manner'),\n",
+ " ('devilishly', '(used as intensives) extremely'),\n",
+ " ('crazily', 'in an insane manner'),\n",
+ " ('deadly', '(used as intensives) extremely')]},\n",
+ " {'answer': 'insofar',\n",
+ " 'hint': 'synonyms for insofar',\n",
+ " 'clues': [('to that extent', 'to the degree or extent that'),\n",
+ " ('so far', 'to the degree or extent that'),\n",
+ " ('to that degree', 'to the degree or extent that'),\n",
+ " ('in so far', 'to the degree or extent that')]},\n",
+ " {'answer': 'instantly',\n",
+ " 'hint': 'synonyms for instantly',\n",
+ " 'clues': [('now', 'without delay or hesitation; with no time intervening'),\n",
+ " ('right away', 'without delay or hesitation; with no time intervening'),\n",
+ " ('forthwith', 'without delay or hesitation; with no time intervening'),\n",
+ " ('instantaneously', 'without any delay'),\n",
+ " ('directly', 'without delay or hesitation; with no time intervening'),\n",
+ " ('like a shot', 'without delay or hesitation; with no time intervening'),\n",
+ " ('outright', 'without any delay'),\n",
+ " ('in a flash', 'without any delay'),\n",
+ " ('at once', 'without delay or hesitation; with no time intervening'),\n",
+ " ('straight off', 'without delay or hesitation; with no time intervening'),\n",
+ " ('immediately', 'without delay or hesitation; with no time intervening'),\n",
+ " ('straightaway',\n",
+ " 'without delay or hesitation; with no time intervening')]},\n",
+ " {'answer': 'intentionally',\n",
+ " 'hint': 'synonyms for intentionally',\n",
+ " 'clues': [('purposely', 'with intention; in an intentional manner'),\n",
+ " ('on purpose', 'with intention; in an intentional manner'),\n",
+ " ('by choice', 'with intention; in an intentional manner'),\n",
+ " ('advisedly', 'with intention; in an intentional manner'),\n",
+ " ('deliberately', 'with intention; in an intentional manner'),\n",
+ " ('designedly', 'with intention; in an intentional manner'),\n",
+ " ('by design', 'with intention; in an intentional manner')]},\n",
+ " {'answer': 'jubilantly',\n",
+ " 'hint': 'synonyms for jubilantly',\n",
+ " 'clues': [('merrily', 'in a joyous manner'),\n",
+ " ('happily', 'in a joyous manner'),\n",
+ " ('blithely', 'in a joyous manner'),\n",
+ " ('mirthfully', 'in a joyous manner'),\n",
+ " ('gayly', 'in a joyous manner')]},\n",
+ " {'answer': 'just_about',\n",
+ " 'hint': 'synonyms for just about',\n",
+ " 'clues': [('roughly',\n",
+ " '(of quantities) imprecise but fairly close to correct'),\n",
+ " ('close to', '(of quantities) imprecise but fairly close to correct'),\n",
+ " ('or so', '(of quantities) imprecise but fairly close to correct'),\n",
+ " ('more or less', '(of quantities) imprecise but fairly close to correct'),\n",
+ " ('around', '(of quantities) imprecise but fairly close to correct'),\n",
+ " ('approximately',\n",
+ " '(of quantities) imprecise but fairly close to correct'),\n",
+ " ('about', '(of quantities) imprecise but fairly close to correct'),\n",
+ " ('some', '(of quantities) imprecise but fairly close to correct')]},\n",
+ " {'answer': 'knavishly',\n",
+ " 'hint': 'synonyms for knavishly',\n",
+ " 'clues': [('foxily', 'in an artful manner'),\n",
+ " ('craftily', 'in an artful manner'),\n",
+ " ('slyly', 'in an artful manner'),\n",
+ " ('cunningly', 'in an artful manner'),\n",
+ " ('artfully', 'in an artful manner'),\n",
+ " ('trickily', 'in an artful manner')]},\n",
+ " {'answer': 'lately',\n",
+ " 'hint': 'synonyms for lately',\n",
+ " 'clues': [('latterly', 'in the recent past'),\n",
+ " ('recently', 'in the recent past'),\n",
+ " ('of late', 'in the recent past'),\n",
+ " ('late', 'in the recent past')]},\n",
+ " {'answer': 'later_on',\n",
+ " 'hint': 'synonyms for later on',\n",
+ " 'clues': [('later', 'happening at a time subsequent to a reference time'),\n",
+ " ('afterward', 'happening at a time subsequent to a reference time'),\n",
+ " ('subsequently', 'happening at a time subsequent to a reference time'),\n",
+ " ('after', 'happening at a time subsequent to a reference time')]},\n",
+ " {'answer': 'lawfully',\n",
+ " 'hint': 'synonyms for lawfully',\n",
+ " 'clues': [('de jure', 'by law; conforming to the law'),\n",
+ " ('legitimately', 'in a manner acceptable to common custom'),\n",
+ " ('licitly', 'in a manner acceptable to common custom'),\n",
+ " ('legally', 'by law; conforming to the law')]},\n",
+ " {'answer': 'lightly',\n",
+ " 'hint': 'synonyms for lightly',\n",
+ " 'clues': [('light', 'with few burdens'),\n",
+ " ('gently', 'with little weight or force'),\n",
+ " ('thinly', 'in a small quantity or extent'),\n",
+ " ('softly', 'with little weight or force')]},\n",
+ " {'answer': 'like_a_shot',\n",
+ " 'hint': 'synonyms for like a shot',\n",
+ " 'clues': [('now', 'without delay or hesitation; with no time intervening'),\n",
+ " ('right away', 'without delay or hesitation; with no time intervening'),\n",
+ " ('forthwith', 'without delay or hesitation; with no time intervening'),\n",
+ " ('directly', 'without delay or hesitation; with no time intervening'),\n",
+ " ('at once', 'without delay or hesitation; with no time intervening'),\n",
+ " ('straight off', 'without delay or hesitation; with no time intervening'),\n",
+ " ('immediately', 'without delay or hesitation; with no time intervening'),\n",
+ " ('instantly', 'without delay or hesitation; with no time intervening'),\n",
+ " ('straightaway',\n",
+ " 'without delay or hesitation; with no time intervening')]},\n",
+ " {'answer': 'like_crazy',\n",
+ " 'hint': 'synonyms for like crazy',\n",
+ " 'clues': [('like mad', 'with great speed or effort or intensity'),\n",
+ " ('like thunder', 'with great speed or effort or intensity'),\n",
+ " ('like the devil', 'with great speed or effort or intensity'),\n",
+ " ('like sin', 'with great speed or effort or intensity'),\n",
+ " ('like hell', 'with great speed or effort or intensity')]},\n",
+ " {'answer': 'like_hell',\n",
+ " 'hint': 'synonyms for like hell',\n",
+ " 'clues': [('like mad', 'with great speed or effort or intensity'),\n",
+ " ('like thunder', 'with great speed or effort or intensity'),\n",
+ " ('like the devil', 'with great speed or effort or intensity'),\n",
+ " ('like sin', 'with great speed or effort or intensity'),\n",
+ " ('like crazy', 'with great speed or effort or intensity')]},\n",
+ " {'answer': 'like_mad',\n",
+ " 'hint': 'synonyms for like mad',\n",
+ " 'clues': [('like thunder', 'with great speed or effort or intensity'),\n",
+ " ('like the devil', 'with great speed or effort or intensity'),\n",
+ " ('like sin', 'with great speed or effort or intensity'),\n",
+ " ('like hell', 'with great speed or effort or intensity'),\n",
+ " ('like crazy', 'with great speed or effort or intensity')]},\n",
+ " {'answer': 'like_sin',\n",
+ " 'hint': 'synonyms for like sin',\n",
+ " 'clues': [('like mad', 'with great speed or effort or intensity'),\n",
+ " ('like thunder', 'with great speed or effort or intensity'),\n",
+ " ('like the devil', 'with great speed or effort or intensity'),\n",
+ " ('like hell', 'with great speed or effort or intensity'),\n",
+ " ('like crazy', 'with great speed or effort or intensity')]},\n",
+ " {'answer': 'like_the_devil',\n",
+ " 'hint': 'synonyms for like the devil',\n",
+ " 'clues': [('like mad', 'with great speed or effort or intensity'),\n",
+ " ('like thunder', 'with great speed or effort or intensity'),\n",
+ " ('like sin', 'with great speed or effort or intensity'),\n",
+ " ('like hell', 'with great speed or effort or intensity'),\n",
+ " ('like crazy', 'with great speed or effort or intensity')]},\n",
+ " {'answer': 'like_thunder',\n",
+ " 'hint': 'synonyms for like thunder',\n",
+ " 'clues': [('like mad', 'with great speed or effort or intensity'),\n",
+ " ('like the devil', 'with great speed or effort or intensity'),\n",
+ " ('like sin', 'with great speed or effort or intensity'),\n",
+ " ('like hell', 'with great speed or effort or intensity'),\n",
+ " ('like crazy', 'with great speed or effort or intensity')]},\n",
+ " {'answer': 'likewise',\n",
+ " 'hint': 'synonyms for likewise',\n",
+ " 'clues': [('too', 'in addition'),\n",
+ " ('as well', 'in addition'),\n",
+ " ('also', 'in addition'),\n",
+ " ('similarly', 'in like or similar manner; ; - Samuel Johnson'),\n",
+ " ('besides', 'in addition'),\n",
+ " ('alike', 'equally')]},\n",
+ " {'answer': 'little_by_little',\n",
+ " 'hint': 'synonyms for little by little',\n",
+ " 'clues': [('in stages', 'a little bit at a time'),\n",
+ " ('by inches', 'by a short distance'),\n",
+ " ('by small degrees', 'by a short distance'),\n",
+ " ('piecemeal', 'a little bit at a time'),\n",
+ " ('bit by bit', 'a little bit at a time')]},\n",
+ " {'answer': 'longitudinally',\n",
+ " 'hint': 'synonyms for longitudinally',\n",
+ " 'clues': [('lengthwise', 'in the direction of the length'),\n",
+ " ('longwise', 'in the direction of the length'),\n",
+ " ('lengthways', 'in the direction of the length'),\n",
+ " ('longways', 'in the direction of the length')]},\n",
+ " {'answer': 'longways',\n",
+ " 'hint': 'synonyms for longways',\n",
+ " 'clues': [('lengthwise', 'in the direction of the length'),\n",
+ " ('longwise', 'in the direction of the length'),\n",
+ " ('lengthways', 'in the direction of the length'),\n",
+ " ('longitudinally', 'in the direction of the length')]},\n",
+ " {'answer': 'longwise',\n",
+ " 'hint': 'synonyms for longwise',\n",
+ " 'clues': [('lengthwise', 'in the direction of the length'),\n",
+ " ('lengthways', 'in the direction of the length'),\n",
+ " ('longitudinally', 'in the direction of the length'),\n",
+ " ('longways', 'in the direction of the length')]},\n",
+ " {'answer': 'loosely',\n",
+ " 'hint': 'synonyms for loosely',\n",
+ " 'clues': [('broadly', 'without regard to specific details or exceptions'),\n",
+ " ('broadly speaking', 'without regard to specific details or exceptions'),\n",
+ " ('slackly', 'in a relaxed manner; not rigid'),\n",
+ " ('generally', 'without regard to specific details or exceptions')]},\n",
+ " {'answer': 'lots',\n",
+ " 'hint': 'synonyms for lots',\n",
+ " 'clues': [('much', 'to a very great degree or extent'),\n",
+ " ('a good deal', 'to a very great degree or extent'),\n",
+ " ('a lot', 'to a very great degree or extent'),\n",
+ " ('very much', 'to a very great degree or extent'),\n",
+ " ('a great deal', 'to a very great degree or extent')]},\n",
+ " {'answer': 'loudly',\n",
+ " 'hint': 'synonyms for loudly',\n",
+ " 'clues': [('forte',\n",
+ " 'used as a direction in music; to be played relatively loudly'),\n",
+ " ('loud', 'with relatively high volume'),\n",
+ " ('clamorously', 'in manner that attracts attention'),\n",
+ " ('obstreperously', 'in manner that attracts attention')]},\n",
+ " {'answer': 'madly',\n",
+ " 'hint': 'synonyms for madly',\n",
+ " 'clues': [('insanely', '(used as intensives) extremely'),\n",
+ " ('deucedly', '(used as intensives) extremely'),\n",
+ " ('devilishly', '(used as intensives) extremely'),\n",
+ " ('crazily', 'in an insane manner'),\n",
+ " ('frantically', 'in an uncontrolled manner'),\n",
+ " ('deadly', '(used as intensives) extremely'),\n",
+ " ('dementedly', 'in an insane manner')]},\n",
+ " {'answer': 'magnificently',\n",
+ " 'hint': 'synonyms for magnificently',\n",
+ " 'clues': [('gorgeously', 'in an impressively beautiful manner'),\n",
+ " ('splendidly', 'in an impressively beautiful manner'),\n",
+ " ('famously', 'extremely well'),\n",
+ " ('resplendently', 'in an impressively beautiful manner'),\n",
+ " ('excellently', 'extremely well')]},\n",
+ " {'answer': 'mainly',\n",
+ " 'hint': 'synonyms for mainly',\n",
+ " 'clues': [('primarily', 'for the most part'),\n",
+ " ('in the main', 'for the most part'),\n",
+ " ('principally', 'for the most part'),\n",
+ " ('chiefly', 'for the most part')]},\n",
+ " {'answer': 'manifestly',\n",
+ " 'hint': 'synonyms for manifestly',\n",
+ " 'clues': [('evidently',\n",
+ " \"unmistakably (`plain' is often used informally for `plainly')\"),\n",
+ " ('plainly',\n",
+ " \"unmistakably (`plain' is often used informally for `plainly')\"),\n",
+ " ('apparently',\n",
+ " \"unmistakably (`plain' is often used informally for `plainly')\"),\n",
+ " ('obviously',\n",
+ " \"unmistakably (`plain' is often used informally for `plainly')\"),\n",
+ " ('patently',\n",
+ " \"unmistakably (`plain' is often used informally for `plainly')\")]},\n",
+ " {'answer': 'marvellously',\n",
+ " 'hint': 'synonyms for marvellously',\n",
+ " 'clues': [('wonderfully', '(used as an intensifier) extremely well'),\n",
+ " ('terrifically', '(used as an intensifier) extremely well'),\n",
+ " ('marvelously', '(used as an intensifier) extremely well'),\n",
+ " ('wondrous', '(used as an intensifier) extremely well'),\n",
+ " ('toppingly', '(used as an intensifier) extremely well'),\n",
+ " ('superbly', '(used as an intensifier) extremely well')]},\n",
+ " {'answer': 'marvelously',\n",
+ " 'hint': 'synonyms for marvelously',\n",
+ " 'clues': [('wonderfully', '(used as an intensifier) extremely well'),\n",
+ " ('terrifically', '(used as an intensifier) extremely well'),\n",
+ " ('wondrous', '(used as an intensifier) extremely well'),\n",
+ " ('marvellously', '(used as an intensifier) extremely well'),\n",
+ " ('toppingly', '(used as an intensifier) extremely well'),\n",
+ " ('superbly', '(used as an intensifier) extremely well')]},\n",
+ " {'answer': 'maybe',\n",
+ " 'hint': 'synonyms for maybe',\n",
+ " 'clues': [('peradventure', 'by chance'),\n",
+ " ('possibly', 'by chance'),\n",
+ " ('perhaps', 'by chance'),\n",
+ " ('mayhap', 'by chance'),\n",
+ " ('perchance', 'by chance')]},\n",
+ " {'answer': 'mayhap',\n",
+ " 'hint': 'synonyms for mayhap',\n",
+ " 'clues': [('maybe', 'by chance'),\n",
+ " ('peradventure', 'by chance'),\n",
+ " ('possibly', 'by chance'),\n",
+ " ('perhaps', 'by chance'),\n",
+ " ('perchance', 'by chance')]},\n",
+ " {'answer': 'meanly',\n",
+ " 'hint': 'synonyms for meanly',\n",
+ " 'clues': [('basely', 'in a despicable, ignoble manner'),\n",
+ " ('nastily', 'in a nasty ill-tempered manner'),\n",
+ " ('humbly', 'in a miserly manner'),\n",
+ " ('scurvily', 'in a despicable, ignoble manner')]},\n",
+ " {'answer': 'merely',\n",
+ " 'hint': 'synonyms for merely',\n",
+ " 'clues': [('simply', 'and nothing more'),\n",
+ " ('but', 'and nothing more'),\n",
+ " ('only', 'and nothing more'),\n",
+ " ('just', 'and nothing more')]},\n",
+ " {'answer': 'merrily',\n",
+ " 'hint': 'synonyms for merrily',\n",
+ " 'clues': [('happily', 'in a joyous manner'),\n",
+ " ('blithely', 'in a joyous manner'),\n",
+ " ('mirthfully', 'in a joyous manner'),\n",
+ " ('jubilantly', 'in a joyous manner'),\n",
+ " ('gayly', 'in a joyous manner')]},\n",
+ " {'answer': 'mirthfully',\n",
+ " 'hint': 'synonyms for mirthfully',\n",
+ " 'clues': [('merrily', 'in a joyous manner'),\n",
+ " ('happily', 'in a joyous manner'),\n",
+ " ('blithely', 'in a joyous manner'),\n",
+ " ('jubilantly', 'in a joyous manner'),\n",
+ " ('gayly', 'in a joyous manner')]},\n",
+ " {'answer': 'mockingly',\n",
+ " 'hint': 'synonyms for mockingly',\n",
+ " 'clues': [('gibingly', 'in a disrespectful jeering manner'),\n",
+ " ('scoffingly', 'in a disrespectful and mocking manner'),\n",
+ " ('derisorily', 'in a disrespectful and mocking manner'),\n",
+ " ('jeeringly', 'in a disrespectful jeering manner'),\n",
+ " ('derisively', 'in a disrespectful and mocking manner')]},\n",
+ " {'answer': 'moderately',\n",
+ " 'hint': 'synonyms for moderately',\n",
+ " 'clues': [('somewhat', 'to a moderately sufficient extent or degree'),\n",
+ " ('passably', 'to a moderately sufficient extent or degree'),\n",
+ " ('middling', 'to a moderately sufficient extent or degree'),\n",
+ " ('pretty', 'to a moderately sufficient extent or degree'),\n",
+ " ('reasonably', 'to a moderately sufficient extent or degree'),\n",
+ " ('jolly', 'to a moderately sufficient extent or degree'),\n",
+ " ('fairly', 'to a moderately sufficient extent or degree')]},\n",
+ " {'answer': 'monstrously',\n",
+ " 'hint': 'synonyms for monstrously',\n",
+ " 'clues': [('grotesquely', 'in a grotesque manner'),\n",
+ " ('heinously', 'in a terribly evil manner'),\n",
+ " ('hideously', 'in a hideous manner'),\n",
+ " ('horridly', 'in a hideous manner')]},\n",
+ " {'answer': 'more_or_less',\n",
+ " 'hint': 'synonyms for more or less',\n",
+ " 'clues': [('roughly',\n",
+ " '(of quantities) imprecise but fairly close to correct'),\n",
+ " ('close to', '(of quantities) imprecise but fairly close to correct'),\n",
+ " ('just about', '(of quantities) imprecise but fairly close to correct'),\n",
+ " ('or so', '(of quantities) imprecise but fairly close to correct'),\n",
+ " ('somewhat', 'to a small degree or extent'),\n",
+ " ('around', '(of quantities) imprecise but fairly close to correct'),\n",
+ " ('approximately',\n",
+ " '(of quantities) imprecise but fairly close to correct'),\n",
+ " ('slightly', 'to a small degree or extent'),\n",
+ " ('about', '(of quantities) imprecise but fairly close to correct'),\n",
+ " ('some', '(of quantities) imprecise but fairly close to correct')]},\n",
+ " {'answer': 'mostly',\n",
+ " 'hint': 'synonyms for mostly',\n",
+ " 'clues': [('for the most part', 'in large part; mainly or chiefly'),\n",
+ " ('generally', 'usually; as a rule'),\n",
+ " ('by and large', 'usually; as a rule'),\n",
+ " ('largely', 'in large part; mainly or chiefly'),\n",
+ " ('more often than not', 'usually; as a rule')]},\n",
+ " {'answer': 'mulishly',\n",
+ " 'hint': 'synonyms for mulishly',\n",
+ " 'clues': [('stubbornly', 'in a stubborn unregenerate manner'),\n",
+ " ('obstinately', 'in a stubborn unregenerate manner'),\n",
+ " ('obdurately', 'in a stubborn unregenerate manner'),\n",
+ " ('pig-headedly', 'in a stubborn unregenerate manner'),\n",
+ " ('cussedly', 'in a stubborn unregenerate manner')]},\n",
+ " {'answer': 'namely',\n",
+ " 'hint': 'synonyms for namely',\n",
+ " 'clues': [('to wit', 'as follows'),\n",
+ " ('that is to say', 'as follows'),\n",
+ " ('viz.', 'as follows'),\n",
+ " ('videlicet', 'as follows')]},\n",
+ " {'answer': 'nearly',\n",
+ " 'hint': 'synonyms for nearly',\n",
+ " 'clues': [('nigh',\n",
+ " '(of actions or states) slightly short of or not quite accomplished; all but'),\n",
+ " ('almost',\n",
+ " '(of actions or states) slightly short of or not quite accomplished; all but'),\n",
+ " ('well-nigh',\n",
+ " '(of actions or states) slightly short of or not quite accomplished; all but'),\n",
+ " ('most',\n",
+ " '(of actions or states) slightly short of or not quite accomplished; all but'),\n",
+ " ('intimately', 'in a close manner'),\n",
+ " ('near',\n",
+ " '(of actions or states) slightly short of or not quite accomplished; all but'),\n",
+ " ('about',\n",
+ " '(of actions or states) slightly short of or not quite accomplished; all but'),\n",
+ " ('closely', 'in a close manner'),\n",
+ " ('virtually',\n",
+ " '(of actions or states) slightly short of or not quite accomplished; all but')]},\n",
+ " {'answer': 'necessarily',\n",
+ " 'hint': 'synonyms for necessarily',\n",
+ " 'clues': [('needfully', 'in an essential manner'),\n",
+ " ('of necessity', 'in such a manner as could not be otherwise'),\n",
+ " ('inevitably', 'in such a manner as could not be otherwise'),\n",
+ " ('needs', 'in such a manner as could not be otherwise')]},\n",
+ " {'answer': 'nevertheless',\n",
+ " 'hint': 'synonyms for nevertheless',\n",
+ " 'clues': [('even so',\n",
+ " 'despite anything to the contrary (usually following a concession)'),\n",
+ " ('all the same',\n",
+ " 'despite anything to the contrary (usually following a concession)'),\n",
+ " ('yet',\n",
+ " 'despite anything to the contrary (usually following a concession)'),\n",
+ " ('withal',\n",
+ " 'despite anything to the contrary (usually following a concession)'),\n",
+ " ('nonetheless',\n",
+ " 'despite anything to the contrary (usually following a concession)'),\n",
+ " ('notwithstanding',\n",
+ " 'despite anything to the contrary (usually following a concession)'),\n",
+ " ('still',\n",
+ " 'despite anything to the contrary (usually following a concession)'),\n",
+ " ('however',\n",
+ " 'despite anything to the contrary (usually following a concession)')]},\n",
+ " {'answer': 'nonetheless',\n",
+ " 'hint': 'synonyms for nonetheless',\n",
+ " 'clues': [('even so',\n",
+ " 'despite anything to the contrary (usually following a concession)'),\n",
+ " ('all the same',\n",
+ " 'despite anything to the contrary (usually following a concession)'),\n",
+ " ('yet',\n",
+ " 'despite anything to the contrary (usually following a concession)'),\n",
+ " ('withal',\n",
+ " 'despite anything to the contrary (usually following a concession)'),\n",
+ " ('nevertheless',\n",
+ " 'despite anything to the contrary (usually following a concession)'),\n",
+ " ('notwithstanding',\n",
+ " 'despite anything to the contrary (usually following a concession)'),\n",
+ " ('still',\n",
+ " 'despite anything to the contrary (usually following a concession)'),\n",
+ " ('however',\n",
+ " 'despite anything to the contrary (usually following a concession)')]},\n",
+ " {'answer': 'normally',\n",
+ " 'hint': 'synonyms for normally',\n",
+ " 'clues': [('unremarkably', 'under normal conditions'),\n",
+ " ('usually', 'under normal conditions'),\n",
+ " ('ordinarily', 'under normal conditions'),\n",
+ " ('commonly', 'under normal conditions')]},\n",
+ " {'answer': 'notwithstanding',\n",
+ " 'hint': 'synonyms for notwithstanding',\n",
+ " 'clues': [('even so',\n",
+ " 'despite anything to the contrary (usually following a concession)'),\n",
+ " ('all the same',\n",
+ " 'despite anything to the contrary (usually following a concession)'),\n",
+ " ('yet',\n",
+ " 'despite anything to the contrary (usually following a concession)'),\n",
+ " ('withal',\n",
+ " 'despite anything to the contrary (usually following a concession)'),\n",
+ " ('nonetheless',\n",
+ " 'despite anything to the contrary (usually following a concession)'),\n",
+ " ('nevertheless',\n",
+ " 'despite anything to the contrary (usually following a concession)'),\n",
+ " ('still',\n",
+ " 'despite anything to the contrary (usually following a concession)'),\n",
+ " ('however',\n",
+ " 'despite anything to the contrary (usually following a concession)')]},\n",
+ " {'answer': 'now',\n",
+ " 'hint': 'synonyms for now',\n",
+ " 'clues': [('right away',\n",
+ " 'without delay or hesitation; with no time intervening'),\n",
+ " ('forthwith', 'without delay or hesitation; with no time intervening'),\n",
+ " ('directly', 'without delay or hesitation; with no time intervening'),\n",
+ " ('like a shot', 'without delay or hesitation; with no time intervening'),\n",
+ " ('at present', 'at the present moment'),\n",
+ " ('at once', 'without delay or hesitation; with no time intervening'),\n",
+ " ('today', 'in these times; - Nancy Mitford'),\n",
+ " ('nowadays', 'in these times; - Nancy Mitford'),\n",
+ " ('straight off', 'without delay or hesitation; with no time intervening'),\n",
+ " ('immediately', 'without delay or hesitation; with no time intervening'),\n",
+ " ('instantly', 'without delay or hesitation; with no time intervening'),\n",
+ " ('straightaway',\n",
+ " 'without delay or hesitation; with no time intervening')]},\n",
+ " {'answer': 'now_and_again',\n",
+ " 'hint': 'synonyms for now and again',\n",
+ " 'clues': [('occasionally', 'now and then or here and there'),\n",
+ " ('at times', 'now and then or here and there'),\n",
+ " ('on occasion', 'now and then or here and there'),\n",
+ " ('now and then', 'now and then or here and there'),\n",
+ " ('once in a while', 'now and then or here and there'),\n",
+ " ('from time to time', 'now and then or here and there')]},\n",
+ " {'answer': 'now_and_then',\n",
+ " 'hint': 'synonyms for now and then',\n",
+ " 'clues': [('occasionally', 'now and then or here and there'),\n",
+ " ('at times', 'now and then or here and there'),\n",
+ " ('on occasion', 'now and then or here and there'),\n",
+ " ('once in a while', 'now and then or here and there'),\n",
+ " ('now and again', 'now and then or here and there'),\n",
+ " ('from time to time', 'now and then or here and there')]},\n",
+ " {'answer': 'nuttily',\n",
+ " 'hint': 'synonyms for nuttily',\n",
+ " 'clues': [('dottily', 'in a mildly insane manner'),\n",
+ " ('daftly', 'in a mildly insane manner'),\n",
+ " ('wackily', 'in a mildly insane manner'),\n",
+ " ('balmily', 'in a mildly insane manner')]},\n",
+ " {'answer': 'obdurately',\n",
+ " 'hint': 'synonyms for obdurately',\n",
+ " 'clues': [('stubbornly', 'in a stubborn unregenerate manner'),\n",
+ " ('obstinately', 'in a stubborn unregenerate manner'),\n",
+ " ('cussedly', 'in a stubborn unregenerate manner'),\n",
+ " ('pig-headedly', 'in a stubborn unregenerate manner'),\n",
+ " ('mulishly', 'in a stubborn unregenerate manner')]},\n",
+ " {'answer': 'obliquely',\n",
+ " 'hint': 'synonyms for obliquely',\n",
+ " 'clues': [('aslant', 'at an oblique angle'),\n",
+ " ('athwart', 'at an oblique angle'),\n",
+ " ('sidelong', 'to, toward or at one side'),\n",
+ " ('sideways', 'to, toward or at one side')]},\n",
+ " {'answer': 'obstinately',\n",
+ " 'hint': 'synonyms for obstinately',\n",
+ " 'clues': [('stubbornly', 'in a stubborn unregenerate manner'),\n",
+ " ('cussedly', 'in a stubborn unregenerate manner'),\n",
+ " ('pig-headedly', 'in a stubborn unregenerate manner'),\n",
+ " ('mulishly', 'in a stubborn unregenerate manner'),\n",
+ " ('obdurately', 'in a stubborn unregenerate manner')]},\n",
+ " {'answer': 'obviously',\n",
+ " 'hint': 'synonyms for obviously',\n",
+ " 'clues': [('evidently',\n",
+ " \"unmistakably (`plain' is often used informally for `plainly')\"),\n",
+ " ('manifestly',\n",
+ " \"unmistakably (`plain' is often used informally for `plainly')\"),\n",
+ " ('plainly',\n",
+ " \"unmistakably (`plain' is often used informally for `plainly')\"),\n",
+ " ('apparently',\n",
+ " \"unmistakably (`plain' is often used informally for `plainly')\"),\n",
+ " ('patently',\n",
+ " \"unmistakably (`plain' is often used informally for `plainly')\")]},\n",
+ " {'answer': 'occasionally',\n",
+ " 'hint': 'synonyms for occasionally',\n",
+ " 'clues': [('at times', 'now and then or here and there'),\n",
+ " ('on occasion', 'now and then or here and there'),\n",
+ " ('now and then', 'now and then or here and there'),\n",
+ " ('once in a while', 'now and then or here and there'),\n",
+ " ('now and again', 'now and then or here and there'),\n",
+ " ('from time to time', 'now and then or here and there')]},\n",
+ " {'answer': 'oddly',\n",
+ " 'hint': 'synonyms for oddly',\n",
+ " 'clues': [('peculiarly',\n",
+ " 'in a manner differing from the usual or expected'),\n",
+ " ('strangely', 'in a strange manner'),\n",
+ " ('curiously', 'in a manner differing from the usual or expected'),\n",
+ " ('queerly', 'in a strange manner'),\n",
+ " ('funnily', 'in a strange manner')]},\n",
+ " {'answer': 'often',\n",
+ " 'hint': 'synonyms for often',\n",
+ " 'clues': [('oft', 'many times at short intervals'),\n",
+ " ('a great deal', 'frequently or in great quantities'),\n",
+ " ('ofttimes', 'many times at short intervals'),\n",
+ " ('frequently', 'many times at short intervals'),\n",
+ " ('much', 'frequently or in great quantities')]},\n",
+ " {'answer': 'oftentimes',\n",
+ " 'hint': 'synonyms for oftentimes',\n",
+ " 'clues': [('oft', 'many times at short intervals'),\n",
+ " ('frequently', 'many times at short intervals'),\n",
+ " ('ofttimes', 'many times at short intervals'),\n",
+ " ('often', 'many times at short intervals')]},\n",
+ " {'answer': 'ofttimes',\n",
+ " 'hint': 'synonyms for ofttimes',\n",
+ " 'clues': [('oft', 'many times at short intervals'),\n",
+ " ('frequently', 'many times at short intervals'),\n",
+ " ('oftentimes', 'many times at short intervals'),\n",
+ " ('often', 'many times at short intervals')]},\n",
+ " {'answer': 'on_an_individual_basis',\n",
+ " 'hint': 'synonyms for on an individual basis',\n",
+ " 'clues': [('severally', 'apart from others'),\n",
+ " ('one by one', 'apart from others'),\n",
+ " ('individually', 'apart from others'),\n",
+ " ('singly', 'apart from others'),\n",
+ " ('separately', 'apart from others')]},\n",
+ " {'answer': 'on_occasion',\n",
+ " 'hint': 'synonyms for on occasion',\n",
+ " 'clues': [('occasionally', 'now and then or here and there'),\n",
+ " ('at times', 'now and then or here and there'),\n",
+ " ('now and then', 'now and then or here and there'),\n",
+ " ('once in a while', 'now and then or here and there'),\n",
+ " ('now and again', 'now and then or here and there'),\n",
+ " ('from time to time', 'now and then or here and there')]},\n",
+ " {'answer': 'on_purpose',\n",
+ " 'hint': 'synonyms for on purpose',\n",
+ " 'clues': [('purposely', 'with intention; in an intentional manner'),\n",
+ " ('intentionally', 'with intention; in an intentional manner'),\n",
+ " ('by choice', 'with intention; in an intentional manner'),\n",
+ " ('advisedly', 'with intention; in an intentional manner'),\n",
+ " ('deliberately', 'with intention; in an intentional manner'),\n",
+ " ('designedly', 'with intention; in an intentional manner'),\n",
+ " ('by design', 'with intention; in an intentional manner')]},\n",
+ " {'answer': 'on_the_dot',\n",
+ " 'hint': 'synonyms for on the dot',\n",
+ " 'clues': [('precisely', 'just as it should be'),\n",
+ " ('on the nose', 'just as it should be'),\n",
+ " ('exactly', 'just as it should be'),\n",
+ " ('on the button', 'just as it should be')]},\n",
+ " {'answer': 'once',\n",
+ " 'hint': 'synonyms for once',\n",
+ " 'clues': [('at one time', 'at a previous time'),\n",
+ " ('erstwhile', 'at a previous time'),\n",
+ " ('erst', 'at a previous time'),\n",
+ " ('in one case', 'on one occasion'),\n",
+ " ('one time', 'on one occasion'),\n",
+ " ('formerly', 'at a previous time')]},\n",
+ " {'answer': 'once_in_a_while',\n",
+ " 'hint': 'synonyms for once in a while',\n",
+ " 'clues': [('occasionally', 'now and then or here and there'),\n",
+ " ('at times', 'now and then or here and there'),\n",
+ " ('on occasion', 'now and then or here and there'),\n",
+ " ('now and then', 'now and then or here and there'),\n",
+ " ('now and again', 'now and then or here and there'),\n",
+ " ('from time to time', 'now and then or here and there')]},\n",
+ " {'answer': 'one_by_one',\n",
+ " 'hint': 'synonyms for one by one',\n",
+ " 'clues': [('by the piece', 'one piece at a time'),\n",
+ " ('one after another', 'in single file'),\n",
+ " ('separately', 'apart from others'),\n",
+ " ('individually', 'apart from others'),\n",
+ " ('severally', 'apart from others'),\n",
+ " ('on an individual basis', 'apart from others'),\n",
+ " ('singly', 'apart from others'),\n",
+ " ('one at a time', 'in single file')]},\n",
+ " {'answer': 'onward',\n",
+ " 'hint': 'synonyms for onward',\n",
+ " 'clues': [('forward', 'in a forward direction'),\n",
+ " ('onwards', 'in a forward direction'),\n",
+ " ('forth', 'forward in time or order or degree'),\n",
+ " ('forrader', 'in a forward direction'),\n",
+ " ('ahead', 'in a forward direction')]},\n",
+ " {'answer': 'onwards',\n",
+ " 'hint': 'synonyms for onwards',\n",
+ " 'clues': [('forward', 'in a forward direction'),\n",
+ " ('onward', 'in a forward direction'),\n",
+ " ('forrader', 'in a forward direction'),\n",
+ " ('ahead', 'in a forward direction')]},\n",
+ " {'answer': 'or_so',\n",
+ " 'hint': 'synonyms for or so',\n",
+ " 'clues': [('roughly',\n",
+ " '(of quantities) imprecise but fairly close to correct'),\n",
+ " ('close to', '(of quantities) imprecise but fairly close to correct'),\n",
+ " ('just about', '(of quantities) imprecise but fairly close to correct'),\n",
+ " ('more or less', '(of quantities) imprecise but fairly close to correct'),\n",
+ " ('around', '(of quantities) imprecise but fairly close to correct'),\n",
+ " ('approximately',\n",
+ " '(of quantities) imprecise but fairly close to correct'),\n",
+ " ('about', '(of quantities) imprecise but fairly close to correct'),\n",
+ " ('some', '(of quantities) imprecise but fairly close to correct')]},\n",
+ " {'answer': 'ordinarily',\n",
+ " 'hint': 'synonyms for ordinarily',\n",
+ " 'clues': [('unremarkably', 'under normal conditions'),\n",
+ " ('normally', 'under normal conditions'),\n",
+ " ('usually', 'under normal conditions'),\n",
+ " ('commonly', 'under normal conditions')]},\n",
+ " {'answer': 'originally',\n",
+ " 'hint': 'synonyms for originally',\n",
+ " 'clues': [('in the beginning',\n",
+ " 'with reference to the origin or beginning'),\n",
+ " ('earlier', 'before now'),\n",
+ " ('in the first place', 'before now'),\n",
+ " ('to begin with', 'before now'),\n",
+ " ('primitively', 'with reference to the origin or beginning')]},\n",
+ " {'answer': 'over_and_over',\n",
+ " 'hint': 'synonyms for over and over',\n",
+ " 'clues': [('time and again', 'repeatedly'),\n",
+ " ('again and again', 'repeatedly'),\n",
+ " ('over and over again', 'repeatedly'),\n",
+ " ('time and time again', 'repeatedly')]},\n",
+ " {'answer': 'over_and_over_again',\n",
+ " 'hint': 'synonyms for over and over again',\n",
+ " 'clues': [('time and again', 'repeatedly'),\n",
+ " ('again and again', 'repeatedly'),\n",
+ " ('over and over', 'repeatedly'),\n",
+ " ('time and time again', 'repeatedly')]},\n",
+ " {'answer': 'p.a.',\n",
+ " 'hint': 'synonyms for p.a.',\n",
+ " 'clues': [('annually',\n",
+ " 'by the year; every year (usually with reference to a sum of money paid or received)'),\n",
+ " ('per annum',\n",
+ " 'by the year; every year (usually with reference to a sum of money paid or received)'),\n",
+ " ('each year',\n",
+ " 'by the year; every year (usually with reference to a sum of money paid or received)'),\n",
+ " ('per year',\n",
+ " 'by the year; every year (usually with reference to a sum of money paid or received)')]},\n",
+ " {'answer': 'passably',\n",
+ " 'hint': 'synonyms for passably',\n",
+ " 'clues': [('somewhat', 'to a moderately sufficient extent or degree'),\n",
+ " ('reasonably', 'to a moderately sufficient extent or degree'),\n",
+ " ('middling', 'to a moderately sufficient extent or degree'),\n",
+ " ('pretty', 'to a moderately sufficient extent or degree'),\n",
+ " ('moderately', 'to a moderately sufficient extent or degree'),\n",
+ " ('jolly', 'to a moderately sufficient extent or degree'),\n",
+ " ('fairly', 'to a moderately sufficient extent or degree')]},\n",
+ " {'answer': 'patently',\n",
+ " 'hint': 'synonyms for patently',\n",
+ " 'clues': [('evidently',\n",
+ " \"unmistakably (`plain' is often used informally for `plainly')\"),\n",
+ " ('manifestly',\n",
+ " \"unmistakably (`plain' is often used informally for `plainly')\"),\n",
+ " ('plainly',\n",
+ " \"unmistakably (`plain' is often used informally for `plainly')\"),\n",
+ " ('apparently',\n",
+ " \"unmistakably (`plain' is often used informally for `plainly')\"),\n",
+ " ('obviously',\n",
+ " \"unmistakably (`plain' is often used informally for `plainly')\")]},\n",
+ " {'answer': 'peculiarly',\n",
+ " 'hint': 'synonyms for peculiarly',\n",
+ " 'clues': [('particularly',\n",
+ " 'to a distinctly greater extent or degree than is common'),\n",
+ " ('oddly', 'in a manner differing from the usual or expected'),\n",
+ " ('curiously', 'in a manner differing from the usual or expected'),\n",
+ " ('especially',\n",
+ " 'to a distinctly greater extent or degree than is common')]},\n",
+ " {'answer': 'per_annum',\n",
+ " 'hint': 'synonyms for per annum',\n",
+ " 'clues': [('annually',\n",
+ " 'by the year; every year (usually with reference to a sum of money paid or received)'),\n",
+ " ('p.a.',\n",
+ " 'by the year; every year (usually with reference to a sum of money paid or received)'),\n",
+ " ('each year',\n",
+ " 'by the year; every year (usually with reference to a sum of money paid or received)'),\n",
+ " ('per year',\n",
+ " 'by the year; every year (usually with reference to a sum of money paid or received)')]},\n",
+ " {'answer': 'per_year',\n",
+ " 'hint': 'synonyms for per year',\n",
+ " 'clues': [('annually',\n",
+ " 'by the year; every year (usually with reference to a sum of money paid or received)'),\n",
+ " ('per annum',\n",
+ " 'by the year; every year (usually with reference to a sum of money paid or received)'),\n",
+ " ('p.a.',\n",
+ " 'by the year; every year (usually with reference to a sum of money paid or received)'),\n",
+ " ('each year',\n",
+ " 'by the year; every year (usually with reference to a sum of money paid or received)')]},\n",
+ " {'answer': 'peradventure',\n",
+ " 'hint': 'synonyms for peradventure',\n",
+ " 'clues': [('maybe', 'by chance'),\n",
+ " ('possibly', 'by chance'),\n",
+ " ('perhaps', 'by chance'),\n",
+ " ('mayhap', 'by chance'),\n",
+ " ('perchance', 'by chance')]},\n",
+ " {'answer': 'perchance',\n",
+ " 'hint': 'synonyms for perchance',\n",
+ " 'clues': [('maybe', 'by chance'),\n",
+ " ('peradventure', 'by chance'),\n",
+ " ('possibly', 'by chance'),\n",
+ " ('by chance', 'through chance,'),\n",
+ " ('perhaps', 'by chance'),\n",
+ " ('mayhap', 'by chance')]},\n",
+ " {'answer': 'perhaps',\n",
+ " 'hint': 'synonyms for perhaps',\n",
+ " 'clues': [('maybe', 'by chance'),\n",
+ " ('peradventure', 'by chance'),\n",
+ " ('possibly', 'by chance'),\n",
+ " ('mayhap', 'by chance'),\n",
+ " ('perchance', 'by chance')]},\n",
+ " {'answer': 'perpetually',\n",
+ " 'hint': 'synonyms for perpetually',\n",
+ " 'clues': [('constantly', 'without interruption'),\n",
+ " ('forever', 'without interruption'),\n",
+ " ('incessantly', 'without interruption'),\n",
+ " ('always', 'without interruption')]},\n",
+ " {'answer': 'pertly',\n",
+ " 'hint': 'synonyms for pertly',\n",
+ " 'clues': [('impertinently', 'in an impudent or impertinent manner'),\n",
+ " ('impudently', 'in an impudent or impertinent manner'),\n",
+ " ('saucily', 'in an impudent or impertinent manner'),\n",
+ " ('freshly', 'in an impudent or impertinent manner')]},\n",
+ " {'answer': 'pig-headedly',\n",
+ " 'hint': 'synonyms for pig-headedly',\n",
+ " 'clues': [('stubbornly', 'in a stubborn unregenerate manner'),\n",
+ " ('obstinately', 'in a stubborn unregenerate manner'),\n",
+ " ('cussedly', 'in a stubborn unregenerate manner'),\n",
+ " ('mulishly', 'in a stubborn unregenerate manner'),\n",
+ " ('obdurately', 'in a stubborn unregenerate manner')]},\n",
+ " {'answer': 'plainly',\n",
+ " 'hint': 'synonyms for plainly',\n",
+ " 'clues': [('evidently',\n",
+ " \"unmistakably (`plain' is often used informally for `plainly')\"),\n",
+ " ('manifestly',\n",
+ " \"unmistakably (`plain' is often used informally for `plainly')\"),\n",
+ " ('apparently',\n",
+ " \"unmistakably (`plain' is often used informally for `plainly')\"),\n",
+ " ('obviously',\n",
+ " \"unmistakably (`plain' is often used informally for `plainly')\"),\n",
+ " ('patently',\n",
+ " \"unmistakably (`plain' is often used informally for `plainly')\"),\n",
+ " ('plain',\n",
+ " \"unmistakably (`plain' is often used informally for `plainly')\"),\n",
+ " ('simply', 'in a simple manner; without extravagance or embellishment')]},\n",
+ " {'answer': 'pleadingly',\n",
+ " 'hint': 'synonyms for pleadingly',\n",
+ " 'clues': [('importunately', 'in a beseeching manner'),\n",
+ " ('beseechingly', 'in a beseeching manner'),\n",
+ " ('imploringly', 'in a beseeching manner'),\n",
+ " ('entreatingly', 'in a beseeching manner')]},\n",
+ " {'answer': 'pleasantly',\n",
+ " 'hint': 'synonyms for pleasantly',\n",
+ " 'clues': [('cheerily', 'in a cheerful manner'),\n",
+ " ('sunnily', 'in a cheerful manner'),\n",
+ " ('agreeably', 'in an enjoyable manner'),\n",
+ " ('enjoyably', 'in an enjoyable manner')]},\n",
+ " {'answer': 'possibly',\n",
+ " 'hint': 'synonyms for possibly',\n",
+ " 'clues': [('maybe', 'by chance'),\n",
+ " ('peradventure', 'by chance'),\n",
+ " ('perhaps', 'by chance'),\n",
+ " ('mayhap', 'by chance'),\n",
+ " ('perchance', 'by chance')]},\n",
+ " {'answer': 'precisely',\n",
+ " 'hint': 'synonyms for precisely',\n",
+ " 'clues': [('on the nose', 'just as it should be'),\n",
+ " ('exactly', 'just as it should be'),\n",
+ " ('on the button', 'just as it should be'),\n",
+ " ('just', 'indicating exactness or preciseness'),\n",
+ " ('on the dot', 'just as it should be'),\n",
+ " ('incisively', 'in a precise manner')]},\n",
+ " {'answer': 'presently',\n",
+ " 'hint': 'synonyms for presently',\n",
+ " 'clues': [('before long', 'in the near future'),\n",
+ " ('shortly', 'in the near future'),\n",
+ " ('currently', 'at this time or period; now'),\n",
+ " ('soon', 'in the near future')]},\n",
+ " {'answer': 'primarily',\n",
+ " 'hint': 'synonyms for primarily',\n",
+ " 'clues': [('principally', 'for the most part'),\n",
+ " ('chiefly', 'for the most part'),\n",
+ " ('in the first place', 'of primary import'),\n",
+ " ('in the main', 'for the most part'),\n",
+ " ('mainly', 'for the most part')]},\n",
+ " {'answer': 'principally',\n",
+ " 'hint': 'synonyms for principally',\n",
+ " 'clues': [('primarily', 'for the most part'),\n",
+ " ('in the main', 'for the most part'),\n",
+ " ('chiefly', 'for the most part'),\n",
+ " ('mainly', 'for the most part')]},\n",
+ " {'answer': 'probably',\n",
+ " 'hint': 'synonyms for probably',\n",
+ " 'clues': [('believably',\n",
+ " 'easy to believe on the basis of available evidence'),\n",
+ " ('credibly', 'easy to believe on the basis of available evidence'),\n",
+ " ('in all probability', 'with considerable certainty; without much doubt'),\n",
+ " ('likely', 'with considerable certainty; without much doubt'),\n",
+ " ('belike', 'with considerable certainty; without much doubt'),\n",
+ " ('plausibly', 'easy to believe on the basis of available evidence'),\n",
+ " ('in all likelihood',\n",
+ " 'with considerable certainty; without much doubt')]},\n",
+ " {'answer': 'promptly',\n",
+ " 'hint': 'synonyms for promptly',\n",
+ " 'clues': [('right away',\n",
+ " 'at once (usually modifies an undesirable occurrence)'),\n",
+ " ('quick', 'with little or no delay'),\n",
+ " ('pronto', 'in a punctual manner'),\n",
+ " ('readily', 'in a punctual manner')]},\n",
+ " {'answer': 'properly',\n",
+ " 'hint': 'synonyms for properly',\n",
+ " 'clues': [('decent', 'in the right manner'),\n",
+ " ('by rights', 'with reason or justice'),\n",
+ " ('right', 'in the right manner'),\n",
+ " ('in good order', 'in the right manner'),\n",
+ " ('the right way', 'in the right manner')]},\n",
+ " {'answer': 'purposely',\n",
+ " 'hint': 'synonyms for purposely',\n",
+ " 'clues': [('intentionally', 'with intention; in an intentional manner'),\n",
+ " ('on purpose', 'with intention; in an intentional manner'),\n",
+ " ('by choice', 'with intention; in an intentional manner'),\n",
+ " ('advisedly', 'with intention; in an intentional manner'),\n",
+ " ('deliberately', 'with intention; in an intentional manner'),\n",
+ " ('designedly', 'with intention; in an intentional manner'),\n",
+ " ('by design', 'with intention; in an intentional manner')]},\n",
+ " {'answer': 'queerly',\n",
+ " 'hint': 'synonyms for queerly',\n",
+ " 'clues': [('fishily', 'in a questionably unusual manner'),\n",
+ " ('oddly', 'in a strange manner'),\n",
+ " ('strangely', 'in a strange manner'),\n",
+ " ('funnily', 'in a strange manner')]},\n",
+ " {'answer': 'quickly',\n",
+ " 'hint': 'synonyms for quickly',\n",
+ " 'clues': [('promptly', 'with little or no delay'),\n",
+ " ('quick', 'with little or no delay'),\n",
+ " ('apace', 'with rapid movements'),\n",
+ " ('speedily', 'with rapid movements'),\n",
+ " ('cursorily', 'without taking pains'),\n",
+ " ('rapidly', 'with rapid movements'),\n",
+ " ('chop-chop', 'with rapid movements')]},\n",
+ " {'answer': 'randomly',\n",
+ " 'hint': 'synonyms for randomly',\n",
+ " 'clues': [('at random', 'in a random manner'),\n",
+ " ('every which way', 'in a random manner'),\n",
+ " ('indiscriminately', 'in a random manner'),\n",
+ " ('arbitrarily', 'in a random manner'),\n",
+ " ('willy-nilly', 'in a random manner'),\n",
+ " ('haphazardly', 'in a random manner')]},\n",
+ " {'answer': 'rapidly',\n",
+ " 'hint': 'synonyms for rapidly',\n",
+ " 'clues': [('apace', 'with rapid movements'),\n",
+ " ('quickly', 'with rapid movements'),\n",
+ " ('speedily', 'with rapid movements'),\n",
+ " ('chop-chop', 'with rapid movements')]},\n",
+ " {'answer': 'rather',\n",
+ " 'hint': 'synonyms for rather',\n",
+ " 'clues': [('sooner', 'more readily or willingly'),\n",
+ " ('quite', 'to a degree (not used with a negative)'),\n",
+ " ('kinda', 'to some (great or small) extent'),\n",
+ " ('preferably', 'more readily or willingly'),\n",
+ " ('kind of', 'to some (great or small) extent'),\n",
+ " ('instead', 'on the contrary'),\n",
+ " ('sort of', 'to some (great or small) extent')]},\n",
+ " {'answer': 'really',\n",
+ " 'hint': 'synonyms for really',\n",
+ " 'clues': [('truly',\n",
+ " 'in fact (used as intensifiers or sentence modifiers)'),\n",
+ " ('real',\n",
+ " \"used as intensifiers; `real' is sometimes used informally for `really'; `rattling' is informal\"),\n",
+ " ('in truth', 'in fact (used as intensifiers or sentence modifiers)'),\n",
+ " ('genuinely', 'in accordance with truth or fact or reality'),\n",
+ " ('very',\n",
+ " \"used as intensifiers; `real' is sometimes used informally for `really'; `rattling' is informal\"),\n",
+ " ('rattling',\n",
+ " \"used as intensifiers; `real' is sometimes used informally for `really'; `rattling' is informal\"),\n",
+ " ('actually', 'in actual fact')]},\n",
+ " {'answer': 'reasonably',\n",
+ " 'hint': 'synonyms for reasonably',\n",
+ " 'clues': [('somewhat', 'to a moderately sufficient extent or degree'),\n",
+ " ('sensibly', 'with good sense or in a reasonable or intelligent manner'),\n",
+ " ('moderately', 'to a moderately sufficient extent or degree'),\n",
+ " ('jolly', 'to a moderately sufficient extent or degree'),\n",
+ " ('passably', 'to a moderately sufficient extent or degree'),\n",
+ " ('middling', 'to a moderately sufficient extent or degree'),\n",
+ " ('pretty', 'to a moderately sufficient extent or degree'),\n",
+ " ('fairly', 'to a moderately sufficient extent or degree'),\n",
+ " ('sanely', 'with good sense or in a reasonable or intelligent manner')]},\n",
+ " {'answer': 'remarkably',\n",
+ " 'hint': 'synonyms for remarkably',\n",
+ " 'clues': [('outstandingly', 'to a remarkable degree or extent'),\n",
+ " ('signally', 'in a signal manner'),\n",
+ " ('unusually', 'to a remarkable degree or extent'),\n",
+ " ('unco', 'to a remarkable degree or extent'),\n",
+ " ('unmistakably', 'in a signal manner')]},\n",
+ " {'answer': 'richly',\n",
+ " 'hint': 'synonyms for richly',\n",
+ " 'clues': [('amply', 'to an ample degree or in an ample manner'),\n",
+ " ('extravagantly', 'in a rich and lavish manner'),\n",
+ " ('lavishly', 'in a rich and lavish manner'),\n",
+ " ('high', 'in a rich manner'),\n",
+ " ('luxuriously', 'in a rich manner')]},\n",
+ " {'answer': 'right_away',\n",
+ " 'hint': 'synonyms for right away',\n",
+ " 'clues': [('now', 'without delay or hesitation; with no time intervening'),\n",
+ " ('promptly', 'at once (usually modifies an undesirable occurrence)'),\n",
+ " ('forthwith', 'without delay or hesitation; with no time intervening'),\n",
+ " ('directly', 'without delay or hesitation; with no time intervening'),\n",
+ " ('like a shot', 'without delay or hesitation; with no time intervening'),\n",
+ " ('at once', 'without delay or hesitation; with no time intervening'),\n",
+ " ('straight off', 'without delay or hesitation; with no time intervening'),\n",
+ " ('immediately', 'without delay or hesitation; with no time intervening'),\n",
+ " ('instantly', 'without delay or hesitation; with no time intervening'),\n",
+ " ('straightaway',\n",
+ " 'without delay or hesitation; with no time intervening')]},\n",
+ " {'answer': 'rottenly',\n",
+ " 'hint': 'synonyms for rottenly',\n",
+ " 'clues': [('abysmally', 'in a terrible manner'),\n",
+ " ('abominably', 'in a terrible manner'),\n",
+ " ('terribly', 'in a terrible manner'),\n",
+ " ('awfully', 'in a terrible manner'),\n",
+ " ('atrociously', 'in a terrible manner')]},\n",
+ " {'answer': 'roughly',\n",
+ " 'hint': 'synonyms for roughly',\n",
+ " 'clues': [('close to',\n",
+ " '(of quantities) imprecise but fairly close to correct'),\n",
+ " ('just about', '(of quantities) imprecise but fairly close to correct'),\n",
+ " ('or so', '(of quantities) imprecise but fairly close to correct'),\n",
+ " ('rough',\n",
+ " \"with roughness or violence (`rough' is an informal variant for `roughly')\"),\n",
+ " ('more or less', '(of quantities) imprecise but fairly close to correct'),\n",
+ " ('around', '(of quantities) imprecise but fairly close to correct'),\n",
+ " ('approximately',\n",
+ " '(of quantities) imprecise but fairly close to correct'),\n",
+ " ('about', '(of quantities) imprecise but fairly close to correct'),\n",
+ " ('some', '(of quantities) imprecise but fairly close to correct')]},\n",
+ " {'answer': 'roundly',\n",
+ " 'hint': 'synonyms for roundly',\n",
+ " 'clues': [('bluffly', 'in a blunt direct manner'),\n",
+ " ('flat out', 'in a blunt direct manner'),\n",
+ " ('bluntly', 'in a blunt direct manner'),\n",
+ " ('brusquely', 'in a blunt direct manner')]},\n",
+ " {'answer': 'sadly',\n",
+ " 'hint': 'synonyms for sadly',\n",
+ " 'clues': [('deplorably', 'in an unfortunate or deplorable manner'),\n",
+ " ('woefully', 'in an unfortunate or deplorable manner'),\n",
+ " ('lamentably', 'in an unfortunate or deplorable manner'),\n",
+ " ('unhappily', 'in an unfortunate way')]},\n",
+ " {'answer': 'sagaciously',\n",
+ " 'hint': 'synonyms for sagaciously',\n",
+ " 'clues': [('acutely', 'in a shrewd manner'),\n",
+ " ('astutely', 'in a shrewd manner'),\n",
+ " ('sapiently', 'in a shrewd manner'),\n",
+ " ('shrewdly', 'in a shrewd manner')]},\n",
+ " {'answer': 'sapiently',\n",
+ " 'hint': 'synonyms for sapiently',\n",
+ " 'clues': [('acutely', 'in a shrewd manner'),\n",
+ " ('sagaciously', 'in a shrewd manner'),\n",
+ " ('astutely', 'in a shrewd manner'),\n",
+ " ('shrewdly', 'in a shrewd manner')]},\n",
+ " {'answer': 'saucily',\n",
+ " 'hint': 'synonyms for saucily',\n",
+ " 'clues': [('impertinently', 'in an impudent or impertinent manner'),\n",
+ " ('impudently', 'in an impudent or impertinent manner'),\n",
+ " ('pertly', 'in an impudent or impertinent manner'),\n",
+ " ('freshly', 'in an impudent or impertinent manner')]},\n",
+ " {'answer': 'scarcely',\n",
+ " 'hint': 'synonyms for scarcely',\n",
+ " 'clues': [('hardly', 'only a very short time before; ; ; ; ; - W.B.Yeats'),\n",
+ " ('barely', 'only a very short time before; ; ; ; ; - W.B.Yeats'),\n",
+ " ('just', 'only a very short time before; ; ; ; ; - W.B.Yeats'),\n",
+ " ('scarce', 'only a very short time before; ; ; ; ; - W.B.Yeats')]},\n",
+ " {'answer': 'separately',\n",
+ " 'hint': 'synonyms for separately',\n",
+ " 'clues': [('severally', 'apart from others'),\n",
+ " ('one by one', 'apart from others'),\n",
+ " ('individually', 'apart from others'),\n",
+ " ('on an individual basis', 'apart from others'),\n",
+ " ('singly', 'apart from others')]},\n",
+ " {'answer': 'seriously',\n",
+ " 'hint': 'synonyms for seriously',\n",
+ " 'clues': [('in earnest', 'in a serious manner'),\n",
+ " ('severely', 'to a severe or serious degree'),\n",
+ " ('badly', 'to a severe or serious degree'),\n",
+ " ('gravely', 'to a severe or serious degree'),\n",
+ " ('earnestly', 'in a serious manner')]},\n",
+ " {'answer': 'severally',\n",
+ " 'hint': 'synonyms for severally',\n",
+ " 'clues': [('independently', 'apart from others'),\n",
+ " ('one by one', 'apart from others'),\n",
+ " ('individually', 'apart from others'),\n",
+ " ('on an individual basis', 'apart from others'),\n",
+ " ('respectively', 'in the order given'),\n",
+ " ('singly', 'apart from others'),\n",
+ " ('separately', 'apart from others')]},\n",
+ " {'answer': 'severely',\n",
+ " 'hint': 'synonyms for severely',\n",
+ " 'clues': [('sternly', 'with sternness; in a severe manner'),\n",
+ " ('hard', 'causing great damage or hardship'),\n",
+ " ('badly', 'to a severe or serious degree'),\n",
+ " ('gravely', 'to a severe or serious degree'),\n",
+ " ('seriously', 'to a severe or serious degree')]},\n",
+ " {'answer': 'shamefully',\n",
+ " 'hint': 'synonyms for shamefully',\n",
+ " 'clues': [('dishonorably',\n",
+ " 'in a dishonorable manner or to a dishonorable degree'),\n",
+ " ('ingloriously', 'in a dishonorable manner or to a dishonorable degree'),\n",
+ " ('discreditably', 'in a dishonorable manner or to a dishonorable degree'),\n",
+ " ('disgracefully', 'in a dishonorable manner or to a dishonorable degree'),\n",
+ " ('ignominiously',\n",
+ " 'in a dishonorable manner or to a dishonorable degree')]},\n",
+ " {'answer': 'sharply',\n",
+ " 'hint': 'synonyms for sharply',\n",
+ " 'clues': [('crisply', 'in a well delineated manner'),\n",
+ " ('sharp', 'changing suddenly in direction and degree'),\n",
+ " ('aggressively', 'in an aggressive manner'),\n",
+ " ('acutely', 'changing suddenly in direction and degree'),\n",
+ " ('precipitously', 'very suddenly and to a great degree')]},\n",
+ " {'answer': 'shortly',\n",
+ " 'hint': 'synonyms for shortly',\n",
+ " 'clues': [('presently', 'in the near future'),\n",
+ " ('short', 'in a curt, abrupt and discourteous manner'),\n",
+ " ('in brief', 'in a concise manner; in a few words'),\n",
+ " ('before long', 'in the near future'),\n",
+ " ('in short', 'in a concise manner; in a few words'),\n",
+ " ('concisely', 'in a concise manner; in a few words'),\n",
+ " ('curtly', 'in a curt, abrupt and discourteous manner'),\n",
+ " ('briefly', 'in a concise manner; in a few words'),\n",
+ " ('soon', 'in the near future')]},\n",
+ " {'answer': 'shrewdly',\n",
+ " 'hint': 'synonyms for shrewdly',\n",
+ " 'clues': [('acutely', 'in a shrewd manner'),\n",
+ " ('sagaciously', 'in a shrewd manner'),\n",
+ " ('astutely', 'in a shrewd manner'),\n",
+ " ('sapiently', 'in a shrewd manner')]},\n",
+ " {'answer': 'simply',\n",
+ " 'hint': 'synonyms for simply',\n",
+ " 'clues': [('just', 'absolutely'),\n",
+ " ('plainly', 'in a simple manner; without extravagance or embellishment'),\n",
+ " ('merely', 'and nothing more'),\n",
+ " ('but', 'and nothing more'),\n",
+ " ('only', 'and nothing more')]},\n",
+ " {'answer': 'singly',\n",
+ " 'hint': 'synonyms for singly',\n",
+ " 'clues': [('severally', 'apart from others'),\n",
+ " ('one by one', 'apart from others'),\n",
+ " ('individually', 'apart from others'),\n",
+ " ('on an individual basis', 'apart from others'),\n",
+ " ('separately', 'apart from others')]},\n",
+ " {'answer': 'slap',\n",
+ " 'hint': 'synonyms for slap',\n",
+ " 'clues': [('slapdash', 'directly'),\n",
+ " ('smack', 'directly'),\n",
+ " ('bolt', 'directly'),\n",
+ " ('bang', 'directly')]},\n",
+ " {'answer': 'slenderly',\n",
+ " 'hint': 'synonyms for slenderly',\n",
+ " 'clues': [('sparingly', 'to a meager degree or in a meager manner'),\n",
+ " ('meagerly', 'to a meager degree or in a meager manner'),\n",
+ " ('slimly', 'in a slim or slender manner'),\n",
+ " ('slightly', 'in a slim or slender manner')]},\n",
+ " {'answer': 'slightly',\n",
+ " 'hint': 'synonyms for slightly',\n",
+ " 'clues': [('slimly', 'in a slim or slender manner'),\n",
+ " ('more or less', 'to a small degree or extent'),\n",
+ " ('somewhat', 'to a small degree or extent'),\n",
+ " ('slenderly', 'in a slim or slender manner')]},\n",
+ " {'answer': 'slowly',\n",
+ " 'hint': 'synonyms for slowly',\n",
+ " 'clues': [('lento', 'in music'),\n",
+ " ('easy',\n",
+ " \"without speed (`slow' is sometimes used informally for `slowly')\"),\n",
+ " ('slow',\n",
+ " \"without speed (`slow' is sometimes used informally for `slowly')\"),\n",
+ " ('tardily',\n",
+ " \"without speed (`slow' is sometimes used informally for `slowly')\")]},\n",
+ " {'answer': 'slyly',\n",
+ " 'hint': 'synonyms for slyly',\n",
+ " 'clues': [('foxily', 'in an artful manner'),\n",
+ " ('craftily', 'in an artful manner'),\n",
+ " ('knavishly', 'in an artful manner'),\n",
+ " ('cunningly', 'in an artful manner'),\n",
+ " ('artfully', 'in an artful manner'),\n",
+ " ('trickily', 'in an artful manner')]},\n",
+ " {'answer': 'smack',\n",
+ " 'hint': 'synonyms for smack',\n",
+ " 'clues': [('slapdash', 'directly'),\n",
+ " ('bolt', 'directly'),\n",
+ " ('bang', 'directly'),\n",
+ " ('slap', 'directly')]},\n",
+ " {'answer': 'smartly',\n",
+ " 'hint': 'synonyms for smartly',\n",
+ " 'clues': [('sprucely', 'in a stylish manner'),\n",
+ " ('modishly', 'in a stylish manner'),\n",
+ " ('vigorously', 'with vigor; in a vigorous manner'),\n",
+ " ('cleverly', 'in a clever manner')]},\n",
+ " {'answer': 'so',\n",
+ " 'hint': 'synonyms for so',\n",
+ " 'clues': [('then',\n",
+ " 'subsequently or soon afterward (often used as sentence connectors)'),\n",
+ " ('therefore',\n",
+ " '(used to introduce a logical conclusion) from that fact or reason or as a result'),\n",
+ " ('hence',\n",
+ " '(used to introduce a logical conclusion) from that fact or reason or as a result'),\n",
+ " ('and so',\n",
+ " 'subsequently or soon afterward (often used as sentence connectors)'),\n",
+ " ('indeed', 'in truth (often tends to intensify)'),\n",
+ " ('thus',\n",
+ " '(used to introduce a logical conclusion) from that fact or reason or as a result'),\n",
+ " ('and then',\n",
+ " 'subsequently or soon afterward (often used as sentence connectors)')]},\n",
+ " {'answer': 'so_far',\n",
+ " 'hint': 'synonyms for so far',\n",
+ " 'clues': [('thus far',\n",
+ " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n",
+ " ('up to now',\n",
+ " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n",
+ " ('yet', 'used after a superlative'),\n",
+ " ('in so far', 'to the degree or extent that'),\n",
+ " ('to that extent', 'to the degree or extent that'),\n",
+ " ('til now',\n",
+ " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n",
+ " ('heretofore',\n",
+ " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n",
+ " ('to that degree', 'to the degree or extent that'),\n",
+ " ('hitherto',\n",
+ " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n",
+ " ('as yet',\n",
+ " 'used in negative statement to describe a situation that has existed up to this point or up to the present time')]},\n",
+ " {'answer': 'softly',\n",
+ " 'hint': 'synonyms for softly',\n",
+ " 'clues': [('lightly', 'with little weight or force'),\n",
+ " ('piano', 'used as a direction in music; to be played relatively softly'),\n",
+ " ('quietly', 'with low volume'),\n",
+ " ('gently', 'with little weight or force')]},\n",
+ " {'answer': 'solely',\n",
+ " 'hint': 'synonyms for solely',\n",
+ " 'clues': [('only', 'without any others being included or involved'),\n",
+ " ('exclusively', 'without any others being included or involved'),\n",
+ " ('alone', 'without any others being included or involved'),\n",
+ " ('entirely', 'without any others being included or involved')]},\n",
+ " {'answer': 'someway',\n",
+ " 'hint': 'synonyms for someway',\n",
+ " 'clues': [('in some manner',\n",
+ " 'in some unspecified way or manner; or by some unspecified means'),\n",
+ " ('in some way',\n",
+ " 'in some unspecified way or manner; or by some unspecified means'),\n",
+ " ('somehow',\n",
+ " 'in some unspecified way or manner; or by some unspecified means'),\n",
+ " ('someways',\n",
+ " 'in some unspecified way or manner; or by some unspecified means')]},\n",
+ " {'answer': 'someways',\n",
+ " 'hint': 'synonyms for someways',\n",
+ " 'clues': [('someway',\n",
+ " 'in some unspecified way or manner; or by some unspecified means'),\n",
+ " ('in some manner',\n",
+ " 'in some unspecified way or manner; or by some unspecified means'),\n",
+ " ('in some way',\n",
+ " 'in some unspecified way or manner; or by some unspecified means'),\n",
+ " ('somehow',\n",
+ " 'in some unspecified way or manner; or by some unspecified means')]},\n",
+ " {'answer': 'somewhat',\n",
+ " 'hint': 'synonyms for somewhat',\n",
+ " 'clues': [('more or less', 'to a small degree or extent'),\n",
+ " ('moderately', 'to a moderately sufficient extent or degree'),\n",
+ " ('jolly', 'to a moderately sufficient extent or degree'),\n",
+ " ('passably', 'to a moderately sufficient extent or degree'),\n",
+ " ('middling', 'to a moderately sufficient extent or degree'),\n",
+ " ('pretty', 'to a moderately sufficient extent or degree'),\n",
+ " ('reasonably', 'to a moderately sufficient extent or degree'),\n",
+ " ('slightly', 'to a small degree or extent'),\n",
+ " ('fairly', 'to a moderately sufficient extent or degree')]},\n",
+ " {'answer': 'speedily',\n",
+ " 'hint': 'synonyms for speedily',\n",
+ " 'clues': [('apace', 'with rapid movements'),\n",
+ " ('quickly', 'with rapid movements'),\n",
+ " ('rapidly', 'with rapid movements'),\n",
+ " ('chop-chop', 'with rapid movements')]},\n",
+ " {'answer': 'splendidly',\n",
+ " 'hint': 'synonyms for splendidly',\n",
+ " 'clues': [('gorgeously', 'in an impressively beautiful manner'),\n",
+ " ('magnificently', 'extremely well'),\n",
+ " ('famously', 'extremely well'),\n",
+ " ('resplendently', 'in an impressively beautiful manner'),\n",
+ " ('excellently', 'extremely well')]},\n",
+ " {'answer': 'squarely',\n",
+ " 'hint': 'synonyms for squarely',\n",
+ " 'clues': [('square', 'in a straight direct way'),\n",
+ " ('forthrightly', 'directly and without evasion; not roundabout'),\n",
+ " ('straightforwardly',\n",
+ " 'with firmness and conviction; without compromise; - C.G.Bowers'),\n",
+ " ('foursquare',\n",
+ " 'with firmness and conviction; without compromise; - C.G.Bowers')]},\n",
+ " {'answer': 'straight_off',\n",
+ " 'hint': 'synonyms for straight off',\n",
+ " 'clues': [('now', 'without delay or hesitation; with no time intervening'),\n",
+ " ('right away', 'without delay or hesitation; with no time intervening'),\n",
+ " ('forthwith', 'without delay or hesitation; with no time intervening'),\n",
+ " ('directly', 'without delay or hesitation; with no time intervening'),\n",
+ " ('like a shot', 'without delay or hesitation; with no time intervening'),\n",
+ " ('at once', 'without delay or hesitation; with no time intervening'),\n",
+ " ('immediately', 'without delay or hesitation; with no time intervening'),\n",
+ " ('instantly', 'without delay or hesitation; with no time intervening'),\n",
+ " ('straightaway',\n",
+ " 'without delay or hesitation; with no time intervening')]},\n",
+ " {'answer': 'stubbornly',\n",
+ " 'hint': 'synonyms for stubbornly',\n",
+ " 'clues': [('obstinately', 'in a stubborn unregenerate manner'),\n",
+ " ('cussedly', 'in a stubborn unregenerate manner'),\n",
+ " ('pig-headedly', 'in a stubborn unregenerate manner'),\n",
+ " ('mulishly', 'in a stubborn unregenerate manner'),\n",
+ " ('obdurately', 'in a stubborn unregenerate manner')]},\n",
+ " {'answer': 'subsequently',\n",
+ " 'hint': 'synonyms for subsequently',\n",
+ " 'clues': [('later', 'happening at a time subsequent to a reference time'),\n",
+ " ('afterward', 'happening at a time subsequent to a reference time'),\n",
+ " ('later on', 'happening at a time subsequent to a reference time'),\n",
+ " ('after', 'happening at a time subsequent to a reference time')]},\n",
+ " {'answer': 'suddenly',\n",
+ " 'hint': 'synonyms for suddenly',\n",
+ " 'clues': [('dead', 'quickly and without warning'),\n",
+ " ('short', 'quickly and without warning'),\n",
+ " ('all of a sudden', 'happening unexpectedly'),\n",
+ " ('abruptly', 'quickly and without warning'),\n",
+ " ('on the spur of the moment', 'on impulse; without premeditation'),\n",
+ " ('of a sudden', 'happening unexpectedly')]},\n",
+ " {'answer': 'superbly',\n",
+ " 'hint': 'synonyms for superbly',\n",
+ " 'clues': [('wonderfully', '(used as an intensifier) extremely well'),\n",
+ " ('terrifically', '(used as an intensifier) extremely well'),\n",
+ " ('marvelously', '(used as an intensifier) extremely well'),\n",
+ " ('wondrous', '(used as an intensifier) extremely well'),\n",
+ " ('toppingly', '(used as an intensifier) extremely well')]},\n",
+ " {'answer': 'sure_enough',\n",
+ " 'hint': 'synonyms for sure enough',\n",
+ " 'clues': [('sure as shooting',\n",
+ " \"definitely or positively (`sure' is sometimes used informally for `surely')\"),\n",
+ " ('sure',\n",
+ " \"definitely or positively (`sure' is sometimes used informally for `surely')\"),\n",
+ " ('for sure',\n",
+ " \"definitely or positively (`sure' is sometimes used informally for `surely')\"),\n",
+ " ('certainly',\n",
+ " \"definitely or positively (`sure' is sometimes used informally for `surely')\"),\n",
+ " ('for certain',\n",
+ " \"definitely or positively (`sure' is sometimes used informally for `surely')\")]},\n",
+ " {'answer': 'surely',\n",
+ " 'hint': 'synonyms for surely',\n",
+ " 'clues': [('sure as shooting',\n",
+ " \"definitely or positively (`sure' is sometimes used informally for `surely')\"),\n",
+ " ('sure',\n",
+ " \"definitely or positively (`sure' is sometimes used informally for `surely')\"),\n",
+ " ('for sure',\n",
+ " \"definitely or positively (`sure' is sometimes used informally for `surely')\"),\n",
+ " ('certainly',\n",
+ " \"definitely or positively (`sure' is sometimes used informally for `surely')\"),\n",
+ " ('for certain',\n",
+ " \"definitely or positively (`sure' is sometimes used informally for `surely')\"),\n",
+ " ('sure enough',\n",
+ " \"definitely or positively (`sure' is sometimes used informally for `surely')\")]},\n",
+ " {'answer': 'tardily',\n",
+ " 'hint': 'synonyms for tardily',\n",
+ " 'clues': [('slowly',\n",
+ " \"without speed (`slow' is sometimes used informally for `slowly')\"),\n",
+ " ('late', 'later than usual or than expected'),\n",
+ " ('easy',\n",
+ " \"without speed (`slow' is sometimes used informally for `slowly')\"),\n",
+ " ('belatedly', 'later than usual or than expected')]},\n",
+ " {'answer': 'terribly',\n",
+ " 'hint': 'synonyms for terribly',\n",
+ " 'clues': [('awfully', 'used as intensifiers'),\n",
+ " ('abysmally', 'in a terrible manner'),\n",
+ " ('atrociously', 'in a terrible manner'),\n",
+ " ('abominably', 'in a terrible manner'),\n",
+ " ('frightfully', 'used as intensifiers'),\n",
+ " ('rottenly', 'in a terrible manner')]},\n",
+ " {'answer': 'terrifically',\n",
+ " 'hint': 'synonyms for terrifically',\n",
+ " 'clues': [('wonderfully', '(used as an intensifier) extremely well'),\n",
+ " ('marvelously', '(used as an intensifier) extremely well'),\n",
+ " ('wondrous', '(used as an intensifier) extremely well'),\n",
+ " ('toppingly', '(used as an intensifier) extremely well'),\n",
+ " ('superbly', '(used as an intensifier) extremely well')]},\n",
+ " {'answer': 'that_is_to_say',\n",
+ " 'hint': 'synonyms for that is to say',\n",
+ " 'clues': [('to wit', 'as follows'),\n",
+ " ('viz.', 'as follows'),\n",
+ " ('namely', 'as follows'),\n",
+ " ('videlicet', 'as follows')]},\n",
+ " {'answer': 'the_right_way',\n",
+ " 'hint': 'synonyms for the right way',\n",
+ " 'clues': [('decent', 'in the right manner'),\n",
+ " ('right', 'in the right manner'),\n",
+ " ('in good order', 'in the right manner'),\n",
+ " ('properly', 'in the right manner')]},\n",
+ " {'answer': 'thence',\n",
+ " 'hint': 'synonyms for thence',\n",
+ " 'clues': [('thus',\n",
+ " '(used to introduce a logical conclusion) from that fact or reason or as a result'),\n",
+ " ('therefore',\n",
+ " '(used to introduce a logical conclusion) from that fact or reason or as a result'),\n",
+ " ('so',\n",
+ " '(used to introduce a logical conclusion) from that fact or reason or as a result'),\n",
+ " ('hence',\n",
+ " '(used to introduce a logical conclusion) from that fact or reason or as a result'),\n",
+ " ('thereof', 'from that circumstance or source; - W.V.Quine'),\n",
+ " ('therefrom', 'from that place or from there')]},\n",
+ " {'answer': 'there',\n",
+ " 'hint': 'synonyms for there',\n",
+ " 'clues': [('in that respect', 'in that matter'),\n",
+ " ('thither', 'to or toward that place; away from the speaker'),\n",
+ " ('in that location', 'in or at that place'),\n",
+ " ('on that point', 'in that matter'),\n",
+ " ('at that place', 'in or at that place')]},\n",
+ " {'answer': 'therefore',\n",
+ " 'hint': 'synonyms for therefore',\n",
+ " 'clues': [('thus',\n",
+ " '(used to introduce a logical conclusion) from that fact or reason or as a result'),\n",
+ " ('consequently', 'as a consequence'),\n",
+ " ('so',\n",
+ " '(used to introduce a logical conclusion) from that fact or reason or as a result'),\n",
+ " ('hence',\n",
+ " '(used to introduce a logical conclusion) from that fact or reason or as a result')]},\n",
+ " {'answer': 'thus',\n",
+ " 'hint': 'synonyms for thus',\n",
+ " 'clues': [('therefore',\n",
+ " '(used to introduce a logical conclusion) from that fact or reason or as a result'),\n",
+ " ('so',\n",
+ " '(used to introduce a logical conclusion) from that fact or reason or as a result'),\n",
+ " ('hence',\n",
+ " '(used to introduce a logical conclusion) from that fact or reason or as a result'),\n",
+ " ('thusly',\n",
+ " \"in the way indicated; ; ; (`thusly' is a nonstandard variant)\")]},\n",
+ " {'answer': 'thus_far',\n",
+ " 'hint': 'synonyms for thus far',\n",
+ " 'clues': [('up to now',\n",
+ " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n",
+ " ('til now',\n",
+ " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n",
+ " ('heretofore',\n",
+ " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n",
+ " ('yet',\n",
+ " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n",
+ " ('so far',\n",
+ " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n",
+ " ('hitherto',\n",
+ " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n",
+ " ('as yet',\n",
+ " 'used in negative statement to describe a situation that has existed up to this point or up to the present time')]},\n",
+ " {'answer': 'til_now',\n",
+ " 'hint': 'synonyms for til now',\n",
+ " 'clues': [('thus far',\n",
+ " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n",
+ " ('up to now',\n",
+ " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n",
+ " ('heretofore',\n",
+ " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n",
+ " ('yet',\n",
+ " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n",
+ " ('so far',\n",
+ " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n",
+ " ('until now',\n",
+ " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n",
+ " ('hitherto',\n",
+ " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n",
+ " ('as yet',\n",
+ " 'used in negative statement to describe a situation that has existed up to this point or up to the present time')]},\n",
+ " {'answer': 'time_and_again',\n",
+ " 'hint': 'synonyms for time and again',\n",
+ " 'clues': [('again and again', 'repeatedly'),\n",
+ " ('over and over again', 'repeatedly'),\n",
+ " ('over and over', 'repeatedly'),\n",
+ " ('time and time again', 'repeatedly')]},\n",
+ " {'answer': 'time_and_time_again',\n",
+ " 'hint': 'synonyms for time and time again',\n",
+ " 'clues': [('time and again', 'repeatedly'),\n",
+ " ('again and again', 'repeatedly'),\n",
+ " ('over and over again', 'repeatedly'),\n",
+ " ('over and over', 'repeatedly')]},\n",
+ " {'answer': 'to_a_t',\n",
+ " 'hint': 'synonyms for to a t',\n",
+ " 'clues': [('just right', 'in every detail'),\n",
+ " ('to a T', 'in every detail'),\n",
+ " ('to the letter', 'in every detail'),\n",
+ " ('to perfection', 'in every detail')]},\n",
+ " {'answer': 'to_begin_with',\n",
+ " 'hint': 'synonyms for to begin with',\n",
+ " 'clues': [('in the beginning', 'before now'),\n",
+ " ('earlier', 'before now'),\n",
+ " ('originally', 'before now'),\n",
+ " ('in the first place', 'before now')]},\n",
+ " {'answer': 'to_wit',\n",
+ " 'hint': 'synonyms for to wit',\n",
+ " 'clues': [('that is to say', 'as follows'),\n",
+ " ('viz.', 'as follows'),\n",
+ " ('namely', 'as follows'),\n",
+ " ('videlicet', 'as follows')]},\n",
+ " {'answer': 'too',\n",
+ " 'hint': 'synonyms for too',\n",
+ " 'clues': [('as well', 'in addition'),\n",
+ " ('also', 'in addition'),\n",
+ " ('overly', 'to a degree exceeding normal or proper limits'),\n",
+ " ('excessively', 'to a degree exceeding normal or proper limits'),\n",
+ " ('to a fault', 'to a degree exceeding normal or proper limits'),\n",
+ " ('likewise', 'in addition'),\n",
+ " ('besides', 'in addition')]},\n",
+ " {'answer': 'toppingly',\n",
+ " 'hint': 'synonyms for toppingly',\n",
+ " 'clues': [('wonderfully', '(used as an intensifier) extremely well'),\n",
+ " ('terrifically', '(used as an intensifier) extremely well'),\n",
+ " ('marvelously', '(used as an intensifier) extremely well'),\n",
+ " ('wondrous', '(used as an intensifier) extremely well'),\n",
+ " ('superbly', '(used as an intensifier) extremely well')]},\n",
+ " {'answer': 'topsy-turvily',\n",
+ " 'hint': 'synonyms for topsy-turvily',\n",
+ " 'clues': [('in great confusion', 'in disorderly haste'),\n",
+ " ('topsy-turvy', 'in disorderly haste'),\n",
+ " ('head over heels', 'in disorderly haste'),\n",
+ " ('heels over head', 'in disorderly haste')]},\n",
+ " {'answer': 'totally',\n",
+ " 'hint': 'synonyms for totally',\n",
+ " 'clues': [('entirely',\n",
+ " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\"),\n",
+ " ('altogether',\n",
+ " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\"),\n",
+ " ('all',\n",
+ " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\"),\n",
+ " ('completely',\n",
+ " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\"),\n",
+ " ('wholly',\n",
+ " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\"),\n",
+ " ('whole',\n",
+ " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\")]},\n",
+ " {'answer': 'traitorously',\n",
+ " 'hint': 'synonyms for traitorously',\n",
+ " 'clues': [('false', 'in a disloyal and faithless manner'),\n",
+ " ('treasonably', 'in a disloyal and faithless manner'),\n",
+ " ('treacherously', 'in a disloyal and faithless manner'),\n",
+ " ('faithlessly', 'in a disloyal and faithless manner')]},\n",
+ " {'answer': 'treacherously',\n",
+ " 'hint': 'synonyms for treacherously',\n",
+ " 'clues': [('false', 'in a disloyal and faithless manner'),\n",
+ " ('treasonably', 'in a disloyal and faithless manner'),\n",
+ " ('traitorously', 'in a disloyal and faithless manner'),\n",
+ " ('faithlessly', 'in a disloyal and faithless manner')]},\n",
+ " {'answer': 'treasonably',\n",
+ " 'hint': 'synonyms for treasonably',\n",
+ " 'clues': [('false', 'in a disloyal and faithless manner'),\n",
+ " ('traitorously', 'in a disloyal and faithless manner'),\n",
+ " ('treacherously', 'in a disloyal and faithless manner'),\n",
+ " ('faithlessly', 'in a disloyal and faithless manner')]},\n",
+ " {'answer': 'trickily',\n",
+ " 'hint': 'synonyms for trickily',\n",
+ " 'clues': [('foxily', 'in an artful manner'),\n",
+ " ('craftily', 'in an artful manner'),\n",
+ " ('knavishly', 'in an artful manner'),\n",
+ " ('slyly', 'in an artful manner'),\n",
+ " ('cunningly', 'in an artful manner'),\n",
+ " ('artfully', 'in an artful manner')]},\n",
+ " {'answer': 'truly',\n",
+ " 'hint': 'synonyms for truly',\n",
+ " 'clues': [('really', 'in accordance with truth or fact or reality'),\n",
+ " ('in truth', 'in fact (used as intensifiers or sentence modifiers)'),\n",
+ " ('genuinely', 'in accordance with truth or fact or reality'),\n",
+ " ('sincerely', 'with sincerity; without pretense'),\n",
+ " ('rightfully', 'by right'),\n",
+ " ('unfeignedly', 'with sincerity; without pretense')]},\n",
+ " {'answer': 'ultimately',\n",
+ " 'hint': 'synonyms for ultimately',\n",
+ " 'clues': [('at last', 'as the end result of a succession or process'),\n",
+ " ('finally', 'as the end result of a succession or process'),\n",
+ " ('at long last', 'as the end result of a succession or process'),\n",
+ " ('in the end', 'as the end result of a succession or process')]},\n",
+ " {'answer': 'unceasingly',\n",
+ " 'hint': 'synonyms for unceasingly',\n",
+ " 'clues': [('unendingly', 'with unflagging resolve'),\n",
+ " ('incessantly', 'with unflagging resolve'),\n",
+ " ('endlessly', 'with unflagging resolve'),\n",
+ " ('continuously', 'with unflagging resolve'),\n",
+ " ('ceaselessly', 'with unflagging resolve')]},\n",
+ " {'answer': 'unendingly',\n",
+ " 'hint': 'synonyms for unendingly',\n",
+ " 'clues': [('unceasingly', 'with unflagging resolve'),\n",
+ " ('incessantly', 'with unflagging resolve'),\n",
+ " ('endlessly', 'with unflagging resolve'),\n",
+ " ('continuously', 'with unflagging resolve'),\n",
+ " ('ceaselessly', 'with unflagging resolve')]},\n",
+ " {'answer': 'unexpectedly',\n",
+ " 'hint': 'synonyms for unexpectedly',\n",
+ " 'clues': [('accidentally', 'without advance planning'),\n",
+ " ('circumstantially', 'without advance planning'),\n",
+ " ('by chance', 'without advance planning'),\n",
+ " ('out of the blue', 'in a way that was not expected')]},\n",
+ " {'answer': 'unprofitably',\n",
+ " 'hint': 'synonyms for unprofitably',\n",
+ " 'clues': [('profitlessly', 'without gain or profit'),\n",
+ " ('gainlessly', 'without gain or profit'),\n",
+ " ('unproductively', 'in an unproductive manner'),\n",
+ " ('fruitlessly', 'in an unproductive manner')]},\n",
+ " {'answer': 'unquestionably',\n",
+ " 'hint': 'synonyms for unquestionably',\n",
+ " 'clues': [('emphatically', 'without question and beyond doubt'),\n",
+ " ('unimpeachably', 'without question'),\n",
+ " ('by all odds', 'without question and beyond doubt'),\n",
+ " ('in spades', 'without question and beyond doubt'),\n",
+ " ('decidedly', 'without question and beyond doubt'),\n",
+ " ('definitely', 'without question and beyond doubt')]},\n",
+ " {'answer': 'unremarkably',\n",
+ " 'hint': 'synonyms for unremarkably',\n",
+ " 'clues': [('usually', 'under normal conditions'),\n",
+ " ('normally', 'under normal conditions'),\n",
+ " ('ordinarily', 'under normal conditions'),\n",
+ " ('commonly', 'under normal conditions')]},\n",
+ " {'answer': 'until_now',\n",
+ " 'hint': 'synonyms for until now',\n",
+ " 'clues': [('thus far',\n",
+ " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n",
+ " ('up to now',\n",
+ " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n",
+ " ('til now',\n",
+ " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n",
+ " ('heretofore',\n",
+ " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n",
+ " ('yet',\n",
+ " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n",
+ " ('so far',\n",
+ " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n",
+ " ('hitherto',\n",
+ " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n",
+ " ('as yet',\n",
+ " 'used in negative statement to describe a situation that has existed up to this point or up to the present time')]},\n",
+ " {'answer': 'up_to_now',\n",
+ " 'hint': 'synonyms for up to now',\n",
+ " 'clues': [('thus far',\n",
+ " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n",
+ " ('til now',\n",
+ " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n",
+ " ('heretofore',\n",
+ " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n",
+ " ('yet',\n",
+ " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n",
+ " ('to date', 'prior to the present time'),\n",
+ " ('so far',\n",
+ " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n",
+ " ('hitherto',\n",
+ " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n",
+ " ('as yet',\n",
+ " 'used in negative statement to describe a situation that has existed up to this point or up to the present time')]},\n",
+ " {'answer': 'usually',\n",
+ " 'hint': 'synonyms for usually',\n",
+ " 'clues': [('unremarkably', 'under normal conditions'),\n",
+ " ('normally', 'under normal conditions'),\n",
+ " ('ordinarily', 'under normal conditions'),\n",
+ " ('commonly', 'under normal conditions')]},\n",
+ " {'answer': 'very_much',\n",
+ " 'hint': 'synonyms for very much',\n",
+ " 'clues': [('much', 'to a very great degree or extent'),\n",
+ " ('a good deal', 'to a very great degree or extent'),\n",
+ " ('lots', 'to a very great degree or extent'),\n",
+ " ('a lot', 'to a very great degree or extent'),\n",
+ " ('a great deal', 'to a very great degree or extent')]},\n",
+ " {'answer': 'videlicet',\n",
+ " 'hint': 'synonyms for videlicet',\n",
+ " 'clues': [('to wit', 'as follows'),\n",
+ " ('that is to say', 'as follows'),\n",
+ " ('namely', 'as follows'),\n",
+ " ('viz.', 'as follows')]},\n",
+ " {'answer': 'virtually',\n",
+ " 'hint': 'synonyms for virtually',\n",
+ " 'clues': [('nearly',\n",
+ " '(of actions or states) slightly short of or not quite accomplished; all but'),\n",
+ " ('nigh',\n",
+ " '(of actions or states) slightly short of or not quite accomplished; all but'),\n",
+ " ('almost',\n",
+ " '(of actions or states) slightly short of or not quite accomplished; all but'),\n",
+ " ('well-nigh',\n",
+ " '(of actions or states) slightly short of or not quite accomplished; all but'),\n",
+ " ('most',\n",
+ " '(of actions or states) slightly short of or not quite accomplished; all but'),\n",
+ " ('about',\n",
+ " '(of actions or states) slightly short of or not quite accomplished; all but')]},\n",
+ " {'answer': 'viz.',\n",
+ " 'hint': 'synonyms for viz.',\n",
+ " 'clues': [('to wit', 'as follows'),\n",
+ " ('that is to say', 'as follows'),\n",
+ " ('namely', 'as follows'),\n",
+ " ('videlicet', 'as follows')]},\n",
+ " {'answer': 'wackily',\n",
+ " 'hint': 'synonyms for wackily',\n",
+ " 'clues': [('dottily', 'in a mildly insane manner'),\n",
+ " ('daftly', 'in a mildly insane manner'),\n",
+ " ('nuttily', 'in a mildly insane manner'),\n",
+ " ('balmily', 'in a mildly insane manner')]},\n",
+ " {'answer': 'well-nigh',\n",
+ " 'hint': 'synonyms for well-nigh',\n",
+ " 'clues': [('nearly',\n",
+ " '(of actions or states) slightly short of or not quite accomplished; all but'),\n",
+ " ('nigh',\n",
+ " '(of actions or states) slightly short of or not quite accomplished; all but'),\n",
+ " ('almost',\n",
+ " '(of actions or states) slightly short of or not quite accomplished; all but'),\n",
+ " ('most',\n",
+ " '(of actions or states) slightly short of or not quite accomplished; all but'),\n",
+ " ('about',\n",
+ " '(of actions or states) slightly short of or not quite accomplished; all but'),\n",
+ " ('virtually',\n",
+ " '(of actions or states) slightly short of or not quite accomplished; all but')]},\n",
+ " {'answer': 'when_the_time_comes',\n",
+ " 'hint': 'synonyms for when the time comes',\n",
+ " 'clues': [('in due season', 'at the appropriate time'),\n",
+ " ('in good time', 'at the appropriate time'),\n",
+ " ('in due course', 'at the appropriate time'),\n",
+ " ('in due time', 'at the appropriate time')]},\n",
+ " {'answer': 'wholly',\n",
+ " 'hint': 'synonyms for wholly',\n",
+ " 'clues': [('entirely',\n",
+ " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\"),\n",
+ " ('altogether',\n",
+ " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\"),\n",
+ " ('all',\n",
+ " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\"),\n",
+ " ('completely',\n",
+ " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\"),\n",
+ " ('totally',\n",
+ " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\"),\n",
+ " ('whole',\n",
+ " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\")]},\n",
+ " {'answer': 'willy-nilly',\n",
+ " 'hint': 'synonyms for willy-nilly',\n",
+ " 'clues': [('at random', 'in a random manner'),\n",
+ " ('every which way', 'in a random manner'),\n",
+ " ('indiscriminately', 'in a random manner'),\n",
+ " ('arbitrarily', 'in a random manner'),\n",
+ " ('randomly', 'in a random manner'),\n",
+ " ('haphazardly', 'in a random manner')]},\n",
+ " {'answer': 'withal',\n",
+ " 'hint': 'synonyms for withal',\n",
+ " 'clues': [('even so',\n",
+ " 'despite anything to the contrary (usually following a concession)'),\n",
+ " ('all the same',\n",
+ " 'despite anything to the contrary (usually following a concession)'),\n",
+ " ('yet',\n",
+ " 'despite anything to the contrary (usually following a concession)'),\n",
+ " ('nonetheless',\n",
+ " 'despite anything to the contrary (usually following a concession)'),\n",
+ " ('nevertheless',\n",
+ " 'despite anything to the contrary (usually following a concession)'),\n",
+ " ('notwithstanding',\n",
+ " 'despite anything to the contrary (usually following a concession)'),\n",
+ " ('still',\n",
+ " 'despite anything to the contrary (usually following a concession)'),\n",
+ " ('however',\n",
+ " 'despite anything to the contrary (usually following a concession)')]},\n",
+ " {'answer': 'wonderfully',\n",
+ " 'hint': 'synonyms for wonderfully',\n",
+ " 'clues': [('terrifically', '(used as an intensifier) extremely well'),\n",
+ " ('marvelously', '(used as an intensifier) extremely well'),\n",
+ " ('wondrous', '(used as an intensifier) extremely well'),\n",
+ " ('toppingly', '(used as an intensifier) extremely well'),\n",
+ " ('superbly', '(used as an intensifier) extremely well')]},\n",
+ " {'answer': 'wondrously',\n",
+ " 'hint': 'synonyms for wondrously',\n",
+ " 'clues': [('wonderfully', '(used as an intensifier) extremely well'),\n",
+ " ('terrifically', '(used as an intensifier) extremely well'),\n",
+ " ('marvelously', '(used as an intensifier) extremely well'),\n",
+ " ('wondrous', '(used as an intensifier) extremely well'),\n",
+ " ('toppingly', '(used as an intensifier) extremely well'),\n",
+ " ('superbly', '(used as an intensifier) extremely well')]},\n",
+ " {'answer': 'yet',\n",
+ " 'hint': 'synonyms for yet',\n",
+ " 'clues': [('thus far',\n",
+ " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n",
+ " ('in time', 'within an indefinite time or at an unspecified future time'),\n",
+ " ('so far', 'used after a superlative'),\n",
+ " ('til now',\n",
+ " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n",
+ " ('all the same',\n",
+ " 'despite anything to the contrary (usually following a concession)'),\n",
+ " ('even', 'to a greater degree or extent; used with comparisons'),\n",
+ " ('withal',\n",
+ " 'despite anything to the contrary (usually following a concession)'),\n",
+ " ('nonetheless',\n",
+ " 'despite anything to the contrary (usually following a concession)'),\n",
+ " ('nevertheless',\n",
+ " 'despite anything to the contrary (usually following a concession)'),\n",
+ " ('however',\n",
+ " 'despite anything to the contrary (usually following a concession)'),\n",
+ " ('as yet',\n",
+ " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n",
+ " ('still', 'to a greater degree or extent; used with comparisons'),\n",
+ " ('up to now',\n",
+ " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n",
+ " ('even so',\n",
+ " 'despite anything to the contrary (usually following a concession)'),\n",
+ " ('heretofore',\n",
+ " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n",
+ " ('notwithstanding',\n",
+ " 'despite anything to the contrary (usually following a concession)'),\n",
+ " ('hitherto',\n",
+ " 'used in negative statement to describe a situation that has existed up to this point or up to the present time')]}],\n",
+ " 'portion': 0.54},\n",
+ " {'name': 'nouns',\n",
+ " 'groups': [{'answer': '0',\n",
+ " 'hint': 'synonyms for 0',\n",
+ " 'clues': [('cipher',\n",
+ " 'a mathematical element that when added to another number yields the same number'),\n",
+ " ('cypher',\n",
+ " 'a mathematical element that when added to another number yields the same number'),\n",
+ " ('nought',\n",
+ " 'a mathematical element that when added to another number yields the same number'),\n",
+ " ('zero',\n",
+ " 'a mathematical element that when added to another number yields the same number')]},\n",
+ " {'answer': '1',\n",
+ " 'hint': 'synonyms for 1',\n",
+ " 'clues': [('ace',\n",
+ " 'the smallest whole number or a numeral representing this number'),\n",
+ " ('one',\n",
+ " 'the smallest whole number or a numeral representing this number'),\n",
+ " ('single',\n",
+ " 'the smallest whole number or a numeral representing this number'),\n",
+ " ('unity',\n",
+ " 'the smallest whole number or a numeral representing this number')]},\n",
+ " {'answer': '1000',\n",
+ " 'hint': 'synonyms for 1000',\n",
+ " 'clues': [('chiliad',\n",
+ " 'the cardinal number that is the product of 10 and 100'),\n",
+ " ('yard', 'the cardinal number that is the product of 10 and 100'),\n",
+ " ('grand', 'the cardinal number that is the product of 10 and 100'),\n",
+ " ('one thousand', 'the cardinal number that is the product of 10 and 100'),\n",
+ " ('thou', 'the cardinal number that is the product of 10 and 100'),\n",
+ " ('thousand', 'the cardinal number that is the product of 10 and 100')]},\n",
+ " {'answer': '3',\n",
+ " 'hint': 'synonyms for 3',\n",
+ " 'clues': [('ternary',\n",
+ " 'the cardinal number that is the sum of one and one and one'),\n",
+ " ('ternion', 'the cardinal number that is the sum of one and one and one'),\n",
+ " ('tierce', 'the cardinal number that is the sum of one and one and one'),\n",
+ " ('troika', 'the cardinal number that is the sum of one and one and one'),\n",
+ " ('trinity', 'the cardinal number that is the sum of one and one and one'),\n",
+ " ('triplet', 'the cardinal number that is the sum of one and one and one'),\n",
+ " ('three', 'the cardinal number that is the sum of one and one and one'),\n",
+ " ('threesome',\n",
+ " 'the cardinal number that is the sum of one and one and one'),\n",
+ " ('trey', 'the cardinal number that is the sum of one and one and one'),\n",
+ " ('trine', 'the cardinal number that is the sum of one and one and one'),\n",
+ " ('leash', 'the cardinal number that is the sum of one and one and one'),\n",
+ " ('trio', 'the cardinal number that is the sum of one and one and one'),\n",
+ " ('tercet', 'the cardinal number that is the sum of one and one and one'),\n",
+ " ('deuce-ace',\n",
+ " 'the cardinal number that is the sum of one and one and one'),\n",
+ " ('triad', 'the cardinal number that is the sum of one and one and one'),\n",
+ " ('terzetto',\n",
+ " 'the cardinal number that is the sum of one and one and one')]},\n",
+ " {'answer': '4',\n",
+ " 'hint': 'synonyms for 4',\n",
+ " 'clues': [('tetrad',\n",
+ " 'the cardinal number that is the sum of three and one'),\n",
+ " ('quaternion', 'the cardinal number that is the sum of three and one'),\n",
+ " ('quartet', 'the cardinal number that is the sum of three and one'),\n",
+ " ('foursome', 'the cardinal number that is the sum of three and one'),\n",
+ " ('quaternity', 'the cardinal number that is the sum of three and one'),\n",
+ " ('four', 'the cardinal number that is the sum of three and one'),\n",
+ " ('quaternary', 'the cardinal number that is the sum of three and one'),\n",
+ " ('quatern', 'the cardinal number that is the sum of three and one'),\n",
+ " ('quadruplet', 'the cardinal number that is the sum of three and one')]},\n",
+ " {'answer': '5',\n",
+ " 'hint': 'synonyms for 5',\n",
+ " 'clues': [('quintet',\n",
+ " 'the cardinal number that is the sum of four and one'),\n",
+ " ('pentad', 'the cardinal number that is the sum of four and one'),\n",
+ " ('quint', 'the cardinal number that is the sum of four and one'),\n",
+ " ('fin', 'the cardinal number that is the sum of four and one'),\n",
+ " ('cinque', 'the cardinal number that is the sum of four and one'),\n",
+ " ('quintuplet', 'the cardinal number that is the sum of four and one'),\n",
+ " ('fivesome', 'the cardinal number that is the sum of four and one'),\n",
+ " ('five', 'the cardinal number that is the sum of four and one')]},\n",
+ " {'answer': '6',\n",
+ " 'hint': 'synonyms for 6',\n",
+ " 'clues': [('sextuplet',\n",
+ " 'the cardinal number that is the sum of five and one'),\n",
+ " ('hexad', 'the cardinal number that is the sum of five and one'),\n",
+ " ('half a dozen', 'the cardinal number that is the sum of five and one'),\n",
+ " ('sise', 'the cardinal number that is the sum of five and one'),\n",
+ " ('sextet', 'the cardinal number that is the sum of five and one'),\n",
+ " ('sixer', 'the cardinal number that is the sum of five and one'),\n",
+ " ('six', 'the cardinal number that is the sum of five and one'),\n",
+ " ('sestet', 'the cardinal number that is the sum of five and one')]},\n",
+ " {'answer': '7',\n",
+ " 'hint': 'synonyms for 7',\n",
+ " 'clues': [('septet', 'the cardinal number that is the sum of six and one'),\n",
+ " ('septenary', 'the cardinal number that is the sum of six and one'),\n",
+ " ('heptad', 'the cardinal number that is the sum of six and one'),\n",
+ " ('seven', 'the cardinal number that is the sum of six and one'),\n",
+ " ('sevener', 'the cardinal number that is the sum of six and one')]},\n",
+ " {'answer': '8',\n",
+ " 'hint': 'synonyms for 8',\n",
+ " 'clues': [('eighter from Decatur',\n",
+ " 'the cardinal number that is the sum of seven and one'),\n",
+ " ('eight', 'the cardinal number that is the sum of seven and one'),\n",
+ " ('octonary', 'the cardinal number that is the sum of seven and one'),\n",
+ " ('octad', 'the cardinal number that is the sum of seven and one'),\n",
+ " ('eighter', 'the cardinal number that is the sum of seven and one'),\n",
+ " ('octet', 'the cardinal number that is the sum of seven and one'),\n",
+ " ('ogdoad', 'the cardinal number that is the sum of seven and one')]},\n",
+ " {'answer': 'abstract',\n",
+ " 'hint': 'synonyms for abstract',\n",
+ " 'clues': [('outline',\n",
+ " 'a sketchy summary of the main points of an argument or theory'),\n",
+ " ('synopsis',\n",
+ " 'a sketchy summary of the main points of an argument or theory'),\n",
+ " ('precis',\n",
+ " 'a sketchy summary of the main points of an argument or theory'),\n",
+ " ('abstraction',\n",
+ " 'a concept or idea not associated with any specific instance')]},\n",
+ " {'answer': 'accessory',\n",
+ " 'hint': 'synonyms for accessory',\n",
+ " 'clues': [('accouterment',\n",
+ " 'clothing that is worn or carried, but not part of your main clothing'),\n",
+ " ('supplement', 'a supplementary component that improves capability'),\n",
+ " ('appurtenance', 'a supplementary component that improves capability'),\n",
+ " ('add-on', 'a supplementary component that improves capability')]},\n",
+ " {'answer': 'ace',\n",
+ " 'hint': 'synonyms for ace',\n",
+ " 'clues': [('angiotensin converting enzyme',\n",
+ " 'proteolytic enzyme that converts angiotensin I into angiotensin II'),\n",
+ " ('one',\n",
+ " 'the smallest whole number or a numeral representing this number'),\n",
+ " ('single',\n",
+ " 'the smallest whole number or a numeral representing this number'),\n",
+ " ('1', 'the smallest whole number or a numeral representing this number'),\n",
+ " ('unity',\n",
+ " 'the smallest whole number or a numeral representing this number')]},\n",
+ " {'answer': 'acid',\n",
+ " 'hint': 'synonyms for acid',\n",
+ " 'clues': [('battery-acid', 'street name for lysergic acid diethylamide'),\n",
+ " ('dose', 'street name for lysergic acid diethylamide'),\n",
+ " ('pane', 'street name for lysergic acid diethylamide'),\n",
+ " ('back breaker', 'street name for lysergic acid diethylamide'),\n",
+ " ('superman', 'street name for lysergic acid diethylamide'),\n",
+ " ('window pane', 'street name for lysergic acid diethylamide'),\n",
+ " ('dot', 'street name for lysergic acid diethylamide'),\n",
+ " ('loony toons', 'street name for lysergic acid diethylamide')]},\n",
+ " {'answer': 'advance',\n",
+ " 'hint': 'synonyms for advance',\n",
+ " 'clues': [('rise', 'increase in price or value'),\n",
+ " ('feeler',\n",
+ " 'a tentative suggestion designed to elicit the reactions of others'),\n",
+ " ('betterment', 'a change for the better; progress in development'),\n",
+ " ('progression', 'the act of moving forward (as toward a goal)'),\n",
+ " ('progress', 'the act of moving forward (as toward a goal)'),\n",
+ " ('overture',\n",
+ " 'a tentative suggestion designed to elicit the reactions of others'),\n",
+ " ('improvement', 'a change for the better; progress in development'),\n",
+ " ('onward motion', 'the act of moving forward (as toward a goal)'),\n",
+ " ('cash advance', 'an amount paid before it is earned'),\n",
+ " ('advancement', 'the act of moving forward (as toward a goal)'),\n",
+ " ('approach',\n",
+ " 'a tentative suggestion designed to elicit the reactions of others')]},\n",
+ " {'answer': 'agglomerate',\n",
+ " 'hint': 'synonyms for agglomerate',\n",
+ " 'clues': [('cumulation',\n",
+ " 'a collection of objects laid on top of each other'),\n",
+ " ('cumulus', 'a collection of objects laid on top of each other'),\n",
+ " ('mound', 'a collection of objects laid on top of each other'),\n",
+ " ('heap', 'a collection of objects laid on top of each other'),\n",
+ " ('pile', 'a collection of objects laid on top of each other')]},\n",
+ " {'answer': 'aggregate',\n",
+ " 'hint': 'synonyms for aggregate',\n",
+ " 'clues': [('totality', 'the whole amount'),\n",
+ " ('sum', 'the whole amount'),\n",
+ " ('conglomeration',\n",
+ " 'a sum total of many heterogenous things taken together'),\n",
+ " ('congeries', 'a sum total of many heterogenous things taken together'),\n",
+ " ('total', 'the whole amount')]},\n",
+ " {'answer': 'animal',\n",
+ " 'hint': 'synonyms for animal',\n",
+ " 'clues': [('beast',\n",
+ " 'a living organism characterized by voluntary movement'),\n",
+ " ('animate being',\n",
+ " 'a living organism characterized by voluntary movement'),\n",
+ " ('brute', 'a living organism characterized by voluntary movement'),\n",
+ " ('fauna', 'a living organism characterized by voluntary movement'),\n",
+ " ('creature', 'a living organism characterized by voluntary movement')]},\n",
+ " {'answer': 'antiaircraft',\n",
+ " 'hint': 'synonyms for antiaircraft',\n",
+ " 'clues': [('pom-pom', 'artillery designed to shoot upward at airplanes'),\n",
+ " ('antiaircraft gun', 'artillery designed to shoot upward at airplanes'),\n",
+ " ('flak', 'artillery designed to shoot upward at airplanes'),\n",
+ " ('ack-ack gun', 'artillery designed to shoot upward at airplanes'),\n",
+ " ('ack-ack', 'artillery designed to shoot upward at airplanes')]},\n",
+ " {'answer': 'antic',\n",
+ " 'hint': 'synonyms for antic',\n",
+ " 'clues': [('trick',\n",
+ " 'a ludicrous or grotesque act done for fun and amusement'),\n",
+ " ('prank', 'a ludicrous or grotesque act done for fun and amusement'),\n",
+ " ('joke', 'a ludicrous or grotesque act done for fun and amusement'),\n",
+ " ('put-on', 'a ludicrous or grotesque act done for fun and amusement'),\n",
+ " ('caper', 'a ludicrous or grotesque act done for fun and amusement')]},\n",
+ " {'answer': 'antifungal',\n",
+ " 'hint': 'synonyms for antifungal',\n",
+ " 'clues': [('fungicide',\n",
+ " 'any agent that destroys or prevents the growth of fungi'),\n",
+ " ('antimycotic agent',\n",
+ " 'any agent that destroys or prevents the growth of fungi'),\n",
+ " ('antimycotic',\n",
+ " 'any agent that destroys or prevents the growth of fungi'),\n",
+ " ('antifungal agent',\n",
+ " 'any agent that destroys or prevents the growth of fungi')]},\n",
+ " {'answer': 'arctic',\n",
+ " 'hint': 'synonyms for arctic',\n",
+ " 'clues': [('gumshoe',\n",
+ " 'a waterproof overshoe that protects shoes from water or snow'),\n",
+ " ('galosh',\n",
+ " 'a waterproof overshoe that protects shoes from water or snow'),\n",
+ " ('golosh',\n",
+ " 'a waterproof overshoe that protects shoes from water or snow'),\n",
+ " ('rubber',\n",
+ " 'a waterproof overshoe that protects shoes from water or snow')]},\n",
+ " {'answer': 'ataractic',\n",
+ " 'hint': 'synonyms for ataractic',\n",
+ " 'clues': [('tranquilliser',\n",
+ " 'a drug used to reduce stress or tension without reducing mental clarity'),\n",
+ " ('antianxiety agent',\n",
+ " 'a drug used to reduce stress or tension without reducing mental clarity'),\n",
+ " ('ataractic drug',\n",
+ " 'a drug used to reduce stress or tension without reducing mental clarity'),\n",
+ " ('ataractic agent',\n",
+ " 'a drug used to reduce stress or tension without reducing mental clarity')]},\n",
+ " {'answer': 'azure',\n",
+ " 'hint': 'synonyms for azure',\n",
+ " 'clues': [('sapphire', 'a light shade of blue'),\n",
+ " ('lazuline', 'a light shade of blue'),\n",
+ " ('cerulean', 'a light shade of blue'),\n",
+ " ('sky-blue', 'a light shade of blue')]},\n",
+ " {'answer': 'bacchanal',\n",
+ " 'hint': 'synonyms for bacchanal',\n",
+ " 'clues': [('bacchanalia',\n",
+ " 'a wild gathering involving excessive drinking and promiscuity'),\n",
+ " ('drunken revelry',\n",
+ " 'a wild gathering involving excessive drinking and promiscuity'),\n",
+ " ('saturnalia',\n",
+ " 'a wild gathering involving excessive drinking and promiscuity'),\n",
+ " ('riot', 'a wild gathering involving excessive drinking and promiscuity'),\n",
+ " ('debauch',\n",
+ " 'a wild gathering involving excessive drinking and promiscuity'),\n",
+ " ('debauchery',\n",
+ " 'a wild gathering involving excessive drinking and promiscuity'),\n",
+ " ('orgy',\n",
+ " 'a wild gathering involving excessive drinking and promiscuity')]},\n",
+ " {'answer': 'back',\n",
+ " 'hint': 'synonyms for back',\n",
+ " 'clues': [('binding',\n",
+ " 'the protective covering on the front, back, and spine of a book'),\n",
+ " ('book binding',\n",
+ " 'the protective covering on the front, back, and spine of a book'),\n",
+ " ('backrest', 'a support that you can lean against while sitting'),\n",
+ " ('rear', 'the side that goes last or is not normally seen'),\n",
+ " ('cover',\n",
+ " 'the protective covering on the front, back, and spine of a book')]},\n",
+ " {'answer': 'base',\n",
+ " 'hint': 'synonyms for base',\n",
+ " 'clues': [('basis',\n",
+ " 'the fundamental assumptions from which something is begun or developed or calculated or explained'),\n",
+ " ('cornerstone',\n",
+ " 'the fundamental assumptions from which something is begun or developed or calculated or explained'),\n",
+ " ('groundwork', 'lowest support of a structure'),\n",
+ " ('radix',\n",
+ " '(numeration system) the positive integer that is equivalent to one in the next higher counting place'),\n",
+ " ('substructure', 'lowest support of a structure'),\n",
+ " ('root',\n",
+ " '(linguistics) the form of a word after all affixes are removed'),\n",
+ " ('fundament',\n",
+ " 'the fundamental assumptions from which something is begun or developed or calculated or explained'),\n",
+ " (\"al-Qa'ida\",\n",
+ " 'a terrorist network intensely opposed to the United States that dispenses money and logistical support and training to a wide variety of radical Islamic terrorist groups; has cells in more than 50 countries'),\n",
+ " ('foot', 'lowest support of a structure'),\n",
+ " ('base of operations',\n",
+ " 'installation from which a military force initiates operations'),\n",
+ " ('nucleotide',\n",
+ " 'a phosphoric ester of a nucleoside; the basic structural unit of nucleic acids (DNA or RNA)'),\n",
+ " ('root word',\n",
+ " '(linguistics) the form of a word after all affixes are removed'),\n",
+ " ('al-Qaeda',\n",
+ " 'a terrorist network intensely opposed to the United States that dispenses money and logistical support and training to a wide variety of radical Islamic terrorist groups; has cells in more than 50 countries'),\n",
+ " ('radical',\n",
+ " '(linguistics) the form of a word after all affixes are removed'),\n",
+ " ('theme',\n",
+ " '(linguistics) the form of a word after all affixes are removed'),\n",
+ " ('bag', 'a place that the runner must touch before scoring'),\n",
+ " ('floor', 'a lower limit'),\n",
+ " ('infrastructure',\n",
+ " 'the stock of basic facilities and capital equipment needed for the functioning of a country or area'),\n",
+ " ('foundation', 'lowest support of a structure'),\n",
+ " ('pedestal', 'a support or foundation'),\n",
+ " ('understructure', 'lowest support of a structure'),\n",
+ " ('alkali',\n",
+ " 'any of various water-soluble compounds capable of turning litmus blue and reacting with an acid to form a salt and water'),\n",
+ " ('home',\n",
+ " 'the place where you are stationed and from which missions start and end'),\n",
+ " ('stem',\n",
+ " '(linguistics) the form of a word after all affixes are removed'),\n",
+ " ('stand', 'a support or foundation')]},\n",
+ " {'answer': 'bass',\n",
+ " 'hint': 'synonyms for bass',\n",
+ " 'clues': [('bass voice', 'the lowest adult male singing voice'),\n",
+ " ('basso', 'the lowest adult male singing voice'),\n",
+ " ('bass part', 'the lowest part in polyphonic music'),\n",
+ " ('freshwater bass',\n",
+ " 'any of various North American freshwater fish with lean flesh (especially of the genus Micropterus)'),\n",
+ " ('sea bass',\n",
+ " 'the lean flesh of a saltwater fish of the family Serranidae')]},\n",
+ " {'answer': 'bats',\n",
+ " 'hint': 'synonyms for bats',\n",
+ " 'clues': [('bat', '(baseball) a turn trying to get a hit'),\n",
+ " ('at-bat', '(baseball) a turn trying to get a hit'),\n",
+ " ('squash racquet',\n",
+ " 'a small racket with a long handle used for playing squash'),\n",
+ " ('cricket bat', 'the club used in playing cricket')]},\n",
+ " {'answer': 'bearing',\n",
+ " 'hint': 'synonyms for bearing',\n",
+ " 'clues': [('presence', 'dignified manner or conduct'),\n",
+ " ('mien', 'dignified manner or conduct'),\n",
+ " ('comportment', 'dignified manner or conduct'),\n",
+ " ('charge',\n",
+ " 'heraldry consisting of a design or image depicted on a shield'),\n",
+ " ('posture', \"characteristic way of bearing one's body\"),\n",
+ " ('aim',\n",
+ " 'the direction or path along which something moves or along which it lies'),\n",
+ " ('armorial bearing',\n",
+ " 'heraldry consisting of a design or image depicted on a shield'),\n",
+ " ('heading',\n",
+ " 'the direction or path along which something moves or along which it lies'),\n",
+ " ('heraldic bearing',\n",
+ " 'heraldry consisting of a design or image depicted on a shield'),\n",
+ " ('carriage', \"characteristic way of bearing one's body\")]},\n",
+ " {'answer': 'beat',\n",
+ " 'hint': 'synonyms for beat',\n",
+ " 'clues': [('measure', '(prosody) the accent in a metrical foot of verse'),\n",
+ " ('pulse',\n",
+ " 'the rhythmic contraction and expansion of the arteries with each beat of the heart'),\n",
+ " ('meter', '(prosody) the accent in a metrical foot of verse'),\n",
+ " ('pulsation',\n",
+ " 'the rhythmic contraction and expansion of the arteries with each beat of the heart'),\n",
+ " ('heartbeat',\n",
+ " 'the rhythmic contraction and expansion of the arteries with each beat of the heart'),\n",
+ " ('round', 'a regular route for a sentry or policeman'),\n",
+ " ('cadence', '(prosody) the accent in a metrical foot of verse'),\n",
+ " ('rhythm', 'the basic rhythmic unit in a piece of music'),\n",
+ " ('musical rhythm', 'the basic rhythmic unit in a piece of music'),\n",
+ " ('metre', '(prosody) the accent in a metrical foot of verse')]},\n",
+ " {'answer': 'beginning',\n",
+ " 'hint': 'synonyms for beginning',\n",
+ " 'clues': [('get-go', 'the time at which something is supposed to begin'),\n",
+ " ('showtime', 'the time at which something is supposed to begin'),\n",
+ " ('offset', 'the time at which something is supposed to begin'),\n",
+ " ('first', 'the time at which something is supposed to begin'),\n",
+ " ('starting time', 'the time at which something is supposed to begin'),\n",
+ " ('kickoff', 'the time at which something is supposed to begin'),\n",
+ " ('start', 'the time at which something is supposed to begin'),\n",
+ " ('commencement', 'the act of starting something'),\n",
+ " ('outset', 'the time at which something is supposed to begin'),\n",
+ " ('rootage',\n",
+ " 'the place where something begins, where it springs into being'),\n",
+ " ('root', 'the place where something begins, where it springs into being'),\n",
+ " ('source',\n",
+ " 'the place where something begins, where it springs into being'),\n",
+ " ('origin',\n",
+ " 'the place where something begins, where it springs into being')]},\n",
+ " {'answer': 'billion',\n",
+ " 'hint': 'synonyms for billion',\n",
+ " 'clues': [('trillion',\n",
+ " 'a very large indefinite number (usually hyperbole)'),\n",
+ " ('1000000000000',\n",
+ " 'the number that is represented as a one followed by 12 zeros; in the United Kingdom the usage followed in the United States is frequently seen'),\n",
+ " ('zillion', 'a very large indefinite number (usually hyperbole)'),\n",
+ " ('one million million',\n",
+ " 'the number that is represented as a one followed by 12 zeros; in the United Kingdom the usage followed in the United States is frequently seen'),\n",
+ " ('one thousand million',\n",
+ " 'the number that is represented as a one followed by 9 zeros')]},\n",
+ " {'answer': 'binding',\n",
+ " 'hint': 'synonyms for binding',\n",
+ " 'clues': [('back',\n",
+ " 'the protective covering on the front, back, and spine of a book'),\n",
+ " ('book binding',\n",
+ " 'the protective covering on the front, back, and spine of a book'),\n",
+ " ('dressing', 'the act of applying a bandage'),\n",
+ " ('ski binding',\n",
+ " 'one of a pair of mechanical devices that are attached to a ski and that will grip a ski boot; the bindings should release in case of a fall'),\n",
+ " ('cover',\n",
+ " 'the protective covering on the front, back, and spine of a book'),\n",
+ " ('bandaging', 'the act of applying a bandage')]},\n",
+ " {'answer': 'biquadratic',\n",
+ " 'hint': 'synonyms for biquadratic',\n",
+ " 'clues': [('quartic polynomial', 'a polynomial of the fourth degree'),\n",
+ " ('fourth power', 'an algebraic equation of the fourth degree'),\n",
+ " ('biquadrate', 'an algebraic equation of the fourth degree'),\n",
+ " ('biquadratic equation', 'an equation of the fourth degree'),\n",
+ " ('quartic', 'an algebraic equation of the fourth degree')]},\n",
+ " {'answer': 'blank',\n",
+ " 'hint': 'synonyms for blank',\n",
+ " 'clues': [('lacuna', 'a blank gap or missing part'),\n",
+ " ('blank shell',\n",
+ " 'a cartridge containing an explosive charge but no bullet'),\n",
+ " ('space',\n",
+ " 'a blank character used to separate successive words in writing or printing'),\n",
+ " ('dummy', 'a cartridge containing an explosive charge but no bullet')]},\n",
+ " {'answer': 'blaring',\n",
+ " 'hint': 'synonyms for blaring',\n",
+ " 'clues': [('blare', 'a loud harsh or strident noise'),\n",
+ " ('din', 'a loud harsh or strident noise'),\n",
+ " ('cacophony', 'a loud harsh or strident noise'),\n",
+ " ('clamor', 'a loud harsh or strident noise')]},\n",
+ " {'answer': 'blinking',\n",
+ " 'hint': 'synonyms for blinking',\n",
+ " 'clues': [('winking', 'a reflex that closes and opens the eyes rapidly'),\n",
+ " ('nictation', 'a reflex that closes and opens the eyes rapidly'),\n",
+ " ('blink', 'a reflex that closes and opens the eyes rapidly'),\n",
+ " ('eye blink', 'a reflex that closes and opens the eyes rapidly')]},\n",
+ " {'answer': 'blue',\n",
+ " 'hint': 'synonyms for blue',\n",
+ " 'clues': [('blue air', 'the sky as viewed during daylight'),\n",
+ " ('wild blue yonder', 'the sky as viewed during daylight'),\n",
+ " ('blueing', 'used to whiten laundry or hair or give it a bluish tinge'),\n",
+ " ('amobarbital sodium',\n",
+ " 'the sodium salt of amobarbital that is used as a barbiturate; used as a sedative and a hypnotic'),\n",
+ " ('blue devil',\n",
+ " 'the sodium salt of amobarbital that is used as a barbiturate; used as a sedative and a hypnotic'),\n",
+ " ('blueness',\n",
+ " 'blue color or pigment; resembling the color of the clear sky in the daytime'),\n",
+ " ('blue angel',\n",
+ " 'the sodium salt of amobarbital that is used as a barbiturate; used as a sedative and a hypnotic'),\n",
+ " ('blue sky', 'the sky as viewed during daylight')]},\n",
+ " {'answer': 'bone',\n",
+ " 'hint': 'synonyms for bone',\n",
+ " 'clues': [('ivory', 'a shade of white the color of bleached bones'),\n",
+ " ('pearl', 'a shade of white the color of bleached bones'),\n",
+ " ('osseous tissue',\n",
+ " 'the porous calcified substance from which bones are made'),\n",
+ " ('off-white', 'a shade of white the color of bleached bones')]},\n",
+ " {'answer': 'borderline',\n",
+ " 'hint': 'synonyms for borderline',\n",
+ " 'clues': [('delimitation', 'a line that indicates a boundary'),\n",
+ " ('border', 'a line that indicates a boundary'),\n",
+ " ('boundary line', 'a line that indicates a boundary'),\n",
+ " ('mete', 'a line that indicates a boundary')]},\n",
+ " {'answer': 'bottom',\n",
+ " 'hint': 'synonyms for bottom',\n",
+ " 'clues': [('bottom of the inning',\n",
+ " 'the second half of an inning; while the home team is at bat'),\n",
+ " ('freighter', 'a cargo ship'),\n",
+ " ('underside', 'the lower side of anything'),\n",
+ " ('bottomland', 'low-lying alluvial land near a river'),\n",
+ " ('merchant ship', 'a cargo ship'),\n",
+ " ('merchantman', 'a cargo ship'),\n",
+ " ('bed', 'a depression forming the ground under a body of water'),\n",
+ " ('undersurface', 'the lower side of anything')]},\n",
+ " {'answer': 'bound',\n",
+ " 'hint': 'synonyms for bound',\n",
+ " 'clues': [('bounce',\n",
+ " 'a light, self-propelled movement upwards or forwards'),\n",
+ " ('bounds',\n",
+ " 'the line or plane indicating the limit or extent of something'),\n",
+ " ('leap', 'a light, self-propelled movement upwards or forwards'),\n",
+ " ('spring', 'a light, self-propelled movement upwards or forwards'),\n",
+ " ('boundary',\n",
+ " 'the line or plane indicating the limit or extent of something'),\n",
+ " ('limit', 'the greatest possible degree of something'),\n",
+ " ('saltation', 'a light, self-propelled movement upwards or forwards'),\n",
+ " ('edge', 'a line determining the limits of an area')]},\n",
+ " {'answer': 'brag',\n",
+ " 'hint': 'synonyms for brag',\n",
+ " 'clues': [('line-shooting', 'an instance of boastful talk'),\n",
+ " ('gasconade', 'an instance of boastful talk'),\n",
+ " ('crowing', 'an instance of boastful talk'),\n",
+ " ('vaporing', 'an instance of boastful talk'),\n",
+ " ('bragging', 'an instance of boastful talk')]},\n",
+ " {'answer': 'bragging',\n",
+ " 'hint': 'synonyms for bragging',\n",
+ " 'clues': [('line-shooting', 'an instance of boastful talk'),\n",
+ " ('gasconade', 'an instance of boastful talk'),\n",
+ " ('crowing', 'an instance of boastful talk'),\n",
+ " ('vaporing', 'an instance of boastful talk'),\n",
+ " ('brag', 'an instance of boastful talk')]},\n",
+ " {'answer': 'breeding',\n",
+ " 'hint': 'synonyms for breeding',\n",
+ " 'clues': [('bringing up',\n",
+ " 'helping someone grow up to be an accepted member of the community'),\n",
+ " ('education',\n",
+ " 'the result of good upbringing (especially knowledge of correct social behavior)'),\n",
+ " ('rearing',\n",
+ " 'helping someone grow up to be an accepted member of the community'),\n",
+ " ('gentility', 'elegance by virtue of fineness of manner and expression'),\n",
+ " ('procreation',\n",
+ " 'the sexual activity of conceiving and bearing offspring'),\n",
+ " ('genteelness',\n",
+ " 'elegance by virtue of fineness of manner and expression'),\n",
+ " ('training',\n",
+ " 'the result of good upbringing (especially knowledge of correct social behavior)'),\n",
+ " ('upbringing',\n",
+ " 'helping someone grow up to be an accepted member of the community'),\n",
+ " ('raising',\n",
+ " 'helping someone grow up to be an accepted member of the community'),\n",
+ " ('reproduction',\n",
+ " 'the sexual activity of conceiving and bearing offspring'),\n",
+ " ('facts of life',\n",
+ " 'the sexual activity of conceiving and bearing offspring'),\n",
+ " ('fosterage',\n",
+ " 'helping someone grow up to be an accepted member of the community'),\n",
+ " ('nurture',\n",
+ " 'helping someone grow up to be an accepted member of the community'),\n",
+ " ('fostering',\n",
+ " 'helping someone grow up to be an accepted member of the community')]},\n",
+ " {'answer': 'broadside',\n",
+ " 'hint': 'synonyms for broadside',\n",
+ " 'clues': [('philippic', 'a speech of violent denunciation'),\n",
+ " ('throwaway',\n",
+ " 'an advertisement (usually printed on a page or in a leaflet) intended for wide distribution'),\n",
+ " ('flier',\n",
+ " 'an advertisement (usually printed on a page or in a leaflet) intended for wide distribution'),\n",
+ " ('broadsheet',\n",
+ " 'an advertisement (usually printed on a page or in a leaflet) intended for wide distribution'),\n",
+ " ('tirade', 'a speech of violent denunciation'),\n",
+ " ('flyer',\n",
+ " 'an advertisement (usually printed on a page or in a leaflet) intended for wide distribution'),\n",
+ " ('circular',\n",
+ " 'an advertisement (usually printed on a page or in a leaflet) intended for wide distribution'),\n",
+ " ('handbill',\n",
+ " 'an advertisement (usually printed on a page or in a leaflet) intended for wide distribution'),\n",
+ " ('bill',\n",
+ " 'an advertisement (usually printed on a page or in a leaflet) intended for wide distribution')]},\n",
+ " {'answer': 'brute',\n",
+ " 'hint': 'synonyms for brute',\n",
+ " 'clues': [('beast',\n",
+ " 'a living organism characterized by voluntary movement'),\n",
+ " ('animate being',\n",
+ " 'a living organism characterized by voluntary movement'),\n",
+ " ('animal', 'a living organism characterized by voluntary movement'),\n",
+ " ('fauna', 'a living organism characterized by voluntary movement'),\n",
+ " ('creature', 'a living organism characterized by voluntary movement')]},\n",
+ " {'answer': 'buff',\n",
+ " 'hint': 'synonyms for buff',\n",
+ " 'clues': [('caramel', 'a medium to dark tan color'),\n",
+ " ('caramel brown', 'a medium to dark tan color'),\n",
+ " ('yellowish brown', 'a medium to dark tan color'),\n",
+ " ('raw sienna', 'a medium to dark tan color'),\n",
+ " ('buffer',\n",
+ " 'an implement consisting of soft material mounted on a block; used for polishing (as in manicuring)')]},\n",
+ " {'answer': 'burlesque',\n",
+ " 'hint': 'synonyms for burlesque',\n",
+ " 'clues': [('lampoon',\n",
+ " \"a composition that imitates or misrepresents somebody's style, usually in a humorous way\"),\n",
+ " ('charade',\n",
+ " \"a composition that imitates or misrepresents somebody's style, usually in a humorous way\"),\n",
+ " ('parody',\n",
+ " \"a composition that imitates or misrepresents somebody's style, usually in a humorous way\"),\n",
+ " ('pasquinade',\n",
+ " \"a composition that imitates or misrepresents somebody's style, usually in a humorous way\"),\n",
+ " ('spoof',\n",
+ " \"a composition that imitates or misrepresents somebody's style, usually in a humorous way\"),\n",
+ " ('put-on',\n",
+ " \"a composition that imitates or misrepresents somebody's style, usually in a humorous way\"),\n",
+ " ('travesty',\n",
+ " \"a composition that imitates or misrepresents somebody's style, usually in a humorous way\"),\n",
+ " ('takeoff',\n",
+ " \"a composition that imitates or misrepresents somebody's style, usually in a humorous way\"),\n",
+ " ('mockery',\n",
+ " \"a composition that imitates or misrepresents somebody's style, usually in a humorous way\"),\n",
+ " ('sendup',\n",
+ " \"a composition that imitates or misrepresents somebody's style, usually in a humorous way\")]},\n",
+ " {'answer': 'bust',\n",
+ " 'hint': 'synonyms for bust',\n",
+ " 'clues': [('bout', 'an occasion for excessive eating or drinking'),\n",
+ " ('flop', 'a complete failure'),\n",
+ " ('binge', 'an occasion for excessive eating or drinking'),\n",
+ " ('tear', 'an occasion for excessive eating or drinking'),\n",
+ " ('fizzle', 'a complete failure')]},\n",
+ " {'answer': 'c',\n",
+ " 'hint': 'synonyms for c',\n",
+ " 'clues': [('ampere-second',\n",
+ " 'a unit of electrical charge equal to the amount of charge transferred by a current of 1 ampere in 1 second'),\n",
+ " ('hundred', 'ten 10s'),\n",
+ " ('vitamin C',\n",
+ " 'a vitamin found in fresh fruits (especially citrus fruits) and vegetables; prevents scurvy'),\n",
+ " ('deoxycytidine monophosphate',\n",
+ " 'one of the four nucleotides used in building DNA; all four nucleotides have a common phosphate group and a sugar (ribose)'),\n",
+ " ('century', 'ten 10s'),\n",
+ " ('coulomb',\n",
+ " 'a unit of electrical charge equal to the amount of charge transferred by a current of 1 ampere in 1 second'),\n",
+ " ('snow', 'street names for cocaine'),\n",
+ " ('coke', 'street names for cocaine'),\n",
+ " ('blow', 'street names for cocaine'),\n",
+ " ('light speed',\n",
+ " 'the speed at which light travels in a vacuum; the constancy and universality of the speed of light is recognized by defining it to be exactly 299,792,458 meters per second'),\n",
+ " ('nose candy', 'street names for cocaine'),\n",
+ " ('degree Celsius', 'a degree on the centigrade scale of temperature'),\n",
+ " ('speed of light',\n",
+ " 'the speed at which light travels in a vacuum; the constancy and universality of the speed of light is recognized by defining it to be exactly 299,792,458 meters per second'),\n",
+ " ('100', 'ten 10s'),\n",
+ " ('degree centigrade', 'a degree on the centigrade scale of temperature'),\n",
+ " ('cytosine',\n",
+ " 'a base found in DNA and RNA and derived from pyrimidine; pairs with guanine'),\n",
+ " ('carbon',\n",
+ " 'an abundant nonmetallic tetravalent element occurring in three allotropic forms: amorphous carbon and graphite and diamond; occurs in all organic compounds'),\n",
+ " ('atomic number 6',\n",
+ " 'an abundant nonmetallic tetravalent element occurring in three allotropic forms: amorphous carbon and graphite and diamond; occurs in all organic compounds'),\n",
+ " ('one C', 'ten 10s'),\n",
+ " ('ascorbic acid',\n",
+ " 'a vitamin found in fresh fruits (especially citrus fruits) and vegetables; prevents scurvy')]},\n",
+ " {'answer': 'caesarean',\n",
+ " 'hint': 'synonyms for caesarean',\n",
+ " 'clues': [('caesarian delivery',\n",
+ " 'the delivery of a fetus by surgical incision through the abdominal wall and uterus (from the belief that Julius Caesar was born that way)'),\n",
+ " ('cesarian section',\n",
+ " 'the delivery of a fetus by surgical incision through the abdominal wall and uterus (from the belief that Julius Caesar was born that way)'),\n",
+ " ('cesarean',\n",
+ " 'the delivery of a fetus by surgical incision through the abdominal wall and uterus (from the belief that Julius Caesar was born that way)'),\n",
+ " ('abdominal delivery',\n",
+ " 'the delivery of a fetus by surgical incision through the abdominal wall and uterus (from the belief that Julius Caesar was born that way)'),\n",
+ " ('caesarian',\n",
+ " 'the delivery of a fetus by surgical incision through the abdominal wall and uterus (from the belief that Julius Caesar was born that way)')]},\n",
+ " {'answer': 'caesarian',\n",
+ " 'hint': 'synonyms for caesarian',\n",
+ " 'clues': [('caesarian delivery',\n",
+ " 'the delivery of a fetus by surgical incision through the abdominal wall and uterus (from the belief that Julius Caesar was born that way)'),\n",
+ " ('caesarean',\n",
+ " 'the delivery of a fetus by surgical incision through the abdominal wall and uterus (from the belief that Julius Caesar was born that way)'),\n",
+ " ('cesarian section',\n",
+ " 'the delivery of a fetus by surgical incision through the abdominal wall and uterus (from the belief that Julius Caesar was born that way)'),\n",
+ " ('abdominal delivery',\n",
+ " 'the delivery of a fetus by surgical incision through the abdominal wall and uterus (from the belief that Julius Caesar was born that way)'),\n",
+ " ('cesarian',\n",
+ " 'the delivery of a fetus by surgical incision through the abdominal wall and uterus (from the belief that Julius Caesar was born that way)')]},\n",
+ " {'answer': 'calm',\n",
+ " 'hint': 'synonyms for calm',\n",
+ " 'clues': [('equanimity', 'steadiness of mind under stress'),\n",
+ " ('composure', 'steadiness of mind under stress'),\n",
+ " ('calmness', 'steadiness of mind under stress'),\n",
+ " ('calm air',\n",
+ " 'wind moving at less than 1 knot; 0 on the Beaufort scale')]},\n",
+ " {'answer': 'camp',\n",
+ " 'hint': 'synonyms for camp',\n",
+ " 'clues': [('clique',\n",
+ " 'an exclusive circle of people with a common purpose'),\n",
+ " ('encampment',\n",
+ " 'temporary living quarters specially built by the army for soldiers'),\n",
+ " ('pack', 'an exclusive circle of people with a common purpose'),\n",
+ " ('summer camp',\n",
+ " 'a site where care and activities are provided for children during the summer months'),\n",
+ " ('inner circle', 'an exclusive circle of people with a common purpose'),\n",
+ " ('bivouac',\n",
+ " 'temporary living quarters specially built by the army for soldiers'),\n",
+ " ('ingroup', 'an exclusive circle of people with a common purpose'),\n",
+ " ('coterie', 'an exclusive circle of people with a common purpose'),\n",
+ " ('cantonment',\n",
+ " 'temporary living quarters specially built by the army for soldiers'),\n",
+ " ('refugee camp',\n",
+ " 'shelter for persons displaced by war or political oppression or for religious beliefs')]},\n",
+ " {'answer': 'capital',\n",
+ " 'hint': 'synonyms for capital',\n",
+ " 'clues': [('working capital',\n",
+ " 'assets available for use in the production of further assets'),\n",
+ " ('cap', 'the upper part of a column that supports the entablature'),\n",
+ " ('chapiter', 'the upper part of a column that supports the entablature'),\n",
+ " ('majuscule',\n",
+ " 'one of the large alphabetic characters used as the first letter in writing or printing proper names and sometimes for emphasis'),\n",
+ " ('capital letter',\n",
+ " 'one of the large alphabetic characters used as the first letter in writing or printing proper names and sometimes for emphasis'),\n",
+ " ('uppercase',\n",
+ " 'one of the large alphabetic characters used as the first letter in writing or printing proper names and sometimes for emphasis'),\n",
+ " ('upper-case letter',\n",
+ " 'one of the large alphabetic characters used as the first letter in writing or printing proper names and sometimes for emphasis')]},\n",
+ " {'answer': 'caramel',\n",
+ " 'hint': 'synonyms for caramel',\n",
+ " 'clues': [('buff', 'a medium to dark tan color'),\n",
+ " ('raw sienna', 'a medium to dark tan color'),\n",
+ " ('caramel brown', 'a medium to dark tan color'),\n",
+ " ('yellowish brown', 'a medium to dark tan color'),\n",
+ " ('caramelized sugar', 'burnt sugar; used to color and flavor food')]},\n",
+ " {'answer': 'caramel_brown',\n",
+ " 'hint': 'synonyms for caramel brown',\n",
+ " 'clues': [('yellowish brown', 'a medium to dark tan color'),\n",
+ " ('caramel', 'a medium to dark tan color'),\n",
+ " ('raw sienna', 'a medium to dark tan color'),\n",
+ " ('buff', 'a medium to dark tan color')]},\n",
+ " {'answer': 'catching',\n",
+ " 'hint': 'synonyms for catching',\n",
+ " 'clues': [('spotting',\n",
+ " 'the act of detecting something; catching sight of something'),\n",
+ " ('espial', 'the act of detecting something; catching sight of something'),\n",
+ " ('detection',\n",
+ " 'the act of detecting something; catching sight of something'),\n",
+ " ('contracting', 'becoming infected'),\n",
+ " ('spying',\n",
+ " 'the act of detecting something; catching sight of something')]},\n",
+ " {'answer': 'cc',\n",
+ " 'hint': 'synonyms for cc',\n",
+ " 'clues': [('cubic centimeter',\n",
+ " 'a metric unit of volume equal to one thousandth of a liter'),\n",
+ " ('ml', 'a metric unit of volume equal to one thousandth of a liter'),\n",
+ " ('milliliter',\n",
+ " 'a metric unit of volume equal to one thousandth of a liter'),\n",
+ " ('mil', 'a metric unit of volume equal to one thousandth of a liter')]},\n",
+ " {'answer': 'cd',\n",
+ " 'hint': 'synonyms for cd',\n",
+ " 'clues': [('candela',\n",
+ " \"the basic unit of luminous intensity adopted under the Systeme International d'Unites; equal to 1/60 of the luminous intensity per square centimeter of a black body radiating at the temperature of 2,046 degrees Kelvin\"),\n",
+ " ('standard candle',\n",
+ " \"the basic unit of luminous intensity adopted under the Systeme International d'Unites; equal to 1/60 of the luminous intensity per square centimeter of a black body radiating at the temperature of 2,046 degrees Kelvin\"),\n",
+ " ('compact disk',\n",
+ " 'a digitally encoded recording on an optical disk that is smaller than a phonograph record; played back by a laser'),\n",
+ " ('candle',\n",
+ " \"the basic unit of luminous intensity adopted under the Systeme International d'Unites; equal to 1/60 of the luminous intensity per square centimeter of a black body radiating at the temperature of 2,046 degrees Kelvin\"),\n",
+ " ('cadmium',\n",
+ " 'a soft bluish-white ductile malleable toxic bivalent metallic element; occurs in association with zinc ores'),\n",
+ " ('atomic number 48',\n",
+ " 'a soft bluish-white ductile malleable toxic bivalent metallic element; occurs in association with zinc ores'),\n",
+ " ('certificate of deposit',\n",
+ " 'a debt instrument issued by a bank; usually pays interest')]},\n",
+ " {'answer': 'center',\n",
+ " 'hint': 'synonyms for center',\n",
+ " 'clues': [('mall',\n",
+ " 'mercantile establishment consisting of a carefully landscaped complex of shops representing leading merchandisers; usually includes restaurants and a convenient parking area; a modern version of the traditional marketplace'),\n",
+ " ('middle',\n",
+ " 'an area that is approximately central within some larger region'),\n",
+ " ('shopping mall',\n",
+ " 'mercantile establishment consisting of a carefully landscaped complex of shops representing leading merchandisers; usually includes restaurants and a convenient parking area; a modern version of the traditional marketplace'),\n",
+ " ('centerfield',\n",
+ " 'the piece of ground in the outfield directly ahead of the catcher'),\n",
+ " ('centre', 'a building dedicated to a particular activity'),\n",
+ " ('sum',\n",
+ " 'the choicest or most essential or most vital part of some idea or experience'),\n",
+ " ('heart',\n",
+ " 'an area that is approximately central within some larger region'),\n",
+ " ('pith',\n",
+ " 'the choicest or most essential or most vital part of some idea or experience'),\n",
+ " ('midpoint',\n",
+ " 'a point equidistant from the ends of a line or the extremities of a figure'),\n",
+ " ('center of attention',\n",
+ " 'the object upon which interest and attention focuses'),\n",
+ " ('shopping centre',\n",
+ " 'mercantile establishment consisting of a carefully landscaped complex of shops representing leading merchandisers; usually includes restaurants and a convenient parking area; a modern version of the traditional marketplace'),\n",
+ " ('essence',\n",
+ " 'the choicest or most essential or most vital part of some idea or experience'),\n",
+ " ('meat',\n",
+ " 'the choicest or most essential or most vital part of some idea or experience'),\n",
+ " ('kernel',\n",
+ " 'the choicest or most essential or most vital part of some idea or experience'),\n",
+ " ('core',\n",
+ " 'the choicest or most essential or most vital part of some idea or experience'),\n",
+ " ('substance',\n",
+ " 'the choicest or most essential or most vital part of some idea or experience'),\n",
+ " ('nub',\n",
+ " 'the choicest or most essential or most vital part of some idea or experience'),\n",
+ " ('plaza',\n",
+ " 'mercantile establishment consisting of a carefully landscaped complex of shops representing leading merchandisers; usually includes restaurants and a convenient parking area; a modern version of the traditional marketplace'),\n",
+ " ('gist',\n",
+ " 'the choicest or most essential or most vital part of some idea or experience'),\n",
+ " ('eye',\n",
+ " 'an area that is approximately central within some larger region'),\n",
+ " ('heart and soul',\n",
+ " 'the choicest or most essential or most vital part of some idea or experience'),\n",
+ " ('nitty-gritty',\n",
+ " 'the choicest or most essential or most vital part of some idea or experience'),\n",
+ " ('inwardness',\n",
+ " 'the choicest or most essential or most vital part of some idea or experience'),\n",
+ " ('marrow',\n",
+ " 'the choicest or most essential or most vital part of some idea or experience')]},\n",
+ " {'answer': 'cerulean',\n",
+ " 'hint': 'synonyms for cerulean',\n",
+ " 'clues': [('azure', 'a light shade of blue'),\n",
+ " ('sapphire', 'a light shade of blue'),\n",
+ " ('lazuline', 'a light shade of blue'),\n",
+ " ('sky-blue', 'a light shade of blue')]},\n",
+ " {'answer': 'cesarean',\n",
+ " 'hint': 'synonyms for cesarean',\n",
+ " 'clues': [('caesarian delivery',\n",
+ " 'the delivery of a fetus by surgical incision through the abdominal wall and uterus (from the belief that Julius Caesar was born that way)'),\n",
+ " ('caesarean',\n",
+ " 'the delivery of a fetus by surgical incision through the abdominal wall and uterus (from the belief that Julius Caesar was born that way)'),\n",
+ " ('cesarian section',\n",
+ " 'the delivery of a fetus by surgical incision through the abdominal wall and uterus (from the belief that Julius Caesar was born that way)'),\n",
+ " ('abdominal delivery',\n",
+ " 'the delivery of a fetus by surgical incision through the abdominal wall and uterus (from the belief that Julius Caesar was born that way)'),\n",
+ " ('cesarian',\n",
+ " 'the delivery of a fetus by surgical incision through the abdominal wall and uterus (from the belief that Julius Caesar was born that way)')]},\n",
+ " {'answer': 'cesarian',\n",
+ " 'hint': 'synonyms for cesarian',\n",
+ " 'clues': [('caesarian delivery',\n",
+ " 'the delivery of a fetus by surgical incision through the abdominal wall and uterus (from the belief that Julius Caesar was born that way)'),\n",
+ " ('caesarean',\n",
+ " 'the delivery of a fetus by surgical incision through the abdominal wall and uterus (from the belief that Julius Caesar was born that way)'),\n",
+ " ('cesarian section',\n",
+ " 'the delivery of a fetus by surgical incision through the abdominal wall and uterus (from the belief that Julius Caesar was born that way)'),\n",
+ " ('abdominal delivery',\n",
+ " 'the delivery of a fetus by surgical incision through the abdominal wall and uterus (from the belief that Julius Caesar was born that way)')]},\n",
+ " {'answer': 'chance',\n",
+ " 'hint': 'synonyms for chance',\n",
+ " 'clues': [('fortune',\n",
+ " 'an unknown and unpredictable phenomenon that causes an event to result one way rather than another'),\n",
+ " ('hazard',\n",
+ " 'an unknown and unpredictable phenomenon that causes an event to result one way rather than another'),\n",
+ " ('probability',\n",
+ " 'a measure of how likely it is that some event will occur; a number expressing the ratio of favorable cases to the whole number of cases possible'),\n",
+ " ('luck',\n",
+ " 'an unknown and unpredictable phenomenon that causes an event to result one way rather than another')]},\n",
+ " {'answer': 'charcoal',\n",
+ " 'hint': 'synonyms for charcoal',\n",
+ " 'clues': [('fusain', 'a stick of black carbon material used for drawing'),\n",
+ " ('oxford grey', 'a very dark grey color'),\n",
+ " ('wood coal',\n",
+ " 'a carbonaceous material obtained by heating wood or other organic matter in the absence of air'),\n",
+ " ('charcoal gray', 'a very dark grey color')]},\n",
+ " {'answer': 'chic',\n",
+ " 'hint': 'synonyms for chic',\n",
+ " 'clues': [('chicness', 'elegance by virtue of being fashionable'),\n",
+ " ('stylishness', 'elegance by virtue of being fashionable'),\n",
+ " ('last word', 'elegance by virtue of being fashionable'),\n",
+ " ('smartness', 'elegance by virtue of being fashionable'),\n",
+ " ('swank', 'elegance by virtue of being fashionable'),\n",
+ " ('chichi', 'elegance by virtue of being fashionable'),\n",
+ " ('modishness', 'elegance by virtue of being fashionable')]},\n",
+ " {'answer': 'chichi',\n",
+ " 'hint': 'synonyms for chichi',\n",
+ " 'clues': [('chicness', 'elegance by virtue of being fashionable'),\n",
+ " ('stylishness', 'elegance by virtue of being fashionable'),\n",
+ " ('last word', 'elegance by virtue of being fashionable'),\n",
+ " ('smartness', 'elegance by virtue of being fashionable'),\n",
+ " ('swank', 'elegance by virtue of being fashionable'),\n",
+ " ('modishness', 'elegance by virtue of being fashionable'),\n",
+ " ('chic', 'elegance by virtue of being fashionable')]},\n",
+ " {'answer': 'choice',\n",
+ " 'hint': 'synonyms for choice',\n",
+ " 'clues': [('option', 'the act of choosing or selecting'),\n",
+ " ('pick', 'the act of choosing or selecting'),\n",
+ " ('selection', 'the person or thing chosen or selected'),\n",
+ " ('alternative',\n",
+ " 'one of a number of things from which only one can be chosen')]},\n",
+ " {'answer': 'circular',\n",
+ " 'hint': 'synonyms for circular',\n",
+ " 'clues': [('bill',\n",
+ " 'an advertisement (usually printed on a page or in a leaflet) intended for wide distribution'),\n",
+ " ('throwaway',\n",
+ " 'an advertisement (usually printed on a page or in a leaflet) intended for wide distribution'),\n",
+ " ('flyer',\n",
+ " 'an advertisement (usually printed on a page or in a leaflet) intended for wide distribution'),\n",
+ " ('flier',\n",
+ " 'an advertisement (usually printed on a page or in a leaflet) intended for wide distribution'),\n",
+ " ('handbill',\n",
+ " 'an advertisement (usually printed on a page or in a leaflet) intended for wide distribution'),\n",
+ " ('broadsheet',\n",
+ " 'an advertisement (usually printed on a page or in a leaflet) intended for wide distribution'),\n",
+ " ('broadside',\n",
+ " 'an advertisement (usually printed on a page or in a leaflet) intended for wide distribution')]},\n",
+ " {'answer': 'cleft',\n",
+ " 'hint': 'synonyms for cleft',\n",
+ " 'clues': [('scissure', 'a long narrow opening'),\n",
+ " ('crevice', 'a long narrow opening'),\n",
+ " ('fissure', 'a long narrow opening'),\n",
+ " ('crack', 'a long narrow opening')]},\n",
+ " {'answer': 'close',\n",
+ " 'hint': 'synonyms for close',\n",
+ " 'clues': [('closing', 'the last section of a communication'),\n",
+ " ('stopping point', 'the temporal end; the concluding time'),\n",
+ " ('finale', 'the temporal end; the concluding time'),\n",
+ " ('finis', 'the temporal end; the concluding time'),\n",
+ " ('conclusion', 'the last section of a communication'),\n",
+ " ('end', 'the last section of a communication'),\n",
+ " ('last', 'the temporal end; the concluding time'),\n",
+ " ('closing curtain', 'the concluding part of any performance')]},\n",
+ " {'answer': 'closing',\n",
+ " 'hint': 'synonyms for closing',\n",
+ " 'clues': [('mop up', 'a concluding action'),\n",
+ " ('closedown', 'termination of operations'),\n",
+ " ('shutdown', 'termination of operations'),\n",
+ " ('closure', 'termination of operations'),\n",
+ " ('shutting', 'the act of closing something'),\n",
+ " ('conclusion', 'the last section of a communication'),\n",
+ " ('culmination', 'a concluding action'),\n",
+ " ('windup', 'a concluding action'),\n",
+ " ('end', 'the last section of a communication'),\n",
+ " ('close', 'the last section of a communication'),\n",
+ " ('completion', 'a concluding action')]},\n",
+ " {'answer': 'cold',\n",
+ " 'hint': 'synonyms for cold',\n",
+ " 'clues': [('frigidness', 'the absence of heat'),\n",
+ " ('coldness', 'the absence of heat'),\n",
+ " ('low temperature', 'the absence of heat'),\n",
+ " ('frigidity', 'the absence of heat')]},\n",
+ " {'answer': 'color',\n",
+ " 'hint': 'synonyms for color',\n",
+ " 'clues': [('coloration', 'the timbre of a musical sound'),\n",
+ " ('people of color',\n",
+ " 'a race with skin pigmentation different from the white race (especially Blacks)'),\n",
+ " ('colour', 'the timbre of a musical sound'),\n",
+ " ('gloss',\n",
+ " 'an outward or token appearance or form that is deliberately misleading'),\n",
+ " ('coloring material', 'any material used for its color'),\n",
+ " ('coloring',\n",
+ " 'a visual attribute of things that results from the light they emit or transmit or reflect'),\n",
+ " ('vividness', 'interest and variety and intensity'),\n",
+ " ('semblance',\n",
+ " 'an outward or token appearance or form that is deliberately misleading')]},\n",
+ " {'answer': 'colour',\n",
+ " 'hint': 'synonyms for colour',\n",
+ " 'clues': [('people of color',\n",
+ " 'a race with skin pigmentation different from the white race (especially Blacks)'),\n",
+ " ('coloration', 'the timbre of a musical sound'),\n",
+ " ('gloss',\n",
+ " 'an outward or token appearance or form that is deliberately misleading'),\n",
+ " ('coloring material', 'any material used for its color'),\n",
+ " ('color', 'the timbre of a musical sound'),\n",
+ " ('colouring',\n",
+ " 'a visual attribute of things that results from the light they emit or transmit or reflect'),\n",
+ " ('vividness', 'interest and variety and intensity'),\n",
+ " ('semblance',\n",
+ " 'an outward or token appearance or form that is deliberately misleading')]},\n",
+ " {'answer': 'comestible',\n",
+ " 'hint': 'synonyms for comestible',\n",
+ " 'clues': [('victual', 'any substance that can be used as food'),\n",
+ " ('eatable', 'any substance that can be used as food'),\n",
+ " ('edible', 'any substance that can be used as food'),\n",
+ " ('pabulum', 'any substance that can be used as food')]},\n",
+ " {'answer': 'coming',\n",
+ " 'hint': 'synonyms for coming',\n",
+ " 'clues': [('approach', 'the act of drawing spatially closer to something'),\n",
+ " ('advent',\n",
+ " 'arrival that has been awaited (especially of something momentous)'),\n",
+ " ('sexual climax',\n",
+ " 'the moment of most intense pleasure in sexual intercourse'),\n",
+ " ('climax', 'the moment of most intense pleasure in sexual intercourse'),\n",
+ " ('orgasm', 'the moment of most intense pleasure in sexual intercourse')]},\n",
+ " {'answer': 'commonplace',\n",
+ " 'hint': 'synonyms for commonplace',\n",
+ " 'clues': [('cliche', 'a trite or obvious remark'),\n",
+ " ('platitude', 'a trite or obvious remark'),\n",
+ " ('bromide', 'a trite or obvious remark'),\n",
+ " ('banality', 'a trite or obvious remark')]},\n",
+ " {'answer': 'compact',\n",
+ " 'hint': 'synonyms for compact',\n",
+ " 'clues': [('powder compact',\n",
+ " \"a small cosmetics case with a mirror; to be carried in a woman's purse\"),\n",
+ " ('covenant',\n",
+ " 'a signed written agreement between two or more parties (nations) to perform some action'),\n",
+ " ('compact car', 'a small and economical car'),\n",
+ " ('concordat',\n",
+ " 'a signed written agreement between two or more parties (nations) to perform some action')]},\n",
+ " {'answer': 'connective',\n",
+ " 'hint': 'synonyms for connective',\n",
+ " 'clues': [('conjunction',\n",
+ " 'an uninflected function word that serves to conjoin words or phrases or clauses or sentences'),\n",
+ " ('conjunctive',\n",
+ " 'an uninflected function word that serves to conjoin words or phrases or clauses or sentences'),\n",
+ " ('connecter', 'an instrumentality that connects'),\n",
+ " ('connexion', 'an instrumentality that connects'),\n",
+ " ('continuative',\n",
+ " 'an uninflected function word that serves to conjoin words or phrases or clauses or sentences')]},\n",
+ " {'answer': 'constituent',\n",
+ " 'hint': 'synonyms for constituent',\n",
+ " 'clues': [('component', 'an abstract part of something'),\n",
+ " ('element',\n",
+ " 'an artifact that is one of the individual parts of which a composite entity is made up; especially a part that can be separated from or attached to a system'),\n",
+ " ('component part',\n",
+ " 'something determined in relation to something that includes it'),\n",
+ " ('portion',\n",
+ " 'something determined in relation to something that includes it'),\n",
+ " ('grammatical constituent',\n",
+ " '(grammar) a word or phrase or clause forming part of a larger grammatical construction'),\n",
+ " ('factor', 'an abstract part of something'),\n",
+ " ('ingredient', 'an abstract part of something'),\n",
+ " ('part',\n",
+ " 'something determined in relation to something that includes it')]},\n",
+ " {'answer': 'content',\n",
+ " 'hint': 'synonyms for content',\n",
+ " 'clues': [('cognitive content',\n",
+ " 'the sum or range of what has been perceived, discovered, or learned'),\n",
+ " ('message', 'what a communication that is about something is about'),\n",
+ " ('substance', 'what a communication that is about something is about'),\n",
+ " ('capacity', 'the amount that can be contained'),\n",
+ " ('depicted object',\n",
+ " 'something (a person or object or scene) selected by an artist or photographer for graphic representation'),\n",
+ " ('subject',\n",
+ " 'something (a person or object or scene) selected by an artist or photographer for graphic representation'),\n",
+ " ('subject matter',\n",
+ " 'what a communication that is about something is about'),\n",
+ " ('mental object',\n",
+ " 'the sum or range of what has been perceived, discovered, or learned')]},\n",
+ " {'answer': 'contrabass',\n",
+ " 'hint': 'synonyms for contrabass',\n",
+ " 'clues': [('bass fiddle',\n",
+ " 'largest and lowest member of the violin family'),\n",
+ " ('string bass', 'largest and lowest member of the violin family'),\n",
+ " ('bull fiddle', 'largest and lowest member of the violin family'),\n",
+ " ('double bass', 'largest and lowest member of the violin family'),\n",
+ " ('bass viol', 'largest and lowest member of the violin family')]},\n",
+ " {'answer': 'contraceptive',\n",
+ " 'hint': 'synonyms for contraceptive',\n",
+ " 'clues': [('contraceptive device',\n",
+ " 'an agent or device intended to prevent conception'),\n",
+ " ('prophylactic device',\n",
+ " 'an agent or device intended to prevent conception'),\n",
+ " ('preventative', 'an agent or device intended to prevent conception'),\n",
+ " ('birth control device',\n",
+ " 'an agent or device intended to prevent conception')]},\n",
+ " {'answer': 'cool',\n",
+ " 'hint': 'synonyms for cool',\n",
+ " 'clues': [('assuredness', 'great coolness and composure under strain'),\n",
+ " ('poise', 'great coolness and composure under strain'),\n",
+ " ('aplomb', 'great coolness and composure under strain'),\n",
+ " ('sang-froid', 'great coolness and composure under strain')]},\n",
+ " {'answer': 'counter',\n",
+ " 'hint': 'synonyms for counter',\n",
+ " 'clues': [('rejoinder',\n",
+ " 'a quick reply to a question or remark (especially a witty or critical one)'),\n",
+ " ('parry', 'a return punch (especially by a boxer)'),\n",
+ " ('return',\n",
+ " 'a quick reply to a question or remark (especially a witty or critical one)'),\n",
+ " ('heel counter', 'a piece of leather forming the back of a shoe or boot'),\n",
+ " ('riposte',\n",
+ " 'a quick reply to a question or remark (especially a witty or critical one)'),\n",
+ " ('sideboard',\n",
+ " 'a piece of furniture that stands at the side of a dining room; has shelves and drawers'),\n",
+ " ('counterpunch', 'a return punch (especially by a boxer)'),\n",
+ " ('buffet',\n",
+ " 'a piece of furniture that stands at the side of a dining room; has shelves and drawers'),\n",
+ " ('retort',\n",
+ " 'a quick reply to a question or remark (especially a witty or critical one)'),\n",
+ " ('tabulator',\n",
+ " 'a calculator that keeps a record of the number of times something happens'),\n",
+ " ('comeback',\n",
+ " 'a quick reply to a question or remark (especially a witty or critical one)'),\n",
+ " ('replication',\n",
+ " 'a quick reply to a question or remark (especially a witty or critical one)')]},\n",
+ " {'answer': 'crack',\n",
+ " 'hint': 'synonyms for crack',\n",
+ " 'clues': [('wisecrack', 'witty remark'),\n",
+ " ('fissure', 'a long narrow opening'),\n",
+ " ('snap', 'a sudden sharp noise'),\n",
+ " ('go', 'a usually brief attempt'),\n",
+ " ('scissure', 'a long narrow opening'),\n",
+ " ('pass', 'a usually brief attempt'),\n",
+ " ('chap', 'a long narrow depression in a surface'),\n",
+ " ('whirl', 'a usually brief attempt'),\n",
+ " ('crevice', 'a long narrow opening'),\n",
+ " ('cranny', 'a long narrow depression in a surface'),\n",
+ " ('quip', 'witty remark'),\n",
+ " ('crack cocaine',\n",
+ " 'a purified and potent form of cocaine that is smoked rather than snorted; highly addictive'),\n",
+ " ('cracking', 'a sudden sharp noise'),\n",
+ " ('tornado',\n",
+ " 'a purified and potent form of cocaine that is smoked rather than snorted; highly addictive'),\n",
+ " ('fling', 'a usually brief attempt'),\n",
+ " ('sally', 'witty remark'),\n",
+ " ('offer', 'a usually brief attempt'),\n",
+ " ('cleft', 'a long narrow opening'),\n",
+ " ('gap', 'a narrow opening'),\n",
+ " ('fracture', 'the act of cracking something')]},\n",
+ " {'answer': 'crackers',\n",
+ " 'hint': 'synonyms for crackers',\n",
+ " 'clues': [('snapper',\n",
+ " 'a party favor consisting of a paper roll (usually containing candy or a small favor) that pops when pulled at both ends'),\n",
+ " ('cracker',\n",
+ " 'firework consisting of a small explosive charge and fuse in a heavy paper casing'),\n",
+ " ('cracker bonbon',\n",
+ " 'a party favor consisting of a paper roll (usually containing candy or a small favor) that pops when pulled at both ends'),\n",
+ " ('banger',\n",
+ " 'firework consisting of a small explosive charge and fuse in a heavy paper casing'),\n",
+ " ('firecracker',\n",
+ " 'firework consisting of a small explosive charge and fuse in a heavy paper casing')]},\n",
+ " {'answer': 'crackle',\n",
+ " 'hint': 'synonyms for crackle',\n",
+ " 'clues': [('crepitation', 'the sharp sound of snapping noises'),\n",
+ " ('crackleware',\n",
+ " 'glazed china with a network of fine cracks on the surface'),\n",
+ " ('crackle china',\n",
+ " 'glazed china with a network of fine cracks on the surface'),\n",
+ " ('crackling', 'the sharp sound of snapping noises')]},\n",
+ " {'answer': 'crank',\n",
+ " 'hint': 'synonyms for crank',\n",
+ " 'clues': [('trash',\n",
+ " 'an amphetamine derivative (trade name Methedrine) used in the form of a crystalline hydrochloride; used as a stimulant to the nervous system and as an appetite suppressant'),\n",
+ " ('chicken feed',\n",
+ " 'an amphetamine derivative (trade name Methedrine) used in the form of a crystalline hydrochloride; used as a stimulant to the nervous system and as an appetite suppressant'),\n",
+ " ('shabu',\n",
+ " 'an amphetamine derivative (trade name Methedrine) used in the form of a crystalline hydrochloride; used as a stimulant to the nervous system and as an appetite suppressant'),\n",
+ " ('starter',\n",
+ " 'a hand tool consisting of a rotating shaft with parallel handle'),\n",
+ " ('glass',\n",
+ " 'an amphetamine derivative (trade name Methedrine) used in the form of a crystalline hydrochloride; used as a stimulant to the nervous system and as an appetite suppressant'),\n",
+ " ('methamphetamine',\n",
+ " 'an amphetamine derivative (trade name Methedrine) used in the form of a crystalline hydrochloride; used as a stimulant to the nervous system and as an appetite suppressant'),\n",
+ " ('methamphetamine hydrochloride',\n",
+ " 'an amphetamine derivative (trade name Methedrine) used in the form of a crystalline hydrochloride; used as a stimulant to the nervous system and as an appetite suppressant'),\n",
+ " ('ice',\n",
+ " 'an amphetamine derivative (trade name Methedrine) used in the form of a crystalline hydrochloride; used as a stimulant to the nervous system and as an appetite suppressant'),\n",
+ " ('deoxyephedrine',\n",
+ " 'an amphetamine derivative (trade name Methedrine) used in the form of a crystalline hydrochloride; used as a stimulant to the nervous system and as an appetite suppressant'),\n",
+ " ('chalk',\n",
+ " 'an amphetamine derivative (trade name Methedrine) used in the form of a crystalline hydrochloride; used as a stimulant to the nervous system and as an appetite suppressant'),\n",
+ " ('meth',\n",
+ " 'an amphetamine derivative (trade name Methedrine) used in the form of a crystalline hydrochloride; used as a stimulant to the nervous system and as an appetite suppressant')]},\n",
+ " {'answer': 'cross',\n",
+ " 'hint': 'synonyms for cross',\n",
+ " 'clues': [('hybridizing',\n",
+ " '(genetics) the act of mixing different species or varieties of animals or plants and thus to produce hybrids'),\n",
+ " ('crisscross', 'a marking that consists of lines that cross each other'),\n",
+ " ('hybridisation',\n",
+ " '(genetics) the act of mixing different species or varieties of animals or plants and thus to produce hybrids'),\n",
+ " ('mark', 'a marking that consists of lines that cross each other'),\n",
+ " ('crossbreeding',\n",
+ " '(genetics) the act of mixing different species or varieties of animals or plants and thus to produce hybrids'),\n",
+ " ('interbreeding',\n",
+ " '(genetics) the act of mixing different species or varieties of animals or plants and thus to produce hybrids'),\n",
+ " ('crossing',\n",
+ " '(genetics) the act of mixing different species or varieties of animals or plants and thus to produce hybrids')]},\n",
+ " {'answer': 'crowing',\n",
+ " 'hint': 'synonyms for crowing',\n",
+ " 'clues': [('line-shooting', 'an instance of boastful talk'),\n",
+ " ('gasconade', 'an instance of boastful talk'),\n",
+ " ('vaporing', 'an instance of boastful talk'),\n",
+ " ('bragging', 'an instance of boastful talk'),\n",
+ " ('crow', 'an instance of boastful talk'),\n",
+ " ('brag', 'an instance of boastful talk')]},\n",
+ " {'answer': 'crude',\n",
+ " 'hint': 'synonyms for crude',\n",
+ " 'clues': [('oil', 'a dark oil consisting mainly of hydrocarbons'),\n",
+ " ('crude oil', 'a dark oil consisting mainly of hydrocarbons'),\n",
+ " ('fossil oil', 'a dark oil consisting mainly of hydrocarbons'),\n",
+ " ('rock oil', 'a dark oil consisting mainly of hydrocarbons'),\n",
+ " ('petroleum', 'a dark oil consisting mainly of hydrocarbons')]},\n",
+ " {'answer': 'crying',\n",
+ " 'hint': 'synonyms for crying',\n",
+ " 'clues': [('battle cry', 'a slogan used to rally support for a cause'),\n",
+ " ('cry', 'a loud utterance; often in protest or opposition'),\n",
+ " ('watchword', 'a slogan used to rally support for a cause'),\n",
+ " ('outcry', 'a loud utterance; often in protest or opposition'),\n",
+ " ('yell', 'a loud utterance of emotion (especially when inarticulate)'),\n",
+ " ('shout', 'a loud utterance; often in protest or opposition'),\n",
+ " ('call', 'a loud utterance; often in protest or opposition'),\n",
+ " ('war cry', 'a slogan used to rally support for a cause'),\n",
+ " ('rallying cry', 'a slogan used to rally support for a cause'),\n",
+ " ('tears',\n",
+ " 'the process of shedding tears (usually accompanied by sobs or other inarticulate sounds)'),\n",
+ " ('vociferation', 'a loud utterance; often in protest or opposition'),\n",
+ " ('weeping',\n",
+ " 'the process of shedding tears (usually accompanied by sobs or other inarticulate sounds)')]},\n",
+ " {'answer': 'cunning',\n",
+ " 'hint': 'synonyms for cunning',\n",
+ " 'clues': [('craft',\n",
+ " 'shrewdness as demonstrated by being skilled in deception'),\n",
+ " ('slyness', 'shrewdness as demonstrated by being skilled in deception'),\n",
+ " ('guile', 'shrewdness as demonstrated by being skilled in deception'),\n",
+ " ('wiliness', 'shrewdness as demonstrated by being skilled in deception'),\n",
+ " ('foxiness', 'shrewdness as demonstrated by being skilled in deception'),\n",
+ " ('craftiness',\n",
+ " 'shrewdness as demonstrated by being skilled in deception')]},\n",
+ " {'answer': 'custom',\n",
+ " 'hint': 'synonyms for custom',\n",
+ " 'clues': [('impost', 'money collected under a tariff'),\n",
+ " ('tradition', 'a specific practice of long standing'),\n",
+ " ('usance', 'accepted or habitual practice'),\n",
+ " ('customs duty', 'money collected under a tariff'),\n",
+ " ('usage', 'accepted or habitual practice'),\n",
+ " ('customs', 'money collected under a tariff')]},\n",
+ " {'answer': 'cut',\n",
+ " 'hint': 'synonyms for cut',\n",
+ " 'clues': [('excision',\n",
+ " 'the omission that is made when an editorial change shortens a written passage'),\n",
+ " ('cold shoulder', 'a refusal to recognize someone you know'),\n",
+ " ('swing', \"in baseball; a batter's attempt to hit a pitched ball\"),\n",
+ " ('cutting off',\n",
+ " 'the act of shortening something by chopping off the ends'),\n",
+ " ('gash',\n",
+ " 'a trench resembling a furrow that was made by erosion or excavation'),\n",
+ " ('baseball swing',\n",
+ " \"in baseball; a batter's attempt to hit a pitched ball\"),\n",
+ " ('cutting', 'the division of a deck of cards before dealing'),\n",
+ " ('track',\n",
+ " 'a distinct selection of music from a recording or a compact disc'),\n",
+ " ('undercut', '(sports) a stroke that puts reverse spin on the ball'),\n",
+ " ('snub', 'a refusal to recognize someone you know'),\n",
+ " ('stinger', 'a remark capable of wounding mentally'),\n",
+ " ('deletion',\n",
+ " 'the omission that is made when an editorial change shortens a written passage'),\n",
+ " ('cut of meat',\n",
+ " 'a piece of meat that has been cut from an animal carcass')]},\n",
+ " {'answer': 'cutting',\n",
+ " 'hint': 'synonyms for cutting',\n",
+ " 'clues': [('press clipping',\n",
+ " 'an excerpt cut from a newspaper or magazine'),\n",
+ " ('cut', 'the act of shortening something by chopping off the ends'),\n",
+ " ('press cutting', 'an excerpt cut from a newspaper or magazine'),\n",
+ " ('cutting off',\n",
+ " 'the act of shortening something by chopping off the ends'),\n",
+ " ('carving',\n",
+ " 'removing parts from hard material to create a desired pattern or shape'),\n",
+ " ('clipping', 'an excerpt cut from a newspaper or magazine'),\n",
+ " ('thinning', 'the act of diluting something'),\n",
+ " ('newspaper clipping', 'an excerpt cut from a newspaper or magazine'),\n",
+ " ('film editing',\n",
+ " 'the activity of selecting the scenes to be shown and putting them together to create a film')]},\n",
+ " {'answer': 'd',\n",
+ " 'hint': 'synonyms for d',\n",
+ " 'clues': [('vitamin D', 'a fat-soluble vitamin that prevents rickets'),\n",
+ " ('cholecalciferol', 'a fat-soluble vitamin that prevents rickets'),\n",
+ " ('calciferol', 'a fat-soluble vitamin that prevents rickets'),\n",
+ " ('500',\n",
+ " 'the cardinal number that is the product of one hundred and five'),\n",
+ " ('ergocalciferol', 'a fat-soluble vitamin that prevents rickets'),\n",
+ " ('viosterol', 'a fat-soluble vitamin that prevents rickets'),\n",
+ " ('five hundred',\n",
+ " 'the cardinal number that is the product of one hundred and five')]},\n",
+ " {'answer': 'dainty',\n",
+ " 'hint': 'synonyms for dainty',\n",
+ " 'clues': [('goody', 'something considered choice to eat'),\n",
+ " ('treat', 'something considered choice to eat'),\n",
+ " ('kickshaw', 'something considered choice to eat'),\n",
+ " ('delicacy', 'something considered choice to eat')]},\n",
+ " {'answer': 'damn',\n",
+ " 'hint': 'synonyms for damn',\n",
+ " 'clues': [(\"tinker's damn\", 'something of little value'),\n",
+ " ('shucks', 'something of little value'),\n",
+ " ('darn', 'something of little value'),\n",
+ " ('red cent', 'something of little value'),\n",
+ " ('shit', 'something of little value'),\n",
+ " ('hoot', 'something of little value')]},\n",
+ " {'answer': 'daring',\n",
+ " 'hint': 'synonyms for daring',\n",
+ " 'clues': [('dare', 'a challenge to do something dangerous or foolhardy'),\n",
+ " ('boldness',\n",
+ " 'the trait of being willing to undertake things that involve risk or danger'),\n",
+ " ('hardiness',\n",
+ " 'the trait of being willing to undertake things that involve risk or danger'),\n",
+ " ('hardihood',\n",
+ " 'the trait of being willing to undertake things that involve risk or danger')]},\n",
+ " {'answer': 'dark',\n",
+ " 'hint': 'synonyms for dark',\n",
+ " 'clues': [('darkness', 'an unilluminated area'),\n",
+ " ('shadow', 'an unilluminated area'),\n",
+ " ('nighttime',\n",
+ " 'the time after sunset and before sunrise while it is dark outside'),\n",
+ " ('night',\n",
+ " 'the time after sunset and before sunrise while it is dark outside')]},\n",
+ " {'answer': 'declarative',\n",
+ " 'hint': 'synonyms for declarative',\n",
+ " 'clues': [('indicative mood',\n",
+ " 'a mood (grammatically unmarked) that represents the act or state as an objective fact'),\n",
+ " ('common mood',\n",
+ " 'a mood (grammatically unmarked) that represents the act or state as an objective fact'),\n",
+ " ('fact mood',\n",
+ " 'a mood (grammatically unmarked) that represents the act or state as an objective fact'),\n",
+ " ('indicative',\n",
+ " 'a mood (grammatically unmarked) that represents the act or state as an objective fact'),\n",
+ " ('declarative mood',\n",
+ " 'a mood (grammatically unmarked) that represents the act or state as an objective fact')]},\n",
+ " {'answer': 'derivative',\n",
+ " 'hint': 'synonyms for derivative',\n",
+ " 'clues': [('first derivative',\n",
+ " 'the result of mathematical differentiation; the instantaneous change of one quantity relative to another; df(x)/dx'),\n",
+ " ('differential coefficient',\n",
+ " 'the result of mathematical differentiation; the instantaneous change of one quantity relative to another; df(x)/dx'),\n",
+ " ('derivative instrument',\n",
+ " 'a financial instrument whose value is based on another security'),\n",
+ " ('derived function',\n",
+ " 'the result of mathematical differentiation; the instantaneous change of one quantity relative to another; df(x)/dx'),\n",
+ " ('differential',\n",
+ " 'the result of mathematical differentiation; the instantaneous change of one quantity relative to another; df(x)/dx')]},\n",
+ " {'answer': 'determinant',\n",
+ " 'hint': 'synonyms for determinant',\n",
+ " 'clues': [('determining factor',\n",
+ " 'a determining or causal element or factor'),\n",
+ " ('determiner', 'a determining or causal element or factor'),\n",
+ " ('epitope',\n",
+ " 'the site on the surface of an antigen molecule to which an antibody attaches itself'),\n",
+ " ('causal factor', 'a determining or causal element or factor'),\n",
+ " ('determinative', 'a determining or causal element or factor'),\n",
+ " ('antigenic determinant',\n",
+ " 'the site on the surface of an antigen molecule to which an antibody attaches itself')]},\n",
+ " {'answer': 'determinative',\n",
+ " 'hint': 'synonyms for determinative',\n",
+ " 'clues': [('determining factor',\n",
+ " 'a determining or causal element or factor'),\n",
+ " ('determiner', 'a determining or causal element or factor'),\n",
+ " ('determinant', 'a determining or causal element or factor'),\n",
+ " ('causal factor', 'a determining or causal element or factor')]},\n",
+ " {'answer': 'deterrent',\n",
+ " 'hint': 'synonyms for deterrent',\n",
+ " 'clues': [('hinderance',\n",
+ " 'something immaterial that interferes with or delays action or progress'),\n",
+ " ('check',\n",
+ " 'something immaterial that interferes with or delays action or progress'),\n",
+ " ('balk',\n",
+ " 'something immaterial that interferes with or delays action or progress'),\n",
+ " ('impediment',\n",
+ " 'something immaterial that interferes with or delays action or progress'),\n",
+ " ('handicap',\n",
+ " 'something immaterial that interferes with or delays action or progress')]},\n",
+ " {'answer': 'diagonal',\n",
+ " 'hint': 'synonyms for diagonal',\n",
+ " 'clues': [('separatrix',\n",
+ " 'a punctuation mark (/) used to separate related items of information'),\n",
+ " ('slash',\n",
+ " 'a punctuation mark (/) used to separate related items of information'),\n",
+ " ('virgule',\n",
+ " 'a punctuation mark (/) used to separate related items of information'),\n",
+ " ('stroke',\n",
+ " 'a punctuation mark (/) used to separate related items of information'),\n",
+ " ('bias',\n",
+ " 'a line or cut across a fabric that is not at right angles to a side of the fabric'),\n",
+ " ('solidus',\n",
+ " 'a punctuation mark (/) used to separate related items of information')]},\n",
+ " {'answer': 'dickey',\n",
+ " 'hint': 'synonyms for dickey',\n",
+ " 'clues': [('dickie-seat',\n",
+ " 'a small third seat in the back of an old-fashioned two-seater'),\n",
+ " ('shirtfront',\n",
+ " \"a man's detachable insert (usually starched) to simulate the front of a shirt\"),\n",
+ " ('dicky',\n",
+ " \"a man's detachable insert (usually starched) to simulate the front of a shirt\"),\n",
+ " ('dickie',\n",
+ " \"a man's detachable insert (usually starched) to simulate the front of a shirt\")]},\n",
+ " {'answer': 'dicky',\n",
+ " 'hint': 'synonyms for dicky',\n",
+ " 'clues': [('dickey',\n",
+ " \"a man's detachable insert (usually starched) to simulate the front of a shirt\"),\n",
+ " ('dickie-seat',\n",
+ " 'a small third seat in the back of an old-fashioned two-seater'),\n",
+ " ('shirtfront',\n",
+ " \"a man's detachable insert (usually starched) to simulate the front of a shirt\"),\n",
+ " ('dickie',\n",
+ " \"a man's detachable insert (usually starched) to simulate the front of a shirt\")]},\n",
+ " {'answer': 'differential',\n",
+ " 'hint': 'synonyms for differential',\n",
+ " 'clues': [('derivative',\n",
+ " 'the result of mathematical differentiation; the instantaneous change of one quantity relative to another; df(x)/dx'),\n",
+ " ('first derivative',\n",
+ " 'the result of mathematical differentiation; the instantaneous change of one quantity relative to another; df(x)/dx'),\n",
+ " ('differential coefficient',\n",
+ " 'the result of mathematical differentiation; the instantaneous change of one quantity relative to another; df(x)/dx'),\n",
+ " ('differential gear',\n",
+ " 'a bevel gear that permits rotation of two shafts at different speeds; used on the rear axle of automobiles to allow wheels to rotate at different speeds on curves'),\n",
+ " ('derived function',\n",
+ " 'the result of mathematical differentiation; the instantaneous change of one quantity relative to another; df(x)/dx')]},\n",
+ " {'answer': 'dirt',\n",
+ " 'hint': 'synonyms for dirt',\n",
+ " 'clues': [('shite', 'obscene terms for feces'),\n",
+ " ('poop', 'obscene terms for feces'),\n",
+ " ('crap', 'obscene terms for feces'),\n",
+ " ('turd', 'obscene terms for feces'),\n",
+ " ('malicious gossip',\n",
+ " 'disgraceful gossip about the private lives of other people'),\n",
+ " ('scandal', 'disgraceful gossip about the private lives of other people'),\n",
+ " ('soil',\n",
+ " \"the part of the earth's surface consisting of humus and disintegrated rock\")]},\n",
+ " {'answer': 'double',\n",
+ " 'hint': 'synonyms for double',\n",
+ " 'clues': [('two-baser',\n",
+ " 'a base hit on which the batter stops safely at second base'),\n",
+ " ('two-bagger',\n",
+ " 'a base hit on which the batter stops safely at second base'),\n",
+ " ('two-base hit',\n",
+ " 'a base hit on which the batter stops safely at second base'),\n",
+ " ('doubling', 'raising the stakes in a card game by a factor of 2')]},\n",
+ " {'answer': 'dress',\n",
+ " 'hint': 'synonyms for dress',\n",
+ " 'clues': [('wearing apparel', 'clothing in general'),\n",
+ " ('clothes', 'clothing in general'),\n",
+ " ('attire',\n",
+ " 'clothing of a distinctive style or for a particular occasion'),\n",
+ " ('apparel', 'clothing in general'),\n",
+ " ('frock', 'a one-piece garment for a woman; has skirt and bodice'),\n",
+ " ('garb',\n",
+ " 'clothing of a distinctive style or for a particular occasion')]},\n",
+ " {'answer': 'eager',\n",
+ " 'hint': 'synonyms for eager',\n",
+ " 'clues': [('tidal bore',\n",
+ " 'a high wave (often dangerous) caused by tidal flow (as by colliding tidal currents or in a narrow estuary)'),\n",
+ " ('aegir',\n",
+ " 'a high wave (often dangerous) caused by tidal flow (as by colliding tidal currents or in a narrow estuary)'),\n",
+ " ('bore',\n",
+ " 'a high wave (often dangerous) caused by tidal flow (as by colliding tidal currents or in a narrow estuary)'),\n",
+ " ('eagre',\n",
+ " 'a high wave (often dangerous) caused by tidal flow (as by colliding tidal currents or in a narrow estuary)')]},\n",
+ " {'answer': 'eatable',\n",
+ " 'hint': 'synonyms for eatable',\n",
+ " 'clues': [('victual', 'any substance that can be used as food'),\n",
+ " ('comestible', 'any substance that can be used as food'),\n",
+ " ('edible', 'any substance that can be used as food'),\n",
+ " ('pabulum', 'any substance that can be used as food')]},\n",
+ " {'answer': 'ebony',\n",
+ " 'hint': 'synonyms for ebony',\n",
+ " 'clues': [('sable', 'a very dark black'),\n",
+ " ('jet black', 'a very dark black'),\n",
+ " ('soot black', 'a very dark black'),\n",
+ " ('pitch black', 'a very dark black'),\n",
+ " ('coal black', 'a very dark black')]},\n",
+ " {'answer': 'edible',\n",
+ " 'hint': 'synonyms for edible',\n",
+ " 'clues': [('victual', 'any substance that can be used as food'),\n",
+ " ('comestible', 'any substance that can be used as food'),\n",
+ " ('eatable', 'any substance that can be used as food'),\n",
+ " ('pabulum', 'any substance that can be used as food')]},\n",
+ " {'answer': 'eight',\n",
+ " 'hint': 'synonyms for eight',\n",
+ " 'clues': [('eighter from Decatur',\n",
+ " 'the cardinal number that is the sum of seven and one'),\n",
+ " ('octad', 'the cardinal number that is the sum of seven and one'),\n",
+ " ('eight-spot',\n",
+ " 'one of four playing cards in a deck with eight pips on the face'),\n",
+ " ('octonary', 'the cardinal number that is the sum of seven and one'),\n",
+ " ('8', 'the cardinal number that is the sum of seven and one'),\n",
+ " ('eighter', 'the cardinal number that is the sum of seven and one'),\n",
+ " ('octet', 'the cardinal number that is the sum of seven and one'),\n",
+ " ('ogdoad', 'the cardinal number that is the sum of seven and one')]},\n",
+ " {'answer': 'elevated',\n",
+ " 'hint': 'synonyms for elevated',\n",
+ " 'clues': [('elevated railroad',\n",
+ " 'a railway that is powered by electricity and that runs on a track that is raised above the street level'),\n",
+ " ('el',\n",
+ " 'a railway that is powered by electricity and that runs on a track that is raised above the street level'),\n",
+ " ('elevated railway',\n",
+ " 'a railway that is powered by electricity and that runs on a track that is raised above the street level'),\n",
+ " ('overhead railway',\n",
+ " 'a railway that is powered by electricity and that runs on a track that is raised above the street level')]},\n",
+ " {'answer': 'empyrean',\n",
+ " 'hint': 'synonyms for empyrean',\n",
+ " 'clues': [('sphere',\n",
+ " 'the apparent surface of the imaginary sphere on which celestial bodies appear to be projected'),\n",
+ " ('vault of heaven',\n",
+ " 'the apparent surface of the imaginary sphere on which celestial bodies appear to be projected'),\n",
+ " ('celestial sphere',\n",
+ " 'the apparent surface of the imaginary sphere on which celestial bodies appear to be projected'),\n",
+ " ('firmament',\n",
+ " 'the apparent surface of the imaginary sphere on which celestial bodies appear to be projected'),\n",
+ " ('welkin',\n",
+ " 'the apparent surface of the imaginary sphere on which celestial bodies appear to be projected'),\n",
+ " ('heavens',\n",
+ " 'the apparent surface of the imaginary sphere on which celestial bodies appear to be projected')]},\n",
+ " {'answer': 'essential',\n",
+ " 'hint': 'synonyms for essential',\n",
+ " 'clues': [('necessity', 'anything indispensable'),\n",
+ " ('necessary', 'anything indispensable'),\n",
+ " ('requisite', 'anything indispensable'),\n",
+ " ('requirement', 'anything indispensable')]},\n",
+ " {'answer': 'evil',\n",
+ " 'hint': 'synonyms for evil',\n",
+ " 'clues': [('evilness',\n",
+ " 'the quality of being morally wrong in principle or practice'),\n",
+ " ('immorality', 'morally objectionable behavior'),\n",
+ " ('iniquity', 'morally objectionable behavior'),\n",
+ " ('wickedness', 'morally objectionable behavior')]},\n",
+ " {'answer': 'excess',\n",
+ " 'hint': 'synonyms for excess',\n",
+ " 'clues': [('overindulgence', 'excessive indulgence'),\n",
+ " ('surplus', 'a quantity much larger than is needed'),\n",
+ " ('surplusage', 'a quantity much larger than is needed'),\n",
+ " ('inordinateness',\n",
+ " 'immoderation as a consequence of going beyond sufficient or permitted limits'),\n",
+ " ('excessiveness',\n",
+ " 'immoderation as a consequence of going beyond sufficient or permitted limits'),\n",
+ " ('nimiety', 'a quantity much larger than is needed')]},\n",
+ " {'answer': 'fancy',\n",
+ " 'hint': 'synonyms for fancy',\n",
+ " 'clues': [('illusion', 'something many people believe that is false'),\n",
+ " ('fondness', 'a predisposition to like something'),\n",
+ " ('fantasy', 'something many people believe that is false'),\n",
+ " ('phantasy', 'something many people believe that is false'),\n",
+ " ('partiality', 'a predisposition to like something')]},\n",
+ " {'answer': 'first',\n",
+ " 'hint': 'synonyms for first',\n",
+ " 'clues': [('get-go', 'the time at which something is supposed to begin'),\n",
+ " ('showtime', 'the time at which something is supposed to begin'),\n",
+ " ('offset', 'the time at which something is supposed to begin'),\n",
+ " ('starting time', 'the time at which something is supposed to begin'),\n",
+ " ('low',\n",
+ " 'the lowest forward gear ratio in the gear box of a motor vehicle; used to start a car moving'),\n",
+ " ('beginning', 'the time at which something is supposed to begin'),\n",
+ " ('kickoff', 'the time at which something is supposed to begin'),\n",
+ " ('start', 'the time at which something is supposed to begin'),\n",
+ " ('first base',\n",
+ " 'the fielding position of the player on a baseball team who is stationed at first of the bases in the infield (counting counterclockwise from home plate)'),\n",
+ " ('first-class honours degree', 'an honours degree of the highest class'),\n",
+ " ('outset', 'the time at which something is supposed to begin'),\n",
+ " ('low gear',\n",
+ " 'the lowest forward gear ratio in the gear box of a motor vehicle; used to start a car moving'),\n",
+ " ('first gear',\n",
+ " 'the lowest forward gear ratio in the gear box of a motor vehicle; used to start a car moving'),\n",
+ " ('number 1', 'the first element in a countable series'),\n",
+ " ('number one', 'the first element in a countable series'),\n",
+ " ('commencement', 'the time at which something is supposed to begin')]},\n",
+ " {'answer': 'fitting',\n",
+ " 'hint': 'synonyms for fitting',\n",
+ " 'clues': [('appointment',\n",
+ " '(usually plural) furnishings and equipment (especially for a ship or hotel)'),\n",
+ " ('try-on', 'putting clothes on to see whether they fit'),\n",
+ " ('trying on', 'putting clothes on to see whether they fit'),\n",
+ " ('adjustment', 'making or becoming suitable; adjusting to circumstances'),\n",
+ " ('accommodation',\n",
+ " 'making or becoming suitable; adjusting to circumstances')]},\n",
+ " {'answer': 'five',\n",
+ " 'hint': 'synonyms for five',\n",
+ " 'clues': [('5', 'the cardinal number that is the sum of four and one'),\n",
+ " ('quintet', 'the cardinal number that is the sum of four and one'),\n",
+ " ('pentad', 'the cardinal number that is the sum of four and one'),\n",
+ " ('quint', 'the cardinal number that is the sum of four and one'),\n",
+ " ('fin', 'the cardinal number that is the sum of four and one'),\n",
+ " ('cinque', 'the cardinal number that is the sum of four and one'),\n",
+ " ('quintuplet', 'the cardinal number that is the sum of four and one'),\n",
+ " ('fivesome', 'the cardinal number that is the sum of four and one'),\n",
+ " ('basketball team', 'a team that plays basketball'),\n",
+ " ('five-spot',\n",
+ " 'a playing card or a domino or a die whose upward face shows five pips')]},\n",
+ " {'answer': 'flash',\n",
+ " 'hint': 'synonyms for flash',\n",
+ " 'clues': [('flashbulb',\n",
+ " 'a lamp for providing momentary light to take a photograph'),\n",
+ " ('flare', 'a burst of light used to communicate or illuminate'),\n",
+ " ('flash lamp',\n",
+ " 'a lamp for providing momentary light to take a photograph'),\n",
+ " ('trice',\n",
+ " 'a very short time (as the time it takes the eye to blink or the heart to beat)'),\n",
+ " ('instant',\n",
+ " 'a very short time (as the time it takes the eye to blink or the heart to beat)'),\n",
+ " ('photoflash',\n",
+ " 'a lamp for providing momentary light to take a photograph'),\n",
+ " ('twinkling',\n",
+ " 'a very short time (as the time it takes the eye to blink or the heart to beat)'),\n",
+ " ('fanfare', 'a gaudy outward display'),\n",
+ " ('news bulletin',\n",
+ " 'a short news announcement concerning some on-going news story'),\n",
+ " ('newsflash',\n",
+ " 'a short news announcement concerning some on-going news story'),\n",
+ " ('heartbeat',\n",
+ " 'a very short time (as the time it takes the eye to blink or the heart to beat)'),\n",
+ " ('split second',\n",
+ " 'a very short time (as the time it takes the eye to blink or the heart to beat)'),\n",
+ " ('newsbreak',\n",
+ " 'a short news announcement concerning some on-going news story'),\n",
+ " ('blink of an eye',\n",
+ " 'a very short time (as the time it takes the eye to blink or the heart to beat)'),\n",
+ " ('flashgun', 'a lamp for providing momentary light to take a photograph'),\n",
+ " ('jiffy',\n",
+ " 'a very short time (as the time it takes the eye to blink or the heart to beat)'),\n",
+ " ('wink',\n",
+ " 'a very short time (as the time it takes the eye to blink or the heart to beat)'),\n",
+ " ('flashing', 'a short vivid experience'),\n",
+ " ('ostentation', 'a gaudy outward display')]},\n",
+ " {'answer': 'flat',\n",
+ " 'hint': 'synonyms for flat',\n",
+ " 'clues': [('flatcar', 'freight car without permanent sides or roof'),\n",
+ " ('apartment',\n",
+ " 'a suite of rooms usually on one floor of an apartment house'),\n",
+ " ('flatbed', 'freight car without permanent sides or roof'),\n",
+ " ('flat tire', 'a deflated pneumatic tire')]},\n",
+ " {'answer': 'flip',\n",
+ " 'hint': 'synonyms for flip',\n",
+ " 'clues': [('toss', 'the act of flipping a coin'),\n",
+ " ('pass',\n",
+ " '(sports) the act of throwing the ball to another member of your team'),\n",
+ " ('somerset',\n",
+ " 'an acrobatic feat in which the feet roll over the head (either forward or backward) and return'),\n",
+ " ('somersaulting',\n",
+ " 'an acrobatic feat in which the feet roll over the head (either forward or backward) and return'),\n",
+ " ('summerset',\n",
+ " 'an acrobatic feat in which the feet roll over the head (either forward or backward) and return'),\n",
+ " ('summersault',\n",
+ " 'an acrobatic feat in which the feet roll over the head (either forward or backward) and return')]},\n",
+ " {'answer': 'flowering',\n",
+ " 'hint': 'synonyms for flowering',\n",
+ " 'clues': [('unfolding', 'a developmental process'),\n",
+ " ('blossoming',\n",
+ " 'the time and process of budding and unfolding of blossoms'),\n",
+ " ('efflorescence',\n",
+ " 'the time and process of budding and unfolding of blossoms'),\n",
+ " ('anthesis', 'the time and process of budding and unfolding of blossoms'),\n",
+ " ('inflorescence',\n",
+ " 'the time and process of budding and unfolding of blossoms')]},\n",
+ " {'answer': 'flush',\n",
+ " 'hint': 'synonyms for flush',\n",
+ " 'clues': [('bloom', 'the period of greatest prosperity or productivity'),\n",
+ " ('boot', 'the swift release of a store of affective force'),\n",
+ " ('efflorescence', 'the period of greatest prosperity or productivity'),\n",
+ " ('rush', 'the swift release of a store of affective force'),\n",
+ " ('blush',\n",
+ " 'sudden reddening of the face (as from embarrassment or guilt or shame or modesty)'),\n",
+ " ('heyday', 'the period of greatest prosperity or productivity'),\n",
+ " ('peak', 'the period of greatest prosperity or productivity'),\n",
+ " ('gush', 'a sudden rapid flow (as of water)'),\n",
+ " ('bang', 'the swift release of a store of affective force'),\n",
+ " ('charge', 'the swift release of a store of affective force'),\n",
+ " ('prime', 'the period of greatest prosperity or productivity'),\n",
+ " ('kick', 'the swift release of a store of affective force'),\n",
+ " ('flower', 'the period of greatest prosperity or productivity'),\n",
+ " ('thrill', 'the swift release of a store of affective force'),\n",
+ " ('blossom', 'the period of greatest prosperity or productivity'),\n",
+ " ('outpouring', 'a sudden rapid flow (as of water)')]},\n",
+ " {'answer': 'fly',\n",
+ " 'hint': 'synonyms for fly',\n",
+ " 'clues': [('tent-fly',\n",
+ " 'flap consisting of a piece of canvas that can be drawn back to provide entrance to a tent'),\n",
+ " ('tent flap',\n",
+ " 'flap consisting of a piece of canvas that can be drawn back to provide entrance to a tent'),\n",
+ " ('fly sheet',\n",
+ " 'flap consisting of a piece of canvas that can be drawn back to provide entrance to a tent'),\n",
+ " ('fly front',\n",
+ " 'an opening in a garment that is closed by a zipper or by buttons concealed under a fold of cloth'),\n",
+ " ('rainfly',\n",
+ " 'flap consisting of a piece of canvas that can be drawn back to provide entrance to a tent'),\n",
+ " ('fly ball', '(baseball) a hit that flies up in the air')]},\n",
+ " {'answer': 'following',\n",
+ " 'hint': 'synonyms for following',\n",
+ " 'clues': [('pursual',\n",
+ " 'the act of pursuing in an effort to overtake or capture'),\n",
+ " ('followers', 'a group of followers or enthusiasts'),\n",
+ " ('chase', 'the act of pursuing in an effort to overtake or capture'),\n",
+ " ('pursuit', 'the act of pursuing in an effort to overtake or capture')]},\n",
+ " {'answer': 'formal',\n",
+ " 'hint': 'synonyms for formal',\n",
+ " 'clues': [('ball', 'a lavish dance requiring formal attire'),\n",
+ " ('evening gown', 'a gown for evening wear'),\n",
+ " ('dinner gown', 'a gown for evening wear'),\n",
+ " ('dinner dress', 'a gown for evening wear')]},\n",
+ " {'answer': 'forte',\n",
+ " 'hint': 'synonyms for forte',\n",
+ " 'clues': [('strong point', 'an asset of special worth or utility'),\n",
+ " ('strong suit', 'an asset of special worth or utility'),\n",
+ " ('speciality', 'an asset of special worth or utility'),\n",
+ " ('strength', 'an asset of special worth or utility'),\n",
+ " ('long suit', 'an asset of special worth or utility'),\n",
+ " ('fortissimo', '(music) loud'),\n",
+ " ('metier', 'an asset of special worth or utility')]},\n",
+ " {'answer': 'four',\n",
+ " 'hint': 'synonyms for four',\n",
+ " 'clues': [('tetrad',\n",
+ " 'the cardinal number that is the sum of three and one'),\n",
+ " ('quaternion', 'the cardinal number that is the sum of three and one'),\n",
+ " ('quartet', 'the cardinal number that is the sum of three and one'),\n",
+ " ('foursome', 'the cardinal number that is the sum of three and one'),\n",
+ " ('quaternity', 'the cardinal number that is the sum of three and one'),\n",
+ " ('4', 'the cardinal number that is the sum of three and one'),\n",
+ " ('four-spot',\n",
+ " 'a playing card or domino or die whose upward face shows four pips'),\n",
+ " ('quaternary', 'the cardinal number that is the sum of three and one'),\n",
+ " ('quatern', 'the cardinal number that is the sum of three and one'),\n",
+ " ('quadruplet', 'the cardinal number that is the sum of three and one')]},\n",
+ " {'answer': 'fourth',\n",
+ " 'hint': 'synonyms for fourth',\n",
+ " 'clues': [('fourth part', 'one of four equal parts'),\n",
+ " ('one-fourth', 'one of four equal parts'),\n",
+ " ('quartern', 'one of four equal parts'),\n",
+ " ('one-quarter', 'one of four equal parts'),\n",
+ " ('twenty-five percent', 'one of four equal parts')]},\n",
+ " {'answer': 'frank',\n",
+ " 'hint': 'synonyms for frank',\n",
+ " 'clues': [('wiener',\n",
+ " 'a smooth-textured sausage of minced beef or pork usually smoked; often served on a bread roll'),\n",
+ " ('dog',\n",
+ " 'a smooth-textured sausage of minced beef or pork usually smoked; often served on a bread roll'),\n",
+ " ('hotdog',\n",
+ " 'a smooth-textured sausage of minced beef or pork usually smoked; often served on a bread roll'),\n",
+ " ('weenie',\n",
+ " 'a smooth-textured sausage of minced beef or pork usually smoked; often served on a bread roll'),\n",
+ " ('wienerwurst',\n",
+ " 'a smooth-textured sausage of minced beef or pork usually smoked; often served on a bread roll'),\n",
+ " ('frankfurter',\n",
+ " 'a smooth-textured sausage of minced beef or pork usually smoked; often served on a bread roll')]},\n",
+ " {'answer': 'front',\n",
+ " 'hint': 'synonyms for front',\n",
+ " 'clues': [('battlefront',\n",
+ " 'the line along which opposing armies face each other'),\n",
+ " ('front line', 'the line along which opposing armies face each other'),\n",
+ " ('forepart', 'the side that is forward or prominent'),\n",
+ " ('movement',\n",
+ " 'a group of people with a common ideology who try together to achieve certain general goals'),\n",
+ " ('presence', 'the immediate proximity of someone or something'),\n",
+ " ('social movement',\n",
+ " 'a group of people with a common ideology who try together to achieve certain general goals'),\n",
+ " ('front end', 'the side that is forward or prominent')]},\n",
+ " {'answer': 'fucking',\n",
+ " 'hint': 'synonyms for fucking',\n",
+ " 'clues': [('piece of tail', 'slang for sexual intercourse'),\n",
+ " ('nookie', 'slang for sexual intercourse'),\n",
+ " ('nooky', 'slang for sexual intercourse'),\n",
+ " ('piece of ass', 'slang for sexual intercourse'),\n",
+ " ('screw', 'slang for sexual intercourse'),\n",
+ " ('roll in the hay', 'slang for sexual intercourse'),\n",
+ " ('shag', 'slang for sexual intercourse'),\n",
+ " ('ass', 'slang for sexual intercourse'),\n",
+ " ('fuck', 'slang for sexual intercourse'),\n",
+ " ('shtup', 'slang for sexual intercourse')]},\n",
+ " {'answer': 'future',\n",
+ " 'hint': 'synonyms for future',\n",
+ " 'clues': [('futurity', 'the time yet to come'),\n",
+ " ('hereafter', 'the time yet to come'),\n",
+ " ('future tense',\n",
+ " 'a verb tense that expresses actions or states in the future'),\n",
+ " ('time to come', 'the time yet to come')]},\n",
+ " {'answer': 'gimcrack',\n",
+ " 'hint': 'synonyms for gimcrack',\n",
+ " 'clues': [('trumpery', 'ornamental objects of no great value'),\n",
+ " ('gimcrackery', 'ornamental objects of no great value'),\n",
+ " ('nonsense', 'ornamental objects of no great value'),\n",
+ " ('falderol', 'ornamental objects of no great value'),\n",
+ " ('frill', 'ornamental objects of no great value'),\n",
+ " ('folderal', 'ornamental objects of no great value')]},\n",
+ " {'answer': 'ginger',\n",
+ " 'hint': 'synonyms for ginger',\n",
+ " 'clues': [('pep', 'liveliness and energy'),\n",
+ " ('gingerroot',\n",
+ " 'pungent rhizome of the common ginger plant; used fresh as a seasoning especially in Asian cookery'),\n",
+ " ('peppiness', 'liveliness and energy'),\n",
+ " ('powdered ginger', 'dried ground gingerroot')]},\n",
+ " {'answer': 'gleaming',\n",
+ " 'hint': 'synonyms for gleaming',\n",
+ " 'clues': [('glimmer', 'a flash of light (especially reflected light)'),\n",
+ " ('gleam', 'an appearance of reflected light'),\n",
+ " ('lambency', 'an appearance of reflected light'),\n",
+ " ('glow', 'an appearance of reflected light')]},\n",
+ " {'answer': 'go',\n",
+ " 'hint': 'synonyms for go',\n",
+ " 'clues': [('disco biscuit',\n",
+ " 'street names for methylenedioxymethamphetamine'),\n",
+ " ('fling', 'a usually brief attempt'),\n",
+ " ('crack', 'a usually brief attempt'),\n",
+ " ('go game',\n",
+ " \"a board game for two players who place counters on a grid; the object is to surround and so capture the opponent's counters\"),\n",
+ " ('offer', 'a usually brief attempt'),\n",
+ " ('spell',\n",
+ " 'a time for working (after which you will be relieved by someone else)'),\n",
+ " ('tour',\n",
+ " 'a time for working (after which you will be relieved by someone else)'),\n",
+ " ('cristal', 'street names for methylenedioxymethamphetamine'),\n",
+ " ('pass', 'a usually brief attempt'),\n",
+ " ('turn',\n",
+ " 'a time for working (after which you will be relieved by someone else)'),\n",
+ " ('whirl', 'a usually brief attempt'),\n",
+ " ('hug drug', 'street names for methylenedioxymethamphetamine'),\n",
+ " ('ecstasy', 'street names for methylenedioxymethamphetamine')]},\n",
+ " {'answer': 'going',\n",
+ " 'hint': 'synonyms for going',\n",
+ " 'clues': [('exit', 'euphemistic expressions for death'),\n",
+ " ('passing', 'euphemistic expressions for death'),\n",
+ " ('sledding', 'advancing toward a goal'),\n",
+ " ('leaving', 'the act of departing'),\n",
+ " ('loss', 'euphemistic expressions for death'),\n",
+ " ('departure', 'the act of departing'),\n",
+ " ('expiration', 'euphemistic expressions for death'),\n",
+ " ('release', 'euphemistic expressions for death'),\n",
+ " ('going away', 'the act of departing')]},\n",
+ " {'answer': 'governing',\n",
+ " 'hint': 'synonyms for governing',\n",
+ " 'clues': [('governance', 'the act of governing; exercising authority'),\n",
+ " ('government', 'the act of governing; exercising authority'),\n",
+ " ('administration', 'the act of governing; exercising authority'),\n",
+ " ('government activity', 'the act of governing; exercising authority')]},\n",
+ " {'answer': 'grand',\n",
+ " 'hint': 'synonyms for grand',\n",
+ " 'clues': [('chiliad',\n",
+ " 'the cardinal number that is the product of 10 and 100'),\n",
+ " ('yard', 'the cardinal number that is the product of 10 and 100'),\n",
+ " ('one thousand', 'the cardinal number that is the product of 10 and 100'),\n",
+ " ('grand piano',\n",
+ " 'a piano with the strings on a horizontal harp-shaped frame; usually supported by three legs'),\n",
+ " ('thousand', 'the cardinal number that is the product of 10 and 100'),\n",
+ " ('thou', 'the cardinal number that is the product of 10 and 100'),\n",
+ " ('1000', 'the cardinal number that is the product of 10 and 100')]},\n",
+ " {'answer': 'green',\n",
+ " 'hint': 'synonyms for green',\n",
+ " 'clues': [('viridity',\n",
+ " 'green color or pigment; resembling the color of growing grass'),\n",
+ " ('greenness',\n",
+ " 'green color or pigment; resembling the color of growing grass'),\n",
+ " ('cat valium', 'street names for ketamine'),\n",
+ " ('putting surface',\n",
+ " 'an area of closely cropped grass surrounding the hole on a golf course'),\n",
+ " ('jet', 'street names for ketamine'),\n",
+ " ('leafy vegetable',\n",
+ " 'any of various leafy plants or their leaves and stems eaten as vegetables'),\n",
+ " ('honey oil', 'street names for ketamine'),\n",
+ " ('special K', 'street names for ketamine'),\n",
+ " ('commons', 'a piece of open land for recreational use in an urban area'),\n",
+ " ('park', 'a piece of open land for recreational use in an urban area'),\n",
+ " ('putting green',\n",
+ " 'an area of closely cropped grass surrounding the hole on a golf course'),\n",
+ " ('greens',\n",
+ " 'any of various leafy plants or their leaves and stems eaten as vegetables'),\n",
+ " ('super C', 'street names for ketamine'),\n",
+ " ('super acid', 'street names for ketamine')]},\n",
+ " {'answer': 'growing',\n",
+ " 'hint': 'synonyms for growing',\n",
+ " 'clues': [('growth',\n",
+ " '(biology) the process of an individual organism growing organically; a purely biological unfolding of events involved in an organism changing gradually from a simple to a more complex level'),\n",
+ " ('ontogeny',\n",
+ " '(biology) the process of an individual organism growing organically; a purely biological unfolding of events involved in an organism changing gradually from a simple to a more complex level'),\n",
+ " ('ontogenesis',\n",
+ " '(biology) the process of an individual organism growing organically; a purely biological unfolding of events involved in an organism changing gradually from a simple to a more complex level'),\n",
+ " ('development',\n",
+ " '(biology) the process of an individual organism growing organically; a purely biological unfolding of events involved in an organism changing gradually from a simple to a more complex level'),\n",
+ " ('maturation',\n",
+ " '(biology) the process of an individual organism growing organically; a purely biological unfolding of events involved in an organism changing gradually from a simple to a more complex level')]},\n",
+ " {'answer': 'grumbling',\n",
+ " 'hint': 'synonyms for grumbling',\n",
+ " 'clues': [('mutter', 'a complaint uttered in a low and indistinct tone'),\n",
+ " ('grumble', 'a loud low dull continuous noise'),\n",
+ " ('murmuring', 'a complaint uttered in a low and indistinct tone'),\n",
+ " ('rumbling', 'a loud low dull continuous noise')]},\n",
+ " {'answer': 'handless',\n",
+ " 'hint': 'synonyms for handless',\n",
+ " 'clues': [('handle',\n",
+ " 'the appendage to an object that is designed to be held in order to use or move it'),\n",
+ " ('handgrip',\n",
+ " 'the appendage to an object that is designed to be held in order to use or move it'),\n",
+ " ('grip',\n",
+ " 'the appendage to an object that is designed to be held in order to use or move it'),\n",
+ " ('hold',\n",
+ " 'the appendage to an object that is designed to be held in order to use or move it')]},\n",
+ " {'answer': 'hearing',\n",
+ " 'hint': 'synonyms for hearing',\n",
+ " 'clues': [('auditory sense', 'the ability to hear; the auditory faculty'),\n",
+ " ('sense of hearing', 'the ability to hear; the auditory faculty'),\n",
+ " ('earreach', 'the range within which a voice can be heard'),\n",
+ " ('auditory modality', 'the ability to hear; the auditory faculty'),\n",
+ " ('audition', 'the ability to hear; the auditory faculty'),\n",
+ " ('listening', 'the act of hearing attentively'),\n",
+ " ('earshot', 'the range within which a voice can be heard')]},\n",
+ " {'answer': 'high',\n",
+ " 'hint': 'synonyms for high',\n",
+ " 'clues': [('high gear',\n",
+ " 'a forward gear with a gear ratio that gives the greatest vehicle velocity for a given engine speed'),\n",
+ " ('heights', 'a high place'),\n",
+ " ('senior high',\n",
+ " 'a public secondary school usually including grades 9 through 12'),\n",
+ " ('high school',\n",
+ " 'a public secondary school usually including grades 9 through 12'),\n",
+ " ('senior high school',\n",
+ " 'a public secondary school usually including grades 9 through 12')]},\n",
+ " {'answer': 'home',\n",
+ " 'hint': 'synonyms for home',\n",
+ " 'clues': [('domicile', 'housing that someone is living in'),\n",
+ " ('home plate',\n",
+ " '(baseball) base consisting of a rubber slab where the batter stands; it must be touched by a base runner in order to score'),\n",
+ " ('place', 'where you live at a particular time'),\n",
+ " ('habitation', 'housing that someone is living in'),\n",
+ " ('dwelling', 'housing that someone is living in'),\n",
+ " ('abode', 'housing that someone is living in'),\n",
+ " ('family', 'a social unit living together'),\n",
+ " ('home base',\n",
+ " '(baseball) base consisting of a rubber slab where the batter stands; it must be touched by a base runner in order to score'),\n",
+ " ('house', 'a social unit living together'),\n",
+ " ('nursing home', 'an institution where people are cared for'),\n",
+ " ('household', 'a social unit living together'),\n",
+ " ('plate',\n",
+ " '(baseball) base consisting of a rubber slab where the batter stands; it must be touched by a base runner in order to score'),\n",
+ " ('dwelling house', 'housing that someone is living in'),\n",
+ " ('rest home', 'an institution where people are cared for'),\n",
+ " ('menage', 'a social unit living together'),\n",
+ " ('base',\n",
+ " 'the place where you are stationed and from which missions start and end')]},\n",
+ " {'answer': 'hurt',\n",
+ " 'hint': 'synonyms for hurt',\n",
+ " 'clues': [('suffering', 'psychological suffering'),\n",
+ " ('distress', 'psychological suffering'),\n",
+ " ('damage', 'the act of damaging something or someone'),\n",
+ " ('scathe', 'the act of damaging something or someone'),\n",
+ " ('harm', 'the act of damaging something or someone'),\n",
+ " ('detriment', 'a damage or loss')]},\n",
+ " {'answer': 'i',\n",
+ " 'hint': 'synonyms for i',\n",
+ " 'clues': [('atomic number 53',\n",
+ " 'a nonmetallic element belonging to the halogens; used especially in medicine and photography and in dyes; occurs naturally only in combination in small quantities (as in sea water or rocks)'),\n",
+ " ('iodine',\n",
+ " 'a nonmetallic element belonging to the halogens; used especially in medicine and photography and in dyes; occurs naturally only in combination in small quantities (as in sea water or rocks)'),\n",
+ " ('single',\n",
+ " 'the smallest whole number or a numeral representing this number'),\n",
+ " ('1', 'the smallest whole number or a numeral representing this number'),\n",
+ " ('ace',\n",
+ " 'the smallest whole number or a numeral representing this number'),\n",
+ " ('one',\n",
+ " 'the smallest whole number or a numeral representing this number'),\n",
+ " ('unity',\n",
+ " 'the smallest whole number or a numeral representing this number')]},\n",
+ " {'answer': 'iii',\n",
+ " 'hint': 'synonyms for iii',\n",
+ " 'clues': [('ternary',\n",
+ " 'the cardinal number that is the sum of one and one and one'),\n",
+ " ('ternion', 'the cardinal number that is the sum of one and one and one'),\n",
+ " ('tierce', 'the cardinal number that is the sum of one and one and one'),\n",
+ " ('3', 'the cardinal number that is the sum of one and one and one'),\n",
+ " ('troika', 'the cardinal number that is the sum of one and one and one'),\n",
+ " ('trinity', 'the cardinal number that is the sum of one and one and one'),\n",
+ " ('triplet', 'the cardinal number that is the sum of one and one and one'),\n",
+ " ('three', 'the cardinal number that is the sum of one and one and one'),\n",
+ " ('threesome',\n",
+ " 'the cardinal number that is the sum of one and one and one'),\n",
+ " ('trey', 'the cardinal number that is the sum of one and one and one'),\n",
+ " ('trine', 'the cardinal number that is the sum of one and one and one'),\n",
+ " ('leash', 'the cardinal number that is the sum of one and one and one'),\n",
+ " ('trio', 'the cardinal number that is the sum of one and one and one'),\n",
+ " ('tercet', 'the cardinal number that is the sum of one and one and one'),\n",
+ " ('deuce-ace',\n",
+ " 'the cardinal number that is the sum of one and one and one'),\n",
+ " ('triad', 'the cardinal number that is the sum of one and one and one'),\n",
+ " ('terzetto',\n",
+ " 'the cardinal number that is the sum of one and one and one')]},\n",
+ " {'answer': 'immunosuppressive',\n",
+ " 'hint': 'synonyms for immunosuppressive',\n",
+ " 'clues': [('immune suppressant drug',\n",
+ " \"a drug that lowers the body's normal immune response\"),\n",
+ " ('immunosuppressant',\n",
+ " \"a drug that lowers the body's normal immune response\"),\n",
+ " ('immunosuppressor',\n",
+ " \"a drug that lowers the body's normal immune response\"),\n",
+ " ('immunosuppressive drug',\n",
+ " \"a drug that lowers the body's normal immune response\")]},\n",
+ " {'answer': 'imperfect',\n",
+ " 'hint': 'synonyms for imperfect',\n",
+ " 'clues': [('imperfect tense',\n",
+ " 'a tense of verbs used in describing action that is on-going'),\n",
+ " ('progressive',\n",
+ " 'a tense of verbs used in describing action that is on-going'),\n",
+ " ('continuous tense',\n",
+ " 'a tense of verbs used in describing action that is on-going'),\n",
+ " ('progressive tense',\n",
+ " 'a tense of verbs used in describing action that is on-going')]},\n",
+ " {'answer': 'incoming',\n",
+ " 'hint': 'synonyms for incoming',\n",
+ " 'clues': [('entering', 'the act of entering'),\n",
+ " ('entry', 'the act of entering'),\n",
+ " ('ingress', 'the act of entering'),\n",
+ " ('entrance', 'the act of entering')]},\n",
+ " {'answer': 'indicative',\n",
+ " 'hint': 'synonyms for indicative',\n",
+ " 'clues': [('indicative mood',\n",
+ " 'a mood (grammatically unmarked) that represents the act or state as an objective fact'),\n",
+ " ('declarative',\n",
+ " 'a mood (grammatically unmarked) that represents the act or state as an objective fact'),\n",
+ " ('fact mood',\n",
+ " 'a mood (grammatically unmarked) that represents the act or state as an objective fact'),\n",
+ " ('common mood',\n",
+ " 'a mood (grammatically unmarked) that represents the act or state as an objective fact'),\n",
+ " ('declarative mood',\n",
+ " 'a mood (grammatically unmarked) that represents the act or state as an objective fact')]},\n",
+ " {'answer': 'individual',\n",
+ " 'hint': 'synonyms for individual',\n",
+ " 'clues': [('somebody', 'a human being'),\n",
+ " ('person', 'a human being'),\n",
+ " ('someone', 'a human being'),\n",
+ " ('soul', 'a human being'),\n",
+ " ('mortal', 'a human being')]},\n",
+ " {'answer': 'infrared',\n",
+ " 'hint': 'synonyms for infrared',\n",
+ " 'clues': [('infrared light',\n",
+ " 'electromagnetic radiation with wavelengths longer than visible light but shorter than radio waves'),\n",
+ " ('infrared radiation',\n",
+ " 'electromagnetic radiation with wavelengths longer than visible light but shorter than radio waves'),\n",
+ " ('infrared frequency',\n",
+ " 'the infrared region of the electromagnetic spectrum; electromagnetic wave frequencies below the visible range'),\n",
+ " ('infrared emission',\n",
+ " 'electromagnetic radiation with wavelengths longer than visible light but shorter than radio waves')]},\n",
+ " {'answer': 'initiative',\n",
+ " 'hint': 'synonyms for initiative',\n",
+ " 'clues': [('go-ahead', 'readiness to embark on bold new ventures'),\n",
+ " ('enterprise', 'readiness to embark on bold new ventures'),\n",
+ " ('first step', 'the first of a series of actions'),\n",
+ " ('opening', 'the first of a series of actions'),\n",
+ " ('enterprisingness', 'readiness to embark on bold new ventures'),\n",
+ " ('opening move', 'the first of a series of actions')]},\n",
+ " {'answer': 'instant',\n",
+ " 'hint': 'synonyms for instant',\n",
+ " 'clues': [('split second',\n",
+ " 'a very short time (as the time it takes the eye to blink or the heart to beat)'),\n",
+ " ('minute', 'a particular point in time'),\n",
+ " ('flash',\n",
+ " 'a very short time (as the time it takes the eye to blink or the heart to beat)'),\n",
+ " ('moment', 'a particular point in time'),\n",
+ " ('blink of an eye',\n",
+ " 'a very short time (as the time it takes the eye to blink or the heart to beat)'),\n",
+ " ('trice',\n",
+ " 'a very short time (as the time it takes the eye to blink or the heart to beat)'),\n",
+ " ('jiffy',\n",
+ " 'a very short time (as the time it takes the eye to blink or the heart to beat)'),\n",
+ " ('twinkling',\n",
+ " 'a very short time (as the time it takes the eye to blink or the heart to beat)'),\n",
+ " ('wink',\n",
+ " 'a very short time (as the time it takes the eye to blink or the heart to beat)'),\n",
+ " ('second', 'a particular point in time'),\n",
+ " ('heartbeat',\n",
+ " 'a very short time (as the time it takes the eye to blink or the heart to beat)')]},\n",
+ " {'answer': 'intent',\n",
+ " 'hint': 'synonyms for intent',\n",
+ " 'clues': [('spirit', 'the intended meaning of a communication'),\n",
+ " ('purpose',\n",
+ " 'an anticipated outcome that is intended or that guides your planned actions'),\n",
+ " ('aim',\n",
+ " 'an anticipated outcome that is intended or that guides your planned actions'),\n",
+ " ('intention',\n",
+ " 'an anticipated outcome that is intended or that guides your planned actions'),\n",
+ " ('design',\n",
+ " 'an anticipated outcome that is intended or that guides your planned actions'),\n",
+ " ('purport', 'the intended meaning of a communication')]},\n",
+ " {'answer': 'interrogative',\n",
+ " 'hint': 'synonyms for interrogative',\n",
+ " 'clues': [('interrogation', 'a sentence of inquiry that asks for a reply'),\n",
+ " ('interrogative sentence', 'a sentence of inquiry that asks for a reply'),\n",
+ " ('question', 'a sentence of inquiry that asks for a reply'),\n",
+ " ('interrogative mood',\n",
+ " 'some linguists consider interrogative sentences to constitute a mood')]},\n",
+ " {'answer': 'intoxicant',\n",
+ " 'hint': 'synonyms for intoxicant',\n",
+ " 'clues': [('alcoholic drink',\n",
+ " 'a liquor or brew containing alcohol as the active agent'),\n",
+ " ('alcoholic beverage',\n",
+ " 'a liquor or brew containing alcohol as the active agent'),\n",
+ " ('alcohol', 'a liquor or brew containing alcohol as the active agent'),\n",
+ " ('inebriant',\n",
+ " 'a liquor or brew containing alcohol as the active agent')]},\n",
+ " {'answer': 'iv',\n",
+ " 'hint': 'synonyms for iv',\n",
+ " 'clues': [('tetrad',\n",
+ " 'the cardinal number that is the sum of three and one'),\n",
+ " ('quaternion', 'the cardinal number that is the sum of three and one'),\n",
+ " ('intravenous feeding', 'administration of nutrients through a vein'),\n",
+ " ('quartet', 'the cardinal number that is the sum of three and one'),\n",
+ " ('foursome', 'the cardinal number that is the sum of three and one'),\n",
+ " ('quaternity', 'the cardinal number that is the sum of three and one'),\n",
+ " ('four', 'the cardinal number that is the sum of three and one'),\n",
+ " ('4', 'the cardinal number that is the sum of three and one'),\n",
+ " ('quaternary', 'the cardinal number that is the sum of three and one'),\n",
+ " ('quatern', 'the cardinal number that is the sum of three and one'),\n",
+ " ('quadruplet', 'the cardinal number that is the sum of three and one')]},\n",
+ " {'answer': 'jet',\n",
+ " 'hint': 'synonyms for jet',\n",
+ " 'clues': [('blue jet',\n",
+ " 'atmospheric discharges (lasting 10 msec) bursting from the tops of giant storm clouds in blue cones that widen as they flash upward'),\n",
+ " ('cat valium', 'street names for ketamine'),\n",
+ " ('reverse lightning',\n",
+ " 'atmospheric discharges (lasting 10 msec) bursting from the tops of giant storm clouds in blue cones that widen as they flash upward'),\n",
+ " ('spurt', 'the occurrence of a sudden discharge (as of liquid)'),\n",
+ " ('jet-propelled plane', 'an airplane powered by one or more jet engines'),\n",
+ " ('fountain', 'an artificially produced flow of water'),\n",
+ " ('squirt', 'the occurrence of a sudden discharge (as of liquid)'),\n",
+ " ('honey oil', 'street names for ketamine'),\n",
+ " ('special K', 'street names for ketamine'),\n",
+ " ('green', 'street names for ketamine'),\n",
+ " ('super C', 'street names for ketamine'),\n",
+ " ('jet plane', 'an airplane powered by one or more jet engines'),\n",
+ " ('spirt', 'the occurrence of a sudden discharge (as of liquid)'),\n",
+ " ('super acid', 'street names for ketamine')]},\n",
+ " {'answer': 'joint',\n",
+ " 'hint': 'synonyms for joint',\n",
+ " 'clues': [('join',\n",
+ " 'the shape or manner in which things come together and a connection is made'),\n",
+ " ('stick', 'marijuana leaves rolled into a cigarette for smoking'),\n",
+ " ('roast',\n",
+ " 'a piece of meat roasted or for roasting and of a size for slicing into more than one portion'),\n",
+ " ('juncture',\n",
+ " 'the shape or manner in which things come together and a connection is made'),\n",
+ " ('junction',\n",
+ " 'the shape or manner in which things come together and a connection is made'),\n",
+ " ('articulation',\n",
+ " 'the shape or manner in which things come together and a connection is made'),\n",
+ " ('marijuana cigarette',\n",
+ " 'marijuana leaves rolled into a cigarette for smoking'),\n",
+ " ('reefer', 'marijuana leaves rolled into a cigarette for smoking'),\n",
+ " ('spliff', 'marijuana leaves rolled into a cigarette for smoking')]},\n",
+ " {'answer': 'k',\n",
+ " 'hint': 'synonyms for k',\n",
+ " 'clues': [('chiliad',\n",
+ " 'the cardinal number that is the product of 10 and 100'),\n",
+ " ('atomic number 19',\n",
+ " 'a light soft silver-white metallic element of the alkali metal group; oxidizes rapidly in air and reacts violently with water; is abundant in nature in combined forms occurring in sea water and in carnallite and kainite and sylvite'),\n",
+ " ('kibibyte', 'a unit of information equal to 1024 bytes'),\n",
+ " ('jet', 'street names for ketamine'),\n",
+ " ('kilobyte', 'a unit of information equal to 1000 bytes'),\n",
+ " ('honey oil', 'street names for ketamine'),\n",
+ " ('special K', 'street names for ketamine'),\n",
+ " ('yard', 'the cardinal number that is the product of 10 and 100'),\n",
+ " ('one thousand', 'the cardinal number that is the product of 10 and 100'),\n",
+ " ('potassium',\n",
+ " 'a light soft silver-white metallic element of the alkali metal group; oxidizes rapidly in air and reacts violently with water; is abundant in nature in combined forms occurring in sea water and in carnallite and kainite and sylvite'),\n",
+ " ('kelvin',\n",
+ " \"the basic unit of thermodynamic temperature adopted under the Systeme International d'Unites\"),\n",
+ " ('1000', 'the cardinal number that is the product of 10 and 100'),\n",
+ " ('green', 'street names for ketamine'),\n",
+ " ('kB', 'a unit of information equal to 1000 bytes'),\n",
+ " ('cat valium', 'street names for ketamine'),\n",
+ " ('grand', 'the cardinal number that is the product of 10 and 100'),\n",
+ " ('thou', 'the cardinal number that is the product of 10 and 100'),\n",
+ " ('super C', 'street names for ketamine'),\n",
+ " ('thousand', 'the cardinal number that is the product of 10 and 100'),\n",
+ " ('super acid', 'street names for ketamine')]},\n",
+ " {'answer': 'key',\n",
+ " 'hint': 'synonyms for key',\n",
+ " 'clues': [('cay', 'a coral reef off the southern coast of Florida'),\n",
+ " ('keystone', 'the central building block at the top of an arch or vault'),\n",
+ " ('tonality',\n",
+ " 'any of 24 major or minor diatonic scales that provide the tonal framework for a piece of music'),\n",
+ " ('winder',\n",
+ " 'mechanical device used to wind another device that is driven by a spring (as a clock)'),\n",
+ " ('headstone',\n",
+ " 'the central building block at the top of an arch or vault'),\n",
+ " ('paint',\n",
+ " '(basketball) a space (including the foul line) in front of the basket at each end of a basketball court; usually painted a different color from the rest of the court')]},\n",
+ " {'answer': 'killing',\n",
+ " 'hint': 'synonyms for killing',\n",
+ " 'clues': [('violent death', 'an event that causes someone to die'),\n",
+ " ('cleanup', 'a very large profit'),\n",
+ " ('putting to death', 'the act of terminating a life'),\n",
+ " ('kill', 'the act of terminating a life')]},\n",
+ " {'answer': 'kin',\n",
+ " 'hint': 'synonyms for kin',\n",
+ " 'clues': [('kin group', 'group of people related by blood or marriage'),\n",
+ " ('tribe', 'group of people related by blood or marriage'),\n",
+ " ('clan', 'group of people related by blood or marriage'),\n",
+ " ('kinship group', 'group of people related by blood or marriage'),\n",
+ " ('kindred', 'group of people related by blood or marriage')]},\n",
+ " {'answer': 'kindred',\n",
+ " 'hint': 'synonyms for kindred',\n",
+ " 'clues': [('kin', 'group of people related by blood or marriage'),\n",
+ " ('kin group', 'group of people related by blood or marriage'),\n",
+ " ('tribe', 'group of people related by blood or marriage'),\n",
+ " ('clan', 'group of people related by blood or marriage'),\n",
+ " ('kinship group', 'group of people related by blood or marriage')]},\n",
+ " {'answer': 'l',\n",
+ " 'hint': 'synonyms for l',\n",
+ " 'clues': [('liter',\n",
+ " 'a metric unit of capacity, formerly defined as the volume of one kilogram of pure water under standard conditions; now equal to 1,000 cubic centimeters (or approximately 1.75 pints)'),\n",
+ " ('fifty', 'the cardinal number that is the product of ten and five'),\n",
+ " ('lambert',\n",
+ " 'a cgs unit of illumination equal to the brightness of a perfectly diffusing surface that emits or reflects one lumen per square centimeter'),\n",
+ " ('litre',\n",
+ " 'a metric unit of capacity, formerly defined as the volume of one kilogram of pure water under standard conditions; now equal to 1,000 cubic centimeters (or approximately 1.75 pints)'),\n",
+ " ('cubic decimeter',\n",
+ " 'a metric unit of capacity, formerly defined as the volume of one kilogram of pure water under standard conditions; now equal to 1,000 cubic centimeters (or approximately 1.75 pints)'),\n",
+ " ('50', 'the cardinal number that is the product of ten and five')]},\n",
+ " {'answer': 'lashing',\n",
+ " 'hint': 'synonyms for lashing',\n",
+ " 'clues': [('tanning',\n",
+ " 'beating with a whip or strap or rope as a form of punishment'),\n",
+ " ('flagellation',\n",
+ " 'beating with a whip or strap or rope as a form of punishment'),\n",
+ " ('whipping',\n",
+ " 'beating with a whip or strap or rope as a form of punishment'),\n",
+ " ('flogging',\n",
+ " 'beating with a whip or strap or rope as a form of punishment')]},\n",
+ " {'answer': 'last',\n",
+ " 'hint': 'synonyms for last',\n",
+ " 'clues': [('final stage',\n",
+ " 'the concluding parts of an event or occurrence'),\n",
+ " ('stopping point', 'the temporal end; the concluding time'),\n",
+ " ('finale', 'the temporal end; the concluding time'),\n",
+ " ('finis', 'the temporal end; the concluding time'),\n",
+ " ('close', 'the temporal end; the concluding time'),\n",
+ " (\"cobbler's last\",\n",
+ " 'holding device shaped like a human foot that is used to fashion or repair shoes'),\n",
+ " ('death', 'the time at which life ends; continuing until dead'),\n",
+ " ('end', 'the concluding parts of an event or occurrence'),\n",
+ " ('conclusion', 'the temporal end; the concluding time'),\n",
+ " (\"shoemaker's last\",\n",
+ " 'holding device shaped like a human foot that is used to fashion or repair shoes')]},\n",
+ " {'answer': 'lean',\n",
+ " 'hint': 'synonyms for lean',\n",
+ " 'clues': [('tilt',\n",
+ " 'the property possessed by a line or surface that departs from the vertical'),\n",
+ " ('leaning',\n",
+ " 'the property possessed by a line or surface that departs from the vertical'),\n",
+ " ('inclination',\n",
+ " 'the property possessed by a line or surface that departs from the vertical'),\n",
+ " ('list',\n",
+ " 'the property possessed by a line or surface that departs from the vertical')]},\n",
+ " {'answer': 'leaning',\n",
+ " 'hint': 'synonyms for leaning',\n",
+ " 'clues': [('proclivity', 'a natural inclination'),\n",
+ " ('propensity', 'an inclination to do something'),\n",
+ " ('tilt',\n",
+ " 'the property possessed by a line or surface that departs from the vertical'),\n",
+ " ('lean',\n",
+ " 'the property possessed by a line or surface that departs from the vertical'),\n",
+ " ('list',\n",
+ " 'the property possessed by a line or surface that departs from the vertical'),\n",
+ " ('inclination',\n",
+ " 'the property possessed by a line or surface that departs from the vertical'),\n",
+ " ('tendency', 'an inclination to do something')]},\n",
+ " {'answer': 'level',\n",
+ " 'hint': 'synonyms for level',\n",
+ " 'clues': [('story',\n",
+ " 'a structure consisting of a room or set of rooms at a single position along a vertical scale'),\n",
+ " ('horizontal surface', 'a flat surface at right angles to a plumb line'),\n",
+ " ('grade', 'a position on a scale of intensity or amount or quality'),\n",
+ " ('layer', 'an abstract place usually conceived as having depth'),\n",
+ " ('spirit level',\n",
+ " 'indicator that establishes the horizontal when a bubble is centered in a tube of liquid'),\n",
+ " ('floor',\n",
+ " 'a structure consisting of a room or set of rooms at a single position along a vertical scale'),\n",
+ " ('stratum', 'an abstract place usually conceived as having depth'),\n",
+ " ('degree', 'a position on a scale of intensity or amount or quality')]},\n",
+ " {'answer': 'light',\n",
+ " 'hint': 'synonyms for light',\n",
+ " 'clues': [('twinkle',\n",
+ " 'merriment expressed by a brightness or gleam or animation of countenance'),\n",
+ " ('visible light',\n",
+ " '(physics) electromagnetic radiation that can produce a visual sensation'),\n",
+ " ('brightness',\n",
+ " 'the quality of being luminous; emitting or reflecting light'),\n",
+ " ('igniter', 'a device for lighting or igniting fuel or charges or fires'),\n",
+ " ('visible radiation',\n",
+ " '(physics) electromagnetic radiation that can produce a visual sensation'),\n",
+ " ('luminousness',\n",
+ " 'the quality of being luminous; emitting or reflecting light'),\n",
+ " ('spark',\n",
+ " 'merriment expressed by a brightness or gleam or animation of countenance'),\n",
+ " ('brightness level',\n",
+ " 'the quality of being luminous; emitting or reflecting light'),\n",
+ " ('lighter', 'a device for lighting or igniting fuel or charges or fires'),\n",
+ " ('light source', 'any device serving as a source of illumination'),\n",
+ " ('lightness',\n",
+ " 'the visual effect of illumination on objects or scenes as created in pictures'),\n",
+ " ('luminosity',\n",
+ " 'the quality of being luminous; emitting or reflecting light'),\n",
+ " ('sparkle',\n",
+ " 'merriment expressed by a brightness or gleam or animation of countenance'),\n",
+ " ('luminance',\n",
+ " 'the quality of being luminous; emitting or reflecting light')]},\n",
+ " {'answer': 'literal',\n",
+ " 'hint': 'synonyms for literal',\n",
+ " 'clues': [('misprint',\n",
+ " 'a mistake in printed matter resulting from mechanical failures of some kind'),\n",
+ " ('erratum',\n",
+ " 'a mistake in printed matter resulting from mechanical failures of some kind'),\n",
+ " ('literal error',\n",
+ " 'a mistake in printed matter resulting from mechanical failures of some kind'),\n",
+ " ('typo',\n",
+ " 'a mistake in printed matter resulting from mechanical failures of some kind'),\n",
+ " ('typographical error',\n",
+ " 'a mistake in printed matter resulting from mechanical failures of some kind')]},\n",
+ " {'answer': 'living',\n",
+ " 'hint': 'synonyms for living',\n",
+ " 'clues': [('life',\n",
+ " 'the experience of being alive; the course of human events and activities'),\n",
+ " ('sustenance', 'the financial means whereby one lives'),\n",
+ " ('bread and butter', 'the financial means whereby one lives'),\n",
+ " ('keep', 'the financial means whereby one lives'),\n",
+ " ('support', 'the financial means whereby one lives'),\n",
+ " ('livelihood', 'the financial means whereby one lives')]},\n",
+ " {'answer': 'm',\n",
+ " 'hint': 'synonyms for m',\n",
+ " 'clues': [('chiliad',\n",
+ " 'the cardinal number that is the product of 10 and 100'),\n",
+ " ('meter',\n",
+ " \"the basic unit of length adopted under the Systeme International d'Unites (approximately 1.094 yards)\"),\n",
+ " ('grand', 'the cardinal number that is the product of 10 and 100'),\n",
+ " ('molar concentration',\n",
+ " 'concentration measured by the number of moles of solute per liter of solution'),\n",
+ " ('thou', 'the cardinal number that is the product of 10 and 100'),\n",
+ " ('megabyte',\n",
+ " 'a unit of information equal to 1000 kilobytes or 10^6 (1,000,000) bytes'),\n",
+ " ('molarity',\n",
+ " 'concentration measured by the number of moles of solute per liter of solution'),\n",
+ " ('yard', 'the cardinal number that is the product of 10 and 100'),\n",
+ " ('metre',\n",
+ " \"the basic unit of length adopted under the Systeme International d'Unites (approximately 1.094 yards)\"),\n",
+ " ('one thousand', 'the cardinal number that is the product of 10 and 100'),\n",
+ " ('mebibyte',\n",
+ " 'a unit of information equal to 1024 kibibytes or 2^20 (1,048,576) bytes'),\n",
+ " ('1000', 'the cardinal number that is the product of 10 and 100'),\n",
+ " ('thousand', 'the cardinal number that is the product of 10 and 100')]},\n",
+ " {'answer': 'magic',\n",
+ " 'hint': 'synonyms for magic',\n",
+ " 'clues': [('deception',\n",
+ " 'an illusory feat; considered magical by naive observers'),\n",
+ " ('trick', 'an illusory feat; considered magical by naive observers'),\n",
+ " ('legerdemain',\n",
+ " 'an illusory feat; considered magical by naive observers'),\n",
+ " ('illusion', 'an illusory feat; considered magical by naive observers'),\n",
+ " ('magic trick',\n",
+ " 'an illusory feat; considered magical by naive observers'),\n",
+ " ('conjuring trick',\n",
+ " 'an illusory feat; considered magical by naive observers'),\n",
+ " ('thaumaturgy', 'any art that invokes supernatural powers'),\n",
+ " ('conjuration',\n",
+ " 'an illusory feat; considered magical by naive observers')]},\n",
+ " {'answer': 'majuscule',\n",
+ " 'hint': 'synonyms for majuscule',\n",
+ " 'clues': [('capital',\n",
+ " 'one of the large alphabetic characters used as the first letter in writing or printing proper names and sometimes for emphasis'),\n",
+ " ('capital letter',\n",
+ " 'one of the large alphabetic characters used as the first letter in writing or printing proper names and sometimes for emphasis'),\n",
+ " ('uppercase',\n",
+ " 'one of the large alphabetic characters used as the first letter in writing or printing proper names and sometimes for emphasis'),\n",
+ " ('upper-case letter',\n",
+ " 'one of the large alphabetic characters used as the first letter in writing or printing proper names and sometimes for emphasis')]},\n",
+ " {'answer': 'mass',\n",
+ " 'hint': 'synonyms for mass',\n",
+ " 'clues': [('pile',\n",
+ " \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('flock', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('wad', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('mess', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('good deal',\n",
+ " \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('sight', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('batch', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('mountain',\n",
+ " \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('great deal',\n",
+ " \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('stack', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('multitude', 'the common people generally'),\n",
+ " ('hoi polloi', 'the common people generally'),\n",
+ " ('people', 'the common people generally'),\n",
+ " ('muckle', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('slew', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('mickle', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('spate', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('deal', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('heap', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('quite a little',\n",
+ " \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('passel', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('masses', 'the common people generally'),\n",
+ " ('pot', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('plenty', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('tidy sum',\n",
+ " \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('bulk', 'the property of something that is great in magnitude'),\n",
+ " ('mint', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('volume', 'the property of something that is great in magnitude'),\n",
+ " ('lot', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('hatful', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('raft', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('the great unwashed', 'the common people generally'),\n",
+ " ('peck', \"(often followed by `of') a large number or amount or extent\")]},\n",
+ " {'answer': 'master',\n",
+ " 'hint': 'synonyms for master',\n",
+ " 'clues': [('original',\n",
+ " 'an original creation (i.e., an audio recording) from which copies can be made'),\n",
+ " ('master copy',\n",
+ " 'an original creation (i.e., an audio recording) from which copies can be made'),\n",
+ " ('passkey', 'key that secures entrance everywhere'),\n",
+ " ('passe-partout', 'key that secures entrance everywhere'),\n",
+ " ('master key', 'key that secures entrance everywhere')]},\n",
+ " {'answer': 'mat',\n",
+ " 'hint': 'synonyms for mat',\n",
+ " 'clues': [('matting',\n",
+ " 'mounting consisting of a border or background for a picture'),\n",
+ " ('lusterlessness',\n",
+ " 'the property of having little or no contrast; lacking highlights or gloss'),\n",
+ " ('gym mat',\n",
+ " 'sports equipment consisting of a piece of thick padding on the floor for gymnastic sports'),\n",
+ " ('matte',\n",
+ " 'the property of having little or no contrast; lacking highlights or gloss'),\n",
+ " ('flatness',\n",
+ " 'the property of having little or no contrast; lacking highlights or gloss')]},\n",
+ " {'answer': 'material',\n",
+ " 'hint': 'synonyms for material',\n",
+ " 'clues': [('fabric',\n",
+ " 'artifact made by weaving or felting or knitting or crocheting natural or synthetic fibers'),\n",
+ " ('cloth',\n",
+ " 'artifact made by weaving or felting or knitting or crocheting natural or synthetic fibers'),\n",
+ " ('textile',\n",
+ " 'artifact made by weaving or felting or knitting or crocheting natural or synthetic fibers'),\n",
+ " ('stuff',\n",
+ " 'the tangible substance that goes into the makeup of a physical object')]},\n",
+ " {'answer': 'matt',\n",
+ " 'hint': 'synonyms for matt',\n",
+ " 'clues': [('lusterlessness',\n",
+ " 'the property of having little or no contrast; lacking highlights or gloss'),\n",
+ " ('mat',\n",
+ " 'the property of having little or no contrast; lacking highlights or gloss'),\n",
+ " ('matte',\n",
+ " 'the property of having little or no contrast; lacking highlights or gloss'),\n",
+ " ('flatness',\n",
+ " 'the property of having little or no contrast; lacking highlights or gloss')]},\n",
+ " {'answer': 'maximum',\n",
+ " 'hint': 'synonyms for maximum',\n",
+ " 'clues': [('utmost', 'the greatest possible degree'),\n",
+ " ('upper limit', 'the largest possible quantity'),\n",
+ " ('level best', 'the greatest possible degree'),\n",
+ " ('uttermost', 'the greatest possible degree')]},\n",
+ " {'answer': 'meaning',\n",
+ " 'hint': 'synonyms for meaning',\n",
+ " 'clues': [('signification',\n",
+ " 'the message that is intended or expressed or signified'),\n",
+ " ('significance',\n",
+ " 'the message that is intended or expressed or signified'),\n",
+ " ('substance', 'the idea that is intended'),\n",
+ " ('import', 'the message that is intended or expressed or signified')]},\n",
+ " {'answer': 'medical',\n",
+ " 'hint': 'synonyms for medical',\n",
+ " 'clues': [('medical checkup',\n",
+ " 'a thorough physical examination; includes a variety of tests depending on the age and sex and health of the person'),\n",
+ " ('checkup',\n",
+ " 'a thorough physical examination; includes a variety of tests depending on the age and sex and health of the person'),\n",
+ " ('health check',\n",
+ " 'a thorough physical examination; includes a variety of tests depending on the age and sex and health of the person'),\n",
+ " ('medical exam',\n",
+ " 'a thorough physical examination; includes a variety of tests depending on the age and sex and health of the person'),\n",
+ " ('medical examination',\n",
+ " 'a thorough physical examination; includes a variety of tests depending on the age and sex and health of the person')]},\n",
+ " {'answer': 'merging',\n",
+ " 'hint': 'synonyms for merging',\n",
+ " 'clues': [('meeting', 'the act of joining together as one'),\n",
+ " ('confluence', 'a flowing together'),\n",
+ " ('conflux', 'a flowing together'),\n",
+ " ('coming together', 'the act of joining together as one')]},\n",
+ " {'answer': 'middle',\n",
+ " 'hint': 'synonyms for middle',\n",
+ " 'clues': [('heart',\n",
+ " 'an area that is approximately central within some larger region'),\n",
+ " ('eye',\n",
+ " 'an area that is approximately central within some larger region'),\n",
+ " ('center',\n",
+ " 'an area that is approximately central within some larger region'),\n",
+ " ('centre',\n",
+ " 'an area that is approximately central within some larger region')]},\n",
+ " {'answer': 'military',\n",
+ " 'hint': 'synonyms for military',\n",
+ " 'clues': [('war machine', 'the military forces of a nation'),\n",
+ " ('armed forces', 'the military forces of a nation'),\n",
+ " ('military machine', 'the military forces of a nation'),\n",
+ " ('armed services', 'the military forces of a nation')]},\n",
+ " {'answer': 'million',\n",
+ " 'hint': 'synonyms for million',\n",
+ " 'clues': [('trillion',\n",
+ " 'a very large indefinite number (usually hyperbole)'),\n",
+ " ('1000000',\n",
+ " 'the number that is represented as a one followed by 6 zeros'),\n",
+ " ('zillion', 'a very large indefinite number (usually hyperbole)'),\n",
+ " ('one thousand thousand',\n",
+ " 'the number that is represented as a one followed by 6 zeros'),\n",
+ " ('meg', 'the number that is represented as a one followed by 6 zeros')]},\n",
+ " {'answer': 'mint',\n",
+ " 'hint': 'synonyms for mint',\n",
+ " 'clues': [('pile',\n",
+ " \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('flock', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('wad', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('mass', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('mess', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('good deal',\n",
+ " \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('sight', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('batch', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('mountain',\n",
+ " \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('great deal',\n",
+ " \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('stack', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('muckle', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('slew', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('mickle', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('spate', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('mint candy', 'a candy that is flavored with a mint oil'),\n",
+ " ('deal', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('heap', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('quite a little',\n",
+ " \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('passel', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('pot', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('plenty', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('tidy sum',\n",
+ " \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('lot', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('hatful', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('raft', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('peck', \"(often followed by `of') a large number or amount or extent\")]},\n",
+ " {'answer': 'minute',\n",
+ " 'hint': 'synonyms for minute',\n",
+ " 'clues': [('bit', 'an indefinitely short time'),\n",
+ " ('minute of arc',\n",
+ " 'a unit of angular distance equal to a 60th of a degree'),\n",
+ " ('moment', 'an indefinitely short time'),\n",
+ " ('hour', 'distance measured by the time taken to cover it'),\n",
+ " ('arcminute', 'a unit of angular distance equal to a 60th of a degree'),\n",
+ " ('second', 'an indefinitely short time'),\n",
+ " ('mo', 'an indefinitely short time'),\n",
+ " ('instant', 'a particular point in time'),\n",
+ " ('min', 'a unit of time equal to 60 seconds or 1/60th of an hour')]},\n",
+ " {'answer': 'model',\n",
+ " 'hint': 'synonyms for model',\n",
+ " 'clues': [('simulation',\n",
+ " 'representation of something (sometimes on a smaller scale)'),\n",
+ " ('exemplar', 'something to be imitated'),\n",
+ " ('framework',\n",
+ " 'a hypothetical description of a complex entity or process'),\n",
+ " ('good example', 'something to be imitated'),\n",
+ " ('example', 'a representative form or pattern'),\n",
+ " ('modeling',\n",
+ " 'the act of representing something (usually on a smaller scale)'),\n",
+ " ('theoretical account',\n",
+ " 'a hypothetical description of a complex entity or process')]},\n",
+ " {'answer': 'mortal',\n",
+ " 'hint': 'synonyms for mortal',\n",
+ " 'clues': [('somebody', 'a human being'),\n",
+ " ('individual', 'a human being'),\n",
+ " ('someone', 'a human being'),\n",
+ " ('person', 'a human being'),\n",
+ " ('soul', 'a human being')]},\n",
+ " {'answer': 'motley',\n",
+ " 'hint': 'synonyms for motley',\n",
+ " 'clues': [('miscellanea',\n",
+ " 'a collection containing a variety of sorts of things'),\n",
+ " ('variety', 'a collection containing a variety of sorts of things'),\n",
+ " ('mixture', 'a collection containing a variety of sorts of things'),\n",
+ " ('assortment', 'a collection containing a variety of sorts of things'),\n",
+ " ('smorgasbord', 'a collection containing a variety of sorts of things'),\n",
+ " ('potpourri', 'a collection containing a variety of sorts of things'),\n",
+ " ('salmagundi', 'a collection containing a variety of sorts of things'),\n",
+ " ('mixed bag', 'a collection containing a variety of sorts of things')]},\n",
+ " {'answer': 'murmuring',\n",
+ " 'hint': 'synonyms for murmuring',\n",
+ " 'clues': [('mutter', 'a complaint uttered in a low and indistinct tone'),\n",
+ " ('grumbling', 'a complaint uttered in a low and indistinct tone'),\n",
+ " ('murmuration',\n",
+ " 'a low continuous indistinct sound; often accompanied by movement of the lips without the production of articulate speech'),\n",
+ " ('murmur', 'a complaint uttered in a low and indistinct tone'),\n",
+ " ('mussitation',\n",
+ " 'a low continuous indistinct sound; often accompanied by movement of the lips without the production of articulate speech'),\n",
+ " ('grumble', 'a complaint uttered in a low and indistinct tone')]},\n",
+ " {'answer': 'musing',\n",
+ " 'hint': 'synonyms for musing',\n",
+ " 'clues': [('contemplation', 'a calm, lengthy, intent consideration'),\n",
+ " ('reflexion', 'a calm, lengthy, intent consideration'),\n",
+ " ('reflection', 'a calm, lengthy, intent consideration'),\n",
+ " ('thoughtfulness', 'a calm, lengthy, intent consideration'),\n",
+ " ('rumination', 'a calm, lengthy, intent consideration')]},\n",
+ " {'answer': 'necessary',\n",
+ " 'hint': 'synonyms for necessary',\n",
+ " 'clues': [('necessity', 'anything indispensable'),\n",
+ " ('requisite', 'anything indispensable'),\n",
+ " ('essential', 'anything indispensable'),\n",
+ " ('requirement', 'anything indispensable')]},\n",
+ " {'answer': 'net',\n",
+ " 'hint': 'synonyms for net',\n",
+ " 'clues': [('network',\n",
+ " 'an open fabric of string or rope or wire woven together at regular intervals'),\n",
+ " ('mesh',\n",
+ " 'an open fabric of string or rope or wire woven together at regular intervals'),\n",
+ " ('meshwork',\n",
+ " 'an open fabric of string or rope or wire woven together at regular intervals'),\n",
+ " ('net profit',\n",
+ " 'the excess of revenues over outlays in a given period of time (including depreciation and other non-cash expenses)'),\n",
+ " ('cyberspace',\n",
+ " 'a computer network consisting of a worldwide network of computer networks that use the TCP/IP network protocols to facilitate data transmission and exchange'),\n",
+ " ('earnings',\n",
+ " 'the excess of revenues over outlays in a given period of time (including depreciation and other non-cash expenses)'),\n",
+ " ('net income',\n",
+ " 'the excess of revenues over outlays in a given period of time (including depreciation and other non-cash expenses)'),\n",
+ " ('lucre',\n",
+ " 'the excess of revenues over outlays in a given period of time (including depreciation and other non-cash expenses)'),\n",
+ " ('internet',\n",
+ " 'a computer network consisting of a worldwide network of computer networks that use the TCP/IP network protocols to facilitate data transmission and exchange'),\n",
+ " ('profits',\n",
+ " 'the excess of revenues over outlays in a given period of time (including depreciation and other non-cash expenses)')]},\n",
+ " {'answer': 'nine',\n",
+ " 'hint': 'synonyms for nine',\n",
+ " 'clues': [('ball club',\n",
+ " 'a team of professional baseball players who play and travel together'),\n",
+ " ('baseball club',\n",
+ " 'a team of professional baseball players who play and travel together'),\n",
+ " ('niner', 'the cardinal number that is the sum of eight and one'),\n",
+ " ('club',\n",
+ " 'a team of professional baseball players who play and travel together'),\n",
+ " ('9', 'the cardinal number that is the sum of eight and one'),\n",
+ " ('ennead', 'the cardinal number that is the sum of eight and one'),\n",
+ " ('nine-spot',\n",
+ " 'one of four playing cards in a deck with nine pips on the face')]},\n",
+ " {'answer': 'nip_and_tuck',\n",
+ " 'hint': 'synonyms for nip and tuck',\n",
+ " 'clues': [('rhytidectomy',\n",
+ " 'plastic surgery to remove wrinkles and other signs of aging from your face; an incision is made near the hair line and skin is pulled back and excess tissue is excised'),\n",
+ " ('cosmetic surgery',\n",
+ " 'plastic surgery to remove wrinkles and other signs of aging from your face; an incision is made near the hair line and skin is pulled back and excess tissue is excised'),\n",
+ " ('facelift',\n",
+ " 'plastic surgery to remove wrinkles and other signs of aging from your face; an incision is made near the hair line and skin is pulled back and excess tissue is excised'),\n",
+ " ('rhytidoplasty',\n",
+ " 'plastic surgery to remove wrinkles and other signs of aging from your face; an incision is made near the hair line and skin is pulled back and excess tissue is excised'),\n",
+ " ('face lifting',\n",
+ " 'plastic surgery to remove wrinkles and other signs of aging from your face; an incision is made near the hair line and skin is pulled back and excess tissue is excised'),\n",
+ " ('lift',\n",
+ " 'plastic surgery to remove wrinkles and other signs of aging from your face; an incision is made near the hair line and skin is pulled back and excess tissue is excised')]},\n",
+ " {'answer': 'nonsense',\n",
+ " 'hint': 'synonyms for nonsense',\n",
+ " 'clues': [('gimcrackery', 'ornamental objects of no great value'),\n",
+ " ('frill', 'ornamental objects of no great value'),\n",
+ " ('bunk', 'a message that seems to convey no meaning'),\n",
+ " ('folderal', 'ornamental objects of no great value'),\n",
+ " ('trumpery', 'ornamental objects of no great value'),\n",
+ " ('nonsensicality', 'a message that seems to convey no meaning'),\n",
+ " ('gimcrack', 'ornamental objects of no great value'),\n",
+ " ('falderol', 'ornamental objects of no great value'),\n",
+ " ('meaninglessness', 'a message that seems to convey no meaning'),\n",
+ " ('hokum', 'a message that seems to convey no meaning')]},\n",
+ " {'answer': 'normal',\n",
+ " 'hint': 'synonyms for normal',\n",
+ " 'clues': [('pattern', 'something regarded as a normative example'),\n",
+ " ('convention', 'something regarded as a normative example'),\n",
+ " ('rule', 'something regarded as a normative example'),\n",
+ " ('formula', 'something regarded as a normative example')]},\n",
+ " {'answer': 'north',\n",
+ " 'hint': 'synonyms for north',\n",
+ " 'clues': [('northward',\n",
+ " 'the cardinal compass point that is at 0 or 360 degrees'),\n",
+ " ('magnetic north', 'the direction in which a compass needle points'),\n",
+ " ('compass north', 'the direction in which a compass needle points'),\n",
+ " ('due north', 'the cardinal compass point that is at 0 or 360 degrees')]},\n",
+ " {'answer': 'null',\n",
+ " 'hint': 'synonyms for null',\n",
+ " 'clues': [('nada', 'a quantity of no importance'),\n",
+ " ('zippo', 'a quantity of no importance'),\n",
+ " ('zilch', 'a quantity of no importance'),\n",
+ " ('cypher', 'a quantity of no importance'),\n",
+ " ('aught', 'a quantity of no importance'),\n",
+ " ('nix', 'a quantity of no importance'),\n",
+ " ('goose egg', 'a quantity of no importance'),\n",
+ " ('cipher', 'a quantity of no importance'),\n",
+ " ('zero', 'a quantity of no importance'),\n",
+ " ('zip', 'a quantity of no importance'),\n",
+ " ('nil', 'a quantity of no importance'),\n",
+ " ('nothing', 'a quantity of no importance')]},\n",
+ " {'answer': 'objective',\n",
+ " 'hint': 'synonyms for objective',\n",
+ " 'clues': [('target',\n",
+ " 'the goal intended to be attained (and which is believed to be attainable)'),\n",
+ " ('object',\n",
+ " 'the goal intended to be attained (and which is believed to be attainable)'),\n",
+ " ('object glass',\n",
+ " 'the lens or system of lenses in a telescope or microscope that is nearest the object being viewed'),\n",
+ " ('object lens',\n",
+ " 'the lens or system of lenses in a telescope or microscope that is nearest the object being viewed'),\n",
+ " ('aim',\n",
+ " 'the goal intended to be attained (and which is believed to be attainable)')]},\n",
+ " {'answer': 'occlusive',\n",
+ " 'hint': 'synonyms for occlusive',\n",
+ " 'clues': [('stop',\n",
+ " 'a consonant produced by stopping the flow of air at some point and suddenly releasing it'),\n",
+ " ('plosive consonant',\n",
+ " 'a consonant produced by stopping the flow of air at some point and suddenly releasing it'),\n",
+ " ('plosive',\n",
+ " 'a consonant produced by stopping the flow of air at some point and suddenly releasing it'),\n",
+ " ('plosive speech sound',\n",
+ " 'a consonant produced by stopping the flow of air at some point and suddenly releasing it'),\n",
+ " ('stop consonant',\n",
+ " 'a consonant produced by stopping the flow of air at some point and suddenly releasing it')]},\n",
+ " {'answer': 'omnibus',\n",
+ " 'hint': 'synonyms for omnibus',\n",
+ " 'clues': [('motorbus',\n",
+ " 'a vehicle carrying many passengers; used for public transport'),\n",
+ " ('coach',\n",
+ " 'a vehicle carrying many passengers; used for public transport'),\n",
+ " ('motorcoach',\n",
+ " 'a vehicle carrying many passengers; used for public transport'),\n",
+ " ('autobus',\n",
+ " 'a vehicle carrying many passengers; used for public transport'),\n",
+ " ('charabanc',\n",
+ " 'a vehicle carrying many passengers; used for public transport'),\n",
+ " ('bus', 'a vehicle carrying many passengers; used for public transport'),\n",
+ " ('jitney',\n",
+ " 'a vehicle carrying many passengers; used for public transport'),\n",
+ " ('passenger vehicle',\n",
+ " 'a vehicle carrying many passengers; used for public transport'),\n",
+ " ('double-decker',\n",
+ " 'a vehicle carrying many passengers; used for public transport')]},\n",
+ " {'answer': 'one',\n",
+ " 'hint': 'synonyms for one',\n",
+ " 'clues': [('ace',\n",
+ " 'the smallest whole number or a numeral representing this number'),\n",
+ " ('single',\n",
+ " 'the smallest whole number or a numeral representing this number'),\n",
+ " ('1', 'the smallest whole number or a numeral representing this number'),\n",
+ " ('unity',\n",
+ " 'the smallest whole number or a numeral representing this number')]},\n",
+ " {'answer': 'one_thousand',\n",
+ " 'hint': 'synonyms for one thousand',\n",
+ " 'clues': [('chiliad',\n",
+ " 'the cardinal number that is the product of 10 and 100'),\n",
+ " ('yard', 'the cardinal number that is the product of 10 and 100'),\n",
+ " ('grand', 'the cardinal number that is the product of 10 and 100'),\n",
+ " ('thousand', 'the cardinal number that is the product of 10 and 100'),\n",
+ " ('thou', 'the cardinal number that is the product of 10 and 100'),\n",
+ " ('1000', 'the cardinal number that is the product of 10 and 100')]},\n",
+ " {'answer': 'open',\n",
+ " 'hint': 'synonyms for open',\n",
+ " 'clues': [('surface', 'information that has become public'),\n",
+ " ('outdoors', 'where the air is unconfined'),\n",
+ " ('clear', 'a clear or unobstructed space or expanse of land or water'),\n",
+ " ('open air', 'where the air is unconfined'),\n",
+ " ('out-of-doors', 'where the air is unconfined')]},\n",
+ " {'answer': 'opening',\n",
+ " 'hint': 'synonyms for opening',\n",
+ " 'clues': [('gap', 'an open or empty space in or between things'),\n",
+ " ('possible action', 'a possible alternative'),\n",
+ " ('hatchway',\n",
+ " 'an entrance equipped with a hatch; especially a passageway between decks of a ship'),\n",
+ " ('possibility', 'a possible alternative'),\n",
+ " ('curtain raising',\n",
+ " 'the first performance (as of a theatrical production)'),\n",
+ " ('opening night',\n",
+ " 'the first performance (as of a theatrical production)'),\n",
+ " ('chess opening',\n",
+ " 'a recognized sequence of moves at the beginning of a game of chess'),\n",
+ " ('scuttle',\n",
+ " 'an entrance equipped with a hatch; especially a passageway between decks of a ship'),\n",
+ " ('first step', 'the first of a series of actions'),\n",
+ " ('opening move', 'the first of a series of actions'),\n",
+ " ('initiative', 'the first of a series of actions')]},\n",
+ " {'answer': 'opposite',\n",
+ " 'hint': 'synonyms for opposite',\n",
+ " 'clues': [('antonym',\n",
+ " 'a word that expresses a meaning opposed to the meaning of another word, in which case the two words are antonyms of each other'),\n",
+ " ('inverse', 'something inverted in sequence or character or effect'),\n",
+ " ('opposite word',\n",
+ " 'a word that expresses a meaning opposed to the meaning of another word, in which case the two words are antonyms of each other'),\n",
+ " ('reverse', 'a relation of direct opposition'),\n",
+ " ('contrary', 'a relation of direct opposition')]},\n",
+ " {'answer': 'oral',\n",
+ " 'hint': 'synonyms for oral',\n",
+ " 'clues': [('oral exam',\n",
+ " 'an examination conducted by spoken communication'),\n",
+ " ('viva', 'an examination conducted by spoken communication'),\n",
+ " ('viva voce', 'an examination conducted by spoken communication'),\n",
+ " ('oral examination',\n",
+ " 'an examination conducted by spoken communication')]},\n",
+ " {'answer': 'original',\n",
+ " 'hint': 'synonyms for original',\n",
+ " 'clues': [('archetype',\n",
+ " 'something that serves as a model or a basis for making copies'),\n",
+ " ('master copy',\n",
+ " 'an original creation (i.e., an audio recording) from which copies can be made'),\n",
+ " ('pilot',\n",
+ " 'something that serves as a model or a basis for making copies'),\n",
+ " ('master',\n",
+ " 'an original creation (i.e., an audio recording) from which copies can be made')]},\n",
+ " {'answer': 'ottoman',\n",
+ " 'hint': 'synonyms for ottoman',\n",
+ " 'clues': [('footstool',\n",
+ " 'a low seat or a stool to rest the feet of a seated person'),\n",
+ " ('pouffe', 'thick cushion used as a seat'),\n",
+ " ('puff', 'thick cushion used as a seat'),\n",
+ " ('tuffet', 'a low seat or a stool to rest the feet of a seated person'),\n",
+ " ('footrest', 'a low seat or a stool to rest the feet of a seated person'),\n",
+ " ('pouf', 'thick cushion used as a seat'),\n",
+ " ('hassock', 'thick cushion used as a seat')]},\n",
+ " {'answer': 'overhead',\n",
+ " 'hint': 'synonyms for overhead',\n",
+ " 'clues': [('smash',\n",
+ " 'a hard return hitting the tennis ball above your head'),\n",
+ " ('operating cost',\n",
+ " 'the expense of maintaining property (e.g., paying property taxes and utilities and insurance); it does not include depreciation or the cost of financing or income taxes'),\n",
+ " ('command overhead',\n",
+ " '(computer science) the processing time required by a device prior to the execution of a command'),\n",
+ " ('disk overhead',\n",
+ " '(computer science) the disk space required for information that is not data but is used for location and timing'),\n",
+ " ('budget items',\n",
+ " 'the expense of maintaining property (e.g., paying property taxes and utilities and insurance); it does not include depreciation or the cost of financing or income taxes'),\n",
+ " ('command processing overhead',\n",
+ " '(computer science) the processing time required by a device prior to the execution of a command'),\n",
+ " ('operating expense',\n",
+ " 'the expense of maintaining property (e.g., paying property taxes and utilities and insurance); it does not include depreciation or the cost of financing or income taxes'),\n",
+ " ('viewgraph', 'a transparency for use with an overhead projector')]},\n",
+ " {'answer': 'paperback',\n",
+ " 'hint': 'synonyms for paperback',\n",
+ " 'clues': [('paper-back book', 'a book with paper covers'),\n",
+ " ('softback book', 'a book with paper covers'),\n",
+ " ('softback', 'a book with paper covers'),\n",
+ " ('soft-cover book', 'a book with paper covers'),\n",
+ " ('soft-cover', 'a book with paper covers')]},\n",
+ " {'answer': 'parallel',\n",
+ " 'hint': 'synonyms for parallel',\n",
+ " 'clues': [('analogue',\n",
+ " 'something having the property of being analogous to something else'),\n",
+ " ('latitude',\n",
+ " 'an imaginary line around the Earth parallel to the equator'),\n",
+ " ('parallel of latitude',\n",
+ " 'an imaginary line around the Earth parallel to the equator'),\n",
+ " ('line of latitude',\n",
+ " 'an imaginary line around the Earth parallel to the equator')]},\n",
+ " {'answer': 'particular',\n",
+ " 'hint': 'synonyms for particular',\n",
+ " 'clues': [('particular proposition',\n",
+ " '(logic) a proposition that asserts something about some (but not all) members of a class'),\n",
+ " ('detail',\n",
+ " 'a small part that can be considered separately from the whole'),\n",
+ " ('item', 'a small part that can be considered separately from the whole'),\n",
+ " ('specific', 'a fact about some part (as opposed to general)')]},\n",
+ " {'answer': 'pass',\n",
+ " 'hint': 'synonyms for pass',\n",
+ " 'clues': [('straits', 'a difficult juncture'),\n",
+ " ('go', 'a usually brief attempt'),\n",
+ " ('toss',\n",
+ " '(sports) the act of throwing the ball to another member of your team'),\n",
+ " ('laissez passer',\n",
+ " 'a document indicating permission to do something without restrictions'),\n",
+ " ('head', 'a difficult juncture'),\n",
+ " ('bye',\n",
+ " 'you advance to the next round in a tournament without playing an opponent'),\n",
+ " ('mountain pass',\n",
+ " 'the location in a range of mountains of a geological formation that is lower than the surrounding peaks'),\n",
+ " ('whirl', 'a usually brief attempt'),\n",
+ " ('passport', 'any authorization to pass or go somewhere'),\n",
+ " ('passing',\n",
+ " '(American football) a play that involves one player throwing the ball to a teammate'),\n",
+ " ('fling', 'a usually brief attempt'),\n",
+ " ('base on balls',\n",
+ " '(baseball) an advance to first base by a batter who receives four balls'),\n",
+ " ('crack', 'a usually brief attempt'),\n",
+ " ('notch',\n",
+ " 'the location in a range of mountains of a geological formation that is lower than the surrounding peaks'),\n",
+ " ('liberty chit', 'a permit to enter or leave a military installation'),\n",
+ " ('offer', 'a usually brief attempt'),\n",
+ " ('walk',\n",
+ " '(baseball) an advance to first base by a batter who receives four balls'),\n",
+ " ('flip',\n",
+ " '(sports) the act of throwing the ball to another member of your team'),\n",
+ " ('pas', '(ballet) a step in dancing (especially in classical ballet)'),\n",
+ " ('passing game',\n",
+ " '(American football) a play that involves one player throwing the ball to a teammate'),\n",
+ " ('qualifying', 'success in satisfying a test or requirement'),\n",
+ " ('passing play',\n",
+ " '(American football) a play that involves one player throwing the ball to a teammate')]},\n",
+ " {'answer': 'passing',\n",
+ " 'hint': 'synonyms for passing',\n",
+ " 'clues': [('exit', 'euphemistic expressions for death'),\n",
+ " ('pass',\n",
+ " '(American football) a play that involves one player throwing the ball to a teammate'),\n",
+ " ('passage', 'the motion of one object relative to another'),\n",
+ " ('qualifying', 'success in satisfying a test or requirement'),\n",
+ " ('overtaking',\n",
+ " 'going by something that is moving in order to get in front of it'),\n",
+ " ('loss', 'euphemistic expressions for death'),\n",
+ " ('expiration', 'euphemistic expressions for death'),\n",
+ " ('passing game',\n",
+ " '(American football) a play that involves one player throwing the ball to a teammate'),\n",
+ " ('release', 'euphemistic expressions for death'),\n",
+ " ('going', 'euphemistic expressions for death'),\n",
+ " ('departure', 'euphemistic expressions for death'),\n",
+ " ('passing play',\n",
+ " '(American football) a play that involves one player throwing the ball to a teammate')]},\n",
+ " {'answer': 'peanut',\n",
+ " 'hint': 'synonyms for peanut',\n",
+ " 'clues': [('goober pea',\n",
+ " \"pod of the peanut vine containing usually 2 nuts or seeds; `groundnut' and `monkey nut' are British terms\"),\n",
+ " ('goober',\n",
+ " \"pod of the peanut vine containing usually 2 nuts or seeds; `groundnut' and `monkey nut' are British terms\"),\n",
+ " ('groundnut',\n",
+ " \"pod of the peanut vine containing usually 2 nuts or seeds; `groundnut' and `monkey nut' are British terms\"),\n",
+ " ('earthnut',\n",
+ " \"pod of the peanut vine containing usually 2 nuts or seeds; `groundnut' and `monkey nut' are British terms\"),\n",
+ " ('monkey nut',\n",
+ " \"pod of the peanut vine containing usually 2 nuts or seeds; `groundnut' and `monkey nut' are British terms\")]},\n",
+ " {'answer': 'pedal',\n",
+ " 'hint': 'synonyms for pedal',\n",
+ " 'clues': [('foot lever', 'a lever that is operated with the foot'),\n",
+ " ('treadle', 'a lever that is operated with the foot'),\n",
+ " ('pedal point', 'a sustained bass note'),\n",
+ " ('foot pedal', 'a lever that is operated with the foot')]},\n",
+ " {'answer': 'pedigree',\n",
+ " 'hint': 'synonyms for pedigree',\n",
+ " 'clues': [('line of descent', 'the descendants of one individual'),\n",
+ " ('ancestry', 'the descendants of one individual'),\n",
+ " ('stock', 'the descendants of one individual'),\n",
+ " ('line', 'the descendants of one individual'),\n",
+ " ('descent', 'the descendants of one individual'),\n",
+ " ('origin', 'the descendants of one individual'),\n",
+ " ('lineage', 'the descendants of one individual'),\n",
+ " ('parentage', 'the descendants of one individual'),\n",
+ " ('bloodline', 'ancestry of a purebred animal'),\n",
+ " ('blood', 'the descendants of one individual'),\n",
+ " ('stemma', 'the descendants of one individual')]},\n",
+ " {'answer': 'phantom',\n",
+ " 'hint': 'synonyms for phantom',\n",
+ " 'clues': [('fantasm', 'something existing in perception only'),\n",
+ " ('shadow', 'something existing in perception only'),\n",
+ " ('phantasma', 'something existing in perception only'),\n",
+ " ('apparition', 'something existing in perception only')]},\n",
+ " {'answer': 'plain',\n",
+ " 'hint': 'synonyms for plain',\n",
+ " 'clues': [('plain stitch', 'a basic knitting stitch'),\n",
+ " ('knit', 'a basic knitting stitch'),\n",
+ " ('field', 'extensive tract of level open land'),\n",
+ " ('knit stitch', 'a basic knitting stitch'),\n",
+ " ('champaign', 'extensive tract of level open land')]},\n",
+ " {'answer': 'plane',\n",
+ " 'hint': 'synonyms for plane',\n",
+ " 'clues': [('airplane',\n",
+ " 'an aircraft that has a fixed wing and is powered by propellers or jets'),\n",
+ " ('planing machine', 'a power tool for smoothing or shaping wood'),\n",
+ " ('planer', 'a power tool for smoothing or shaping wood'),\n",
+ " ('woodworking plane',\n",
+ " \"a carpenter's hand tool with an adjustable blade for smoothing or shaping wood\"),\n",
+ " (\"carpenter's plane\",\n",
+ " \"a carpenter's hand tool with an adjustable blade for smoothing or shaping wood\"),\n",
+ " ('aeroplane',\n",
+ " 'an aircraft that has a fixed wing and is powered by propellers or jets'),\n",
+ " ('sheet', '(mathematics) an unbounded two-dimensional shape')]},\n",
+ " {'answer': 'plodding',\n",
+ " 'hint': 'synonyms for plodding',\n",
+ " 'clues': [('grind', 'hard monotonous routine work'),\n",
+ " ('drudgery', 'hard monotonous routine work'),\n",
+ " ('donkeywork', 'hard monotonous routine work'),\n",
+ " ('plod', 'the act of walking with a slow heavy gait')]},\n",
+ " {'answer': 'pokey',\n",
+ " 'hint': 'synonyms for pokey',\n",
+ " 'clues': [('jailhouse',\n",
+ " 'a correctional institution used to detain persons who are in the lawful custody of the government (either accused persons awaiting trial or convicted persons serving a sentence)'),\n",
+ " ('slammer',\n",
+ " 'a correctional institution used to detain persons who are in the lawful custody of the government (either accused persons awaiting trial or convicted persons serving a sentence)'),\n",
+ " ('gaol',\n",
+ " 'a correctional institution used to detain persons who are in the lawful custody of the government (either accused persons awaiting trial or convicted persons serving a sentence)'),\n",
+ " ('poky',\n",
+ " 'a correctional institution used to detain persons who are in the lawful custody of the government (either accused persons awaiting trial or convicted persons serving a sentence)'),\n",
+ " ('jail',\n",
+ " 'a correctional institution used to detain persons who are in the lawful custody of the government (either accused persons awaiting trial or convicted persons serving a sentence)'),\n",
+ " ('clink',\n",
+ " 'a correctional institution used to detain persons who are in the lawful custody of the government (either accused persons awaiting trial or convicted persons serving a sentence)')]},\n",
+ " {'answer': 'poky',\n",
+ " 'hint': 'synonyms for poky',\n",
+ " 'clues': [('pokey',\n",
+ " 'a correctional institution used to detain persons who are in the lawful custody of the government (either accused persons awaiting trial or convicted persons serving a sentence)'),\n",
+ " ('jailhouse',\n",
+ " 'a correctional institution used to detain persons who are in the lawful custody of the government (either accused persons awaiting trial or convicted persons serving a sentence)'),\n",
+ " ('slammer',\n",
+ " 'a correctional institution used to detain persons who are in the lawful custody of the government (either accused persons awaiting trial or convicted persons serving a sentence)'),\n",
+ " ('gaol',\n",
+ " 'a correctional institution used to detain persons who are in the lawful custody of the government (either accused persons awaiting trial or convicted persons serving a sentence)'),\n",
+ " ('jail',\n",
+ " 'a correctional institution used to detain persons who are in the lawful custody of the government (either accused persons awaiting trial or convicted persons serving a sentence)'),\n",
+ " ('clink',\n",
+ " 'a correctional institution used to detain persons who are in the lawful custody of the government (either accused persons awaiting trial or convicted persons serving a sentence)')]},\n",
+ " {'answer': 'pop',\n",
+ " 'hint': 'synonyms for pop',\n",
+ " 'clues': [('soda pop',\n",
+ " 'a sweet drink containing carbonated water and flavoring'),\n",
+ " ('soda', 'a sweet drink containing carbonated water and flavoring'),\n",
+ " ('pop music',\n",
+ " \"music of general appeal to teenagers; a bland watered-down version of rock'n'roll with more rhythm and harmony and an emphasis on romantic love\"),\n",
+ " ('popping',\n",
+ " 'a sharp explosive sound as from a gunshot or drawing a cork'),\n",
+ " ('soda water', 'a sweet drink containing carbonated water and flavoring'),\n",
+ " ('tonic', 'a sweet drink containing carbonated water and flavoring')]},\n",
+ " {'answer': 'port',\n",
+ " 'hint': 'synonyms for port',\n",
+ " 'clues': [('embrasure',\n",
+ " 'an opening (in a wall or ship or armored vehicle) for firing through'),\n",
+ " ('port wine', 'sweet dark-red dessert wine originally from Portugal'),\n",
+ " ('porthole',\n",
+ " 'an opening (in a wall or ship or armored vehicle) for firing through'),\n",
+ " ('larboard',\n",
+ " 'the left side of a ship or aircraft to someone who is aboard and facing the bow or nose'),\n",
+ " ('interface',\n",
+ " '(computer science) computer circuit consisting of the hardware and associated circuitry that links one device with another (especially a computer and a hard disk drive or other peripherals)')]},\n",
+ " {'answer': 'postmortem',\n",
+ " 'hint': 'synonyms for postmortem',\n",
+ " 'clues': [('postmortem examination',\n",
+ " 'an examination and dissection of a dead body to determine cause of death or the changes produced by disease'),\n",
+ " ('post-mortem', 'discussion of an event after it has occurred'),\n",
+ " ('necropsy',\n",
+ " 'an examination and dissection of a dead body to determine cause of death or the changes produced by disease'),\n",
+ " ('autopsy',\n",
+ " 'an examination and dissection of a dead body to determine cause of death or the changes produced by disease')]},\n",
+ " {'answer': 'potential',\n",
+ " 'hint': 'synonyms for potential',\n",
+ " 'clues': [('potential drop',\n",
+ " 'the difference in electrical charge between two points in a circuit expressed in volts'),\n",
+ " ('electric potential',\n",
+ " 'the difference in electrical charge between two points in a circuit expressed in volts'),\n",
+ " ('potential difference',\n",
+ " 'the difference in electrical charge between two points in a circuit expressed in volts'),\n",
+ " ('voltage',\n",
+ " 'the difference in electrical charge between two points in a circuit expressed in volts')]},\n",
+ " {'answer': 'potty',\n",
+ " 'hint': 'synonyms for potty',\n",
+ " 'clues': [('stool', 'a plumbing fixture for defecation and urination'),\n",
+ " ('toilet', 'a plumbing fixture for defecation and urination'),\n",
+ " ('throne', 'a plumbing fixture for defecation and urination'),\n",
+ " ('chamberpot', 'a receptacle for urination or defecation in the bedroom'),\n",
+ " ('can', 'a plumbing fixture for defecation and urination'),\n",
+ " ('crapper', 'a plumbing fixture for defecation and urination'),\n",
+ " ('pot', 'a plumbing fixture for defecation and urination'),\n",
+ " ('thunder mug',\n",
+ " 'a receptacle for urination or defecation in the bedroom'),\n",
+ " ('commode', 'a plumbing fixture for defecation and urination')]},\n",
+ " {'answer': 'premium',\n",
+ " 'hint': 'synonyms for premium',\n",
+ " 'clues': [('bounty',\n",
+ " 'payment or reward (especially from a government) for acts such as catching criminals or killing predatory animals or enlisting in the military'),\n",
+ " ('insurance premium', 'payment for insurance'),\n",
+ " ('agiotage', 'a fee charged for exchanging currencies'),\n",
+ " ('agio', 'a fee charged for exchanging currencies'),\n",
+ " ('exchange premium', 'a fee charged for exchanging currencies')]},\n",
+ " {'answer': 'preventative',\n",
+ " 'hint': 'synonyms for preventative',\n",
+ " 'clues': [('hitch', 'any obstruction that impedes or is burdensome'),\n",
+ " ('hinderance', 'any obstruction that impedes or is burdensome'),\n",
+ " ('prophylactic',\n",
+ " 'remedy that prevents or slows the course of an illness or disease'),\n",
+ " ('preventive', 'any obstruction that impedes or is burdensome'),\n",
+ " ('birth control device',\n",
+ " 'an agent or device intended to prevent conception'),\n",
+ " ('contraceptive', 'an agent or device intended to prevent conception'),\n",
+ " ('contraceptive device',\n",
+ " 'an agent or device intended to prevent conception'),\n",
+ " ('incumbrance', 'any obstruction that impedes or is burdensome'),\n",
+ " ('prophylactic device',\n",
+ " 'an agent or device intended to prevent conception'),\n",
+ " ('interference', 'any obstruction that impedes or is burdensome')]},\n",
+ " {'answer': 'preventive',\n",
+ " 'hint': 'synonyms for preventive',\n",
+ " 'clues': [('hitch', 'any obstruction that impedes or is burdensome'),\n",
+ " ('hinderance', 'any obstruction that impedes or is burdensome'),\n",
+ " ('prophylactic',\n",
+ " 'remedy that prevents or slows the course of an illness or disease'),\n",
+ " ('preventative', 'any obstruction that impedes or is burdensome'),\n",
+ " ('birth control device',\n",
+ " 'an agent or device intended to prevent conception'),\n",
+ " ('contraceptive', 'an agent or device intended to prevent conception'),\n",
+ " ('contraceptive device',\n",
+ " 'an agent or device intended to prevent conception'),\n",
+ " ('incumbrance', 'any obstruction that impedes or is burdensome'),\n",
+ " ('prophylactic device',\n",
+ " 'an agent or device intended to prevent conception'),\n",
+ " ('interference', 'any obstruction that impedes or is burdensome')]},\n",
+ " {'answer': 'prime',\n",
+ " 'hint': 'synonyms for prime',\n",
+ " 'clues': [('bloom', 'the period of greatest prosperity or productivity'),\n",
+ " ('efflorescence', 'the period of greatest prosperity or productivity'),\n",
+ " ('prime of life',\n",
+ " 'the time of maturity when power and vigor are greatest'),\n",
+ " ('flush', 'the period of greatest prosperity or productivity'),\n",
+ " ('heyday', 'the period of greatest prosperity or productivity'),\n",
+ " ('prime quantity', 'a number that has no factor but itself and 1'),\n",
+ " ('peak', 'the period of greatest prosperity or productivity'),\n",
+ " ('flower', 'the period of greatest prosperity or productivity'),\n",
+ " ('blossom', 'the period of greatest prosperity or productivity')]},\n",
+ " {'answer': 'privy',\n",
+ " 'hint': 'synonyms for privy',\n",
+ " 'clues': [('bathroom',\n",
+ " 'a room or building equipped with one or more toilets'),\n",
+ " ('earth-closet',\n",
+ " 'a small outbuilding with a bench having holes through which a user can defecate'),\n",
+ " ('lav', 'a room or building equipped with one or more toilets'),\n",
+ " ('toilet', 'a room or building equipped with one or more toilets'),\n",
+ " ('outhouse',\n",
+ " 'a small outbuilding with a bench having holes through which a user can defecate'),\n",
+ " ('can', 'a room or building equipped with one or more toilets'),\n",
+ " ('lavatory', 'a room or building equipped with one or more toilets'),\n",
+ " ('john', 'a room or building equipped with one or more toilets'),\n",
+ " ('jakes',\n",
+ " 'a small outbuilding with a bench having holes through which a user can defecate')]},\n",
+ " {'answer': 'prize',\n",
+ " 'hint': 'synonyms for prize',\n",
+ " 'clues': [('dirty money', 'goods or money obtained illegally'),\n",
+ " ('plunder', 'goods or money obtained illegally'),\n",
+ " ('loot', 'goods or money obtained illegally'),\n",
+ " ('booty', 'goods or money obtained illegally'),\n",
+ " ('swag', 'goods or money obtained illegally'),\n",
+ " ('award',\n",
+ " 'something given for victory or superiority in a contest or competition or for winning a lottery'),\n",
+ " ('pillage', 'goods or money obtained illegally'),\n",
+ " ('trophy', 'something given as a token of victory')]},\n",
+ " {'answer': 'prognostic',\n",
+ " 'hint': 'synonyms for prognostic',\n",
+ " 'clues': [('omen', 'a sign of something about to happen'),\n",
+ " ('prodigy', 'a sign of something about to happen'),\n",
+ " ('portent', 'a sign of something about to happen'),\n",
+ " ('prognostication', 'a sign of something about to happen'),\n",
+ " ('presage', 'a sign of something about to happen')]},\n",
+ " {'answer': 'progressive',\n",
+ " 'hint': 'synonyms for progressive',\n",
+ " 'clues': [('imperfect tense',\n",
+ " 'a tense of verbs used in describing action that is on-going'),\n",
+ " ('imperfect',\n",
+ " 'a tense of verbs used in describing action that is on-going'),\n",
+ " ('continuous tense',\n",
+ " 'a tense of verbs used in describing action that is on-going'),\n",
+ " ('progressive tense',\n",
+ " 'a tense of verbs used in describing action that is on-going')]},\n",
+ " {'answer': 'proof',\n",
+ " 'hint': 'synonyms for proof',\n",
+ " 'clues': [('cogent evidence',\n",
+ " 'any factual evidence that helps to establish the truth of something'),\n",
+ " ('validation',\n",
+ " 'the act of validating; finding or testing the truth of something'),\n",
+ " ('trial impression', '(printing) an impression made to check for errors'),\n",
+ " ('test copy', '(printing) an impression made to check for errors'),\n",
+ " ('substantiation',\n",
+ " 'the act of validating; finding or testing the truth of something')]},\n",
+ " {'answer': 'prophylactic',\n",
+ " 'hint': 'synonyms for prophylactic',\n",
+ " 'clues': [('preventive',\n",
+ " 'remedy that prevents or slows the course of an illness or disease'),\n",
+ " ('safe',\n",
+ " 'contraceptive device consisting of a sheath of thin rubber or latex that is worn over the penis during intercourse'),\n",
+ " ('rubber',\n",
+ " 'contraceptive device consisting of a sheath of thin rubber or latex that is worn over the penis during intercourse'),\n",
+ " ('safety',\n",
+ " 'contraceptive device consisting of a sheath of thin rubber or latex that is worn over the penis during intercourse'),\n",
+ " ('condom',\n",
+ " 'contraceptive device consisting of a sheath of thin rubber or latex that is worn over the penis during intercourse')]},\n",
+ " {'answer': 'puff',\n",
+ " 'hint': 'synonyms for puff',\n",
+ " 'clues': [('pouffe', 'thick cushion used as a seat'),\n",
+ " ('whiff', 'a short light gust of air'),\n",
+ " ('comfort',\n",
+ " 'bedding made of two layers of cloth filled with stuffing and stitched together'),\n",
+ " ('pouf', 'thick cushion used as a seat'),\n",
+ " ('drag', 'a slow inhalation (as of tobacco smoke)'),\n",
+ " ('pull', 'a slow inhalation (as of tobacco smoke)'),\n",
+ " ('ottoman', 'thick cushion used as a seat'),\n",
+ " ('puff of air', 'a short light gust of air'),\n",
+ " ('blow', 'forceful exhalation through the nose or mouth'),\n",
+ " ('powderpuff',\n",
+ " 'a soft spherical object made from fluffy fibers; for applying powder to the skin'),\n",
+ " ('quilt',\n",
+ " 'bedding made of two layers of cloth filled with stuffing and stitched together'),\n",
+ " ('hassock', 'thick cushion used as a seat')]},\n",
+ " {'answer': 'punk',\n",
+ " 'hint': 'synonyms for punk',\n",
+ " 'clues': [('kindling', 'material for starting a fire'),\n",
+ " ('punk rock',\n",
+ " 'rock music with deliberately offensive lyrics expressing anger and social alienation; in part a reaction against progressive rock'),\n",
+ " ('touchwood', 'material for starting a fire'),\n",
+ " ('tinder', 'material for starting a fire'),\n",
+ " ('spunk', 'material for starting a fire')]},\n",
+ " {'answer': 'quality',\n",
+ " 'hint': 'synonyms for quality',\n",
+ " 'clues': [('lineament',\n",
+ " 'a characteristic property that defines the apparent individual nature of something'),\n",
+ " ('calibre', 'a degree or grade of excellence or worth'),\n",
+ " ('character',\n",
+ " 'a characteristic property that defines the apparent individual nature of something'),\n",
+ " ('timber',\n",
+ " '(music) the distinctive property of a complex sound (a voice or noise or musical sound)'),\n",
+ " ('tone',\n",
+ " '(music) the distinctive property of a complex sound (a voice or noise or musical sound)'),\n",
+ " ('timbre',\n",
+ " '(music) the distinctive property of a complex sound (a voice or noise or musical sound)')]},\n",
+ " {'answer': 'quaternary',\n",
+ " 'hint': 'synonyms for quaternary',\n",
+ " 'clues': [('tetrad',\n",
+ " 'the cardinal number that is the sum of three and one'),\n",
+ " ('quaternion', 'the cardinal number that is the sum of three and one'),\n",
+ " ('quartet', 'the cardinal number that is the sum of three and one'),\n",
+ " ('foursome', 'the cardinal number that is the sum of three and one'),\n",
+ " ('quaternity', 'the cardinal number that is the sum of three and one'),\n",
+ " ('four', 'the cardinal number that is the sum of three and one'),\n",
+ " ('4', 'the cardinal number that is the sum of three and one'),\n",
+ " ('quatern', 'the cardinal number that is the sum of three and one'),\n",
+ " ('quadruplet', 'the cardinal number that is the sum of three and one')]},\n",
+ " {'answer': 'quiet',\n",
+ " 'hint': 'synonyms for quiet',\n",
+ " 'clues': [('placidity', 'a disposition free from stress or emotion'),\n",
+ " ('repose', 'a disposition free from stress or emotion'),\n",
+ " ('serenity', 'a disposition free from stress or emotion'),\n",
+ " ('tranquillity', 'a disposition free from stress or emotion'),\n",
+ " ('silence', 'the absence of sound')]},\n",
+ " {'answer': 'radical',\n",
+ " 'hint': 'synonyms for radical',\n",
+ " 'clues': [('base',\n",
+ " '(linguistics) the form of a word after all affixes are removed'),\n",
+ " ('free radical',\n",
+ " 'an atom or group of atoms with at least one unpaired electron; in the body it is usually an oxygen molecule that has lost an electron and will stabilize itself by stealing an electron from a nearby molecule'),\n",
+ " ('root',\n",
+ " '(linguistics) the form of a word after all affixes are removed'),\n",
+ " ('chemical group',\n",
+ " '(chemistry) two or more atoms bound together as a single unit and forming part of a molecule'),\n",
+ " ('stem',\n",
+ " '(linguistics) the form of a word after all affixes are removed'),\n",
+ " ('root word',\n",
+ " '(linguistics) the form of a word after all affixes are removed'),\n",
+ " ('group',\n",
+ " '(chemistry) two or more atoms bound together as a single unit and forming part of a molecule'),\n",
+ " ('theme',\n",
+ " '(linguistics) the form of a word after all affixes are removed')]},\n",
+ " {'answer': 'radio',\n",
+ " 'hint': 'synonyms for radio',\n",
+ " 'clues': [('wireless', 'medium for communication'),\n",
+ " ('receiving set',\n",
+ " 'an electronic receiver that detects and demodulates and amplifies transmitted signals'),\n",
+ " ('radio set',\n",
+ " 'an electronic receiver that detects and demodulates and amplifies transmitted signals'),\n",
+ " ('radiocommunication', 'medium for communication'),\n",
+ " ('radio receiver',\n",
+ " 'an electronic receiver that detects and demodulates and amplifies transmitted signals'),\n",
+ " ('tuner',\n",
+ " 'an electronic receiver that detects and demodulates and amplifies transmitted signals')]},\n",
+ " {'answer': 'raising',\n",
+ " 'hint': 'synonyms for raising',\n",
+ " 'clues': [('bringing up',\n",
+ " 'helping someone grow up to be an accepted member of the community'),\n",
+ " ('breeding',\n",
+ " 'helping someone grow up to be an accepted member of the community'),\n",
+ " ('rearing',\n",
+ " 'helping someone grow up to be an accepted member of the community'),\n",
+ " ('elevation', 'the event of something being raised upward'),\n",
+ " ('upbringing',\n",
+ " 'helping someone grow up to be an accepted member of the community'),\n",
+ " ('fosterage',\n",
+ " 'helping someone grow up to be an accepted member of the community'),\n",
+ " ('lift', 'the event of something being raised upward'),\n",
+ " ('nurture',\n",
+ " 'the properties acquired as a consequence of the way you were treated as a child'),\n",
+ " ('fostering',\n",
+ " 'helping someone grow up to be an accepted member of the community')]},\n",
+ " {'answer': 'rearing',\n",
+ " 'hint': 'synonyms for rearing',\n",
+ " 'clues': [('bringing up',\n",
+ " 'helping someone grow up to be an accepted member of the community'),\n",
+ " ('breeding',\n",
+ " 'helping someone grow up to be an accepted member of the community'),\n",
+ " ('raising',\n",
+ " 'the properties acquired as a consequence of the way you were treated as a child'),\n",
+ " ('upbringing',\n",
+ " 'helping someone grow up to be an accepted member of the community'),\n",
+ " ('fosterage',\n",
+ " 'helping someone grow up to be an accepted member of the community'),\n",
+ " ('nurture',\n",
+ " 'the properties acquired as a consequence of the way you were treated as a child'),\n",
+ " ('fostering',\n",
+ " 'helping someone grow up to be an accepted member of the community')]},\n",
+ " {'answer': 'reflex',\n",
+ " 'hint': 'synonyms for reflex',\n",
+ " 'clues': [('innate reflex',\n",
+ " 'an automatic instinctive unlearned reaction to a stimulus'),\n",
+ " ('unconditioned reflex',\n",
+ " 'an automatic instinctive unlearned reaction to a stimulus'),\n",
+ " ('physiological reaction',\n",
+ " 'an automatic instinctive unlearned reaction to a stimulus'),\n",
+ " ('instinctive reflex',\n",
+ " 'an automatic instinctive unlearned reaction to a stimulus'),\n",
+ " ('reflex action',\n",
+ " 'an automatic instinctive unlearned reaction to a stimulus'),\n",
+ " ('inborn reflex',\n",
+ " 'an automatic instinctive unlearned reaction to a stimulus'),\n",
+ " ('reflex response',\n",
+ " 'an automatic instinctive unlearned reaction to a stimulus')]},\n",
+ " {'answer': 'regulation',\n",
+ " 'hint': 'synonyms for regulation',\n",
+ " 'clues': [('regularisation',\n",
+ " 'the act of bringing to uniformity; making regular'),\n",
+ " ('regulating', 'the act of controlling or directing according to rule'),\n",
+ " ('rule', 'a principle or condition that customarily governs behavior'),\n",
+ " ('ordinance', 'an authoritative rule')]},\n",
+ " {'answer': 'requisite',\n",
+ " 'hint': 'synonyms for requisite',\n",
+ " 'clues': [('necessity', 'anything indispensable'),\n",
+ " ('necessary', 'anything indispensable'),\n",
+ " ('essential', 'anything indispensable'),\n",
+ " ('requirement', 'anything indispensable')]},\n",
+ " {'answer': 'residual',\n",
+ " 'hint': 'synonyms for residual',\n",
+ " 'clues': [('balance',\n",
+ " 'something left after other parts have been taken away'),\n",
+ " ('rest', 'something left after other parts have been taken away'),\n",
+ " ('residue', 'something left after other parts have been taken away'),\n",
+ " ('remainder', 'something left after other parts have been taken away'),\n",
+ " ('residuum', 'something left after other parts have been taken away')]},\n",
+ " {'answer': 'resultant',\n",
+ " 'hint': 'synonyms for resultant',\n",
+ " 'clues': [('outcome', 'something that results'),\n",
+ " ('result', 'something that results'),\n",
+ " ('termination', 'something that results'),\n",
+ " ('vector sum', 'a vector that is the sum of two or more other vectors'),\n",
+ " ('final result', 'something that results')]},\n",
+ " {'answer': 'reverse',\n",
+ " 'hint': 'synonyms for reverse',\n",
+ " 'clues': [('reversion', 'turning in the opposite direction'),\n",
+ " ('reversal',\n",
+ " 'an unfortunate happening that hinders or impedes; something that is thwarting or frustrating'),\n",
+ " ('turnaround', 'turning in the opposite direction'),\n",
+ " ('opposite', 'a relation of direct opposition'),\n",
+ " ('verso',\n",
+ " 'the side of a coin or medal that does not bear the principal design'),\n",
+ " ('setback',\n",
+ " 'an unfortunate happening that hinders or impedes; something that is thwarting or frustrating'),\n",
+ " ('black eye',\n",
+ " 'an unfortunate happening that hinders or impedes; something that is thwarting or frustrating'),\n",
+ " ('turnabout', 'turning in the opposite direction'),\n",
+ " ('blow',\n",
+ " 'an unfortunate happening that hinders or impedes; something that is thwarting or frustrating'),\n",
+ " ('reverse gear',\n",
+ " 'the gears by which the motion of a machine can be reversed'),\n",
+ " ('contrary', 'a relation of direct opposition')]},\n",
+ " {'answer': 'reverting',\n",
+ " 'hint': 'synonyms for reverting',\n",
+ " 'clues': [('lapsing', 'a failure to maintain a higher state'),\n",
+ " ('lapse', 'a failure to maintain a higher state'),\n",
+ " ('backsliding', 'a failure to maintain a higher state'),\n",
+ " ('reversion', 'a failure to maintain a higher state'),\n",
+ " ('relapse', 'a failure to maintain a higher state')]},\n",
+ " {'answer': 'rising',\n",
+ " 'hint': 'synonyms for rising',\n",
+ " 'clues': [('rebellion',\n",
+ " 'organized opposition to authority; a conflict in which one faction tries to wrest control from another'),\n",
+ " ('rise', 'a movement upward'),\n",
+ " ('ascent', 'a movement upward'),\n",
+ " ('revolt',\n",
+ " 'organized opposition to authority; a conflict in which one faction tries to wrest control from another'),\n",
+ " ('uprising',\n",
+ " 'organized opposition to authority; a conflict in which one faction tries to wrest control from another'),\n",
+ " ('insurrection',\n",
+ " 'organized opposition to authority; a conflict in which one faction tries to wrest control from another'),\n",
+ " ('ascension', 'a movement upward')]},\n",
+ " {'answer': 'roaring',\n",
+ " 'hint': 'synonyms for roaring',\n",
+ " 'clues': [('roar', 'a very loud utterance (like the sound of an animal)'),\n",
+ " ('thunder', 'a deep prolonged loud noise'),\n",
+ " ('holla', 'a very loud utterance (like the sound of an animal)'),\n",
+ " ('hollo', 'a very loud utterance (like the sound of an animal)'),\n",
+ " ('holler', 'a very loud utterance (like the sound of an animal)'),\n",
+ " ('bellow', 'a very loud utterance (like the sound of an animal)'),\n",
+ " ('yowl', 'a very loud utterance (like the sound of an animal)'),\n",
+ " ('boom', 'a deep prolonged loud noise')]},\n",
+ " {'answer': 'rose',\n",
+ " 'hint': 'synonyms for rose',\n",
+ " 'clues': [('rosiness', 'a dusty pink color'),\n",
+ " ('rose wine',\n",
+ " 'pinkish table wine from red grapes whose skins were removed after fermentation began'),\n",
+ " ('pink wine',\n",
+ " 'pinkish table wine from red grapes whose skins were removed after fermentation began'),\n",
+ " ('blush wine',\n",
+ " 'pinkish table wine from red grapes whose skins were removed after fermentation began')]},\n",
+ " {'answer': 'rotary',\n",
+ " 'hint': 'synonyms for rotary',\n",
+ " 'clues': [('synchronous converter',\n",
+ " 'electrical converter consisting of a synchronous machine that converts alternating to direct current or vice versa'),\n",
+ " ('rotary converter',\n",
+ " 'electrical converter consisting of a synchronous machine that converts alternating to direct current or vice versa'),\n",
+ " ('roundabout',\n",
+ " 'a road junction at which traffic streams circularly around a central island'),\n",
+ " ('circle',\n",
+ " 'a road junction at which traffic streams circularly around a central island'),\n",
+ " ('traffic circle',\n",
+ " 'a road junction at which traffic streams circularly around a central island')]},\n",
+ " {'answer': 'rough-and-tumble',\n",
+ " 'hint': 'synonyms for rough-and-tumble',\n",
+ " 'clues': [('tussle', 'disorderly fighting'),\n",
+ " ('dogfight', 'disorderly fighting'),\n",
+ " ('scuffle', 'disorderly fighting'),\n",
+ " ('hassle', 'disorderly fighting')]},\n",
+ " {'answer': 'round',\n",
+ " 'hint': 'synonyms for round',\n",
+ " 'clues': [('circle', 'any circular or rotating mechanism'),\n",
+ " ('troll',\n",
+ " 'a partsong in which voices follow each other; one voice starts and others join in one after another until all are singing different parts of the song at the same time'),\n",
+ " ('rhythm',\n",
+ " 'an interval during which a recurring sequence of events occurs'),\n",
+ " ('beat', 'a regular route for a sentry or policeman'),\n",
+ " ('stave', 'a crosspiece between the legs of a chair'),\n",
+ " ('round of golf', 'the activity of playing 18 holes of golf'),\n",
+ " ('round of drinks', 'a serving to each of a group (usually alcoholic)'),\n",
+ " ('one shot', 'a charge of ammunition for a single shot'),\n",
+ " ('rung', 'a crosspiece between the legs of a chair'),\n",
+ " ('turn', '(sports) a division during which one team is on the offensive'),\n",
+ " ('unit of ammunition', 'a charge of ammunition for a single shot'),\n",
+ " ('daily round', 'the usual activities in your day'),\n",
+ " ('cycle',\n",
+ " 'an interval during which a recurring sequence of events occurs'),\n",
+ " ('bout',\n",
+ " '(sports) a division during which one team is on the offensive')]},\n",
+ " {'answer': 'roundabout',\n",
+ " 'hint': 'synonyms for roundabout',\n",
+ " 'clues': [('rotary',\n",
+ " 'a road junction at which traffic streams circularly around a central island'),\n",
+ " ('carrousel',\n",
+ " 'a large, rotating machine with seats for children to ride or amusement'),\n",
+ " ('whirligig',\n",
+ " 'a large, rotating machine with seats for children to ride or amusement'),\n",
+ " ('circle',\n",
+ " 'a road junction at which traffic streams circularly around a central island'),\n",
+ " ('traffic circle',\n",
+ " 'a road junction at which traffic streams circularly around a central island'),\n",
+ " ('merry-go-round',\n",
+ " 'a large, rotating machine with seats for children to ride or amusement')]},\n",
+ " {'answer': 'routine',\n",
+ " 'hint': 'synonyms for routine',\n",
+ " 'clues': [('procedure',\n",
+ " 'a set sequence of steps, part of larger computer program'),\n",
+ " ('bit',\n",
+ " 'a short theatrical performance that is part of a longer program'),\n",
+ " ('number',\n",
+ " 'a short theatrical performance that is part of a longer program'),\n",
+ " ('function', 'a set sequence of steps, part of larger computer program'),\n",
+ " ('subroutine',\n",
+ " 'a set sequence of steps, part of larger computer program'),\n",
+ " ('subprogram',\n",
+ " 'a set sequence of steps, part of larger computer program'),\n",
+ " ('modus operandi', 'an unvarying or habitual method or procedure'),\n",
+ " ('turn',\n",
+ " 'a short theatrical performance that is part of a longer program'),\n",
+ " ('act',\n",
+ " 'a short theatrical performance that is part of a longer program')]},\n",
+ " {'answer': 'rubber',\n",
+ " 'hint': 'synonyms for rubber',\n",
+ " 'clues': [('natural rubber',\n",
+ " 'an elastic material obtained from the latex sap of trees (especially trees of the genera Hevea and Ficus) that can be vulcanized and finished into a variety of products'),\n",
+ " ('rubber eraser',\n",
+ " 'an eraser made of rubber (or of a synthetic material with properties similar to rubber); commonly mounted at one end of a pencil'),\n",
+ " ('pencil eraser',\n",
+ " 'an eraser made of rubber (or of a synthetic material with properties similar to rubber); commonly mounted at one end of a pencil'),\n",
+ " ('prophylactic',\n",
+ " 'contraceptive device consisting of a sheath of thin rubber or latex that is worn over the penis during intercourse'),\n",
+ " ('synthetic rubber',\n",
+ " 'any of various synthetic elastic materials whose properties resemble natural rubber'),\n",
+ " ('safe',\n",
+ " 'contraceptive device consisting of a sheath of thin rubber or latex that is worn over the penis during intercourse'),\n",
+ " ('arctic',\n",
+ " 'a waterproof overshoe that protects shoes from water or snow'),\n",
+ " ('caoutchouc',\n",
+ " 'an elastic material obtained from the latex sap of trees (especially trees of the genera Hevea and Ficus) that can be vulcanized and finished into a variety of products'),\n",
+ " ('safety',\n",
+ " 'contraceptive device consisting of a sheath of thin rubber or latex that is worn over the penis during intercourse'),\n",
+ " ('gum elastic',\n",
+ " 'an elastic material obtained from the latex sap of trees (especially trees of the genera Hevea and Ficus) that can be vulcanized and finished into a variety of products'),\n",
+ " ('galosh',\n",
+ " 'a waterproof overshoe that protects shoes from water or snow'),\n",
+ " ('golosh',\n",
+ " 'a waterproof overshoe that protects shoes from water or snow'),\n",
+ " ('gumshoe',\n",
+ " 'a waterproof overshoe that protects shoes from water or snow'),\n",
+ " ('condom',\n",
+ " 'contraceptive device consisting of a sheath of thin rubber or latex that is worn over the penis during intercourse')]},\n",
+ " {'answer': 'runaway',\n",
+ " 'hint': 'synonyms for runaway',\n",
+ " 'clues': [('walkaway', 'an easy victory'),\n",
+ " ('laugher', 'an easy victory'),\n",
+ " ('shoo-in', 'an easy victory'),\n",
+ " ('blowout', 'an easy victory'),\n",
+ " ('romp', 'an easy victory')]},\n",
+ " {'answer': 'running',\n",
+ " 'hint': 'synonyms for running',\n",
+ " 'clues': [('run', 'the act of running; traveling on foot at a fast pace'),\n",
+ " ('track',\n",
+ " 'the act of participating in an athletic competition involving running on a track'),\n",
+ " ('running game',\n",
+ " '(American football) a play in which a player attempts to carry the ball through or past the opposing team'),\n",
+ " ('running play',\n",
+ " '(American football) a play in which a player attempts to carry the ball through or past the opposing team')]},\n",
+ " {'answer': 'rush',\n",
+ " 'hint': 'synonyms for rush',\n",
+ " 'clues': [('rushing',\n",
+ " 'the act of moving hurriedly and in a careless manner'),\n",
+ " ('boot', 'the swift release of a store of affective force'),\n",
+ " ('surge', 'a sudden forceful flow'),\n",
+ " ('upsurge', 'a sudden forceful flow'),\n",
+ " ('haste', 'the act of moving hurriedly and in a careless manner'),\n",
+ " ('bang', 'the swift release of a store of affective force'),\n",
+ " ('charge', 'the swift release of a store of affective force'),\n",
+ " ('kick', 'the swift release of a store of affective force'),\n",
+ " ('flush', 'the swift release of a store of affective force'),\n",
+ " ('thrill', 'the swift release of a store of affective force'),\n",
+ " ('hurry', 'the act of moving hurriedly and in a careless manner'),\n",
+ " ('spate', 'a sudden forceful flow')]},\n",
+ " {'answer': 'sable',\n",
+ " 'hint': 'synonyms for sable',\n",
+ " 'clues': [('sable brush', \"an artist's brush made of sable hairs\"),\n",
+ " ('jet black', 'a very dark black'),\n",
+ " (\"sable's hair pencil\", \"an artist's brush made of sable hairs\"),\n",
+ " ('soot black', 'a very dark black'),\n",
+ " ('pitch black', 'a very dark black'),\n",
+ " ('coal black', 'a very dark black'),\n",
+ " ('ebony', 'a very dark black')]},\n",
+ " {'answer': 'safe',\n",
+ " 'hint': 'synonyms for safe',\n",
+ " 'clues': [('rubber',\n",
+ " 'contraceptive device consisting of a sheath of thin rubber or latex that is worn over the penis during intercourse'),\n",
+ " ('prophylactic',\n",
+ " 'contraceptive device consisting of a sheath of thin rubber or latex that is worn over the penis during intercourse'),\n",
+ " ('safety',\n",
+ " 'contraceptive device consisting of a sheath of thin rubber or latex that is worn over the penis during intercourse'),\n",
+ " ('condom',\n",
+ " 'contraceptive device consisting of a sheath of thin rubber or latex that is worn over the penis during intercourse')]},\n",
+ " {'answer': 'salt',\n",
+ " 'hint': 'synonyms for salt',\n",
+ " 'clues': [('table salt',\n",
+ " 'white crystalline form of especially sodium chloride used to season and preserve food'),\n",
+ " ('saltiness',\n",
+ " 'the taste experience when common salt is taken into the mouth'),\n",
+ " ('salinity',\n",
+ " 'the taste experience when common salt is taken into the mouth'),\n",
+ " ('common salt',\n",
+ " 'white crystalline form of especially sodium chloride used to season and preserve food')]},\n",
+ " {'answer': 'sapphire',\n",
+ " 'hint': 'synonyms for sapphire',\n",
+ " 'clues': [('azure', 'a light shade of blue'),\n",
+ " ('lazuline', 'a light shade of blue'),\n",
+ " ('cerulean', 'a light shade of blue'),\n",
+ " ('sky-blue', 'a light shade of blue')]},\n",
+ " {'answer': 'saving',\n",
+ " 'hint': 'synonyms for saving',\n",
+ " 'clues': [('economy', 'an act of economizing; reduction in cost'),\n",
+ " ('deliverance', 'recovery or preservation from loss or danger'),\n",
+ " ('delivery', 'recovery or preservation from loss or danger'),\n",
+ " ('preservation',\n",
+ " 'the activity of protecting something from loss or danger'),\n",
+ " ('rescue', 'recovery or preservation from loss or danger')]},\n",
+ " {'answer': 'scrub',\n",
+ " 'hint': 'synonyms for scrub',\n",
+ " 'clues': [('scouring',\n",
+ " 'the act of cleaning a surface by rubbing it with a brush and soap and water'),\n",
+ " ('chaparral', 'dense vegetation consisting of stunted trees or bushes'),\n",
+ " ('bush', 'dense vegetation consisting of stunted trees or bushes'),\n",
+ " ('scrubbing',\n",
+ " 'the act of cleaning a surface by rubbing it with a brush and soap and water')]},\n",
+ " {'answer': 'second',\n",
+ " 'hint': 'synonyms for second',\n",
+ " 'clues': [('arcsecond', 'a 60th part of a minute of arc'),\n",
+ " ('sec',\n",
+ " \"1/60 of a minute; the basic unit of time adopted under the Systeme International d'Unites\"),\n",
+ " ('bit', 'an indefinitely short time'),\n",
+ " ('minute', 'an indefinitely short time'),\n",
+ " ('endorsement', 'a speech seconding a motion'),\n",
+ " ('moment', 'an indefinitely short time'),\n",
+ " ('s',\n",
+ " \"1/60 of a minute; the basic unit of time adopted under the Systeme International d'Unites\"),\n",
+ " ('second gear',\n",
+ " 'the gear that has the second lowest forward gear ratio in the gear box of a motor vehicle'),\n",
+ " ('second base',\n",
+ " 'the fielding position of the player on a baseball team who is stationed near the second of the bases in the infield'),\n",
+ " ('mo', 'an indefinitely short time'),\n",
+ " ('instant', 'a particular point in time'),\n",
+ " ('irregular',\n",
+ " 'merchandise that has imperfections; usually sold at a reduced price without the brand name'),\n",
+ " ('secondment', 'a speech seconding a motion')]},\n",
+ " {'answer': 'secret',\n",
+ " 'hint': 'synonyms for secret',\n",
+ " 'clues': [('arcanum', 'information known only to a special group'),\n",
+ " ('mystery',\n",
+ " 'something that baffles understanding and cannot be explained'),\n",
+ " ('closed book',\n",
+ " 'something that baffles understanding and cannot be explained'),\n",
+ " ('enigma',\n",
+ " 'something that baffles understanding and cannot be explained')]},\n",
+ " {'answer': 'seeing',\n",
+ " 'hint': 'synonyms for seeing',\n",
+ " 'clues': [('visual perception', 'perception by means of the eyes'),\n",
+ " ('beholding', 'perception by means of the eyes'),\n",
+ " ('eyesight', 'normal use of the faculty of vision'),\n",
+ " ('sightedness', 'normal use of the faculty of vision')]},\n",
+ " {'answer': 'set',\n",
+ " 'hint': 'synonyms for set',\n",
+ " 'clues': [('lot', 'an unofficial association of people or groups'),\n",
+ " ('circle', 'an unofficial association of people or groups'),\n",
+ " ('solidification',\n",
+ " 'the process of becoming hard or solid by cooling or drying or crystallization'),\n",
+ " ('curing',\n",
+ " 'the process of becoming hard or solid by cooling or drying or crystallization'),\n",
+ " ('bent',\n",
+ " 'a relatively permanent inclination to react in a particular way'),\n",
+ " ('exercise set', 'several exercises intended to be done in series'),\n",
+ " ('readiness',\n",
+ " '(psychology) being temporarily ready to respond in a particular way'),\n",
+ " ('hardening',\n",
+ " 'the process of becoming hard or solid by cooling or drying or crystallization'),\n",
+ " ('stage set',\n",
+ " 'representation consisting of the scenery and other properties used to identify the location of a dramatic production'),\n",
+ " ('band', 'an unofficial association of people or groups'),\n",
+ " ('solidifying',\n",
+ " 'the process of becoming hard or solid by cooling or drying or crystallization')]},\n",
+ " {'answer': 'seven',\n",
+ " 'hint': 'synonyms for seven',\n",
+ " 'clues': [('7', 'the cardinal number that is the sum of six and one'),\n",
+ " ('seven-spot',\n",
+ " 'one of four playing cards in a deck with seven pips on the face'),\n",
+ " ('septet', 'the cardinal number that is the sum of six and one'),\n",
+ " ('septenary', 'the cardinal number that is the sum of six and one'),\n",
+ " ('heptad', 'the cardinal number that is the sum of six and one'),\n",
+ " ('sevener', 'the cardinal number that is the sum of six and one')]},\n",
+ " {'answer': 'shot',\n",
+ " 'hint': 'synonyms for shot',\n",
+ " 'clues': [('jibe',\n",
+ " 'an aggressive remark directed at a person like a missile and intended to have a telling effect'),\n",
+ " ('shooting', 'the act of firing a projectile'),\n",
+ " ('snap',\n",
+ " 'an informal photograph; usually made with a small hand-held camera'),\n",
+ " ('guessing', 'an estimate based on little or no information'),\n",
+ " ('dead reckoning', 'an estimate based on little or no information'),\n",
+ " ('dig',\n",
+ " 'an aggressive remark directed at a person like a missile and intended to have a telling effect'),\n",
+ " ('shaft',\n",
+ " 'an aggressive remark directed at a person like a missile and intended to have a telling effect'),\n",
+ " ('blastoff',\n",
+ " 'the launching of a missile or spacecraft to a specified destination'),\n",
+ " ('pellet', 'a solid missile discharged from a firearm'),\n",
+ " ('stroke',\n",
+ " '(sports) the act of swinging or striking at a ball with a club or racket or bat or cue or hand'),\n",
+ " ('injection',\n",
+ " 'the act of putting a liquid into the body by means of a syringe'),\n",
+ " ('slam',\n",
+ " 'an aggressive remark directed at a person like a missile and intended to have a telling effect'),\n",
+ " ('snapshot',\n",
+ " 'an informal photograph; usually made with a small hand-held camera'),\n",
+ " ('gibe',\n",
+ " 'an aggressive remark directed at a person like a missile and intended to have a telling effect'),\n",
+ " ('guesswork', 'an estimate based on little or no information'),\n",
+ " ('stab', 'informal words for any attempt or effort'),\n",
+ " ('scene',\n",
+ " 'a consecutive series of pictures that constitutes a unit of action in a film'),\n",
+ " ('barb',\n",
+ " 'an aggressive remark directed at a person like a missile and intended to have a telling effect'),\n",
+ " ('nip', 'a small drink of liquor')]},\n",
+ " {'answer': 'side',\n",
+ " 'hint': 'synonyms for side',\n",
+ " 'clues': [('incline', 'an elevated geological formation'),\n",
+ " ('slope', 'an elevated geological formation'),\n",
+ " ('position',\n",
+ " 'an opinion that is held in opposition to another in an argument or dispute'),\n",
+ " ('side of meat',\n",
+ " \"a lengthwise dressed half of an animal's carcass used for food\"),\n",
+ " ('face', 'a surface forming part of the outside of an object')]},\n",
+ " {'answer': 'sign',\n",
+ " 'hint': 'synonyms for sign',\n",
+ " 'clues': [('mark',\n",
+ " 'a perceptible indication of something not immediately apparent (as a visible clue that something has happened)'),\n",
+ " ('mansion',\n",
+ " '(astrology) one of 12 equal areas into which the zodiac is divided'),\n",
+ " ('polarity',\n",
+ " 'having an indicated pole (as the distinction between positive and negative electric charges)'),\n",
+ " ('signal', 'any nonverbal action or gesture that encodes a message'),\n",
+ " ('star sign',\n",
+ " '(astrology) one of 12 equal areas into which the zodiac is divided'),\n",
+ " ('foretoken',\n",
+ " 'an event that is experienced as indicating important things to come'),\n",
+ " ('house',\n",
+ " '(astrology) one of 12 equal areas into which the zodiac is divided'),\n",
+ " ('signboard',\n",
+ " 'structure displaying a board on which advertisements can be posted'),\n",
+ " ('sign of the zodiac',\n",
+ " '(astrology) one of 12 equal areas into which the zodiac is divided'),\n",
+ " ('augury',\n",
+ " 'an event that is experienced as indicating important things to come'),\n",
+ " ('preindication',\n",
+ " 'an event that is experienced as indicating important things to come'),\n",
+ " ('planetary house',\n",
+ " '(astrology) one of 12 equal areas into which the zodiac is divided')]},\n",
+ " {'answer': 'silver',\n",
+ " 'hint': 'synonyms for silver',\n",
+ " 'clues': [('atomic number 47',\n",
+ " 'a soft white precious univalent metallic element having the highest electrical and thermal conductivity of any metal; occurs in argentite and in free form; used in coins and jewelry and tableware and photography'),\n",
+ " ('ash gray', 'a light shade of grey'),\n",
+ " ('silver gray', 'a light shade of grey'),\n",
+ " ('flatware', 'silverware eating utensils'),\n",
+ " ('silver medal',\n",
+ " 'a trophy made of silver (or having the appearance of silver) that is usually awarded for winning second place in a competition')]},\n",
+ " {'answer': 'single',\n",
+ " 'hint': 'synonyms for single',\n",
+ " 'clues': [('bingle',\n",
+ " 'a base hit on which the batter stops safely at first base'),\n",
+ " ('ace',\n",
+ " 'the smallest whole number or a numeral representing this number'),\n",
+ " ('one',\n",
+ " 'the smallest whole number or a numeral representing this number'),\n",
+ " ('1', 'the smallest whole number or a numeral representing this number'),\n",
+ " ('unity',\n",
+ " 'the smallest whole number or a numeral representing this number')]},\n",
+ " {'answer': 'six',\n",
+ " 'hint': 'synonyms for six',\n",
+ " 'clues': [('hexad', 'the cardinal number that is the sum of five and one'),\n",
+ " ('sextuplet', 'the cardinal number that is the sum of five and one'),\n",
+ " ('6', 'the cardinal number that is the sum of five and one'),\n",
+ " ('half a dozen', 'the cardinal number that is the sum of five and one'),\n",
+ " ('sise', 'the cardinal number that is the sum of five and one'),\n",
+ " ('sextet', 'the cardinal number that is the sum of five and one'),\n",
+ " ('sixer', 'the cardinal number that is the sum of five and one'),\n",
+ " ('sestet', 'the cardinal number that is the sum of five and one'),\n",
+ " ('six-spot',\n",
+ " 'a playing card or domino or die whose upward face shows six pips')]},\n",
+ " {'answer': 'sky-blue',\n",
+ " 'hint': 'synonyms for sky-blue',\n",
+ " 'clues': [('azure', 'a light shade of blue'),\n",
+ " ('sapphire', 'a light shade of blue'),\n",
+ " ('lazuline', 'a light shade of blue'),\n",
+ " ('cerulean', 'a light shade of blue')]},\n",
+ " {'answer': 'slack',\n",
+ " 'hint': 'synonyms for slack',\n",
+ " 'clues': [('slump',\n",
+ " 'a noticeable deterioration in performance or quality'),\n",
+ " ('quag', 'a soft wet area of low-lying land that sinks underfoot'),\n",
+ " ('falling off', 'a noticeable deterioration in performance or quality'),\n",
+ " ('falloff', 'a noticeable deterioration in performance or quality'),\n",
+ " ('slackness', 'the quality of being loose (not taut)'),\n",
+ " ('mire', 'a soft wet area of low-lying land that sinks underfoot'),\n",
+ " ('morass', 'a soft wet area of low-lying land that sinks underfoot'),\n",
+ " ('drop-off', 'a noticeable deterioration in performance or quality'),\n",
+ " ('quagmire', 'a soft wet area of low-lying land that sinks underfoot'),\n",
+ " ('slack water', 'a stretch of water without current or movement')]},\n",
+ " {'answer': 'slick',\n",
+ " 'hint': 'synonyms for slick',\n",
+ " 'clues': [('slipperiness', 'a slippery smoothness'),\n",
+ " ('slick magazine', 'a magazine printed on good quality paper'),\n",
+ " ('slip', 'a slippery smoothness'),\n",
+ " ('slickness', 'a slippery smoothness'),\n",
+ " ('glossy', 'a magazine printed on good quality paper')]},\n",
+ " {'answer': 'snub',\n",
+ " 'hint': 'synonyms for snub',\n",
+ " 'clues': [('cut', 'a refusal to recognize someone you know'),\n",
+ " ('cold shoulder', 'a refusal to recognize someone you know'),\n",
+ " ('rebuff', 'an instance of driving away or warding off'),\n",
+ " ('repulse', 'an instance of driving away or warding off')]},\n",
+ " {'answer': 'soaring',\n",
+ " 'hint': 'synonyms for soaring',\n",
+ " 'clues': [('sailplaning', 'the activity of flying a glider'),\n",
+ " ('gliding', 'the activity of flying a glider'),\n",
+ " ('sailing', 'the activity of flying a glider'),\n",
+ " ('glide', 'the activity of flying a glider')]},\n",
+ " {'answer': 'solvent',\n",
+ " 'hint': 'synonyms for solvent',\n",
+ " 'clues': [('dissolving agent',\n",
+ " 'a liquid substance capable of dissolving other substances'),\n",
+ " ('solution',\n",
+ " 'a statement that solves a problem or explains how to solve the problem'),\n",
+ " ('answer',\n",
+ " 'a statement that solves a problem or explains how to solve the problem'),\n",
+ " ('result',\n",
+ " 'a statement that solves a problem or explains how to solve the problem'),\n",
+ " ('dissolver',\n",
+ " 'a liquid substance capable of dissolving other substances'),\n",
+ " ('resolvent',\n",
+ " 'a liquid substance capable of dissolving other substances'),\n",
+ " ('dissolvent',\n",
+ " 'a liquid substance capable of dissolving other substances')]},\n",
+ " {'answer': 'sound',\n",
+ " 'hint': 'synonyms for sound',\n",
+ " 'clues': [('audio', 'the audible part of a transmitted signal'),\n",
+ " ('phone',\n",
+ " '(phonetics) an individual sound unit of speech without concern as to whether or not it is a phoneme of some language'),\n",
+ " ('speech sound',\n",
+ " '(phonetics) an individual sound unit of speech without concern as to whether or not it is a phoneme of some language'),\n",
+ " ('strait',\n",
+ " 'a narrow channel of the sea joining two larger bodies of water'),\n",
+ " ('auditory sensation', 'the subjective sensation of hearing something')]},\n",
+ " {'answer': 'speaking',\n",
+ " 'hint': 'synonyms for speaking',\n",
+ " 'clues': [('speechmaking', 'delivering an address to a public audience'),\n",
+ " ('oral presentation', 'delivering an address to a public audience'),\n",
+ " ('speech production', 'the utterance of intelligible speech'),\n",
+ " ('public speaking', 'delivering an address to a public audience')]},\n",
+ " {'answer': 'speckless',\n",
+ " 'hint': 'synonyms for speckless',\n",
+ " 'clues': [('maculation', 'a small contrasting part of something'),\n",
+ " ('fleck', 'a small contrasting part of something'),\n",
+ " ('spot', 'a small contrasting part of something'),\n",
+ " ('dapple', 'a small contrasting part of something'),\n",
+ " ('patch', 'a small contrasting part of something'),\n",
+ " ('speckle', 'a small contrasting part of something')]},\n",
+ " {'answer': 'spiral',\n",
+ " 'hint': 'synonyms for spiral',\n",
+ " 'clues': [('volute',\n",
+ " 'a structure consisting of something wound in a continuous series of loops'),\n",
+ " ('helix',\n",
+ " 'a curve that lies on the surface of a cylinder or cone and cuts the element at a constant angle'),\n",
+ " ('whorl',\n",
+ " 'a structure consisting of something wound in a continuous series of loops'),\n",
+ " ('coil',\n",
+ " 'a structure consisting of something wound in a continuous series of loops')]},\n",
+ " {'answer': 'split',\n",
+ " 'hint': 'synonyms for split',\n",
+ " 'clues': [('rent', 'the act of rending or ripping or splitting something'),\n",
+ " ('stock split',\n",
+ " \"an increase in the number of outstanding shares of a corporation without changing the shareholders' equity\"),\n",
+ " ('rip', 'an opening made forcibly as by pulling apart'),\n",
+ " ('split up',\n",
+ " \"an increase in the number of outstanding shares of a corporation without changing the shareholders' equity\"),\n",
+ " ('schism', 'division of a group into opposing factions'),\n",
+ " ('tear', 'an opening made forcibly as by pulling apart'),\n",
+ " ('snag', 'an opening made forcibly as by pulling apart')]},\n",
+ " {'answer': 'spread',\n",
+ " 'hint': 'synonyms for spread',\n",
+ " 'clues': [('spreading',\n",
+ " 'process or result of distributing or extending over a wide expanse of space'),\n",
+ " ('bed cover', 'decorative cover for a bed'),\n",
+ " ('paste',\n",
+ " 'a tasty mixture to be spread on bread or crackers or used in preparing other dishes'),\n",
+ " ('banquet', 'a meal that is well prepared and greatly enjoyed'),\n",
+ " ('cattle ranch',\n",
+ " 'farm consisting of a large tract of land along with facilities needed to raise livestock (especially cattle)'),\n",
+ " ('spreadhead', 'two facing pages of a book or other publication'),\n",
+ " ('scatter', 'a haphazard distribution in all directions'),\n",
+ " ('gap', 'a conspicuous disparity or difference as between two figures'),\n",
+ " ('counterpane', 'decorative cover for a bed'),\n",
+ " ('facing pages', 'two facing pages of a book or other publication'),\n",
+ " ('feast', 'a meal that is well prepared and greatly enjoyed'),\n",
+ " ('bedspread', 'decorative cover for a bed'),\n",
+ " ('ranch',\n",
+ " 'farm consisting of a large tract of land along with facilities needed to raise livestock (especially cattle)'),\n",
+ " ('cattle farm',\n",
+ " 'farm consisting of a large tract of land along with facilities needed to raise livestock (especially cattle)')]},\n",
+ " {'answer': 'squat',\n",
+ " 'hint': 'synonyms for squat',\n",
+ " 'clues': [('diddly-squat', 'a small worthless amount'),\n",
+ " ('knee bend',\n",
+ " 'exercising by repeatedly assuming a crouching position with the knees bent; strengthens the leg muscles'),\n",
+ " ('jack', 'a small worthless amount'),\n",
+ " ('doodly-squat', 'a small worthless amount'),\n",
+ " ('diddly', 'a small worthless amount'),\n",
+ " ('squatting',\n",
+ " 'the act of assuming or maintaining a crouching position with the knees bent and the buttocks near the heels'),\n",
+ " ('diddlyshit', 'a small worthless amount'),\n",
+ " ('shit', 'a small worthless amount')]},\n",
+ " {'answer': 'standard',\n",
+ " 'hint': 'synonyms for standard',\n",
+ " 'clues': [('measure',\n",
+ " 'a basis for comparison; a reference point against which other things can be evaluated'),\n",
+ " ('criterion', 'the ideal in terms of which something can be judged'),\n",
+ " ('touchstone',\n",
+ " 'a basis for comparison; a reference point against which other things can be evaluated'),\n",
+ " ('banner', 'any distinctive flag'),\n",
+ " ('monetary standard',\n",
+ " 'the value behind the money in a monetary system')]},\n",
+ " {'answer': 'stereo',\n",
+ " 'hint': 'synonyms for stereo',\n",
+ " 'clues': [('stereophony',\n",
+ " 'reproducer in which two microphones feed two or more loudspeakers to give a three-dimensional effect to the sound'),\n",
+ " ('stereoscopic picture',\n",
+ " 'two photographs taken from slightly different angles that appear three-dimensional when viewed together'),\n",
+ " ('stereo system',\n",
+ " 'reproducer in which two microphones feed two or more loudspeakers to give a three-dimensional effect to the sound'),\n",
+ " ('stereoscopic photograph',\n",
+ " 'two photographs taken from slightly different angles that appear three-dimensional when viewed together'),\n",
+ " ('stereophonic system',\n",
+ " 'reproducer in which two microphones feed two or more loudspeakers to give a three-dimensional effect to the sound')]},\n",
+ " {'answer': 'stern',\n",
+ " 'hint': 'synonyms for stern',\n",
+ " 'clues': [('quarter', 'the rear part of a ship'),\n",
+ " ('poop', 'the rear part of a ship'),\n",
+ " ('tail', 'the rear part of a ship'),\n",
+ " ('after part', 'the rear part of a ship')]},\n",
+ " {'answer': 'stimulant',\n",
+ " 'hint': 'synonyms for stimulant',\n",
+ " 'clues': [('stimulus',\n",
+ " 'any stimulating information or event; acts to arouse action'),\n",
+ " ('stimulant drug', 'a drug that temporarily quickens some vital process'),\n",
+ " ('stimulation',\n",
+ " 'any stimulating information or event; acts to arouse action'),\n",
+ " ('input', 'any stimulating information or event; acts to arouse action'),\n",
+ " ('excitant', 'a drug that temporarily quickens some vital process')]},\n",
+ " {'answer': 'stock',\n",
+ " 'hint': 'synonyms for stock',\n",
+ " 'clues': [('gunstock',\n",
+ " 'the handle of a handgun or the butt end of a rifle or shotgun or part of the support of a machine gun or artillery gun'),\n",
+ " ('line of descent', 'the descendants of one individual'),\n",
+ " ('origin', 'the descendants of one individual'),\n",
+ " ('lineage', 'the descendants of one individual'),\n",
+ " ('fund', 'a supply of something available for future use'),\n",
+ " ('bloodline', 'the descendants of one individual'),\n",
+ " ('stemma', 'the descendants of one individual'),\n",
+ " ('pedigree', 'the descendants of one individual'),\n",
+ " ('strain', 'a special variety of domesticated animals within a species'),\n",
+ " ('stock certificate',\n",
+ " \"a certificate documenting the shareholder's ownership in the corporation\"),\n",
+ " ('ancestry', 'the descendants of one individual'),\n",
+ " ('store', 'a supply of something available for future use'),\n",
+ " ('line', 'the descendants of one individual'),\n",
+ " ('descent', 'the descendants of one individual'),\n",
+ " ('parentage', 'the descendants of one individual'),\n",
+ " ('breed', 'a special variety of domesticated animals within a species'),\n",
+ " ('blood', 'the descendants of one individual'),\n",
+ " ('inventory', 'the merchandise that a shop has on hand'),\n",
+ " ('neckcloth', 'an ornamental white cravat'),\n",
+ " ('broth',\n",
+ " 'liquid in which meat and vegetables are simmered; used as a basis for e.g. soups or sauces')]},\n",
+ " {'answer': 'straining',\n",
+ " 'hint': 'synonyms for straining',\n",
+ " 'clues': [('torture',\n",
+ " 'the act of distorting something so it seems to mean something it was not intended to mean'),\n",
+ " ('strain', 'an intense or violent exertion'),\n",
+ " ('twisting',\n",
+ " 'the act of distorting something so it seems to mean something it was not intended to mean'),\n",
+ " ('distortion',\n",
+ " 'the act of distorting something so it seems to mean something it was not intended to mean'),\n",
+ " ('overrefinement',\n",
+ " 'the act of distorting something so it seems to mean something it was not intended to mean')]},\n",
+ " {'answer': 'straw',\n",
+ " 'hint': 'synonyms for straw',\n",
+ " 'clues': [('pale yellow',\n",
+ " 'a variable yellow tint; dull yellow, often diluted with white'),\n",
+ " ('wheat',\n",
+ " 'a variable yellow tint; dull yellow, often diluted with white'),\n",
+ " ('chaff',\n",
+ " 'material consisting of seed coverings and small pieces of stem or leaves that have been separated from the seeds'),\n",
+ " ('drinking straw',\n",
+ " 'a thin paper or plastic tube used to suck liquids into the mouth'),\n",
+ " ('husk',\n",
+ " 'material consisting of seed coverings and small pieces of stem or leaves that have been separated from the seeds'),\n",
+ " ('shuck',\n",
+ " 'material consisting of seed coverings and small pieces of stem or leaves that have been separated from the seeds'),\n",
+ " ('stubble',\n",
+ " 'material consisting of seed coverings and small pieces of stem or leaves that have been separated from the seeds'),\n",
+ " ('stalk',\n",
+ " 'material consisting of seed coverings and small pieces of stem or leaves that have been separated from the seeds')]},\n",
+ " {'answer': 'stretch',\n",
+ " 'hint': 'synonyms for stretch',\n",
+ " 'clues': [('stretchiness', 'the capacity for being stretched'),\n",
+ " ('stretchability', 'the capacity for being stretched'),\n",
+ " ('stretching',\n",
+ " 'exercise designed to extend the limbs and muscles to their full extent'),\n",
+ " ('stint', 'an unbroken period of time during which you do something'),\n",
+ " ('reaching', 'the act of physically reaching or thrusting out')]},\n",
+ " {'answer': 'striking',\n",
+ " 'hint': 'synonyms for striking',\n",
+ " 'clues': [('impinging',\n",
+ " 'the physical coming together of two or more things'),\n",
+ " ('hit', 'the act of contacting one thing with another'),\n",
+ " ('hitting', 'the act of contacting one thing with another'),\n",
+ " ('contact', 'the physical coming together of two or more things')]},\n",
+ " {'answer': 'subject',\n",
+ " 'hint': 'synonyms for subject',\n",
+ " 'clues': [('discipline', 'a branch of knowledge'),\n",
+ " ('content',\n",
+ " 'something (a person or object or scene) selected by an artist or photographer for graphic representation'),\n",
+ " ('field', 'a branch of knowledge'),\n",
+ " ('depicted object',\n",
+ " 'something (a person or object or scene) selected by an artist or photographer for graphic representation'),\n",
+ " ('study', 'a branch of knowledge'),\n",
+ " ('subject field', 'a branch of knowledge'),\n",
+ " ('issue', 'some situation or event that is thought about'),\n",
+ " ('topic', 'the subject matter of a conversation or discussion'),\n",
+ " ('subject area', 'a branch of knowledge'),\n",
+ " ('matter', 'some situation or event that is thought about'),\n",
+ " ('field of study', 'a branch of knowledge'),\n",
+ " ('bailiwick', 'a branch of knowledge'),\n",
+ " ('theme', 'the subject matter of a conversation or discussion')]},\n",
+ " {'answer': 'submarine',\n",
+ " 'hint': 'synonyms for submarine',\n",
+ " 'clues': [('poor boy',\n",
+ " 'a large sandwich made of a long crusty roll split lengthwise and filled with meats and cheese (and tomato and onion and lettuce and condiments); different names are used in different sections of the United States'),\n",
+ " ('pigboat', 'a submersible warship usually armed with torpedoes'),\n",
+ " ('hero',\n",
+ " 'a large sandwich made of a long crusty roll split lengthwise and filled with meats and cheese (and tomato and onion and lettuce and condiments); different names are used in different sections of the United States'),\n",
+ " ('torpedo',\n",
+ " 'a large sandwich made of a long crusty roll split lengthwise and filled with meats and cheese (and tomato and onion and lettuce and condiments); different names are used in different sections of the United States'),\n",
+ " ('grinder',\n",
+ " 'a large sandwich made of a long crusty roll split lengthwise and filled with meats and cheese (and tomato and onion and lettuce and condiments); different names are used in different sections of the United States'),\n",
+ " ('bomber',\n",
+ " 'a large sandwich made of a long crusty roll split lengthwise and filled with meats and cheese (and tomato and onion and lettuce and condiments); different names are used in different sections of the United States'),\n",
+ " ('hoagy',\n",
+ " 'a large sandwich made of a long crusty roll split lengthwise and filled with meats and cheese (and tomato and onion and lettuce and condiments); different names are used in different sections of the United States'),\n",
+ " ('wedge',\n",
+ " 'a large sandwich made of a long crusty roll split lengthwise and filled with meats and cheese (and tomato and onion and lettuce and condiments); different names are used in different sections of the United States'),\n",
+ " ('zep',\n",
+ " 'a large sandwich made of a long crusty roll split lengthwise and filled with meats and cheese (and tomato and onion and lettuce and condiments); different names are used in different sections of the United States'),\n",
+ " ('sub',\n",
+ " 'a large sandwich made of a long crusty roll split lengthwise and filled with meats and cheese (and tomato and onion and lettuce and condiments); different names are used in different sections of the United States'),\n",
+ " ('hoagie',\n",
+ " 'a large sandwich made of a long crusty roll split lengthwise and filled with meats and cheese (and tomato and onion and lettuce and condiments); different names are used in different sections of the United States'),\n",
+ " ('hero sandwich',\n",
+ " 'a large sandwich made of a long crusty roll split lengthwise and filled with meats and cheese (and tomato and onion and lettuce and condiments); different names are used in different sections of the United States'),\n",
+ " ('submarine sandwich',\n",
+ " 'a large sandwich made of a long crusty roll split lengthwise and filled with meats and cheese (and tomato and onion and lettuce and condiments); different names are used in different sections of the United States')]},\n",
+ " {'answer': 'sunrise',\n",
+ " 'hint': 'synonyms for sunrise',\n",
+ " 'clues': [('sunup', 'the first light of day'),\n",
+ " ('daybreak', 'the first light of day'),\n",
+ " ('dawn', 'the first light of day'),\n",
+ " ('morning', 'the first light of day'),\n",
+ " ('cockcrow', 'the first light of day'),\n",
+ " ('aurora', 'the first light of day'),\n",
+ " ('break of the day', 'the first light of day'),\n",
+ " ('first light', 'the first light of day'),\n",
+ " ('dayspring', 'the first light of day')]},\n",
+ " {'answer': 'surface',\n",
+ " 'hint': 'synonyms for surface',\n",
+ " 'clues': [('airfoil',\n",
+ " 'a device that provides reactive force when in motion relative to the surrounding air; can lift or control a plane in flight'),\n",
+ " ('aerofoil',\n",
+ " 'a device that provides reactive force when in motion relative to the surrounding air; can lift or control a plane in flight'),\n",
+ " ('control surface',\n",
+ " 'a device that provides reactive force when in motion relative to the surrounding air; can lift or control a plane in flight'),\n",
+ " ('open', 'information that has become public')]},\n",
+ " {'answer': 'swank',\n",
+ " 'hint': 'synonyms for swank',\n",
+ " 'clues': [('chicness', 'elegance by virtue of being fashionable'),\n",
+ " ('stylishness', 'elegance by virtue of being fashionable'),\n",
+ " ('last word', 'elegance by virtue of being fashionable'),\n",
+ " ('smartness', 'elegance by virtue of being fashionable'),\n",
+ " ('chichi', 'elegance by virtue of being fashionable'),\n",
+ " ('modishness', 'elegance by virtue of being fashionable'),\n",
+ " ('chic', 'elegance by virtue of being fashionable')]},\n",
+ " {'answer': 'sweet',\n",
+ " 'hint': 'synonyms for sweet',\n",
+ " 'clues': [('afters', 'a dish served as the last course of a meal'),\n",
+ " ('confection', 'a food rich in sugar'),\n",
+ " ('sweetness', 'the property of tasting as if it contains sugar'),\n",
+ " ('dessert', 'a dish served as the last course of a meal'),\n",
+ " ('sugariness',\n",
+ " 'the taste experience when sugar dissolves in the mouth')]},\n",
+ " {'answer': 'teasing',\n",
+ " 'hint': 'synonyms for teasing',\n",
+ " 'clues': [('tantalization',\n",
+ " 'the act of harassing someone playfully or maliciously (especially by ridicule); provoking someone with persistent annoyances'),\n",
+ " ('comb-out', 'the act of removing tangles from you hair with a comb'),\n",
+ " ('tease',\n",
+ " 'the act of harassing someone playfully or maliciously (especially by ridicule); provoking someone with persistent annoyances'),\n",
+ " ('ribbing',\n",
+ " 'the act of harassing someone playfully or maliciously (especially by ridicule); provoking someone with persistent annoyances')]},\n",
+ " {'answer': 'telling',\n",
+ " 'hint': 'synonyms for telling',\n",
+ " 'clues': [('recounting', 'an act of narration'),\n",
+ " ('singing', 'disclosing information or giving evidence about another'),\n",
+ " ('apprisal', 'informing by words'),\n",
+ " ('notification', 'informing by words'),\n",
+ " ('tattle', 'disclosing information or giving evidence about another'),\n",
+ " ('relation', 'an act of narration')]},\n",
+ " {'answer': 'ten',\n",
+ " 'hint': 'synonyms for ten',\n",
+ " 'clues': [('tenner',\n",
+ " 'the cardinal number that is the sum of nine and one; the base of the decimal system'),\n",
+ " ('decade',\n",
+ " 'the cardinal number that is the sum of nine and one; the base of the decimal system'),\n",
+ " ('10',\n",
+ " 'the cardinal number that is the sum of nine and one; the base of the decimal system'),\n",
+ " ('ten-spot',\n",
+ " 'one of four playing cards in a deck with ten pips on the face')]},\n",
+ " {'answer': 'tender',\n",
+ " 'hint': 'synonyms for tender',\n",
+ " 'clues': [(\"ship's boat\",\n",
+ " 'a boat for communication between ship and shore'),\n",
+ " ('cutter', 'a boat for communication between ship and shore'),\n",
+ " ('supply ship', 'ship that usually provides supplies to other ships'),\n",
+ " ('stamp', 'something that can be used as an official medium of payment'),\n",
+ " ('pinnace', 'a boat for communication between ship and shore'),\n",
+ " ('bid', 'a formal proposal to buy at a specified price'),\n",
+ " ('legal tender',\n",
+ " 'something that can be used as an official medium of payment')]},\n",
+ " {'answer': 'terminal',\n",
+ " 'hint': 'synonyms for terminal',\n",
+ " 'clues': [('terminus',\n",
+ " 'station where transport vehicles load or unload passengers or goods'),\n",
+ " ('end', 'either extremity of something that has length'),\n",
+ " ('pole',\n",
+ " 'a contact on an electrical device (such as a battery) at which electric current enters or leaves'),\n",
+ " ('depot',\n",
+ " 'station where transport vehicles load or unload passengers or goods')]},\n",
+ " {'answer': 'ternary',\n",
+ " 'hint': 'synonyms for ternary',\n",
+ " 'clues': [('ternion',\n",
+ " 'the cardinal number that is the sum of one and one and one'),\n",
+ " ('tierce', 'the cardinal number that is the sum of one and one and one'),\n",
+ " ('3', 'the cardinal number that is the sum of one and one and one'),\n",
+ " ('troika', 'the cardinal number that is the sum of one and one and one'),\n",
+ " ('trinity', 'the cardinal number that is the sum of one and one and one'),\n",
+ " ('triplet', 'the cardinal number that is the sum of one and one and one'),\n",
+ " ('three', 'the cardinal number that is the sum of one and one and one'),\n",
+ " ('threesome',\n",
+ " 'the cardinal number that is the sum of one and one and one'),\n",
+ " ('trey', 'the cardinal number that is the sum of one and one and one'),\n",
+ " ('trine', 'the cardinal number that is the sum of one and one and one'),\n",
+ " ('leash', 'the cardinal number that is the sum of one and one and one'),\n",
+ " ('trio', 'the cardinal number that is the sum of one and one and one'),\n",
+ " ('tercet', 'the cardinal number that is the sum of one and one and one'),\n",
+ " ('deuce-ace',\n",
+ " 'the cardinal number that is the sum of one and one and one'),\n",
+ " ('triad', 'the cardinal number that is the sum of one and one and one'),\n",
+ " ('terzetto',\n",
+ " 'the cardinal number that is the sum of one and one and one')]},\n",
+ " {'answer': 'testimonial',\n",
+ " 'hint': 'synonyms for testimonial',\n",
+ " 'clues': [('testimony', 'something that serves as evidence'),\n",
+ " ('recommendation',\n",
+ " 'something that recommends (or expresses commendation of) a person or thing as worthy or desirable'),\n",
+ " ('tribute', 'something given or done as an expression of esteem'),\n",
+ " ('good word',\n",
+ " 'something that recommends (or expresses commendation of) a person or thing as worthy or desirable')]},\n",
+ " {'answer': 'textbook',\n",
+ " 'hint': 'synonyms for textbook',\n",
+ " 'clues': [('school text',\n",
+ " 'a book prepared for use in schools or colleges'),\n",
+ " ('text', 'a book prepared for use in schools or colleges'),\n",
+ " ('schoolbook', 'a book prepared for use in schools or colleges'),\n",
+ " ('text edition', 'a book prepared for use in schools or colleges')]},\n",
+ " {'answer': 'thickening',\n",
+ " 'hint': 'synonyms for thickening',\n",
+ " 'clues': [('inspissation', 'the act of thickening'),\n",
+ " ('node', 'any thickened enlargement'),\n",
+ " ('thickener', 'any material used to thicken'),\n",
+ " ('knob', 'any thickened enlargement')]},\n",
+ " {'answer': 'thieving',\n",
+ " 'hint': 'synonyms for thieving',\n",
+ " 'clues': [('stealing',\n",
+ " 'the act of taking something from someone unlawfully'),\n",
+ " ('thievery', 'the act of taking something from someone unlawfully'),\n",
+ " ('theft', 'the act of taking something from someone unlawfully'),\n",
+ " ('larceny', 'the act of taking something from someone unlawfully')]},\n",
+ " {'answer': 'thinking',\n",
+ " 'hint': 'synonyms for thinking',\n",
+ " 'clues': [('mentation',\n",
+ " 'the process of using your mind to consider something carefully'),\n",
+ " ('intellection',\n",
+ " 'the process of using your mind to consider something carefully'),\n",
+ " ('thought',\n",
+ " 'the process of using your mind to consider something carefully'),\n",
+ " ('thought process',\n",
+ " 'the process of using your mind to consider something carefully'),\n",
+ " ('cerebration',\n",
+ " 'the process of using your mind to consider something carefully')]},\n",
+ " {'answer': 'third',\n",
+ " 'hint': 'synonyms for third',\n",
+ " 'clues': [('tierce', 'one of three equal parts of a divisible whole'),\n",
+ " ('one-third', 'one of three equal parts of a divisible whole'),\n",
+ " ('third base',\n",
+ " 'the fielding position of the player on a baseball team who is stationed near the third of the bases in the infield (counting counterclockwise from home plate)'),\n",
+ " ('third gear',\n",
+ " 'the third from the lowest forward ratio gear in the gear box of a motor vehicle')]},\n",
+ " {'answer': 'thousand',\n",
+ " 'hint': 'synonyms for thousand',\n",
+ " 'clues': [('chiliad',\n",
+ " 'the cardinal number that is the product of 10 and 100'),\n",
+ " ('yard', 'the cardinal number that is the product of 10 and 100'),\n",
+ " ('grand', 'the cardinal number that is the product of 10 and 100'),\n",
+ " ('one thousand', 'the cardinal number that is the product of 10 and 100'),\n",
+ " ('thou', 'the cardinal number that is the product of 10 and 100'),\n",
+ " ('1000', 'the cardinal number that is the product of 10 and 100')]},\n",
+ " {'answer': 'three',\n",
+ " 'hint': 'synonyms for three',\n",
+ " 'clues': [('ternary',\n",
+ " 'the cardinal number that is the sum of one and one and one'),\n",
+ " ('ternion', 'the cardinal number that is the sum of one and one and one'),\n",
+ " ('tierce', 'the cardinal number that is the sum of one and one and one'),\n",
+ " ('3', 'the cardinal number that is the sum of one and one and one'),\n",
+ " ('troika', 'the cardinal number that is the sum of one and one and one'),\n",
+ " ('trinity', 'the cardinal number that is the sum of one and one and one'),\n",
+ " ('triplet', 'the cardinal number that is the sum of one and one and one'),\n",
+ " ('threesome',\n",
+ " 'the cardinal number that is the sum of one and one and one'),\n",
+ " ('trey', 'the cardinal number that is the sum of one and one and one'),\n",
+ " ('trine', 'the cardinal number that is the sum of one and one and one'),\n",
+ " ('leash', 'the cardinal number that is the sum of one and one and one'),\n",
+ " ('trio', 'the cardinal number that is the sum of one and one and one'),\n",
+ " ('tercet', 'the cardinal number that is the sum of one and one and one'),\n",
+ " ('deuce-ace',\n",
+ " 'the cardinal number that is the sum of one and one and one'),\n",
+ " ('triad', 'the cardinal number that is the sum of one and one and one'),\n",
+ " ('terzetto',\n",
+ " 'the cardinal number that is the sum of one and one and one')]},\n",
+ " {'answer': 'throwaway',\n",
+ " 'hint': 'synonyms for throwaway',\n",
+ " 'clues': [('bill',\n",
+ " 'an advertisement (usually printed on a page or in a leaflet) intended for wide distribution'),\n",
+ " ('flyer',\n",
+ " 'an advertisement (usually printed on a page or in a leaflet) intended for wide distribution'),\n",
+ " ('flier',\n",
+ " 'an advertisement (usually printed on a page or in a leaflet) intended for wide distribution'),\n",
+ " ('circular',\n",
+ " 'an advertisement (usually printed on a page or in a leaflet) intended for wide distribution'),\n",
+ " ('handbill',\n",
+ " 'an advertisement (usually printed on a page or in a leaflet) intended for wide distribution'),\n",
+ " ('broadsheet',\n",
+ " 'an advertisement (usually printed on a page or in a leaflet) intended for wide distribution'),\n",
+ " ('broadside',\n",
+ " 'an advertisement (usually printed on a page or in a leaflet) intended for wide distribution')]},\n",
+ " {'answer': 'thumping',\n",
+ " 'hint': 'synonyms for thumping',\n",
+ " 'clues': [('thump',\n",
+ " 'a heavy dull sound (as made by impact of heavy objects)'),\n",
+ " ('clump', 'a heavy dull sound (as made by impact of heavy objects)'),\n",
+ " ('clunk', 'a heavy dull sound (as made by impact of heavy objects)'),\n",
+ " ('thud', 'a heavy dull sound (as made by impact of heavy objects)')]},\n",
+ " {'answer': 'token',\n",
+ " 'hint': 'synonyms for token',\n",
+ " 'clues': [('item', 'an individual instance of a type of symbol'),\n",
+ " ('keepsake', 'something of sentimental value'),\n",
+ " ('relic', 'something of sentimental value'),\n",
+ " ('souvenir', 'something of sentimental value')]},\n",
+ " {'answer': 'tonic',\n",
+ " 'hint': 'synonyms for tonic',\n",
+ " 'clues': [('quinine water',\n",
+ " 'lime- or lemon-flavored carbonated water containing quinine'),\n",
+ " ('tonic water',\n",
+ " 'lime- or lemon-flavored carbonated water containing quinine'),\n",
+ " ('soda pop', 'a sweet drink containing carbonated water and flavoring'),\n",
+ " ('soda', 'a sweet drink containing carbonated water and flavoring'),\n",
+ " ('pop', 'a sweet drink containing carbonated water and flavoring'),\n",
+ " ('soda water', 'a sweet drink containing carbonated water and flavoring'),\n",
+ " ('restorative', 'a medicine that strengthens and invigorates'),\n",
+ " ('keynote', '(music) the first note of a diatonic scale')]},\n",
+ " {'answer': 'top',\n",
+ " 'hint': 'synonyms for top',\n",
+ " 'clues': [('peak',\n",
+ " 'the top or extreme point of something (usually a mountain or hill)'),\n",
+ " ('top of the inning',\n",
+ " 'the first half of an inning; while the visiting team is at bat'),\n",
+ " ('round top',\n",
+ " 'a canvas tent to house the audience at a circus performance'),\n",
+ " ('spinning top',\n",
+ " \"a conical child's plaything tapering to a steel point on which it can be made to spin\"),\n",
+ " ('teetotum',\n",
+ " \"a conical child's plaything tapering to a steel point on which it can be made to spin\"),\n",
+ " ('circus tent',\n",
+ " 'a canvas tent to house the audience at a circus performance'),\n",
+ " ('summit',\n",
+ " 'the top or extreme point of something (usually a mountain or hill)'),\n",
+ " ('crest',\n",
+ " 'the top or extreme point of something (usually a mountain or hill)'),\n",
+ " ('tip',\n",
+ " 'the top or extreme point of something (usually a mountain or hill)'),\n",
+ " ('big top',\n",
+ " 'a canvas tent to house the audience at a circus performance'),\n",
+ " ('upper side', 'the highest or uppermost side of anything'),\n",
+ " ('top side', 'the highest or uppermost side of anything'),\n",
+ " ('crown',\n",
+ " 'the top or extreme point of something (usually a mountain or hill)'),\n",
+ " ('whirligig',\n",
+ " \"a conical child's plaything tapering to a steel point on which it can be made to spin\"),\n",
+ " ('cover',\n",
+ " 'covering for a hole (especially a hole in the top of a container)'),\n",
+ " ('upside', 'the highest or uppermost side of anything')]},\n",
+ " {'answer': 'tops',\n",
+ " 'hint': 'synonyms for tops',\n",
+ " 'clues': [('peak',\n",
+ " 'the top or extreme point of something (usually a mountain or hill)'),\n",
+ " ('top',\n",
+ " \"a conical child's plaything tapering to a steel point on which it can be made to spin\"),\n",
+ " ('top of the inning',\n",
+ " 'the first half of an inning; while the visiting team is at bat'),\n",
+ " ('round top',\n",
+ " 'a canvas tent to house the audience at a circus performance'),\n",
+ " ('summit',\n",
+ " 'the top or extreme point of something (usually a mountain or hill)'),\n",
+ " ('crest',\n",
+ " 'the top or extreme point of something (usually a mountain or hill)'),\n",
+ " ('tip',\n",
+ " 'the top or extreme point of something (usually a mountain or hill)'),\n",
+ " ('spinning top',\n",
+ " \"a conical child's plaything tapering to a steel point on which it can be made to spin\"),\n",
+ " ('teetotum',\n",
+ " \"a conical child's plaything tapering to a steel point on which it can be made to spin\"),\n",
+ " ('circus tent',\n",
+ " 'a canvas tent to house the audience at a circus performance'),\n",
+ " ('big top',\n",
+ " 'a canvas tent to house the audience at a circus performance'),\n",
+ " ('upper side', 'the highest or uppermost side of anything'),\n",
+ " ('top side', 'the highest or uppermost side of anything'),\n",
+ " ('crown',\n",
+ " 'the top or extreme point of something (usually a mountain or hill)'),\n",
+ " ('whirligig',\n",
+ " \"a conical child's plaything tapering to a steel point on which it can be made to spin\"),\n",
+ " ('cover',\n",
+ " 'covering for a hole (especially a hole in the top of a container)'),\n",
+ " ('upside', 'the highest or uppermost side of anything')]},\n",
+ " {'answer': 'total',\n",
+ " 'hint': 'synonyms for total',\n",
+ " 'clues': [('totality', 'the whole amount'),\n",
+ " ('sum', 'the whole amount'),\n",
+ " ('aggregate', 'the whole amount'),\n",
+ " ('amount', 'a quantity obtained by the addition of a group of numbers')]},\n",
+ " {'answer': 'trillion',\n",
+ " 'hint': 'synonyms for trillion',\n",
+ " 'clues': [('zillion',\n",
+ " 'a very large indefinite number (usually hyperbole)'),\n",
+ " ('1000000000000',\n",
+ " 'the number that is represented as a one followed by 12 zeros'),\n",
+ " ('one million million',\n",
+ " 'the number that is represented as a one followed by 12 zeros'),\n",
+ " ('one million million million',\n",
+ " 'the number that is represented as a one followed by 18 zeros')]},\n",
+ " {'answer': 'triple',\n",
+ " 'hint': 'synonyms for triple',\n",
+ " 'clues': [('trio', 'a set of three similar things considered as a unit'),\n",
+ " ('three-bagger',\n",
+ " 'a base hit at which the batter stops safely at third base'),\n",
+ " ('triad', 'a set of three similar things considered as a unit'),\n",
+ " ('three-base hit',\n",
+ " 'a base hit at which the batter stops safely at third base'),\n",
+ " ('triplet', 'a set of three similar things considered as a unit')]},\n",
+ " {'answer': 'twilight',\n",
+ " 'hint': 'synonyms for twilight',\n",
+ " 'clues': [('evenfall', 'the time of day immediately following sunset'),\n",
+ " ('nightfall', 'the time of day immediately following sunset'),\n",
+ " ('gloam', 'the time of day immediately following sunset'),\n",
+ " ('crepuscle', 'the time of day immediately following sunset'),\n",
+ " ('fall', 'the time of day immediately following sunset'),\n",
+ " ('dusk', 'the time of day immediately following sunset')]},\n",
+ " {'answer': 'twinkling',\n",
+ " 'hint': 'synonyms for twinkling',\n",
+ " 'clues': [('split second',\n",
+ " 'a very short time (as the time it takes the eye to blink or the heart to beat)'),\n",
+ " ('flash',\n",
+ " 'a very short time (as the time it takes the eye to blink or the heart to beat)'),\n",
+ " ('blink of an eye',\n",
+ " 'a very short time (as the time it takes the eye to blink or the heart to beat)'),\n",
+ " ('trice',\n",
+ " 'a very short time (as the time it takes the eye to blink or the heart to beat)'),\n",
+ " ('instant',\n",
+ " 'a very short time (as the time it takes the eye to blink or the heart to beat)'),\n",
+ " ('jiffy',\n",
+ " 'a very short time (as the time it takes the eye to blink or the heart to beat)'),\n",
+ " ('wink',\n",
+ " 'a very short time (as the time it takes the eye to blink or the heart to beat)'),\n",
+ " ('heartbeat',\n",
+ " 'a very short time (as the time it takes the eye to blink or the heart to beat)')]},\n",
+ " {'answer': 'twisting',\n",
+ " 'hint': 'synonyms for twisting',\n",
+ " 'clues': [('torture',\n",
+ " 'the act of distorting something so it seems to mean something it was not intended to mean'),\n",
+ " ('twirl', 'the act of rotating rapidly'),\n",
+ " ('straining',\n",
+ " 'the act of distorting something so it seems to mean something it was not intended to mean'),\n",
+ " ('spin', 'the act of rotating rapidly'),\n",
+ " ('overrefinement',\n",
+ " 'the act of distorting something so it seems to mean something it was not intended to mean'),\n",
+ " ('whirl', 'the act of rotating rapidly'),\n",
+ " ('distortion',\n",
+ " 'the act of distorting something so it seems to mean something it was not intended to mean'),\n",
+ " ('twist', 'the act of rotating rapidly')]},\n",
+ " {'answer': 'umber',\n",
+ " 'hint': 'synonyms for umber',\n",
+ " 'clues': [('chocolate', 'a medium brown to dark-brown color'),\n",
+ " ('burnt umber', 'a medium brown to dark-brown color'),\n",
+ " ('deep brown', 'a medium brown to dark-brown color'),\n",
+ " ('coffee', 'a medium brown to dark-brown color')]},\n",
+ " {'answer': 'underground',\n",
+ " 'hint': 'synonyms for underground',\n",
+ " 'clues': [('subway',\n",
+ " 'an electric railway operating below the surface of the ground (usually in a city)'),\n",
+ " ('metro',\n",
+ " 'an electric railway operating below the surface of the ground (usually in a city)'),\n",
+ " ('resistance',\n",
+ " 'a secret group organized to overthrow a government or occupation force'),\n",
+ " ('subway system',\n",
+ " 'an electric railway operating below the surface of the ground (usually in a city)'),\n",
+ " ('tube',\n",
+ " 'an electric railway operating below the surface of the ground (usually in a city)')]},\n",
+ " {'answer': 'understanding',\n",
+ " 'hint': 'synonyms for understanding',\n",
+ " 'clues': [('apprehension',\n",
+ " 'the cognitive condition of someone who understands'),\n",
+ " ('intellect',\n",
+ " 'the capacity for rational thought or inference or discrimination'),\n",
+ " ('reason',\n",
+ " 'the capacity for rational thought or inference or discrimination'),\n",
+ " ('discernment', 'the cognitive condition of someone who understands'),\n",
+ " ('savvy', 'the cognitive condition of someone who understands'),\n",
+ " ('sympathy',\n",
+ " 'an inclination to support or be loyal to or to agree with an opinion'),\n",
+ " ('agreement',\n",
+ " 'the statement (oral or written) of an exchange of promises')]},\n",
+ " {'answer': 'union',\n",
+ " 'hint': 'synonyms for union',\n",
+ " 'clues': [('trade union',\n",
+ " 'an organization of employees formed to bargain with the employer'),\n",
+ " ('mating',\n",
+ " 'the act of pairing a male and female for reproductive purposes'),\n",
+ " ('labor union',\n",
+ " 'an organization of employees formed to bargain with the employer'),\n",
+ " ('pairing',\n",
+ " 'the act of pairing a male and female for reproductive purposes'),\n",
+ " ('join',\n",
+ " 'a set containing all and only the members of two or more given sets'),\n",
+ " ('uniting', 'the act of making or becoming a single unit'),\n",
+ " ('conjugation',\n",
+ " 'the act of pairing a male and female for reproductive purposes'),\n",
+ " ('sexual union',\n",
+ " 'the act of pairing a male and female for reproductive purposes'),\n",
+ " ('unification', 'the act of making or becoming a single unit'),\n",
+ " ('conglutination',\n",
+ " 'healing process involving the growing together of the edges of a wound or the growing together of broken bones'),\n",
+ " ('brotherhood',\n",
+ " 'an organization of employees formed to bargain with the employer'),\n",
+ " ('coupling',\n",
+ " 'the act of pairing a male and female for reproductive purposes'),\n",
+ " ('jointure', 'the act of making or becoming a single unit'),\n",
+ " ('sum',\n",
+ " 'a set containing all and only the members of two or more given sets')]},\n",
+ " {'answer': 'upper',\n",
+ " 'hint': 'synonyms for upper',\n",
+ " 'clues': [('amphetamine',\n",
+ " 'a central nervous system stimulant that increases energy and decreases appetite; used to treat narcolepsy and some forms of depression'),\n",
+ " ('pep pill',\n",
+ " 'a central nervous system stimulant that increases energy and decreases appetite; used to treat narcolepsy and some forms of depression'),\n",
+ " ('speed',\n",
+ " 'a central nervous system stimulant that increases energy and decreases appetite; used to treat narcolepsy and some forms of depression'),\n",
+ " ('upper berth', 'the higher of two berths')]},\n",
+ " {'answer': 'uppercase',\n",
+ " 'hint': 'synonyms for uppercase',\n",
+ " 'clues': [('majuscule',\n",
+ " 'one of the large alphabetic characters used as the first letter in writing or printing proper names and sometimes for emphasis'),\n",
+ " ('capital',\n",
+ " 'one of the large alphabetic characters used as the first letter in writing or printing proper names and sometimes for emphasis'),\n",
+ " ('capital letter',\n",
+ " 'one of the large alphabetic characters used as the first letter in writing or printing proper names and sometimes for emphasis'),\n",
+ " ('upper-case letter',\n",
+ " 'one of the large alphabetic characters used as the first letter in writing or printing proper names and sometimes for emphasis')]},\n",
+ " {'answer': 'upset',\n",
+ " 'hint': 'synonyms for upset',\n",
+ " 'clues': [('overthrow', 'the act of disturbing the mind or body'),\n",
+ " ('turnover', 'the act of upsetting something'),\n",
+ " ('overturn', 'the act of upsetting something'),\n",
+ " ('swage',\n",
+ " 'a tool used to thicken or spread metal (the end of a bar or a rivet etc.) by forging or hammering or swaging'),\n",
+ " ('derangement', 'the act of disturbing the mind or body')]},\n",
+ " {'answer': 'utility',\n",
+ " 'hint': 'synonyms for utility',\n",
+ " 'clues': [('service program',\n",
+ " '(computer science) a program designed for general support of the processes of a computer'),\n",
+ " ('utility program',\n",
+ " '(computer science) a program designed for general support of the processes of a computer'),\n",
+ " ('usefulness', 'the quality of being of practical use'),\n",
+ " ('public-service corporation',\n",
+ " 'a company that performs a public service; subject to government regulation'),\n",
+ " ('public utility',\n",
+ " 'a company that performs a public service; subject to government regulation'),\n",
+ " ('public utility company',\n",
+ " 'a company that performs a public service; subject to government regulation')]},\n",
+ " {'answer': 'v',\n",
+ " 'hint': 'synonyms for v',\n",
+ " 'clues': [('5', 'the cardinal number that is the sum of four and one'),\n",
+ " ('quintet', 'the cardinal number that is the sum of four and one'),\n",
+ " ('pentad', 'the cardinal number that is the sum of four and one'),\n",
+ " ('quint', 'the cardinal number that is the sum of four and one'),\n",
+ " ('five', 'the cardinal number that is the sum of four and one'),\n",
+ " ('fin', 'the cardinal number that is the sum of four and one'),\n",
+ " ('cinque', 'the cardinal number that is the sum of four and one'),\n",
+ " ('quintuplet', 'the cardinal number that is the sum of four and one'),\n",
+ " ('fivesome', 'the cardinal number that is the sum of four and one'),\n",
+ " ('vanadium',\n",
+ " 'a soft silvery white toxic metallic element used in steel alloys; it occurs in several complex minerals including carnotite and vanadinite'),\n",
+ " ('volt',\n",
+ " 'a unit of potential equal to the potential difference between two points on a conductor carrying a current of 1 ampere when the power dissipated between the two points is 1 watt; equivalent to the potential difference across a resistance of 1 ohm when 1 ampere of current flows through it'),\n",
+ " ('atomic number 23',\n",
+ " 'a soft silvery white toxic metallic element used in steel alloys; it occurs in several complex minerals including carnotite and vanadinite')]},\n",
+ " {'answer': 'variant',\n",
+ " 'hint': 'synonyms for variant',\n",
+ " 'clues': [('form',\n",
+ " '(biology) a group of organisms within a species that differ in trivial ways from similar groups'),\n",
+ " ('version', 'something a little different from others of the same type'),\n",
+ " ('var.',\n",
+ " '(biology) a group of organisms within a species that differ in trivial ways from similar groups'),\n",
+ " ('chance variable', 'a variable quantity that is random'),\n",
+ " ('stochastic variable', 'a variable quantity that is random'),\n",
+ " ('variation',\n",
+ " 'something a little different from others of the same type'),\n",
+ " ('discrepancy', 'an event that departs from expectations'),\n",
+ " ('variance', 'an event that departs from expectations'),\n",
+ " ('edition', 'something a little different from others of the same type'),\n",
+ " ('variate', 'a variable quantity that is random'),\n",
+ " ('strain',\n",
+ " '(biology) a group of organisms within a species that differ in trivial ways from similar groups'),\n",
+ " ('random variable', 'a variable quantity that is random')]},\n",
+ " {'answer': 'vernacular',\n",
+ " 'hint': 'synonyms for vernacular',\n",
+ " 'clues': [('lingo',\n",
+ " 'a characteristic language of a particular group (as among thieves)'),\n",
+ " ('patois',\n",
+ " 'a characteristic language of a particular group (as among thieves)'),\n",
+ " ('slang',\n",
+ " 'a characteristic language of a particular group (as among thieves)'),\n",
+ " ('argot',\n",
+ " 'a characteristic language of a particular group (as among thieves)'),\n",
+ " ('cant',\n",
+ " 'a characteristic language of a particular group (as among thieves)'),\n",
+ " ('jargon',\n",
+ " 'a characteristic language of a particular group (as among thieves)')]},\n",
+ " {'answer': 'vi',\n",
+ " 'hint': 'synonyms for vi',\n",
+ " 'clues': [('hexad', 'the cardinal number that is the sum of five and one'),\n",
+ " ('sextuplet', 'the cardinal number that is the sum of five and one'),\n",
+ " ('6', 'the cardinal number that is the sum of five and one'),\n",
+ " ('half a dozen', 'the cardinal number that is the sum of five and one'),\n",
+ " ('sise', 'the cardinal number that is the sum of five and one'),\n",
+ " ('sextet', 'the cardinal number that is the sum of five and one'),\n",
+ " ('sixer', 'the cardinal number that is the sum of five and one'),\n",
+ " ('six', 'the cardinal number that is the sum of five and one'),\n",
+ " ('sestet', 'the cardinal number that is the sum of five and one')]},\n",
+ " {'answer': 'vii',\n",
+ " 'hint': 'synonyms for vii',\n",
+ " 'clues': [('7', 'the cardinal number that is the sum of six and one'),\n",
+ " ('septet', 'the cardinal number that is the sum of six and one'),\n",
+ " ('septenary', 'the cardinal number that is the sum of six and one'),\n",
+ " ('heptad', 'the cardinal number that is the sum of six and one'),\n",
+ " ('seven', 'the cardinal number that is the sum of six and one'),\n",
+ " ('sevener', 'the cardinal number that is the sum of six and one')]},\n",
+ " {'answer': 'viii',\n",
+ " 'hint': 'synonyms for viii',\n",
+ " 'clues': [('8', 'the cardinal number that is the sum of seven and one'),\n",
+ " ('ogdoad', 'the cardinal number that is the sum of seven and one'),\n",
+ " ('octet', 'the cardinal number that is the sum of seven and one'),\n",
+ " ('eighter from Decatur',\n",
+ " 'the cardinal number that is the sum of seven and one'),\n",
+ " ('eight', 'the cardinal number that is the sum of seven and one'),\n",
+ " ('octad', 'the cardinal number that is the sum of seven and one'),\n",
+ " ('eighter', 'the cardinal number that is the sum of seven and one'),\n",
+ " ('octonary', 'the cardinal number that is the sum of seven and one')]},\n",
+ " {'answer': 'volute',\n",
+ " 'hint': 'synonyms for volute',\n",
+ " 'clues': [('spiral',\n",
+ " 'a structure consisting of something wound in a continuous series of loops'),\n",
+ " ('whorl',\n",
+ " 'a structure consisting of something wound in a continuous series of loops'),\n",
+ " ('helix',\n",
+ " 'a structure consisting of something wound in a continuous series of loops'),\n",
+ " ('coil',\n",
+ " 'a structure consisting of something wound in a continuous series of loops')]},\n",
+ " {'answer': 'walloping',\n",
+ " 'hint': 'synonyms for walloping',\n",
+ " 'clues': [('slaughter', 'a sound defeat'),\n",
+ " ('trouncing', 'a sound defeat'),\n",
+ " ('thrashing', 'a sound defeat'),\n",
+ " ('whipping', 'a sound defeat'),\n",
+ " ('debacle', 'a sound defeat'),\n",
+ " ('drubbing', 'a sound defeat')]},\n",
+ " {'answer': 'waste',\n",
+ " 'hint': 'synonyms for waste',\n",
+ " 'clues': [('thriftlessness', 'the trait of wasting resources'),\n",
+ " ('barren', 'an uninhabited wilderness that is worthless for cultivation'),\n",
+ " ('dissipation',\n",
+ " 'useless or profitless activity; using or expending or consuming thoughtlessly or carelessly'),\n",
+ " ('permissive waste',\n",
+ " '(law) reduction in the value of an estate caused by act or neglect'),\n",
+ " ('wastefulness', 'the trait of wasting resources'),\n",
+ " ('waste product',\n",
+ " 'any materials unused and rejected as worthless or unwanted'),\n",
+ " ('waste matter',\n",
+ " 'any materials unused and rejected as worthless or unwanted'),\n",
+ " ('waste material',\n",
+ " 'any materials unused and rejected as worthless or unwanted'),\n",
+ " ('wasteland',\n",
+ " 'an uninhabited wilderness that is worthless for cultivation')]},\n",
+ " {'answer': 'wearable',\n",
+ " 'hint': 'synonyms for wearable',\n",
+ " 'clues': [('vesture', \"a covering designed to be worn on a person's body\"),\n",
+ " ('article of clothing',\n",
+ " \"a covering designed to be worn on a person's body\"),\n",
+ " ('clothing', \"a covering designed to be worn on a person's body\"),\n",
+ " ('habiliment', \"a covering designed to be worn on a person's body\"),\n",
+ " ('wear', \"a covering designed to be worn on a person's body\")]},\n",
+ " {'answer': 'wearing',\n",
+ " 'hint': 'synonyms for wearing',\n",
+ " 'clues': [('eroding',\n",
+ " '(geology) the mechanical process of wearing or grinding something down (as by particles washing over it)'),\n",
+ " ('eating away',\n",
+ " '(geology) the mechanical process of wearing or grinding something down (as by particles washing over it)'),\n",
+ " ('wear', 'the act of having on your person as a covering or adornment'),\n",
+ " ('erosion',\n",
+ " '(geology) the mechanical process of wearing or grinding something down (as by particles washing over it)')]},\n",
+ " {'answer': 'whacking',\n",
+ " 'hint': 'synonyms for whacking',\n",
+ " 'clues': [('beating',\n",
+ " 'the act of inflicting corporal punishment with repeated blows'),\n",
+ " ('licking',\n",
+ " 'the act of inflicting corporal punishment with repeated blows'),\n",
+ " ('drubbing',\n",
+ " 'the act of inflicting corporal punishment with repeated blows'),\n",
+ " ('lacing',\n",
+ " 'the act of inflicting corporal punishment with repeated blows'),\n",
+ " ('trouncing',\n",
+ " 'the act of inflicting corporal punishment with repeated blows'),\n",
+ " ('thrashing',\n",
+ " 'the act of inflicting corporal punishment with repeated blows')]},\n",
+ " {'answer': 'whipping',\n",
+ " 'hint': 'synonyms for whipping',\n",
+ " 'clues': [('debacle', 'a sound defeat'),\n",
+ " ('walloping', 'a sound defeat'),\n",
+ " ('whipstitch', 'a sewing stitch passing over an edge diagonally'),\n",
+ " ('slaughter', 'a sound defeat'),\n",
+ " ('trouncing', 'a sound defeat'),\n",
+ " ('thrashing', 'a sound defeat'),\n",
+ " ('beating', 'the act of overcoming or outdoing'),\n",
+ " ('flogging',\n",
+ " 'beating with a whip or strap or rope as a form of punishment'),\n",
+ " ('lashing',\n",
+ " 'beating with a whip or strap or rope as a form of punishment'),\n",
+ " ('tanning',\n",
+ " 'beating with a whip or strap or rope as a form of punishment'),\n",
+ " ('flagellation',\n",
+ " 'beating with a whip or strap or rope as a form of punishment'),\n",
+ " ('drubbing', 'a sound defeat')]},\n",
+ " {'answer': 'whispering',\n",
+ " 'hint': 'synonyms for whispering',\n",
+ " 'clues': [('whisper',\n",
+ " 'a light noise, like the noise of silk clothing or leaves blowing in the wind'),\n",
+ " ('rustling',\n",
+ " 'a light noise, like the noise of silk clothing or leaves blowing in the wind'),\n",
+ " ('rustle',\n",
+ " 'a light noise, like the noise of silk clothing or leaves blowing in the wind'),\n",
+ " ('voicelessness', 'speaking softly without vibration of the vocal cords'),\n",
+ " ('susurration', 'speaking softly without vibration of the vocal cords')]},\n",
+ " {'answer': 'white',\n",
+ " 'hint': 'synonyms for white',\n",
+ " 'clues': [('albumen',\n",
+ " 'the white part of an egg; the nutritive and protective gelatinous substance surrounding the yolk consisting mainly of albumin dissolved in water'),\n",
+ " ('egg white',\n",
+ " 'the white part of an egg; the nutritive and protective gelatinous substance surrounding the yolk consisting mainly of albumin dissolved in water'),\n",
+ " ('flannel',\n",
+ " '(usually in the plural) trousers made of flannel or gabardine or tweed or white cloth'),\n",
+ " ('gabardine',\n",
+ " '(usually in the plural) trousers made of flannel or gabardine or tweed or white cloth'),\n",
+ " ('tweed',\n",
+ " '(usually in the plural) trousers made of flannel or gabardine or tweed or white cloth'),\n",
+ " ('whiteness',\n",
+ " 'the quality or state of the achromatic color of greatest lightness (bearing the least resemblance to black)'),\n",
+ " ('ovalbumin',\n",
+ " 'the white part of an egg; the nutritive and protective gelatinous substance surrounding the yolk consisting mainly of albumin dissolved in water')]},\n",
+ " {'answer': 'windup',\n",
+ " 'hint': 'synonyms for windup',\n",
+ " 'clues': [('culmination', 'a concluding action'),\n",
+ " ('mop up', 'a concluding action'),\n",
+ " ('completion', 'a concluding action'),\n",
+ " ('closing', 'a concluding action')]},\n",
+ " {'answer': 'winking',\n",
+ " 'hint': 'synonyms for winking',\n",
+ " 'clues': [('wink', 'a reflex that closes and opens the eyes rapidly'),\n",
+ " ('nictation', 'a reflex that closes and opens the eyes rapidly'),\n",
+ " ('blink', 'a reflex that closes and opens the eyes rapidly'),\n",
+ " ('eye blink', 'a reflex that closes and opens the eyes rapidly')]},\n",
+ " {'answer': 'wireless',\n",
+ " 'hint': 'synonyms for wireless',\n",
+ " 'clues': [('radio', 'medium for communication'),\n",
+ " ('receiving set',\n",
+ " 'an electronic receiver that detects and demodulates and amplifies transmitted signals'),\n",
+ " ('radiocommunication', 'medium for communication'),\n",
+ " ('radio receiver',\n",
+ " 'an electronic receiver that detects and demodulates and amplifies transmitted signals'),\n",
+ " ('tuner',\n",
+ " 'an electronic receiver that detects and demodulates and amplifies transmitted signals'),\n",
+ " ('radio set',\n",
+ " 'an electronic receiver that detects and demodulates and amplifies transmitted signals')]},\n",
+ " {'answer': 'world',\n",
+ " 'hint': 'synonyms for world',\n",
+ " 'clues': [('reality',\n",
+ " 'all of your experiences that determine how things appear to you'),\n",
+ " ('earthly concern',\n",
+ " 'the concerns of this life as distinguished from heaven and the afterlife'),\n",
+ " ('populace', 'people in general considered as a whole'),\n",
+ " ('existence', 'everything that exists anywhere'),\n",
+ " ('worldly concern',\n",
+ " 'the concerns of this life as distinguished from heaven and the afterlife'),\n",
+ " ('macrocosm', 'everything that exists anywhere'),\n",
+ " ('earth', 'the 3rd planet from the sun; the planet we live on'),\n",
+ " ('public', 'people in general considered as a whole'),\n",
+ " ('domain',\n",
+ " 'people in general; especially a distinctive group of people with some shared interest'),\n",
+ " ('cosmos', 'everything that exists anywhere'),\n",
+ " ('globe', 'the 3rd planet from the sun; the planet we live on'),\n",
+ " ('universe', 'everything that exists anywhere'),\n",
+ " ('creation', 'everything that exists anywhere')]},\n",
+ " {'answer': 'x',\n",
+ " 'hint': 'synonyms for x',\n",
+ " 'clues': [('disco biscuit',\n",
+ " 'street names for methylenedioxymethamphetamine'),\n",
+ " ('tenner',\n",
+ " 'the cardinal number that is the sum of nine and one; the base of the decimal system'),\n",
+ " ('decade',\n",
+ " 'the cardinal number that is the sum of nine and one; the base of the decimal system'),\n",
+ " ('ten',\n",
+ " 'the cardinal number that is the sum of nine and one; the base of the decimal system'),\n",
+ " ('cristal', 'street names for methylenedioxymethamphetamine'),\n",
+ " ('hug drug', 'street names for methylenedioxymethamphetamine'),\n",
+ " ('10',\n",
+ " 'the cardinal number that is the sum of nine and one; the base of the decimal system'),\n",
+ " ('ex', 'the 24th letter of the Roman alphabet'),\n",
+ " ('ecstasy', 'street names for methylenedioxymethamphetamine'),\n",
+ " ('go', 'street names for methylenedioxymethamphetamine')]},\n",
+ " {'answer': 'xiii',\n",
+ " 'hint': 'synonyms for xiii',\n",
+ " 'clues': [('thirteen',\n",
+ " 'the cardinal number that is the sum of twelve and one'),\n",
+ " (\"baker's dozen\",\n",
+ " 'the cardinal number that is the sum of twelve and one'),\n",
+ " ('long dozen', 'the cardinal number that is the sum of twelve and one'),\n",
+ " ('13', 'the cardinal number that is the sum of twelve and one')]},\n",
+ " {'answer': 'yielding',\n",
+ " 'hint': 'synonyms for yielding',\n",
+ " 'clues': [('surrender', 'a verbal act of admitting defeat'),\n",
+ " ('conceding', 'the act of conceding or yielding'),\n",
+ " ('giving up', 'a verbal act of admitting defeat'),\n",
+ " ('concession', 'the act of conceding or yielding')]},\n",
+ " {'answer': 'zero',\n",
+ " 'hint': 'synonyms for zero',\n",
+ " 'clues': [('null', 'a quantity of no importance'),\n",
+ " ('cipher',\n",
+ " 'a mathematical element that when added to another number yields the same number'),\n",
+ " ('nada', 'a quantity of no importance'),\n",
+ " ('zippo', 'a quantity of no importance'),\n",
+ " ('zilch', 'a quantity of no importance'),\n",
+ " ('nought',\n",
+ " 'a mathematical element that when added to another number yields the same number'),\n",
+ " ('cypher', 'a quantity of no importance'),\n",
+ " ('aught', 'a quantity of no importance'),\n",
+ " ('nix', 'a quantity of no importance'),\n",
+ " ('goose egg', 'a quantity of no importance'),\n",
+ " ('zip', 'a quantity of no importance'),\n",
+ " ('0',\n",
+ " 'a mathematical element that when added to another number yields the same number'),\n",
+ " ('zero point',\n",
+ " 'the point on a scale from which positive or negative numerical quantities can be measured'),\n",
+ " ('nil', 'a quantity of no importance'),\n",
+ " ('nothing', 'a quantity of no importance')]},\n",
+ " {'answer': 'as',\n",
+ " 'hint': 'synonyms for as',\n",
+ " 'clues': [('axerophthol',\n",
+ " 'any of several fat-soluble vitamins essential for normal vision; prevents night blindness or inflammation or dryness of the eyes'),\n",
+ " ('angstrom',\n",
+ " 'a metric unit of length equal to one ten billionth of a meter (or 0.0001 micron); used to specify wavelengths of electromagnetic radiation'),\n",
+ " ('adenine',\n",
+ " '(biochemistry) purine base found in DNA and RNA; pairs with thymine in DNA and with uracil in RNA'),\n",
+ " ('arsenic',\n",
+ " 'a very poisonous metallic element that has three allotropic forms; arsenic and arsenic compounds are used as herbicides and insecticides and various alloys; found in arsenopyrite and orpiment and realgar'),\n",
+ " ('deoxyadenosine monophosphate',\n",
+ " 'one of the four nucleotides used in building DNA; all four nucleotides have a common phosphate group and a sugar (ribose)'),\n",
+ " ('amp',\n",
+ " \"the basic unit of electric current adopted under the Systeme International d'Unites\"),\n",
+ " ('atomic number 33',\n",
+ " 'a very poisonous metallic element that has three allotropic forms; arsenic and arsenic compounds are used as herbicides and insecticides and various alloys; found in arsenopyrite and orpiment and realgar'),\n",
+ " ('angstrom unit',\n",
+ " 'a metric unit of length equal to one ten billionth of a meter (or 0.0001 micron); used to specify wavelengths of electromagnetic radiation'),\n",
+ " ('vitamin A',\n",
+ " 'any of several fat-soluble vitamins essential for normal vision; prevents night blindness or inflammation or dryness of the eyes'),\n",
+ " ('a', 'the 1st letter of the Roman alphabet'),\n",
+ " ('ampere',\n",
+ " \"the basic unit of electric current adopted under the Systeme International d'Unites\"),\n",
+ " ('antiophthalmic factor',\n",
+ " 'any of several fat-soluble vitamins essential for normal vision; prevents night blindness or inflammation or dryness of the eyes')]},\n",
+ " {'answer': 'aside',\n",
+ " 'hint': 'synonyms for aside',\n",
+ " 'clues': [('divagation', 'a message that departs from the main subject'),\n",
+ " ('parenthesis', 'a message that departs from the main subject'),\n",
+ " ('excursus', 'a message that departs from the main subject'),\n",
+ " ('digression', 'a message that departs from the main subject')]},\n",
+ " {'answer': 'bang',\n",
+ " 'hint': 'synonyms for bang',\n",
+ " 'clues': [('boot', 'the swift release of a store of affective force'),\n",
+ " ('smash', 'a conspicuous success'),\n",
+ " ('blast', 'a sudden very loud noise'),\n",
+ " ('bash', 'a vigorous blow'),\n",
+ " ('eruption', 'a sudden very loud noise'),\n",
+ " ('clap', 'a sudden very loud noise'),\n",
+ " ('rush', 'the swift release of a store of affective force'),\n",
+ " ('smasher', 'a conspicuous success'),\n",
+ " ('hit', 'a conspicuous success'),\n",
+ " ('bam', 'a sudden very loud noise'),\n",
+ " ('kick', 'the swift release of a store of affective force'),\n",
+ " ('belt', 'a vigorous blow'),\n",
+ " ('charge', 'the swift release of a store of affective force'),\n",
+ " ('strike', 'a conspicuous success'),\n",
+ " ('flush', 'the swift release of a store of affective force'),\n",
+ " ('thrill', 'the swift release of a store of affective force'),\n",
+ " ('knock', 'a vigorous blow')]},\n",
+ " {'answer': 'bolt',\n",
+ " 'hint': 'synonyms for bolt',\n",
+ " 'clues': [('dash', 'the act of moving with great haste'),\n",
+ " ('bolt of lightning', 'a discharge of lightning accompanied by thunder'),\n",
+ " ('deadbolt',\n",
+ " 'the part of a lock that is engaged or withdrawn with a key'),\n",
+ " ('thunderbolt', 'a discharge of lightning accompanied by thunder')]},\n",
+ " {'answer': 'con',\n",
+ " 'hint': 'synonyms for con',\n",
+ " 'clues': [('bunko',\n",
+ " 'a swindle in which you cheat at gambling or persuade a person to buy worthless property'),\n",
+ " ('confidence trick',\n",
+ " 'a swindle in which you cheat at gambling or persuade a person to buy worthless property'),\n",
+ " ('hustle',\n",
+ " 'a swindle in which you cheat at gambling or persuade a person to buy worthless property'),\n",
+ " ('gyp',\n",
+ " 'a swindle in which you cheat at gambling or persuade a person to buy worthless property'),\n",
+ " ('bunco',\n",
+ " 'a swindle in which you cheat at gambling or persuade a person to buy worthless property'),\n",
+ " ('con game',\n",
+ " 'a swindle in which you cheat at gambling or persuade a person to buy worthless property'),\n",
+ " ('confidence game',\n",
+ " 'a swindle in which you cheat at gambling or persuade a person to buy worthless property'),\n",
+ " ('bunco game',\n",
+ " 'a swindle in which you cheat at gambling or persuade a person to buy worthless property'),\n",
+ " ('sting',\n",
+ " 'a swindle in which you cheat at gambling or persuade a person to buy worthless property'),\n",
+ " ('flimflam',\n",
+ " 'a swindle in which you cheat at gambling or persuade a person to buy worthless property')]},\n",
+ " {'answer': 'course',\n",
+ " 'hint': 'synonyms for course',\n",
+ " 'clues': [('class', 'a body of students who are taught together'),\n",
+ " ('course of study',\n",
+ " 'education imparted in a series of lessons or meetings'),\n",
+ " ('track', 'a line or route along which something travels or moves'),\n",
+ " ('course of action', 'a mode of action'),\n",
+ " ('row', '(construction) a layer of masonry'),\n",
+ " ('line', 'a connected series of events or actions or developments'),\n",
+ " ('form', 'a body of students who are taught together'),\n",
+ " ('grade', 'a body of students who are taught together'),\n",
+ " ('trend', 'general line of orientation'),\n",
+ " ('path', 'a line or route along which something travels or moves'),\n",
+ " ('course of instruction',\n",
+ " 'education imparted in a series of lessons or meetings')]},\n",
+ " {'answer': 'crossways',\n",
+ " 'hint': 'synonyms for crossways',\n",
+ " 'clues': [('carrefour',\n",
+ " 'a junction where one street or road crosses another'),\n",
+ " ('intersection', 'a junction where one street or road crosses another'),\n",
+ " ('crossing', 'a junction where one street or road crosses another'),\n",
+ " ('crossroad', 'a junction where one street or road crosses another'),\n",
+ " ('crossway', 'a junction where one street or road crosses another')]},\n",
+ " {'answer': 'flop',\n",
+ " 'hint': 'synonyms for flop',\n",
+ " 'clues': [('collapse', 'the act of throwing yourself down'),\n",
+ " ('floating-point operation',\n",
+ " 'an arithmetic operation performed on floating-point numbers'),\n",
+ " ('fizzle', 'a complete failure'),\n",
+ " ('bust', 'a complete failure')]},\n",
+ " {'answer': 'heaps',\n",
+ " 'hint': 'synonyms for heaps',\n",
+ " 'clues': [('flock',\n",
+ " \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('wad', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('mess', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('rafts', 'a large number or amount'),\n",
+ " ('piles', 'a large number or amount'),\n",
+ " ('good deal',\n",
+ " \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('sight', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('great deal',\n",
+ " \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('muckle', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('slew', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('scores', 'a large number or amount'),\n",
+ " ('cumulation', 'a collection of objects laid on top of each other'),\n",
+ " ('deal', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('oodles', 'a large number or amount'),\n",
+ " ('pot', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('tidy sum',\n",
+ " \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('bus', 'a car that is old and unreliable'),\n",
+ " ('scads', 'a large number or amount'),\n",
+ " ('tons', 'a large number or amount'),\n",
+ " ('stacks', 'a large number or amount'),\n",
+ " ('loads', 'a large number or amount'),\n",
+ " ('mass', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('batch', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('mountain',\n",
+ " \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('jalopy', 'a car that is old and unreliable'),\n",
+ " ('mickle', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('heap', 'a collection of objects laid on top of each other'),\n",
+ " ('dozens', 'a large number or amount'),\n",
+ " ('spate', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('quite a little',\n",
+ " \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('lots', 'a large number or amount'),\n",
+ " ('lashings', 'a large number or amount'),\n",
+ " ('gobs', 'a large number or amount'),\n",
+ " ('passel', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('plenty', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('agglomerate', 'a collection of objects laid on top of each other'),\n",
+ " ('cumulus', 'a collection of objects laid on top of each other'),\n",
+ " ('mound', 'a collection of objects laid on top of each other'),\n",
+ " ('mint', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('hatful', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('peck', \"(often followed by `of') a large number or amount or extent\")]},\n",
+ " {'answer': 'heart_and_soul',\n",
+ " 'hint': 'synonyms for heart and soul',\n",
+ " 'clues': [('kernel',\n",
+ " 'the choicest or most essential or most vital part of some idea or experience'),\n",
+ " ('substance',\n",
+ " 'the choicest or most essential or most vital part of some idea or experience'),\n",
+ " ('nub',\n",
+ " 'the choicest or most essential or most vital part of some idea or experience'),\n",
+ " ('center',\n",
+ " 'the choicest or most essential or most vital part of some idea or experience'),\n",
+ " ('sum',\n",
+ " 'the choicest or most essential or most vital part of some idea or experience'),\n",
+ " ('pith',\n",
+ " 'the choicest or most essential or most vital part of some idea or experience'),\n",
+ " ('meat',\n",
+ " 'the choicest or most essential or most vital part of some idea or experience'),\n",
+ " ('gist',\n",
+ " 'the choicest or most essential or most vital part of some idea or experience'),\n",
+ " ('heart',\n",
+ " 'the choicest or most essential or most vital part of some idea or experience'),\n",
+ " ('nitty-gritty',\n",
+ " 'the choicest or most essential or most vital part of some idea or experience'),\n",
+ " ('essence',\n",
+ " 'the choicest or most essential or most vital part of some idea or experience'),\n",
+ " ('inwardness',\n",
+ " 'the choicest or most essential or most vital part of some idea or experience'),\n",
+ " ('marrow',\n",
+ " 'the choicest or most essential or most vital part of some idea or experience'),\n",
+ " ('core',\n",
+ " 'the choicest or most essential or most vital part of some idea or experience'),\n",
+ " ('centre',\n",
+ " 'the choicest or most essential or most vital part of some idea or experience')]},\n",
+ " {'answer': 'hereafter',\n",
+ " 'hint': 'synonyms for hereafter',\n",
+ " 'clues': [('afterlife', 'life after death'),\n",
+ " ('futurity', 'the time yet to come'),\n",
+ " ('future', 'the time yet to come'),\n",
+ " ('time to come', 'the time yet to come')]},\n",
+ " {'answer': 'item',\n",
+ " 'hint': 'synonyms for item',\n",
+ " 'clues': [('detail',\n",
+ " 'a small part that can be considered separately from the whole'),\n",
+ " ('token', 'an individual instance of a type of symbol'),\n",
+ " ('point',\n",
+ " 'a distinct part that can be specified separately in a group of things that could be enumerated on a list'),\n",
+ " ('particular',\n",
+ " 'a small part that can be considered separately from the whole')]},\n",
+ " {'answer': 'lots',\n",
+ " 'hint': 'synonyms for lots',\n",
+ " 'clues': [('lot', 'a parcel of land having fixed boundaries'),\n",
+ " ('heaps', 'a large number or amount'),\n",
+ " ('flock', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('wad', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('mess', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('rafts', 'a large number or amount'),\n",
+ " ('piles', 'a large number or amount'),\n",
+ " ('good deal',\n",
+ " \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('sight', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('great deal',\n",
+ " \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('muckle', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('slew', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('scores', 'a large number or amount'),\n",
+ " ('band', 'an unofficial association of people or groups'),\n",
+ " ('deal', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('oodles', 'a large number or amount'),\n",
+ " ('pot', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('tidy sum',\n",
+ " \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('bunch', 'any collection in its entirety'),\n",
+ " ('scads', 'a large number or amount'),\n",
+ " ('tons', 'a large number or amount'),\n",
+ " ('stacks', 'a large number or amount'),\n",
+ " ('draw', 'anything (straws or pebbles etc.) taken or chosen at random'),\n",
+ " ('loads', 'a large number or amount'),\n",
+ " ('mass', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('batch', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('mountain',\n",
+ " \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('mickle', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('caboodle', 'any collection in its entirety'),\n",
+ " ('dozens', 'a large number or amount'),\n",
+ " ('spate', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('circle', 'an unofficial association of people or groups'),\n",
+ " ('set', 'an unofficial association of people or groups'),\n",
+ " ('quite a little',\n",
+ " \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('gobs', 'a large number or amount'),\n",
+ " ('lashings', 'a large number or amount'),\n",
+ " ('passel', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('plenty', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('mint', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('hatful', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('peck', \"(often followed by `of') a large number or amount or extent\")]},\n",
+ " {'answer': 'needs',\n",
+ " 'hint': 'synonyms for needs',\n",
+ " 'clues': [('motive',\n",
+ " 'the psychological feature that arouses an organism to action toward a desired goal; the reason for the action; that which gives purpose and direction to behavior'),\n",
+ " ('need', 'anything that is necessary but lacking'),\n",
+ " ('want', 'anything that is necessary but lacking'),\n",
+ " ('motivation',\n",
+ " 'the psychological feature that arouses an organism to action toward a desired goal; the reason for the action; that which gives purpose and direction to behavior')]},\n",
+ " {'answer': 'nothing',\n",
+ " 'hint': 'synonyms for nothing',\n",
+ " 'clues': [('null', 'a quantity of no importance'),\n",
+ " ('nada', 'a quantity of no importance'),\n",
+ " ('zippo', 'a quantity of no importance'),\n",
+ " ('zilch', 'a quantity of no importance'),\n",
+ " ('cypher', 'a quantity of no importance'),\n",
+ " ('aught', 'a quantity of no importance'),\n",
+ " ('nix', 'a quantity of no importance'),\n",
+ " ('goose egg', 'a quantity of no importance'),\n",
+ " ('cipher', 'a quantity of no importance'),\n",
+ " ('zero', 'a quantity of no importance'),\n",
+ " ('nil', 'a quantity of no importance'),\n",
+ " ('zip', 'a quantity of no importance')]},\n",
+ " {'answer': 'part',\n",
+ " 'hint': 'synonyms for part',\n",
+ " 'clues': [('share',\n",
+ " 'the part played by a person in bringing about a result'),\n",
+ " ('component part',\n",
+ " 'something determined in relation to something that includes it'),\n",
+ " ('percentage',\n",
+ " 'assets belonging to or due to or contributed by an individual person or group'),\n",
+ " ('constituent',\n",
+ " 'something determined in relation to something that includes it'),\n",
+ " ('character', \"an actor's portrayal of someone in a play\"),\n",
+ " ('portion',\n",
+ " 'assets belonging to or due to or contributed by an individual person or group'),\n",
+ " ('role',\n",
+ " 'the actions and activities assigned to or required or expected of a person or group'),\n",
+ " ('office',\n",
+ " 'the actions and activities assigned to or required or expected of a person or group'),\n",
+ " ('contribution',\n",
+ " 'the part played by a person in bringing about a result'),\n",
+ " ('function',\n",
+ " 'the actions and activities assigned to or required or expected of a person or group'),\n",
+ " ('theatrical role', \"an actor's portrayal of someone in a play\"),\n",
+ " ('division',\n",
+ " 'one of the portions into which something is regarded as divided and which together constitute a whole'),\n",
+ " ('voice',\n",
+ " 'the melody carried by a particular voice or instrument in polyphonic music'),\n",
+ " ('component',\n",
+ " 'something determined in relation to something that includes it'),\n",
+ " ('region', 'the extended spatial location of something'),\n",
+ " ('section',\n",
+ " 'one of the portions into which something is regarded as divided and which together constitute a whole'),\n",
+ " ('piece', 'a portion of a natural object'),\n",
+ " ('persona', \"an actor's portrayal of someone in a play\")]},\n",
+ " {'answer': 'plenty',\n",
+ " 'hint': 'synonyms for plenty',\n",
+ " 'clues': [('pile',\n",
+ " \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('flock', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('wad', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('mass', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('mess', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('good deal',\n",
+ " \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('sight', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('batch', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('mountain',\n",
+ " \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('great deal',\n",
+ " \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('stack', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('muckle', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('plenteousness', 'a full supply'),\n",
+ " ('slew', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('mickle', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('spate', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('plentifulness', 'a full supply'),\n",
+ " ('deal', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('heap', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('quite a little',\n",
+ " \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('passel', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('plenitude', 'a full supply'),\n",
+ " ('pot', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('tidy sum',\n",
+ " \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('mint', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('lot', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('hatful', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('raft', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('peck', \"(often followed by `of') a large number or amount or extent\")]},\n",
+ " {'answer': 'smack',\n",
+ " 'hint': 'synonyms for smack',\n",
+ " 'clues': [('flavour',\n",
+ " 'the taste experience when a savoury condiment is taken into the mouth'),\n",
+ " ('thunder', 'street names for heroin'),\n",
+ " ('slap', 'a blow from a flat object (as an open hand)'),\n",
+ " ('smacking',\n",
+ " 'the act of smacking something; a blow delivered with an open hand'),\n",
+ " ('scag', 'street names for heroin'),\n",
+ " ('savour',\n",
+ " 'the taste experience when a savoury condiment is taken into the mouth'),\n",
+ " ('skag', 'street names for heroin'),\n",
+ " ('big H', 'street names for heroin'),\n",
+ " ('tang',\n",
+ " 'the taste experience when a savoury condiment is taken into the mouth'),\n",
+ " ('relish',\n",
+ " 'the taste experience when a savoury condiment is taken into the mouth'),\n",
+ " ('nip',\n",
+ " 'the taste experience when a savoury condiment is taken into the mouth'),\n",
+ " ('hell dust', 'street names for heroin'),\n",
+ " ('nose drops', 'street names for heroin'),\n",
+ " ('sapidity',\n",
+ " 'the taste experience when a savoury condiment is taken into the mouth'),\n",
+ " ('smooch', 'an enthusiastic kiss')]},\n",
+ " {'answer': 'smash',\n",
+ " 'hint': 'synonyms for smash',\n",
+ " 'clues': [('bang', 'a conspicuous success'),\n",
+ " ('smash-up', 'a serious collision (especially of motor vehicles)'),\n",
+ " ('smasher', 'a conspicuous success'),\n",
+ " ('bash', 'a vigorous blow'),\n",
+ " ('hit', 'a conspicuous success'),\n",
+ " ('crash', 'the act of colliding with something'),\n",
+ " ('strike', 'a conspicuous success'),\n",
+ " ('belt', 'a vigorous blow'),\n",
+ " ('overhead', 'a hard return hitting the tennis ball above your head'),\n",
+ " ('knock', 'a vigorous blow')]},\n",
+ " {'answer': 'soaking',\n",
+ " 'hint': 'synonyms for soaking',\n",
+ " 'clues': [('soakage',\n",
+ " 'the process of becoming softened and saturated as a consequence of being immersed in water (or other liquid)'),\n",
+ " ('sousing', 'the act of making something completely wet'),\n",
+ " ('soak',\n",
+ " 'the process of becoming softened and saturated as a consequence of being immersed in water (or other liquid)'),\n",
+ " ('souse', 'the act of making something completely wet'),\n",
+ " ('drenching', 'the act of making something completely wet')]},\n",
+ " {'answer': 'vis-a-vis',\n",
+ " 'hint': 'synonyms for vis-a-vis',\n",
+ " 'clues': [('loveseat', 'small sofa that seats two people'),\n",
+ " ('tete-a-tete', 'small sofa that seats two people'),\n",
+ " ('counterpart',\n",
+ " 'a person or thing having the same function or characteristics as another'),\n",
+ " ('opposite number',\n",
+ " 'a person or thing having the same function or characteristics as another')]},\n",
+ " {'answer': 'viva_voce',\n",
+ " 'hint': 'synonyms for viva voce',\n",
+ " 'clues': [('oral', 'an examination conducted by spoken communication'),\n",
+ " ('oral exam', 'an examination conducted by spoken communication'),\n",
+ " ('viva', 'an examination conducted by spoken communication'),\n",
+ " ('oral examination',\n",
+ " 'an examination conducted by spoken communication')]},\n",
+ " {'answer': 'way',\n",
+ " 'hint': 'synonyms for way',\n",
+ " 'clues': [('manner', 'how something is done or how it happens'),\n",
+ " ('elbow room', 'space for movement'),\n",
+ " ('means', 'how a result is obtained or an end is achieved'),\n",
+ " ('way of life', 'a course of conduct'),\n",
+ " ('mode', 'how something is done or how it happens'),\n",
+ " ('direction', 'a line leading to a place or point'),\n",
+ " ('path', 'a course of conduct'),\n",
+ " ('fashion', 'how something is done or how it happens'),\n",
+ " ('style', 'how something is done or how it happens'),\n",
+ " ('agency', 'how a result is obtained or an end is achieved'),\n",
+ " ('room', 'space for movement')]},\n",
+ " {'answer': '24-hour_interval',\n",
+ " 'hint': 'synonyms for 24-hour interval',\n",
+ " 'clues': [('twenty-four hour period',\n",
+ " 'time for Earth to make a complete rotation on its axis'),\n",
+ " ('twenty-four hours',\n",
+ " 'time for Earth to make a complete rotation on its axis'),\n",
+ " ('solar day', 'time for Earth to make a complete rotation on its axis'),\n",
+ " ('mean solar day',\n",
+ " 'time for Earth to make a complete rotation on its axis'),\n",
+ " ('day', 'time for Earth to make a complete rotation on its axis')]},\n",
+ " {'answer': 'a',\n",
+ " 'hint': 'synonyms for a',\n",
+ " 'clues': [('axerophthol',\n",
+ " 'any of several fat-soluble vitamins essential for normal vision; prevents night blindness or inflammation or dryness of the eyes'),\n",
+ " ('angstrom',\n",
+ " 'a metric unit of length equal to one ten billionth of a meter (or 0.0001 micron); used to specify wavelengths of electromagnetic radiation'),\n",
+ " ('adenine',\n",
+ " '(biochemistry) purine base found in DNA and RNA; pairs with thymine in DNA and with uracil in RNA'),\n",
+ " ('deoxyadenosine monophosphate',\n",
+ " 'one of the four nucleotides used in building DNA; all four nucleotides have a common phosphate group and a sugar (ribose)'),\n",
+ " ('amp',\n",
+ " \"the basic unit of electric current adopted under the Systeme International d'Unites\"),\n",
+ " ('angstrom unit',\n",
+ " 'a metric unit of length equal to one ten billionth of a meter (or 0.0001 micron); used to specify wavelengths of electromagnetic radiation'),\n",
+ " ('vitamin A',\n",
+ " 'any of several fat-soluble vitamins essential for normal vision; prevents night blindness or inflammation or dryness of the eyes'),\n",
+ " ('ampere',\n",
+ " \"the basic unit of electric current adopted under the Systeme International d'Unites\"),\n",
+ " ('antiophthalmic factor',\n",
+ " 'any of several fat-soluble vitamins essential for normal vision; prevents night blindness or inflammation or dryness of the eyes')]},\n",
+ " {'answer': 'abatement',\n",
+ " 'hint': 'synonyms for abatement',\n",
+ " 'clues': [('hiatus',\n",
+ " 'an interruption in the intensity or amount of something'),\n",
+ " ('suspension', 'an interruption in the intensity or amount of something'),\n",
+ " ('respite', 'an interruption in the intensity or amount of something'),\n",
+ " ('reprieve', 'an interruption in the intensity or amount of something')]},\n",
+ " {'answer': 'abc',\n",
+ " 'hint': 'synonyms for abc',\n",
+ " 'clues': [('alphabet',\n",
+ " 'the elementary stages of any subject (usually plural)'),\n",
+ " ('first rudiment',\n",
+ " 'the elementary stages of any subject (usually plural)'),\n",
+ " ('first principle',\n",
+ " 'the elementary stages of any subject (usually plural)'),\n",
+ " ('rudiment', 'the elementary stages of any subject (usually plural)')]},\n",
+ " {'answer': \"abc's\",\n",
+ " 'hint': \"synonyms for abc's\",\n",
+ " 'clues': [('alphabet',\n",
+ " 'the elementary stages of any subject (usually plural)'),\n",
+ " ('first rudiment',\n",
+ " 'the elementary stages of any subject (usually plural)'),\n",
+ " ('first principle',\n",
+ " 'the elementary stages of any subject (usually plural)'),\n",
+ " ('rudiment', 'the elementary stages of any subject (usually plural)')]},\n",
+ " {'answer': 'abcs',\n",
+ " 'hint': 'synonyms for abcs',\n",
+ " 'clues': [('alphabet',\n",
+ " 'the elementary stages of any subject (usually plural)'),\n",
+ " ('rudiment', 'the elementary stages of any subject (usually plural)'),\n",
+ " ('first principle',\n",
+ " 'the elementary stages of any subject (usually plural)'),\n",
+ " ('first rudiment',\n",
+ " 'the elementary stages of any subject (usually plural)')]},\n",
+ " {'answer': 'abdominal_delivery',\n",
+ " 'hint': 'synonyms for abdominal delivery',\n",
+ " 'clues': [('caesarian delivery',\n",
+ " 'the delivery of a fetus by surgical incision through the abdominal wall and uterus (from the belief that Julius Caesar was born that way)'),\n",
+ " ('caesarean',\n",
+ " 'the delivery of a fetus by surgical incision through the abdominal wall and uterus (from the belief that Julius Caesar was born that way)'),\n",
+ " ('cesarian section',\n",
+ " 'the delivery of a fetus by surgical incision through the abdominal wall and uterus (from the belief that Julius Caesar was born that way)'),\n",
+ " ('cesarian',\n",
+ " 'the delivery of a fetus by surgical incision through the abdominal wall and uterus (from the belief that Julius Caesar was born that way)')]},\n",
+ " {'answer': 'abhorrence',\n",
+ " 'hint': 'synonyms for abhorrence',\n",
+ " 'clues': [('loathing', 'hate coupled with disgust'),\n",
+ " ('execration', 'hate coupled with disgust'),\n",
+ " ('detestation', 'hate coupled with disgust'),\n",
+ " ('odium', 'hate coupled with disgust'),\n",
+ " ('abomination', 'hate coupled with disgust')]},\n",
+ " {'answer': 'abidance',\n",
+ " 'hint': 'synonyms for abidance',\n",
+ " 'clues': [('conformity', 'acting according to certain accepted standards'),\n",
+ " ('residency', 'the act of dwelling in a place'),\n",
+ " ('compliance', 'acting according to certain accepted standards'),\n",
+ " ('conformation', 'acting according to certain accepted standards')]},\n",
+ " {'answer': 'abnegation',\n",
+ " 'hint': 'synonyms for abnegation',\n",
+ " 'clues': [('self-abnegation',\n",
+ " 'renunciation of your own interests in favor of the interests of others'),\n",
+ " ('self-denial',\n",
+ " 'renunciation of your own interests in favor of the interests of others'),\n",
+ " ('self-renunciation',\n",
+ " 'renunciation of your own interests in favor of the interests of others'),\n",
+ " ('denial',\n",
+ " 'renunciation of your own interests in favor of the interests of others')]},\n",
+ " {'answer': 'abode',\n",
+ " 'hint': 'synonyms for abode',\n",
+ " 'clues': [('domicile', 'housing that someone is living in'),\n",
+ " ('home', 'housing that someone is living in'),\n",
+ " ('habitation', 'housing that someone is living in'),\n",
+ " ('dwelling', 'housing that someone is living in'),\n",
+ " ('dwelling house', 'housing that someone is living in'),\n",
+ " ('residence', 'any address at which you dwell more than temporarily')]},\n",
+ " {'answer': 'abomination',\n",
+ " 'hint': 'synonyms for abomination',\n",
+ " 'clues': [('loathing', 'hate coupled with disgust'),\n",
+ " ('execration', 'hate coupled with disgust'),\n",
+ " ('detestation', 'hate coupled with disgust'),\n",
+ " ('odium', 'hate coupled with disgust'),\n",
+ " ('abhorrence', 'hate coupled with disgust')]},\n",
+ " {'answer': 'about-face',\n",
+ " 'hint': 'synonyms for about-face',\n",
+ " 'clues': [('about turn',\n",
+ " 'act of pivoting 180 degrees, especially in a military formation'),\n",
+ " ('policy change',\n",
+ " 'a major change in attitude or principle or point of view'),\n",
+ " ('volte-face',\n",
+ " 'a major change in attitude or principle or point of view'),\n",
+ " ('reversal',\n",
+ " 'a major change in attitude or principle or point of view')]},\n",
+ " {'answer': 'abrasion',\n",
+ " 'hint': 'synonyms for abrasion',\n",
+ " 'clues': [('attrition', 'erosion by friction'),\n",
+ " ('detrition',\n",
+ " 'the wearing down of rock particles by friction due to water or wind or ice'),\n",
+ " ('corrasion', 'erosion by friction'),\n",
+ " ('grinding',\n",
+ " 'the wearing down of rock particles by friction due to water or wind or ice')]},\n",
+ " {'answer': 'abruptness',\n",
+ " 'hint': 'synonyms for abruptness',\n",
+ " 'clues': [('shortness', 'an abrupt discourteous manner'),\n",
+ " ('precipitance',\n",
+ " 'the quality of happening with headlong haste or without warning'),\n",
+ " ('brusqueness', 'an abrupt discourteous manner'),\n",
+ " ('suddenness',\n",
+ " 'the quality of happening with headlong haste or without warning'),\n",
+ " ('precipitousness',\n",
+ " 'the quality of happening with headlong haste or without warning'),\n",
+ " ('precipitateness',\n",
+ " 'the quality of happening with headlong haste or without warning'),\n",
+ " ('gruffness', 'an abrupt discourteous manner'),\n",
+ " ('curtness', 'an abrupt discourteous manner'),\n",
+ " ('steepness', 'the property possessed by a slope that is very steep')]},\n",
+ " {'answer': 'absolutism',\n",
+ " 'hint': 'synonyms for absolutism',\n",
+ " 'clues': [('totalism',\n",
+ " 'the principle of complete and unrestricted power in government'),\n",
+ " ('one-man rule',\n",
+ " 'a form of government in which the ruler is an absolute dictator (not restricted by a constitution or laws or opposition etc.)'),\n",
+ " ('despotism',\n",
+ " 'a form of government in which the ruler is an absolute dictator (not restricted by a constitution or laws or opposition etc.)'),\n",
+ " ('authoritarianism',\n",
+ " 'a form of government in which the ruler is an absolute dictator (not restricted by a constitution or laws or opposition etc.)'),\n",
+ " ('totalitarianism',\n",
+ " 'a form of government in which the ruler is an absolute dictator (not restricted by a constitution or laws or opposition etc.)'),\n",
+ " ('tyranny',\n",
+ " 'a form of government in which the ruler is an absolute dictator (not restricted by a constitution or laws or opposition etc.)'),\n",
+ " ('shogunate',\n",
+ " 'a form of government in which the ruler is an absolute dictator (not restricted by a constitution or laws or opposition etc.)'),\n",
+ " ('dictatorship',\n",
+ " 'a form of government in which the ruler is an absolute dictator (not restricted by a constitution or laws or opposition etc.)'),\n",
+ " ('monocracy',\n",
+ " 'a form of government in which the ruler is an absolute dictator (not restricted by a constitution or laws or opposition etc.)')]},\n",
+ " {'answer': 'absorption',\n",
+ " 'hint': 'synonyms for absorption',\n",
+ " 'clues': [('preoccupation',\n",
+ " 'the mental state of being preoccupied by something'),\n",
+ " ('assimilation',\n",
+ " 'the process of absorbing nutrients into the body after digestion'),\n",
+ " ('engrossment', 'the mental state of being preoccupied by something'),\n",
+ " ('preoccupancy', 'the mental state of being preoccupied by something'),\n",
+ " ('immersion', 'complete attention; intense mental effort'),\n",
+ " ('concentration', 'complete attention; intense mental effort'),\n",
+ " ('soaking up',\n",
+ " '(chemistry) a process in which one substance permeates another; a fluid permeates or is dissolved by a liquid or solid')]},\n",
+ " {'answer': 'abstraction',\n",
+ " 'hint': 'synonyms for abstraction',\n",
+ " 'clues': [('abstract',\n",
+ " 'a concept or idea not associated with any specific instance'),\n",
+ " ('abstract entity',\n",
+ " 'a general concept formed by extracting common features from specific examples'),\n",
+ " ('generalisation',\n",
+ " 'the process of formulating general concepts by abstracting common properties of instances'),\n",
+ " ('abstractedness',\n",
+ " 'preoccupation with something to the exclusion of all else')]},\n",
+ " {'answer': 'abstruseness',\n",
+ " 'hint': 'synonyms for abstruseness',\n",
+ " 'clues': [('reconditeness',\n",
+ " 'wisdom that is recondite and abstruse and profound'),\n",
+ " ('obscureness',\n",
+ " 'the quality of being unclear or abstruse and hard to understand'),\n",
+ " ('profoundness', 'wisdom that is recondite and abstruse and profound'),\n",
+ " ('profundity', 'wisdom that is recondite and abstruse and profound'),\n",
+ " ('obscurity',\n",
+ " 'the quality of being unclear or abstruse and hard to understand'),\n",
+ " ('abstrusity', 'wisdom that is recondite and abstruse and profound')]},\n",
+ " {'answer': 'abstrusity',\n",
+ " 'hint': 'synonyms for abstrusity',\n",
+ " 'clues': [('abstruseness',\n",
+ " 'wisdom that is recondite and abstruse and profound'),\n",
+ " ('profundity', 'wisdom that is recondite and abstruse and profound'),\n",
+ " ('reconditeness', 'wisdom that is recondite and abstruse and profound'),\n",
+ " ('profoundness', 'wisdom that is recondite and abstruse and profound')]},\n",
+ " {'answer': 'absurdity',\n",
+ " 'hint': 'synonyms for absurdity',\n",
+ " 'clues': [('absurdness',\n",
+ " 'a message whose content is at variance with reason'),\n",
+ " ('ridiculousness', 'a message whose content is at variance with reason'),\n",
+ " ('fatuousness', 'a ludicrous folly'),\n",
+ " ('silliness', 'a ludicrous folly'),\n",
+ " ('fatuity', 'a ludicrous folly')]},\n",
+ " {'answer': 'abuse',\n",
+ " 'hint': 'synonyms for abuse',\n",
+ " 'clues': [('ill-treatment', 'cruel or inhumane treatment'),\n",
+ " ('contumely', 'a rude expression intended to offend or hurt'),\n",
+ " ('misuse', 'improper or excessive use'),\n",
+ " ('maltreatment', 'cruel or inhumane treatment'),\n",
+ " ('revilement', 'a rude expression intended to offend or hurt'),\n",
+ " ('insult', 'a rude expression intended to offend or hurt'),\n",
+ " ('vilification', 'a rude expression intended to offend or hurt'),\n",
+ " ('ill-usage', 'cruel or inhumane treatment')]},\n",
+ " {'answer': 'ac',\n",
+ " 'hint': 'synonyms for ac',\n",
+ " 'clues': [('actinium',\n",
+ " 'a radioactive element of the actinide series; found in uranium ores'),\n",
+ " ('alternating current',\n",
+ " 'an electric current that reverses direction sinusoidally'),\n",
+ " ('atomic number 89',\n",
+ " 'a radioactive element of the actinide series; found in uranium ores'),\n",
+ " ('alternating electric current',\n",
+ " 'an electric current that reverses direction sinusoidally')]},\n",
+ " {'answer': 'acaroid_resin',\n",
+ " 'hint': 'synonyms for acaroid resin',\n",
+ " 'clues': [('accaroid resin',\n",
+ " 'an alcohol-soluble resin from Australian trees; used in varnishes and in manufacturing paper'),\n",
+ " ('accroides',\n",
+ " 'an alcohol-soluble resin from Australian trees; used in varnishes and in manufacturing paper'),\n",
+ " ('gum accroides',\n",
+ " 'an alcohol-soluble resin from Australian trees; used in varnishes and in manufacturing paper'),\n",
+ " ('accroides gum',\n",
+ " 'an alcohol-soluble resin from Australian trees; used in varnishes and in manufacturing paper')]},\n",
+ " {'answer': 'accaroid_resin',\n",
+ " 'hint': 'synonyms for accaroid resin',\n",
+ " 'clues': [('accroides resin',\n",
+ " 'an alcohol-soluble resin from Australian trees; used in varnishes and in manufacturing paper'),\n",
+ " ('accroides',\n",
+ " 'an alcohol-soluble resin from Australian trees; used in varnishes and in manufacturing paper'),\n",
+ " ('gum accroides',\n",
+ " 'an alcohol-soluble resin from Australian trees; used in varnishes and in manufacturing paper'),\n",
+ " ('accroides gum',\n",
+ " 'an alcohol-soluble resin from Australian trees; used in varnishes and in manufacturing paper')]},\n",
+ " {'answer': 'accelerator',\n",
+ " 'hint': 'synonyms for accelerator',\n",
+ " 'clues': [('accelerator pedal',\n",
+ " 'a pedal that controls the throttle valve'),\n",
+ " ('throttle', 'a pedal that controls the throttle valve'),\n",
+ " ('gun', 'a pedal that controls the throttle valve'),\n",
+ " ('throttle valve',\n",
+ " 'a valve that regulates the supply of fuel to the engine'),\n",
+ " ('gas', 'a pedal that controls the throttle valve'),\n",
+ " ('catalyst',\n",
+ " '(chemistry) a substance that initiates or accelerates a chemical reaction without itself being affected'),\n",
+ " ('gas pedal', 'a pedal that controls the throttle valve'),\n",
+ " ('atom smasher',\n",
+ " 'a scientific instrument that increases the kinetic energy of charged particles'),\n",
+ " ('particle accelerator',\n",
+ " 'a scientific instrument that increases the kinetic energy of charged particles')]},\n",
+ " {'answer': 'accelerator_pedal',\n",
+ " 'hint': 'synonyms for accelerator pedal',\n",
+ " 'clues': [('gas pedal', 'a pedal that controls the throttle valve'),\n",
+ " ('accelerator', 'a pedal that controls the throttle valve'),\n",
+ " ('throttle', 'a pedal that controls the throttle valve'),\n",
+ " ('gas', 'a pedal that controls the throttle valve'),\n",
+ " ('gun', 'a pedal that controls the throttle valve')]},\n",
+ " {'answer': 'accent',\n",
+ " 'hint': 'synonyms for accent',\n",
+ " 'clues': [('idiom',\n",
+ " 'the usage or vocabulary that is characteristic of a specific group of people'),\n",
+ " ('dialect',\n",
+ " 'the usage or vocabulary that is characteristic of a specific group of people'),\n",
+ " ('stress',\n",
+ " 'the relative prominence of a syllable or musical note (especially with regard to stress or pitch)'),\n",
+ " ('emphasis',\n",
+ " 'the relative prominence of a syllable or musical note (especially with regard to stress or pitch)'),\n",
+ " ('speech pattern', 'distinctive manner of oral expression'),\n",
+ " ('accent mark',\n",
+ " 'a diacritical mark used to indicate stress or placed above a vowel to indicate a special pronunciation')]},\n",
+ " {'answer': 'acceptance',\n",
+ " 'hint': 'synonyms for acceptance',\n",
+ " 'clues': [('acceptation',\n",
+ " 'the act of accepting with approval; favorable reception'),\n",
+ " ('espousal', 'the act of accepting with approval; favorable reception'),\n",
+ " (\"banker's acceptance\",\n",
+ " 'banking: a time draft drawn on and accepted by a bank'),\n",
+ " ('sufferance',\n",
+ " 'a disposition to tolerate or accept people or situations'),\n",
+ " ('toleration',\n",
+ " 'a disposition to tolerate or accept people or situations'),\n",
+ " ('adoption', 'the act of accepting with approval; favorable reception'),\n",
+ " ('credence',\n",
+ " 'the mental attitude that something is believable and should be accepted as true')]},\n",
+ " {'answer': 'acceptation',\n",
+ " 'hint': 'synonyms for acceptation',\n",
+ " 'clues': [('espousal',\n",
+ " 'the act of accepting with approval; favorable reception'),\n",
+ " ('word meaning', 'the accepted meaning of a word'),\n",
+ " ('adoption', 'the act of accepting with approval; favorable reception'),\n",
+ " ('word sense', 'the accepted meaning of a word'),\n",
+ " ('acceptance',\n",
+ " 'the act of accepting with approval; favorable reception')]},\n",
+ " {'answer': 'acceptor_rna',\n",
+ " 'hint': 'synonyms for acceptor rna',\n",
+ " 'clues': [('soluble RNA',\n",
+ " 'RNA molecules present in the cell (in at least 20 varieties, each variety capable of combining with a specific amino acid) that attach the correct amino acid to the protein chain that is being synthesized at the ribosome of the cell (according to directions coded in the mRNA)'),\n",
+ " ('acceptor RNA',\n",
+ " 'RNA molecules present in the cell (in at least 20 varieties, each variety capable of combining with a specific amino acid) that attach the correct amino acid to the protein chain that is being synthesized at the ribosome of the cell (according to directions coded in the mRNA)'),\n",
+ " ('tRNA',\n",
+ " 'RNA molecules present in the cell (in at least 20 varieties, each variety capable of combining with a specific amino acid) that attach the correct amino acid to the protein chain that is being synthesized at the ribosome of the cell (according to directions coded in the mRNA)'),\n",
+ " ('transfer RNA',\n",
+ " 'RNA molecules present in the cell (in at least 20 varieties, each variety capable of combining with a specific amino acid) that attach the correct amino acid to the protein chain that is being synthesized at the ribosome of the cell (according to directions coded in the mRNA)')]},\n",
+ " {'answer': 'access',\n",
+ " 'hint': 'synonyms for access',\n",
+ " 'clues': [('memory access',\n",
+ " '(computer science) the operation of reading or writing stored information'),\n",
+ " ('entree', 'the right to enter'),\n",
+ " ('admittance', 'the right to enter'),\n",
+ " ('approach', 'a way of entering or leaving'),\n",
+ " ('admission', 'the right to enter'),\n",
+ " ('access code',\n",
+ " 'a code (a series of characters or digits) that must be entered in some way (typed or dialed or spoken) to get the use of something (a telephone line or a computer or a local area network etc.)'),\n",
+ " ('accession', 'the right to enter')]},\n",
+ " {'answer': 'accessibility',\n",
+ " 'hint': 'synonyms for accessibility',\n",
+ " 'clues': [('handiness', 'the quality of being at hand when needed'),\n",
+ " ('approachability', 'the attribute of being easy to meet or deal with'),\n",
+ " ('availableness', 'the quality of being at hand when needed'),\n",
+ " ('availability', 'the quality of being at hand when needed')]},\n",
+ " {'answer': 'accession',\n",
+ " 'hint': 'synonyms for accession',\n",
+ " 'clues': [('rise to power',\n",
+ " 'the act of attaining or gaining access to a new office or right or position (especially the throne)'),\n",
+ " ('assenting', 'agreeing with or consenting to (often unwillingly)'),\n",
+ " ('entree', 'the right to enter'),\n",
+ " ('admittance', 'the right to enter'),\n",
+ " ('addition', 'something added to what you already have'),\n",
+ " ('access', 'the right to enter'),\n",
+ " ('admission', 'the right to enter')]},\n",
+ " {'answer': 'acclivity',\n",
+ " 'hint': 'synonyms for acclivity',\n",
+ " 'clues': [('raise', 'an upward slope or grade (as in a road)'),\n",
+ " ('ascent', 'an upward slope or grade (as in a road)'),\n",
+ " ('climb', 'an upward slope or grade (as in a road)'),\n",
+ " ('upgrade', 'an upward slope or grade (as in a road)')]},\n",
+ " {'answer': 'accompaniment',\n",
+ " 'hint': 'synonyms for accompaniment',\n",
+ " 'clues': [('support',\n",
+ " 'a musical part (vocal or instrumental) that supports or provides background for other musical parts'),\n",
+ " ('backup',\n",
+ " 'a musical part (vocal or instrumental) that supports or provides background for other musical parts'),\n",
+ " ('co-occurrence',\n",
+ " 'an event or situation that happens at the same time as or in connection with another'),\n",
+ " ('escort',\n",
+ " 'the act of accompanying someone or something in order to protect them'),\n",
+ " ('attendant',\n",
+ " 'an event or situation that happens at the same time as or in connection with another'),\n",
+ " ('complement',\n",
+ " 'something added to complete or embellish or make perfect'),\n",
+ " ('musical accompaniment',\n",
+ " 'a musical part (vocal or instrumental) that supports or provides background for other musical parts'),\n",
+ " ('concomitant',\n",
+ " 'an event or situation that happens at the same time as or in connection with another')]},\n",
+ " {'answer': 'accomplishment',\n",
+ " 'hint': 'synonyms for accomplishment',\n",
+ " 'clues': [('skill', 'an ability that has been acquired by training'),\n",
+ " ('achievement', 'the action of accomplishing something'),\n",
+ " ('attainment', 'an ability that has been acquired by training'),\n",
+ " ('acquirement', 'an ability that has been acquired by training'),\n",
+ " ('acquisition', 'an ability that has been acquired by training')]},\n",
+ " {'answer': 'accord',\n",
+ " 'hint': 'synonyms for accord',\n",
+ " 'clues': [('treaty',\n",
+ " 'a written agreement between two states or sovereigns'),\n",
+ " ('pact', 'a written agreement between two states or sovereigns'),\n",
+ " ('conformity', 'concurrence of opinion'),\n",
+ " ('accordance', 'concurrence of opinion')]},\n",
+ " {'answer': 'account',\n",
+ " 'hint': 'synonyms for account',\n",
+ " 'clues': [('news report', 'a short account of the news'),\n",
+ " ('story', 'a record or narrative description of past events'),\n",
+ " ('write up', 'a short account of the news'),\n",
+ " ('invoice',\n",
+ " 'an itemized statement of money owed for goods shipped or services rendered'),\n",
+ " ('bill',\n",
+ " 'an itemized statement of money owed for goods shipped or services rendered'),\n",
+ " ('chronicle', 'a record or narrative description of past events'),\n",
+ " ('score', 'grounds'),\n",
+ " ('account statement',\n",
+ " 'a statement of recent transactions and the resulting balance'),\n",
+ " ('accounting',\n",
+ " 'a statement of recent transactions and the resulting balance'),\n",
+ " ('report', 'a short account of the news'),\n",
+ " ('explanation',\n",
+ " 'a statement that makes something comprehensible by describing the relevant structure or operation or circumstances etc.'),\n",
+ " ('history', 'a record or narrative description of past events')]},\n",
+ " {'answer': 'accounting',\n",
+ " 'hint': 'synonyms for accounting',\n",
+ " 'clues': [('accounting system',\n",
+ " \"a bookkeeper's chronological list of related debits and credits of a business; forms part of a ledger of accounts\"),\n",
+ " ('account',\n",
+ " 'a statement of recent transactions and the resulting balance'),\n",
+ " ('accountancy',\n",
+ " 'the occupation of maintaining and auditing records and preparing financial reports for a business'),\n",
+ " ('method of accounting',\n",
+ " \"a bookkeeper's chronological list of related debits and credits of a business; forms part of a ledger of accounts\"),\n",
+ " ('account statement',\n",
+ " 'a statement of recent transactions and the resulting balance')]},\n",
+ " {'answer': 'accroides_resin',\n",
+ " 'hint': 'synonyms for accroides resin',\n",
+ " 'clues': [('accaroid resin',\n",
+ " 'an alcohol-soluble resin from Australian trees; used in varnishes and in manufacturing paper'),\n",
+ " ('accroides',\n",
+ " 'an alcohol-soluble resin from Australian trees; used in varnishes and in manufacturing paper'),\n",
+ " ('gum accroides',\n",
+ " 'an alcohol-soluble resin from Australian trees; used in varnishes and in manufacturing paper'),\n",
+ " ('accroides gum',\n",
+ " 'an alcohol-soluble resin from Australian trees; used in varnishes and in manufacturing paper')]},\n",
+ " {'answer': 'acculturation',\n",
+ " 'hint': 'synonyms for acculturation',\n",
+ " 'clues': [('enculturation',\n",
+ " 'the adoption of the behavior patterns of the surrounding culture'),\n",
+ " ('assimilation',\n",
+ " 'the process of assimilating new ideas into an existing cognitive structure'),\n",
+ " ('socialisation',\n",
+ " 'the adoption of the behavior patterns of the surrounding culture'),\n",
+ " ('culture', 'all the knowledge and values shared by a society')]},\n",
+ " {'answer': 'accumulation',\n",
+ " 'hint': 'synonyms for accumulation',\n",
+ " 'clues': [('collection',\n",
+ " 'several things grouped together or considered as a whole'),\n",
+ " ('accretion', 'an increase by natural growth or addition'),\n",
+ " ('aggregation',\n",
+ " 'several things grouped together or considered as a whole'),\n",
+ " ('accrual', 'the act of accumulating'),\n",
+ " ('assemblage',\n",
+ " 'several things grouped together or considered as a whole'),\n",
+ " ('accruement', 'the act of accumulating')]},\n",
+ " {'answer': 'acerbity',\n",
+ " 'hint': 'synonyms for acerbity',\n",
+ " 'clues': [('tartness', 'a rough and bitter manner'),\n",
+ " ('jaundice', 'a rough and bitter manner'),\n",
+ " ('thorniness', 'a rough and bitter manner'),\n",
+ " ('acrimony', 'a rough and bitter manner'),\n",
+ " ('bitterness', 'a rough and bitter manner')]},\n",
+ " {'answer': 'acetyl',\n",
+ " 'hint': 'synonyms for acetyl',\n",
+ " 'clues': [('ethanoyl radical',\n",
+ " 'the organic group of acetic acid (CH3CO-)'),\n",
+ " ('acetyl radical', 'the organic group of acetic acid (CH3CO-)'),\n",
+ " ('acetyl group', 'the organic group of acetic acid (CH3CO-)'),\n",
+ " ('ethanoyl group', 'the organic group of acetic acid (CH3CO-)')]},\n",
+ " {'answer': 'acetyl_group',\n",
+ " 'hint': 'synonyms for acetyl group',\n",
+ " 'clues': [('ethanoyl radical',\n",
+ " 'the organic group of acetic acid (CH3CO-)'),\n",
+ " ('acetyl radical', 'the organic group of acetic acid (CH3CO-)'),\n",
+ " ('acetyl', 'the organic group of acetic acid (CH3CO-)'),\n",
+ " ('ethanoyl group', 'the organic group of acetic acid (CH3CO-)')]},\n",
+ " {'answer': 'acetyl_radical',\n",
+ " 'hint': 'synonyms for acetyl radical',\n",
+ " 'clues': [('ethanoyl radical',\n",
+ " 'the organic group of acetic acid (CH3CO-)'),\n",
+ " ('ethanoyl group', 'the organic group of acetic acid (CH3CO-)'),\n",
+ " ('acetyl', 'the organic group of acetic acid (CH3CO-)'),\n",
+ " ('acetyl group', 'the organic group of acetic acid (CH3CO-)')]},\n",
+ " {'answer': 'achromasia',\n",
+ " 'hint': 'synonyms for achromasia',\n",
+ " 'clues': [('lividness',\n",
+ " 'unnatural lack of color in the skin (as from bruising or sickness or emotional distress)'),\n",
+ " ('luridness',\n",
+ " 'unnatural lack of color in the skin (as from bruising or sickness or emotional distress)'),\n",
+ " ('pallor',\n",
+ " 'unnatural lack of color in the skin (as from bruising or sickness or emotional distress)'),\n",
+ " ('wanness',\n",
+ " 'unnatural lack of color in the skin (as from bruising or sickness or emotional distress)'),\n",
+ " ('lividity',\n",
+ " 'unnatural lack of color in the skin (as from bruising or sickness or emotional distress)'),\n",
+ " ('paleness',\n",
+ " 'unnatural lack of color in the skin (as from bruising or sickness or emotional distress)'),\n",
+ " ('pallidness',\n",
+ " 'unnatural lack of color in the skin (as from bruising or sickness or emotional distress)')]},\n",
+ " {'answer': 'ack-ack',\n",
+ " 'hint': 'synonyms for ack-ack',\n",
+ " 'clues': [('pom-pom', 'artillery designed to shoot upward at airplanes'),\n",
+ " ('antiaircraft gun', 'artillery designed to shoot upward at airplanes'),\n",
+ " ('flak', 'artillery designed to shoot upward at airplanes'),\n",
+ " ('ack-ack gun', 'artillery designed to shoot upward at airplanes')]},\n",
+ " {'answer': 'ack-ack_gun',\n",
+ " 'hint': 'synonyms for ack-ack gun',\n",
+ " 'clues': [('pom-pom', 'artillery designed to shoot upward at airplanes'),\n",
+ " ('antiaircraft gun', 'artillery designed to shoot upward at airplanes'),\n",
+ " ('flak', 'artillery designed to shoot upward at airplanes'),\n",
+ " ('ack-ack', 'artillery designed to shoot upward at airplanes')]},\n",
+ " {'answer': 'acknowledgment',\n",
+ " 'hint': 'synonyms for acknowledgment',\n",
+ " 'clues': [('acknowledgement',\n",
+ " 'a statement acknowledging something or someone'),\n",
+ " ('citation',\n",
+ " 'a short note recognizing a source of information or of a quoted passage'),\n",
+ " ('credit',\n",
+ " 'a short note recognizing a source of information or of a quoted passage'),\n",
+ " ('cite',\n",
+ " 'a short note recognizing a source of information or of a quoted passage'),\n",
+ " ('mention',\n",
+ " 'a short note recognizing a source of information or of a quoted passage'),\n",
+ " ('reference',\n",
+ " 'a short note recognizing a source of information or of a quoted passage'),\n",
+ " ('quotation',\n",
+ " 'a short note recognizing a source of information or of a quoted passage')]},\n",
+ " {'answer': 'acquirement',\n",
+ " 'hint': 'synonyms for acquirement',\n",
+ " 'clues': [('skill', 'an ability that has been acquired by training'),\n",
+ " ('acquisition', 'an ability that has been acquired by training'),\n",
+ " ('accomplishment', 'an ability that has been acquired by training'),\n",
+ " ('attainment', 'an ability that has been acquired by training')]},\n",
+ " {'answer': 'acquisition',\n",
+ " 'hint': 'synonyms for acquisition',\n",
+ " 'clues': [('skill', 'an ability that has been acquired by training'),\n",
+ " ('accomplishment', 'an ability that has been acquired by training'),\n",
+ " ('attainment', 'an ability that has been acquired by training'),\n",
+ " ('acquirement', 'an ability that has been acquired by training'),\n",
+ " ('learning', 'the cognitive process of acquiring skill or knowledge')]},\n",
+ " {'answer': 'acres',\n",
+ " 'hint': 'synonyms for acres',\n",
+ " 'clues': [('estate',\n",
+ " 'extensive landed property (especially in the country) retained by the owner for his own use'),\n",
+ " ('landed estate',\n",
+ " 'extensive landed property (especially in the country) retained by the owner for his own use'),\n",
+ " ('acre',\n",
+ " 'a unit of area (4840 square yards) used in English-speaking countries'),\n",
+ " ('demesne',\n",
+ " 'extensive landed property (especially in the country) retained by the owner for his own use'),\n",
+ " ('land',\n",
+ " 'extensive landed property (especially in the country) retained by the owner for his own use')]},\n",
+ " {'answer': 'acrimony',\n",
+ " 'hint': 'synonyms for acrimony',\n",
+ " 'clues': [('acerbity', 'a rough and bitter manner'),\n",
+ " ('tartness', 'a rough and bitter manner'),\n",
+ " ('jaundice', 'a rough and bitter manner'),\n",
+ " ('thorniness', 'a rough and bitter manner'),\n",
+ " ('bitterness', 'a rough and bitter manner')]},\n",
+ " {'answer': 'acrobatics',\n",
+ " 'hint': 'synonyms for acrobatics',\n",
+ " 'clues': [('stunt flying',\n",
+ " 'the performance of stunts while in flight in an aircraft'),\n",
+ " ('stunting', 'the performance of stunts while in flight in an aircraft'),\n",
+ " ('aerobatics',\n",
+ " 'the performance of stunts while in flight in an aircraft'),\n",
+ " ('tumbling', 'the gymnastic moves of an acrobat')]},\n",
+ " {'answer': 'acrylic',\n",
+ " 'hint': 'synonyms for acrylic',\n",
+ " 'clues': [('acrylic paint', 'used especially by artists'),\n",
+ " ('acrylic resin',\n",
+ " 'a glassy thermoplastic; can be cast and molded or used in coatings and adhesives'),\n",
+ " ('acrylate resin',\n",
+ " 'a glassy thermoplastic; can be cast and molded or used in coatings and adhesives'),\n",
+ " ('acrylic fiber', 'polymerized from acrylonitrile')]},\n",
+ " {'answer': 'act',\n",
+ " 'hint': 'synonyms for act',\n",
+ " 'clues': [('number',\n",
+ " 'a short theatrical performance that is part of a longer program'),\n",
+ " ('bit',\n",
+ " 'a short theatrical performance that is part of a longer program'),\n",
+ " ('enactment',\n",
+ " 'a legal document codifying the result of deliberations of a committee or society or legislative body'),\n",
+ " ('deed', 'something that people do or cause to happen'),\n",
+ " ('turn',\n",
+ " 'a short theatrical performance that is part of a longer program'),\n",
+ " ('routine',\n",
+ " 'a short theatrical performance that is part of a longer program'),\n",
+ " ('human action', 'something that people do or cause to happen'),\n",
+ " ('human activity', 'something that people do or cause to happen')]},\n",
+ " {'answer': 'act_of_god',\n",
+ " 'hint': 'synonyms for act of god',\n",
+ " 'clues': [('inevitable accident',\n",
+ " 'a natural and unavoidable catastrophe that interrupts the expected course of events'),\n",
+ " ('unavoidable casualty',\n",
+ " 'a natural and unavoidable catastrophe that interrupts the expected course of events'),\n",
+ " ('act of God',\n",
+ " 'a natural and unavoidable catastrophe that interrupts the expected course of events'),\n",
+ " ('vis major',\n",
+ " 'a natural and unavoidable catastrophe that interrupts the expected course of events'),\n",
+ " ('force majeure',\n",
+ " 'a natural and unavoidable catastrophe that interrupts the expected course of events')]},\n",
+ " {'answer': 'action',\n",
+ " 'hint': 'synonyms for action',\n",
+ " 'clues': [('activity',\n",
+ " 'a process existing in or produced by nature (rather than by the intent of human beings)'),\n",
+ " ('legal action',\n",
+ " 'a judicial proceeding brought by one party against another; one party prosecutes another for a wrong done or for protection of a right or for prevention of a wrong'),\n",
+ " ('military action', 'a military engagement'),\n",
+ " ('action mechanism',\n",
+ " 'the operating part that transmits power to a mechanism'),\n",
+ " ('natural process',\n",
+ " 'a process existing in or produced by nature (rather than by the intent of human beings)'),\n",
+ " ('natural action',\n",
+ " 'a process existing in or produced by nature (rather than by the intent of human beings)'),\n",
+ " ('action at law',\n",
+ " 'a judicial proceeding brought by one party against another; one party prosecutes another for a wrong done or for protection of a right or for prevention of a wrong')]},\n",
+ " {'answer': 'activity',\n",
+ " 'hint': 'synonyms for activity',\n",
+ " 'clues': [('action',\n",
+ " 'a process existing in or produced by nature (rather than by the intent of human beings)'),\n",
+ " ('natural action',\n",
+ " 'a process existing in or produced by nature (rather than by the intent of human beings)'),\n",
+ " ('bodily process', 'an organic process that takes place in the body'),\n",
+ " ('natural process',\n",
+ " 'a process existing in or produced by nature (rather than by the intent of human beings)'),\n",
+ " ('activeness',\n",
+ " 'the trait of being active; moving or acting rapidly and energetically'),\n",
+ " ('bodily function', 'an organic process that takes place in the body')]},\n",
+ " {'answer': 'acts',\n",
+ " 'hint': 'synonyms for acts',\n",
+ " 'clues': [('act', 'something that people do or cause to happen'),\n",
+ " ('number',\n",
+ " 'a short theatrical performance that is part of a longer program'),\n",
+ " ('bit',\n",
+ " 'a short theatrical performance that is part of a longer program'),\n",
+ " ('enactment',\n",
+ " 'a legal document codifying the result of deliberations of a committee or society or legislative body'),\n",
+ " ('deed', 'something that people do or cause to happen'),\n",
+ " ('turn',\n",
+ " 'a short theatrical performance that is part of a longer program'),\n",
+ " ('human action', 'something that people do or cause to happen'),\n",
+ " ('human activity', 'something that people do or cause to happen'),\n",
+ " ('routine',\n",
+ " 'a short theatrical performance that is part of a longer program')]},\n",
+ " {'answer': 'acuity',\n",
+ " 'hint': 'synonyms for acuity',\n",
+ " 'clues': [('sharp-sightedness',\n",
+ " 'sharpness of vision; the visual ability to resolve fine detail (usually measured by a Snellen chart)'),\n",
+ " ('keenness', 'a quick and penetrating intelligence'),\n",
+ " ('acuteness', 'a quick and penetrating intelligence'),\n",
+ " ('sharpness', 'a quick and penetrating intelligence'),\n",
+ " ('visual acuity',\n",
+ " 'sharpness of vision; the visual ability to resolve fine detail (usually measured by a Snellen chart)')]},\n",
+ " {'answer': 'adam',\n",
+ " 'hint': 'synonyms for adam',\n",
+ " 'clues': [('disco biscuit',\n",
+ " 'street names for methylenedioxymethamphetamine'),\n",
+ " ('cristal', 'street names for methylenedioxymethamphetamine'),\n",
+ " ('hug drug', 'street names for methylenedioxymethamphetamine'),\n",
+ " ('ecstasy', 'street names for methylenedioxymethamphetamine'),\n",
+ " ('go', 'street names for methylenedioxymethamphetamine')]},\n",
+ " {'answer': 'adams',\n",
+ " 'hint': 'synonyms for adams',\n",
+ " 'clues': [('disco biscuit',\n",
+ " 'street names for methylenedioxymethamphetamine'),\n",
+ " ('cristal', 'street names for methylenedioxymethamphetamine'),\n",
+ " ('hug drug', 'street names for methylenedioxymethamphetamine'),\n",
+ " ('ecstasy', 'street names for methylenedioxymethamphetamine'),\n",
+ " ('go', 'street names for methylenedioxymethamphetamine')]},\n",
+ " {'answer': 'add-in',\n",
+ " 'hint': 'synonyms for add-in',\n",
+ " 'clues': [('plug-in',\n",
+ " \"a printed circuit that can be inserted into expansion slots in a computer to increase the computer's capabilities\"),\n",
+ " ('circuit board',\n",
+ " \"a printed circuit that can be inserted into expansion slots in a computer to increase the computer's capabilities\"),\n",
+ " ('card',\n",
+ " \"a printed circuit that can be inserted into expansion slots in a computer to increase the computer's capabilities\"),\n",
+ " ('board',\n",
+ " \"a printed circuit that can be inserted into expansion slots in a computer to increase the computer's capabilities\")]},\n",
+ " {'answer': 'add-on',\n",
+ " 'hint': 'synonyms for add-on',\n",
+ " 'clues': [('addition',\n",
+ " 'a component that is added to something to improve it'),\n",
+ " ('accessory', 'a supplementary component that improves capability'),\n",
+ " ('improver', 'a component that is added to something to improve it'),\n",
+ " ('supplement', 'a supplementary component that improves capability'),\n",
+ " ('appurtenance', 'a supplementary component that improves capability')]},\n",
+ " {'answer': 'addition',\n",
+ " 'hint': 'synonyms for addition',\n",
+ " 'clues': [('summation',\n",
+ " 'the arithmetic operation of summing; calculating the sum of two or more numbers'),\n",
+ " ('improver', 'a component that is added to something to improve it'),\n",
+ " ('gain', 'a quantity that is added'),\n",
+ " ('accession', 'something added to what you already have'),\n",
+ " ('increase', 'a quantity that is added'),\n",
+ " ('add-on', 'a component that is added to something to improve it'),\n",
+ " ('plus',\n",
+ " 'the arithmetic operation of summing; calculating the sum of two or more numbers')]},\n",
+ " {'answer': 'address',\n",
+ " 'hint': 'synonyms for address',\n",
+ " 'clues': [('destination',\n",
+ " 'written directions for finding some location; written on letters or packages that are to be delivered to that location'),\n",
+ " ('speech',\n",
+ " 'the act of delivering a formal spoken communication to an audience'),\n",
+ " ('reference',\n",
+ " '(computer science) the code that identifies where a piece of information is stored'),\n",
+ " ('name and address',\n",
+ " 'written directions for finding some location; written on letters or packages that are to be delivered to that location'),\n",
+ " ('savoir-faire', 'social skill'),\n",
+ " ('computer address',\n",
+ " '(computer science) the code that identifies where a piece of information is stored')]},\n",
+ " {'answer': 'adeptness',\n",
+ " 'hint': 'synonyms for adeptness',\n",
+ " 'clues': [('quickness',\n",
+ " 'skillful performance or ability without difficulty'),\n",
+ " ('facility', 'skillful performance or ability without difficulty'),\n",
+ " ('adroitness', 'skillful performance or ability without difficulty'),\n",
+ " ('deftness', 'skillful performance or ability without difficulty')]},\n",
+ " {'answer': 'adherence',\n",
+ " 'hint': 'synonyms for adherence',\n",
+ " 'clues': [('adhesion',\n",
+ " 'faithful support for a cause or political party or religion'),\n",
+ " ('adhesiveness',\n",
+ " 'the property of sticking together (as of glue and wood) or the joining of surfaces of different composition'),\n",
+ " ('bond',\n",
+ " 'the property of sticking together (as of glue and wood) or the joining of surfaces of different composition'),\n",
+ " ('attachment',\n",
+ " 'faithful support for a cause or political party or religion')]},\n",
+ " {'answer': 'adhesion',\n",
+ " 'hint': 'synonyms for adhesion',\n",
+ " 'clues': [('adherence',\n",
+ " 'the property of sticking together (as of glue and wood) or the joining of surfaces of different composition'),\n",
+ " ('bond',\n",
+ " 'the property of sticking together (as of glue and wood) or the joining of surfaces of different composition'),\n",
+ " ('adhesiveness',\n",
+ " 'the property of sticking together (as of glue and wood) or the joining of surfaces of different composition'),\n",
+ " ('attachment',\n",
+ " 'faithful support for a cause or political party or religion')]},\n",
+ " {'answer': 'adieu',\n",
+ " 'hint': 'synonyms for adieu',\n",
+ " 'clues': [('au revoir', 'a farewell remark'),\n",
+ " ('good-by', 'a farewell remark'),\n",
+ " ('good day', 'a farewell remark'),\n",
+ " ('adios', 'a farewell remark'),\n",
+ " ('bye', 'a farewell remark'),\n",
+ " ('so long', 'a farewell remark'),\n",
+ " ('auf wiedersehen', 'a farewell remark'),\n",
+ " ('bye-bye', 'a farewell remark'),\n",
+ " ('arrivederci', 'a farewell remark'),\n",
+ " ('sayonara', 'a farewell remark'),\n",
+ " ('cheerio', 'a farewell remark')]},\n",
+ " {'answer': 'adios',\n",
+ " 'hint': 'synonyms for adios',\n",
+ " 'clues': [('au revoir', 'a farewell remark'),\n",
+ " ('good-by', 'a farewell remark'),\n",
+ " ('good day', 'a farewell remark'),\n",
+ " ('adieu', 'a farewell remark'),\n",
+ " ('bye', 'a farewell remark'),\n",
+ " ('so long', 'a farewell remark'),\n",
+ " ('auf wiedersehen', 'a farewell remark'),\n",
+ " ('bye-bye', 'a farewell remark'),\n",
+ " ('arrivederci', 'a farewell remark'),\n",
+ " ('sayonara', 'a farewell remark'),\n",
+ " ('cheerio', 'a farewell remark')]},\n",
+ " {'answer': 'adjustment',\n",
+ " 'hint': 'synonyms for adjustment',\n",
+ " 'clues': [('modification',\n",
+ " 'the act of making something different (as e.g. the size of a garment)'),\n",
+ " ('adaptation',\n",
+ " 'the process of adapting to something (such as environmental conditions)'),\n",
+ " ('fitting', 'making or becoming suitable; adjusting to circumstances'),\n",
+ " ('registration', 'the act of adjusting something to match a standard'),\n",
+ " ('accommodation',\n",
+ " 'making or becoming suitable; adjusting to circumstances'),\n",
+ " ('allowance',\n",
+ " 'an amount added or deducted on the basis of qualifying circumstances'),\n",
+ " ('alteration',\n",
+ " 'the act of making something different (as e.g. the size of a garment)'),\n",
+ " ('readjustment', 'the act of adjusting something to match a standard')]},\n",
+ " {'answer': 'administration',\n",
+ " 'hint': 'synonyms for administration',\n",
+ " 'clues': [('governing', 'the act of governing; exercising authority'),\n",
+ " ('presidency', 'the tenure of a president'),\n",
+ " ('organization',\n",
+ " 'the persons (or committees or departments etc.) who make up a body for the purpose of administering something'),\n",
+ " ('governing body',\n",
+ " 'the persons (or committees or departments etc.) who make up a body for the purpose of administering something'),\n",
+ " ('government', 'the act of governing; exercising authority'),\n",
+ " ('giving medication', 'the act of administering medication'),\n",
+ " ('governance',\n",
+ " 'the persons (or committees or departments etc.) who make up a body for the purpose of administering something'),\n",
+ " ('presidential term', 'the tenure of a president'),\n",
+ " ('government activity', 'the act of governing; exercising authority'),\n",
+ " ('disposal',\n",
+ " \"a method of tending to or managing the affairs of a some group of people (especially the group's business affairs)\"),\n",
+ " ('judicature', 'the act of meting out justice according to the law'),\n",
+ " ('establishment',\n",
+ " 'the persons (or committees or departments etc.) who make up a body for the purpose of administering something'),\n",
+ " ('brass',\n",
+ " 'the persons (or committees or departments etc.) who make up a body for the purpose of administering something')]},\n",
+ " {'answer': 'admiralty_mile',\n",
+ " 'hint': 'synonyms for admiralty mile',\n",
+ " 'clues': [('nautical mile',\n",
+ " 'a former British unit of length equivalent to 6,080 feet (1,853.184 meters); 800 feet longer than a statute mile'),\n",
+ " ('naut mi',\n",
+ " 'a former British unit of length equivalent to 6,080 feet (1,853.184 meters); 800 feet longer than a statute mile'),\n",
+ " ('mi',\n",
+ " 'a former British unit of length equivalent to 6,080 feet (1,853.184 meters); 800 feet longer than a statute mile'),\n",
+ " ('mile',\n",
+ " 'a former British unit of length equivalent to 6,080 feet (1,853.184 meters); 800 feet longer than a statute mile'),\n",
+ " ('geographical mile',\n",
+ " 'a former British unit of length equivalent to 6,080 feet (1,853.184 meters); 800 feet longer than a statute mile')]},\n",
+ " {'answer': 'admiration',\n",
+ " 'hint': 'synonyms for admiration',\n",
+ " 'clues': [('esteem', 'a feeling of delighted approval and liking'),\n",
+ " ('wonder', 'the feeling aroused by something strange and surprising'),\n",
+ " ('appreciation', 'a favorable judgment'),\n",
+ " ('wonderment',\n",
+ " 'the feeling aroused by something strange and surprising')]},\n",
+ " {'answer': 'admission',\n",
+ " 'hint': 'synonyms for admission',\n",
+ " 'clues': [('price of admission', 'the fee charged for admission'),\n",
+ " ('admission fee', 'the fee charged for admission'),\n",
+ " ('admission charge', 'the fee charged for admission'),\n",
+ " ('admittance', 'the act of admitting someone to enter'),\n",
+ " ('admission price', 'the fee charged for admission'),\n",
+ " ('entrance money', 'the fee charged for admission'),\n",
+ " ('entrance fee', 'the fee charged for admission'),\n",
+ " ('entree', 'the right to enter'),\n",
+ " ('access', 'the right to enter'),\n",
+ " ('accession', 'the right to enter')]},\n",
+ " {'answer': 'admission_charge',\n",
+ " 'hint': 'synonyms for admission charge',\n",
+ " 'clues': [('entrance fee', 'the fee charged for admission'),\n",
+ " ('admission', 'the fee charged for admission'),\n",
+ " ('price of admission', 'the fee charged for admission'),\n",
+ " ('admission price', 'the fee charged for admission'),\n",
+ " ('entrance money', 'the fee charged for admission'),\n",
+ " ('admission fee', 'the fee charged for admission')]},\n",
+ " {'answer': 'admission_fee',\n",
+ " 'hint': 'synonyms for admission fee',\n",
+ " 'clues': [('entrance fee', 'the fee charged for admission'),\n",
+ " ('admission', 'the fee charged for admission'),\n",
+ " ('price of admission', 'the fee charged for admission'),\n",
+ " ('admission price', 'the fee charged for admission'),\n",
+ " ('entrance money', 'the fee charged for admission'),\n",
+ " ('admission charge', 'the fee charged for admission')]},\n",
+ " {'answer': 'admission_price',\n",
+ " 'hint': 'synonyms for admission price',\n",
+ " 'clues': [('admission', 'the fee charged for admission'),\n",
+ " ('price of admission', 'the fee charged for admission'),\n",
+ " ('entrance money', 'the fee charged for admission'),\n",
+ " ('entrance fee', 'the fee charged for admission'),\n",
+ " ('admission fee', 'the fee charged for admission'),\n",
+ " ('admission charge', 'the fee charged for admission')]},\n",
+ " {'answer': 'admittance',\n",
+ " 'hint': 'synonyms for admittance',\n",
+ " 'clues': [('entree', 'the right to enter'),\n",
+ " ('admission', 'the act of admitting someone to enter'),\n",
+ " ('access', 'the right to enter'),\n",
+ " ('accession', 'the right to enter')]},\n",
+ " {'answer': 'admixture',\n",
+ " 'hint': 'synonyms for admixture',\n",
+ " 'clues': [('mixture', 'the act of mixing together'),\n",
+ " ('mixing', 'the act of mixing together'),\n",
+ " ('commixture', 'the act of mixing together'),\n",
+ " ('intermixture', 'the act of mixing together')]},\n",
+ " {'answer': 'admonition',\n",
+ " 'hint': 'synonyms for admonition',\n",
+ " 'clues': [('monition',\n",
+ " 'cautionary advice about something imminent (especially imminent danger or other unpleasantness)'),\n",
+ " ('admonishment', 'a firm rebuke'),\n",
+ " ('word of advice',\n",
+ " 'cautionary advice about something imminent (especially imminent danger or other unpleasantness)'),\n",
+ " ('warning',\n",
+ " 'cautionary advice about something imminent (especially imminent danger or other unpleasantness)')]},\n",
+ " {'answer': 'ado',\n",
+ " 'hint': 'synonyms for ado',\n",
+ " 'clues': [('bustle', 'a rapid active commotion'),\n",
+ " ('hustle', 'a rapid active commotion'),\n",
+ " ('fuss', 'a rapid active commotion'),\n",
+ " ('flurry', 'a rapid active commotion'),\n",
+ " ('stir', 'a rapid active commotion')]},\n",
+ " {'answer': 'adoption',\n",
+ " 'hint': 'synonyms for adoption',\n",
+ " 'clues': [('acceptation',\n",
+ " 'the act of accepting with approval; favorable reception'),\n",
+ " ('espousal', 'the act of accepting with approval; favorable reception'),\n",
+ " ('acceptance', 'the act of accepting with approval; favorable reception'),\n",
+ " ('borrowing',\n",
+ " 'the appropriation (of ideas or words etc) from another source')]},\n",
+ " {'answer': 'adps',\n",
+ " 'hint': 'synonyms for adps',\n",
+ " 'clues': [('computer system',\n",
+ " 'a system of one or more computers and associated software with common storage'),\n",
+ " ('adenosine diphosphate',\n",
+ " 'an ester of adenosine that is converted to ATP for energy storage'),\n",
+ " ('automatic data processing system',\n",
+ " 'a system of one or more computers and associated software with common storage'),\n",
+ " ('computing system',\n",
+ " 'a system of one or more computers and associated software with common storage')]},\n",
+ " {'answer': 'adroitness',\n",
+ " 'hint': 'synonyms for adroitness',\n",
+ " 'clues': [('adeptness',\n",
+ " 'skillful performance or ability without difficulty'),\n",
+ " ('quickness', 'skillful performance or ability without difficulty'),\n",
+ " ('facility', 'skillful performance or ability without difficulty'),\n",
+ " ('deftness', 'skillful performance or ability without difficulty')]},\n",
+ " {'answer': 'advancement',\n",
+ " 'hint': 'synonyms for advancement',\n",
+ " 'clues': [('furtherance',\n",
+ " 'encouragement of the progress or growth or acceptance of something'),\n",
+ " ('progress', 'gradual improvement or growth or development'),\n",
+ " ('onward motion', 'the act of moving forward (as toward a goal)'),\n",
+ " ('promotion',\n",
+ " 'encouragement of the progress or growth or acceptance of something'),\n",
+ " ('procession', 'the act of moving forward (as toward a goal)'),\n",
+ " ('advance', 'the act of moving forward (as toward a goal)')]},\n",
+ " {'answer': 'advantageousness',\n",
+ " 'hint': 'synonyms for advantageousness',\n",
+ " 'clues': [('positiveness',\n",
+ " 'the quality of being encouraging or promising of a successful outcome'),\n",
+ " ('profitableness',\n",
+ " 'the quality of being encouraging or promising of a successful outcome'),\n",
+ " ('favorableness',\n",
+ " 'the quality of being encouraging or promising of a successful outcome'),\n",
+ " ('positivity',\n",
+ " 'the quality of being encouraging or promising of a successful outcome')]},\n",
+ " {'answer': 'advertisement',\n",
+ " 'hint': 'synonyms for advertisement',\n",
+ " 'clues': [('advertising', 'a public promotion of some product or service'),\n",
+ " ('advertizement', 'a public promotion of some product or service'),\n",
+ " ('ad', 'a public promotion of some product or service'),\n",
+ " ('advert', 'a public promotion of some product or service')]},\n",
+ " {'answer': 'advertising',\n",
+ " 'hint': 'synonyms for advertising',\n",
+ " 'clues': [('advertisement',\n",
+ " 'a public promotion of some product or service'),\n",
+ " ('ad', 'a public promotion of some product or service'),\n",
+ " ('advert', 'a public promotion of some product or service'),\n",
+ " ('publicizing',\n",
+ " 'the business of drawing public attention to goods and services'),\n",
+ " ('advertizing', 'a public promotion of some product or service')]},\n",
+ " {'answer': 'advertizement',\n",
+ " 'hint': 'synonyms for advertizement',\n",
+ " 'clues': [('advertising', 'a public promotion of some product or service'),\n",
+ " ('advertisement', 'a public promotion of some product or service'),\n",
+ " ('ad', 'a public promotion of some product or service'),\n",
+ " ('advert', 'a public promotion of some product or service')]},\n",
+ " {'answer': 'advertizing',\n",
+ " 'hint': 'synonyms for advertizing',\n",
+ " 'clues': [('advertising', 'a public promotion of some product or service'),\n",
+ " ('advertisement', 'a public promotion of some product or service'),\n",
+ " ('ad', 'a public promotion of some product or service'),\n",
+ " ('advert', 'a public promotion of some product or service')]},\n",
+ " {'answer': 'aegir',\n",
+ " 'hint': 'synonyms for aegir',\n",
+ " 'clues': [('tidal bore',\n",
+ " 'a high wave (often dangerous) caused by tidal flow (as by colliding tidal currents or in a narrow estuary)'),\n",
+ " ('bore',\n",
+ " 'a high wave (often dangerous) caused by tidal flow (as by colliding tidal currents or in a narrow estuary)'),\n",
+ " ('eagre',\n",
+ " 'a high wave (often dangerous) caused by tidal flow (as by colliding tidal currents or in a narrow estuary)'),\n",
+ " ('eager',\n",
+ " 'a high wave (often dangerous) caused by tidal flow (as by colliding tidal currents or in a narrow estuary)')]},\n",
+ " {'answer': 'aegis',\n",
+ " 'hint': 'synonyms for aegis',\n",
+ " 'clues': [('breastplate',\n",
+ " 'armor plate that protects the chest; the front part of a cuirass'),\n",
+ " ('protection', 'kindly endorsement and guidance'),\n",
+ " ('auspices', 'kindly endorsement and guidance'),\n",
+ " ('egis',\n",
+ " 'armor plate that protects the chest; the front part of a cuirass')]},\n",
+ " {'answer': 'aerial_tramway',\n",
+ " 'hint': 'synonyms for aerial tramway',\n",
+ " 'clues': [('tramway',\n",
+ " 'a conveyance that transports passengers or freight in carriers suspended from cables and supported by a series of towers'),\n",
+ " ('cable tramway',\n",
+ " 'a conveyance that transports passengers or freight in carriers suspended from cables and supported by a series of towers'),\n",
+ " ('tram',\n",
+ " 'a conveyance that transports passengers or freight in carriers suspended from cables and supported by a series of towers'),\n",
+ " ('ropeway',\n",
+ " 'a conveyance that transports passengers or freight in carriers suspended from cables and supported by a series of towers')]},\n",
+ " {'answer': 'aerosol',\n",
+ " 'hint': 'synonyms for aerosol',\n",
+ " 'clues': [('aerosol container',\n",
+ " 'a dispenser that holds a substance under pressure and that can release it as a fine spray (usually by means of a propellant gas)'),\n",
+ " ('spray can',\n",
+ " 'a dispenser that holds a substance under pressure and that can release it as a fine spray (usually by means of a propellant gas)'),\n",
+ " ('aerosol can',\n",
+ " 'a dispenser that holds a substance under pressure and that can release it as a fine spray (usually by means of a propellant gas)'),\n",
+ " ('aerosol bomb',\n",
+ " 'a dispenser that holds a substance under pressure and that can release it as a fine spray (usually by means of a propellant gas)')]},\n",
+ " {'answer': 'aerosol_bomb',\n",
+ " 'hint': 'synonyms for aerosol bomb',\n",
+ " 'clues': [('vacuum bomb', 'a bomb that uses a fuel-air explosive'),\n",
+ " ('aerosol container',\n",
+ " 'a dispenser that holds a substance under pressure and that can release it as a fine spray (usually by means of a propellant gas)'),\n",
+ " ('spray can',\n",
+ " 'a dispenser that holds a substance under pressure and that can release it as a fine spray (usually by means of a propellant gas)'),\n",
+ " ('volume-detonation bomb', 'a bomb that uses a fuel-air explosive'),\n",
+ " ('thermobaric bomb', 'a bomb that uses a fuel-air explosive'),\n",
+ " ('fuel-air bomb', 'a bomb that uses a fuel-air explosive'),\n",
+ " ('aerosol',\n",
+ " 'a dispenser that holds a substance under pressure and that can release it as a fine spray (usually by means of a propellant gas)'),\n",
+ " ('aerosol can',\n",
+ " 'a dispenser that holds a substance under pressure and that can release it as a fine spray (usually by means of a propellant gas)')]},\n",
+ " {'answer': 'aerosol_can',\n",
+ " 'hint': 'synonyms for aerosol can',\n",
+ " 'clues': [('aerosol container',\n",
+ " 'a dispenser that holds a substance under pressure and that can release it as a fine spray (usually by means of a propellant gas)'),\n",
+ " ('aerosol',\n",
+ " 'a dispenser that holds a substance under pressure and that can release it as a fine spray (usually by means of a propellant gas)'),\n",
+ " ('spray can',\n",
+ " 'a dispenser that holds a substance under pressure and that can release it as a fine spray (usually by means of a propellant gas)'),\n",
+ " ('aerosol bomb',\n",
+ " 'a dispenser that holds a substance under pressure and that can release it as a fine spray (usually by means of a propellant gas)')]},\n",
+ " {'answer': 'aerosol_container',\n",
+ " 'hint': 'synonyms for aerosol container',\n",
+ " 'clues': [('spray can',\n",
+ " 'a dispenser that holds a substance under pressure and that can release it as a fine spray (usually by means of a propellant gas)'),\n",
+ " ('aerosol',\n",
+ " 'a dispenser that holds a substance under pressure and that can release it as a fine spray (usually by means of a propellant gas)'),\n",
+ " ('aerosol can',\n",
+ " 'a dispenser that holds a substance under pressure and that can release it as a fine spray (usually by means of a propellant gas)'),\n",
+ " ('aerosol bomb',\n",
+ " 'a dispenser that holds a substance under pressure and that can release it as a fine spray (usually by means of a propellant gas)')]},\n",
+ " {'answer': 'aesthesis',\n",
+ " 'hint': 'synonyms for aesthesis',\n",
+ " 'clues': [('esthesis',\n",
+ " 'an unelaborated elementary awareness of stimulation'),\n",
+ " ('sense impression',\n",
+ " 'an unelaborated elementary awareness of stimulation'),\n",
+ " ('sense datum', 'an unelaborated elementary awareness of stimulation'),\n",
+ " ('sense experience',\n",
+ " 'an unelaborated elementary awareness of stimulation'),\n",
+ " ('sensation', 'an unelaborated elementary awareness of stimulation')]},\n",
+ " {'answer': 'affability',\n",
+ " 'hint': 'synonyms for affability',\n",
+ " 'clues': [('bonhomie',\n",
+ " 'a disposition to be friendly and approachable (easy to talk to)'),\n",
+ " ('affableness',\n",
+ " 'a disposition to be friendly and approachable (easy to talk to)'),\n",
+ " ('amiability',\n",
+ " 'a disposition to be friendly and approachable (easy to talk to)'),\n",
+ " ('geniality',\n",
+ " 'a disposition to be friendly and approachable (easy to talk to)'),\n",
+ " ('amiableness',\n",
+ " 'a disposition to be friendly and approachable (easy to talk to)')]},\n",
+ " {'answer': 'affableness',\n",
+ " 'hint': 'synonyms for affableness',\n",
+ " 'clues': [('bonhomie',\n",
+ " 'a disposition to be friendly and approachable (easy to talk to)'),\n",
+ " ('amiability',\n",
+ " 'a disposition to be friendly and approachable (easy to talk to)'),\n",
+ " ('affability',\n",
+ " 'a disposition to be friendly and approachable (easy to talk to)'),\n",
+ " ('geniality',\n",
+ " 'a disposition to be friendly and approachable (easy to talk to)'),\n",
+ " ('amiableness',\n",
+ " 'a disposition to be friendly and approachable (easy to talk to)')]},\n",
+ " {'answer': 'affair',\n",
+ " 'hint': 'synonyms for affair',\n",
+ " 'clues': [('social function', 'a vaguely specified social event'),\n",
+ " ('matter', 'a vaguely specified concern'),\n",
+ " ('thing', 'a vaguely specified concern'),\n",
+ " ('occasion', 'a vaguely specified social event'),\n",
+ " ('function', 'a vaguely specified social event'),\n",
+ " ('social occasion', 'a vaguely specified social event')]},\n",
+ " {'answer': 'affairs',\n",
+ " 'hint': 'synonyms for affairs',\n",
+ " 'clues': [('affair', 'a vaguely specified social event'),\n",
+ " ('personal matters', 'matters of personal concern'),\n",
+ " ('social occasion', 'a vaguely specified social event'),\n",
+ " ('matter', 'a vaguely specified concern'),\n",
+ " ('thing', 'a vaguely specified concern'),\n",
+ " ('personal business', 'matters of personal concern'),\n",
+ " ('occasion', 'a vaguely specified social event'),\n",
+ " ('function', 'a vaguely specified social event'),\n",
+ " ('social function', 'a vaguely specified social event')]},\n",
+ " {'answer': 'affection',\n",
+ " 'hint': 'synonyms for affection',\n",
+ " 'clues': [('tenderness', 'a positive feeling of liking'),\n",
+ " ('fondness', 'a positive feeling of liking'),\n",
+ " ('warmheartedness', 'a positive feeling of liking'),\n",
+ " ('warmness', 'a positive feeling of liking'),\n",
+ " ('philia', 'a positive feeling of liking'),\n",
+ " ('heart', 'a positive feeling of liking'),\n",
+ " ('affectionateness', 'a positive feeling of liking')]},\n",
+ " {'answer': 'affectionateness',\n",
+ " 'hint': 'synonyms for affectionateness',\n",
+ " 'clues': [('philia', 'a positive feeling of liking'),\n",
+ " ('tenderness', 'a positive feeling of liking'),\n",
+ " ('heart', 'a positive feeling of liking'),\n",
+ " ('warmth', 'a quality proceeding from feelings of affection or love'),\n",
+ " ('lovingness', 'a quality proceeding from feelings of affection or love'),\n",
+ " ('fondness', 'a quality proceeding from feelings of affection or love'),\n",
+ " ('warmheartedness', 'a positive feeling of liking'),\n",
+ " ('warmness', 'a positive feeling of liking'),\n",
+ " ('affection', 'a positive feeling of liking')]},\n",
+ " {'answer': 'affirmation',\n",
+ " 'hint': 'synonyms for affirmation',\n",
+ " 'clues': [('avouchment',\n",
+ " 'a statement asserting the existence or the truth of something'),\n",
+ " ('statement', 'the act of affirming or asserting or stating something'),\n",
+ " ('assertion', 'the act of affirming or asserting or stating something'),\n",
+ " ('avowal',\n",
+ " 'a statement asserting the existence or the truth of something')]},\n",
+ " {'answer': 'affray',\n",
+ " 'hint': 'synonyms for affray',\n",
+ " 'clues': [('fray', 'a noisy fight'),\n",
+ " ('disturbance', 'a noisy fight'),\n",
+ " ('altercation', 'noisy quarrel'),\n",
+ " ('fracas', 'noisy quarrel'),\n",
+ " ('ruffle', 'a noisy fight')]},\n",
+ " {'answer': 'after_part',\n",
+ " 'hint': 'synonyms for after part',\n",
+ " 'clues': [('quarter', 'the rear part of a ship'),\n",
+ " ('poop', 'the rear part of a ship'),\n",
+ " ('tail', 'the rear part of a ship'),\n",
+ " ('stern', 'the rear part of a ship')]},\n",
+ " {'answer': 'age',\n",
+ " 'hint': 'synonyms for age',\n",
+ " 'clues': [('eld',\n",
+ " 'a time of life (usually defined in years) at which some particular qualification or power arises'),\n",
+ " ('years', 'a late time of life'),\n",
+ " ('old age', 'a late time of life'),\n",
+ " ('historic period', 'an era of history having some distinctive feature'),\n",
+ " ('long time', 'a prolonged period of time'),\n",
+ " ('geezerhood', 'a late time of life')]},\n",
+ " {'answer': 'agency',\n",
+ " 'hint': 'synonyms for agency',\n",
+ " 'clues': [('bureau', 'an administrative unit of government'),\n",
+ " ('office', 'an administrative unit of government'),\n",
+ " ('federal agency', 'an administrative unit of government'),\n",
+ " ('way', 'how a result is obtained or an end is achieved'),\n",
+ " ('government agency', 'an administrative unit of government'),\n",
+ " ('authority', 'an administrative unit of government'),\n",
+ " ('means', 'how a result is obtained or an end is achieved')]},\n",
+ " {'answer': 'agenda',\n",
+ " 'hint': 'synonyms for agenda',\n",
+ " 'clues': [('docket',\n",
+ " 'a temporally organized plan for matters to be attended to'),\n",
+ " ('agendum', 'a list of matters to be taken up (as at a meeting)'),\n",
+ " ('schedule', 'a temporally organized plan for matters to be attended to'),\n",
+ " ('order of business',\n",
+ " 'a list of matters to be taken up (as at a meeting)')]},\n",
+ " {'answer': 'aggravation',\n",
+ " 'hint': 'synonyms for aggravation',\n",
+ " 'clues': [('provocation',\n",
+ " 'unfriendly behavior that causes anger or resentment'),\n",
+ " ('irritation', 'unfriendly behavior that causes anger or resentment'),\n",
+ " ('exacerbation',\n",
+ " 'action that makes a problem or a disease (or its symptoms) worse'),\n",
+ " ('exasperation', 'an exasperated feeling of annoyance')]},\n",
+ " {'answer': 'aggregation',\n",
+ " 'hint': 'synonyms for aggregation',\n",
+ " 'clues': [('collecting', 'the act of gathering something together'),\n",
+ " ('accumulation',\n",
+ " 'several things grouped together or considered as a whole'),\n",
+ " ('assemblage',\n",
+ " 'several things grouped together or considered as a whole'),\n",
+ " ('assembling', 'the act of gathering something together')]},\n",
+ " {'answer': 'agility',\n",
+ " 'hint': 'synonyms for agility',\n",
+ " 'clues': [('legerity',\n",
+ " 'the gracefulness of a person or animal that is quick and nimble'),\n",
+ " ('lightness',\n",
+ " 'the gracefulness of a person or animal that is quick and nimble'),\n",
+ " ('lightsomeness',\n",
+ " 'the gracefulness of a person or animal that is quick and nimble'),\n",
+ " ('nimbleness',\n",
+ " 'the gracefulness of a person or animal that is quick and nimble')]},\n",
+ " {'answer': 'agitation',\n",
+ " 'hint': 'synonyms for agitation',\n",
+ " 'clues': [('hullabaloo', 'disturbance usually in protest'),\n",
+ " ('excitement', 'disturbance usually in protest'),\n",
+ " ('upheaval', 'disturbance usually in protest'),\n",
+ " ('turmoil', 'disturbance usually in protest')]},\n",
+ " {'answer': 'agreement',\n",
+ " 'hint': 'synonyms for agreement',\n",
+ " 'clues': [('arrangement', 'the thing arranged or agreed to'),\n",
+ " ('understanding',\n",
+ " 'the statement (oral or written) of an exchange of promises'),\n",
+ " ('correspondence', 'compatibility of observations'),\n",
+ " ('concord',\n",
+ " 'the determination of grammatical inflection on the basis of word relations')]},\n",
+ " {'answer': 'agriculture',\n",
+ " 'hint': 'synonyms for agriculture',\n",
+ " 'clues': [('farming',\n",
+ " 'the practice of cultivating the land or raising stock'),\n",
+ " ('husbandry', 'the practice of cultivating the land or raising stock'),\n",
+ " ('factory farm', 'a large-scale farming enterprise'),\n",
+ " ('agribusiness', 'a large-scale farming enterprise')]},\n",
+ " {'answer': 'aid',\n",
+ " 'hint': 'synonyms for aid',\n",
+ " 'clues': [('help', 'a resource'),\n",
+ " ('assistance',\n",
+ " 'the activity of contributing to the fulfillment of a need or furtherance of an effort or purpose'),\n",
+ " ('attention',\n",
+ " 'the work of providing treatment for or attending to someone or something'),\n",
+ " ('tending',\n",
+ " 'the work of providing treatment for or attending to someone or something'),\n",
+ " ('assist',\n",
+ " 'the activity of contributing to the fulfillment of a need or furtherance of an effort or purpose'),\n",
+ " ('care',\n",
+ " 'the work of providing treatment for or attending to someone or something'),\n",
+ " ('financial aid', 'money to support a worthy person or cause'),\n",
+ " ('economic aid', 'money to support a worthy person or cause')]},\n",
+ " {'answer': 'aids',\n",
+ " 'hint': 'synonyms for aids',\n",
+ " 'clues': [('aid', 'a resource'),\n",
+ " ('assistance',\n",
+ " 'the activity of contributing to the fulfillment of a need or furtherance of an effort or purpose'),\n",
+ " ('attention',\n",
+ " 'the work of providing treatment for or attending to someone or something'),\n",
+ " ('help',\n",
+ " 'the activity of contributing to the fulfillment of a need or furtherance of an effort or purpose'),\n",
+ " ('tending',\n",
+ " 'the work of providing treatment for or attending to someone or something'),\n",
+ " ('financial aid', 'money to support a worthy person or cause'),\n",
+ " ('assist',\n",
+ " 'the activity of contributing to the fulfillment of a need or furtherance of an effort or purpose'),\n",
+ " ('care',\n",
+ " 'the work of providing treatment for or attending to someone or something'),\n",
+ " ('economic aid', 'money to support a worthy person or cause')]},\n",
+ " {'answer': 'aim',\n",
+ " 'hint': 'synonyms for aim',\n",
+ " 'clues': [('bearing',\n",
+ " 'the direction or path along which something moves or along which it lies'),\n",
+ " ('intention',\n",
+ " 'an anticipated outcome that is intended or that guides your planned actions'),\n",
+ " ('objective',\n",
+ " 'the goal intended to be attained (and which is believed to be attainable)'),\n",
+ " ('intent',\n",
+ " 'an anticipated outcome that is intended or that guides your planned actions'),\n",
+ " ('target',\n",
+ " 'the goal intended to be attained (and which is believed to be attainable)'),\n",
+ " ('purpose',\n",
+ " 'an anticipated outcome that is intended or that guides your planned actions'),\n",
+ " ('object',\n",
+ " 'the goal intended to be attained (and which is believed to be attainable)'),\n",
+ " ('design',\n",
+ " 'an anticipated outcome that is intended or that guides your planned actions'),\n",
+ " ('heading',\n",
+ " 'the direction or path along which something moves or along which it lies')]},\n",
+ " {'answer': 'air',\n",
+ " 'hint': 'synonyms for air',\n",
+ " 'clues': [('atmosphere', 'the mass of air surrounding the Earth'),\n",
+ " ('zephyr', 'a slight wind (usually refreshing)'),\n",
+ " ('tune', 'a succession of notes forming a distinctive sequence'),\n",
+ " ('melodic line', 'a succession of notes forming a distinctive sequence'),\n",
+ " ('breeze', 'a slight wind (usually refreshing)'),\n",
+ " ('melodic phrase',\n",
+ " 'a succession of notes forming a distinctive sequence'),\n",
+ " ('line', 'a succession of notes forming a distinctive sequence'),\n",
+ " ('airwave', 'medium for radio and television broadcasting'),\n",
+ " ('aviation', 'travel via aircraft'),\n",
+ " ('strain', 'a succession of notes forming a distinctive sequence'),\n",
+ " ('melody', 'a succession of notes forming a distinctive sequence'),\n",
+ " ('air travel', 'travel via aircraft'),\n",
+ " ('gentle wind', 'a slight wind (usually refreshing)'),\n",
+ " ('aura',\n",
+ " 'a distinctive but intangible quality surrounding a person or thing')]},\n",
+ " {'answer': 'air-sleeve',\n",
+ " 'hint': 'synonyms for air-sleeve',\n",
+ " 'clues': [('windsock',\n",
+ " 'a truncated cloth cone mounted on a mast; used (e.g., at airports) to show the direction of the wind'),\n",
+ " ('wind sleeve',\n",
+ " 'a truncated cloth cone mounted on a mast; used (e.g., at airports) to show the direction of the wind'),\n",
+ " ('air sock',\n",
+ " 'a truncated cloth cone mounted on a mast; used (e.g., at airports) to show the direction of the wind'),\n",
+ " ('drogue',\n",
+ " 'a truncated cloth cone mounted on a mast; used (e.g., at airports) to show the direction of the wind'),\n",
+ " ('sock',\n",
+ " 'a truncated cloth cone mounted on a mast; used (e.g., at airports) to show the direction of the wind'),\n",
+ " ('wind cone',\n",
+ " 'a truncated cloth cone mounted on a mast; used (e.g., at airports) to show the direction of the wind')]},\n",
+ " {'answer': 'air_castle',\n",
+ " 'hint': 'synonyms for air castle',\n",
+ " 'clues': [('castle in Spain', 'absentminded dreaming while awake'),\n",
+ " ('castle in the air', 'absentminded dreaming while awake'),\n",
+ " ('daydream', 'absentminded dreaming while awake'),\n",
+ " ('oneirism', 'absentminded dreaming while awake'),\n",
+ " ('revery', 'absentminded dreaming while awake'),\n",
+ " ('reverie', 'absentminded dreaming while awake')]},\n",
+ " {'answer': 'air_mile',\n",
+ " 'hint': 'synonyms for air mile',\n",
+ " 'clues': [('knot',\n",
+ " 'a unit of length used in navigation; exactly 1,852 meters; historically based on the distance spanned by one minute of arc in latitude'),\n",
+ " ('mi',\n",
+ " 'a unit of length used in navigation; exactly 1,852 meters; historically based on the distance spanned by one minute of arc in latitude'),\n",
+ " ('mile',\n",
+ " 'a unit of length used in navigation; exactly 1,852 meters; historically based on the distance spanned by one minute of arc in latitude'),\n",
+ " ('nautical mile',\n",
+ " 'a unit of length used in navigation; exactly 1,852 meters; historically based on the distance spanned by one minute of arc in latitude'),\n",
+ " ('international nautical mile',\n",
+ " 'a unit of length used in navigation; exactly 1,852 meters; historically based on the distance spanned by one minute of arc in latitude'),\n",
+ " ('naut mi',\n",
+ " 'a unit of length used in navigation; exactly 1,852 meters; historically based on the distance spanned by one minute of arc in latitude')]},\n",
+ " {'answer': 'air_sock',\n",
+ " 'hint': 'synonyms for air sock',\n",
+ " 'clues': [('air-sleeve',\n",
+ " 'a truncated cloth cone mounted on a mast; used (e.g., at airports) to show the direction of the wind'),\n",
+ " ('windsock',\n",
+ " 'a truncated cloth cone mounted on a mast; used (e.g., at airports) to show the direction of the wind'),\n",
+ " ('wind sleeve',\n",
+ " 'a truncated cloth cone mounted on a mast; used (e.g., at airports) to show the direction of the wind'),\n",
+ " ('drogue',\n",
+ " 'a truncated cloth cone mounted on a mast; used (e.g., at airports) to show the direction of the wind'),\n",
+ " ('sock',\n",
+ " 'a truncated cloth cone mounted on a mast; used (e.g., at airports) to show the direction of the wind'),\n",
+ " ('wind cone',\n",
+ " 'a truncated cloth cone mounted on a mast; used (e.g., at airports) to show the direction of the wind')]},\n",
+ " {'answer': 'airing',\n",
+ " 'hint': 'synonyms for airing',\n",
+ " 'clues': [('dissemination',\n",
+ " 'the opening of a subject to widespread discussion and debate'),\n",
+ " ('spreading',\n",
+ " 'the opening of a subject to widespread discussion and debate'),\n",
+ " ('public exposure',\n",
+ " 'the opening of a subject to widespread discussion and debate'),\n",
+ " ('ventilation',\n",
+ " 'the act of supplying fresh air and getting rid of foul air')]},\n",
+ " {'answer': 'airs',\n",
+ " 'hint': 'synonyms for airs',\n",
+ " 'clues': [('air', 'the region above the ground'),\n",
+ " ('atmosphere', 'the mass of air surrounding the Earth'),\n",
+ " ('tune', 'a succession of notes forming a distinctive sequence'),\n",
+ " ('melodic line', 'a succession of notes forming a distinctive sequence'),\n",
+ " ('airwave', 'medium for radio and television broadcasting'),\n",
+ " ('line', 'a succession of notes forming a distinctive sequence'),\n",
+ " ('air travel', 'travel via aircraft'),\n",
+ " ('aura',\n",
+ " 'a distinctive but intangible quality surrounding a person or thing'),\n",
+ " ('zephyr', 'a slight wind (usually refreshing)'),\n",
+ " ('breeze', 'a slight wind (usually refreshing)'),\n",
+ " ('melodic phrase',\n",
+ " 'a succession of notes forming a distinctive sequence'),\n",
+ " ('aviation', 'travel via aircraft'),\n",
+ " ('melody', 'a succession of notes forming a distinctive sequence'),\n",
+ " ('strain', 'a succession of notes forming a distinctive sequence'),\n",
+ " ('pose', 'affected manners intended to impress others'),\n",
+ " ('gentle wind', 'a slight wind (usually refreshing)')]},\n",
+ " {'answer': 'airstream',\n",
+ " 'hint': 'synonyms for airstream',\n",
+ " 'clues': [('backwash',\n",
+ " 'the flow of air that is driven backwards by an aircraft propeller'),\n",
+ " ('wash',\n",
+ " 'the flow of air that is driven backwards by an aircraft propeller'),\n",
+ " ('race',\n",
+ " 'the flow of air that is driven backwards by an aircraft propeller'),\n",
+ " ('slipstream',\n",
+ " 'the flow of air that is driven backwards by an aircraft propeller')]},\n",
+ " {'answer': 'airway',\n",
+ " 'hint': 'synonyms for airway',\n",
+ " 'clues': [('air passage',\n",
+ " 'a duct that provides ventilation (as in mines)'),\n",
+ " ('airline',\n",
+ " 'a commercial enterprise that provides scheduled flights for passengers'),\n",
+ " ('skyway',\n",
+ " 'a designated route followed by airplanes in flying from one airport to another'),\n",
+ " ('airline business',\n",
+ " 'a commercial enterprise that provides scheduled flights for passengers'),\n",
+ " ('air lane',\n",
+ " 'a designated route followed by airplanes in flying from one airport to another'),\n",
+ " ('air duct', 'a duct that provides ventilation (as in mines)'),\n",
+ " ('flight path',\n",
+ " 'a designated route followed by airplanes in flying from one airport to another')]},\n",
+ " {'answer': 'alarm',\n",
+ " 'hint': 'synonyms for alarm',\n",
+ " 'clues': [('warning signal',\n",
+ " 'an automatic signal (usually a sound) warning of danger'),\n",
+ " ('consternation', 'fear resulting from the awareness of danger'),\n",
+ " ('alarum', 'an automatic signal (usually a sound) warning of danger'),\n",
+ " ('alarm system',\n",
+ " 'a device that signals the occurrence of some undesirable event'),\n",
+ " ('alarm clock', 'a clock that wakes a sleeper at some preset time'),\n",
+ " ('warning device',\n",
+ " 'a device that signals the occurrence of some undesirable event'),\n",
+ " ('dismay', 'fear resulting from the awareness of danger'),\n",
+ " ('alert', 'an automatic signal (usually a sound) warning of danger')]},\n",
+ " {'answer': 'alcohol',\n",
+ " 'hint': 'synonyms for alcohol',\n",
+ " 'clues': [('alcoholic drink',\n",
+ " 'a liquor or brew containing alcohol as the active agent'),\n",
+ " ('alcoholic beverage',\n",
+ " 'a liquor or brew containing alcohol as the active agent'),\n",
+ " ('intoxicant', 'a liquor or brew containing alcohol as the active agent'),\n",
+ " ('inebriant',\n",
+ " 'a liquor or brew containing alcohol as the active agent')]},\n",
+ " {'answer': 'alcoholic_beverage',\n",
+ " 'hint': 'synonyms for alcoholic beverage',\n",
+ " 'clues': [('alcoholic drink',\n",
+ " 'a liquor or brew containing alcohol as the active agent'),\n",
+ " ('intoxicant', 'a liquor or brew containing alcohol as the active agent'),\n",
+ " ('alcohol', 'a liquor or brew containing alcohol as the active agent'),\n",
+ " ('inebriant',\n",
+ " 'a liquor or brew containing alcohol as the active agent')]},\n",
+ " {'answer': 'alcoholic_drink',\n",
+ " 'hint': 'synonyms for alcoholic drink',\n",
+ " 'clues': [('alcoholic beverage',\n",
+ " 'a liquor or brew containing alcohol as the active agent'),\n",
+ " ('intoxicant', 'a liquor or brew containing alcohol as the active agent'),\n",
+ " ('alcohol', 'a liquor or brew containing alcohol as the active agent'),\n",
+ " ('inebriant',\n",
+ " 'a liquor or brew containing alcohol as the active agent')]},\n",
+ " {'answer': 'alertness',\n",
+ " 'hint': 'synonyms for alertness',\n",
+ " 'clues': [('on the qui vive', 'lively attentiveness'),\n",
+ " ('wakefulness', 'the process of paying close and continuous attention'),\n",
+ " ('watchfulness', 'the process of paying close and continuous attention'),\n",
+ " ('vigilance', 'the process of paying close and continuous attention'),\n",
+ " ('sharp-sightedness', 'lively attentiveness')]},\n",
+ " {'answer': 'alignment',\n",
+ " 'hint': 'synonyms for alignment',\n",
+ " 'clues': [('alinement',\n",
+ " 'an organization of people (or countries) involved in a pact or treaty'),\n",
+ " ('alliance',\n",
+ " 'an organization of people (or countries) involved in a pact or treaty'),\n",
+ " ('coalition',\n",
+ " 'an organization of people (or countries) involved in a pact or treaty'),\n",
+ " ('conjunction',\n",
+ " '(astronomy) apparent meeting or passing of two or more celestial bodies in the same degree of the zodiac')]},\n",
+ " {'answer': 'aliment',\n",
+ " 'hint': 'synonyms for aliment',\n",
+ " 'clues': [('alimentation', 'a source of materials to nourish the body'),\n",
+ " ('sustenance', 'a source of materials to nourish the body'),\n",
+ " ('nutriment', 'a source of materials to nourish the body'),\n",
+ " ('nutrition', 'a source of materials to nourish the body'),\n",
+ " ('victuals', 'a source of materials to nourish the body'),\n",
+ " ('nourishment', 'a source of materials to nourish the body')]},\n",
+ " {'answer': 'alimentation',\n",
+ " 'hint': 'synonyms for alimentation',\n",
+ " 'clues': [('aliment', 'a source of materials to nourish the body'),\n",
+ " ('sustenance', 'a source of materials to nourish the body'),\n",
+ " ('nutriment', 'a source of materials to nourish the body'),\n",
+ " ('nutrition', 'a source of materials to nourish the body'),\n",
+ " ('victuals', 'a source of materials to nourish the body'),\n",
+ " ('nourishment', 'a source of materials to nourish the body'),\n",
+ " ('feeding', 'the act of supplying food and nourishment')]},\n",
+ " {'answer': 'alkane',\n",
+ " 'hint': 'synonyms for alkane',\n",
+ " 'clues': [('paraffin series',\n",
+ " 'a series of non-aromatic saturated hydrocarbons with the general formula CnH(2n+2)'),\n",
+ " ('methane series',\n",
+ " 'a series of non-aromatic saturated hydrocarbons with the general formula CnH(2n+2)'),\n",
+ " ('alkane series',\n",
+ " 'a series of non-aromatic saturated hydrocarbons with the general formula CnH(2n+2)'),\n",
+ " ('paraffin',\n",
+ " 'a series of non-aromatic saturated hydrocarbons with the general formula CnH(2n+2)')]},\n",
+ " {'answer': 'alkane_series',\n",
+ " 'hint': 'synonyms for alkane series',\n",
+ " 'clues': [('paraffin series',\n",
+ " 'a series of non-aromatic saturated hydrocarbons with the general formula CnH(2n+2)'),\n",
+ " ('paraffin',\n",
+ " 'a series of non-aromatic saturated hydrocarbons with the general formula CnH(2n+2)'),\n",
+ " ('methane series',\n",
+ " 'a series of non-aromatic saturated hydrocarbons with the general formula CnH(2n+2)'),\n",
+ " ('alkane',\n",
+ " 'a series of non-aromatic saturated hydrocarbons with the general formula CnH(2n+2)')]},\n",
+ " {'answer': 'allegiance',\n",
+ " 'hint': 'synonyms for allegiance',\n",
+ " 'clues': [('commitment',\n",
+ " 'the act of binding yourself (intellectually or emotionally) to a course of action'),\n",
+ " ('loyalty',\n",
+ " 'the act of binding yourself (intellectually or emotionally) to a course of action'),\n",
+ " ('fealty',\n",
+ " 'the loyalty that citizens owe to their country (or subjects to their sovereign)'),\n",
+ " ('dedication',\n",
+ " 'the act of binding yourself (intellectually or emotionally) to a course of action')]},\n",
+ " {'answer': 'allegory',\n",
+ " 'hint': 'synonyms for allegory',\n",
+ " 'clues': [('emblem', 'a visible symbol representing an abstract idea'),\n",
+ " ('parable', 'a short moral story (often with animal characters)'),\n",
+ " ('apologue', 'a short moral story (often with animal characters)'),\n",
+ " ('fable', 'a short moral story (often with animal characters)')]},\n",
+ " {'answer': 'alleviation',\n",
+ " 'hint': 'synonyms for alleviation',\n",
+ " 'clues': [('relief',\n",
+ " 'the act of reducing something unpleasant (as pain or annoyance)'),\n",
+ " ('easement',\n",
+ " 'the act of reducing something unpleasant (as pain or annoyance)'),\n",
+ " ('assuagement',\n",
+ " 'the feeling that comes when something burdensome is removed or reduced'),\n",
+ " ('easing',\n",
+ " 'the act of reducing something unpleasant (as pain or annoyance)')]},\n",
+ " {'answer': 'alley',\n",
+ " 'hint': 'synonyms for alley',\n",
+ " 'clues': [('alleyway', 'a narrow street with walls on both sides'),\n",
+ " ('skittle alley',\n",
+ " 'a lane down which a bowling ball is rolled toward pins'),\n",
+ " ('back street', 'a narrow street with walls on both sides'),\n",
+ " ('bowling alley',\n",
+ " 'a lane down which a bowling ball is rolled toward pins')]},\n",
+ " {'answer': 'alliance',\n",
+ " 'hint': 'synonyms for alliance',\n",
+ " 'clues': [('coalition',\n",
+ " 'an organization of people (or countries) involved in a pact or treaty'),\n",
+ " ('alinement',\n",
+ " 'an organization of people (or countries) involved in a pact or treaty'),\n",
+ " ('bond', 'a connection based on kinship or marriage or common interest'),\n",
+ " ('confederation', 'the act of forming an alliance or confederation')]},\n",
+ " {'answer': 'allocation',\n",
+ " 'hint': 'synonyms for allocation',\n",
+ " 'clues': [('allotment', 'a share set aside for a specific purpose'),\n",
+ " ('storage allocation',\n",
+ " '(computer science) the assignment of particular areas of a magnetic disk to particular data or instructions'),\n",
+ " ('parceling',\n",
+ " 'the act of distributing by allotting or apportioning; distribution according to a plan'),\n",
+ " ('apportionment',\n",
+ " 'the act of distributing by allotting or apportioning; distribution according to a plan'),\n",
+ " ('apportioning',\n",
+ " 'the act of distributing by allotting or apportioning; distribution according to a plan'),\n",
+ " ('assignation',\n",
+ " 'the act of distributing by allotting or apportioning; distribution according to a plan')]},\n",
+ " {'answer': 'allotment',\n",
+ " 'hint': 'synonyms for allotment',\n",
+ " 'clues': [('allocation',\n",
+ " 'the act of distributing by allotting or apportioning; distribution according to a plan'),\n",
+ " ('parceling',\n",
+ " 'the act of distributing by allotting or apportioning; distribution according to a plan'),\n",
+ " ('apportionment',\n",
+ " 'the act of distributing by allotting or apportioning; distribution according to a plan'),\n",
+ " ('apportioning',\n",
+ " 'the act of distributing by allotting or apportioning; distribution according to a plan'),\n",
+ " ('assignation',\n",
+ " 'the act of distributing by allotting or apportioning; distribution according to a plan')]},\n",
+ " {'answer': 'allowance',\n",
+ " 'hint': 'synonyms for allowance',\n",
+ " 'clues': [('valuation account',\n",
+ " \"a reserve fund created by a charge against profits in order to provide for changes in the value of a company's assets\"),\n",
+ " ('leeway',\n",
+ " 'a permissible difference; allowing some freedom to move within limits'),\n",
+ " ('margin',\n",
+ " 'a permissible difference; allowing some freedom to move within limits'),\n",
+ " ('tolerance',\n",
+ " 'a permissible difference; allowing some freedom to move within limits'),\n",
+ " ('adjustment',\n",
+ " 'an amount added or deducted on the basis of qualifying circumstances'),\n",
+ " ('valuation reserve',\n",
+ " \"a reserve fund created by a charge against profits in order to provide for changes in the value of a company's assets\"),\n",
+ " ('allowance account',\n",
+ " \"a reserve fund created by a charge against profits in order to provide for changes in the value of a company's assets\")]},\n",
+ " {'answer': 'alluvion',\n",
+ " 'hint': 'synonyms for alluvion',\n",
+ " 'clues': [('alluvium',\n",
+ " 'clay or silt or gravel carried by rushing streams and deposited where the stream slows down'),\n",
+ " ('flood',\n",
+ " 'the rising of a body of water and its overflowing onto normally dry land'),\n",
+ " ('alluvial deposit',\n",
+ " 'clay or silt or gravel carried by rushing streams and deposited where the stream slows down'),\n",
+ " ('deluge',\n",
+ " 'the rising of a body of water and its overflowing onto normally dry land'),\n",
+ " ('inundation',\n",
+ " 'the rising of a body of water and its overflowing onto normally dry land'),\n",
+ " ('alluvial sediment',\n",
+ " 'clay or silt or gravel carried by rushing streams and deposited where the stream slows down')]},\n",
+ " {'answer': 'aloofness',\n",
+ " 'hint': 'synonyms for aloofness',\n",
+ " 'clues': [('standoffishness',\n",
+ " 'a disposition to be distant and unsympathetic in manner'),\n",
+ " ('remoteness', 'a disposition to be distant and unsympathetic in manner'),\n",
+ " ('withdrawnness',\n",
+ " 'a disposition to be distant and unsympathetic in manner'),\n",
+ " ('distance', 'indifference by personal withdrawal')]},\n",
+ " {'answer': 'alteration',\n",
+ " 'hint': 'synonyms for alteration',\n",
+ " 'clues': [('modification',\n",
+ " 'the act of making something different (as e.g. the size of a garment)'),\n",
+ " ('revision',\n",
+ " 'the act of revising or altering (involving reconsideration and modification)'),\n",
+ " ('change',\n",
+ " 'an event that occurs when something passes from one state or phase to another'),\n",
+ " ('adjustment',\n",
+ " 'the act of making something different (as e.g. the size of a garment)')]},\n",
+ " {'answer': 'ambit',\n",
+ " 'hint': 'synonyms for ambit',\n",
+ " 'clues': [('range',\n",
+ " 'an area in which something acts or operates or has power or control:'),\n",
+ " ('reach',\n",
+ " 'an area in which something acts or operates or has power or control:'),\n",
+ " ('scope',\n",
+ " 'an area in which something acts or operates or has power or control:'),\n",
+ " ('compass',\n",
+ " 'an area in which something acts or operates or has power or control:'),\n",
+ " ('orbit',\n",
+ " 'an area in which something acts or operates or has power or control:')]},\n",
+ " {'answer': 'amble',\n",
+ " 'hint': 'synonyms for amble',\n",
+ " 'clues': [('stroll', 'a leisurely walk (usually in some public place)'),\n",
+ " ('saunter', 'a leisurely walk (usually in some public place)'),\n",
+ " ('promenade', 'a leisurely walk (usually in some public place)'),\n",
+ " ('perambulation', 'a leisurely walk (usually in some public place)')]},\n",
+ " {'answer': 'ambo',\n",
+ " 'hint': 'synonyms for ambo',\n",
+ " 'clues': [('stump',\n",
+ " 'a platform raised above the surrounding level to give prominence to the person on it'),\n",
+ " ('dais',\n",
+ " 'a platform raised above the surrounding level to give prominence to the person on it'),\n",
+ " ('rostrum',\n",
+ " 'a platform raised above the surrounding level to give prominence to the person on it'),\n",
+ " ('pulpit',\n",
+ " 'a platform raised above the surrounding level to give prominence to the person on it'),\n",
+ " ('soapbox',\n",
+ " 'a platform raised above the surrounding level to give prominence to the person on it'),\n",
+ " ('podium',\n",
+ " 'a platform raised above the surrounding level to give prominence to the person on it')]},\n",
+ " {'answer': 'amends',\n",
+ " 'hint': 'synonyms for amends',\n",
+ " 'clues': [('damages',\n",
+ " 'a sum of money paid in compensation for loss or injury'),\n",
+ " ('restitution', 'a sum of money paid in compensation for loss or injury'),\n",
+ " ('indemnification',\n",
+ " 'a sum of money paid in compensation for loss or injury'),\n",
+ " ('reparation', 'something done or paid in expiation of a wrong'),\n",
+ " ('redress', 'a sum of money paid in compensation for loss or injury'),\n",
+ " ('indemnity', 'a sum of money paid in compensation for loss or injury')]},\n",
+ " {'answer': 'amenities',\n",
+ " 'hint': 'synonyms for amenities',\n",
+ " 'clues': [('amenity', 'pleasantness resulting from agreeable conditions'),\n",
+ " ('comforts', 'things that make you comfortable and at ease'),\n",
+ " ('agreeableness', 'pleasantness resulting from agreeable conditions'),\n",
+ " ('creature comforts', 'things that make you comfortable and at ease'),\n",
+ " ('conveniences', 'things that make you comfortable and at ease')]},\n",
+ " {'answer': 'amiability',\n",
+ " 'hint': 'synonyms for amiability',\n",
+ " 'clues': [('bonhomie',\n",
+ " 'a disposition to be friendly and approachable (easy to talk to)'),\n",
+ " ('affableness',\n",
+ " 'a disposition to be friendly and approachable (easy to talk to)'),\n",
+ " ('affability',\n",
+ " 'a disposition to be friendly and approachable (easy to talk to)'),\n",
+ " ('good humor', 'a cheerful and agreeable mood'),\n",
+ " ('geniality',\n",
+ " 'a disposition to be friendly and approachable (easy to talk to)'),\n",
+ " ('good temper', 'a cheerful and agreeable mood'),\n",
+ " ('amiableness',\n",
+ " 'a disposition to be friendly and approachable (easy to talk to)')]},\n",
+ " {'answer': 'amiableness',\n",
+ " 'hint': 'synonyms for amiableness',\n",
+ " 'clues': [('bonhomie',\n",
+ " 'a disposition to be friendly and approachable (easy to talk to)'),\n",
+ " ('affableness',\n",
+ " 'a disposition to be friendly and approachable (easy to talk to)'),\n",
+ " ('amiability',\n",
+ " 'a disposition to be friendly and approachable (easy to talk to)'),\n",
+ " ('affability',\n",
+ " 'a disposition to be friendly and approachable (easy to talk to)'),\n",
+ " ('geniality',\n",
+ " 'a disposition to be friendly and approachable (easy to talk to)')]},\n",
+ " {'answer': 'amorousness',\n",
+ " 'hint': 'synonyms for amorousness',\n",
+ " 'clues': [('amativeness', 'the arousal of feelings of sexual desire'),\n",
+ " ('erotism', 'the arousal of feelings of sexual desire'),\n",
+ " ('sexiness', 'the arousal of feelings of sexual desire'),\n",
+ " ('enamoredness', 'a feeling of love or fondness')]},\n",
+ " {'answer': 'amount',\n",
+ " 'hint': 'synonyms for amount',\n",
+ " 'clues': [('amount of money', 'a quantity of money'),\n",
+ " ('measure',\n",
+ " 'how much there is or how many there are of something that you can quantify'),\n",
+ " ('quantity',\n",
+ " 'how much there is or how many there are of something that you can quantify'),\n",
+ " ('sum of money', 'a quantity of money'),\n",
+ " ('total', 'a quantity obtained by the addition of a group of numbers'),\n",
+ " ('sum', 'a quantity of money')]},\n",
+ " {'answer': 'ampule',\n",
+ " 'hint': 'synonyms for ampule',\n",
+ " 'clues': [('vial',\n",
+ " 'a small bottle that contains a drug (especially a sealed sterile container for injection by needle)'),\n",
+ " ('ampoule',\n",
+ " 'a small bottle that contains a drug (especially a sealed sterile container for injection by needle)'),\n",
+ " ('phial',\n",
+ " 'a small bottle that contains a drug (especially a sealed sterile container for injection by needle)'),\n",
+ " ('ampul',\n",
+ " 'a small bottle that contains a drug (especially a sealed sterile container for injection by needle)')]},\n",
+ " {'answer': 'amytal',\n",
+ " 'hint': 'synonyms for amytal',\n",
+ " 'clues': [('blue',\n",
+ " 'the sodium salt of amobarbital that is used as a barbiturate; used as a sedative and a hypnotic'),\n",
+ " ('amobarbital sodium',\n",
+ " 'the sodium salt of amobarbital that is used as a barbiturate; used as a sedative and a hypnotic'),\n",
+ " ('blue angel',\n",
+ " 'the sodium salt of amobarbital that is used as a barbiturate; used as a sedative and a hypnotic'),\n",
+ " ('blue devil',\n",
+ " 'the sodium salt of amobarbital that is used as a barbiturate; used as a sedative and a hypnotic')]},\n",
+ " {'answer': 'anamnesis',\n",
+ " 'hint': 'synonyms for anamnesis',\n",
+ " 'clues': [('recollection', 'the ability to recall past occurrences'),\n",
+ " ('medical record',\n",
+ " 'the case history of a medical patient as recalled by the patient'),\n",
+ " ('remembrance', 'the ability to recall past occurrences'),\n",
+ " ('medical history',\n",
+ " 'the case history of a medical patient as recalled by the patient')]},\n",
+ " {'answer': 'ancestry',\n",
+ " 'hint': 'synonyms for ancestry',\n",
+ " 'clues': [('line of descent', 'the descendants of one individual'),\n",
+ " ('lineage', 'inherited properties shared with others of your bloodline'),\n",
+ " ('stock', 'the descendants of one individual'),\n",
+ " ('line', 'the descendants of one individual'),\n",
+ " ('descent', 'the descendants of one individual'),\n",
+ " ('origin', 'the descendants of one individual'),\n",
+ " ('parentage', 'the descendants of one individual'),\n",
+ " ('derivation',\n",
+ " 'inherited properties shared with others of your bloodline'),\n",
+ " ('blood', 'the descendants of one individual'),\n",
+ " ('blood line', 'the descendants of one individual'),\n",
+ " ('stemma', 'the descendants of one individual'),\n",
+ " ('filiation',\n",
+ " 'inherited properties shared with others of your bloodline'),\n",
+ " ('pedigree', 'the descendants of one individual')]},\n",
+ " {'answer': 'anchor',\n",
+ " 'hint': 'synonyms for anchor',\n",
+ " 'clues': [('mainstay',\n",
+ " 'a central cohesive source of support and stability'),\n",
+ " ('linchpin', 'a central cohesive source of support and stability'),\n",
+ " ('backbone', 'a central cohesive source of support and stability'),\n",
+ " ('keystone', 'a central cohesive source of support and stability'),\n",
+ " ('ground tackle',\n",
+ " 'a mechanical device that prevents a vessel from moving')]},\n",
+ " {'answer': 'anchor_ring',\n",
+ " 'hint': 'synonyms for anchor ring',\n",
+ " 'clues': [('annulus', 'a toroidal shape'),\n",
+ " ('halo', 'a toroidal shape'),\n",
+ " ('doughnut', 'a toroidal shape'),\n",
+ " ('ring', 'a toroidal shape')]},\n",
+ " {'answer': 'anger',\n",
+ " 'hint': 'synonyms for anger',\n",
+ " 'clues': [('ire',\n",
+ " 'a strong emotion; a feeling that is oriented toward some real or supposed grievance'),\n",
+ " ('choler',\n",
+ " 'a strong emotion; a feeling that is oriented toward some real or supposed grievance'),\n",
+ " ('ira',\n",
+ " 'belligerence aroused by a real or supposed wrong (personified as one of the deadly sins)'),\n",
+ " ('wrath',\n",
+ " 'belligerence aroused by a real or supposed wrong (personified as one of the deadly sins)')]},\n",
+ " {'answer': 'angle_of_dip',\n",
+ " 'hint': 'synonyms for angle of dip',\n",
+ " 'clues': [('inclination',\n",
+ " '(physics) the angle that a magnetic needle makes with the plane of the horizon'),\n",
+ " ('dip',\n",
+ " '(physics) the angle that a magnetic needle makes with the plane of the horizon'),\n",
+ " ('magnetic dip',\n",
+ " '(physics) the angle that a magnetic needle makes with the plane of the horizon'),\n",
+ " ('magnetic inclination',\n",
+ " '(physics) the angle that a magnetic needle makes with the plane of the horizon')]},\n",
+ " {'answer': 'animate_being',\n",
+ " 'hint': 'synonyms for animate being',\n",
+ " 'clues': [('beast',\n",
+ " 'a living organism characterized by voluntary movement'),\n",
+ " ('brute', 'a living organism characterized by voluntary movement'),\n",
+ " ('animal', 'a living organism characterized by voluntary movement'),\n",
+ " ('fauna', 'a living organism characterized by voluntary movement'),\n",
+ " ('creature', 'a living organism characterized by voluntary movement')]},\n",
+ " {'answer': 'animation',\n",
+ " 'hint': 'synonyms for animation',\n",
+ " 'clues': [('vivification',\n",
+ " 'the activity of giving vitality and vigour to something'),\n",
+ " ('invigoration',\n",
+ " 'quality of being active or spirited or alive and vigorous'),\n",
+ " ('brio', 'quality of being active or spirited or alive and vigorous'),\n",
+ " ('liveliness', 'general activity and motion'),\n",
+ " ('spiritedness',\n",
+ " 'quality of being active or spirited or alive and vigorous'),\n",
+ " ('vitality', 'the property of being able to survive and grow')]},\n",
+ " {'answer': 'announcement',\n",
+ " 'hint': 'synonyms for announcement',\n",
+ " 'clues': [('annunciation', 'a formal public statement'),\n",
+ " ('proclamation', 'a formal public statement'),\n",
+ " ('promulgation',\n",
+ " 'a public statement containing information about an event that has happened or is going to happen'),\n",
+ " ('declaration', 'a formal public statement')]},\n",
+ " {'answer': 'annoyance',\n",
+ " 'hint': 'synonyms for annoyance',\n",
+ " 'clues': [('botheration',\n",
+ " 'something or someone that causes trouble; a source of unhappiness'),\n",
+ " ('annoying', 'the act of troubling or annoying someone'),\n",
+ " ('bother',\n",
+ " 'something or someone that causes trouble; a source of unhappiness'),\n",
+ " ('irritation', 'the act of troubling or annoying someone'),\n",
+ " ('vexation', 'anger produced by some annoying irritation'),\n",
+ " ('infliction',\n",
+ " 'something or someone that causes trouble; a source of unhappiness'),\n",
+ " ('pain',\n",
+ " 'something or someone that causes trouble; a source of unhappiness'),\n",
+ " ('chafe', 'anger produced by some annoying irritation'),\n",
+ " ('pain in the ass',\n",
+ " 'something or someone that causes trouble; a source of unhappiness'),\n",
+ " ('pain in the neck',\n",
+ " 'something or someone that causes trouble; a source of unhappiness')]},\n",
+ " {'answer': 'annulus',\n",
+ " 'hint': 'synonyms for annulus',\n",
+ " 'clues': [('ring', 'a toroidal shape'),\n",
+ " ('halo', 'a toroidal shape'),\n",
+ " ('doughnut', 'a toroidal shape'),\n",
+ " ('anchor ring', 'a toroidal shape')]},\n",
+ " {'answer': 'anovulant',\n",
+ " 'hint': 'synonyms for anovulant',\n",
+ " 'clues': [('contraceptive pill',\n",
+ " 'a contraceptive in the form of a pill containing estrogen and progestin to inhibit ovulation and so prevent conception'),\n",
+ " ('pill',\n",
+ " 'a contraceptive in the form of a pill containing estrogen and progestin to inhibit ovulation and so prevent conception'),\n",
+ " ('oral contraceptive',\n",
+ " 'a contraceptive in the form of a pill containing estrogen and progestin to inhibit ovulation and so prevent conception'),\n",
+ " ('anovulatory drug',\n",
+ " 'a contraceptive in the form of a pill containing estrogen and progestin to inhibit ovulation and so prevent conception'),\n",
+ " ('birth control pill',\n",
+ " 'a contraceptive in the form of a pill containing estrogen and progestin to inhibit ovulation and so prevent conception')]},\n",
+ " {'answer': 'anovulatory_drug',\n",
+ " 'hint': 'synonyms for anovulatory drug',\n",
+ " 'clues': [('contraceptive pill',\n",
+ " 'a contraceptive in the form of a pill containing estrogen and progestin to inhibit ovulation and so prevent conception'),\n",
+ " ('pill',\n",
+ " 'a contraceptive in the form of a pill containing estrogen and progestin to inhibit ovulation and so prevent conception'),\n",
+ " ('oral contraceptive',\n",
+ " 'a contraceptive in the form of a pill containing estrogen and progestin to inhibit ovulation and so prevent conception'),\n",
+ " ('birth control pill',\n",
+ " 'a contraceptive in the form of a pill containing estrogen and progestin to inhibit ovulation and so prevent conception'),\n",
+ " ('anovulant',\n",
+ " 'a contraceptive in the form of a pill containing estrogen and progestin to inhibit ovulation and so prevent conception')]},\n",
+ " {'answer': 'answer',\n",
+ " 'hint': 'synonyms for answer',\n",
+ " 'clues': [('resolution',\n",
+ " 'a statement that solves a problem or explains how to solve the problem'),\n",
+ " ('solvent',\n",
+ " 'a statement that solves a problem or explains how to solve the problem'),\n",
+ " ('result',\n",
+ " 'a statement that solves a problem or explains how to solve the problem'),\n",
+ " ('response',\n",
+ " 'a statement (either spoken or written) that is made to reply to a question or request or criticism or accusation'),\n",
+ " ('reply',\n",
+ " 'a statement (either spoken or written) that is made to reply to a question or request or criticism or accusation')]},\n",
+ " {'answer': 'antecedence',\n",
+ " 'hint': 'synonyms for antecedence',\n",
+ " 'clues': [('anteriority', 'preceding in time'),\n",
+ " ('antecedency', 'preceding in time'),\n",
+ " ('priority', 'preceding in time'),\n",
+ " ('precedency', 'preceding in time')]},\n",
+ " {'answer': 'antecedency',\n",
+ " 'hint': 'synonyms for antecedency',\n",
+ " 'clues': [('anteriority', 'preceding in time'),\n",
+ " ('priority', 'preceding in time'),\n",
+ " ('antecedence', 'preceding in time'),\n",
+ " ('precedency', 'preceding in time')]},\n",
+ " {'answer': 'antechamber',\n",
+ " 'hint': 'synonyms for antechamber',\n",
+ " 'clues': [('foyer', 'a large entrance or reception room or area'),\n",
+ " ('lobby', 'a large entrance or reception room or area'),\n",
+ " ('vestibule', 'a large entrance or reception room or area'),\n",
+ " ('hall', 'a large entrance or reception room or area'),\n",
+ " ('entrance hall', 'a large entrance or reception room or area'),\n",
+ " ('anteroom', 'a large entrance or reception room or area')]},\n",
+ " {'answer': 'anteroom',\n",
+ " 'hint': 'synonyms for anteroom',\n",
+ " 'clues': [('foyer', 'a large entrance or reception room or area'),\n",
+ " ('lobby', 'a large entrance or reception room or area'),\n",
+ " ('antechamber', 'a large entrance or reception room or area'),\n",
+ " ('vestibule', 'a large entrance or reception room or area'),\n",
+ " ('hall', 'a large entrance or reception room or area'),\n",
+ " ('entrance hall', 'a large entrance or reception room or area')]},\n",
+ " {'answer': 'anthesis',\n",
+ " 'hint': 'synonyms for anthesis',\n",
+ " 'clues': [('blossoming',\n",
+ " 'the time and process of budding and unfolding of blossoms'),\n",
+ " ('flowering',\n",
+ " 'the time and process of budding and unfolding of blossoms'),\n",
+ " ('efflorescence',\n",
+ " 'the time and process of budding and unfolding of blossoms'),\n",
+ " ('inflorescence',\n",
+ " 'the time and process of budding and unfolding of blossoms')]},\n",
+ " {'answer': 'antiaircraft_gun',\n",
+ " 'hint': 'synonyms for antiaircraft gun',\n",
+ " 'clues': [('pom-pom', 'artillery designed to shoot upward at airplanes'),\n",
+ " ('flak', 'artillery designed to shoot upward at airplanes'),\n",
+ " ('ack-ack gun', 'artillery designed to shoot upward at airplanes'),\n",
+ " ('antiaircraft', 'artillery designed to shoot upward at airplanes'),\n",
+ " ('ack-ack', 'artillery designed to shoot upward at airplanes')]},\n",
+ " {'answer': 'antianxiety_agent',\n",
+ " 'hint': 'synonyms for antianxiety agent',\n",
+ " 'clues': [('tranquilliser',\n",
+ " 'a drug used to reduce stress or tension without reducing mental clarity'),\n",
+ " ('ataractic drug',\n",
+ " 'a drug used to reduce stress or tension without reducing mental clarity'),\n",
+ " ('ataractic',\n",
+ " 'a drug used to reduce stress or tension without reducing mental clarity'),\n",
+ " ('ataractic agent',\n",
+ " 'a drug used to reduce stress or tension without reducing mental clarity')]},\n",
+ " {'answer': 'antifungal_agent',\n",
+ " 'hint': 'synonyms for antifungal agent',\n",
+ " 'clues': [('antimycotic agent',\n",
+ " 'any agent that destroys or prevents the growth of fungi'),\n",
+ " ('antimycotic',\n",
+ " 'any agent that destroys or prevents the growth of fungi'),\n",
+ " ('antifungal', 'any agent that destroys or prevents the growth of fungi'),\n",
+ " ('fungicide',\n",
+ " 'any agent that destroys or prevents the growth of fungi')]},\n",
+ " {'answer': 'antimycotic',\n",
+ " 'hint': 'synonyms for antimycotic',\n",
+ " 'clues': [('fungicide',\n",
+ " 'any agent that destroys or prevents the growth of fungi'),\n",
+ " ('antimycotic agent',\n",
+ " 'any agent that destroys or prevents the growth of fungi'),\n",
+ " ('antifungal', 'any agent that destroys or prevents the growth of fungi'),\n",
+ " ('antifungal agent',\n",
+ " 'any agent that destroys or prevents the growth of fungi')]},\n",
+ " {'answer': 'antimycotic_agent',\n",
+ " 'hint': 'synonyms for antimycotic agent',\n",
+ " 'clues': [('fungicide',\n",
+ " 'any agent that destroys or prevents the growth of fungi'),\n",
+ " ('antimycotic',\n",
+ " 'any agent that destroys or prevents the growth of fungi'),\n",
+ " ('antifungal', 'any agent that destroys or prevents the growth of fungi'),\n",
+ " ('antifungal agent',\n",
+ " 'any agent that destroys or prevents the growth of fungi')]},\n",
+ " {'answer': 'antipsychotic',\n",
+ " 'hint': 'synonyms for antipsychotic',\n",
+ " 'clues': [('antipsychotic agent',\n",
+ " 'tranquilizer used to treat psychotic conditions when a calming effect is desired'),\n",
+ " ('major tranquillizer',\n",
+ " 'tranquilizer used to treat psychotic conditions when a calming effect is desired'),\n",
+ " ('antipsychotic drug',\n",
+ " 'tranquilizer used to treat psychotic conditions when a calming effect is desired'),\n",
+ " ('neuroleptic drug',\n",
+ " 'tranquilizer used to treat psychotic conditions when a calming effect is desired'),\n",
+ " ('neuroleptic',\n",
+ " 'tranquilizer used to treat psychotic conditions when a calming effect is desired'),\n",
+ " ('neuroleptic agent',\n",
+ " 'tranquilizer used to treat psychotic conditions when a calming effect is desired')]},\n",
+ " {'answer': 'antipsychotic_agent',\n",
+ " 'hint': 'synonyms for antipsychotic agent',\n",
+ " 'clues': [('major tranquillizer',\n",
+ " 'tranquilizer used to treat psychotic conditions when a calming effect is desired'),\n",
+ " ('antipsychotic drug',\n",
+ " 'tranquilizer used to treat psychotic conditions when a calming effect is desired'),\n",
+ " ('neuroleptic drug',\n",
+ " 'tranquilizer used to treat psychotic conditions when a calming effect is desired'),\n",
+ " ('neuroleptic',\n",
+ " 'tranquilizer used to treat psychotic conditions when a calming effect is desired'),\n",
+ " ('neuroleptic agent',\n",
+ " 'tranquilizer used to treat psychotic conditions when a calming effect is desired'),\n",
+ " ('antipsychotic',\n",
+ " 'tranquilizer used to treat psychotic conditions when a calming effect is desired')]},\n",
+ " {'answer': 'antipsychotic_drug',\n",
+ " 'hint': 'synonyms for antipsychotic drug',\n",
+ " 'clues': [('antipsychotic agent',\n",
+ " 'tranquilizer used to treat psychotic conditions when a calming effect is desired'),\n",
+ " ('major tranquillizer',\n",
+ " 'tranquilizer used to treat psychotic conditions when a calming effect is desired'),\n",
+ " ('neuroleptic drug',\n",
+ " 'tranquilizer used to treat psychotic conditions when a calming effect is desired'),\n",
+ " ('neuroleptic',\n",
+ " 'tranquilizer used to treat psychotic conditions when a calming effect is desired'),\n",
+ " ('neuroleptic agent',\n",
+ " 'tranquilizer used to treat psychotic conditions when a calming effect is desired'),\n",
+ " ('antipsychotic',\n",
+ " 'tranquilizer used to treat psychotic conditions when a calming effect is desired')]},\n",
+ " {'answer': 'apex',\n",
+ " 'hint': 'synonyms for apex',\n",
+ " 'clues': [('acme', 'the highest point (of something)'),\n",
+ " ('solar apex',\n",
+ " 'the point on the celestial sphere toward which the sun and solar system appear to be moving relative to the fixed stars'),\n",
+ " ('peak', 'the highest point (of something)'),\n",
+ " (\"apex of the sun's way\",\n",
+ " 'the point on the celestial sphere toward which the sun and solar system appear to be moving relative to the fixed stars'),\n",
+ " ('vertex', 'the highest point (of something)')]},\n",
+ " {'answer': 'aplomb',\n",
+ " 'hint': 'synonyms for aplomb',\n",
+ " 'clues': [('cool', 'great coolness and composure under strain'),\n",
+ " ('assuredness', 'great coolness and composure under strain'),\n",
+ " ('poise', 'great coolness and composure under strain'),\n",
+ " ('sang-froid', 'great coolness and composure under strain')]},\n",
+ " {'answer': \"apothecary's_shop\",\n",
+ " 'hint': \"synonyms for apothecary's shop\",\n",
+ " 'clues': [(\"chemist's\",\n",
+ " 'a retail shop where medicine and other articles are sold'),\n",
+ " ('pharmacy', 'a retail shop where medicine and other articles are sold'),\n",
+ " (\"chemist's shop\",\n",
+ " 'a retail shop where medicine and other articles are sold'),\n",
+ " ('drugstore',\n",
+ " 'a retail shop where medicine and other articles are sold')]},\n",
+ " {'answer': 'apparel_industry',\n",
+ " 'hint': 'synonyms for apparel industry',\n",
+ " 'clues': [('rag trade', 'makers and sellers of fashionable clothing'),\n",
+ " ('fashion business', 'makers and sellers of fashionable clothing'),\n",
+ " ('fashion industry', 'makers and sellers of fashionable clothing'),\n",
+ " ('garment industry', 'makers and sellers of fashionable clothing')]},\n",
+ " {'answer': 'apparent_horizon',\n",
+ " 'hint': 'synonyms for apparent horizon',\n",
+ " 'clues': [('sensible horizon',\n",
+ " 'the line at which the sky and Earth appear to meet'),\n",
+ " ('skyline', 'the line at which the sky and Earth appear to meet'),\n",
+ " ('horizon', 'the line at which the sky and Earth appear to meet'),\n",
+ " ('visible horizon',\n",
+ " 'the line at which the sky and Earth appear to meet')]},\n",
+ " {'answer': 'apparition',\n",
+ " 'hint': 'synonyms for apparition',\n",
+ " 'clues': [('fantasm', 'something existing in perception only'),\n",
+ " ('shadow', 'something existing in perception only'),\n",
+ " ('phantasma', 'something existing in perception only'),\n",
+ " ('phantom', 'something existing in perception only')]},\n",
+ " {'answer': 'appeal',\n",
+ " 'hint': 'synonyms for appeal',\n",
+ " 'clues': [('collection', 'request for a sum of money'),\n",
+ " ('prayer', 'earnest or urgent request'),\n",
+ " ('appealingness',\n",
+ " 'attractiveness that interests or pleases or stimulates'),\n",
+ " ('solicitation', 'request for a sum of money'),\n",
+ " ('ingathering', 'request for a sum of money'),\n",
+ " ('charm', 'attractiveness that interests or pleases or stimulates'),\n",
+ " ('entreaty', 'earnest or urgent request')]},\n",
+ " {'answer': 'appearance',\n",
+ " 'hint': 'synonyms for appearance',\n",
+ " 'clues': [('show',\n",
+ " 'pretending that something is the case in order to make a good impression'),\n",
+ " ('visual aspect', 'outward or visible aspect of a person or thing'),\n",
+ " ('appearing',\n",
+ " 'formal attendance (in court or at a hearing) of a party in an action'),\n",
+ " ('coming into court',\n",
+ " 'formal attendance (in court or at a hearing) of a party in an action')]},\n",
+ " {'answer': 'applesauce',\n",
+ " 'hint': 'synonyms for applesauce',\n",
+ " 'clues': [('wish-wash', 'nonsensical talk or writing'),\n",
+ " ('trash', 'nonsensical talk or writing'),\n",
+ " ('codswallop', 'nonsensical talk or writing'),\n",
+ " ('folderol', 'nonsensical talk or writing'),\n",
+ " ('apple sauce', 'puree of stewed apples usually sweetened and spiced'),\n",
+ " ('rubbish', 'nonsensical talk or writing'),\n",
+ " ('tripe', 'nonsensical talk or writing'),\n",
+ " ('trumpery', 'nonsensical talk or writing')]},\n",
+ " {'answer': 'appliance',\n",
+ " 'hint': 'synonyms for appliance',\n",
+ " 'clues': [('convenience',\n",
+ " 'a device or control that is very useful for a particular job'),\n",
+ " ('widget',\n",
+ " 'a device or control that is very useful for a particular job'),\n",
+ " ('gismo', 'a device or control that is very useful for a particular job'),\n",
+ " ('gizmo', 'a device or control that is very useful for a particular job'),\n",
+ " ('contraption',\n",
+ " 'a device or control that is very useful for a particular job'),\n",
+ " ('contrivance',\n",
+ " 'a device or control that is very useful for a particular job'),\n",
+ " ('gadget',\n",
+ " 'a device or control that is very useful for a particular job')]},\n",
+ " {'answer': 'application',\n",
+ " 'hint': 'synonyms for application',\n",
+ " 'clues': [('applications programme',\n",
+ " 'a program that gives a computer instructions that provide the user with tools to accomplish a task'),\n",
+ " ('covering', 'the work of applying something'),\n",
+ " ('practical application',\n",
+ " 'the act of bringing something to bear; using it for a particular purpose'),\n",
+ " ('coating', 'the work of applying something'),\n",
+ " ('lotion',\n",
+ " 'liquid preparation having a soothing or antiseptic or medicinal action when applied to the skin'),\n",
+ " ('diligence', 'a diligent effort')]},\n",
+ " {'answer': 'appointment',\n",
+ " 'hint': 'synonyms for appointment',\n",
+ " 'clues': [('naming',\n",
+ " 'the act of putting a person into a non-elective position'),\n",
+ " ('engagement', 'a meeting arranged in advance'),\n",
+ " ('date', 'a meeting arranged in advance'),\n",
+ " ('fitting',\n",
+ " '(usually plural) furnishings and equipment (especially for a ship or hotel)'),\n",
+ " ('designation',\n",
+ " 'the act of putting a person into a non-elective position'),\n",
+ " ('assignment',\n",
+ " 'the act of putting a person into a non-elective position')]},\n",
+ " {'answer': 'apportioning',\n",
+ " 'hint': 'synonyms for apportioning',\n",
+ " 'clues': [('allocation',\n",
+ " 'the act of distributing by allotting or apportioning; distribution according to a plan'),\n",
+ " ('parceling',\n",
+ " 'the act of distributing by allotting or apportioning; distribution according to a plan'),\n",
+ " ('allotment',\n",
+ " 'the act of distributing by allotting or apportioning; distribution according to a plan'),\n",
+ " ('apportionment',\n",
+ " 'the act of distributing by allotting or apportioning; distribution according to a plan'),\n",
+ " ('assignation',\n",
+ " 'the act of distributing by allotting or apportioning; distribution according to a plan')]},\n",
+ " {'answer': 'apportionment',\n",
+ " 'hint': 'synonyms for apportionment',\n",
+ " 'clues': [('allocation',\n",
+ " 'the act of distributing by allotting or apportioning; distribution according to a plan'),\n",
+ " ('parceling',\n",
+ " 'the act of distributing by allotting or apportioning; distribution according to a plan'),\n",
+ " ('allotment',\n",
+ " 'the act of distributing by allotting or apportioning; distribution according to a plan'),\n",
+ " ('apportioning',\n",
+ " 'the act of distributing by allotting or apportioning; distribution according to a plan'),\n",
+ " ('assignation',\n",
+ " 'the act of distributing by allotting or apportioning; distribution according to a plan')]},\n",
+ " {'answer': 'appreciation',\n",
+ " 'hint': 'synonyms for appreciation',\n",
+ " 'clues': [('perceptiveness',\n",
+ " 'delicate discrimination (especially of aesthetic values)'),\n",
+ " ('taste', 'delicate discrimination (especially of aesthetic values)'),\n",
+ " ('hold',\n",
+ " 'understanding of the nature or meaning or quality or magnitude of something'),\n",
+ " ('grasp',\n",
+ " 'understanding of the nature or meaning or quality or magnitude of something'),\n",
+ " ('discernment',\n",
+ " 'delicate discrimination (especially of aesthetic values)'),\n",
+ " ('admiration', 'a favorable judgment')]},\n",
+ " {'answer': 'apprehension',\n",
+ " 'hint': 'synonyms for apprehension',\n",
+ " 'clues': [('dread', 'fearful expectation or anticipation'),\n",
+ " ('collar',\n",
+ " 'the act of apprehending (especially apprehending a criminal)'),\n",
+ " ('apprehensiveness', 'fearful expectation or anticipation'),\n",
+ " ('pinch', 'the act of apprehending (especially apprehending a criminal)'),\n",
+ " ('taking into custody',\n",
+ " 'the act of apprehending (especially apprehending a criminal)'),\n",
+ " ('arrest',\n",
+ " 'the act of apprehending (especially apprehending a criminal)'),\n",
+ " ('understanding', 'the cognitive condition of someone who understands'),\n",
+ " ('discernment', 'the cognitive condition of someone who understands'),\n",
+ " ('savvy', 'the cognitive condition of someone who understands'),\n",
+ " ('misgiving', 'painful expectation'),\n",
+ " ('catch',\n",
+ " 'the act of apprehending (especially apprehending a criminal)')]},\n",
+ " {'answer': 'approach',\n",
+ " 'hint': 'synonyms for approach',\n",
+ " 'clues': [('approach shot',\n",
+ " 'a relatively short golf shot intended to put the ball onto the putting green'),\n",
+ " ('feeler',\n",
+ " 'a tentative suggestion designed to elicit the reactions of others'),\n",
+ " ('attack',\n",
+ " 'ideas or actions intended to deal with a problem or situation'),\n",
+ " ('glide slope',\n",
+ " 'the final path followed by an aircraft as it is landing'),\n",
+ " ('coming', 'the temporal property of becoming nearer in time'),\n",
+ " ('overture',\n",
+ " 'a tentative suggestion designed to elicit the reactions of others'),\n",
+ " ('advance',\n",
+ " 'a tentative suggestion designed to elicit the reactions of others'),\n",
+ " ('approaching', 'the event of one object coming closer to another'),\n",
+ " ('glide path', 'the final path followed by an aircraft as it is landing'),\n",
+ " ('access', 'a way of entering or leaving'),\n",
+ " ('approach path',\n",
+ " 'the final path followed by an aircraft as it is landing'),\n",
+ " ('plan of attack',\n",
+ " 'ideas or actions intended to deal with a problem or situation')]},\n",
+ " {'answer': 'approximation',\n",
+ " 'hint': 'synonyms for approximation',\n",
+ " 'clues': [('estimate',\n",
+ " 'an approximate calculation of quantity or degree or worth'),\n",
+ " ('idea', 'an approximate calculation of quantity or degree or worth'),\n",
+ " ('estimation',\n",
+ " 'an approximate calculation of quantity or degree or worth'),\n",
+ " ('bringing close together',\n",
+ " 'the act of bringing near or bringing together especially the cut edges of tissue')]},\n",
+ " {'answer': 'appurtenance',\n",
+ " 'hint': 'synonyms for appurtenance',\n",
+ " 'clues': [('accessory',\n",
+ " 'a supplementary component that improves capability'),\n",
+ " ('supplement', 'a supplementary component that improves capability'),\n",
+ " ('gear',\n",
+ " 'equipment consisting of miscellaneous articles needed for a particular operation or sport etc.'),\n",
+ " ('paraphernalia',\n",
+ " 'equipment consisting of miscellaneous articles needed for a particular operation or sport etc.'),\n",
+ " ('add-on', 'a supplementary component that improves capability')]},\n",
+ " {'answer': 'aqua',\n",
+ " 'hint': 'synonyms for aqua',\n",
+ " 'clues': [('greenish blue', 'a shade of blue tinged with green'),\n",
+ " ('cobalt blue', 'a shade of blue tinged with green'),\n",
+ " ('peacock blue', 'a shade of blue tinged with green'),\n",
+ " ('turquoise', 'a shade of blue tinged with green'),\n",
+ " ('aquamarine', 'a shade of blue tinged with green')]},\n",
+ " {'answer': 'aquamarine',\n",
+ " 'hint': 'synonyms for aquamarine',\n",
+ " 'clues': [('aqua', 'a shade of blue tinged with green'),\n",
+ " ('greenish blue', 'a shade of blue tinged with green'),\n",
+ " ('cobalt blue', 'a shade of blue tinged with green'),\n",
+ " ('peacock blue', 'a shade of blue tinged with green'),\n",
+ " ('turquoise', 'a shade of blue tinged with green')]},\n",
+ " {'answer': 'arbalest',\n",
+ " 'hint': 'synonyms for arbalest',\n",
+ " 'clues': [('trebucket',\n",
+ " 'an engine that provided medieval artillery used during sieges; a heavy war engine for hurling large stones and other missiles'),\n",
+ " ('ballista',\n",
+ " 'an engine that provided medieval artillery used during sieges; a heavy war engine for hurling large stones and other missiles'),\n",
+ " ('mangonel',\n",
+ " 'an engine that provided medieval artillery used during sieges; a heavy war engine for hurling large stones and other missiles'),\n",
+ " ('catapult',\n",
+ " 'an engine that provided medieval artillery used during sieges; a heavy war engine for hurling large stones and other missiles'),\n",
+ " ('bricole',\n",
+ " 'an engine that provided medieval artillery used during sieges; a heavy war engine for hurling large stones and other missiles'),\n",
+ " ('onager',\n",
+ " 'an engine that provided medieval artillery used during sieges; a heavy war engine for hurling large stones and other missiles'),\n",
+ " ('arbalist',\n",
+ " 'an engine that provided medieval artillery used during sieges; a heavy war engine for hurling large stones and other missiles')]},\n",
+ " {'answer': 'arbalist',\n",
+ " 'hint': 'synonyms for arbalist',\n",
+ " 'clues': [('trebucket',\n",
+ " 'an engine that provided medieval artillery used during sieges; a heavy war engine for hurling large stones and other missiles'),\n",
+ " ('ballista',\n",
+ " 'an engine that provided medieval artillery used during sieges; a heavy war engine for hurling large stones and other missiles'),\n",
+ " ('mangonel',\n",
+ " 'an engine that provided medieval artillery used during sieges; a heavy war engine for hurling large stones and other missiles'),\n",
+ " ('catapult',\n",
+ " 'an engine that provided medieval artillery used during sieges; a heavy war engine for hurling large stones and other missiles'),\n",
+ " ('arbalest',\n",
+ " 'an engine that provided medieval artillery used during sieges; a heavy war engine for hurling large stones and other missiles'),\n",
+ " ('bricole',\n",
+ " 'an engine that provided medieval artillery used during sieges; a heavy war engine for hurling large stones and other missiles'),\n",
+ " ('onager',\n",
+ " 'an engine that provided medieval artillery used during sieges; a heavy war engine for hurling large stones and other missiles')]},\n",
+ " {'answer': 'arbitrariness',\n",
+ " 'hint': 'synonyms for arbitrariness',\n",
+ " 'clues': [('whimsy',\n",
+ " 'the trait of acting unpredictably and more from whim or caprice than from reason or judgment'),\n",
+ " ('flightiness',\n",
+ " 'the trait of acting unpredictably and more from whim or caprice than from reason or judgment'),\n",
+ " ('capriciousness',\n",
+ " 'the trait of acting unpredictably and more from whim or caprice than from reason or judgment'),\n",
+ " ('whimsicality',\n",
+ " 'the trait of acting unpredictably and more from whim or caprice than from reason or judgment')]},\n",
+ " {'answer': 'arbor',\n",
+ " 'hint': 'synonyms for arbor',\n",
+ " 'clues': [('arbour', 'a framework that supports climbing plants'),\n",
+ " ('pergola', 'a framework that supports climbing plants'),\n",
+ " ('spindle',\n",
+ " 'any of various rotating shafts that serve as axes for larger rotating parts'),\n",
+ " ('mandrel',\n",
+ " 'any of various rotating shafts that serve as axes for larger rotating parts'),\n",
+ " ('bower', 'a framework that supports climbing plants')]},\n",
+ " {'answer': 'arc',\n",
+ " 'hint': 'synonyms for arc',\n",
+ " 'clues': [('discharge',\n",
+ " 'electrical conduction through a gas in an applied electric field'),\n",
+ " ('electric arc',\n",
+ " 'electrical conduction through a gas in an applied electric field'),\n",
+ " ('electric discharge',\n",
+ " 'electrical conduction through a gas in an applied electric field'),\n",
+ " ('bow', 'something curved in shape'),\n",
+ " ('spark',\n",
+ " 'electrical conduction through a gas in an applied electric field')]},\n",
+ " {'answer': 'archness',\n",
+ " 'hint': 'synonyms for archness',\n",
+ " 'clues': [('pertness', 'inappropriate playfulness'),\n",
+ " ('perkiness', 'inappropriate playfulness'),\n",
+ " ('sauciness', 'inappropriate playfulness'),\n",
+ " ('impertinence', 'inappropriate playfulness')]},\n",
+ " {'answer': 'ardor',\n",
+ " 'hint': 'synonyms for ardor',\n",
+ " 'clues': [('fervency', 'feelings of great warmth and intensity'),\n",
+ " ('fire', 'feelings of great warmth and intensity'),\n",
+ " ('zeal',\n",
+ " 'a feeling of strong eagerness (usually in favor of a person or cause)'),\n",
+ " ('fervidness', 'feelings of great warmth and intensity'),\n",
+ " ('ardour', 'intense feeling of love'),\n",
+ " ('fervour', 'feelings of great warmth and intensity'),\n",
+ " ('elan',\n",
+ " 'a feeling of strong eagerness (usually in favor of a person or cause)')]},\n",
+ " {'answer': 'ardour',\n",
+ " 'hint': 'synonyms for ardour',\n",
+ " 'clues': [('ardor', 'intense feeling of love'),\n",
+ " ('fervency', 'feelings of great warmth and intensity'),\n",
+ " ('zeal',\n",
+ " 'a feeling of strong eagerness (usually in favor of a person or cause)'),\n",
+ " ('fire', 'feelings of great warmth and intensity'),\n",
+ " ('fervidness', 'feelings of great warmth and intensity'),\n",
+ " ('fervour', 'feelings of great warmth and intensity'),\n",
+ " ('elan',\n",
+ " 'a feeling of strong eagerness (usually in favor of a person or cause)')]},\n",
+ " {'answer': 'arena',\n",
+ " 'hint': 'synonyms for arena',\n",
+ " 'clues': [('scene of action',\n",
+ " 'a playing field where sports events take place'),\n",
+ " ('sports stadium',\n",
+ " 'a large structure for open-air sports or entertainments'),\n",
+ " ('stadium', 'a large structure for open-air sports or entertainments'),\n",
+ " ('bowl', 'a large structure for open-air sports or entertainments')]},\n",
+ " {'answer': 'argot',\n",
+ " 'hint': 'synonyms for argot',\n",
+ " 'clues': [('lingo',\n",
+ " 'a characteristic language of a particular group (as among thieves)'),\n",
+ " ('patois',\n",
+ " 'a characteristic language of a particular group (as among thieves)'),\n",
+ " ('slang',\n",
+ " 'a characteristic language of a particular group (as among thieves)'),\n",
+ " ('vernacular',\n",
+ " 'a characteristic language of a particular group (as among thieves)'),\n",
+ " ('cant',\n",
+ " 'a characteristic language of a particular group (as among thieves)'),\n",
+ " ('jargon',\n",
+ " 'a characteristic language of a particular group (as among thieves)')]},\n",
+ " {'answer': 'arguing',\n",
+ " 'hint': 'synonyms for arguing',\n",
+ " 'clues': [('disceptation',\n",
+ " 'a contentious speech act; a dispute where there is strong disagreement'),\n",
+ " ('contention',\n",
+ " 'a contentious speech act; a dispute where there is strong disagreement'),\n",
+ " ('argument',\n",
+ " 'a contentious speech act; a dispute where there is strong disagreement'),\n",
+ " ('contestation',\n",
+ " 'a contentious speech act; a dispute where there is strong disagreement'),\n",
+ " ('tilt',\n",
+ " 'a contentious speech act; a dispute where there is strong disagreement'),\n",
+ " ('controversy',\n",
+ " 'a contentious speech act; a dispute where there is strong disagreement')]},\n",
+ " {'answer': 'argument',\n",
+ " 'hint': 'synonyms for argument',\n",
+ " 'clues': [('literary argument',\n",
+ " 'a summary of the subject or plot of a literary work or play or movie'),\n",
+ " ('disputation',\n",
+ " 'a contentious speech act; a dispute where there is strong disagreement'),\n",
+ " ('contention',\n",
+ " 'a contentious speech act; a dispute where there is strong disagreement'),\n",
+ " ('line',\n",
+ " 'a course of reasoning aimed at demonstrating a truth or falsehood; the methodical process of logical reasoning'),\n",
+ " ('contestation',\n",
+ " 'a contentious speech act; a dispute where there is strong disagreement'),\n",
+ " ('tilt',\n",
+ " 'a contentious speech act; a dispute where there is strong disagreement'),\n",
+ " ('arguing',\n",
+ " 'a contentious speech act; a dispute where there is strong disagreement'),\n",
+ " ('logical argument',\n",
+ " 'a course of reasoning aimed at demonstrating a truth or falsehood; the methodical process of logical reasoning'),\n",
+ " ('argumentation',\n",
+ " 'a course of reasoning aimed at demonstrating a truth or falsehood; the methodical process of logical reasoning'),\n",
+ " ('line of reasoning',\n",
+ " 'a course of reasoning aimed at demonstrating a truth or falsehood; the methodical process of logical reasoning'),\n",
+ " ('parameter',\n",
+ " '(computer science) a reference or value that is passed to a function, procedure, subroutine, command, or program'),\n",
+ " ('debate',\n",
+ " 'a discussion in which reasons are advanced for and against some proposition or proposal'),\n",
+ " ('statement',\n",
+ " 'a fact or assertion offered as evidence that something is true'),\n",
+ " ('controversy',\n",
+ " 'a contentious speech act; a dispute where there is strong disagreement')]},\n",
+ " {'answer': 'argumentation',\n",
+ " 'hint': 'synonyms for argumentation',\n",
+ " 'clues': [('debate',\n",
+ " 'a discussion in which reasons are advanced for and against some proposition or proposal'),\n",
+ " ('argument',\n",
+ " 'a discussion in which reasons are advanced for and against some proposition or proposal'),\n",
+ " ('logical argument',\n",
+ " 'a course of reasoning aimed at demonstrating a truth or falsehood; the methodical process of logical reasoning'),\n",
+ " ('line of reasoning',\n",
+ " 'a course of reasoning aimed at demonstrating a truth or falsehood; the methodical process of logical reasoning'),\n",
+ " ('line',\n",
+ " 'a course of reasoning aimed at demonstrating a truth or falsehood; the methodical process of logical reasoning')]},\n",
+ " {'answer': 'arm',\n",
+ " 'hint': 'synonyms for arm',\n",
+ " 'clues': [('weapon',\n",
+ " 'any instrument or instrumentality used in fighting or hunting'),\n",
+ " ('weapon system',\n",
+ " 'any instrument or instrumentality used in fighting or hunting'),\n",
+ " ('sleeve',\n",
+ " 'the part of a garment that is attached at the armhole and that provides a cloth covering for the arm'),\n",
+ " ('subdivision', 'a division of some larger or more complex organization'),\n",
+ " ('branch', 'any projection that is thought to resemble a human arm'),\n",
+ " ('limb', 'any projection that is thought to resemble a human arm')]},\n",
+ " {'answer': 'armed_forces',\n",
+ " 'hint': 'synonyms for armed forces',\n",
+ " 'clues': [('war machine', 'the military forces of a nation'),\n",
+ " ('military', 'the military forces of a nation'),\n",
+ " ('military machine', 'the military forces of a nation'),\n",
+ " ('armed services', 'the military forces of a nation')]},\n",
+ " {'answer': 'armed_services',\n",
+ " 'hint': 'synonyms for armed services',\n",
+ " 'clues': [('armed service',\n",
+ " 'a force that is a branch of the armed forces'),\n",
+ " ('service', 'a force that is a branch of the armed forces'),\n",
+ " ('military service', 'a force that is a branch of the armed forces'),\n",
+ " ('war machine', 'the military forces of a nation'),\n",
+ " ('armed forces', 'the military forces of a nation'),\n",
+ " ('military', 'the military forces of a nation'),\n",
+ " ('military machine', 'the military forces of a nation')]},\n",
+ " {'answer': 'arms',\n",
+ " 'hint': 'synonyms for arms',\n",
+ " 'clues': [('weapon',\n",
+ " 'any instrument or instrumentality used in fighting or hunting'),\n",
+ " ('sleeve',\n",
+ " 'the part of a garment that is attached at the armhole and that provides a cloth covering for the arm'),\n",
+ " ('subdivision', 'a division of some larger or more complex organization'),\n",
+ " ('coat of arms', 'the official symbols of a family, state, etc.'),\n",
+ " ('munition', 'weapons considered collectively'),\n",
+ " ('blazonry', 'the official symbols of a family, state, etc.'),\n",
+ " ('arm', 'a division of some larger or more complex organization'),\n",
+ " ('weapons system', 'weapons considered collectively'),\n",
+ " ('implements of war', 'weapons considered collectively'),\n",
+ " ('limb', 'any projection that is thought to resemble a human arm'),\n",
+ " ('branch', 'a division of some larger or more complex organization')]},\n",
+ " {'answer': 'aroma',\n",
+ " 'hint': 'synonyms for aroma',\n",
+ " 'clues': [('perfume', 'a distinctive odor that is pleasant'),\n",
+ " ('odour', 'any property detected by the olfactory system'),\n",
+ " ('fragrance', 'a distinctive odor that is pleasant'),\n",
+ " ('scent', 'any property detected by the olfactory system'),\n",
+ " ('smell', 'any property detected by the olfactory system'),\n",
+ " ('olfactory property', 'any property detected by the olfactory system')]},\n",
+ " {'answer': 'arrangement',\n",
+ " 'hint': 'synonyms for arrangement',\n",
+ " 'clues': [('placement',\n",
+ " 'the spatial property of the way in which something is placed'),\n",
+ " ('musical arrangement',\n",
+ " 'a piece of music that has been adapted for performance by a particular set of voices or instruments'),\n",
+ " ('agreement', 'the thing arranged or agreed to'),\n",
+ " ('system', 'an organized structure for arranging or classifying'),\n",
+ " ('organisation', 'an organized structure for arranging or classifying'),\n",
+ " ('transcription', 'the act of arranging and adapting a piece of music'),\n",
+ " ('arranging', 'the act of arranging and adapting a piece of music')]},\n",
+ " {'answer': 'arrest',\n",
+ " 'hint': 'synonyms for arrest',\n",
+ " 'clues': [('collar',\n",
+ " 'the act of apprehending (especially apprehending a criminal)'),\n",
+ " ('pinch', 'the act of apprehending (especially apprehending a criminal)'),\n",
+ " ('apprehension',\n",
+ " 'the act of apprehending (especially apprehending a criminal)'),\n",
+ " ('taking into custody',\n",
+ " 'the act of apprehending (especially apprehending a criminal)'),\n",
+ " ('catch',\n",
+ " 'the act of apprehending (especially apprehending a criminal)')]},\n",
+ " {'answer': 'arrivederci',\n",
+ " 'hint': 'synonyms for arrivederci',\n",
+ " 'clues': [('au revoir', 'a farewell remark'),\n",
+ " ('good-by', 'a farewell remark'),\n",
+ " ('good day', 'a farewell remark'),\n",
+ " ('adios', 'a farewell remark'),\n",
+ " ('adieu', 'a farewell remark'),\n",
+ " ('bye', 'a farewell remark'),\n",
+ " ('so long', 'a farewell remark'),\n",
+ " ('bye-bye', 'a farewell remark'),\n",
+ " ('auf wiedersehen', 'a farewell remark'),\n",
+ " ('sayonara', 'a farewell remark'),\n",
+ " ('cheerio', 'a farewell remark')]},\n",
+ " {'answer': 'arrogance',\n",
+ " 'hint': 'synonyms for arrogance',\n",
+ " 'clues': [('high-handedness',\n",
+ " 'overbearing pride evidenced by a superior manner toward inferiors'),\n",
+ " ('hauteur',\n",
+ " 'overbearing pride evidenced by a superior manner toward inferiors'),\n",
+ " ('lordliness',\n",
+ " 'overbearing pride evidenced by a superior manner toward inferiors'),\n",
+ " ('haughtiness',\n",
+ " 'overbearing pride evidenced by a superior manner toward inferiors')]},\n",
+ " {'answer': 'arsenic',\n",
+ " 'hint': 'synonyms for arsenic',\n",
+ " 'clues': [('arsenous anhydride',\n",
+ " 'a white powdered poisonous trioxide of arsenic; used in manufacturing glass and as a pesticide (rat poison) and weed killer'),\n",
+ " ('atomic number 33',\n",
+ " 'a very poisonous metallic element that has three allotropic forms; arsenic and arsenic compounds are used as herbicides and insecticides and various alloys; found in arsenopyrite and orpiment and realgar'),\n",
+ " ('ratsbane',\n",
+ " 'a white powdered poisonous trioxide of arsenic; used in manufacturing glass and as a pesticide (rat poison) and weed killer'),\n",
+ " ('arsenic trioxide',\n",
+ " 'a white powdered poisonous trioxide of arsenic; used in manufacturing glass and as a pesticide (rat poison) and weed killer'),\n",
+ " ('arsenous oxide',\n",
+ " 'a white powdered poisonous trioxide of arsenic; used in manufacturing glass and as a pesticide (rat poison) and weed killer'),\n",
+ " ('white arsenic',\n",
+ " 'a white powdered poisonous trioxide of arsenic; used in manufacturing glass and as a pesticide (rat poison) and weed killer')]},\n",
+ " {'answer': 'arsenic_trioxide',\n",
+ " 'hint': 'synonyms for arsenic trioxide',\n",
+ " 'clues': [('arsenous anhydride',\n",
+ " 'a white powdered poisonous trioxide of arsenic; used in manufacturing glass and as a pesticide (rat poison) and weed killer'),\n",
+ " ('ratsbane',\n",
+ " 'a white powdered poisonous trioxide of arsenic; used in manufacturing glass and as a pesticide (rat poison) and weed killer'),\n",
+ " ('arsenic',\n",
+ " 'a white powdered poisonous trioxide of arsenic; used in manufacturing glass and as a pesticide (rat poison) and weed killer'),\n",
+ " ('arsenous oxide',\n",
+ " 'a white powdered poisonous trioxide of arsenic; used in manufacturing glass and as a pesticide (rat poison) and weed killer'),\n",
+ " ('white arsenic',\n",
+ " 'a white powdered poisonous trioxide of arsenic; used in manufacturing glass and as a pesticide (rat poison) and weed killer')]},\n",
+ " {'answer': 'arsenous_anhydride',\n",
+ " 'hint': 'synonyms for arsenous anhydride',\n",
+ " 'clues': [('ratsbane',\n",
+ " 'a white powdered poisonous trioxide of arsenic; used in manufacturing glass and as a pesticide (rat poison) and weed killer'),\n",
+ " ('arsenic',\n",
+ " 'a white powdered poisonous trioxide of arsenic; used in manufacturing glass and as a pesticide (rat poison) and weed killer'),\n",
+ " ('arsenic trioxide',\n",
+ " 'a white powdered poisonous trioxide of arsenic; used in manufacturing glass and as a pesticide (rat poison) and weed killer'),\n",
+ " ('arsenous oxide',\n",
+ " 'a white powdered poisonous trioxide of arsenic; used in manufacturing glass and as a pesticide (rat poison) and weed killer'),\n",
+ " ('white arsenic',\n",
+ " 'a white powdered poisonous trioxide of arsenic; used in manufacturing glass and as a pesticide (rat poison) and weed killer')]},\n",
+ " {'answer': 'arsenous_oxide',\n",
+ " 'hint': 'synonyms for arsenous oxide',\n",
+ " 'clues': [('arsenous anhydride',\n",
+ " 'a white powdered poisonous trioxide of arsenic; used in manufacturing glass and as a pesticide (rat poison) and weed killer'),\n",
+ " ('ratsbane',\n",
+ " 'a white powdered poisonous trioxide of arsenic; used in manufacturing glass and as a pesticide (rat poison) and weed killer'),\n",
+ " ('arsenic',\n",
+ " 'a white powdered poisonous trioxide of arsenic; used in manufacturing glass and as a pesticide (rat poison) and weed killer'),\n",
+ " ('arsenic trioxide',\n",
+ " 'a white powdered poisonous trioxide of arsenic; used in manufacturing glass and as a pesticide (rat poison) and weed killer'),\n",
+ " ('white arsenic',\n",
+ " 'a white powdered poisonous trioxide of arsenic; used in manufacturing glass and as a pesticide (rat poison) and weed killer')]},\n",
+ " {'answer': 'art',\n",
+ " 'hint': 'synonyms for art',\n",
+ " 'clues': [('artistic production',\n",
+ " 'the creation of beautiful or significant things'),\n",
+ " ('artwork',\n",
+ " 'photographs or other visual representations in a printed publication'),\n",
+ " ('fine art',\n",
+ " 'the products of human creativity; works of art collectively'),\n",
+ " ('artistry',\n",
+ " 'a superior skill that you can learn by study and practice and observation'),\n",
+ " ('graphics',\n",
+ " 'photographs or other visual representations in a printed publication'),\n",
+ " ('nontextual matter',\n",
+ " 'photographs or other visual representations in a printed publication'),\n",
+ " ('prowess',\n",
+ " 'a superior skill that you can learn by study and practice and observation'),\n",
+ " ('artistic creation',\n",
+ " 'the creation of beautiful or significant things')]},\n",
+ " {'answer': 'article_of_clothing',\n",
+ " 'hint': 'synonyms for article of clothing',\n",
+ " 'clues': [('vesture', \"a covering designed to be worn on a person's body\"),\n",
+ " ('wearable', \"a covering designed to be worn on a person's body\"),\n",
+ " ('clothing', \"a covering designed to be worn on a person's body\"),\n",
+ " ('habiliment', \"a covering designed to be worn on a person's body\"),\n",
+ " ('wear', \"a covering designed to be worn on a person's body\")]},\n",
+ " {'answer': 'articulated_lorry',\n",
+ " 'hint': 'synonyms for articulated lorry',\n",
+ " 'clues': [('rig', 'a truck consisting of a tractor and trailer together'),\n",
+ " ('tractor trailer',\n",
+ " 'a truck consisting of a tractor and trailer together'),\n",
+ " ('trucking rig', 'a truck consisting of a tractor and trailer together'),\n",
+ " ('trailer truck', 'a truck consisting of a tractor and trailer together'),\n",
+ " ('semi', 'a truck consisting of a tractor and trailer together')]},\n",
+ " {'answer': 'articulation',\n",
+ " 'hint': 'synonyms for articulation',\n",
+ " 'clues': [('junction',\n",
+ " 'the shape or manner in which things come together and a connection is made'),\n",
+ " ('join',\n",
+ " 'the shape or manner in which things come together and a connection is made'),\n",
+ " ('voice', 'expressing in coherent verbal form'),\n",
+ " ('juncture',\n",
+ " 'the shape or manner in which things come together and a connection is made')]},\n",
+ " {'answer': 'artillery',\n",
+ " 'hint': 'synonyms for artillery',\n",
+ " 'clues': [('weapon', 'a means of persuading or arguing'),\n",
+ " ('artillery unit', 'an army unit that uses big guns'),\n",
+ " ('heavy weapon', 'large but transportable armament'),\n",
+ " ('gun', 'large but transportable armament'),\n",
+ " ('ordnance', 'large but transportable armament')]},\n",
+ " {'answer': 'arts',\n",
+ " 'hint': 'synonyms for arts',\n",
+ " 'clues': [('artwork',\n",
+ " 'photographs or other visual representations in a printed publication'),\n",
+ " ('liberal arts',\n",
+ " 'studies intended to provide general knowledge and intellectual skills (rather than occupational or professional skills)'),\n",
+ " ('fine art',\n",
+ " 'the products of human creativity; works of art collectively'),\n",
+ " ('humanities',\n",
+ " 'studies intended to provide general knowledge and intellectual skills (rather than occupational or professional skills)'),\n",
+ " ('graphics',\n",
+ " 'photographs or other visual representations in a printed publication'),\n",
+ " ('nontextual matter',\n",
+ " 'photographs or other visual representations in a printed publication'),\n",
+ " ('prowess',\n",
+ " 'a superior skill that you can learn by study and practice and observation'),\n",
+ " ('art', 'the creation of beautiful or significant things'),\n",
+ " ('artistic production',\n",
+ " 'the creation of beautiful or significant things'),\n",
+ " ('artistry',\n",
+ " 'a superior skill that you can learn by study and practice and observation'),\n",
+ " ('humanistic discipline',\n",
+ " 'studies intended to provide general knowledge and intellectual skills (rather than occupational or professional skills)'),\n",
+ " ('artistic creation',\n",
+ " 'the creation of beautiful or significant things')]},\n",
+ " {'answer': 'asa_dulcis',\n",
+ " 'hint': 'synonyms for asa dulcis',\n",
+ " 'clues': [('gum benzoin',\n",
+ " 'gum resin used especially in treating skin irritation'),\n",
+ " ('benzoin', 'gum resin used especially in treating skin irritation'),\n",
+ " ('benjamin', 'gum resin used especially in treating skin irritation'),\n",
+ " ('gum benjamin',\n",
+ " 'gum resin used especially in treating skin irritation')]},\n",
+ " {'answer': 'ascension',\n",
+ " 'hint': 'synonyms for ascension',\n",
+ " 'clues': [('ascent',\n",
+ " 'the act of changing location in an upward direction'),\n",
+ " ('rise', 'a movement upward'),\n",
+ " ('ascending', 'the act of changing location in an upward direction'),\n",
+ " ('rising', 'a movement upward')]},\n",
+ " {'answer': 'ascent',\n",
+ " 'hint': 'synonyms for ascent',\n",
+ " 'clues': [('rise', 'a movement upward'),\n",
+ " ('climb', 'an upward slope or grade (as in a road)'),\n",
+ " ('upgrade', 'an upward slope or grade (as in a road)'),\n",
+ " ('rising', 'a movement upward'),\n",
+ " ('acclivity', 'an upward slope or grade (as in a road)'),\n",
+ " ('ascension', 'the act of changing location in an upward direction'),\n",
+ " ('ascending', 'the act of changing location in an upward direction')]},\n",
+ " {'answer': 'ash-bin',\n",
+ " 'hint': 'synonyms for ash-bin',\n",
+ " 'clues': [('trash barrel',\n",
+ " 'a bin that holds rubbish until it is collected'),\n",
+ " ('trash bin', 'a bin that holds rubbish until it is collected'),\n",
+ " ('ashcan', 'a bin that holds rubbish until it is collected'),\n",
+ " ('wastebin', 'a bin that holds rubbish until it is collected'),\n",
+ " ('ashbin', 'a bin that holds rubbish until it is collected'),\n",
+ " ('garbage can', 'a bin that holds rubbish until it is collected'),\n",
+ " ('dustbin', 'a bin that holds rubbish until it is collected'),\n",
+ " ('trash can', 'a bin that holds rubbish until it is collected')]},\n",
+ " {'answer': 'ash_bin',\n",
+ " 'hint': 'synonyms for ash bin',\n",
+ " 'clues': [('ash-bin', 'a bin that holds rubbish until it is collected'),\n",
+ " ('trash barrel', 'a bin that holds rubbish until it is collected'),\n",
+ " ('trash bin', 'a bin that holds rubbish until it is collected'),\n",
+ " ('ashcan', 'a bin that holds rubbish until it is collected'),\n",
+ " ('wastebin', 'a bin that holds rubbish until it is collected'),\n",
+ " ('garbage can', 'a bin that holds rubbish until it is collected'),\n",
+ " ('dustbin', 'a bin that holds rubbish until it is collected'),\n",
+ " ('trash can', 'a bin that holds rubbish until it is collected')]},\n",
+ " {'answer': 'ashbin',\n",
+ " 'hint': 'synonyms for ashbin',\n",
+ " 'clues': [('ash-bin', 'a bin that holds rubbish until it is collected'),\n",
+ " ('trash barrel', 'a bin that holds rubbish until it is collected'),\n",
+ " ('trash bin', 'a bin that holds rubbish until it is collected'),\n",
+ " ('ashcan', 'a bin that holds rubbish until it is collected'),\n",
+ " ('wastebin', 'a bin that holds rubbish until it is collected'),\n",
+ " ('garbage can', 'a bin that holds rubbish until it is collected'),\n",
+ " ('dustbin', 'a bin that holds rubbish until it is collected'),\n",
+ " ('trash can', 'a bin that holds rubbish until it is collected')]},\n",
+ " {'answer': 'ashcan',\n",
+ " 'hint': 'synonyms for ashcan',\n",
+ " 'clues': [('ash-bin', 'a bin that holds rubbish until it is collected'),\n",
+ " ('trash barrel', 'a bin that holds rubbish until it is collected'),\n",
+ " ('trash bin', 'a bin that holds rubbish until it is collected'),\n",
+ " ('wastebin', 'a bin that holds rubbish until it is collected'),\n",
+ " ('garbage can', 'a bin that holds rubbish until it is collected'),\n",
+ " ('dustbin', 'a bin that holds rubbish until it is collected'),\n",
+ " ('trash can', 'a bin that holds rubbish until it is collected')]},\n",
+ " {'answer': 'aspect',\n",
+ " 'hint': 'synonyms for aspect',\n",
+ " 'clues': [('facet', 'a distinct feature or element in a problem'),\n",
+ " ('expression', \"the feelings expressed on a person's face\"),\n",
+ " ('panorama', 'the visual percept of a region'),\n",
+ " ('scene', 'the visual percept of a region'),\n",
+ " ('vista', 'the visual percept of a region'),\n",
+ " ('view', 'the visual percept of a region'),\n",
+ " ('look', \"the feelings expressed on a person's face\"),\n",
+ " ('prospect', 'the visual percept of a region'),\n",
+ " ('facial expression', \"the feelings expressed on a person's face\")]},\n",
+ " {'answer': 'asperity',\n",
+ " 'hint': 'synonyms for asperity',\n",
+ " 'clues': [('grimness', 'something hard to endure'),\n",
+ " ('hardship', 'something hard to endure'),\n",
+ " ('severity', 'something hard to endure'),\n",
+ " ('rigorousness', 'something hard to endure'),\n",
+ " ('rigour', 'something hard to endure'),\n",
+ " ('sharpness', 'harshness of manner'),\n",
+ " ('severeness', 'something hard to endure')]},\n",
+ " {'answer': 'aspersion',\n",
+ " 'hint': 'synonyms for aspersion',\n",
+ " 'clues': [('sprinkling', 'the act of sprinkling water in baptism (rare)'),\n",
+ " ('calumny', \"an abusive attack on a person's character or good name\"),\n",
+ " ('denigration', \"an abusive attack on a person's character or good name\"),\n",
+ " ('defamation', \"an abusive attack on a person's character or good name\"),\n",
+ " ('slur', 'a disparaging remark'),\n",
+ " ('slander', \"an abusive attack on a person's character or good name\")]},\n",
+ " {'answer': 'aspiration',\n",
+ " 'hint': 'synonyms for aspiration',\n",
+ " 'clues': [('breathing in',\n",
+ " 'the act of inhaling; the drawing in of air (or other gases) as in breathing'),\n",
+ " ('inspiration',\n",
+ " 'the act of inhaling; the drawing in of air (or other gases) as in breathing'),\n",
+ " ('ambition', 'a cherished desire'),\n",
+ " ('dream', 'a cherished desire'),\n",
+ " ('intake',\n",
+ " 'the act of inhaling; the drawing in of air (or other gases) as in breathing'),\n",
+ " ('inhalation',\n",
+ " 'the act of inhaling; the drawing in of air (or other gases) as in breathing')]},\n",
+ " {'answer': 'ass',\n",
+ " 'hint': 'synonyms for ass',\n",
+ " 'clues': [('piece of tail', 'slang for sexual intercourse'),\n",
+ " ('nookie', 'slang for sexual intercourse'),\n",
+ " ('nooky', 'slang for sexual intercourse'),\n",
+ " ('piece of ass', 'slang for sexual intercourse'),\n",
+ " ('screw', 'slang for sexual intercourse'),\n",
+ " ('arsenic',\n",
+ " 'a very poisonous metallic element that has three allotropic forms; arsenic and arsenic compounds are used as herbicides and insecticides and various alloys; found in arsenopyrite and orpiment and realgar'),\n",
+ " ('atomic number 33',\n",
+ " 'a very poisonous metallic element that has three allotropic forms; arsenic and arsenic compounds are used as herbicides and insecticides and various alloys; found in arsenopyrite and orpiment and realgar'),\n",
+ " ('roll in the hay', 'slang for sexual intercourse'),\n",
+ " ('shag', 'slang for sexual intercourse'),\n",
+ " ('fucking', 'slang for sexual intercourse'),\n",
+ " ('shtup', 'slang for sexual intercourse')]},\n",
+ " {'answer': 'assemblage',\n",
+ " 'hint': 'synonyms for assemblage',\n",
+ " 'clues': [('assembly', 'the social act of assembling'),\n",
+ " ('collection',\n",
+ " 'several things grouped together or considered as a whole'),\n",
+ " ('aggregation',\n",
+ " 'several things grouped together or considered as a whole'),\n",
+ " ('gathering', 'the social act of assembling'),\n",
+ " ('accumulation',\n",
+ " 'several things grouped together or considered as a whole'),\n",
+ " ('hookup',\n",
+ " 'a system of components assembled together for a particular purpose')]},\n",
+ " {'answer': 'assembly',\n",
+ " 'hint': 'synonyms for assembly',\n",
+ " 'clues': [('forum', 'a public facility to meet for open discussion'),\n",
+ " ('meeting place', 'a public facility to meet for open discussion'),\n",
+ " ('fabrication',\n",
+ " 'the act of constructing something (as a piece of machinery)'),\n",
+ " ('gathering', 'the social act of assembling'),\n",
+ " ('assemblage', 'the social act of assembling')]},\n",
+ " {'answer': 'assertion',\n",
+ " 'hint': 'synonyms for assertion',\n",
+ " 'clues': [('affirmation',\n",
+ " 'the act of affirming or asserting or stating something'),\n",
+ " ('asseveration',\n",
+ " 'a declaration that is made emphatically (as if no supporting evidence were necessary)'),\n",
+ " ('statement', 'the act of affirming or asserting or stating something'),\n",
+ " ('averment',\n",
+ " 'a declaration that is made emphatically (as if no supporting evidence were necessary)')]},\n",
+ " {'answer': 'assignation',\n",
+ " 'hint': 'synonyms for assignation',\n",
+ " 'clues': [('tryst', 'a secret rendezvous (especially between lovers)'),\n",
+ " ('allocation',\n",
+ " 'the act of distributing by allotting or apportioning; distribution according to a plan'),\n",
+ " ('parceling',\n",
+ " 'the act of distributing by allotting or apportioning; distribution according to a plan'),\n",
+ " ('allotment',\n",
+ " 'the act of distributing by allotting or apportioning; distribution according to a plan'),\n",
+ " ('apportionment',\n",
+ " 'the act of distributing by allotting or apportioning; distribution according to a plan'),\n",
+ " ('apportioning',\n",
+ " 'the act of distributing by allotting or apportioning; distribution according to a plan')]},\n",
+ " {'answer': 'assignment',\n",
+ " 'hint': 'synonyms for assignment',\n",
+ " 'clues': [('designation',\n",
+ " 'the act of putting a person into a non-elective position'),\n",
+ " ('naming', 'the act of putting a person into a non-elective position'),\n",
+ " ('grant', '(law) a transfer of property by deed of conveyance'),\n",
+ " ('duty assignment',\n",
+ " 'a duty that you are assigned to perform (especially in the armed forces)'),\n",
+ " ('assigning',\n",
+ " 'the act of distributing something to designated places or persons'),\n",
+ " ('appointment',\n",
+ " 'the act of putting a person into a non-elective position')]},\n",
+ " {'answer': 'assortment',\n",
+ " 'hint': 'synonyms for assortment',\n",
+ " 'clues': [('compartmentalisation',\n",
+ " 'the act of distributing things into classes or categories of the same type'),\n",
+ " ('miscellanea', 'a collection containing a variety of sorts of things'),\n",
+ " ('variety', 'a collection containing a variety of sorts of things'),\n",
+ " ('mixture', 'a collection containing a variety of sorts of things'),\n",
+ " ('motley', 'a collection containing a variety of sorts of things'),\n",
+ " ('smorgasbord', 'a collection containing a variety of sorts of things'),\n",
+ " ('potpourri', 'a collection containing a variety of sorts of things'),\n",
+ " ('salmagundi', 'a collection containing a variety of sorts of things'),\n",
+ " ('classification',\n",
+ " 'the act of distributing things into classes or categories of the same type'),\n",
+ " ('categorisation',\n",
+ " 'the act of distributing things into classes or categories of the same type'),\n",
+ " ('mixed bag', 'a collection containing a variety of sorts of things')]},\n",
+ " {'answer': 'assumption',\n",
+ " 'hint': 'synonyms for assumption',\n",
+ " 'clues': [('laying claim',\n",
+ " 'the act of taking possession of or power over something'),\n",
+ " ('premiss',\n",
+ " 'a statement that is assumed to be true and from which a conclusion can be drawn'),\n",
+ " ('supposition', 'a hypothesis that is taken for granted'),\n",
+ " ('presumptuousness',\n",
+ " 'audacious (even arrogant) behavior that you have no right to'),\n",
+ " ('effrontery',\n",
+ " 'audacious (even arrogant) behavior that you have no right to'),\n",
+ " ('supposal', 'a hypothesis that is taken for granted'),\n",
+ " ('presumption',\n",
+ " 'audacious (even arrogant) behavior that you have no right to')]},\n",
+ " {'answer': 'assurance',\n",
+ " 'hint': 'synonyms for assurance',\n",
+ " 'clues': [('confidence',\n",
+ " 'freedom from doubt; belief in yourself and your abilities'),\n",
+ " ('pledge',\n",
+ " 'a binding commitment to do or give or refrain from something'),\n",
+ " ('sureness', 'freedom from doubt; belief in yourself and your abilities'),\n",
+ " ('self-confidence',\n",
+ " 'freedom from doubt; belief in yourself and your abilities'),\n",
+ " ('authority',\n",
+ " 'freedom from doubt; belief in yourself and your abilities'),\n",
+ " ('self-assurance',\n",
+ " 'freedom from doubt; belief in yourself and your abilities')]},\n",
+ " {'answer': 'assuredness',\n",
+ " 'hint': 'synonyms for assuredness',\n",
+ " 'clues': [('cool', 'great coolness and composure under strain'),\n",
+ " ('poise', 'great coolness and composure under strain'),\n",
+ " ('aplomb', 'great coolness and composure under strain'),\n",
+ " ('sang-froid', 'great coolness and composure under strain')]},\n",
+ " {'answer': 'astuteness',\n",
+ " 'hint': 'synonyms for astuteness',\n",
+ " 'clues': [('profundity',\n",
+ " 'the intellectual ability to penetrate deeply into ideas'),\n",
+ " ('shrewdness',\n",
+ " 'intelligence manifested by being astute (as in business dealings)'),\n",
+ " ('depth', 'the intellectual ability to penetrate deeply into ideas'),\n",
+ " ('deepness', 'the intellectual ability to penetrate deeply into ideas'),\n",
+ " ('perspicaciousness',\n",
+ " 'intelligence manifested by being astute (as in business dealings)'),\n",
+ " ('profoundness',\n",
+ " 'the intellectual ability to penetrate deeply into ideas'),\n",
+ " ('perspicacity',\n",
+ " 'intelligence manifested by being astute (as in business dealings)')]},\n",
+ " {'answer': 'asylum',\n",
+ " 'hint': 'synonyms for asylum',\n",
+ " 'clues': [('mental home',\n",
+ " 'a hospital for mentally incompetent or unbalanced person'),\n",
+ " ('insane asylum',\n",
+ " 'a hospital for mentally incompetent or unbalanced person'),\n",
+ " ('sanctuary', 'a shelter from danger or hardship'),\n",
+ " ('mental hospital',\n",
+ " 'a hospital for mentally incompetent or unbalanced person'),\n",
+ " ('psychiatric hospital',\n",
+ " 'a hospital for mentally incompetent or unbalanced person'),\n",
+ " ('institution',\n",
+ " 'a hospital for mentally incompetent or unbalanced person'),\n",
+ " ('mental institution',\n",
+ " 'a hospital for mentally incompetent or unbalanced person'),\n",
+ " ('refuge', 'a shelter from danger or hardship')]},\n",
+ " {'answer': 'ataractic_agent',\n",
+ " 'hint': 'synonyms for ataractic agent',\n",
+ " 'clues': [('tranquilliser',\n",
+ " 'a drug used to reduce stress or tension without reducing mental clarity'),\n",
+ " ('antianxiety agent',\n",
+ " 'a drug used to reduce stress or tension without reducing mental clarity'),\n",
+ " ('ataractic drug',\n",
+ " 'a drug used to reduce stress or tension without reducing mental clarity'),\n",
+ " ('ataractic',\n",
+ " 'a drug used to reduce stress or tension without reducing mental clarity')]},\n",
+ " {'answer': 'ataractic_drug',\n",
+ " 'hint': 'synonyms for ataractic drug',\n",
+ " 'clues': [('tranquilliser',\n",
+ " 'a drug used to reduce stress or tension without reducing mental clarity'),\n",
+ " ('antianxiety agent',\n",
+ " 'a drug used to reduce stress or tension without reducing mental clarity'),\n",
+ " ('ataractic',\n",
+ " 'a drug used to reduce stress or tension without reducing mental clarity'),\n",
+ " ('ataractic agent',\n",
+ " 'a drug used to reduce stress or tension without reducing mental clarity')]},\n",
+ " {'answer': 'ataraxis',\n",
+ " 'hint': 'synonyms for ataraxis',\n",
+ " 'clues': [('heartsease', 'the absence of mental stress or anxiety'),\n",
+ " ('peace', 'the absence of mental stress or anxiety'),\n",
+ " ('peace of mind', 'the absence of mental stress or anxiety'),\n",
+ " ('serenity', 'the absence of mental stress or anxiety'),\n",
+ " ('repose', 'the absence of mental stress or anxiety'),\n",
+ " ('peacefulness', 'the absence of mental stress or anxiety')]},\n",
+ " {'answer': 'atherodyde',\n",
+ " 'hint': 'synonyms for atherodyde',\n",
+ " 'clues': [('ramjet',\n",
+ " 'a simple type of jet engine; must be launched at high speed'),\n",
+ " ('flying drainpipe',\n",
+ " 'a simple type of jet engine; must be launched at high speed'),\n",
+ " ('ramjet engine',\n",
+ " 'a simple type of jet engine; must be launched at high speed'),\n",
+ " ('athodyd',\n",
+ " 'a simple type of jet engine; must be launched at high speed')]},\n",
+ " {'answer': 'athletic_supporter',\n",
+ " 'hint': 'synonyms for athletic supporter',\n",
+ " 'clues': [('jock',\n",
+ " 'a support for the genitals worn by men engaging in strenuous exercise'),\n",
+ " ('jockstrap',\n",
+ " 'a support for the genitals worn by men engaging in strenuous exercise'),\n",
+ " ('suspensor',\n",
+ " 'a support for the genitals worn by men engaging in strenuous exercise'),\n",
+ " ('supporter',\n",
+ " 'a support for the genitals worn by men engaging in strenuous exercise')]},\n",
+ " {'answer': 'athodyd',\n",
+ " 'hint': 'synonyms for athodyd',\n",
+ " 'clues': [('ramjet',\n",
+ " 'a simple type of jet engine; must be launched at high speed'),\n",
+ " ('flying drainpipe',\n",
+ " 'a simple type of jet engine; must be launched at high speed'),\n",
+ " ('atherodyde',\n",
+ " 'a simple type of jet engine; must be launched at high speed'),\n",
+ " ('ramjet engine',\n",
+ " 'a simple type of jet engine; must be launched at high speed')]},\n",
+ " {'answer': 'atm',\n",
+ " 'hint': 'synonyms for atm',\n",
+ " 'clues': [('standard pressure',\n",
+ " 'a unit of pressure: the pressure that will support a column of mercury 760 mm high at sea level and 0 degrees centigrade'),\n",
+ " ('atmosphere',\n",
+ " 'a unit of pressure: the pressure that will support a column of mercury 760 mm high at sea level and 0 degrees centigrade'),\n",
+ " ('automated teller machine',\n",
+ " 'an unattended machine (outside some banks) that dispenses money when a personal coded card is used'),\n",
+ " ('automated teller',\n",
+ " 'an unattended machine (outside some banks) that dispenses money when a personal coded card is used'),\n",
+ " ('cash dispenser',\n",
+ " 'an unattended machine (outside some banks) that dispenses money when a personal coded card is used'),\n",
+ " ('asynchronous transfer mode',\n",
+ " 'a means of digital communications that is capable of very high speeds; suitable for transmission of images or voice or video as well as data'),\n",
+ " ('cash machine',\n",
+ " 'an unattended machine (outside some banks) that dispenses money when a personal coded card is used'),\n",
+ " ('standard atmosphere',\n",
+ " 'a unit of pressure: the pressure that will support a column of mercury 760 mm high at sea level and 0 degrees centigrade')]},\n",
+ " {'answer': 'atmosphere',\n",
+ " 'hint': 'synonyms for atmosphere',\n",
+ " 'clues': [('standard pressure',\n",
+ " 'a unit of pressure: the pressure that will support a column of mercury 760 mm high at sea level and 0 degrees centigrade'),\n",
+ " ('air',\n",
+ " 'a distinctive but intangible quality surrounding a person or thing'),\n",
+ " ('atm',\n",
+ " 'a unit of pressure: the pressure that will support a column of mercury 760 mm high at sea level and 0 degrees centigrade'),\n",
+ " ('aura',\n",
+ " 'a distinctive but intangible quality surrounding a person or thing'),\n",
+ " ('standard atmosphere',\n",
+ " 'a unit of pressure: the pressure that will support a column of mercury 760 mm high at sea level and 0 degrees centigrade')]},\n",
+ " {'answer': 'atom',\n",
+ " 'hint': 'synonyms for atom',\n",
+ " 'clues': [('molecule', '(nontechnical usage) a tiny piece of anything'),\n",
+ " ('mote', '(nontechnical usage) a tiny piece of anything'),\n",
+ " ('speck', '(nontechnical usage) a tiny piece of anything'),\n",
+ " ('corpuscle', '(nontechnical usage) a tiny piece of anything'),\n",
+ " ('particle', '(nontechnical usage) a tiny piece of anything')]},\n",
+ " {'answer': 'atomiser',\n",
+ " 'hint': 'synonyms for atomiser',\n",
+ " 'clues': [('sprayer',\n",
+ " 'a dispenser that turns a liquid (such as perfume) into a fine mist'),\n",
+ " ('atomizer',\n",
+ " 'a dispenser that turns a liquid (such as perfume) into a fine mist'),\n",
+ " ('spray',\n",
+ " 'a dispenser that turns a liquid (such as perfume) into a fine mist'),\n",
+ " ('nebuliser',\n",
+ " 'a dispenser that turns a liquid (such as perfume) into a fine mist')]},\n",
+ " {'answer': 'atomizer',\n",
+ " 'hint': 'synonyms for atomizer',\n",
+ " 'clues': [('atomiser',\n",
+ " 'a dispenser that turns a liquid (such as perfume) into a fine mist'),\n",
+ " ('sprayer',\n",
+ " 'a dispenser that turns a liquid (such as perfume) into a fine mist'),\n",
+ " ('spray',\n",
+ " 'a dispenser that turns a liquid (such as perfume) into a fine mist'),\n",
+ " ('nebuliser',\n",
+ " 'a dispenser that turns a liquid (such as perfume) into a fine mist')]},\n",
+ " {'answer': 'atrociousness',\n",
+ " 'hint': 'synonyms for atrociousness',\n",
+ " 'clues': [('barbarousness',\n",
+ " 'the quality of being shockingly cruel and inhumane'),\n",
+ " ('barbarity', 'the quality of being shockingly cruel and inhumane'),\n",
+ " ('atrocity', 'the quality of being shockingly cruel and inhumane'),\n",
+ " ('heinousness', 'the quality of being shockingly cruel and inhumane')]},\n",
+ " {'answer': 'atrocity',\n",
+ " 'hint': 'synonyms for atrocity',\n",
+ " 'clues': [('atrociousness',\n",
+ " 'the quality of being shockingly cruel and inhumane'),\n",
+ " ('heinousness', 'the quality of being shockingly cruel and inhumane'),\n",
+ " ('barbarity', 'the quality of being shockingly cruel and inhumane'),\n",
+ " ('barbarousness', 'the quality of being shockingly cruel and inhumane'),\n",
+ " ('inhumanity', 'an act of atrocious cruelty')]},\n",
+ " {'answer': 'attachment',\n",
+ " 'hint': 'synonyms for attachment',\n",
+ " 'clues': [('affixation', 'the act of attaching or affixing something'),\n",
+ " ('adhesion',\n",
+ " 'faithful support for a cause or political party or religion'),\n",
+ " ('adherence',\n",
+ " 'faithful support for a cause or political party or religion'),\n",
+ " ('fastening', 'the act of fastening things together'),\n",
+ " ('bond', 'a connection that fastens things together'),\n",
+ " ('fond regard',\n",
+ " 'a feeling of affection for a person or an institution')]},\n",
+ " {'answer': 'attack',\n",
+ " 'hint': 'synonyms for attack',\n",
+ " 'clues': [('onrush',\n",
+ " '(military) an offensive against an enemy (using weapons)'),\n",
+ " ('flak', 'intense adverse criticism'),\n",
+ " ('onset', '(military) an offensive against an enemy (using weapons)'),\n",
+ " ('blast', 'intense adverse criticism'),\n",
+ " ('fire', 'intense adverse criticism'),\n",
+ " ('attempt', 'the act of attacking'),\n",
+ " ('onslaught', '(military) an offensive against an enemy (using weapons)'),\n",
+ " ('approach',\n",
+ " 'ideas or actions intended to deal with a problem or situation'),\n",
+ " ('tone-beginning',\n",
+ " 'a decisive manner of beginning a musical tone or phrase'),\n",
+ " ('plan of attack',\n",
+ " 'ideas or actions intended to deal with a problem or situation')]},\n",
+ " {'answer': 'attainment',\n",
+ " 'hint': 'synonyms for attainment',\n",
+ " 'clues': [('skill', 'an ability that has been acquired by training'),\n",
+ " ('acquisition', 'an ability that has been acquired by training'),\n",
+ " ('accomplishment', 'an ability that has been acquired by training'),\n",
+ " ('acquirement', 'an ability that has been acquired by training')]},\n",
+ " {'answer': 'attempt',\n",
+ " 'hint': 'synonyms for attempt',\n",
+ " 'clues': [('try',\n",
+ " 'earnest and conscientious activity intended to do or accomplish something'),\n",
+ " ('endeavor',\n",
+ " 'earnest and conscientious activity intended to do or accomplish something'),\n",
+ " ('effort',\n",
+ " 'earnest and conscientious activity intended to do or accomplish something'),\n",
+ " ('attack', 'the act of attacking')]},\n",
+ " {'answer': 'attracter',\n",
+ " 'hint': 'synonyms for attracter',\n",
+ " 'clues': [('attractor',\n",
+ " '(physics) a point in the ideal multidimensional phase space that is used to describe a system toward which the system tends to evolve regardless of the starting conditions of the system'),\n",
+ " ('magnet', 'a characteristic that provides pleasure and attracts'),\n",
+ " ('attraction', 'a characteristic that provides pleasure and attracts'),\n",
+ " ('attractive feature',\n",
+ " 'a characteristic that provides pleasure and attracts')]},\n",
+ " {'answer': 'attraction',\n",
+ " 'hint': 'synonyms for attraction',\n",
+ " 'clues': [('attractiveness',\n",
+ " 'the quality of arousing interest; being attractive or something that attracts'),\n",
+ " ('magnet', 'a characteristic that provides pleasure and attracts'),\n",
+ " ('attracter', 'a characteristic that provides pleasure and attracts'),\n",
+ " ('attractive feature',\n",
+ " 'a characteristic that provides pleasure and attracts'),\n",
+ " ('attractive force', 'the force by which one object attracts another')]},\n",
+ " {'answer': 'attractor',\n",
+ " 'hint': 'synonyms for attractor',\n",
+ " 'clues': [('magnet',\n",
+ " 'a characteristic that provides pleasure and attracts'),\n",
+ " ('attracter',\n",
+ " '(physics) a point in the ideal multidimensional phase space that is used to describe a system toward which the system tends to evolve regardless of the starting conditions of the system'),\n",
+ " ('attraction', 'a characteristic that provides pleasure and attracts'),\n",
+ " ('attractive feature',\n",
+ " 'a characteristic that provides pleasure and attracts')]},\n",
+ " {'answer': 'attrition',\n",
+ " 'hint': 'synonyms for attrition',\n",
+ " 'clues': [('contriteness',\n",
+ " 'sorrow for sin arising from fear of damnation'),\n",
+ " ('abrasion',\n",
+ " 'the wearing down of rock particles by friction due to water or wind or ice'),\n",
+ " ('detrition',\n",
+ " 'the wearing down of rock particles by friction due to water or wind or ice'),\n",
+ " ('corrasion', 'erosion by friction'),\n",
+ " ('grinding',\n",
+ " 'the wearing down of rock particles by friction due to water or wind or ice'),\n",
+ " ('contrition', 'sorrow for sin arising from fear of damnation')]},\n",
+ " {'answer': 'au_revoir',\n",
+ " 'hint': 'synonyms for au revoir',\n",
+ " 'clues': [('good-by', 'a farewell remark'),\n",
+ " ('good day', 'a farewell remark'),\n",
+ " ('adios', 'a farewell remark'),\n",
+ " ('adieu', 'a farewell remark'),\n",
+ " ('bye', 'a farewell remark'),\n",
+ " ('so long', 'a farewell remark'),\n",
+ " ('auf wiedersehen', 'a farewell remark'),\n",
+ " ('bye-bye', 'a farewell remark'),\n",
+ " ('arrivederci', 'a farewell remark'),\n",
+ " ('sayonara', 'a farewell remark'),\n",
+ " ('cheerio', 'a farewell remark')]},\n",
+ " {'answer': 'audio',\n",
+ " 'hint': 'synonyms for audio',\n",
+ " 'clues': [('sound recording', 'a recording of acoustic signals'),\n",
+ " ('audio recording', 'a recording of acoustic signals'),\n",
+ " ('audio frequency', 'an audible acoustic wave frequency'),\n",
+ " ('sound', 'the audible part of a transmitted signal')]},\n",
+ " {'answer': 'audition',\n",
+ " 'hint': 'synonyms for audition',\n",
+ " 'clues': [('auditory sense', 'the ability to hear; the auditory faculty'),\n",
+ " ('sense of hearing', 'the ability to hear; the auditory faculty'),\n",
+ " ('auditory modality', 'the ability to hear; the auditory faculty'),\n",
+ " ('tryout', 'a test of the suitability of a performer'),\n",
+ " ('hearing', 'the ability to hear; the auditory faculty')]},\n",
+ " {'answer': 'auditory_modality',\n",
+ " 'hint': 'synonyms for auditory modality',\n",
+ " 'clues': [('auditory sense', 'the ability to hear; the auditory faculty'),\n",
+ " ('audition', 'the ability to hear; the auditory faculty'),\n",
+ " ('hearing', 'the ability to hear; the auditory faculty'),\n",
+ " ('sense of hearing', 'the ability to hear; the auditory faculty')]},\n",
+ " {'answer': 'auditory_sense',\n",
+ " 'hint': 'synonyms for auditory sense',\n",
+ " 'clues': [('audition', 'the ability to hear; the auditory faculty'),\n",
+ " ('auditory modality', 'the ability to hear; the auditory faculty'),\n",
+ " ('hearing', 'the ability to hear; the auditory faculty'),\n",
+ " ('sense of hearing', 'the ability to hear; the auditory faculty')]},\n",
+ " {'answer': 'auf_wiedersehen',\n",
+ " 'hint': 'synonyms for auf wiedersehen',\n",
+ " 'clues': [('au revoir', 'a farewell remark'),\n",
+ " ('good-by', 'a farewell remark'),\n",
+ " ('good day', 'a farewell remark'),\n",
+ " ('adios', 'a farewell remark'),\n",
+ " ('adieu', 'a farewell remark'),\n",
+ " ('bye', 'a farewell remark'),\n",
+ " ('so long', 'a farewell remark'),\n",
+ " ('bye-bye', 'a farewell remark'),\n",
+ " ('arrivederci', 'a farewell remark'),\n",
+ " ('sayonara', 'a farewell remark'),\n",
+ " ('cheerio', 'a farewell remark')]},\n",
+ " {'answer': 'auger',\n",
+ " 'hint': 'synonyms for auger',\n",
+ " 'clues': [('wimble', 'hand tool for boring holes'),\n",
+ " ('screw auger', 'hand tool for boring holes'),\n",
+ " ('gimlet', 'hand tool for boring holes'),\n",
+ " (\"plumber's snake\",\n",
+ " 'a long flexible steel coil for dislodging stoppages in curved pipes')]},\n",
+ " {'answer': 'aught',\n",
+ " 'hint': 'synonyms for aught',\n",
+ " 'clues': [('null', 'a quantity of no importance'),\n",
+ " ('nada', 'a quantity of no importance'),\n",
+ " ('zippo', 'a quantity of no importance'),\n",
+ " ('zilch', 'a quantity of no importance'),\n",
+ " ('cypher', 'a quantity of no importance'),\n",
+ " ('naught', 'a quantity of no importance'),\n",
+ " ('nix', 'a quantity of no importance'),\n",
+ " ('goose egg', 'a quantity of no importance'),\n",
+ " ('cipher', 'a quantity of no importance'),\n",
+ " ('zero', 'a quantity of no importance'),\n",
+ " ('zip', 'a quantity of no importance'),\n",
+ " ('nil', 'a quantity of no importance'),\n",
+ " ('nothing', 'a quantity of no importance')]},\n",
+ " {'answer': 'aura',\n",
+ " 'hint': 'synonyms for aura',\n",
+ " 'clues': [('gloriole',\n",
+ " 'an indication of radiant light drawn around the head of a saint'),\n",
+ " ('air',\n",
+ " 'a distinctive but intangible quality surrounding a person or thing'),\n",
+ " ('glory',\n",
+ " 'an indication of radiant light drawn around the head of a saint'),\n",
+ " ('atmosphere',\n",
+ " 'a distinctive but intangible quality surrounding a person or thing'),\n",
+ " ('nimbus',\n",
+ " 'an indication of radiant light drawn around the head of a saint'),\n",
+ " ('aureole',\n",
+ " 'an indication of radiant light drawn around the head of a saint'),\n",
+ " ('halo',\n",
+ " 'an indication of radiant light drawn around the head of a saint')]},\n",
+ " {'answer': 'aureole',\n",
+ " 'hint': 'synonyms for aureole',\n",
+ " 'clues': [('gloriole',\n",
+ " 'an indication of radiant light drawn around the head of a saint'),\n",
+ " ('corona',\n",
+ " \"the outermost region of the sun's atmosphere; visible as a white halo during a solar eclipse\"),\n",
+ " ('glory',\n",
+ " 'an indication of radiant light drawn around the head of a saint'),\n",
+ " ('aura',\n",
+ " 'an indication of radiant light drawn around the head of a saint'),\n",
+ " ('nimbus',\n",
+ " 'an indication of radiant light drawn around the head of a saint'),\n",
+ " ('halo',\n",
+ " 'an indication of radiant light drawn around the head of a saint')]},\n",
+ " {'answer': 'aurora',\n",
+ " 'hint': 'synonyms for aurora',\n",
+ " 'clues': [('sunup', 'the first light of day'),\n",
+ " ('daybreak', 'the first light of day'),\n",
+ " ('dawn', 'the first light of day'),\n",
+ " ('morning', 'the first light of day'),\n",
+ " ('cockcrow', 'the first light of day'),\n",
+ " ('break of the day', 'the first light of day'),\n",
+ " ('first light', 'the first light of day'),\n",
+ " ('sunrise', 'the first light of day'),\n",
+ " ('dayspring', 'the first light of day')]},\n",
+ " {'answer': 'authorisation',\n",
+ " 'hint': 'synonyms for authorisation',\n",
+ " 'clues': [('dominance',\n",
+ " 'the power or right to give orders or make decisions'),\n",
+ " ('empowerment',\n",
+ " 'the act of conferring legality or sanction or formal warrant'),\n",
+ " ('authorization', 'official permission or approval'),\n",
+ " ('say-so', 'the power or right to give orders or make decisions'),\n",
+ " ('potency', 'the power or right to give orders or make decisions'),\n",
+ " ('mandate', 'a document giving an official instruction or command'),\n",
+ " ('authority', 'the power or right to give orders or make decisions'),\n",
+ " ('sanction', 'official permission or approval')]},\n",
+ " {'answer': 'authoritarianism',\n",
+ " 'hint': 'synonyms for authoritarianism',\n",
+ " 'clues': [('one-man rule',\n",
+ " 'a form of government in which the ruler is an absolute dictator (not restricted by a constitution or laws or opposition etc.)'),\n",
+ " ('despotism',\n",
+ " 'a form of government in which the ruler is an absolute dictator (not restricted by a constitution or laws or opposition etc.)'),\n",
+ " ('totalitarianism',\n",
+ " 'a form of government in which the ruler is an absolute dictator (not restricted by a constitution or laws or opposition etc.)'),\n",
+ " ('tyranny',\n",
+ " 'a form of government in which the ruler is an absolute dictator (not restricted by a constitution or laws or opposition etc.)'),\n",
+ " ('shogunate',\n",
+ " 'a form of government in which the ruler is an absolute dictator (not restricted by a constitution or laws or opposition etc.)'),\n",
+ " ('absolutism',\n",
+ " 'a form of government in which the ruler is an absolute dictator (not restricted by a constitution or laws or opposition etc.)'),\n",
+ " ('dictatorship',\n",
+ " 'a form of government in which the ruler is an absolute dictator (not restricted by a constitution or laws or opposition etc.)'),\n",
+ " ('monocracy',\n",
+ " 'a form of government in which the ruler is an absolute dictator (not restricted by a constitution or laws or opposition etc.)')]},\n",
+ " {'answer': 'authorities',\n",
+ " 'hint': 'synonyms for authorities',\n",
+ " 'clues': [('office', 'an administrative unit of government'),\n",
+ " ('regime',\n",
+ " 'the organization that is the governing authority of a political unit'),\n",
+ " ('assurance',\n",
+ " 'freedom from doubt; belief in yourself and your abilities'),\n",
+ " ('potency', 'the power or right to give orders or make decisions'),\n",
+ " ('authority', 'the power or right to give orders or make decisions'),\n",
+ " ('confidence',\n",
+ " 'freedom from doubt; belief in yourself and your abilities'),\n",
+ " ('federal agency', 'an administrative unit of government'),\n",
+ " ('bureau', 'an administrative unit of government'),\n",
+ " ('authorization', 'the power or right to give orders or make decisions'),\n",
+ " ('sanction', 'official permission or approval'),\n",
+ " ('dominance', 'the power or right to give orders or make decisions'),\n",
+ " ('agency', 'an administrative unit of government'),\n",
+ " ('government agency', 'an administrative unit of government'),\n",
+ " ('say-so', 'the power or right to give orders or make decisions'),\n",
+ " ('government',\n",
+ " 'the organization that is the governing authority of a political unit'),\n",
+ " ('sureness', 'freedom from doubt; belief in yourself and your abilities'),\n",
+ " ('self-confidence',\n",
+ " 'freedom from doubt; belief in yourself and your abilities'),\n",
+ " ('self-assurance',\n",
+ " 'freedom from doubt; belief in yourself and your abilities')]},\n",
+ " {'answer': 'authority',\n",
+ " 'hint': 'synonyms for authority',\n",
+ " 'clues': [('dominance',\n",
+ " 'the power or right to give orders or make decisions'),\n",
+ " ('sanction', 'official permission or approval'),\n",
+ " ('agency', 'an administrative unit of government'),\n",
+ " ('office', 'an administrative unit of government'),\n",
+ " ('assurance',\n",
+ " 'freedom from doubt; belief in yourself and your abilities'),\n",
+ " ('government agency', 'an administrative unit of government'),\n",
+ " ('say-so', 'the power or right to give orders or make decisions'),\n",
+ " ('potency', 'the power or right to give orders or make decisions'),\n",
+ " ('authorisation', 'official permission or approval'),\n",
+ " ('confidence',\n",
+ " 'freedom from doubt; belief in yourself and your abilities'),\n",
+ " ('federal agency', 'an administrative unit of government'),\n",
+ " ('sureness', 'freedom from doubt; belief in yourself and your abilities'),\n",
+ " ('self-confidence',\n",
+ " 'freedom from doubt; belief in yourself and your abilities'),\n",
+ " ('bureau', 'an administrative unit of government'),\n",
+ " ('self-assurance',\n",
+ " 'freedom from doubt; belief in yourself and your abilities')]},\n",
+ " {'answer': 'authorization',\n",
+ " 'hint': 'synonyms for authorization',\n",
+ " 'clues': [('dominance',\n",
+ " 'the power or right to give orders or make decisions'),\n",
+ " ('empowerment',\n",
+ " 'the act of conferring legality or sanction or formal warrant'),\n",
+ " ('authorisation', 'a document giving an official instruction or command'),\n",
+ " ('say-so', 'the power or right to give orders or make decisions'),\n",
+ " ('potency', 'the power or right to give orders or make decisions'),\n",
+ " ('mandate', 'a document giving an official instruction or command'),\n",
+ " ('authority', 'the power or right to give orders or make decisions'),\n",
+ " ('sanction', 'official permission or approval')]},\n",
+ " {'answer': 'authorship',\n",
+ " 'hint': 'synonyms for authorship',\n",
+ " 'clues': [('penning', 'the act of creating written works'),\n",
+ " ('composition', 'the act of creating written works'),\n",
+ " ('writing', 'the act of creating written works'),\n",
+ " ('paternity', 'the act of initiating a new idea or theory or writing')]},\n",
+ " {'answer': 'auto',\n",
+ " 'hint': 'synonyms for auto',\n",
+ " 'clues': [('machine',\n",
+ " 'a motor vehicle with four wheels; usually propelled by an internal combustion engine'),\n",
+ " ('car',\n",
+ " 'a motor vehicle with four wheels; usually propelled by an internal combustion engine'),\n",
+ " ('automobile',\n",
+ " 'a motor vehicle with four wheels; usually propelled by an internal combustion engine'),\n",
+ " ('motorcar',\n",
+ " 'a motor vehicle with four wheels; usually propelled by an internal combustion engine')]},\n",
+ " {'answer': 'auto_maker',\n",
+ " 'hint': 'synonyms for auto maker',\n",
+ " 'clues': [('car maker',\n",
+ " 'a business engaged in the manufacture of automobiles'),\n",
+ " ('car manufacturer',\n",
+ " 'a business engaged in the manufacture of automobiles'),\n",
+ " ('auto manufacturer',\n",
+ " 'a business engaged in the manufacture of automobiles'),\n",
+ " ('automaker', 'a business engaged in the manufacture of automobiles')]},\n",
+ " {'answer': 'autobus',\n",
+ " 'hint': 'synonyms for autobus',\n",
+ " 'clues': [('motorbus',\n",
+ " 'a vehicle carrying many passengers; used for public transport'),\n",
+ " ('coach',\n",
+ " 'a vehicle carrying many passengers; used for public transport'),\n",
+ " ('motorcoach',\n",
+ " 'a vehicle carrying many passengers; used for public transport'),\n",
+ " ('omnibus',\n",
+ " 'a vehicle carrying many passengers; used for public transport'),\n",
+ " ('charabanc',\n",
+ " 'a vehicle carrying many passengers; used for public transport'),\n",
+ " ('bus', 'a vehicle carrying many passengers; used for public transport'),\n",
+ " ('jitney',\n",
+ " 'a vehicle carrying many passengers; used for public transport'),\n",
+ " ('passenger vehicle',\n",
+ " 'a vehicle carrying many passengers; used for public transport'),\n",
+ " ('double-decker',\n",
+ " 'a vehicle carrying many passengers; used for public transport')]},\n",
+ " {'answer': 'automaker',\n",
+ " 'hint': 'synonyms for automaker',\n",
+ " 'clues': [('car maker',\n",
+ " 'a business engaged in the manufacture of automobiles'),\n",
+ " ('car manufacturer',\n",
+ " 'a business engaged in the manufacture of automobiles'),\n",
+ " ('auto manufacturer',\n",
+ " 'a business engaged in the manufacture of automobiles'),\n",
+ " ('auto maker', 'a business engaged in the manufacture of automobiles')]},\n",
+ " {'answer': 'automated_teller',\n",
+ " 'hint': 'synonyms for automated teller',\n",
+ " 'clues': [('automated teller machine',\n",
+ " 'an unattended machine (outside some banks) that dispenses money when a personal coded card is used'),\n",
+ " ('automatic teller',\n",
+ " 'an unattended machine (outside some banks) that dispenses money when a personal coded card is used'),\n",
+ " ('cash dispenser',\n",
+ " 'an unattended machine (outside some banks) that dispenses money when a personal coded card is used'),\n",
+ " ('cash machine',\n",
+ " 'an unattended machine (outside some banks) that dispenses money when a personal coded card is used')]},\n",
+ " {'answer': 'automated_teller_machine',\n",
+ " 'hint': 'synonyms for automated teller machine',\n",
+ " 'clues': [('automatic teller',\n",
+ " 'an unattended machine (outside some banks) that dispenses money when a personal coded card is used'),\n",
+ " ('cash dispenser',\n",
+ " 'an unattended machine (outside some banks) that dispenses money when a personal coded card is used'),\n",
+ " ('automatic teller machine',\n",
+ " 'an unattended machine (outside some banks) that dispenses money when a personal coded card is used'),\n",
+ " ('cash machine',\n",
+ " 'an unattended machine (outside some banks) that dispenses money when a personal coded card is used')]},\n",
+ " {'answer': 'automatic_teller',\n",
+ " 'hint': 'synonyms for automatic teller',\n",
+ " 'clues': [('automated teller machine',\n",
+ " 'an unattended machine (outside some banks) that dispenses money when a personal coded card is used'),\n",
+ " ('cash dispenser',\n",
+ " 'an unattended machine (outside some banks) that dispenses money when a personal coded card is used'),\n",
+ " ('automated teller',\n",
+ " 'an unattended machine (outside some banks) that dispenses money when a personal coded card is used'),\n",
+ " ('cash machine',\n",
+ " 'an unattended machine (outside some banks) that dispenses money when a personal coded card is used')]},\n",
+ " {'answer': 'automatic_teller_machine',\n",
+ " 'hint': 'synonyms for automatic teller machine',\n",
+ " 'clues': [('automated teller machine',\n",
+ " 'an unattended machine (outside some banks) that dispenses money when a personal coded card is used'),\n",
+ " ('automatic teller',\n",
+ " 'an unattended machine (outside some banks) that dispenses money when a personal coded card is used'),\n",
+ " ('cash dispenser',\n",
+ " 'an unattended machine (outside some banks) that dispenses money when a personal coded card is used'),\n",
+ " ('cash machine',\n",
+ " 'an unattended machine (outside some banks) that dispenses money when a personal coded card is used')]},\n",
+ " {'answer': 'automobile',\n",
+ " 'hint': 'synonyms for automobile',\n",
+ " 'clues': [('machine',\n",
+ " 'a motor vehicle with four wheels; usually propelled by an internal combustion engine'),\n",
+ " ('auto',\n",
+ " 'a motor vehicle with four wheels; usually propelled by an internal combustion engine'),\n",
+ " ('car',\n",
+ " 'a motor vehicle with four wheels; usually propelled by an internal combustion engine'),\n",
+ " ('motorcar',\n",
+ " 'a motor vehicle with four wheels; usually propelled by an internal combustion engine')]},\n",
+ " {'answer': 'automobile_horn',\n",
+ " 'hint': 'synonyms for automobile horn',\n",
+ " 'clues': [('motor horn',\n",
+ " 'a device on an automobile for making a warning noise'),\n",
+ " ('horn', 'a device on an automobile for making a warning noise'),\n",
+ " ('car horn', 'a device on an automobile for making a warning noise'),\n",
+ " ('hooter', 'a device on an automobile for making a warning noise')]},\n",
+ " {'answer': 'avarice',\n",
+ " 'hint': 'synonyms for avarice',\n",
+ " 'clues': [('covetousness',\n",
+ " 'reprehensible acquisitiveness; insatiable desire for wealth (personified as one of the deadly sins)'),\n",
+ " ('cupidity', 'extreme greed for material wealth'),\n",
+ " ('avaritia',\n",
+ " 'reprehensible acquisitiveness; insatiable desire for wealth (personified as one of the deadly sins)'),\n",
+ " ('greed',\n",
+ " 'reprehensible acquisitiveness; insatiable desire for wealth (personified as one of the deadly sins)'),\n",
+ " ('rapacity',\n",
+ " 'reprehensible acquisitiveness; insatiable desire for wealth (personified as one of the deadly sins)'),\n",
+ " ('avariciousness', 'extreme greed for material wealth')]},\n",
+ " {'answer': 'avaritia',\n",
+ " 'hint': 'synonyms for avaritia',\n",
+ " 'clues': [('avarice',\n",
+ " 'reprehensible acquisitiveness; insatiable desire for wealth (personified as one of the deadly sins)'),\n",
+ " ('covetousness',\n",
+ " 'reprehensible acquisitiveness; insatiable desire for wealth (personified as one of the deadly sins)'),\n",
+ " ('greed',\n",
+ " 'reprehensible acquisitiveness; insatiable desire for wealth (personified as one of the deadly sins)'),\n",
+ " ('rapacity',\n",
+ " 'reprehensible acquisitiveness; insatiable desire for wealth (personified as one of the deadly sins)')]},\n",
+ " {'answer': 'aviation',\n",
+ " 'hint': 'synonyms for aviation',\n",
+ " 'clues': [('air power',\n",
+ " \"the aggregation of a country's military aircraft\"),\n",
+ " ('air', 'travel via aircraft'),\n",
+ " ('air travel', 'travel via aircraft'),\n",
+ " ('airmanship', 'the art of operating aircraft')]},\n",
+ " {'answer': 'avocation',\n",
+ " 'hint': 'synonyms for avocation',\n",
+ " 'clues': [('hobby', 'an auxiliary activity'),\n",
+ " ('spare-time activity', 'an auxiliary activity'),\n",
+ " ('by-line', 'an auxiliary activity'),\n",
+ " ('pursuit', 'an auxiliary activity'),\n",
+ " ('sideline', 'an auxiliary activity')]},\n",
+ " {'answer': 'avoirdupois',\n",
+ " 'hint': 'synonyms for avoirdupois',\n",
+ " 'clues': [('avoirdupois weight',\n",
+ " 'a system of weights based on the 16-ounce pound (or 7,000 grains)'),\n",
+ " ('blubber', 'excess bodily weight'),\n",
+ " ('fatness', 'excess bodily weight'),\n",
+ " ('fat', 'excess bodily weight')]},\n",
+ " {'answer': 'award',\n",
+ " 'hint': 'synonyms for award',\n",
+ " 'clues': [('awarding', 'a grant made by a law court'),\n",
+ " ('accolade', 'a tangible symbol signifying approval or distinction'),\n",
+ " ('prize',\n",
+ " 'something given for victory or superiority in a contest or competition or for winning a lottery'),\n",
+ " ('honor', 'a tangible symbol signifying approval or distinction'),\n",
+ " ('laurels', 'a tangible symbol signifying approval or distinction')]},\n",
+ " {'answer': 'awareness',\n",
+ " 'hint': 'synonyms for awareness',\n",
+ " 'clues': [('consciousness', 'having knowledge of'),\n",
+ " ('sentience', 'state of elementary or undifferentiated consciousness'),\n",
+ " ('cognizance', 'having knowledge of'),\n",
+ " ('knowingness', 'having knowledge of')]},\n",
+ " {'answer': 'awkwardness',\n",
+ " 'hint': 'synonyms for awkwardness',\n",
+ " 'clues': [('nuisance value', 'the quality of an embarrassing situation'),\n",
+ " ('clumsiness', 'unskillfulness resulting from a lack of training'),\n",
+ " ('maladroitness', 'unskillfulness resulting from a lack of training'),\n",
+ " ('unwieldiness',\n",
+ " 'trouble in carrying or managing caused by bulk or shape'),\n",
+ " ('cumbersomeness',\n",
+ " 'trouble in carrying or managing caused by bulk or shape'),\n",
+ " ('ineptness', 'unskillfulness resulting from a lack of training'),\n",
+ " ('gracelessness',\n",
+ " 'the inelegance of someone stiff and unrelaxed (as by embarrassment)'),\n",
+ " ('slowness', 'unskillfulness resulting from a lack of training'),\n",
+ " ('ineptitude', 'unskillfulness resulting from a lack of training'),\n",
+ " ('stiffness',\n",
+ " 'the inelegance of someone stiff and unrelaxed (as by embarrassment)')]},\n",
+ " {'answer': 'b',\n",
+ " 'hint': 'synonyms for b',\n",
+ " 'clues': [('barn',\n",
+ " '(physics) a unit of nuclear cross section; the effective circular area that one particle presents to another as a target for an encounter'),\n",
+ " ('vitamin B',\n",
+ " 'originally thought to be a single vitamin but now separated into several B vitamins'),\n",
+ " ('vitamin B complex',\n",
+ " 'originally thought to be a single vitamin but now separated into several B vitamins'),\n",
+ " ('atomic number 5',\n",
+ " 'a trivalent metalloid element; occurs both in a hard black crystal and in the form of a yellow or brown powder'),\n",
+ " ('boron',\n",
+ " 'a trivalent metalloid element; occurs both in a hard black crystal and in the form of a yellow or brown powder')]},\n",
+ " {'answer': 'baby_buggy',\n",
+ " 'hint': 'synonyms for baby buggy',\n",
+ " 'clues': [('go-cart',\n",
+ " 'a small vehicle with four wheels in which a baby or child is pushed around'),\n",
+ " ('pusher',\n",
+ " 'a small vehicle with four wheels in which a baby or child is pushed around'),\n",
+ " ('stroller',\n",
+ " 'a small vehicle with four wheels in which a baby or child is pushed around'),\n",
+ " ('perambulator',\n",
+ " 'a small vehicle with four wheels in which a baby or child is pushed around'),\n",
+ " ('pram',\n",
+ " 'a small vehicle with four wheels in which a baby or child is pushed around'),\n",
+ " ('pushchair',\n",
+ " 'a small vehicle with four wheels in which a baby or child is pushed around'),\n",
+ " ('carriage',\n",
+ " 'a small vehicle with four wheels in which a baby or child is pushed around'),\n",
+ " ('baby carriage',\n",
+ " 'a small vehicle with four wheels in which a baby or child is pushed around')]},\n",
+ " {'answer': 'baby_carriage',\n",
+ " 'hint': 'synonyms for baby carriage',\n",
+ " 'clues': [('go-cart',\n",
+ " 'a small vehicle with four wheels in which a baby or child is pushed around'),\n",
+ " ('pusher',\n",
+ " 'a small vehicle with four wheels in which a baby or child is pushed around'),\n",
+ " ('stroller',\n",
+ " 'a small vehicle with four wheels in which a baby or child is pushed around'),\n",
+ " ('pram',\n",
+ " 'a small vehicle with four wheels in which a baby or child is pushed around'),\n",
+ " ('perambulator',\n",
+ " 'a small vehicle with four wheels in which a baby or child is pushed around'),\n",
+ " ('baby buggy',\n",
+ " 'a small vehicle with four wheels in which a baby or child is pushed around'),\n",
+ " ('pushchair',\n",
+ " 'a small vehicle with four wheels in which a baby or child is pushed around'),\n",
+ " ('carriage',\n",
+ " 'a small vehicle with four wheels in which a baby or child is pushed around')]},\n",
+ " {'answer': 'bacchanalia',\n",
+ " 'hint': 'synonyms for bacchanalia',\n",
+ " 'clues': [('saturnalia',\n",
+ " 'a wild gathering involving excessive drinking and promiscuity'),\n",
+ " ('drunken revelry',\n",
+ " 'a wild gathering involving excessive drinking and promiscuity'),\n",
+ " ('riot', 'a wild gathering involving excessive drinking and promiscuity'),\n",
+ " ('debauch',\n",
+ " 'a wild gathering involving excessive drinking and promiscuity'),\n",
+ " ('bacchanal',\n",
+ " 'a wild gathering involving excessive drinking and promiscuity'),\n",
+ " ('debauchery',\n",
+ " 'a wild gathering involving excessive drinking and promiscuity'),\n",
+ " ('orgy',\n",
+ " 'a wild gathering involving excessive drinking and promiscuity')]},\n",
+ " {'answer': 'back_breaker',\n",
+ " 'hint': 'synonyms for back breaker',\n",
+ " 'clues': [('battery-acid', 'street name for lysergic acid diethylamide'),\n",
+ " ('dose', 'street name for lysergic acid diethylamide'),\n",
+ " ('pane', 'street name for lysergic acid diethylamide'),\n",
+ " ('acid', 'street name for lysergic acid diethylamide'),\n",
+ " ('superman', 'street name for lysergic acid diethylamide'),\n",
+ " ('window pane', 'street name for lysergic acid diethylamide'),\n",
+ " ('dot', 'street name for lysergic acid diethylamide'),\n",
+ " ('loony toons', 'street name for lysergic acid diethylamide')]},\n",
+ " {'answer': 'back_pack',\n",
+ " 'hint': 'synonyms for back pack',\n",
+ " 'clues': [('packsack',\n",
+ " 'a bag carried by a strap on your back or shoulder'),\n",
+ " ('backpack', 'a bag carried by a strap on your back or shoulder'),\n",
+ " ('haversack', 'a bag carried by a strap on your back or shoulder'),\n",
+ " ('rucksack', 'a bag carried by a strap on your back or shoulder'),\n",
+ " ('knapsack', 'a bag carried by a strap on your back or shoulder')]},\n",
+ " {'answer': 'back_talk',\n",
+ " 'hint': 'synonyms for back talk',\n",
+ " 'clues': [('sassing', 'an impudent or insolent rejoinder'),\n",
+ " ('mouth', 'an impudent or insolent rejoinder'),\n",
+ " ('lip', 'an impudent or insolent rejoinder'),\n",
+ " ('backtalk', 'an impudent or insolent rejoinder')]},\n",
+ " {'answer': 'backbone',\n",
+ " 'hint': 'synonyms for backbone',\n",
+ " 'clues': [('gumption', 'fortitude and determination'),\n",
+ " ('anchor', 'a central cohesive source of support and stability'),\n",
+ " ('guts', 'fortitude and determination'),\n",
+ " ('lynchpin', 'a central cohesive source of support and stability'),\n",
+ " ('keystone', 'a central cohesive source of support and stability'),\n",
+ " ('grit', 'fortitude and determination'),\n",
+ " ('sand', 'fortitude and determination'),\n",
+ " ('moxie', 'fortitude and determination'),\n",
+ " ('mainstay', 'a central cohesive source of support and stability'),\n",
+ " ('spine',\n",
+ " \"the part of a book's cover that encloses the inner side of the book's pages and that faces outward when the book is shelved\")]},\n",
+ " {'answer': 'background',\n",
+ " 'hint': 'synonyms for background',\n",
+ " 'clues': [('desktop',\n",
+ " '(computer science) the area of the screen in graphical user interfaces against which icons and windows appear'),\n",
+ " ('screen background',\n",
+ " '(computer science) the area of the screen in graphical user interfaces against which icons and windows appear'),\n",
+ " ('backdrop', 'scenery hung at back of stage'),\n",
+ " ('background knowledge',\n",
+ " 'information that is essential to understanding a situation or problem'),\n",
+ " ('background signal',\n",
+ " 'extraneous signals that can be confused with the phenomenon to be observed or measured'),\n",
+ " ('ground',\n",
+ " 'the part of a scene (or picture) that lies behind objects in the foreground'),\n",
+ " ('backcloth', 'scenery hung at back of stage')]},\n",
+ " {'answer': 'backing',\n",
+ " 'hint': 'synonyms for backing',\n",
+ " 'clues': [('financial support',\n",
+ " 'financial resources provided to make some project possible'),\n",
+ " ('patronage', 'the act of providing approval and support'),\n",
+ " ('support', 'financial resources provided to make some project possible'),\n",
+ " ('mount', 'something forming a back that is added for strengthening'),\n",
+ " ('funding', 'financial resources provided to make some project possible'),\n",
+ " ('financial backing',\n",
+ " 'financial resources provided to make some project possible'),\n",
+ " ('championship', 'the act of providing approval and support'),\n",
+ " ('backup', 'the act of providing approval and support')]},\n",
+ " {'answer': 'backpack',\n",
+ " 'hint': 'synonyms for backpack',\n",
+ " 'clues': [('packsack',\n",
+ " 'a bag carried by a strap on your back or shoulder'),\n",
+ " ('haversack', 'a bag carried by a strap on your back or shoulder'),\n",
+ " ('rucksack', 'a bag carried by a strap on your back or shoulder'),\n",
+ " ('back pack', 'a bag carried by a strap on your back or shoulder'),\n",
+ " ('knapsack', 'a bag carried by a strap on your back or shoulder')]},\n",
+ " {'answer': 'backsheesh',\n",
+ " 'hint': 'synonyms for backsheesh',\n",
+ " 'clues': [('gratuity',\n",
+ " 'a relatively small amount of money given for services rendered (as by a waiter)'),\n",
+ " ('tip',\n",
+ " 'a relatively small amount of money given for services rendered (as by a waiter)'),\n",
+ " ('bakshish',\n",
+ " 'a relatively small amount of money given for services rendered (as by a waiter)'),\n",
+ " ('pourboire',\n",
+ " 'a relatively small amount of money given for services rendered (as by a waiter)'),\n",
+ " ('baksheesh',\n",
+ " 'a relatively small amount of money given for services rendered (as by a waiter)')]},\n",
+ " {'answer': 'backsliding',\n",
+ " 'hint': 'synonyms for backsliding',\n",
+ " 'clues': [('lapsing', 'a failure to maintain a higher state'),\n",
+ " ('lapse', 'a failure to maintain a higher state'),\n",
+ " ('reverting', 'a failure to maintain a higher state'),\n",
+ " ('reversion', 'a failure to maintain a higher state'),\n",
+ " ('relapse', 'a failure to maintain a higher state')]},\n",
+ " {'answer': 'backtalk',\n",
+ " 'hint': 'synonyms for backtalk',\n",
+ " 'clues': [('sassing', 'an impudent or insolent rejoinder'),\n",
+ " ('mouth', 'an impudent or insolent rejoinder'),\n",
+ " ('lip', 'an impudent or insolent rejoinder'),\n",
+ " ('back talk', 'an impudent or insolent rejoinder')]},\n",
+ " {'answer': 'backup',\n",
+ " 'hint': 'synonyms for backup',\n",
+ " 'clues': [('support',\n",
+ " 'a musical part (vocal or instrumental) that supports or provides background for other musical parts'),\n",
+ " ('computer backup',\n",
+ " '(computer science) a copy of a file or directory on a separate storage device'),\n",
+ " ('accompaniment',\n",
+ " 'a musical part (vocal or instrumental) that supports or provides background for other musical parts'),\n",
+ " ('patronage', 'the act of providing approval and support'),\n",
+ " ('championship', 'the act of providing approval and support'),\n",
+ " ('musical accompaniment',\n",
+ " 'a musical part (vocal or instrumental) that supports or provides background for other musical parts'),\n",
+ " ('backing', 'the act of providing approval and support')]},\n",
+ " {'answer': 'backwardness',\n",
+ " 'hint': 'synonyms for backwardness',\n",
+ " 'clues': [('mental retardation',\n",
+ " 'lack of normal development of intellectual capacities'),\n",
+ " ('subnormality', 'lack of normal development of intellectual capacities'),\n",
+ " ('slowness', 'lack of normal development of intellectual capacities'),\n",
+ " ('retardation',\n",
+ " 'lack of normal development of intellectual capacities')]},\n",
+ " {'answer': 'backwash',\n",
+ " 'hint': 'synonyms for backwash',\n",
+ " 'clues': [('race',\n",
+ " 'the flow of air that is driven backwards by an aircraft propeller'),\n",
+ " ('wash',\n",
+ " 'the flow of air that is driven backwards by an aircraft propeller'),\n",
+ " ('slipstream',\n",
+ " 'the flow of air that is driven backwards by an aircraft propeller'),\n",
+ " ('airstream',\n",
+ " 'the flow of air that is driven backwards by an aircraft propeller'),\n",
+ " ('aftermath',\n",
+ " 'the consequences of an event (especially a catastrophic event)'),\n",
+ " ('wake',\n",
+ " 'the consequences of an event (especially a catastrophic event)')]},\n",
+ " {'answer': 'badness',\n",
+ " 'hint': 'synonyms for badness',\n",
+ " 'clues': [('bad',\n",
+ " 'that which is below standard or expectations as of ethics or decency'),\n",
+ " ('mischievousness', 'an attribute of mischievous children'),\n",
+ " ('naughtiness', 'an attribute of mischievous children'),\n",
+ " ('severeness',\n",
+ " 'used of the degree of something undesirable e.g. pain or weather'),\n",
+ " ('severity',\n",
+ " 'used of the degree of something undesirable e.g. pain or weather')]},\n",
+ " {'answer': 'bafflement',\n",
+ " 'hint': 'synonyms for bafflement',\n",
+ " 'clues': [('befuddlement',\n",
+ " 'confusion resulting from failure to understand'),\n",
+ " ('bewilderment', 'confusion resulting from failure to understand'),\n",
+ " ('bemusement', 'confusion resulting from failure to understand'),\n",
+ " ('mystification', 'confusion resulting from failure to understand'),\n",
+ " ('obfuscation', 'confusion resulting from failure to understand'),\n",
+ " ('puzzlement', 'confusion resulting from failure to understand')]},\n",
+ " {'answer': 'bag',\n",
+ " 'hint': 'synonyms for bag',\n",
+ " 'clues': [('grip',\n",
+ " 'a portable rectangular container for carrying clothes'),\n",
+ " ('cup of tea', 'an activity that you like or at which you are superior'),\n",
+ " ('purse',\n",
+ " 'a container used for carrying money and small personal items or accessories (especially by women)'),\n",
+ " ('base', 'a place that the runner must touch before scoring'),\n",
+ " ('handbag',\n",
+ " 'a container used for carrying money and small personal items or accessories (especially by women)'),\n",
+ " ('suitcase', 'a portable rectangular container for carrying clothes'),\n",
+ " ('dish', 'an activity that you like or at which you are superior'),\n",
+ " ('traveling bag',\n",
+ " 'a portable rectangular container for carrying clothes'),\n",
+ " ('bagful', 'the quantity that a bag will hold'),\n",
+ " ('pocketbook',\n",
+ " 'a container used for carrying money and small personal items or accessories (especially by women)')]},\n",
+ " {'answer': 'bagatelle',\n",
+ " 'hint': 'synonyms for bagatelle',\n",
+ " 'clues': [('bar billiards',\n",
+ " 'a table game in which short cues are used to knock balls into holes that are guarded by wooden pegs; penalties are incurred if the pegs are knocked over'),\n",
+ " ('fluff', 'something of little value or significance'),\n",
+ " ('frippery', 'something of little value or significance'),\n",
+ " ('frivolity', 'something of little value or significance')]},\n",
+ " {'answer': 'bagnio',\n",
+ " 'hint': 'synonyms for bagnio',\n",
+ " 'clues': [('house of ill repute',\n",
+ " 'a building where prostitutes are available'),\n",
+ " ('bawdyhouse', 'a building where prostitutes are available'),\n",
+ " ('bordello', 'a building where prostitutes are available'),\n",
+ " ('cathouse', 'a building where prostitutes are available'),\n",
+ " ('bathhouse', 'a building containing public baths'),\n",
+ " ('house of prostitution', 'a building where prostitutes are available'),\n",
+ " ('brothel', 'a building where prostitutes are available'),\n",
+ " ('whorehouse', 'a building where prostitutes are available'),\n",
+ " ('sporting house', 'a building where prostitutes are available')]},\n",
+ " {'answer': 'bailiwick',\n",
+ " 'hint': 'synonyms for bailiwick',\n",
+ " 'clues': [('field of study', 'a branch of knowledge'),\n",
+ " ('subject field', 'a branch of knowledge'),\n",
+ " ('discipline', 'a branch of knowledge'),\n",
+ " ('field', 'a branch of knowledge'),\n",
+ " ('study', 'a branch of knowledge'),\n",
+ " ('subject area', 'a branch of knowledge'),\n",
+ " ('subject', 'a branch of knowledge')]},\n",
+ " {'answer': 'bait',\n",
+ " 'hint': 'synonyms for bait',\n",
+ " 'clues': [('lure',\n",
+ " 'something used to lure fish or other animals into danger so they can be trapped or killed'),\n",
+ " ('hook', 'anything that serves as an enticement'),\n",
+ " ('come-on', 'anything that serves as an enticement'),\n",
+ " ('decoy',\n",
+ " 'something used to lure fish or other animals into danger so they can be trapped or killed'),\n",
+ " ('sweetener', 'anything that serves as an enticement')]},\n",
+ " {'answer': 'baking_soda',\n",
+ " 'hint': 'synonyms for baking soda',\n",
+ " 'clues': [('saleratus',\n",
+ " 'a white soluble compound (NaHCO3) used in effervescent drinks and in baking powders and as an antacid'),\n",
+ " ('bicarbonate of soda',\n",
+ " 'a white soluble compound (NaHCO3) used in effervescent drinks and in baking powders and as an antacid'),\n",
+ " ('sodium bicarbonate',\n",
+ " 'a white soluble compound (NaHCO3) used in effervescent drinks and in baking powders and as an antacid'),\n",
+ " ('sodium hydrogen carbonate',\n",
+ " 'a white soluble compound (NaHCO3) used in effervescent drinks and in baking powders and as an antacid')]},\n",
+ " {'answer': 'baksheesh',\n",
+ " 'hint': 'synonyms for baksheesh',\n",
+ " 'clues': [('gratuity',\n",
+ " 'a relatively small amount of money given for services rendered (as by a waiter)'),\n",
+ " ('tip',\n",
+ " 'a relatively small amount of money given for services rendered (as by a waiter)'),\n",
+ " ('bakshish',\n",
+ " 'a relatively small amount of money given for services rendered (as by a waiter)'),\n",
+ " ('backsheesh',\n",
+ " 'a relatively small amount of money given for services rendered (as by a waiter)'),\n",
+ " ('pourboire',\n",
+ " 'a relatively small amount of money given for services rendered (as by a waiter)')]},\n",
+ " {'answer': 'bakshis',\n",
+ " 'hint': 'synonyms for bakshis',\n",
+ " 'clues': [('gratuity',\n",
+ " 'a relatively small amount of money given for services rendered (as by a waiter)'),\n",
+ " ('tip',\n",
+ " 'a relatively small amount of money given for services rendered (as by a waiter)'),\n",
+ " ('bakshish',\n",
+ " 'a relatively small amount of money given for services rendered (as by a waiter)'),\n",
+ " ('backsheesh',\n",
+ " 'a relatively small amount of money given for services rendered (as by a waiter)'),\n",
+ " ('pourboire',\n",
+ " 'a relatively small amount of money given for services rendered (as by a waiter)')]},\n",
+ " {'answer': 'bakshish',\n",
+ " 'hint': 'synonyms for bakshish',\n",
+ " 'clues': [('gratuity',\n",
+ " 'a relatively small amount of money given for services rendered (as by a waiter)'),\n",
+ " ('tip',\n",
+ " 'a relatively small amount of money given for services rendered (as by a waiter)'),\n",
+ " ('bakshis',\n",
+ " 'a relatively small amount of money given for services rendered (as by a waiter)'),\n",
+ " ('backsheesh',\n",
+ " 'a relatively small amount of money given for services rendered (as by a waiter)'),\n",
+ " ('pourboire',\n",
+ " 'a relatively small amount of money given for services rendered (as by a waiter)')]},\n",
+ " {'answer': 'balance',\n",
+ " 'hint': 'synonyms for balance',\n",
+ " 'clues': [('symmetry',\n",
+ " '(mathematics) an attribute of a shape or relation; exact reflection of form on opposite sides of a dividing line or plane'),\n",
+ " ('equilibrium', 'equality of distribution'),\n",
+ " ('remainder', 'something left after other parts have been taken away'),\n",
+ " ('counterbalance', 'equality of distribution'),\n",
+ " ('correspondence',\n",
+ " '(mathematics) an attribute of a shape or relation; exact reflection of form on opposite sides of a dividing line or plane'),\n",
+ " ('counterweight', 'a weight that balances another weight'),\n",
+ " ('balance wheel',\n",
+ " 'a wheel that regulates the rate of movement in a machine; especially a wheel oscillating against the hairspring of a timepiece to regulate its beat'),\n",
+ " ('residue', 'something left after other parts have been taken away'),\n",
+ " ('equalizer', 'a weight that balances another weight'),\n",
+ " ('symmetricalness',\n",
+ " '(mathematics) an attribute of a shape or relation; exact reflection of form on opposite sides of a dividing line or plane'),\n",
+ " ('residual', 'something left after other parts have been taken away'),\n",
+ " ('proportionality',\n",
+ " 'harmonious arrangement or relation of parts or elements within a whole (as in a design); - John Ruskin'),\n",
+ " ('proportion',\n",
+ " 'harmonious arrangement or relation of parts or elements within a whole (as in a design); - John Ruskin'),\n",
+ " ('rest', 'something left after other parts have been taken away'),\n",
+ " ('equipoise', 'equality of distribution'),\n",
+ " ('counterpoise', 'a weight that balances another weight'),\n",
+ " ('residuum', 'something left after other parts have been taken away')]},\n",
+ " {'answer': 'balk',\n",
+ " 'hint': 'synonyms for balk',\n",
+ " 'clues': [('rafter',\n",
+ " 'one of several parallel sloping beams that support a roof'),\n",
+ " ('baulk', 'the area on a billiard table behind the balkline'),\n",
+ " ('impediment',\n",
+ " 'something immaterial that interferes with or delays action or progress'),\n",
+ " ('handicap',\n",
+ " 'something immaterial that interferes with or delays action or progress'),\n",
+ " ('hindrance',\n",
+ " 'something immaterial that interferes with or delays action or progress'),\n",
+ " ('check',\n",
+ " 'something immaterial that interferes with or delays action or progress'),\n",
+ " ('deterrent',\n",
+ " 'something immaterial that interferes with or delays action or progress')]},\n",
+ " {'answer': 'ball',\n",
+ " 'hint': 'synonyms for ball',\n",
+ " 'clues': [('glob', 'a compact mass'),\n",
+ " ('lump', 'a compact mass'),\n",
+ " ('chunk', 'a compact mass'),\n",
+ " ('orb', 'an object with a spherical shape'),\n",
+ " ('musket ball', 'a solid projectile that is shot by a musket'),\n",
+ " ('formal', 'a lavish dance requiring formal attire'),\n",
+ " ('clod', 'a compact mass')]},\n",
+ " {'answer': 'ballista',\n",
+ " 'hint': 'synonyms for ballista',\n",
+ " 'clues': [('trebucket',\n",
+ " 'an engine that provided medieval artillery used during sieges; a heavy war engine for hurling large stones and other missiles'),\n",
+ " ('mangonel',\n",
+ " 'an engine that provided medieval artillery used during sieges; a heavy war engine for hurling large stones and other missiles'),\n",
+ " ('catapult',\n",
+ " 'an engine that provided medieval artillery used during sieges; a heavy war engine for hurling large stones and other missiles'),\n",
+ " ('arbalest',\n",
+ " 'an engine that provided medieval artillery used during sieges; a heavy war engine for hurling large stones and other missiles'),\n",
+ " ('bricole',\n",
+ " 'an engine that provided medieval artillery used during sieges; a heavy war engine for hurling large stones and other missiles'),\n",
+ " ('onager',\n",
+ " 'an engine that provided medieval artillery used during sieges; a heavy war engine for hurling large stones and other missiles')]},\n",
+ " {'answer': 'balm',\n",
+ " 'hint': 'synonyms for balm',\n",
+ " 'clues': [('salve',\n",
+ " 'semisolid preparation (usually containing a medicine) applied externally as a remedy or for soothing an irritation'),\n",
+ " ('unction',\n",
+ " 'semisolid preparation (usually containing a medicine) applied externally as a remedy or for soothing an irritation'),\n",
+ " ('unguent',\n",
+ " 'semisolid preparation (usually containing a medicine) applied externally as a remedy or for soothing an irritation'),\n",
+ " ('ointment',\n",
+ " 'semisolid preparation (usually containing a medicine) applied externally as a remedy or for soothing an irritation')]},\n",
+ " {'answer': 'baloney',\n",
+ " 'hint': 'synonyms for baloney',\n",
+ " 'clues': [('twaddle', 'pretentious or silly talk or writing'),\n",
+ " ('tarradiddle', 'pretentious or silly talk or writing'),\n",
+ " ('tommyrot', 'pretentious or silly talk or writing'),\n",
+ " ('bosh', 'pretentious or silly talk or writing'),\n",
+ " ('boloney', 'pretentious or silly talk or writing'),\n",
+ " ('bilgewater', 'pretentious or silly talk or writing'),\n",
+ " ('humbug', 'pretentious or silly talk or writing'),\n",
+ " ('drool', 'pretentious or silly talk or writing'),\n",
+ " ('tosh', 'pretentious or silly talk or writing')]},\n",
+ " {'answer': 'balusters',\n",
+ " 'hint': 'synonyms for balusters',\n",
+ " 'clues': [('bannister',\n",
+ " 'a railing at the side of a staircase or balcony to prevent people from falling'),\n",
+ " ('handrail',\n",
+ " 'a railing at the side of a staircase or balcony to prevent people from falling'),\n",
+ " ('baluster', 'one of a number of closely spaced supports for a railing'),\n",
+ " ('balustrade',\n",
+ " 'a railing at the side of a staircase or balcony to prevent people from falling')]},\n",
+ " {'answer': 'bam',\n",
+ " 'hint': 'synonyms for bam',\n",
+ " 'clues': [('blast', 'a sudden very loud noise'),\n",
+ " ('bang', 'a sudden very loud noise'),\n",
+ " ('clap', 'a sudden very loud noise'),\n",
+ " ('eruption', 'a sudden very loud noise')]},\n",
+ " {'answer': 'ban',\n",
+ " 'hint': 'synonyms for ban',\n",
+ " 'clues': [('proscription', 'a decree that prohibits something'),\n",
+ " ('forbiddance', 'an official prohibition or edict against something'),\n",
+ " ('prohibition', 'a decree that prohibits something'),\n",
+ " ('forbidding', 'an official prohibition or edict against something'),\n",
+ " ('banning', 'an official prohibition or edict against something')]},\n",
+ " {'answer': 'banality',\n",
+ " 'hint': 'synonyms for banality',\n",
+ " 'clues': [('cliche', 'a trite or obvious remark'),\n",
+ " ('platitude', 'a trite or obvious remark'),\n",
+ " ('commonplace', 'a trite or obvious remark'),\n",
+ " ('bromide', 'a trite or obvious remark')]},\n",
+ " {'answer': 'band',\n",
+ " 'hint': 'synonyms for band',\n",
+ " 'clues': [('striation', 'a stripe or stripes of contrasting color'),\n",
+ " ('lot', 'an unofficial association of people or groups'),\n",
+ " ('circle', 'an unofficial association of people or groups'),\n",
+ " ('set', 'an unofficial association of people or groups'),\n",
+ " ('ring',\n",
+ " 'jewelry consisting of a circlet of precious metal (often set with jewels) worn on the finger'),\n",
+ " ('dance band', 'a group of musicians playing popular music for dancing'),\n",
+ " ('stria', 'a stripe or stripes of contrasting color'),\n",
+ " ('stripe',\n",
+ " 'an adornment consisting of a strip of a contrasting color or material'),\n",
+ " ('dance orchestra',\n",
+ " 'a group of musicians playing popular music for dancing'),\n",
+ " ('banding',\n",
+ " 'an adornment consisting of a strip of a contrasting color or material')]},\n",
+ " {'answer': 'bandelet',\n",
+ " 'hint': 'synonyms for bandelet',\n",
+ " 'clues': [('square and rabbet',\n",
+ " 'molding in the form of a ring; at top of a column'),\n",
+ " ('annulet', 'molding in the form of a ring; at top of a column'),\n",
+ " ('bandelette', 'molding in the form of a ring; at top of a column'),\n",
+ " ('bandlet', 'molding in the form of a ring; at top of a column')]},\n",
+ " {'answer': 'banding',\n",
+ " 'hint': 'synonyms for banding',\n",
+ " 'clues': [('striation', 'a stripe or stripes of contrasting color'),\n",
+ " ('stria', 'a stripe or stripes of contrasting color'),\n",
+ " ('stripe',\n",
+ " 'an adornment consisting of a strip of a contrasting color or material'),\n",
+ " ('band',\n",
+ " 'an adornment consisting of a strip of a contrasting color or material')]},\n",
+ " {'answer': 'bangle',\n",
+ " 'hint': 'synonyms for bangle',\n",
+ " 'clues': [('bauble', 'cheap showy jewelry or ornament on clothing'),\n",
+ " ('bracelet', 'jewelry worn around the wrist for decoration'),\n",
+ " ('gaud', 'cheap showy jewelry or ornament on clothing'),\n",
+ " ('gewgaw', 'cheap showy jewelry or ornament on clothing'),\n",
+ " ('novelty', 'cheap showy jewelry or ornament on clothing'),\n",
+ " ('trinket', 'cheap showy jewelry or ornament on clothing'),\n",
+ " ('fallal', 'cheap showy jewelry or ornament on clothing')]},\n",
+ " {'answer': 'banister',\n",
+ " 'hint': 'synonyms for banister',\n",
+ " 'clues': [('bannister',\n",
+ " 'a railing at the side of a staircase or balcony to prevent people from falling'),\n",
+ " ('balusters',\n",
+ " 'a railing at the side of a staircase or balcony to prevent people from falling'),\n",
+ " ('balustrade',\n",
+ " 'a railing at the side of a staircase or balcony to prevent people from falling'),\n",
+ " ('handrail',\n",
+ " 'a railing at the side of a staircase or balcony to prevent people from falling')]},\n",
+ " {'answer': 'bank',\n",
+ " 'hint': 'synonyms for bank',\n",
+ " 'clues': [('money box',\n",
+ " 'a container (usually with a slot in the top) for keeping money at home'),\n",
+ " ('cant',\n",
+ " 'a slope in the turn of a road or track; the outside is higher than the inside in order to reduce the effects of centrifugal force'),\n",
+ " ('depository financial institution',\n",
+ " 'a financial institution that accepts deposits and channels the money into lending activities'),\n",
+ " ('coin bank',\n",
+ " 'a container (usually with a slot in the top) for keeping money at home'),\n",
+ " ('banking concern',\n",
+ " 'a financial institution that accepts deposits and channels the money into lending activities'),\n",
+ " ('banking company',\n",
+ " 'a financial institution that accepts deposits and channels the money into lending activities'),\n",
+ " ('savings bank',\n",
+ " 'a container (usually with a slot in the top) for keeping money at home'),\n",
+ " ('bank building',\n",
+ " 'a building in which the business of banking transacted'),\n",
+ " ('camber',\n",
+ " 'a slope in the turn of a road or track; the outside is higher than the inside in order to reduce the effects of centrifugal force')]},\n",
+ " {'answer': 'bank_bill',\n",
+ " 'hint': 'synonyms for bank bill',\n",
+ " 'clues': [('note',\n",
+ " 'a piece of paper money (especially one issued by a central bank)'),\n",
+ " ('bill',\n",
+ " 'a piece of paper money (especially one issued by a central bank)'),\n",
+ " ('government note',\n",
+ " 'a piece of paper money (especially one issued by a central bank)'),\n",
+ " ('bank note',\n",
+ " 'a piece of paper money (especially one issued by a central bank)'),\n",
+ " (\"banker's bill\",\n",
+ " 'a piece of paper money (especially one issued by a central bank)'),\n",
+ " ('greenback',\n",
+ " 'a piece of paper money (especially one issued by a central bank)')]},\n",
+ " {'answer': 'bank_line',\n",
+ " 'hint': 'synonyms for bank line',\n",
+ " 'clues': [('line', 'the maximum credit that a customer is allowed'),\n",
+ " ('personal credit line', 'the maximum credit that a customer is allowed'),\n",
+ " ('credit line', 'the maximum credit that a customer is allowed'),\n",
+ " ('personal line of credit',\n",
+ " 'the maximum credit that a customer is allowed'),\n",
+ " ('line of credit', 'the maximum credit that a customer is allowed')]},\n",
+ " {'answer': 'bank_note',\n",
+ " 'hint': 'synonyms for bank note',\n",
+ " 'clues': [('bank bill',\n",
+ " 'a piece of paper money (especially one issued by a central bank)'),\n",
+ " ('note',\n",
+ " 'a piece of paper money (especially one issued by a central bank)'),\n",
+ " ('bill',\n",
+ " 'a piece of paper money (especially one issued by a central bank)'),\n",
+ " ('greenback',\n",
+ " 'a piece of paper money (especially one issued by a central bank)'),\n",
+ " ('banknote',\n",
+ " 'a piece of paper money (especially one issued by a central bank)'),\n",
+ " (\"banker's bill\",\n",
+ " 'a piece of paper money (especially one issued by a central bank)'),\n",
+ " ('government note',\n",
+ " 'a piece of paper money (especially one issued by a central bank)')]},\n",
+ " {'answer': \"banker's_bill\",\n",
+ " 'hint': \"synonyms for banker's bill\",\n",
+ " 'clues': [('bank bill',\n",
+ " 'a piece of paper money (especially one issued by a central bank)'),\n",
+ " ('note',\n",
+ " 'a piece of paper money (especially one issued by a central bank)'),\n",
+ " ('bill',\n",
+ " 'a piece of paper money (especially one issued by a central bank)'),\n",
+ " ('government note',\n",
+ " 'a piece of paper money (especially one issued by a central bank)'),\n",
+ " ('bank note',\n",
+ " 'a piece of paper money (especially one issued by a central bank)'),\n",
+ " ('greenback',\n",
+ " 'a piece of paper money (especially one issued by a central bank)')]},\n",
+ " {'answer': 'banknote',\n",
+ " 'hint': 'synonyms for banknote',\n",
+ " 'clues': [('bank bill',\n",
+ " 'a piece of paper money (especially one issued by a central bank)'),\n",
+ " ('note',\n",
+ " 'a piece of paper money (especially one issued by a central bank)'),\n",
+ " ('bill',\n",
+ " 'a piece of paper money (especially one issued by a central bank)'),\n",
+ " ('government note',\n",
+ " 'a piece of paper money (especially one issued by a central bank)'),\n",
+ " ('bank note',\n",
+ " 'a piece of paper money (especially one issued by a central bank)'),\n",
+ " (\"banker's bill\",\n",
+ " 'a piece of paper money (especially one issued by a central bank)'),\n",
+ " ('greenback',\n",
+ " 'a piece of paper money (especially one issued by a central bank)')]},\n",
+ " {'answer': 'banks',\n",
+ " 'hint': 'synonyms for banks',\n",
+ " 'clues': [('bank', 'a long ridge or pile'),\n",
+ " ('depository financial institution',\n",
+ " 'a financial institution that accepts deposits and channels the money into lending activities'),\n",
+ " ('coin bank',\n",
+ " 'a container (usually with a slot in the top) for keeping money at home'),\n",
+ " ('bank building',\n",
+ " 'a building in which the business of banking transacted'),\n",
+ " ('money box',\n",
+ " 'a container (usually with a slot in the top) for keeping money at home'),\n",
+ " ('cant',\n",
+ " 'a slope in the turn of a road or track; the outside is higher than the inside in order to reduce the effects of centrifugal force'),\n",
+ " ('banking concern',\n",
+ " 'a financial institution that accepts deposits and channels the money into lending activities'),\n",
+ " ('banking company',\n",
+ " 'a financial institution that accepts deposits and channels the money into lending activities'),\n",
+ " ('savings bank',\n",
+ " 'a container (usually with a slot in the top) for keeping money at home'),\n",
+ " ('camber',\n",
+ " 'a slope in the turn of a road or track; the outside is higher than the inside in order to reduce the effects of centrifugal force')]},\n",
+ " {'answer': 'bannister',\n",
+ " 'hint': 'synonyms for bannister',\n",
+ " 'clues': [('handrail',\n",
+ " 'a railing at the side of a staircase or balcony to prevent people from falling'),\n",
+ " ('balusters',\n",
+ " 'a railing at the side of a staircase or balcony to prevent people from falling'),\n",
+ " ('balustrade',\n",
+ " 'a railing at the side of a staircase or balcony to prevent people from falling'),\n",
+ " ('banister',\n",
+ " 'a railing at the side of a staircase or balcony to prevent people from falling')]},\n",
+ " {'answer': 'bar',\n",
+ " 'hint': 'synonyms for bar',\n",
+ " 'clues': [('stripe',\n",
+ " 'a narrow marking of a different color or texture from the background'),\n",
+ " ('taproom',\n",
+ " 'a room or establishment where alcoholic drinks are served over a counter'),\n",
+ " ('prevention', 'the act of preventing'),\n",
+ " ('saloon',\n",
+ " 'a room or establishment where alcoholic drinks are served over a counter'),\n",
+ " ('cake', 'a block of solid substance (such as soap or wax)'),\n",
+ " ('ginmill',\n",
+ " 'a room or establishment where alcoholic drinks are served over a counter'),\n",
+ " ('measure', 'musical notation for a repeating pattern of musical beats'),\n",
+ " ('legal profession',\n",
+ " 'the body of individuals qualified to practice law in a particular jurisdiction'),\n",
+ " ('legal community',\n",
+ " 'the body of individuals qualified to practice law in a particular jurisdiction'),\n",
+ " ('barroom',\n",
+ " 'a room or establishment where alcoholic drinks are served over a counter'),\n",
+ " ('streak',\n",
+ " 'a narrow marking of a different color or texture from the background')]},\n",
+ " {'answer': 'barb',\n",
+ " 'hint': 'synonyms for barb',\n",
+ " 'clues': [('gibe',\n",
+ " 'an aggressive remark directed at a person like a missile and intended to have a telling effect'),\n",
+ " ('shot',\n",
+ " 'an aggressive remark directed at a person like a missile and intended to have a telling effect'),\n",
+ " ('shaft',\n",
+ " 'an aggressive remark directed at a person like a missile and intended to have a telling effect'),\n",
+ " ('dig',\n",
+ " 'an aggressive remark directed at a person like a missile and intended to have a telling effect'),\n",
+ " ('jibe',\n",
+ " 'an aggressive remark directed at a person like a missile and intended to have a telling effect'),\n",
+ " ('slam',\n",
+ " 'an aggressive remark directed at a person like a missile and intended to have a telling effect')]},\n",
+ " {'answer': 'barbarity',\n",
+ " 'hint': 'synonyms for barbarity',\n",
+ " 'clues': [('atrociousness',\n",
+ " 'the quality of being shockingly cruel and inhumane'),\n",
+ " ('heinousness', 'the quality of being shockingly cruel and inhumane'),\n",
+ " ('brutality', 'a brutal barbarous savage act'),\n",
+ " ('barbarousness', 'the quality of being shockingly cruel and inhumane'),\n",
+ " ('atrocity', 'the quality of being shockingly cruel and inhumane'),\n",
+ " ('barbarism', 'a brutal barbarous savage act'),\n",
+ " ('savagery', 'a brutal barbarous savage act')]},\n",
+ " {'answer': 'barbarousness',\n",
+ " 'hint': 'synonyms for barbarousness',\n",
+ " 'clues': [('atrocity',\n",
+ " 'the quality of being shockingly cruel and inhumane'),\n",
+ " ('atrociousness', 'the quality of being shockingly cruel and inhumane'),\n",
+ " ('heinousness', 'the quality of being shockingly cruel and inhumane'),\n",
+ " ('barbarity', 'the quality of being shockingly cruel and inhumane')]},\n",
+ " {'answer': 'barbital',\n",
+ " 'hint': 'synonyms for barbital',\n",
+ " 'clues': [('diethylbarbituric acid', 'a barbiturate used as a hypnotic'),\n",
+ " ('veronal', 'a barbiturate used as a hypnotic'),\n",
+ " ('diethylmalonylurea', 'a barbiturate used as a hypnotic'),\n",
+ " ('barbitone', 'a barbiturate used as a hypnotic')]},\n",
+ " {'answer': 'barbitone',\n",
+ " 'hint': 'synonyms for barbitone',\n",
+ " 'clues': [('veronal', 'a barbiturate used as a hypnotic'),\n",
+ " ('diethylmalonylurea', 'a barbiturate used as a hypnotic'),\n",
+ " ('barbital', 'a barbiturate used as a hypnotic'),\n",
+ " ('diethylbarbituric acid', 'a barbiturate used as a hypnotic')]},\n",
+ " {'answer': 'baring',\n",
+ " 'hint': 'synonyms for baring',\n",
+ " 'clues': [('stripping', 'the removal of covering'),\n",
+ " ('husking', 'the removal of covering'),\n",
+ " ('denudation', 'the removal of covering'),\n",
+ " ('uncovering', 'the removal of covering')]},\n",
+ " {'answer': 'barium_sulphate',\n",
+ " 'hint': 'synonyms for barium sulphate',\n",
+ " 'clues': [('barytes',\n",
+ " 'a white or colorless mineral (BaSO4); the main source of barium'),\n",
+ " ('barium sulfate',\n",
+ " 'a white insoluble radiopaque powder used as a pigment'),\n",
+ " ('barite',\n",
+ " 'a white or colorless mineral (BaSO4); the main source of barium'),\n",
+ " ('blanc fixe', 'a white insoluble radiopaque powder used as a pigment'),\n",
+ " ('heavy spar',\n",
+ " 'a white or colorless mineral (BaSO4); the main source of barium')]},\n",
+ " {'answer': 'barrage',\n",
+ " 'hint': 'synonyms for barrage',\n",
+ " 'clues': [('barrage fire',\n",
+ " 'the heavy fire of artillery to saturate an area rather than hit a specific target'),\n",
+ " ('onslaught',\n",
+ " 'the rapid and continuous delivery of linguistic communication (spoken or written)'),\n",
+ " ('battery',\n",
+ " 'the heavy fire of artillery to saturate an area rather than hit a specific target'),\n",
+ " ('outpouring',\n",
+ " 'the rapid and continuous delivery of linguistic communication (spoken or written)'),\n",
+ " ('bombardment',\n",
+ " 'the rapid and continuous delivery of linguistic communication (spoken or written)'),\n",
+ " ('shelling',\n",
+ " 'the heavy fire of artillery to saturate an area rather than hit a specific target')]},\n",
+ " {'answer': 'barrage_fire',\n",
+ " 'hint': 'synonyms for barrage fire',\n",
+ " 'clues': [('battery',\n",
+ " 'the heavy fire of artillery to saturate an area rather than hit a specific target'),\n",
+ " ('shelling',\n",
+ " 'the heavy fire of artillery to saturate an area rather than hit a specific target'),\n",
+ " ('bombardment',\n",
+ " 'the heavy fire of artillery to saturate an area rather than hit a specific target'),\n",
+ " ('barrage',\n",
+ " 'the heavy fire of artillery to saturate an area rather than hit a specific target')]},\n",
+ " {'answer': 'barrel',\n",
+ " 'hint': 'synonyms for barrel',\n",
+ " 'clues': [('bbl', 'any of various units of capacity'),\n",
+ " ('drum', 'a bulging cylindrical shape; hollow with flat ends'),\n",
+ " ('cask', 'a cylindrical container that holds liquids'),\n",
+ " ('barrelful', 'the quantity that a barrel (of any size) will hold'),\n",
+ " ('gun barrel',\n",
+ " 'a tube through which a bullet travels when a gun is fired')]},\n",
+ " {'answer': 'barrel_organ',\n",
+ " 'hint': 'synonyms for barrel organ',\n",
+ " 'clues': [('hand organ',\n",
+ " 'a musical instrument that makes music by rotation of a cylinder studded with pegs'),\n",
+ " ('street organ',\n",
+ " 'a musical instrument that makes music by rotation of a cylinder studded with pegs'),\n",
+ " ('hurdy-gurdy',\n",
+ " 'a musical instrument that makes music by rotation of a cylinder studded with pegs'),\n",
+ " ('grind organ',\n",
+ " 'a musical instrument that makes music by rotation of a cylinder studded with pegs')]},\n",
+ " {'answer': 'barrels',\n",
+ " 'hint': 'synonyms for barrels',\n",
+ " 'clues': [('barrel',\n",
+ " 'a tube through which a bullet travels when a gun is fired'),\n",
+ " ('barrelful', 'the quantity that a barrel (of any size) will hold'),\n",
+ " ('bbl', 'any of various units of capacity'),\n",
+ " ('gun barrel',\n",
+ " 'a tube through which a bullet travels when a gun is fired'),\n",
+ " ('drum', 'a bulging cylindrical shape; hollow with flat ends'),\n",
+ " ('cask', 'a cylindrical container that holds liquids')]},\n",
+ " {'answer': 'barroom',\n",
+ " 'hint': 'synonyms for barroom',\n",
+ " 'clues': [('bar',\n",
+ " 'a room or establishment where alcoholic drinks are served over a counter'),\n",
+ " ('taproom',\n",
+ " 'a room or establishment where alcoholic drinks are served over a counter'),\n",
+ " ('ginmill',\n",
+ " 'a room or establishment where alcoholic drinks are served over a counter'),\n",
+ " ('saloon',\n",
+ " 'a room or establishment where alcoholic drinks are served over a counter')]},\n",
+ " {'answer': 'barrow',\n",
+ " 'hint': 'synonyms for barrow',\n",
+ " 'clues': [('grave mound',\n",
+ " '(archeology) a heap of earth placed over prehistoric tombs'),\n",
+ " ('burial mound',\n",
+ " '(archeology) a heap of earth placed over prehistoric tombs'),\n",
+ " ('garden cart',\n",
+ " 'a cart for carrying small loads; has handles and one or more wheels'),\n",
+ " ('wheelbarrow',\n",
+ " 'a cart for carrying small loads; has handles and one or more wheels'),\n",
+ " ('lawn cart',\n",
+ " 'a cart for carrying small loads; has handles and one or more wheels'),\n",
+ " ('tumulus', '(archeology) a heap of earth placed over prehistoric tombs'),\n",
+ " ('barrowful', 'the quantity that a barrow will hold')]},\n",
+ " {'answer': 'bars',\n",
+ " 'hint': 'synonyms for bars',\n",
+ " 'clues': [('bar', 'a heating element in an electric fire'),\n",
+ " ('prevention', 'the act of preventing'),\n",
+ " ('parallel bars',\n",
+ " 'gymnastic apparatus consisting of two parallel wooden rods supported on uprights'),\n",
+ " ('measure', 'musical notation for a repeating pattern of musical beats'),\n",
+ " ('legal profession',\n",
+ " 'the body of individuals qualified to practice law in a particular jurisdiction'),\n",
+ " ('barroom',\n",
+ " 'a room or establishment where alcoholic drinks are served over a counter'),\n",
+ " ('streak',\n",
+ " 'a narrow marking of a different color or texture from the background'),\n",
+ " ('taproom',\n",
+ " 'a room or establishment where alcoholic drinks are served over a counter'),\n",
+ " ('stripe',\n",
+ " 'a narrow marking of a different color or texture from the background'),\n",
+ " ('saloon',\n",
+ " 'a room or establishment where alcoholic drinks are served over a counter'),\n",
+ " ('ginmill',\n",
+ " 'a room or establishment where alcoholic drinks are served over a counter'),\n",
+ " ('legal community',\n",
+ " 'the body of individuals qualified to practice law in a particular jurisdiction'),\n",
+ " ('cake', 'a block of solid substance (such as soap or wax)')]},\n",
+ " {'answer': 'baseness',\n",
+ " 'hint': 'synonyms for baseness',\n",
+ " 'clues': [('despicableness',\n",
+ " 'unworthiness by virtue of lacking higher values'),\n",
+ " ('contemptibility', 'unworthiness by virtue of lacking higher values'),\n",
+ " ('despicability', 'unworthiness by virtue of lacking higher values'),\n",
+ " ('sordidness', 'unworthiness by virtue of lacking higher values')]},\n",
+ " {'answer': 'bash',\n",
+ " 'hint': 'synonyms for bash',\n",
+ " 'clues': [('bang', 'a vigorous blow'),\n",
+ " ('do', 'an uproarious party'),\n",
+ " ('belt', 'a vigorous blow'),\n",
+ " ('smash', 'a vigorous blow'),\n",
+ " ('brawl', 'an uproarious party'),\n",
+ " ('knock', 'a vigorous blow')]},\n",
+ " {'answer': 'basic_principle',\n",
+ " 'hint': 'synonyms for basic principle',\n",
+ " 'clues': [('bedrock', 'principles from which other truths can be derived'),\n",
+ " ('fundamentals', 'principles from which other truths can be derived'),\n",
+ " ('basics', 'principles from which other truths can be derived'),\n",
+ " ('fundamental principle',\n",
+ " 'principles from which other truths can be derived')]},\n",
+ " {'answer': 'basics',\n",
+ " 'hint': 'synonyms for basics',\n",
+ " 'clues': [('fundamentals',\n",
+ " 'principles from which other truths can be derived'),\n",
+ " ('rudiments', 'a statement of fundamental facts or principles'),\n",
+ " ('staple',\n",
+ " '(usually plural) a necessary commodity for which demand is constant'),\n",
+ " ('bedrock', 'principles from which other truths can be derived'),\n",
+ " ('basic',\n",
+ " '(usually plural) a necessary commodity for which demand is constant'),\n",
+ " ('basic principle', 'principles from which other truths can be derived'),\n",
+ " ('fundamental principle',\n",
+ " 'principles from which other truths can be derived')]},\n",
+ " {'answer': 'basin',\n",
+ " 'hint': 'synonyms for basin',\n",
+ " 'clues': [('watershed',\n",
+ " 'the entire geographical area drained by a river and its tributaries; an area characterized by all runoff being conveyed to the same outlet'),\n",
+ " ('washbowl',\n",
+ " 'a bathroom sink that is permanently installed and connected to a water supply and drainpipe; where you can wash your hands and face'),\n",
+ " ('lavatory',\n",
+ " 'a bathroom sink that is permanently installed and connected to a water supply and drainpipe; where you can wash your hands and face'),\n",
+ " ('catchment area',\n",
+ " 'the entire geographical area drained by a river and its tributaries; an area characterized by all runoff being conveyed to the same outlet'),\n",
+ " ('washstand',\n",
+ " 'a bathroom sink that is permanently installed and connected to a water supply and drainpipe; where you can wash your hands and face'),\n",
+ " ('basinful', 'the quantity that a basin will hold'),\n",
+ " ('catchment basin',\n",
+ " 'the entire geographical area drained by a river and its tributaries; an area characterized by all runoff being conveyed to the same outlet'),\n",
+ " ('drainage basin',\n",
+ " 'the entire geographical area drained by a river and its tributaries; an area characterized by all runoff being conveyed to the same outlet'),\n",
+ " ('drainage area',\n",
+ " 'the entire geographical area drained by a river and its tributaries; an area characterized by all runoff being conveyed to the same outlet'),\n",
+ " ('river basin',\n",
+ " 'the entire geographical area drained by a river and its tributaries; an area characterized by all runoff being conveyed to the same outlet'),\n",
+ " ('washbasin',\n",
+ " 'a bathroom sink that is permanently installed and connected to a water supply and drainpipe; where you can wash your hands and face')]},\n",
+ " {'answer': 'basis',\n",
+ " 'hint': 'synonyms for basis',\n",
+ " 'clues': [('ground',\n",
+ " 'a relation that provides the foundation for something'),\n",
+ " ('cornerstone',\n",
+ " 'the fundamental assumptions from which something is begun or developed or calculated or explained'),\n",
+ " ('base',\n",
+ " 'the fundamental assumptions from which something is begun or developed or calculated or explained'),\n",
+ " ('groundwork',\n",
+ " 'the fundamental assumptions from which something is begun or developed or calculated or explained'),\n",
+ " ('footing', 'a relation that provides the foundation for something'),\n",
+ " ('fundament',\n",
+ " 'the fundamental assumptions from which something is begun or developed or calculated or explained'),\n",
+ " ('foundation',\n",
+ " 'the fundamental assumptions from which something is begun or developed or calculated or explained')]},\n",
+ " {'answer': 'basket',\n",
+ " 'hint': 'synonyms for basket',\n",
+ " 'clues': [('basketball hoop',\n",
+ " 'horizontal circular metal hoop supporting a net through which players try to throw the basketball'),\n",
+ " ('hoop',\n",
+ " 'horizontal circular metal hoop supporting a net through which players try to throw the basketball'),\n",
+ " ('handbasket', 'a container that is usually woven and has handles'),\n",
+ " ('basketful', 'the quantity contained in a basket'),\n",
+ " ('field goal',\n",
+ " 'a score in basketball made by throwing the ball through the hoop')]},\n",
+ " {'answer': 'bass_fiddle',\n",
+ " 'hint': 'synonyms for bass fiddle',\n",
+ " 'clues': [('contrabass', 'largest and lowest member of the violin family'),\n",
+ " ('string bass', 'largest and lowest member of the violin family'),\n",
+ " ('bull fiddle', 'largest and lowest member of the violin family'),\n",
+ " ('double bass', 'largest and lowest member of the violin family'),\n",
+ " ('bass viol', 'largest and lowest member of the violin family')]},\n",
+ " {'answer': 'bass_viol',\n",
+ " 'hint': 'synonyms for bass viol',\n",
+ " 'clues': [('bass fiddle',\n",
+ " 'largest and lowest member of the violin family'),\n",
+ " ('contrabass', 'largest and lowest member of the violin family'),\n",
+ " ('string bass', 'largest and lowest member of the violin family'),\n",
+ " ('bull fiddle', 'largest and lowest member of the violin family'),\n",
+ " ('double bass', 'largest and lowest member of the violin family'),\n",
+ " ('gamba',\n",
+ " 'viol that is the bass member of the viol family with approximately the range of the cello'),\n",
+ " ('viola da gamba',\n",
+ " 'viol that is the bass member of the viol family with approximately the range of the cello')]},\n",
+ " {'answer': 'batch',\n",
+ " 'hint': 'synonyms for batch',\n",
+ " 'clues': [('pile',\n",
+ " \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('flock', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('wad', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('mass', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('mess', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('good deal',\n",
+ " \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('sight', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('mountain',\n",
+ " \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('great deal',\n",
+ " \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('stack', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('muckle', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('slew', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('mickle', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('spate', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('clutch', 'a collection of things or persons to be handled together'),\n",
+ " ('deal', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('heap', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('quite a little',\n",
+ " \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('passel', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('pot', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('plenty', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('tidy sum',\n",
+ " \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('mint', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('lot', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('hatful', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('raft', \"(often followed by `of') a large number or amount or extent\"),\n",
+ " ('peck', \"(often followed by `of') a large number or amount or extent\")]},\n",
+ " {'answer': 'bath',\n",
+ " 'hint': 'synonyms for bath',\n",
+ " 'clues': [('tub',\n",
+ " 'a relatively large open container that you fill with water and use to wash the body'),\n",
+ " ('bathtub',\n",
+ " 'a relatively large open container that you fill with water and use to wash the body'),\n",
+ " ('bathing tub',\n",
+ " 'a relatively large open container that you fill with water and use to wash the body'),\n",
+ " ('bathroom',\n",
+ " 'a room (as in a residence) containing a bathtub or shower and usually a washbasin and toilet')]},\n",
+ " {'answer': 'bathing_costume',\n",
+ " 'hint': 'synonyms for bathing costume',\n",
+ " 'clues': [('bathing suit', 'tight fitting garment worn for swimming'),\n",
+ " ('swimwear', 'tight fitting garment worn for swimming'),\n",
+ " ('swimsuit', 'tight fitting garment worn for swimming'),\n",
+ " ('swimming costume', 'tight fitting garment worn for swimming')]},\n",
+ " {'answer': 'bathing_suit',\n",
+ " 'hint': 'synonyms for bathing suit',\n",
+ " 'clues': [('swimwear', 'tight fitting garment worn for swimming'),\n",
+ " ('bathing costume', 'tight fitting garment worn for swimming'),\n",
+ " ('swimsuit', 'tight fitting garment worn for swimming'),\n",
+ " ('swimming costume', 'tight fitting garment worn for swimming')]},\n",
+ " {'answer': 'bathroom',\n",
+ " 'hint': 'synonyms for bathroom',\n",
+ " 'clues': [('toilet',\n",
+ " 'a room or building equipped with one or more toilets'),\n",
+ " ('can', 'a room or building equipped with one or more toilets'),\n",
+ " ('lavatory', 'a room or building equipped with one or more toilets'),\n",
+ " ('john', 'a room or building equipped with one or more toilets'),\n",
+ " ('bath',\n",
+ " 'a room (as in a residence) containing a bathtub or shower and usually a washbasin and toilet'),\n",
+ " ('lav', 'a room or building equipped with one or more toilets'),\n",
+ " ('privy', 'a room or building equipped with one or more toilets')]},\n",
+ " {'answer': 'baton',\n",
+ " 'hint': 'synonyms for baton',\n",
+ " 'clues': [('nightstick', 'a short stout club used primarily by policemen'),\n",
+ " ('billystick', 'a short stout club used primarily by policemen'),\n",
+ " ('billy', 'a short stout club used primarily by policemen'),\n",
+ " ('truncheon', 'a short stout club used primarily by policemen'),\n",
+ " ('wand',\n",
+ " 'a thin tapered rod used by a conductor to lead an orchestra or choir'),\n",
+ " ('billy club', 'a short stout club used primarily by policemen')]},\n",
+ " {'answer': 'battalion',\n",
+ " 'hint': 'synonyms for battalion',\n",
+ " 'clues': [('plurality', 'a large indefinite number'),\n",
+ " ('large number', 'a large indefinite number'),\n",
+ " ('multitude', 'a large indefinite number'),\n",
+ " ('pack', 'a large indefinite number')]},\n",
+ " {'answer': 'battercake',\n",
+ " 'hint': 'synonyms for battercake',\n",
+ " 'clues': [('flannel cake',\n",
+ " 'a flat cake of thin batter fried on both sides on a griddle'),\n",
+ " ('flapjack',\n",
+ " 'a flat cake of thin batter fried on both sides on a griddle'),\n",
+ " ('pancake',\n",
+ " 'a flat cake of thin batter fried on both sides on a griddle'),\n",
+ " ('griddlecake',\n",
+ " 'a flat cake of thin batter fried on both sides on a griddle'),\n",
+ " ('flapcake',\n",
+ " 'a flat cake of thin batter fried on both sides on a griddle'),\n",
+ " ('hot cake',\n",
+ " 'a flat cake of thin batter fried on both sides on a griddle')]},\n",
+ " {'answer': 'battery',\n",
+ " 'hint': 'synonyms for battery',\n",
+ " 'clues': [('stamp battery',\n",
+ " 'a series of stamps operated in one mortar for crushing ores'),\n",
+ " ('barrage fire',\n",
+ " 'the heavy fire of artillery to saturate an area rather than hit a specific target'),\n",
+ " ('barrage',\n",
+ " 'the heavy fire of artillery to saturate an area rather than hit a specific target'),\n",
+ " ('assault and battery',\n",
+ " 'an assault in which the assailant makes physical contact'),\n",
+ " ('electric battery',\n",
+ " 'a device that produces electricity; may have several primary or secondary cells arranged in parallel or series'),\n",
+ " ('shelling',\n",
+ " 'the heavy fire of artillery to saturate an area rather than hit a specific target'),\n",
+ " ('bombardment',\n",
+ " 'the heavy fire of artillery to saturate an area rather than hit a specific target')]},\n",
+ " {'answer': 'battery-acid',\n",
+ " 'hint': 'synonyms for battery-acid',\n",
+ " 'clues': [('dose', 'street name for lysergic acid diethylamide'),\n",
+ " ('pane', 'street name for lysergic acid diethylamide'),\n",
+ " ('acid', 'street name for lysergic acid diethylamide'),\n",
+ " ('back breaker', 'street name for lysergic acid diethylamide'),\n",
+ " ('superman', 'street name for lysergic acid diethylamide'),\n",
+ " ('window pane', 'street name for lysergic acid diethylamide'),\n",
+ " ('dot', 'street name for lysergic acid diethylamide'),\n",
+ " ('loony toons', 'street name for lysergic acid diethylamide')]},\n",
+ " {'answer': 'battle',\n",
+ " 'hint': 'synonyms for battle',\n",
+ " 'clues': [('engagement',\n",
+ " 'a hostile meeting of opposing military forces in the course of a war'),\n",
+ " ('struggle', 'an energetic attempt to achieve something'),\n",
+ " ('conflict',\n",
+ " 'an open clash between two opposing groups (or individuals); --Thomas Paine'),\n",
+ " ('fight',\n",
+ " 'a hostile meeting of opposing military forces in the course of a war')]},\n",
+ " {'answer': 'battle_cry',\n",
+ " 'hint': 'synonyms for battle cry',\n",
+ " 'clues': [('war whoop',\n",
+ " 'a yell intended to rally a group of soldiers in battle'),\n",
+ " ('war cry', 'a yell intended to rally a group of soldiers in battle'),\n",
+ " ('watchword', 'a slogan used to rally support for a cause'),\n",
+ " ('cry', 'a slogan used to rally support for a cause'),\n",
+ " ('rallying cry', 'a slogan used to rally support for a cause')]},\n",
+ " {'answer': 'battlefield',\n",
+ " 'hint': 'synonyms for battlefield',\n",
+ " 'clues': [('field',\n",
+ " 'a region where a battle is being (or has been) fought'),\n",
+ " ('field of honor',\n",
+ " 'a region where a battle is being (or has been) fought'),\n",
+ " ('field of battle',\n",
+ " 'a region where a battle is being (or has been) fought'),\n",
+ " ('battleground',\n",
+ " 'a region where a battle is being (or has been) fought')]},\n",
+ " {'answer': 'battleground',\n",
+ " 'hint': 'synonyms for battleground',\n",
+ " 'clues': [('field',\n",
+ " 'a region where a battle is being (or has been) fought'),\n",
+ " ('field of honor',\n",
+ " 'a region where a battle is being (or has been) fought'),\n",
+ " ('battlefield', 'a region where a battle is being (or has been) fought'),\n",
+ " ('field of battle',\n",
+ " 'a region where a battle is being (or has been) fought')]},\n",
+ " {'answer': 'bauble',\n",
+ " 'hint': 'synonyms for bauble',\n",
+ " 'clues': [('gaud', 'cheap showy jewelry or ornament on clothing'),\n",
+ " ('gewgaw', 'cheap showy jewelry or ornament on clothing'),\n",
+ " ('novelty', 'cheap showy jewelry or ornament on clothing'),\n",
+ " ('trinket', 'cheap showy jewelry or ornament on clothing'),\n",
+ " ('fallal', 'cheap showy jewelry or ornament on clothing'),\n",
+ " ('bangle', 'cheap showy jewelry or ornament on clothing')]},\n",
+ " {'answer': 'baulk',\n",
+ " 'hint': 'synonyms for baulk',\n",
+ " 'clues': [('rafter',\n",
+ " 'one of several parallel sloping beams that support a roof'),\n",
+ " ('balk', 'one of several parallel sloping beams that support a roof'),\n",
+ " ('impediment',\n",
+ " 'something immaterial that interferes with or delays action or progress'),\n",
+ " ('handicap',\n",
+ " 'something immaterial that interferes with or delays action or progress'),\n",
+ " ('hindrance',\n",
+ " 'something immaterial that interferes with or delays action or progress'),\n",
+ " ('check',\n",
+ " 'something immaterial that interferes with or delays action or progress'),\n",
+ " ('deterrent',\n",
+ " 'something immaterial that interferes with or delays action or progress')]},\n",
+ " {'answer': 'bawdiness',\n",
+ " 'hint': 'synonyms for bawdiness',\n",
+ " 'clues': [('obscenity', 'the trait of behaving in an obscene manner'),\n",
+ " ('salacity', 'the trait of behaving in an obscene manner'),\n",
+ " ('lewdness', 'the trait of behaving in an obscene manner'),\n",
+ " ('salaciousness', 'the trait of behaving in an obscene manner')]},\n",
+ " {'answer': 'bawdyhouse',\n",
+ " 'hint': 'synonyms for bawdyhouse',\n",
+ " 'clues': [('house of ill repute',\n",
+ " 'a building where prostitutes are available'),\n",
+ " ('bagnio', 'a building where prostitutes are available'),\n",
+ " ('bordello', 'a building where prostitutes are available'),\n",
+ " ('cathouse', 'a building where prostitutes are available'),\n",
+ " ('house of prostitution', 'a building where prostitutes are available'),\n",
+ " ('brothel', 'a building where prostitutes are available'),\n",
+ " ('whorehouse', 'a building where prostitutes are available'),\n",
+ " ('sporting house', 'a building where prostitutes are available')]},\n",
+ " {'answer': 'bawling_out',\n",
+ " 'hint': 'synonyms for bawling out',\n",
+ " 'clues': [('upbraiding', 'a severe scolding'),\n",
+ " ('dressing down', 'a severe scolding'),\n",
+ " ('castigation', 'a severe scolding'),\n",
+ " ('chewing out', 'a severe scolding'),\n",
+ " ('earful', 'a severe scolding'),\n",
+ " ('going-over', 'a severe scolding')]},\n",
+ " {'answer': 'beach_waggon',\n",
+ " 'hint': 'synonyms for beach waggon',\n",
+ " 'clues': [('estate car',\n",
+ " 'a car that has a long body and rear door with space behind rear seat'),\n",
+ " ('wagon',\n",
+ " 'a car that has a long body and rear door with space behind rear seat'),\n",
+ " ('station waggon',\n",
+ " 'a car that has a long body and rear door with space behind rear seat'),\n",
+ " ('beach wagon',\n",
+ " 'a car that has a long body and rear door with space behind rear seat')]},\n",
+ " {'answer': 'beach_wagon',\n",
+ " 'hint': 'synonyms for beach wagon',\n",
+ " 'clues': [('estate car',\n",
+ " 'a car that has a long body and rear door with space behind rear seat'),\n",
+ " ('wagon',\n",
+ " 'a car that has a long body and rear door with space behind rear seat'),\n",
+ " ('station waggon',\n",
+ " 'a car that has a long body and rear door with space behind rear seat'),\n",
+ " ('beach waggon',\n",
+ " 'a car that has a long body and rear door with space behind rear seat')]},\n",
+ " {'answer': 'beacon',\n",
+ " 'hint': 'synonyms for beacon',\n",
+ " 'clues': [('lighthouse',\n",
+ " 'a tower with a light that gives warning of shoals to passing ships'),\n",
+ " ('pharos',\n",
+ " 'a tower with a light that gives warning of shoals to passing ships'),\n",
+ " ('beacon fire',\n",
+ " 'a fire (usually on a hill or tower) that can be seen from a distance'),\n",
+ " ('beacon light',\n",
+ " 'a tower with a light that gives warning of shoals to passing ships'),\n",
+ " ('radio beacon',\n",
+ " 'a radio station that broadcasts a directional signal for navigational purposes')]},\n",
+ " {'answer': 'bead',\n",
+ " 'hint': 'synonyms for bead',\n",
+ " 'clues': [('beading',\n",
+ " 'a beaded molding for edging or decorating furniture'),\n",
+ " ('pearl', 'a shape that is spherical and small'),\n",
+ " ('astragal', 'a beaded molding for edging or decorating furniture'),\n",
+ " ('drop', 'a shape that is spherical and small'),\n",
+ " ('beadwork', 'a beaded molding for edging or decorating furniture')]},\n",
+ " {'answer': 'beads',\n",
+ " 'hint': 'synonyms for beads',\n",
+ " 'clues': [('bead', 'a small ball with a hole through the middle'),\n",
+ " ('astragal', 'a beaded molding for edging or decorating furniture'),\n",
+ " ('pearl', 'a shape that is spherical and small'),\n",
+ " ('drop', 'a shape that is spherical and small'),\n",
+ " ('string of beads', 'several beads threaded together on a string'),\n",
+ " ('beadwork', 'a beaded molding for edging or decorating furniture')]},\n",
+ " {'answer': 'beam',\n",
+ " 'hint': 'synonyms for beam',\n",
+ " 'clues': [('ray', 'a column of light (as from a beacon)'),\n",
+ " ('radio beam',\n",
+ " 'a signal transmitted along a narrow path; guides airplane pilots in darkness or bad weather'),\n",
+ " ('beam of light', 'a column of light (as from a beacon)'),\n",
+ " ('shaft of light', 'a column of light (as from a beacon)'),\n",
+ " ('electron beam',\n",
+ " 'a group of nearly parallel lines of electromagnetic radiation'),\n",
+ " ('shaft', 'a column of light (as from a beacon)'),\n",
+ " ('ray of light', 'a column of light (as from a beacon)'),\n",
+ " ('irradiation', 'a column of light (as from a beacon)'),\n",
+ " ('light beam', 'a column of light (as from a beacon)'),\n",
+ " ('balance beam', 'a gymnastic apparatus used by women gymnasts')]},\n",
+ " {'answer': 'beam_of_light',\n",
+ " 'hint': 'synonyms for beam of light',\n",
+ " 'clues': [('ray', 'a column of light (as from a beacon)'),\n",
+ " ('shaft', 'a column of light (as from a beacon)'),\n",
+ " ('ray of light', 'a column of light (as from a beacon)'),\n",
+ " ('shaft of light', 'a column of light (as from a beacon)'),\n",
+ " ('irradiation', 'a column of light (as from a beacon)'),\n",
+ " ('light beam', 'a column of light (as from a beacon)'),\n",
+ " ('beam', 'a column of light (as from a beacon)')]},\n",
+ " {'answer': 'beast',\n",
+ " 'hint': 'synonyms for beast',\n",
+ " 'clues': [('animate being',\n",
+ " 'a living organism characterized by voluntary movement'),\n",
+ " ('brute', 'a living organism characterized by voluntary movement'),\n",
+ " ('animal', 'a living organism characterized by voluntary movement'),\n",
+ " ('fauna', 'a living organism characterized by voluntary movement'),\n",
+ " ('creature', 'a living organism characterized by voluntary movement')]},\n",
+ " {'answer': 'beating',\n",
+ " 'hint': 'synonyms for beating',\n",
+ " 'clues': [('whacking',\n",
+ " 'the act of inflicting corporal punishment with repeated blows'),\n",
+ " ('licking',\n",
+ " 'the act of inflicting corporal punishment with repeated blows'),\n",
+ " ('drubbing',\n",
+ " 'the act of inflicting corporal punishment with repeated blows'),\n",
+ " ('lacing',\n",
+ " 'the act of inflicting corporal punishment with repeated blows'),\n",
+ " ('whipping', 'the act of overcoming or outdoing'),\n",
+ " ('trouncing',\n",
+ " 'the act of inflicting corporal punishment with repeated blows'),\n",
+ " ('thrashing',\n",
+ " 'the act of inflicting corporal punishment with repeated blows')]},\n",
+ " {'answer': 'beats',\n",
+ " 'hint': 'synonyms for beats',\n",
+ " 'clues': [('beat', 'the sound of stroke or blow'),\n",
+ " ('pulse',\n",
+ " 'the rhythmic contraction and expansion of the arteries with each beat of the heart'),\n",
+ " ('beatniks',\n",
+ " 'a United States youth subculture of the 1950s; rejected possessions or regular work or traditional dress; for communal living and psychedelic drugs and anarchism; favored modern forms of jazz (e.g., bebop)'),\n",
+ " ('round', 'a regular route for a sentry or policeman'),\n",
+ " ('beat generation',\n",
+ " 'a United States youth subculture of the 1950s; rejected possessions or regular work or traditional dress; for communal living and psychedelic drugs and anarchism; favored modern forms of jazz (e.g., bebop)'),\n",
+ " ('metre', '(prosody) the accent in a metrical foot of verse'),\n",
+ " ('measure', '(prosody) the accent in a metrical foot of verse'),\n",
+ " ('meter', '(prosody) the accent in a metrical foot of verse'),\n",
+ " ('pulsation',\n",
+ " 'the rhythmic contraction and expansion of the arteries with each beat of the heart'),\n",
+ " ('heartbeat',\n",
+ " 'the rhythmic contraction and expansion of the arteries with each beat of the heart'),\n",
+ " ('cadence', '(prosody) the accent in a metrical foot of verse'),\n",
+ " ('rhythm', 'the basic rhythmic unit in a piece of music'),\n",
+ " ('musical rhythm', 'the basic rhythmic unit in a piece of music')]},\n",
+ " {'answer': 'beau_monde',\n",
+ " 'hint': 'synonyms for beau monde',\n",
+ " 'clues': [('smart set', 'the fashionable elite'),\n",
+ " ('high society', 'the fashionable elite'),\n",
+ " ('bon ton', 'the fashionable elite'),\n",
+ " ('society', 'the fashionable elite')]},\n",
+ " {'answer': 'beauty_parlor',\n",
+ " 'hint': 'synonyms for beauty parlor',\n",
+ " 'clues': [('beauty shop',\n",
+ " 'a shop where hairdressers and beauticians work'),\n",
+ " ('beauty parlour', 'a shop where hairdressers and beauticians work'),\n",
+ " ('salon', 'a shop where hairdressers and beauticians work'),\n",
+ " ('beauty salon', 'a shop where hairdressers and beauticians work')]},\n",
+ " {'answer': 'beauty_parlour',\n",
+ " 'hint': 'synonyms for beauty parlour',\n",
+ " 'clues': [('salon', 'a shop where hairdressers and beauticians work'),\n",
+ " ('beauty shop', 'a shop where hairdressers and beauticians work'),\n",
+ " ('beauty parlor', 'a shop where hairdressers and beauticians work'),\n",
+ " ('beauty salon', 'a shop where hairdressers and beauticians work')]},\n",
+ " {'answer': 'beaver',\n",
+ " 'hint': 'synonyms for beaver',\n",
+ " 'clues': [('high hat',\n",
+ " \"a man's hat with a tall crown; usually covered with silk or with beaver fur\"),\n",
+ " ('top hat',\n",
+ " \"a man's hat with a tall crown; usually covered with silk or with beaver fur\"),\n",
+ " ('silk hat',\n",
+ " \"a man's hat with a tall crown; usually covered with silk or with beaver fur\"),\n",
+ " ('beaver fur', 'the soft brown fur of the beaver'),\n",
+ " ('dress hat',\n",
+ " \"a man's hat with a tall crown; usually covered with silk or with beaver fur\"),\n",
+ " ('stovepipe',\n",
+ " \"a man's hat with a tall crown; usually covered with silk or with beaver fur\"),\n",
+ " ('opera hat',\n",
+ " \"a man's hat with a tall crown; usually covered with silk or with beaver fur\"),\n",
+ " ('topper',\n",
+ " \"a man's hat with a tall crown; usually covered with silk or with beaver fur\"),\n",
+ " ('castor', 'a hat made with the fur of a beaver (or similar material)')]},\n",
+ " {'answer': 'bed_cover',\n",
+ " 'hint': 'synonyms for bed cover',\n",
+ " 'clues': [('bed covering', 'decorative cover for a bed'),\n",
+ " ('bedcover', 'decorative cover for a bed'),\n",
+ " ('counterpane', 'decorative cover for a bed'),\n",
+ " ('bedspread', 'decorative cover for a bed'),\n",
+ " ('spread', 'decorative cover for a bed')]},\n",
+ " {'answer': 'bed_covering',\n",
+ " 'hint': 'synonyms for bed covering',\n",
+ " 'clues': [('bedcover', 'decorative cover for a bed'),\n",
+ " ('counterpane', 'decorative cover for a bed'),\n",
+ " ('bedspread', 'decorative cover for a bed'),\n",
+ " ('spread', 'decorative cover for a bed')]},\n",
+ " {'answer': 'bedchamber',\n",
+ " 'hint': 'synonyms for bedchamber',\n",
+ " 'clues': [('chamber', 'a room used primarily for sleeping'),\n",
+ " ('sleeping accommodation', 'a room used primarily for sleeping'),\n",
+ " ('bedroom', 'a room used primarily for sleeping'),\n",
+ " ('sleeping room', 'a room used primarily for sleeping')]},\n",
+ " {'answer': 'bedcover',\n",
+ " 'hint': 'synonyms for bedcover',\n",
+ " 'clues': [('bed covering', 'decorative cover for a bed'),\n",
+ " ('counterpane', 'decorative cover for a bed'),\n",
+ " ('bedspread', 'decorative cover for a bed'),\n",
+ " ('spread', 'decorative cover for a bed')]},\n",
+ " {'answer': 'bedding',\n",
+ " 'hint': 'synonyms for bedding',\n",
+ " 'clues': [('litter', 'material used to provide a bed for animals'),\n",
+ " ('bed clothing', 'coverings that are used on a bed'),\n",
+ " ('bedding material', 'material used to provide a bed for animals'),\n",
+ " ('bedclothes', 'coverings that are used on a bed')]},\n",
+ " {'answer': 'bedlam',\n",
+ " 'hint': 'synonyms for bedlam',\n",
+ " 'clues': [('loony bin', 'pejorative terms for an insane asylum'),\n",
+ " ('booby hatch', 'pejorative terms for an insane asylum'),\n",
+ " (\"cuckoo's nest\", 'pejorative terms for an insane asylum'),\n",
+ " ('snake pit', 'pejorative terms for an insane asylum'),\n",
+ " ('nut house', 'pejorative terms for an insane asylum'),\n",
+ " ('sanatorium', 'pejorative terms for an insane asylum'),\n",
+ " ('funny farm', 'pejorative terms for an insane asylum'),\n",
+ " ('madhouse', 'pejorative terms for an insane asylum'),\n",
+ " ('crazy house', 'pejorative terms for an insane asylum'),\n",
+ " ('funny house', 'pejorative terms for an insane asylum')]},\n",
+ " {'answer': 'bedrock',\n",
+ " 'hint': 'synonyms for bedrock',\n",
+ " 'clues': [('fundamentals',\n",
+ " 'principles from which other truths can be derived'),\n",
+ " ('basics', 'principles from which other truths can be derived'),\n",
+ " ('basic principle', 'principles from which other truths can be derived'),\n",
+ " ('fundamental principle',\n",
+ " 'principles from which other truths can be derived')]},\n",
+ " {'answer': 'bedroom',\n",
+ " 'hint': 'synonyms for bedroom',\n",
+ " 'clues': [('bedchamber', 'a room used primarily for sleeping'),\n",
+ " ('sleeping accommodation', 'a room used primarily for sleeping'),\n",
+ " ('chamber', 'a room used primarily for sleeping'),\n",
+ " ('sleeping room', 'a room used primarily for sleeping')]},\n",
+ " {'answer': 'bedspread',\n",
+ " 'hint': 'synonyms for bedspread',\n",
+ " 'clues': [('bed covering', 'decorative cover for a bed'),\n",
+ " ('bedcover', 'decorative cover for a bed'),\n",
+ " ('counterpane', 'decorative cover for a bed'),\n",
+ " ('spread', 'decorative cover for a bed')]},\n",
+ " {'answer': 'beef',\n",
+ " 'hint': 'synonyms for beef',\n",
+ " 'clues': [('boeuf', 'meat from an adult domestic bovine'),\n",
+ " ('bitch', 'informal terms for objecting'),\n",
+ " ('squawk', 'informal terms for objecting'),\n",
+ " ('gripe', 'informal terms for objecting'),\n",
+ " ('kick', 'informal terms for objecting')]},\n",
+ " {'answer': 'befuddlement',\n",
+ " 'hint': 'synonyms for befuddlement',\n",
+ " 'clues': [('bewilderment',\n",
+ " 'confusion resulting from failure to understand'),\n",
+ " ('bemusement', 'confusion resulting from failure to understand'),\n",
+ " ('mystification', 'confusion resulting from failure to understand'),\n",
+ " ('obfuscation', 'confusion resulting from failure to understand'),\n",
+ " ('bafflement', 'confusion resulting from failure to understand'),\n",
+ " ('puzzlement', 'confusion resulting from failure to understand')]},\n",
+ " {'answer': 'behavior',\n",
+ " 'hint': 'synonyms for behavior',\n",
+ " 'clues': [('doings', 'manner of acting or controlling yourself'),\n",
+ " ('conduct', 'manner of acting or controlling yourself'),\n",
+ " ('behaviour',\n",
+ " '(psychology) the aggregate of the responses or reactions or movements made by an organism in any situation'),\n",
+ " ('deportment',\n",
+ " '(behavioral attributes) the way a person behaves toward other people'),\n",
+ " ('demeanor',\n",
+ " '(behavioral attributes) the way a person behaves toward other people')]},\n",
+ " {'answer': 'behaviour',\n",
+ " 'hint': 'synonyms for behaviour',\n",
+ " 'clues': [('doings', 'manner of acting or controlling yourself'),\n",
+ " ('conduct', 'manner of acting or controlling yourself'),\n",
+ " ('behavior',\n",
+ " '(psychology) the aggregate of the responses or reactions or movements made by an organism in any situation'),\n",
+ " ('deportment',\n",
+ " '(behavioral attributes) the way a person behaves toward other people'),\n",
+ " ('demeanor',\n",
+ " '(behavioral attributes) the way a person behaves toward other people')]},\n",
+ " {'answer': 'belief',\n",
+ " 'hint': 'synonyms for belief',\n",
+ " 'clues': [('feeling', 'a vague idea in which some confidence is placed'),\n",
+ " ('notion', 'a vague idea in which some confidence is placed'),\n",
+ " ('opinion', 'a vague idea in which some confidence is placed'),\n",
+ " ('impression', 'a vague idea in which some confidence is placed')]},\n",
+ " {'answer': 'bell',\n",
+ " 'hint': 'synonyms for bell',\n",
+ " 'clues': [('doorbell',\n",
+ " 'a push button at an outer door that gives a ringing or buzzing signal when pushed'),\n",
+ " ('campana', 'the shape of a bell'),\n",
+ " ('bell shape', 'the shape of a bell'),\n",
+ " ('gong',\n",
+ " 'a percussion instrument consisting of a set of tuned bells that are struck with a hammer; used as an orchestral instrument'),\n",
+ " ('buzzer',\n",
+ " 'a push button at an outer door that gives a ringing or buzzing signal when pushed'),\n",
+ " ('chime',\n",
+ " 'a percussion instrument consisting of a set of tuned bells that are struck with a hammer; used as an orchestral instrument'),\n",
+ " ('toll', 'the sound of a bell being struck'),\n",
+ " (\"ship's bell\",\n",
+ " \"(nautical) each of the eight half-hour units of nautical time signaled by strokes of a ship's bell; eight bells signals 4:00, 8:00, or 12:00 o'clock, either a.m. or p.m.\")]},\n",
+ " {'answer': 'bell_ringing',\n",
+ " 'hint': 'synonyms for bell ringing',\n",
+ " 'clues': [('electioneering',\n",
+ " 'persuasion of voters in a political campaign'),\n",
+ " ('carillon playing',\n",
+ " 'playing a set of bells that are (usually) hung in a tower'),\n",
+ " ('canvassing', 'persuasion of voters in a political campaign'),\n",
+ " ('carillon',\n",
+ " 'playing a set of bells that are (usually) hung in a tower')]},\n",
+ " {'answer': 'bellow',\n",
+ " 'hint': 'synonyms for bellow',\n",
+ " 'clues': [('holla', 'a very loud utterance (like the sound of an animal)'),\n",
+ " ('hollo', 'a very loud utterance (like the sound of an animal)'),\n",
+ " ('roaring', 'a very loud utterance (like the sound of an animal)'),\n",
+ " ('holler', 'a very loud utterance (like the sound of an animal)'),\n",
+ " ('yowl', 'a very loud utterance (like the sound of an animal)'),\n",
+ " ('bellowing', 'a very loud utterance (like the sound of an animal)')]},\n",
+ " {'answer': 'bellowing',\n",
+ " 'hint': 'synonyms for bellowing',\n",
+ " 'clues': [('holla', 'a very loud utterance (like the sound of an animal)'),\n",
+ " ('hollo', 'a very loud utterance (like the sound of an animal)'),\n",
+ " ('roaring', 'a very loud utterance (like the sound of an animal)'),\n",
+ " ('holler', 'a very loud utterance (like the sound of an animal)'),\n",
+ " ('bellow', 'a very loud utterance (like the sound of an animal)'),\n",
+ " ('yowl', 'a very loud utterance (like the sound of an animal)')]},\n",
+ " {'answer': 'bellows',\n",
+ " 'hint': 'synonyms for bellows',\n",
+ " 'clues': [('holla', 'a very loud utterance (like the sound of an animal)'),\n",
+ " ('hollo', 'a very loud utterance (like the sound of an animal)'),\n",
+ " ('roaring', 'a very loud utterance (like the sound of an animal)'),\n",
+ " ('holler', 'a very loud utterance (like the sound of an animal)'),\n",
+ " ('bellow', 'a very loud utterance (like the sound of an animal)'),\n",
+ " ('yowl', 'a very loud utterance (like the sound of an animal)')]},\n",
+ " {'answer': 'belly_laugh',\n",
+ " 'hint': 'synonyms for belly laugh',\n",
+ " 'clues': [('howler', 'a joke that seems extremely funny'),\n",
+ " ('thigh-slapper', 'a joke that seems extremely funny'),\n",
+ " ('wow', 'a joke that seems extremely funny'),\n",
+ " ('scream', 'a joke that seems extremely funny'),\n",
+ " ('guffaw', 'a burst of deep loud hearty laughter'),\n",
+ " ('riot', 'a joke that seems extremely funny'),\n",
+ " ('sidesplitter', 'a joke that seems extremely funny')]},\n",
+ " {'answer': 'belt',\n",
+ " 'hint': 'synonyms for belt',\n",
+ " 'clues': [('whack', 'the act of hitting vigorously'),\n",
+ " ('belt ammunition',\n",
+ " 'ammunition (usually of small caliber) loaded in flexible linked strips for use in a machine gun'),\n",
+ " ('bash', 'a vigorous blow'),\n",
+ " ('swath', 'a path or strip (as cut by one course of mowing)'),\n",
+ " ('rap', 'the act of hitting vigorously'),\n",
+ " ('knock', 'the act of hitting vigorously'),\n",
+ " ('whang', 'the act of hitting vigorously'),\n",
+ " ('bang', 'a vigorous blow'),\n",
+ " ('smash', 'a vigorous blow')]},\n",
+ " {'answer': 'bemusement',\n",
+ " 'hint': 'synonyms for bemusement',\n",
+ " 'clues': [('befuddlement',\n",
+ " 'confusion resulting from failure to understand'),\n",
+ " ('bewilderment', 'confusion resulting from failure to understand'),\n",
+ " ('mystification', 'confusion resulting from failure to understand'),\n",
+ " ('obfuscation', 'confusion resulting from failure to understand'),\n",
+ " ('bafflement', 'confusion resulting from failure to understand'),\n",
+ " ('puzzlement', 'confusion resulting from failure to understand')]},\n",
+ " {'answer': 'bend',\n",
+ " 'hint': 'synonyms for bend',\n",
+ " 'clues': [('turn', 'a circular segment of a curve'),\n",
+ " ('bending', 'movement that causes the formation of a curve'),\n",
+ " ('crook', 'a circular segment of a curve'),\n",
+ " ('crease', 'an angular or rounded shape made by folding'),\n",
+ " ('fold', 'an angular or rounded shape made by folding'),\n",
+ " ('curve', 'curved segment (of a road or river or railroad track etc.)'),\n",
+ " ('twist', 'a circular segment of a curve'),\n",
+ " ('plication', 'an angular or rounded shape made by folding'),\n",
+ " ('bend dexter',\n",
+ " 'diagonal line traversing a shield from the upper right corner to the lower left'),\n",
+ " ('flexure', 'an angular or rounded shape made by folding'),\n",
+ " ('crimp', 'an angular or rounded shape made by folding')]},\n",
+ " {'answer': 'bender',\n",
+ " 'hint': 'synonyms for bender',\n",
+ " 'clues': [('carouse', 'revelry in drinking; a merry drinking party'),\n",
+ " ('breaking ball',\n",
+ " 'a pitch of a baseball that is thrown with spin so that its path curves as it approaches the batter'),\n",
+ " ('curve ball',\n",
+ " 'a pitch of a baseball that is thrown with spin so that its path curves as it approaches the batter'),\n",
+ " ('booze-up', 'revelry in drinking; a merry drinking party'),\n",
+ " ('carousal', 'revelry in drinking; a merry drinking party'),\n",
+ " ('toot', 'revelry in drinking; a merry drinking party'),\n",
+ " ('curve',\n",
+ " 'a pitch of a baseball that is thrown with spin so that its path curves as it approaches the batter')]},\n",
+ " {'answer': 'bends',\n",
+ " 'hint': 'synonyms for bends',\n",
+ " 'clues': [('turn', 'a circular segment of a curve'),\n",
+ " ('bending', 'movement that causes the formation of a curve'),\n",
+ " ('crook', 'a circular segment of a curve'),\n",
+ " ('crease', 'an angular or rounded shape made by folding'),\n",
+ " ('fold', 'an angular or rounded shape made by folding'),\n",
+ " ('curve', 'curved segment (of a road or river or railroad track etc.)'),\n",
+ " ('twist', 'a circular segment of a curve'),\n",
+ " ('plication', 'an angular or rounded shape made by folding'),\n",
+ " ('bend dexter',\n",
+ " 'diagonal line traversing a shield from the upper right corner to the lower left'),\n",
+ " ('flexure', 'an angular or rounded shape made by folding'),\n",
+ " ('crimp', 'an angular or rounded shape made by folding')]},\n",
+ " {'answer': 'beneficiation',\n",
+ " 'hint': 'synonyms for beneficiation',\n",
+ " 'clues': [('mineral processing',\n",
+ " 'crushing and separating ore into valuable substances or waste by any of a variety of techniques'),\n",
+ " ('ore dressing',\n",
+ " 'crushing and separating ore into valuable substances or waste by any of a variety of techniques'),\n",
+ " ('mineral extraction',\n",
+ " 'crushing and separating ore into valuable substances or waste by any of a variety of techniques'),\n",
+ " ('ore processing',\n",
+ " 'crushing and separating ore into valuable substances or waste by any of a variety of techniques')]},\n",
+ " {'answer': 'benjamin',\n",
+ " 'hint': 'synonyms for benjamin',\n",
+ " 'clues': [('asa dulcis',\n",
+ " 'gum resin used especially in treating skin irritation'),\n",
+ " ('benzoin', 'gum resin used especially in treating skin irritation'),\n",
+ " ('gum benzoin', 'gum resin used especially in treating skin irritation'),\n",
+ " ('gum benjamin',\n",
+ " 'gum resin used especially in treating skin irritation')]},\n",
+ " {'answer': 'benzoin',\n",
+ " 'hint': 'synonyms for benzoin',\n",
+ " 'clues': [('asa dulcis',\n",
+ " 'gum resin used especially in treating skin irritation'),\n",
+ " ('benjamin', 'gum resin used especially in treating skin irritation'),\n",
+ " ('gum benzoin', 'gum resin used especially in treating skin irritation'),\n",
+ " ('gum benjamin',\n",
+ " 'gum resin used especially in treating skin irritation')]},\n",
+ " {'answer': 'berth',\n",
+ " 'hint': 'synonyms for berth',\n",
+ " 'clues': [('mooring', 'a place where a craft can be made fast'),\n",
+ " ('situation', 'a job in an organization'),\n",
+ " ('spot', 'a job in an organization'),\n",
+ " ('bunk', 'a bed on a ship or train; usually in tiers'),\n",
+ " ('place', 'a job in an organization'),\n",
+ " ('moorage', 'a place where a craft can be made fast'),\n",
+ " ('billet', 'a job in an organization'),\n",
+ " ('position', 'a job in an organization'),\n",
+ " ('built in bed', 'a bed on a ship or train; usually in tiers'),\n",
+ " ('slip', 'a place where a craft can be made fast'),\n",
+ " ('post', 'a job in an organization'),\n",
+ " ('office', 'a job in an organization')]},\n",
+ " {'answer': 'betise',\n",
+ " 'hint': 'synonyms for betise',\n",
+ " 'clues': [('imbecility', 'a stupid mistake'),\n",
+ " ('foolishness', 'a stupid mistake'),\n",
+ " ('stupidity', 'a stupid mistake'),\n",
+ " ('folly', 'a stupid mistake')]},\n",
+ " {'answer': 'bewilderment',\n",
+ " 'hint': 'synonyms for bewilderment',\n",
+ " 'clues': [('befuddlement',\n",
+ " 'confusion resulting from failure to understand'),\n",
+ " ('bemusement', 'confusion resulting from failure to understand'),\n",
+ " ('mystification', 'confusion resulting from failure to understand'),\n",
+ " ('obfuscation', 'confusion resulting from failure to understand'),\n",
+ " ('bafflement', 'confusion resulting from failure to understand'),\n",
+ " ('puzzlement', 'confusion resulting from failure to understand')]},\n",
+ " {'answer': 'bicarbonate_of_soda',\n",
+ " 'hint': 'synonyms for bicarbonate of soda',\n",
+ " 'clues': [('saleratus',\n",
+ " 'a white soluble compound (NaHCO3) used in effervescent drinks and in baking powders and as an antacid'),\n",
+ " ('sodium bicarbonate',\n",
+ " 'a white soluble compound (NaHCO3) used in effervescent drinks and in baking powders and as an antacid'),\n",
+ " ('baking soda',\n",
+ " 'a white soluble compound (NaHCO3) used in effervescent drinks and in baking powders and as an antacid'),\n",
+ " ('sodium hydrogen carbonate',\n",
+ " 'a white soluble compound (NaHCO3) used in effervescent drinks and in baking powders and as an antacid')]},\n",
+ " {'answer': 'bicker',\n",
+ " 'hint': 'synonyms for bicker',\n",
+ " 'clues': [('tiff', 'a quarrel about petty points'),\n",
+ " ('bickering', 'a quarrel about petty points'),\n",
+ " ('pettifoggery', 'a quarrel about petty points'),\n",
+ " ('fuss', 'a quarrel about petty points'),\n",
+ " ('spat', 'a quarrel about petty points'),\n",
+ " ('squabble', 'a quarrel about petty points')]},\n",
+ " {'answer': 'bickering',\n",
+ " 'hint': 'synonyms for bickering',\n",
+ " 'clues': [('bicker', 'a quarrel about petty points'),\n",
+ " ('tiff', 'a quarrel about petty points'),\n",
+ " ('fuss', 'a quarrel about petty points'),\n",
+ " ('pettifoggery', 'a quarrel about petty points'),\n",
+ " ('spat', 'a quarrel about petty points'),\n",
+ " ('squabble', 'a quarrel about petty points')]},\n",
+ " {'answer': 'bid',\n",
+ " 'hint': 'synonyms for bid',\n",
+ " 'clues': [('dictation',\n",
+ " 'an authoritative direction or instruction to do something'),\n",
+ " ('bidding', 'an authoritative direction or instruction to do something'),\n",
+ " ('play', 'an attempt to get something'),\n",
+ " ('tender', 'a formal proposal to buy at a specified price'),\n",
+ " ('command',\n",
+ " 'an authoritative direction or instruction to do something')]},\n",
+ " {'answer': 'bidding',\n",
+ " 'hint': 'synonyms for bidding',\n",
+ " 'clues': [('bid',\n",
+ " 'an authoritative direction or instruction to do something'),\n",
+ " ('summons', 'a request to be present'),\n",
+ " ('dictation',\n",
+ " 'an authoritative direction or instruction to do something'),\n",
+ " ('command',\n",
+ " 'an authoritative direction or instruction to do something')]},\n",
+ " {'answer': 'biff',\n",
+ " 'hint': 'synonyms for biff',\n",
+ " 'clues': [('punch', '(boxing) a blow with the fist'),\n",
+ " ('poke', '(boxing) a blow with the fist'),\n",
+ " ('lick', '(boxing) a blow with the fist'),\n",
+ " ('slug', '(boxing) a blow with the fist'),\n",
+ " ('clout', '(boxing) a blow with the fist')]},\n",
+ " {'answer': 'big_bucks',\n",
+ " 'hint': 'synonyms for big bucks',\n",
+ " 'clues': [('megabucks',\n",
+ " 'a large sum of money (especially as pay or profit)'),\n",
+ " ('bundle', 'a large sum of money (especially as pay or profit)'),\n",
+ " ('big money', 'a large sum of money (especially as pay or profit)'),\n",
+ " ('pile', 'a large sum of money (especially as pay or profit)')]},\n",
+ " {'answer': 'big_h',\n",
+ " 'hint': 'synonyms for big h',\n",
+ " 'clues': [('thunder', 'street names for heroin'),\n",
+ " ('scag', 'street names for heroin'),\n",
+ " ('hell dust', 'street names for heroin'),\n",
+ " ('skag', 'street names for heroin'),\n",
+ " ('nose drops', 'street names for heroin'),\n",
+ " ('smack', 'street names for heroin'),\n",
+ " ('big H', 'street names for heroin')]},\n",
+ " {'answer': 'big_money',\n",
+ " 'hint': 'synonyms for big money',\n",
+ " 'clues': [('megabucks',\n",
+ " 'a large sum of money (especially as pay or profit)'),\n",
+ " ('pile', 'a large sum of money (especially as pay or profit)'),\n",
+ " ('bundle', 'a large sum of money (especially as pay or profit)'),\n",
+ " ('big bucks', 'a large sum of money (especially as pay or profit)')]},\n",
+ " {'answer': 'bike',\n",
+ " 'hint': 'synonyms for bike',\n",
+ " 'clues': [('bicycle',\n",
+ " 'a wheeled vehicle that has two wheels and is moved by foot pedals'),\n",
+ " ('cycle',\n",
+ " 'a wheeled vehicle that has two wheels and is moved by foot pedals'),\n",
+ " ('motorcycle', 'a motor vehicle with two wheels and a strong frame'),\n",
+ " ('wheel',\n",
+ " 'a wheeled vehicle that has two wheels and is moved by foot pedals')]},\n",
+ " {'answer': 'bilgewater',\n",
+ " 'hint': 'synonyms for bilgewater',\n",
+ " 'clues': [('twaddle', 'pretentious or silly talk or writing'),\n",
+ " ('tarradiddle', 'pretentious or silly talk or writing'),\n",
+ " ('tommyrot', 'pretentious or silly talk or writing'),\n",
+ " ('bosh', 'pretentious or silly talk or writing'),\n",
+ " ('boloney', 'pretentious or silly talk or writing'),\n",
+ " ('humbug', 'pretentious or silly talk or writing'),\n",
+ " ('drool', 'pretentious or silly talk or writing'),\n",
+ " ('tosh', 'pretentious or silly talk or writing')]},\n",
+ " {'answer': 'biliousness',\n",
+ " 'hint': 'synonyms for biliousness',\n",
+ " 'clues': [('temper', 'a disposition to exhibit uncontrolled anger'),\n",
+ " ('pettishness', 'a disposition to exhibit uncontrolled anger'),\n",
+ " ('surliness', 'a disposition to exhibit uncontrolled anger'),\n",
+ " ('snappishness', 'a disposition to exhibit uncontrolled anger'),\n",
+ " ('irritability', 'a disposition to exhibit uncontrolled anger'),\n",
+ " ('peevishness', 'a disposition to exhibit uncontrolled anger')]},\n",
+ " {'answer': 'bill',\n",
+ " 'hint': 'synonyms for bill',\n",
+ " 'clues': [('bank bill',\n",
+ " 'a piece of paper money (especially one issued by a central bank)'),\n",
+ " ('flier',\n",
+ " 'an advertisement (usually printed on a page or in a leaflet) intended for wide distribution'),\n",
+ " ('account',\n",
+ " 'an itemized statement of money owed for goods shipped or services rendered'),\n",
+ " ('bank note',\n",
+ " 'a piece of paper money (especially one issued by a central bank)'),\n",
+ " ('billhook', 'a long-handled saw with a curved blade'),\n",
+ " ('eyeshade', 'a brim that projects to the front to shade the eyes'),\n",
+ " (\"banker's bill\",\n",
+ " 'a piece of paper money (especially one issued by a central bank)'),\n",
+ " ('placard', 'a sign posted in a public place as an advertisement'),\n",
+ " ('peak', 'a brim that projects to the front to shade the eyes'),\n",
+ " ('flyer',\n",
+ " 'an advertisement (usually printed on a page or in a leaflet) intended for wide distribution'),\n",
+ " ('posting', 'a sign posted in a public place as an advertisement'),\n",
+ " ('government note',\n",
+ " 'a piece of paper money (especially one issued by a central bank)'),\n",
+ " ('throwaway',\n",
+ " 'an advertisement (usually printed on a page or in a leaflet) intended for wide distribution'),\n",
+ " ('invoice',\n",
+ " 'an itemized statement of money owed for goods shipped or services rendered'),\n",
+ " ('vizor', 'a brim that projects to the front to shade the eyes'),\n",
+ " ('broadsheet',\n",
+ " 'an advertisement (usually printed on a page or in a leaflet) intended for wide distribution'),\n",
+ " ('visor', 'a brim that projects to the front to shade the eyes'),\n",
+ " ('broadside',\n",
+ " 'an advertisement (usually printed on a page or in a leaflet) intended for wide distribution'),\n",
+ " ('poster', 'a sign posted in a public place as an advertisement'),\n",
+ " ('note',\n",
+ " 'a piece of paper money (especially one issued by a central bank)'),\n",
+ " ('circular',\n",
+ " 'an advertisement (usually printed on a page or in a leaflet) intended for wide distribution'),\n",
+ " ('greenback',\n",
+ " 'a piece of paper money (especially one issued by a central bank)'),\n",
+ " ('handbill',\n",
+ " 'an advertisement (usually printed on a page or in a leaflet) intended for wide distribution'),\n",
+ " ('card', 'a sign posted in a public place as an advertisement'),\n",
+ " ('notice', 'a sign posted in a public place as an advertisement'),\n",
+ " ('measure', 'a statute in draft before it becomes law')]},\n",
+ " {'answer': 'bill_of_fare',\n",
+ " 'hint': 'synonyms for bill of fare',\n",
+ " 'clues': [('carte du jour', 'a list of dishes available at a restaurant'),\n",
+ " ('card', 'a list of dishes available at a restaurant'),\n",
+ " ('carte', 'a list of dishes available at a restaurant'),\n",
+ " ('menu', 'a list of dishes available at a restaurant')]},\n",
+ " {'answer': 'billet',\n",
+ " 'hint': 'synonyms for billet',\n",
+ " 'clues': [('situation', 'a job in an organization'),\n",
+ " ('spot', 'a job in an organization'),\n",
+ " ('berth', 'a job in an organization'),\n",
+ " ('line', 'a short personal letter'),\n",
+ " ('place', 'a job in an organization'),\n",
+ " ('note', 'a short personal letter'),\n",
+ " ('position', 'a job in an organization'),\n",
+ " ('office', 'a job in an organization'),\n",
+ " ('post', 'a job in an organization'),\n",
+ " ('short letter', 'a short personal letter')]},\n",
+ " {'answer': 'billiard_parlor',\n",
+ " 'hint': 'synonyms for billiard parlor',\n",
+ " 'clues': [('billiard saloon', 'a room in which billiards is played'),\n",
+ " ('billiard parlour', 'a room in which billiards is played'),\n",
+ " ('billiard hall', 'a room in which billiards is played'),\n",
+ " ('billiard room', 'a room in which billiards is played')]},\n",
+ " {'answer': 'billiard_parlour',\n",
+ " 'hint': 'synonyms for billiard parlour',\n",
+ " 'clues': [('billiard parlor', 'a room in which billiards is played'),\n",
+ " ('billiard saloon', 'a room in which billiards is played'),\n",
+ " ('billiard hall', 'a room in which billiards is played'),\n",
+ " ('billiard room', 'a room in which billiards is played')]},\n",
+ " {'answer': 'billy',\n",
+ " 'hint': 'synonyms for billy',\n",
+ " 'clues': [('baton', 'a short stout club used primarily by policemen'),\n",
+ " ('nightstick', 'a short stout club used primarily by policemen'),\n",
+ " ('billystick', 'a short stout club used primarily by policemen'),\n",
+ " ('truncheon', 'a short stout club used primarily by policemen'),\n",
+ " ('billy club', 'a short stout club used primarily by policemen')]},\n",
+ " {'answer': 'billy_club',\n",
+ " 'hint': 'synonyms for billy club',\n",
+ " 'clues': [('baton', 'a short stout club used primarily by policemen'),\n",
+ " ('nightstick', 'a short stout club used primarily by policemen'),\n",
+ " ('billystick', 'a short stout club used primarily by policemen'),\n",
+ " ('billy', 'a short stout club used primarily by policemen'),\n",
+ " ('truncheon', 'a short stout club used primarily by policemen')]},\n",
+ " {'answer': 'billystick',\n",
+ " 'hint': 'synonyms for billystick',\n",
+ " 'clues': [('baton', 'a short stout club used primarily by policemen'),\n",
+ " ('nightstick', 'a short stout club used primarily by policemen'),\n",
+ " ('billy', 'a short stout club used primarily by policemen'),\n",
+ " ('truncheon', 'a short stout club used primarily by policemen'),\n",
+ " ('billy club', 'a short stout club used primarily by policemen')]},\n",
+ " {'answer': 'binge',\n",
+ " 'hint': 'synonyms for binge',\n",
+ " 'clues': [('splurge', 'any act of immoderate indulgence'),\n",
+ " ('orgy', 'any act of immoderate indulgence'),\n",
+ " ('bust', 'an occasion for excessive eating or drinking'),\n",
+ " ('bout', 'an occasion for excessive eating or drinking'),\n",
+ " ('tear', 'an occasion for excessive eating or drinking')]},\n",
+ " {'answer': 'bird',\n",
+ " 'hint': 'synonyms for bird',\n",
+ " 'clues': [('boo',\n",
+ " 'a cry or noise made to express displeasure or contempt'),\n",
+ " ('fowl', 'the flesh of a bird or fowl (wild or domestic) used as food'),\n",
+ " ('razzing', 'a cry or noise made to express displeasure or contempt'),\n",
+ " ('birdie',\n",
+ " 'badminton equipment consisting of a ball of cork or rubber with a crown of feathers'),\n",
+ " ('shuttle',\n",
+ " 'badminton equipment consisting of a ball of cork or rubber with a crown of feathers'),\n",
+ " ('raspberry', 'a cry or noise made to express displeasure or contempt'),\n",
+ " ('snort', 'a cry or noise made to express displeasure or contempt'),\n",
+ " ('shuttlecock',\n",
+ " 'badminton equipment consisting of a ball of cork or rubber with a crown of feathers'),\n",
+ " ('hoot', 'a cry or noise made to express displeasure or contempt'),\n",
+ " ('hiss', 'a cry or noise made to express displeasure or contempt')]},\n",
+ " {'answer': 'birth',\n",
+ " 'hint': 'synonyms for birth',\n",
+ " 'clues': [('nativity', 'the event of being born'),\n",
+ " ('parturition', 'the process of giving birth'),\n",
+ " ('giving birth', 'the process of giving birth'),\n",
+ " ('nascence', 'the event of being born'),\n",
+ " ('birthing', 'the process of giving birth'),\n",
+ " ('parentage', 'the kinship relation of an offspring to the parents')]},\n",
+ " {'answer': 'birth_control_device',\n",
+ " 'hint': 'synonyms for birth control device',\n",
+ " 'clues': [('contraceptive',\n",
+ " 'an agent or device intended to prevent conception'),\n",
+ " ('contraceptive device',\n",
+ " 'an agent or device intended to prevent conception'),\n",
+ " ('prophylactic device',\n",
+ " 'an agent or device intended to prevent conception'),\n",
+ " ('preventative', 'an agent or device intended to prevent conception')]},\n",
+ " {'answer': 'birth_control_pill',\n",
+ " 'hint': 'synonyms for birth control pill',\n",
+ " 'clues': [('contraceptive pill',\n",
+ " 'a contraceptive in the form of a pill containing estrogen and progestin to inhibit ovulation and so prevent conception'),\n",
+ " ('pill',\n",
+ " 'a contraceptive in the form of a pill containing estrogen and progestin to inhibit ovulation and so prevent conception'),\n",
+ " ('oral contraceptive',\n",
+ " 'a contraceptive in the form of a pill containing estrogen and progestin to inhibit ovulation and so prevent conception'),\n",
+ " ('anovulatory drug',\n",
+ " 'a contraceptive in the form of a pill containing estrogen and progestin to inhibit ovulation and so prevent conception'),\n",
+ " ('anovulant',\n",
+ " 'a contraceptive in the form of a pill containing estrogen and progestin to inhibit ovulation and so prevent conception')]},\n",
+ " {'answer': 'birth_rate',\n",
+ " 'hint': 'synonyms for birth rate',\n",
+ " 'clues': [('fertility rate',\n",
+ " 'the ratio of live births in an area to the population of that area; expressed per 1000 population per year'),\n",
+ " ('natality',\n",
+ " 'the ratio of live births in an area to the population of that area; expressed per 1000 population per year'),\n",
+ " ('birthrate',\n",
+ " 'the ratio of live births in an area to the population of that area; expressed per 1000 population per year'),\n",
+ " ('fertility',\n",
+ " 'the ratio of live births in an area to the population of that area; expressed per 1000 population per year')]},\n",
+ " {'answer': 'birthplace',\n",
+ " 'hint': 'synonyms for birthplace',\n",
+ " 'clues': [('cradle',\n",
+ " 'where something originated or was nurtured in its early existence'),\n",
+ " ('provenience',\n",
+ " 'where something originated or was nurtured in its early existence'),\n",
+ " ('place of birth', 'the place where someone was born'),\n",
+ " ('place of origin',\n",
+ " 'where something originated or was nurtured in its early existence')]},\n",
+ " {'answer': 'birthrate',\n",
+ " 'hint': 'synonyms for birthrate',\n",
+ " 'clues': [('fertility rate',\n",
+ " 'the ratio of live births in an area to the population of that area; expressed per 1000 population per year'),\n",
+ " ('natality',\n",
+ " 'the ratio of live births in an area to the population of that area; expressed per 1000 population per year'),\n",
+ " ('birth rate',\n",
+ " 'the ratio of live births in an area to the population of that area; expressed per 1000 population per year'),\n",
+ " ('fertility',\n",
+ " 'the ratio of live births in an area to the population of that area; expressed per 1000 population per year')]},\n",
+ " {'answer': 'bit',\n",
+ " 'hint': 'synonyms for bit',\n",
+ " 'clues': [('scrap',\n",
+ " 'a small fragment of something broken off from the whole'),\n",
+ " ('piece', 'an instance of some kind'),\n",
+ " ('minute', 'an indefinitely short time'),\n",
+ " ('morsel', 'a small amount of solid food; a mouthful'),\n",
+ " ('number',\n",
+ " 'a short theatrical performance that is part of a longer program'),\n",
+ " ('bite', 'a small amount of solid food; a mouthful'),\n",
+ " ('moment', 'an indefinitely short time'),\n",
+ " ('act',\n",
+ " 'a short theatrical performance that is part of a longer program'),\n",
+ " ('second', 'an indefinitely short time'),\n",
+ " ('chip', 'a small fragment of something broken off from the whole'),\n",
+ " ('mo', 'an indefinitely short time'),\n",
+ " ('fleck', 'a small fragment of something broken off from the whole'),\n",
+ " ('flake', 'a small fragment of something broken off from the whole'),\n",
+ " ('routine',\n",
+ " 'a short theatrical performance that is part of a longer program'),\n",
+ " ('turn',\n",
+ " 'a short theatrical performance that is part of a longer program'),\n",
+ " ('spot', 'a small piece or quantity of something'),\n",
+ " ('snatch', 'a small fragment')]},\n",
+ " {'answer': 'bitch',\n",
+ " 'hint': 'synonyms for bitch',\n",
+ " 'clues': [('squawk', 'informal terms for objecting'),\n",
+ " ('gripe', 'informal terms for objecting'),\n",
+ " ('beef', 'informal terms for objecting'),\n",
+ " ('kick', 'informal terms for objecting')]},\n",
+ " {'answer': 'bitchiness',\n",
+ " 'hint': 'synonyms for bitchiness',\n",
+ " 'clues': [('spite',\n",
+ " 'malevolence by virtue of being malicious or spiteful or nasty'),\n",
+ " ('nastiness',\n",
+ " 'malevolence by virtue of being malicious or spiteful or nasty'),\n",
+ " ('spitefulness',\n",
+ " 'malevolence by virtue of being malicious or spiteful or nasty'),\n",
+ " ('cattiness',\n",
+ " 'malevolence by virtue of being malicious or spiteful or nasty')]},\n",
+ " {'answer': 'bite',\n",
+ " 'hint': 'synonyms for bite',\n",
+ " 'clues': [('morsel', 'a small amount of solid food; a mouthful'),\n",
+ " ('bit', 'a small amount of solid food; a mouthful'),\n",
+ " ('snack', 'a light informal meal'),\n",
+ " ('chomp', 'the act of gripping or chewing off with the teeth and jaws'),\n",
+ " ('collation', 'a light informal meal'),\n",
+ " ('sharpness', 'a strong odor or taste property'),\n",
+ " ('pungency', 'a strong odor or taste property'),\n",
+ " ('raciness', 'a strong odor or taste property')]},\n",
+ " {'answer': 'bitterness',\n",
+ " 'hint': 'synonyms for bitterness',\n",
+ " 'clues': [('rancour', 'a feeling of deep and bitter anger and ill-will'),\n",
+ " ('bitter',\n",
+ " 'the taste experience when quinine or coffee is taken into the mouth'),\n",
+ " ('acerbity', 'a rough and bitter manner'),\n",
+ " ('tartness', 'a rough and bitter manner'),\n",
+ " ('resentment', 'a feeling of deep and bitter anger and ill-will'),\n",
+ " ('thorniness', 'a rough and bitter manner'),\n",
+ " ('jaundice', 'a rough and bitter manner'),\n",
+ " ('gall', 'a feeling of deep and bitter anger and ill-will'),\n",
+ " ('acrimony', 'a rough and bitter manner')]},\n",
+ " {'answer': 'bivouac',\n",
+ " 'hint': 'synonyms for bivouac',\n",
+ " 'clues': [('campsite', 'a site where people on holiday can pitch a tent'),\n",
+ " ('encampment',\n",
+ " 'temporary living quarters specially built by the army for soldiers'),\n",
+ " ('camping ground', 'a site where people on holiday can pitch a tent'),\n",
+ " ('camp',\n",
+ " 'temporary living quarters specially built by the army for soldiers'),\n",
+ " ('campground', 'a site where people on holiday can pitch a tent'),\n",
+ " ('camping site', 'a site where people on holiday can pitch a tent'),\n",
+ " ('cantonment',\n",
+ " 'temporary living quarters specially built by the army for soldiers'),\n",
+ " ('camping area', 'a site where people on holiday can pitch a tent')]},\n",
+ " {'answer': 'black_eye',\n",
+ " 'hint': 'synonyms for black eye',\n",
+ " 'clues': [('blow',\n",
+ " 'an unfortunate happening that hinders or impedes; something that is thwarting or frustrating'),\n",
+ " ('reverse',\n",
+ " 'an unfortunate happening that hinders or impedes; something that is thwarting or frustrating'),\n",
+ " ('reversal',\n",
+ " 'an unfortunate happening that hinders or impedes; something that is thwarting or frustrating'),\n",
+ " ('setback',\n",
+ " 'an unfortunate happening that hinders or impedes; something that is thwarting or frustrating')]},\n",
+ " {'answer': 'black_maria',\n",
+ " 'hint': 'synonyms for black maria',\n",
+ " 'clues': [('wagon', 'van used by police to transport prisoners'),\n",
+ " ('hearts',\n",
+ " 'a form of whist in which players avoid winning tricks containing hearts or the queen of spades'),\n",
+ " ('police van', 'van used by police to transport prisoners'),\n",
+ " ('police wagon', 'van used by police to transport prisoners'),\n",
+ " ('black Maria', 'van used by police to transport prisoners'),\n",
+ " ('paddy wagon', 'van used by police to transport prisoners'),\n",
+ " ('patrol wagon', 'van used by police to transport prisoners')]},\n",
+ " {'answer': 'blackjack',\n",
+ " 'hint': 'synonyms for blackjack',\n",
+ " 'clues': [('cosh',\n",
+ " 'a piece of metal covered by leather with a flexible handle; used for hitting people'),\n",
+ " ('sap',\n",
+ " 'a piece of metal covered by leather with a flexible handle; used for hitting people'),\n",
+ " ('black flag',\n",
+ " 'a flag usually bearing a white skull and crossbones on a black background; indicates a pirate ship'),\n",
+ " ('pirate flag',\n",
+ " 'a flag usually bearing a white skull and crossbones on a black background; indicates a pirate ship'),\n",
+ " ('twenty-one',\n",
+ " 'a gambling game using cards; the object is to hold cards having a higher count than those dealt to the banker up to but not exceeding 21'),\n",
+ " ('vingt-et-un',\n",
+ " 'a gambling game using cards; the object is to hold cards having a higher count than those dealt to the banker up to but not exceeding 21')]},\n",
+ " {'answer': 'blade',\n",
+ " 'hint': 'synonyms for blade',\n",
+ " 'clues': [('brand',\n",
+ " 'a cutting or thrusting weapon that has a long metal blade and a hilt with a hand guard'),\n",
+ " ('vane', 'flat surface that rotates and pushes against air or water'),\n",
+ " ('sword',\n",
+ " 'a cutting or thrusting weapon that has a long metal blade and a hilt with a hand guard'),\n",
+ " ('steel',\n",
+ " 'a cutting or thrusting weapon that has a long metal blade and a hilt with a hand guard')]},\n",
+ " {'answer': 'blah',\n",
+ " 'hint': 'synonyms for blah',\n",
+ " 'clues': [('rant', 'pompous or pretentious talk or writing'),\n",
+ " ('bombast', 'pompous or pretentious talk or writing'),\n",
+ " ('fustian', 'pompous or pretentious talk or writing'),\n",
+ " ('claptrap', 'pompous or pretentious talk or writing')]},\n",
+ " {'answer': 'blahs',\n",
+ " 'hint': 'synonyms for blahs',\n",
+ " 'clues': [('claptrap', 'pompous or pretentious talk or writing'),\n",
+ " ('blah', 'pompous or pretentious talk or writing'),\n",
+ " ('rant', 'pompous or pretentious talk or writing'),\n",
+ " ('bombast', 'pompous or pretentious talk or writing'),\n",
+ " ('fustian', 'pompous or pretentious talk or writing')]},\n",
+ " {'answer': 'blandness',\n",
+ " 'hint': 'synonyms for blandness',\n",
+ " 'clues': [('suavity',\n",
+ " 'the quality of being bland and gracious or ingratiating in manner'),\n",
+ " ('smoothness',\n",
+ " 'the quality of being bland and gracious or ingratiating in manner'),\n",
+ " ('insipidness', 'lacking any distinctive or interesting taste property'),\n",
+ " ('insipidity', 'lacking any distinctive or interesting taste property'),\n",
+ " ('suaveness',\n",
+ " 'the quality of being bland and gracious or ingratiating in manner')]},\n",
+ " {'answer': 'blare',\n",
+ " 'hint': 'synonyms for blare',\n",
+ " 'clues': [('din', 'a loud harsh or strident noise'),\n",
+ " ('blaring', 'a loud harsh or strident noise'),\n",
+ " ('cacophony', 'a loud harsh or strident noise'),\n",
+ " ('clamor', 'a loud harsh or strident noise')]},\n",
+ " {'answer': 'blast',\n",
+ " 'hint': 'synonyms for blast',\n",
+ " 'clues': [('flak', 'intense adverse criticism'),\n",
+ " ('good time', 'a highly pleasurable or exciting experience'),\n",
+ " ('blow', 'a strong current of air'),\n",
+ " ('eruption', 'a sudden very loud noise'),\n",
+ " ('clap', 'a sudden very loud noise'),\n",
+ " ('fire', 'intense adverse criticism'),\n",
+ " ('bam', 'a sudden very loud noise'),\n",
+ " ('bang', 'a sudden very loud noise'),\n",
+ " ('gust', 'a strong current of air'),\n",
+ " ('attack', 'intense adverse criticism')]},\n",
+ " {'answer': 'blaze',\n",
+ " 'hint': 'synonyms for blaze',\n",
+ " 'clues': [('brilliance',\n",
+ " 'a light within the field of vision that is brighter than the brightness to which the eyes are adapted'),\n",
+ " ('glare',\n",
+ " 'a light within the field of vision that is brighter than the brightness to which the eyes are adapted'),\n",
+ " ('hell', 'a cause of difficulty and suffering'),\n",
+ " ('blazing', 'a strong flame that burns brightly')]},\n",
+ " {'answer': 'blessing',\n",
+ " 'hint': 'synonyms for blessing',\n",
+ " 'clues': [('benediction', 'the act of praying for divine protection'),\n",
+ " ('approving', 'the formal act of approving'),\n",
+ " ('approval', 'the formal act of approving'),\n",
+ " ('grace', 'a short prayer of thanks before a meal'),\n",
+ " ('thanksgiving', 'a short prayer of thanks before a meal')]},\n",
+ " {'answer': 'blether',\n",
+ " 'hint': 'synonyms for blether',\n",
+ " 'clues': [('chin music', 'idle or foolish and irrelevant talk'),\n",
+ " ('prate', 'idle or foolish and irrelevant talk'),\n",
+ " ('prattle', 'idle or foolish and irrelevant talk'),\n",
+ " ('idle talk', 'idle or foolish and irrelevant talk')]},\n",
+ " {'answer': 'blink',\n",
+ " 'hint': 'synonyms for blink',\n",
+ " 'clues': [('winking', 'a reflex that closes and opens the eyes rapidly'),\n",
+ " ('nictation', 'a reflex that closes and opens the eyes rapidly'),\n",
+ " ('eye blink', 'a reflex that closes and opens the eyes rapidly'),\n",
+ " ('blinking', 'a reflex that closes and opens the eyes rapidly')]},\n",
+ " {'answer': 'blink_of_an_eye',\n",
+ " 'hint': 'synonyms for blink of an eye',\n",
+ " 'clues': [('split second',\n",
+ " 'a very short time (as the time it takes the eye to blink or the heart to beat)'),\n",
+ " ('flash',\n",
+ " 'a very short time (as the time it takes the eye to blink or the heart to beat)'),\n",
+ " ('trice',\n",
+ " 'a very short time (as the time it takes the eye to blink or the heart to beat)'),\n",
+ " ('instant',\n",
+ " 'a very short time (as the time it takes the eye to blink or the heart to beat)'),\n",
+ " ('jiffy',\n",
+ " 'a very short time (as the time it takes the eye to blink or the heart to beat)'),\n",
+ " ('twinkling',\n",
+ " 'a very short time (as the time it takes the eye to blink or the heart to beat)'),\n",
+ " ('wink',\n",
+ " 'a very short time (as the time it takes the eye to blink or the heart to beat)'),\n",
+ " ('heartbeat',\n",
+ " 'a very short time (as the time it takes the eye to blink or the heart to beat)')]},\n",
+ " {'answer': 'blinker',\n",
+ " 'hint': 'synonyms for blinker',\n",
+ " 'clues': [('turn signal',\n",
+ " 'a blinking light on a motor vehicle that indicates the direction in which the vehicle is about to turn'),\n",
+ " ('flasher',\n",
+ " 'a light that flashes on and off; used as a signal or to send messages'),\n",
+ " ('winker',\n",
+ " 'blind consisting of a leather eyepatch sewn to the side of the halter that prevents a horse from seeing something on either side'),\n",
+ " ('turn indicator',\n",
+ " 'a blinking light on a motor vehicle that indicates the direction in which the vehicle is about to turn'),\n",
+ " ('trafficator',\n",
+ " 'a blinking light on a motor vehicle that indicates the direction in which the vehicle is about to turn'),\n",
+ " ('blinder',\n",
+ " 'blind consisting of a leather eyepatch sewn to the side of the halter that prevents a horse from seeing something on either side')]},\n",
+ " {'answer': 'blinks',\n",
+ " 'hint': 'synonyms for blinks',\n",
+ " 'clues': [('winking', 'a reflex that closes and opens the eyes rapidly'),\n",
+ " ('nictation', 'a reflex that closes and opens the eyes rapidly'),\n",
+ " ('blink', 'a reflex that closes and opens the eyes rapidly'),\n",
+ " ('eye blink', 'a reflex that closes and opens the eyes rapidly')]},\n",
+ " {'answer': 'blistering_agent',\n",
+ " 'hint': 'synonyms for blistering agent',\n",
+ " 'clues': [('mustard gas',\n",
+ " 'a toxic war gas with sulfide based compounds that raises blisters and attacks the eyes and lungs; there is no known antidote'),\n",
+ " ('dichloroethyl sulfide',\n",
+ " 'a toxic war gas with sulfide based compounds that raises blisters and attacks the eyes and lungs; there is no known antidote'),\n",
+ " ('mustard agent',\n",
+ " 'a toxic war gas with sulfide based compounds that raises blisters and attacks the eyes and lungs; there is no known antidote'),\n",
+ " ('sulfur mustard',\n",
+ " 'a toxic war gas with sulfide based compounds that raises blisters and attacks the eyes and lungs; there is no known antidote')]},\n",
+ " {'answer': 'block',\n",
+ " 'hint': 'synonyms for block',\n",
+ " 'clues': [('stop', 'an obstruction in a pipe or tube'),\n",
+ " ('auction block', 'a platform from which an auctioneer sells'),\n",
+ " ('pulley-block',\n",
+ " 'a simple machine consisting of a wheel with a groove in which a rope can run to change the direction or point of application of a force applied to the rope'),\n",
+ " ('stoppage', 'an obstruction in a pipe or tube'),\n",
+ " ('closure', 'an obstruction in a pipe or tube'),\n",
+ " ('engine block',\n",
+ " 'a metal casting containing the cylinders and cooling ducts of an engine'),\n",
+ " ('cube',\n",
+ " 'a three-dimensional shape with six square or rectangular sides'),\n",
+ " ('occlusion', 'an obstruction in a pipe or tube'),\n",
+ " ('blockage', 'an obstruction in a pipe or tube'),\n",
+ " ('city block',\n",
+ " 'a rectangular area in a city surrounded by streets and usually containing several buildings'),\n",
+ " ('cylinder block',\n",
+ " 'a metal casting containing the cylinders and cooling ducts of an engine'),\n",
+ " ('blocking', \"the act of obstructing or deflecting someone's movements\"),\n",
+ " ('pulley',\n",
+ " 'a simple machine consisting of a wheel with a groove in which a rope can run to change the direction or point of application of a force applied to the rope'),\n",
+ " ('mental block',\n",
+ " 'an inability to remember or think of something you normally can do; often caused by emotional tension')]},\n",
+ " {'answer': 'blockage',\n",
+ " 'hint': 'synonyms for blockage',\n",
+ " 'clues': [('stop', 'an obstruction in a pipe or tube'),\n",
+ " ('occlusion', 'an obstruction in a pipe or tube'),\n",
+ " ('stoppage', 'an obstruction in a pipe or tube'),\n",
+ " ('closure', 'an obstruction in a pipe or tube'),\n",
+ " ('block', 'an obstruction in a pipe or tube')]},\n",
+ " {'answer': 'blood',\n",
+ " 'hint': 'synonyms for blood',\n",
+ " 'clues': [('line of descent', 'the descendants of one individual'),\n",
+ " ('ancestry', 'the descendants of one individual'),\n",
+ " ('stock', 'the descendants of one individual'),\n",
+ " ('line', 'the descendants of one individual'),\n",
+ " ('descent', 'the descendants of one individual'),\n",
+ " ('origin', 'the descendants of one individual'),\n",
+ " ('lineage', 'the descendants of one individual'),\n",
+ " ('parentage', 'the descendants of one individual'),\n",
+ " ('blood line', 'the descendants of one individual'),\n",
+ " ('stemma', 'the descendants of one individual'),\n",
+ " ('pedigree', 'the descendants of one individual')]},\n",
+ " {'answer': 'blood_line',\n",
+ " 'hint': 'synonyms for blood line',\n",
+ " 'clues': [('line of descent', 'the descendants of one individual'),\n",
+ " ('ancestry', 'the descendants of one individual'),\n",
+ " ('stock', 'the descendants of one individual'),\n",
+ " ('line', 'the descendants of one individual'),\n",
+ " ('descent', 'the descendants of one individual'),\n",
+ " ('origin', 'the descendants of one individual'),\n",
+ " ('lineage', 'the descendants of one individual'),\n",
+ " ('parentage', 'the descendants of one individual'),\n",
+ " ('blood', 'the descendants of one individual'),\n",
+ " ('stemma', 'the descendants of one individual'),\n",
+ " ('bloodline', 'the descendants of one individual'),\n",
+ " ('pedigree', 'the descendants of one individual')]},\n",
+ " {'answer': 'bloodline',\n",
+ " 'hint': 'synonyms for bloodline',\n",
+ " 'clues': [('line of descent', 'the descendants of one individual'),\n",
+ " ('ancestry', 'the descendants of one individual'),\n",
+ " ('stock', 'the descendants of one individual'),\n",
+ " ('line', 'the descendants of one individual'),\n",
+ " ('descent', 'the descendants of one individual'),\n",
+ " ('origin', 'the descendants of one individual'),\n",
+ " ('lineage', 'the descendants of one individual'),\n",
+ " ('parentage', 'the descendants of one individual'),\n",
+ " ('blood', 'the descendants of one individual'),\n",
+ " ('blood line', 'the descendants of one individual'),\n",
+ " ('stemma', 'the descendants of one individual'),\n",
+ " ('pedigree', 'ancestry of a purebred animal')]},\n",
+ " {'answer': 'bloodshed',\n",
+ " 'hint': 'synonyms for bloodshed',\n",
+ " 'clues': [('battue', 'indiscriminate slaughter'),\n",
+ " ('bloodbath', 'indiscriminate slaughter'),\n",
+ " ('gore', 'the shedding of blood resulting in murder'),\n",
+ " ('bloodletting', 'indiscriminate slaughter')]},\n",
+ " {'answer': 'bloom',\n",
+ " 'hint': 'synonyms for bloom',\n",
+ " 'clues': [('blossom', 'the period of greatest prosperity or productivity'),\n",
+ " ('efflorescence', 'the period of greatest prosperity or productivity'),\n",
+ " ('flush', 'the period of greatest prosperity or productivity'),\n",
+ " ('heyday', 'the period of greatest prosperity or productivity'),\n",
+ " ('peak', 'the period of greatest prosperity or productivity'),\n",
+ " ('bloom of youth', 'the best time of youth'),\n",
+ " ('blooming', 'the organic process of bearing flowers'),\n",
+ " ('prime', 'the period of greatest prosperity or productivity'),\n",
+ " ('flower', 'the period of greatest prosperity or productivity'),\n",
+ " ('salad days', 'the best time of youth')]},\n",
+ " {'answer': 'bloomer',\n",
+ " 'hint': 'synonyms for bloomer',\n",
+ " 'clues': [('blooper', 'an embarrassing mistake'),\n",
+ " ('botch', 'an embarrassing mistake'),\n",
+ " ('flub', 'an embarrassing mistake'),\n",
+ " ('foul-up', 'an embarrassing mistake'),\n",
+ " ('boo-boo', 'an embarrassing mistake'),\n",
+ " ('boner', 'an embarrassing mistake'),\n",
+ " ('bungle', 'an embarrassing mistake'),\n",
+ " ('fuckup', 'an embarrassing mistake'),\n",
+ " ('blunder', 'an embarrassing mistake'),\n",
+ " ('pratfall', 'an embarrassing mistake')]},\n",
+ " {'answer': 'bloomers',\n",
+ " 'hint': 'synonyms for bloomers',\n",
+ " 'clues': [('pants', 'underpants worn by women'),\n",
+ " ('blooper', 'an embarrassing mistake'),\n",
+ " ('botch', 'an embarrassing mistake'),\n",
+ " ('flub', 'an embarrassing mistake'),\n",
+ " ('knickers', 'underpants worn by women'),\n",
+ " ('foul-up', 'an embarrassing mistake'),\n",
+ " ('boo-boo', 'an embarrassing mistake'),\n",
+ " ('boner', 'an embarrassing mistake'),\n",
+ " ('bungle', 'an embarrassing mistake'),\n",
+ " ('fuckup', 'an embarrassing mistake'),\n",
+ " ('blunder', 'an embarrassing mistake'),\n",
+ " ('drawers', 'underpants worn by women'),\n",
+ " ('pratfall', 'an embarrassing mistake')]},\n",
+ " {'answer': 'blooper',\n",
+ " 'hint': 'synonyms for blooper',\n",
+ " 'clues': [('botch', 'an embarrassing mistake'),\n",
+ " ('flub', 'an embarrassing mistake'),\n",
+ " ('bloomer', 'an embarrassing mistake'),\n",
+ " ('foul-up', 'an embarrassing mistake'),\n",
+ " ('boo-boo', 'an embarrassing mistake'),\n",
+ " ('boner', 'an embarrassing mistake'),\n",
+ " ('bungle', 'an embarrassing mistake'),\n",
+ " ('fuckup', 'an embarrassing mistake'),\n",
+ " ('blunder', 'an embarrassing mistake'),\n",
+ " ('pratfall', 'an embarrassing mistake')]},\n",
+ " {'answer': 'blossom',\n",
+ " 'hint': 'synonyms for blossom',\n",
+ " 'clues': [('peak', 'the period of greatest prosperity or productivity'),\n",
+ " ('bloom', 'the period of greatest prosperity or productivity'),\n",
+ " ('efflorescence', 'the period of greatest prosperity or productivity'),\n",
+ " ('prime', 'the period of greatest prosperity or productivity'),\n",
+ " ('flower', 'the period of greatest prosperity or productivity'),\n",
+ " ('flush', 'the period of greatest prosperity or productivity'),\n",
+ " ('heyday', 'the period of greatest prosperity or productivity')]},\n",
+ " {'answer': 'blossoming',\n",
+ " 'hint': 'synonyms for blossoming',\n",
+ " 'clues': [('flowering',\n",
+ " 'the time and process of budding and unfolding of blossoms'),\n",
+ " ('efflorescence',\n",
+ " 'the time and process of budding and unfolding of blossoms'),\n",
+ " ('anthesis', 'the time and process of budding and unfolding of blossoms'),\n",
+ " ('inflorescence',\n",
+ " 'the time and process of budding and unfolding of blossoms')]},\n",
+ " {'answer': 'blot',\n",
+ " 'hint': 'synonyms for blot',\n",
+ " 'clues': [('smear',\n",
+ " 'an act that brings discredit to the person who does it'),\n",
+ " ('daub', 'a blemish made by dirt'),\n",
+ " ('smudge', 'a blemish made by dirt'),\n",
+ " ('smirch', 'an act that brings discredit to the person who does it'),\n",
+ " ('spot', 'a blemish made by dirt'),\n",
+ " ('slur', 'a blemish made by dirt'),\n",
+ " ('stain', 'an act that brings discredit to the person who does it')]},\n",
+ " {'answer': 'blotter',\n",
+ " 'hint': 'synonyms for blotter',\n",
+ " 'clues': [('blotting paper', 'absorbent paper used to dry ink'),\n",
+ " ('rap sheet',\n",
+ " 'the daily written record of events (as arrests) in a police station'),\n",
+ " ('police blotter',\n",
+ " 'the daily written record of events (as arrests) in a police station'),\n",
+ " ('day book',\n",
+ " 'the daily written record of events (as arrests) in a police station'),\n",
+ " ('charge sheet',\n",
+ " 'the daily written record of events (as arrests) in a police station')]},\n",
+ " {'answer': 'blow',\n",
+ " 'hint': 'synonyms for blow',\n",
+ " 'clues': [('snow', 'street names for cocaine'),\n",
+ " ('reversal',\n",
+ " 'an unfortunate happening that hinders or impedes; something that is thwarting or frustrating'),\n",
+ " ('coke', 'street names for cocaine'),\n",
+ " ('nose candy', 'street names for cocaine'),\n",
+ " ('bump', 'an impact (as from a collision)'),\n",
+ " ('setback',\n",
+ " 'an unfortunate happening that hinders or impedes; something that is thwarting or frustrating'),\n",
+ " ('puff', 'forceful exhalation through the nose or mouth'),\n",
+ " ('blast', 'a strong current of air'),\n",
+ " ('black eye',\n",
+ " 'an unfortunate happening that hinders or impedes; something that is thwarting or frustrating'),\n",
+ " ('reverse',\n",
+ " 'an unfortunate happening that hinders or impedes; something that is thwarting or frustrating'),\n",
+ " ('shock', 'an unpleasant or disappointing surprise'),\n",
+ " ('gust', 'a strong current of air')]},\n",
+ " {'answer': 'blowout',\n",
+ " 'hint': 'synonyms for blowout',\n",
+ " 'clues': [('gala affair', 'a gay festivity'),\n",
+ " ('walkaway', 'an easy victory'),\n",
+ " ('laugher', 'an easy victory'),\n",
+ " ('runaway', 'an easy victory'),\n",
+ " ('shoo-in', 'an easy victory'),\n",
+ " ('romp', 'an easy victory'),\n",
+ " ('gala', 'a gay festivity'),\n",
+ " ('jamboree', 'a gay festivity')]},\n",
+ " {'answer': 'blowup',\n",
+ " 'hint': 'synonyms for blowup',\n",
+ " 'clues': [('outburst', 'an unrestrained expression of emotion'),\n",
+ " ('magnification', 'a photographic print that has been enlarged'),\n",
+ " ('effusion', 'an unrestrained expression of emotion'),\n",
+ " ('enlargement', 'a photographic print that has been enlarged'),\n",
+ " ('gush', 'an unrestrained expression of emotion'),\n",
+ " ('detonation',\n",
+ " 'a violent release of energy caused by a chemical or nuclear reaction'),\n",
+ " ('ebullition', 'an unrestrained expression of emotion'),\n",
+ " ('explosion',\n",
+ " 'a violent release of energy caused by a chemical or nuclear reaction')]},\n",
+ " {'answer': 'blue_devils',\n",
+ " 'hint': 'synonyms for blue devils',\n",
+ " 'clues': [('blue',\n",
+ " 'the sodium salt of amobarbital that is used as a barbiturate; used as a sedative and a hypnotic'),\n",
+ " ('amobarbital sodium',\n",
+ " 'the sodium salt of amobarbital that is used as a barbiturate; used as a sedative and a hypnotic'),\n",
+ " ('blue angel',\n",
+ " 'the sodium salt of amobarbital that is used as a barbiturate; used as a sedative and a hypnotic'),\n",
+ " ('blue devil',\n",
+ " 'the sodium salt of amobarbital that is used as a barbiturate; used as a sedative and a hypnotic')]},\n",
+ " {'answer': 'blues',\n",
+ " 'hint': 'synonyms for blues',\n",
+ " 'clues': [('blue', 'the sky as viewed during daylight'),\n",
+ " ('blue air', 'the sky as viewed during daylight'),\n",
+ " ('wild blue yonder', 'the sky as viewed during daylight'),\n",
+ " ('amobarbital sodium',\n",
+ " 'the sodium salt of amobarbital that is used as a barbiturate; used as a sedative and a hypnotic'),\n",
+ " ('blue devil',\n",
+ " 'the sodium salt of amobarbital that is used as a barbiturate; used as a sedative and a hypnotic'),\n",
+ " ('bluing', 'used to whiten laundry or hair or give it a bluish tinge'),\n",
+ " ('blueness',\n",
+ " 'blue color or pigment; resembling the color of the clear sky in the daytime'),\n",
+ " ('blue angel',\n",
+ " 'the sodium salt of amobarbital that is used as a barbiturate; used as a sedative and a hypnotic'),\n",
+ " ('blue sky', 'the sky as viewed during daylight')]},\n",
+ " {'answer': 'blunder',\n",
+ " 'hint': 'synonyms for blunder',\n",
+ " 'clues': [('botch', 'an embarrassing mistake'),\n",
+ " ('blooper', 'an embarrassing mistake'),\n",
+ " ('flub', 'an embarrassing mistake'),\n",
+ " ('foul-up', 'an embarrassing mistake'),\n",
+ " ('boo-boo', 'an embarrassing mistake'),\n",
+ " ('boner', 'an embarrassing mistake'),\n",
+ " ('bungle', 'an embarrassing mistake'),\n",
+ " ('fuckup', 'an embarrassing mistake'),\n",
+ " ('pratfall', 'an embarrassing mistake')]},\n",
+ " {'answer': 'blurriness',\n",
+ " 'hint': 'synonyms for blurriness',\n",
+ " 'clues': [('fogginess',\n",
+ " 'the quality of being indistinct and without sharp outlines'),\n",
+ " ('softness',\n",
+ " 'the quality of being indistinct and without sharp outlines'),\n",
+ " ('fuzziness',\n",
+ " 'the quality of being indistinct and without sharp outlines'),\n",
+ " ('indistinctness',\n",
+ " 'the quality of being indistinct and without sharp outlines')]},\n",
+ " {'answer': 'bm',\n",
+ " 'hint': 'synonyms for bm',\n",
+ " 'clues': [('fecal matter',\n",
+ " 'solid excretory product evacuated from the bowels'),\n",
+ " ('faeces', 'solid excretory product evacuated from the bowels'),\n",
+ " ('bowel movement', 'a euphemism for defecation'),\n",
+ " ('ordure', 'solid excretory product evacuated from the bowels'),\n",
+ " ('movement', 'a euphemism for defecation'),\n",
+ " ('stool', 'solid excretory product evacuated from the bowels'),\n",
+ " ('dejection', 'solid excretory product evacuated from the bowels')]},\n",
+ " {'answer': 'board',\n",
+ " 'hint': 'synonyms for board',\n",
+ " 'clues': [('plug-in',\n",
+ " \"a printed circuit that can be inserted into expansion slots in a computer to increase the computer's capabilities\"),\n",
+ " ('display board',\n",
+ " 'a vertical surface on which information can be displayed to public view'),\n",
+ " ('control panel',\n",
+ " 'electrical device consisting of a flat insulated surface that contains switches and dials and meters for controlling other electrical devices'),\n",
+ " ('dining table', 'a table at which meals are served'),\n",
+ " ('plank',\n",
+ " 'a stout length of sawn timber; made in a wide variety of sizes and used for many purposes'),\n",
+ " ('instrument panel',\n",
+ " 'electrical device consisting of a flat insulated surface that contains switches and dials and meters for controlling other electrical devices'),\n",
+ " ('card',\n",
+ " \"a printed circuit that can be inserted into expansion slots in a computer to increase the computer's capabilities\"),\n",
+ " ('table', 'food or meals in general'),\n",
+ " ('panel',\n",
+ " 'electrical device consisting of a flat insulated surface that contains switches and dials and meters for controlling other electrical devices'),\n",
+ " ('display panel',\n",
+ " 'a vertical surface on which information can be displayed to public view'),\n",
+ " ('gameboard',\n",
+ " 'a flat portable surface (usually rectangular) designed for board games'),\n",
+ " ('control board',\n",
+ " 'electrical device consisting of a flat insulated surface that contains switches and dials and meters for controlling other electrical devices'),\n",
+ " ('circuit board',\n",
+ " \"a printed circuit that can be inserted into expansion slots in a computer to increase the computer's capabilities\"),\n",
+ " ('add-in',\n",
+ " \"a printed circuit that can be inserted into expansion slots in a computer to increase the computer's capabilities\")]},\n",
+ " {'answer': 'boards',\n",
+ " 'hint': 'synonyms for boards',\n",
+ " 'clues': [('board',\n",
+ " 'a stout length of sawn timber; made in a wide variety of sizes and used for many purposes'),\n",
+ " ('display board',\n",
+ " 'a vertical surface on which information can be displayed to public view'),\n",
+ " ('control panel',\n",
+ " 'electrical device consisting of a flat insulated surface that contains switches and dials and meters for controlling other electrical devices'),\n",
+ " ('table', 'food or meals in general'),\n",
+ " ('panel',\n",
+ " 'electrical device consisting of a flat insulated surface that contains switches and dials and meters for controlling other electrical devices'),\n",
+ " ('plug-in',\n",
+ " \"a printed circuit that can be inserted into expansion slots in a computer to increase the computer's capabilities\"),\n",
+ " ('instrument panel',\n",
+ " 'electrical device consisting of a flat insulated surface that contains switches and dials and meters for controlling other electrical devices'),\n",
+ " ('dining table', 'a table at which meals are served'),\n",
+ " ('plank',\n",
+ " 'a stout length of sawn timber; made in a wide variety of sizes and used for many purposes'),\n",
+ " ('card',\n",
+ " \"a printed circuit that can be inserted into expansion slots in a computer to increase the computer's capabilities\"),\n",
+ " ('circuit card',\n",
+ " \"a printed circuit that can be inserted into expansion slots in a computer to increase the computer's capabilities\"),\n",
+ " ('display panel',\n",
+ " 'a vertical surface on which information can be displayed to public view'),\n",
+ " ('gameboard',\n",
+ " 'a flat portable surface (usually rectangular) designed for board games'),\n",
+ " ('control board',\n",
+ " 'electrical device consisting of a flat insulated surface that contains switches and dials and meters for controlling other electrical devices'),\n",
+ " ('add-in',\n",
+ " \"a printed circuit that can be inserted into expansion slots in a computer to increase the computer's capabilities\")]},\n",
+ " {'answer': 'boater',\n",
+ " 'hint': 'synonyms for boater',\n",
+ " 'clues': [('skimmer', 'a stiff hat made of straw with a flat crown'),\n",
+ " ('straw hat', 'a stiff hat made of straw with a flat crown'),\n",
+ " ('leghorn', 'a stiff hat made of straw with a flat crown'),\n",
+ " ('sailor', 'a stiff hat made of straw with a flat crown')]},\n",
+ " {'answer': 'bob',\n",
+ " 'hint': 'synonyms for bob',\n",
+ " 'clues': [('bobsled',\n",
+ " 'a long racing sled (for 2 or more people) with a steering mechanism'),\n",
+ " ('bobfloat',\n",
+ " 'a small float usually made of cork; attached to a fishing line'),\n",
+ " ('bobsleigh',\n",
+ " 'a long racing sled (for 2 or more people) with a steering mechanism'),\n",
+ " ('shilling', 'a former monetary unit in Great Britain'),\n",
+ " ('bobber',\n",
+ " 'a small float usually made of cork; attached to a fishing line'),\n",
+ " ('cork',\n",
+ " 'a small float usually made of cork; attached to a fishing line')]},\n",
+ " {'answer': 'body_armor',\n",
+ " 'hint': 'synonyms for body armor',\n",
+ " 'clues': [('suit of armour',\n",
+ " \"armor that protects the wearer's whole body\"),\n",
+ " ('body armour', \"armor that protects the wearer's whole body\"),\n",
+ " ('coat of mail', \"armor that protects the wearer's whole body\"),\n",
+ " ('cataphract', \"armor that protects the wearer's whole body\")]},\n",
+ " {'answer': 'body_armour',\n",
+ " 'hint': 'synonyms for body armour',\n",
+ " 'clues': [('cataphract', \"armor that protects the wearer's whole body\"),\n",
+ " ('suit of armour', \"armor that protects the wearer's whole body\"),\n",
+ " ('body armor', \"armor that protects the wearer's whole body\"),\n",
+ " ('coat of mail', \"armor that protects the wearer's whole body\")]},\n",
+ " {'answer': 'body_politic',\n",
+ " 'hint': 'synonyms for body politic',\n",
+ " 'clues': [('nation',\n",
+ " 'a politically organized body of people under a single government'),\n",
+ " ('land',\n",
+ " 'a politically organized body of people under a single government'),\n",
+ " ('country',\n",
+ " 'a politically organized body of people under a single government'),\n",
+ " ('commonwealth',\n",
+ " 'a politically organized body of people under a single government'),\n",
+ " ('res publica',\n",
+ " 'a politically organized body of people under a single government'),\n",
+ " ('state',\n",
+ " 'a politically organized body of people under a single government')]},\n",
+ " {'answer': 'body_waste',\n",
+ " 'hint': 'synonyms for body waste',\n",
+ " 'clues': [('excretion',\n",
+ " 'waste matter (as urine or sweat but especially feces) discharged from the body'),\n",
+ " ('excrement',\n",
+ " 'waste matter (as urine or sweat but especially feces) discharged from the body'),\n",
+ " ('excreta',\n",
+ " 'waste matter (as urine or sweat but especially feces) discharged from the body'),\n",
+ " ('excretory product',\n",
+ " 'waste matter (as urine or sweat but especially feces) discharged from the body')]},\n",
+ " {'answer': 'boldness',\n",
+ " 'hint': 'synonyms for boldness',\n",
+ " 'clues': [('strikingness',\n",
+ " 'the quality of standing out strongly and distinctly'),\n",
+ " ('cheek', 'impudent aggressiveness'),\n",
+ " ('nerve', 'impudent aggressiveness'),\n",
+ " ('hardiness',\n",
+ " 'the trait of being willing to undertake things that involve risk or danger'),\n",
+ " ('hardihood',\n",
+ " 'the trait of being willing to undertake things that involve risk or danger'),\n",
+ " ('brass', 'impudent aggressiveness'),\n",
+ " ('daring',\n",
+ " 'the trait of being willing to undertake things that involve risk or danger'),\n",
+ " ('face', 'impudent aggressiveness')]},\n",
+ " {'answer': 'boloney',\n",
+ " 'hint': 'synonyms for boloney',\n",
+ " 'clues': [('twaddle', 'pretentious or silly talk or writing'),\n",
+ " ('tarradiddle', 'pretentious or silly talk or writing'),\n",
+ " ('tommyrot', 'pretentious or silly talk or writing'),\n",
+ " ('bosh', 'pretentious or silly talk or writing'),\n",
+ " ('baloney', 'pretentious or silly talk or writing'),\n",
+ " ('bilgewater', 'pretentious or silly talk or writing'),\n",
+ " ('humbug', 'pretentious or silly talk or writing'),\n",
+ " ('drool', 'pretentious or silly talk or writing'),\n",
+ " ('tosh', 'pretentious or silly talk or writing')]},\n",
+ " {'answer': 'bombardment',\n",
+ " 'hint': 'synonyms for bombardment',\n",
+ " 'clues': [('barrage fire',\n",
+ " 'the heavy fire of artillery to saturate an area rather than hit a specific target'),\n",
+ " ('onslaught',\n",
+ " 'the rapid and continuous delivery of linguistic communication (spoken or written)'),\n",
+ " ('battery',\n",
+ " 'the heavy fire of artillery to saturate an area rather than hit a specific target'),\n",
+ " ('barrage',\n",
+ " 'the heavy fire of artillery to saturate an area rather than hit a specific target'),\n",
+ " ('bombing', 'an attack by dropping bombs'),\n",
+ " ('outpouring',\n",
+ " 'the rapid and continuous delivery of linguistic communication (spoken or written)'),\n",
+ " ('shelling',\n",
+ " 'the heavy fire of artillery to saturate an area rather than hit a specific target')]},\n",
+ " {'answer': 'bombast',\n",
+ " 'hint': 'synonyms for bombast',\n",
+ " 'clues': [('rant', 'pompous or pretentious talk or writing'),\n",
+ " ('claptrap', 'pompous or pretentious talk or writing'),\n",
+ " ('fustian', 'pompous or pretentious talk or writing'),\n",
+ " ('blah', 'pompous or pretentious talk or writing')]},\n",
+ " {'answer': 'bomber',\n",
+ " 'hint': 'synonyms for bomber',\n",
+ " 'clues': [('submarine sandwich',\n",
+ " 'a large sandwich made of a long crusty roll split lengthwise and filled with meats and cheese (and tomato and onion and lettuce and condiments); different names are used in different sections of the United States'),\n",
+ " ('poor boy',\n",
+ " 'a large sandwich made of a long crusty roll split lengthwise and filled with meats and cheese (and tomato and onion and lettuce and condiments); different names are used in different sections of the United States'),\n",
+ " ('submarine',\n",
+ " 'a large sandwich made of a long crusty roll split lengthwise and filled with meats and cheese (and tomato and onion and lettuce and condiments); different names are used in different sections of the United States'),\n",
+ " ('hero',\n",
+ " 'a large sandwich made of a long crusty roll split lengthwise and filled with meats and cheese (and tomato and onion and lettuce and condiments); different names are used in different sections of the United States'),\n",
+ " ('torpedo',\n",
+ " 'a large sandwich made of a long crusty roll split lengthwise and filled with meats and cheese (and tomato and onion and lettuce and condiments); different names are used in different sections of the United States'),\n",
+ " ('hoagy',\n",
+ " 'a large sandwich made of a long crusty roll split lengthwise and filled with meats and cheese (and tomato and onion and lettuce and condiments); different names are used in different sections of the United States'),\n",
+ " ('grinder',\n",
+ " 'a large sandwich made of a long crusty roll split lengthwise and filled with meats and cheese (and tomato and onion and lettuce and condiments); different names are used in different sections of the United States'),\n",
+ " ('wedge',\n",
+ " 'a large sandwich made of a long crusty roll split lengthwise and filled with meats and cheese (and tomato and onion and lettuce and condiments); different names are used in different sections of the United States'),\n",
+ " ('zep',\n",
+ " 'a large sandwich made of a long crusty roll split lengthwise and filled with meats and cheese (and tomato and onion and lettuce and condiments); different names are used in different sections of the United States'),\n",
+ " ('sub',\n",
+ " 'a large sandwich made of a long crusty roll split lengthwise and filled with meats and cheese (and tomato and onion and lettuce and condiments); different names are used in different sections of the United States'),\n",
+ " ('hoagie',\n",
+ " 'a large sandwich made of a long crusty roll split lengthwise and filled with meats and cheese (and tomato and onion and lettuce and condiments); different names are used in different sections of the United States'),\n",
+ " ('hero sandwich',\n",
+ " 'a large sandwich made of a long crusty roll split lengthwise and filled with meats and cheese (and tomato and onion and lettuce and condiments); different names are used in different sections of the United States')]},\n",
+ " {'answer': 'bon_ton',\n",
+ " 'hint': 'synonyms for bon ton',\n",
+ " 'clues': [('smart set', 'the fashionable elite'),\n",
+ " ('high society', 'the fashionable elite'),\n",
+ " ('society', 'the fashionable elite'),\n",
+ " ('beau monde', 'the fashionable elite')]},\n",
+ " {'answer': 'bonanza',\n",
+ " 'hint': 'synonyms for bonanza',\n",
+ " 'clues': [('manna from heaven',\n",
+ " 'a sudden happening that brings good fortune (as a sudden opportunity to make money)'),\n",
+ " ('bunce',\n",
+ " 'a sudden happening that brings good fortune (as a sudden opportunity to make money)'),\n",
+ " ('godsend',\n",
+ " 'a sudden happening that brings good fortune (as a sudden opportunity to make money)'),\n",
+ " ('windfall',\n",
+ " 'a sudden happening that brings good fortune (as a sudden opportunity to make money)'),\n",
+ " ('gold rush',\n",
+ " 'a sudden happening that brings good fortune (as a sudden opportunity to make money)'),\n",
+ " ('boom',\n",
+ " 'a sudden happening that brings good fortune (as a sudden opportunity to make money)'),\n",
+ " ('gravy',\n",
+ " 'a sudden happening that brings good fortune (as a sudden opportunity to make money)')]},\n",
+ " {'answer': 'bond',\n",
+ " 'hint': 'synonyms for bond',\n",
+ " 'clues': [('shackle',\n",
+ " 'a restraint that confines or restricts freedom (especially something used to tie down or restrain a prisoner)'),\n",
+ " ('adherence',\n",
+ " 'the property of sticking together (as of glue and wood) or the joining of surfaces of different composition'),\n",
+ " ('alliance',\n",
+ " 'a connection based on kinship or marriage or common interest'),\n",
+ " ('hamper',\n",
+ " 'a restraint that confines or restricts freedom (especially something used to tie down or restrain a prisoner)'),\n",
+ " ('bond certificate',\n",
+ " 'a certificate of debt (usually interest-bearing or discounted) that is issued by a government or corporation in order to raise money; the issuer is required to pay a fixed sum annually until maturity and then a fixed sum to repay the principal'),\n",
+ " ('trammel',\n",
+ " 'a restraint that confines or restricts freedom (especially something used to tie down or restrain a prisoner)'),\n",
+ " ('bail',\n",
+ " '(criminal law) money that must be forfeited by the bondsman if an accused person fails to appear in court for trial'),\n",
+ " ('attachment', 'a connection that fastens things together'),\n",
+ " ('adhesiveness',\n",
+ " 'the property of sticking together (as of glue and wood) or the joining of surfaces of different composition'),\n",
+ " ('bail bond',\n",
+ " '(criminal law) money that must be forfeited by the bondsman if an accused person fails to appear in court for trial'),\n",
+ " ('chemical bond', 'an electrical force linking atoms'),\n",
+ " ('bond paper',\n",
+ " 'a superior quality of strong durable white writing paper; originally made for printing documents'),\n",
+ " ('adhesion',\n",
+ " 'the property of sticking together (as of glue and wood) or the joining of surfaces of different composition')]},\n",
+ " {'answer': 'boner',\n",
+ " 'hint': 'synonyms for boner',\n",
+ " 'clues': [('botch', 'an embarrassing mistake'),\n",
+ " ('blooper', 'an embarrassing mistake'),\n",
+ " ('flub', 'an embarrassing mistake'),\n",
+ " ('foul-up', 'an embarrassing mistake'),\n",
+ " ('boo-boo', 'an embarrassing mistake'),\n",
+ " ('bungle', 'an embarrassing mistake'),\n",
+ " ('fuckup', 'an embarrassing mistake'),\n",
+ " ('blunder', 'an embarrassing mistake'),\n",
+ " ('pratfall', 'an embarrassing mistake')]},\n",
+ " {'answer': 'bones',\n",
+ " 'hint': 'synonyms for bones',\n",
+ " 'clues': [('osseous tissue',\n",
+ " 'the porous calcified substance from which bones are made'),\n",
+ " ('ivory', 'a shade of white the color of bleached bones'),\n",
+ " ('pearl', 'a shade of white the color of bleached bones'),\n",
+ " ('off-white', 'a shade of white the color of bleached bones'),\n",
+ " ('finger cymbals',\n",
+ " 'a percussion instrument consisting of a pair of hollow pieces of wood or bone (usually held between the thumb and fingers) that are made to click together (as by Spanish dancers) in rhythm with the dance'),\n",
+ " ('bone', 'a shade of white the color of bleached bones'),\n",
+ " ('castanets',\n",
+ " 'a percussion instrument consisting of a pair of hollow pieces of wood or bone (usually held between the thumb and fingers) that are made to click together (as by Spanish dancers) in rhythm with the dance'),\n",
+ " ('clappers',\n",
+ " 'a percussion instrument consisting of a pair of hollow pieces of wood or bone (usually held between the thumb and fingers) that are made to click together (as by Spanish dancers) in rhythm with the dance')]},\n",
+ " {'answer': 'bonhomie',\n",
+ " 'hint': 'synonyms for bonhomie',\n",
+ " 'clues': [('amiability',\n",
+ " 'a disposition to be friendly and approachable (easy to talk to)'),\n",
+ " ('affableness',\n",
+ " 'a disposition to be friendly and approachable (easy to talk to)'),\n",
+ " ('affability',\n",
+ " 'a disposition to be friendly and approachable (easy to talk to)'),\n",
+ " ('geniality',\n",
+ " 'a disposition to be friendly and approachable (easy to talk to)'),\n",
+ " ('amiableness',\n",
+ " 'a disposition to be friendly and approachable (easy to talk to)')]},\n",
+ " {'answer': 'boniness',\n",
+ " 'hint': 'synonyms for boniness',\n",
+ " 'clues': [('maceration',\n",
+ " 'extreme leanness (usually caused by starvation or disease)'),\n",
+ " ('bonyness',\n",
+ " 'extreme leanness (usually caused by starvation or disease)'),\n",
+ " ('emaciation',\n",
+ " 'extreme leanness (usually caused by starvation or disease)'),\n",
+ " ('gauntness',\n",
+ " 'extreme leanness (usually caused by starvation or disease)')]},\n",
+ " {'answer': 'bonyness',\n",
+ " 'hint': 'synonyms for bonyness',\n",
+ " 'clues': [('maceration',\n",
+ " 'extreme leanness (usually caused by starvation or disease)'),\n",
+ " ('emaciation',\n",
+ " 'extreme leanness (usually caused by starvation or disease)'),\n",
+ " ('gauntness',\n",
+ " 'extreme leanness (usually caused by starvation or disease)'),\n",
+ " ('boniness',\n",
+ " 'extreme leanness (usually caused by starvation or disease)')]},\n",
+ " {'answer': 'boo',\n",
+ " 'hint': 'synonyms for boo',\n",
+ " 'clues': [('bird',\n",
+ " 'a cry or noise made to express displeasure or contempt'),\n",
+ " ('razzing', 'a cry or noise made to express displeasure or contempt'),\n",
+ " ('hoot', 'a cry or noise made to express displeasure or contempt'),\n",
+ " ('hiss', 'a cry or noise made to express displeasure or contempt'),\n",
+ " ('raspberry', 'a cry or noise made to express displeasure or contempt'),\n",
+ " ('snort', 'a cry or noise made to express displeasure or contempt')]},\n",
+ " {'answer': 'boo-boo',\n",
+ " 'hint': 'synonyms for boo-boo',\n",
+ " 'clues': [('botch', 'an embarrassing mistake'),\n",
+ " ('blooper', 'an embarrassing mistake'),\n",
+ " ('flub', 'an embarrassing mistake'),\n",
+ " ('foul-up', 'an embarrassing mistake'),\n",
+ " ('boner', 'an embarrassing mistake'),\n",
+ " ('bungle', 'an embarrassing mistake'),\n",
+ " ('fuckup', 'an embarrassing mistake'),\n",
+ " ('blunder', 'an embarrassing mistake'),\n",
+ " ('pratfall', 'an embarrassing mistake')]},\n",
+ " {'answer': 'boob_tube',\n",
+ " 'hint': 'synonyms for boob tube',\n",
+ " 'clues': [('goggle box',\n",
+ " 'an electronic device that receives television signals and displays them on a screen'),\n",
+ " ('idiot box',\n",
+ " 'an electronic device that receives television signals and displays them on a screen'),\n",
+ " ('television set',\n",
+ " 'an electronic device that receives television signals and displays them on a screen'),\n",
+ " ('tv set',\n",
+ " 'an electronic device that receives television signals and displays them on a screen'),\n",
+ " ('television',\n",
+ " 'an electronic device that receives television signals and displays them on a screen'),\n",
+ " ('telly',\n",
+ " 'an electronic device that receives television signals and displays them on a screen'),\n",
+ " ('tv',\n",
+ " 'an electronic device that receives television signals and displays them on a screen'),\n",
+ " ('television receiver',\n",
+ " 'an electronic device that receives television signals and displays them on a screen')]},\n",
+ " {'answer': 'booby_hatch',\n",
+ " 'hint': 'synonyms for booby hatch',\n",
+ " 'clues': [('loony bin', 'pejorative terms for an insane asylum'),\n",
+ " (\"cuckoo's nest\", 'pejorative terms for an insane asylum'),\n",
+ " ('snake pit', 'pejorative terms for an insane asylum'),\n",
+ " ('nut house', 'pejorative terms for an insane asylum'),\n",
+ " ('sanatorium', 'pejorative terms for an insane asylum'),\n",
+ " ('funny farm', 'pejorative terms for an insane asylum'),\n",
+ " ('madhouse', 'pejorative terms for an insane asylum'),\n",
+ " ('crazy house', 'pejorative terms for an insane asylum'),\n",
+ " ('funny house', 'pejorative terms for an insane asylum')]},\n",
+ " {'answer': 'boodle',\n",
+ " 'hint': 'synonyms for boodle',\n",
+ " 'clues': [('sugar', 'informal terms for money'),\n",
+ " ('bread', 'informal terms for money'),\n",
+ " ('simoleons', 'informal terms for money'),\n",
+ " ('dinero', 'informal terms for money'),\n",
+ " ('clams', 'informal terms for money'),\n",
+ " ('pelf', 'informal terms for money'),\n",
+ " ('dough', 'informal terms for money'),\n",
+ " ('lettuce', 'informal terms for money'),\n",
+ " ('scratch', 'informal terms for money'),\n",
+ " ('stops',\n",
+ " 'a gambling card game in which chips are placed on the ace and king and queen and jack of separate suits (taken from a separate deck); a player plays the lowest card of a suit in his hand and successively higher cards are played until the sequence stops; the player who plays a card matching one in the layout wins all the chips on that card'),\n",
+ " ('gelt', 'informal terms for money'),\n",
+ " ('lucre', 'informal terms for money'),\n",
+ " ('wampum', 'informal terms for money'),\n",
+ " ('loot', 'informal terms for money'),\n",
+ " ('cabbage', 'informal terms for money'),\n",
+ " ('kale', 'informal terms for money'),\n",
+ " ('moolah', 'informal terms for money'),\n",
+ " ('shekels', 'informal terms for money'),\n",
+ " ('lolly', 'informal terms for money')]},\n",
+ " {'answer': 'book',\n",
+ " 'hint': 'synonyms for book',\n",
+ " 'clues': [('leger', 'a record in which commercial accounts are recorded'),\n",
+ " ('account book', 'a record in which commercial accounts are recorded'),\n",
+ " ('record book',\n",
+ " 'a compilation of the known facts regarding something or someone'),\n",
+ " ('record',\n",
+ " 'a compilation of the known facts regarding something or someone'),\n",
+ " (\"al-Qur'an\",\n",
+ " 'the sacred writings of Islam revealed by God to the prophet Muhammad during his life at Mecca and Medina'),\n",
+ " ('book of account', 'a record in which commercial accounts are recorded'),\n",
+ " ('rule book',\n",
+ " 'a collection of rules or prescribed standards on the basis of which decisions are made'),\n",
+ " ('playscript',\n",
+ " 'a written version of a play or other dramatic composition; used in preparing for a performance'),\n",
+ " ('script',\n",
+ " 'a written version of a play or other dramatic composition; used in preparing for a performance'),\n",
+ " ('volume',\n",
+ " 'physical objects consisting of a number of pages bound together')]},\n",
+ " {'answer': 'booklet',\n",
+ " 'hint': 'synonyms for booklet',\n",
+ " 'clues': [('folder', 'a small book usually having a paper cover'),\n",
+ " ('pamphlet', 'a small book usually having a paper cover'),\n",
+ " ('leaflet', 'a small book usually having a paper cover'),\n",
+ " ('brochure', 'a small book usually having a paper cover')]},\n",
+ " {'answer': 'boom',\n",
+ " 'hint': 'synonyms for boom',\n",
+ " 'clues': [('thunder', 'a deep prolonged loud noise'),\n",
+ " ('godsend',\n",
+ " 'a sudden happening that brings good fortune (as a sudden opportunity to make money)'),\n",
+ " ('windfall',\n",
+ " 'a sudden happening that brings good fortune (as a sudden opportunity to make money)'),\n",
+ " ('roar', 'a deep prolonged loud noise'),\n",
+ " ('microphone boom',\n",
+ " 'a pole carrying an overhead microphone projected over a film or tv set'),\n",
+ " ('gravy',\n",
+ " 'a sudden happening that brings good fortune (as a sudden opportunity to make money)'),\n",
+ " ('manna from heaven',\n",
+ " 'a sudden happening that brings good fortune (as a sudden opportunity to make money)'),\n",
+ " ('bunce',\n",
+ " 'a sudden happening that brings good fortune (as a sudden opportunity to make money)'),\n",
+ " ('bonanza',\n",
+ " 'a sudden happening that brings good fortune (as a sudden opportunity to make money)'),\n",
+ " ('gold rush',\n",
+ " 'a sudden happening that brings good fortune (as a sudden opportunity to make money)')]},\n",
+ " {'answer': 'boost',\n",
+ " 'hint': 'synonyms for boost',\n",
+ " 'clues': [('cost increase', 'an increase in cost'),\n",
+ " ('encouragement', 'the act of giving hope or support to someone'),\n",
+ " ('rise', 'an increase in cost'),\n",
+ " ('hike', 'an increase in cost')]},\n",
+ " {'answer': 'booster',\n",
+ " 'hint': 'synonyms for booster',\n",
+ " 'clues': [('booster dose',\n",
+ " 'an additional dose that makes sure the first dose was effective'),\n",
+ " ('booster station',\n",
+ " 'an amplifier for restoring the strength of a transmitted signal'),\n",
+ " ('booster shot',\n",
+ " 'an additional dose that makes sure the first dose was effective'),\n",
+ " ('booster unit', 'the first stage of a multistage rocket'),\n",
+ " ('recall dose',\n",
+ " 'an additional dose that makes sure the first dose was effective'),\n",
+ " ('booster rocket', 'the first stage of a multistage rocket'),\n",
+ " ('relay transmitter',\n",
+ " 'an amplifier for restoring the strength of a transmitted signal'),\n",
+ " ('booster amplifier',\n",
+ " 'an amplifier for restoring the strength of a transmitted signal'),\n",
+ " ('relay station',\n",
+ " 'an amplifier for restoring the strength of a transmitted signal'),\n",
+ " ('relay link',\n",
+ " 'an amplifier for restoring the strength of a transmitted signal'),\n",
+ " ('takeoff rocket', 'the first stage of a multistage rocket'),\n",
+ " ('takeoff booster', 'the first stage of a multistage rocket')]},\n",
+ " {'answer': 'booster_amplifier',\n",
+ " 'hint': 'synonyms for booster amplifier',\n",
+ " 'clues': [('booster station',\n",
+ " 'an amplifier for restoring the strength of a transmitted signal'),\n",
+ " ('relay transmitter',\n",
+ " 'an amplifier for restoring the strength of a transmitted signal'),\n",
+ " ('booster',\n",
+ " 'an amplifier for restoring the strength of a transmitted signal'),\n",
+ " ('relay link',\n",
+ " 'an amplifier for restoring the strength of a transmitted signal'),\n",
+ " ('relay station',\n",
+ " 'an amplifier for restoring the strength of a transmitted signal')]},\n",
+ " {'answer': 'booster_rocket',\n",
+ " 'hint': 'synonyms for booster rocket',\n",
+ " 'clues': [('booster', 'the first stage of a multistage rocket'),\n",
+ " ('takeoff booster', 'the first stage of a multistage rocket'),\n",
+ " ('takeoff rocket', 'the first stage of a multistage rocket'),\n",
+ " ('booster unit', 'the first stage of a multistage rocket')]},\n",
+ " {'answer': 'booster_station',\n",
+ " 'hint': 'synonyms for booster station',\n",
+ " 'clues': [('relay transmitter',\n",
+ " 'an amplifier for restoring the strength of a transmitted signal'),\n",
+ " ('booster amplifier',\n",
+ " 'an amplifier for restoring the strength of a transmitted signal'),\n",
+ " ('booster',\n",
+ " 'an amplifier for restoring the strength of a transmitted signal'),\n",
+ " ('relay link',\n",
+ " 'an amplifier for restoring the strength of a transmitted signal'),\n",
+ " ('relay station',\n",
+ " 'an amplifier for restoring the strength of a transmitted signal')]},\n",
+ " {'answer': 'booster_unit',\n",
+ " 'hint': 'synonyms for booster unit',\n",
+ " 'clues': [('booster', 'the first stage of a multistage rocket'),\n",
+ " ('takeoff booster', 'the first stage of a multistage rocket'),\n",
+ " ('takeoff rocket', 'the first stage of a multistage rocket'),\n",
+ " ('booster rocket', 'the first stage of a multistage rocket')]},\n",
+ " {'answer': 'boot',\n",
+ " 'hint': 'synonyms for boot',\n",
+ " 'clues': [('iron heel',\n",
+ " 'an instrument of torture that is used to heat or crush the foot and leg'),\n",
+ " ('the boot',\n",
+ " 'an instrument of torture that is used to heat or crush the foot and leg'),\n",
+ " ('kick', 'the act of delivering a blow with the foot'),\n",
+ " ('iron boot',\n",
+ " 'an instrument of torture that is used to heat or crush the foot and leg'),\n",
+ " ('rush', 'the swift release of a store of affective force'),\n",
+ " ('bang', 'the swift release of a store of affective force'),\n",
+ " ('flush', 'the swift release of a store of affective force'),\n",
+ " ('thrill', 'the swift release of a store of affective force'),\n",
+ " ('charge', 'the swift release of a store of affective force')]},\n",
+ " {'answer': 'booty',\n",
+ " 'hint': 'synonyms for booty',\n",
+ " 'clues': [('dirty money', 'goods or money obtained illegally'),\n",
+ " ('plunder', 'goods or money obtained illegally'),\n",
+ " ('swag', 'goods or money obtained illegally'),\n",
+ " ('loot', 'goods or money obtained illegally'),\n",
+ " ('pillage', 'goods or money obtained illegally'),\n",
+ " ('prize', 'goods or money obtained illegally')]},\n",
+ " {'answer': 'booze',\n",
+ " 'hint': 'synonyms for booze',\n",
+ " 'clues': [('liquor',\n",
+ " 'an alcoholic beverage that is distilled rather than fermented'),\n",
+ " ('hard liquor',\n",
+ " 'an alcoholic beverage that is distilled rather than fermented'),\n",
+ " ('strong drink',\n",
+ " 'an alcoholic beverage that is distilled rather than fermented'),\n",
+ " ('hard drink',\n",
+ " 'an alcoholic beverage that is distilled rather than fermented'),\n",
+ " ('spirits',\n",
+ " 'an alcoholic beverage that is distilled rather than fermented')]},\n",
+ " {'answer': 'booze-up',\n",
+ " 'hint': 'synonyms for booze-up',\n",
+ " 'clues': [('bender', 'revelry in drinking; a merry drinking party'),\n",
+ " ('carouse', 'revelry in drinking; a merry drinking party'),\n",
+ " ('carousal', 'revelry in drinking; a merry drinking party'),\n",
+ " ('toot', 'revelry in drinking; a merry drinking party')]},\n",
+ " {'answer': 'bordello',\n",
+ " 'hint': 'synonyms for bordello',\n",
+ " 'clues': [('house of ill repute',\n",
+ " 'a building where prostitutes are available'),\n",
+ " ('bawdyhouse', 'a building where prostitutes are available'),\n",
+ " ('bagnio', 'a building where prostitutes are available'),\n",
+ " ('cathouse', 'a building where prostitutes are available'),\n",
+ " ('house of prostitution', 'a building where prostitutes are available'),\n",
+ " ('brothel', 'a building where prostitutes are available'),\n",
+ " ('whorehouse', 'a building where prostitutes are available'),\n",
+ " ('sporting house', 'a building where prostitutes are available')]},\n",
+ " {'answer': 'border',\n",
+ " 'hint': 'synonyms for border',\n",
+ " 'clues': [('borderline', 'a line that indicates a boundary'),\n",
+ " ('edge', 'the boundary of a surface'),\n",
+ " ('boundary line', 'a line that indicates a boundary'),\n",
+ " ('delimitation', 'a line that indicates a boundary'),\n",
+ " ('molding', 'a decorative recessed or relieved surface on an edge'),\n",
+ " ('margin',\n",
+ " 'the boundary line or the area immediately inside the boundary'),\n",
+ " ('perimeter',\n",
+ " 'the boundary line or the area immediately inside the boundary'),\n",
+ " ('mete', 'a line that indicates a boundary')]},\n",
+ " {'answer': 'bore',\n",
+ " 'hint': 'synonyms for bore',\n",
+ " 'clues': [('aegir',\n",
+ " 'a high wave (often dangerous) caused by tidal flow (as by colliding tidal currents or in a narrow estuary)'),\n",
+ " ('tidal bore',\n",
+ " 'a high wave (often dangerous) caused by tidal flow (as by colliding tidal currents or in a narrow estuary)'),\n",
+ " ('bore-hole',\n",
+ " 'a hole or passage made by a drill; usually made for exploratory purposes'),\n",
+ " ('drill hole',\n",
+ " 'a hole or passage made by a drill; usually made for exploratory purposes'),\n",
+ " ('eager',\n",
+ " 'a high wave (often dangerous) caused by tidal flow (as by colliding tidal currents or in a narrow estuary)'),\n",
+ " ('eagre',\n",
+ " 'a high wave (often dangerous) caused by tidal flow (as by colliding tidal currents or in a narrow estuary)'),\n",
+ " ('calibre', 'diameter of a tube or gun barrel'),\n",
+ " ('gauge', 'diameter of a tube or gun barrel')]},\n",
+ " {'answer': 'bosh',\n",
+ " 'hint': 'synonyms for bosh',\n",
+ " 'clues': [('twaddle', 'pretentious or silly talk or writing'),\n",
+ " ('tarradiddle', 'pretentious or silly talk or writing'),\n",
+ " ('tommyrot', 'pretentious or silly talk or writing'),\n",
+ " ('boloney', 'pretentious or silly talk or writing'),\n",
+ " ('bilgewater', 'pretentious or silly talk or writing'),\n",
+ " ('humbug', 'pretentious or silly talk or writing'),\n",
+ " ('drool', 'pretentious or silly talk or writing'),\n",
+ " ('tosh', 'pretentious or silly talk or writing')]},\n",
+ " {'answer': 'botch',\n",
+ " 'hint': 'synonyms for botch',\n",
+ " 'clues': [('blooper', 'an embarrassing mistake'),\n",
+ " ('flub', 'an embarrassing mistake'),\n",
+ " ('foul-up', 'an embarrassing mistake'),\n",
+ " ('boo-boo', 'an embarrassing mistake'),\n",
+ " ('boner', 'an embarrassing mistake'),\n",
+ " ('bungle', 'an embarrassing mistake'),\n",
+ " ('fuckup', 'an embarrassing mistake'),\n",
+ " ('blunder', 'an embarrassing mistake'),\n",
+ " ('pratfall', 'an embarrassing mistake')]},\n",
+ " {'answer': 'bother',\n",
+ " 'hint': 'synonyms for bother',\n",
+ " 'clues': [('fuss', 'an angry disturbance'),\n",
+ " ('botheration',\n",
+ " 'something or someone that causes trouble; a source of unhappiness'),\n",
+ " ('trouble', 'an angry disturbance'),\n",
+ " ('infliction',\n",
+ " 'something or someone that causes trouble; a source of unhappiness'),\n",
+ " ('pain',\n",
+ " 'something or someone that causes trouble; a source of unhappiness'),\n",
+ " ('annoyance',\n",
+ " 'something or someone that causes trouble; a source of unhappiness'),\n",
+ " ('pain in the ass',\n",
+ " 'something or someone that causes trouble; a source of unhappiness'),\n",
+ " ('pain in the neck',\n",
+ " 'something or someone that causes trouble; a source of unhappiness'),\n",
+ " ('hassle', 'an angry disturbance')]},\n",
+ " {'answer': 'botheration',\n",
+ " 'hint': 'synonyms for botheration',\n",
+ " 'clues': [('infliction',\n",
+ " 'something or someone that causes trouble; a source of unhappiness'),\n",
+ " ('pain',\n",
+ " 'something or someone that causes trouble; a source of unhappiness'),\n",
+ " ('annoyance',\n",
+ " 'something or someone that causes trouble; a source of unhappiness'),\n",
+ " ('bother',\n",
+ " 'something or someone that causes trouble; a source of unhappiness'),\n",
+ " ('pain in the ass',\n",
+ " 'something or someone that causes trouble; a source of unhappiness'),\n",
+ " ('pain in the neck',\n",
+ " 'something or someone that causes trouble; a source of unhappiness')]},\n",
+ " {'answer': 'bounce',\n",
+ " 'hint': 'synonyms for bounce',\n",
+ " 'clues': [('leap', 'a light, self-propelled movement upwards or forwards'),\n",
+ " ('bounciness', 'the quality of a substance that is able to rebound'),\n",
+ " ('spring', 'a light, self-propelled movement upwards or forwards'),\n",
+ " ('bound', 'a light, self-propelled movement upwards or forwards'),\n",
+ " ('saltation', 'a light, self-propelled movement upwards or forwards'),\n",
+ " ('bouncing', 'rebounding from an impact (or series of impacts)')]},\n",
+ " {'answer': 'boundary_line',\n",
+ " 'hint': 'synonyms for boundary line',\n",
+ " 'clues': [('borderline', 'a line that indicates a boundary'),\n",
+ " ('border', 'a line that indicates a boundary'),\n",
+ " ('delimitation', 'a line that indicates a boundary'),\n",
+ " ('mete', 'a line that indicates a boundary')]},\n",
+ " ...],\n",
+ " 'portion': 0.2},\n",
+ " {'name': 'adjectives',\n",
+ " 'groups': [{'answer': '1000',\n",
+ " 'hint': 'synonyms for 1000',\n",
+ " 'clues': [('k', 'denoting a quantity consisting of 1,000 items or units'),\n",
+ " ('thousand', 'denoting a quantity consisting of 1,000 items or units'),\n",
+ " ('m', 'denoting a quantity consisting of 1,000 items or units'),\n",
+ " ('one thousand',\n",
+ " 'denoting a quantity consisting of 1,000 items or units')]},\n",
+ " {'answer': 'a-one',\n",
+ " 'hint': 'synonyms for a-one',\n",
+ " 'clues': [('topnotch', 'of the highest quality'),\n",
+ " ('super', 'of the highest quality'),\n",
+ " ('crack', 'of the highest quality'),\n",
+ " ('tiptop', 'of the highest quality'),\n",
+ " ('ace', 'of the highest quality'),\n",
+ " ('first-rate', 'of the highest quality'),\n",
+ " ('tops', 'of the highest quality')]},\n",
+ " {'answer': 'a_la_mode',\n",
+ " 'hint': 'synonyms for a la mode',\n",
+ " 'clues': [('in style', 'in the current fashion or style'),\n",
+ " ('latest', 'in the current fashion or style'),\n",
+ " ('modish', 'in the current fashion or style'),\n",
+ " ('in vogue', 'in the current fashion or style')]},\n",
+ " {'answer': 'abhorrent',\n",
+ " 'hint': 'synonyms for abhorrent',\n",
+ " 'clues': [('repulsive', 'offensive to the mind'),\n",
+ " ('repugnant', 'offensive to the mind'),\n",
+ " ('detestable', 'offensive to the mind'),\n",
+ " ('obscene', 'offensive to the mind')]},\n",
+ " {'answer': 'abject',\n",
+ " 'hint': 'synonyms for abject',\n",
+ " 'clues': [('low', 'of the most contemptible kind'),\n",
+ " ('miserable', 'of the most contemptible kind'),\n",
+ " ('low-down', 'of the most contemptible kind'),\n",
+ " ('unhopeful', 'showing utter resignation or hopelessness'),\n",
+ " ('scurvy', 'of the most contemptible kind'),\n",
+ " ('scummy', 'of the most contemptible kind')]},\n",
+ " {'answer': 'ablaze',\n",
+ " 'hint': 'synonyms for ablaze',\n",
+ " 'clues': [('alight', 'lighted up by or as by fire or flame'),\n",
+ " ('aflare', 'lighted up by or as by fire or flame'),\n",
+ " ('reddened', 'lighted with red light as if with flames'),\n",
+ " ('aflame', 'lighted up by or as by fire or flame'),\n",
+ " ('afire', 'lighted up by or as by fire or flame'),\n",
+ " ('inflamed', 'lighted with red light as if with flames'),\n",
+ " ('on fire', 'lighted up by or as by fire or flame'),\n",
+ " ('aroused',\n",
+ " 'keenly excited (especially sexually) or indicating excitement; - Bram Stoker')]},\n",
+ " {'answer': 'abominable',\n",
+ " 'hint': 'synonyms for abominable',\n",
+ " 'clues': [('execrable', 'unequivocally detestable; ; ; ; - Edmund Burke'),\n",
+ " ('atrocious', 'exceptionally bad or displeasing'),\n",
+ " ('painful', 'exceptionally bad or displeasing'),\n",
+ " ('dreadful', 'exceptionally bad or displeasing'),\n",
+ " ('unspeakable', 'exceptionally bad or displeasing'),\n",
+ " ('awful', 'exceptionally bad or displeasing'),\n",
+ " ('terrible', 'exceptionally bad or displeasing'),\n",
+ " ('detestable', 'unequivocally detestable; ; ; ; - Edmund Burke'),\n",
+ " ('odious', 'unequivocally detestable; ; ; ; - Edmund Burke')]},\n",
+ " {'answer': 'aboriginal',\n",
+ " 'hint': 'synonyms for aboriginal',\n",
+ " 'clues': [('primal',\n",
+ " 'having existed from the beginning; in an earliest or original stage or state'),\n",
+ " ('native',\n",
+ " 'characteristic of or relating to people inhabiting a region from the beginning'),\n",
+ " ('primordial',\n",
+ " 'having existed from the beginning; in an earliest or original stage or state'),\n",
+ " ('primaeval',\n",
+ " 'having existed from the beginning; in an earliest or original stage or state')]},\n",
+ " {'answer': 'absent',\n",
+ " 'hint': 'synonyms for absent',\n",
+ " 'clues': [('absentminded', 'lost in thought; showing preoccupation'),\n",
+ " ('wanting', 'nonexistent'),\n",
+ " ('missing', 'nonexistent'),\n",
+ " ('abstracted', 'lost in thought; showing preoccupation'),\n",
+ " ('scatty', 'lost in thought; showing preoccupation'),\n",
+ " ('lacking', 'nonexistent')]},\n",
+ " {'answer': 'absolute',\n",
+ " 'hint': 'synonyms for absolute',\n",
+ " 'clues': [('inviolable', 'not capable of being violated or infringed'),\n",
+ " ('downright',\n",
+ " 'complete and without restriction or qualification; sometimes used informally as intensifiers'),\n",
+ " ('out-and-out',\n",
+ " 'complete and without restriction or qualification; sometimes used informally as intensifiers'),\n",
+ " ('right-down',\n",
+ " 'complete and without restriction or qualification; sometimes used informally as intensifiers'),\n",
+ " ('sheer',\n",
+ " 'complete and without restriction or qualification; sometimes used informally as intensifiers'),\n",
+ " ('infrangible', 'not capable of being violated or infringed'),\n",
+ " ('rank',\n",
+ " 'complete and without restriction or qualification; sometimes used informally as intensifiers')]},\n",
+ " {'answer': 'absolved',\n",
+ " 'hint': 'synonyms for absolved',\n",
+ " 'clues': [('vindicated', 'freed from any question of guilt'),\n",
+ " ('cleared', 'freed from any question of guilt'),\n",
+ " ('clear', 'freed from any question of guilt'),\n",
+ " ('exonerated', 'freed from any question of guilt'),\n",
+ " ('exculpated', 'freed from any question of guilt')]},\n",
+ " {'answer': 'absorbed',\n",
+ " 'hint': 'synonyms for absorbed',\n",
+ " 'clues': [('captive',\n",
+ " 'giving or marked by complete attention to; ; ; - Walter de la Mare'),\n",
+ " ('wrapped',\n",
+ " 'giving or marked by complete attention to; ; ; - Walter de la Mare'),\n",
+ " ('engrossed',\n",
+ " 'giving or marked by complete attention to; ; ; - Walter de la Mare'),\n",
+ " ('intent',\n",
+ " 'giving or marked by complete attention to; ; ; - Walter de la Mare')]},\n",
+ " {'answer': 'absorbing',\n",
+ " 'hint': 'synonyms for absorbing',\n",
+ " 'clues': [('gripping', 'capable of arousing and holding the attention'),\n",
+ " ('riveting', 'capable of arousing and holding the attention'),\n",
+ " ('fascinating', 'capable of arousing and holding the attention'),\n",
+ " ('engrossing', 'capable of arousing and holding the attention')]},\n",
+ " {'answer': 'absurd',\n",
+ " 'hint': 'synonyms for absurd',\n",
+ " 'clues': [('ludicrous', 'incongruous;inviting ridicule'),\n",
+ " ('laughable', 'incongruous;inviting ridicule'),\n",
+ " ('nonsensical', 'incongruous;inviting ridicule'),\n",
+ " ('derisory', 'incongruous;inviting ridicule'),\n",
+ " ('cockeyed', 'incongruous;inviting ridicule'),\n",
+ " ('preposterous', 'incongruous;inviting ridicule'),\n",
+ " ('ridiculous', 'incongruous;inviting ridicule'),\n",
+ " ('idiotic', 'incongruous;inviting ridicule')]},\n",
+ " {'answer': 'accessory',\n",
+ " 'hint': 'synonyms for accessory',\n",
+ " 'clues': [('auxiliary', 'furnishing added support'),\n",
+ " ('accessary', 'aiding and abetting in a crime'),\n",
+ " ('adjunct', 'furnishing added support'),\n",
+ " ('ancillary', 'furnishing added support'),\n",
+ " ('adjuvant', 'furnishing added support'),\n",
+ " ('appurtenant', 'furnishing added support')]},\n",
+ " {'answer': 'accompanying',\n",
+ " 'hint': 'synonyms for accompanying',\n",
+ " 'clues': [('resultant', 'following or accompanying as a consequence'),\n",
+ " ('sequent', 'following or accompanying as a consequence'),\n",
+ " ('consequent', 'following or accompanying as a consequence'),\n",
+ " ('concomitant', 'following or accompanying as a consequence'),\n",
+ " ('incidental', 'following or accompanying as a consequence'),\n",
+ " ('ensuant', 'following or accompanying as a consequence'),\n",
+ " ('attendant', 'following or accompanying as a consequence')]},\n",
+ " {'answer': 'accomplishable',\n",
+ " 'hint': 'synonyms for accomplishable',\n",
+ " 'clues': [('realizable',\n",
+ " 'capable of existing or taking place or proving true; possible to do'),\n",
+ " ('achievable',\n",
+ " 'capable of existing or taking place or proving true; possible to do'),\n",
+ " ('doable',\n",
+ " 'capable of existing or taking place or proving true; possible to do'),\n",
+ " ('manageable',\n",
+ " 'capable of existing or taking place or proving true; possible to do')]},\n",
+ " {'answer': 'accomplished',\n",
+ " 'hint': 'synonyms for accomplished',\n",
+ " 'clues': [('realised', 'successfully completed or brought to an end'),\n",
+ " ('effected', 'settled securely and unconditionally'),\n",
+ " ('complete', 'highly skilled'),\n",
+ " ('established', 'settled securely and unconditionally')]},\n",
+ " {'answer': 'accordant',\n",
+ " 'hint': 'synonyms for accordant',\n",
+ " 'clues': [('agreeable', 'in keeping'),\n",
+ " ('conformable', 'in keeping'),\n",
+ " ('consonant', 'in keeping'),\n",
+ " ('concordant', 'in keeping')]},\n",
+ " {'answer': 'accusative',\n",
+ " 'hint': 'synonyms for accusative',\n",
+ " 'clues': [('accusing',\n",
+ " 'containing or expressing accusation; ; ; - O.Henry'),\n",
+ " ('accusive', 'containing or expressing accusation; ; ; - O.Henry'),\n",
+ " ('objective',\n",
+ " 'serving as or indicating the object of a verb or of certain prepositions and used for certain other purposes'),\n",
+ " ('accusatory', 'containing or expressing accusation; ; ; - O.Henry')]},\n",
+ " {'answer': 'ace',\n",
+ " 'hint': 'synonyms for ace',\n",
+ " 'clues': [('topnotch', 'of the highest quality'),\n",
+ " ('first-rate', 'of the highest quality'),\n",
+ " ('tops', 'of the highest quality'),\n",
+ " ('super', 'of the highest quality'),\n",
+ " ('crack', 'of the highest quality'),\n",
+ " ('tiptop', 'of the highest quality')]},\n",
+ " {'answer': 'acerb',\n",
+ " 'hint': 'synonyms for acerb',\n",
+ " 'clues': [('acrid', 'harsh or corrosive in tone'),\n",
+ " ('acerbic', 'harsh or corrosive in tone'),\n",
+ " ('caustic', 'harsh or corrosive in tone'),\n",
+ " ('vitriolic', 'harsh or corrosive in tone'),\n",
+ " ('virulent', 'harsh or corrosive in tone'),\n",
+ " ('sulphurous', 'harsh or corrosive in tone'),\n",
+ " ('sulfurous', 'harsh or corrosive in tone'),\n",
+ " ('bitter', 'harsh or corrosive in tone'),\n",
+ " ('astringent', 'sour or bitter in taste'),\n",
+ " ('blistering', 'harsh or corrosive in tone')]},\n",
+ " {'answer': 'acerbic',\n",
+ " 'hint': 'synonyms for acerbic',\n",
+ " 'clues': [('acerb', 'harsh or corrosive in tone'),\n",
+ " ('acrid', 'harsh or corrosive in tone'),\n",
+ " ('vitriolic', 'harsh or corrosive in tone'),\n",
+ " ('caustic', 'harsh or corrosive in tone'),\n",
+ " ('virulent', 'harsh or corrosive in tone'),\n",
+ " ('sulphurous', 'harsh or corrosive in tone'),\n",
+ " ('sulfurous', 'harsh or corrosive in tone'),\n",
+ " ('bitter', 'harsh or corrosive in tone'),\n",
+ " ('astringent', 'sour or bitter in taste'),\n",
+ " ('blistering', 'harsh or corrosive in tone')]},\n",
+ " {'answer': 'achievable',\n",
+ " 'hint': 'synonyms for achievable',\n",
+ " 'clues': [('realizable',\n",
+ " 'capable of existing or taking place or proving true; possible to do'),\n",
+ " ('doable',\n",
+ " 'capable of existing or taking place or proving true; possible to do'),\n",
+ " ('accomplishable',\n",
+ " 'capable of existing or taking place or proving true; possible to do'),\n",
+ " ('manageable',\n",
+ " 'capable of existing or taking place or proving true; possible to do')]},\n",
+ " {'answer': 'acid',\n",
+ " 'hint': 'synonyms for acid',\n",
+ " 'clues': [('acerb', 'harsh or corrosive in tone'),\n",
+ " ('acrid', 'harsh or corrosive in tone'),\n",
+ " ('acidulous', 'being sour to the taste'),\n",
+ " ('acerbic', 'harsh or corrosive in tone'),\n",
+ " ('caustic', 'harsh or corrosive in tone'),\n",
+ " ('vitriolic', 'harsh or corrosive in tone'),\n",
+ " ('acidic', 'being sour to the taste'),\n",
+ " ('virulent', 'harsh or corrosive in tone'),\n",
+ " ('sulphurous', 'harsh or corrosive in tone'),\n",
+ " ('sulfurous', 'harsh or corrosive in tone'),\n",
+ " ('bitter', 'harsh or corrosive in tone'),\n",
+ " ('acidulent', 'being sour to the taste'),\n",
+ " ('blistering', 'harsh or corrosive in tone')]},\n",
+ " {'answer': 'acrid',\n",
+ " 'hint': 'synonyms for acrid',\n",
+ " 'clues': [('acerb', 'harsh or corrosive in tone'),\n",
+ " ('acid', 'harsh or corrosive in tone'),\n",
+ " ('pungent', 'strong and sharp'),\n",
+ " ('acerbic', 'harsh or corrosive in tone'),\n",
+ " ('caustic', 'harsh or corrosive in tone'),\n",
+ " ('vitriolic', 'harsh or corrosive in tone'),\n",
+ " ('virulent', 'harsh or corrosive in tone'),\n",
+ " ('sulphurous', 'harsh or corrosive in tone'),\n",
+ " ('sulfurous', 'harsh or corrosive in tone'),\n",
+ " ('bitter', 'harsh or corrosive in tone'),\n",
+ " ('blistering', 'harsh or corrosive in tone')]},\n",
+ " {'answer': 'across-the-board',\n",
+ " 'hint': 'synonyms for across-the-board',\n",
+ " 'clues': [('wide', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n",
+ " ('all-inclusive', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n",
+ " ('all-embracing', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n",
+ " ('panoptic', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n",
+ " ('encompassing', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n",
+ " ('extensive', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n",
+ " ('broad', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n",
+ " ('blanket', 'broad in scope or content; ; ; ; ; - T.G.Winner')]},\n",
+ " {'answer': 'active',\n",
+ " 'hint': 'synonyms for active',\n",
+ " 'clues': [('dynamic',\n",
+ " \"(used of verbs (e.g. `to run') and participial adjectives (e.g. `running' in `running water')) expressing action rather than a state of being\"),\n",
+ " ('combat-ready', 'engaged in or ready for military or naval operations'),\n",
+ " ('participating', 'taking part in an activity'),\n",
+ " ('alive', 'in operation'),\n",
+ " ('fighting', 'engaged in or ready for military or naval operations')]},\n",
+ " {'answer': 'actual',\n",
+ " 'hint': 'synonyms for actual',\n",
+ " 'clues': [('factual', 'existing in act or fact'),\n",
+ " ('existent',\n",
+ " 'presently existing in fact and not merely potential or possible'),\n",
+ " ('literal',\n",
+ " 'being or reflecting the essential or genuine character of something; ; - G.K.Chesterton'),\n",
+ " ('real',\n",
+ " 'being or reflecting the essential or genuine character of something; ; - G.K.Chesterton'),\n",
+ " ('genuine',\n",
+ " 'being or reflecting the essential or genuine character of something; ; - G.K.Chesterton')]},\n",
+ " {'answer': 'acute',\n",
+ " 'hint': 'synonyms for acute',\n",
+ " 'clues': [('penetrating',\n",
+ " 'having or demonstrating ability to recognize or draw fine distinctions'),\n",
+ " ('piercing',\n",
+ " 'having or demonstrating ability to recognize or draw fine distinctions'),\n",
+ " ('intense', 'extremely sharp or intense'),\n",
+ " ('incisive',\n",
+ " 'having or demonstrating ability to recognize or draw fine distinctions'),\n",
+ " ('sharp',\n",
+ " 'having or demonstrating ability to recognize or draw fine distinctions'),\n",
+ " ('penetrative',\n",
+ " 'having or demonstrating ability to recognize or draw fine distinctions'),\n",
+ " ('knifelike',\n",
+ " 'having or demonstrating ability to recognize or draw fine distinctions'),\n",
+ " ('keen',\n",
+ " 'having or demonstrating ability to recognize or draw fine distinctions'),\n",
+ " ('acuate', 'ending in a sharp point'),\n",
+ " ('needlelike', 'ending in a sharp point'),\n",
+ " ('discriminating',\n",
+ " 'having or demonstrating ability to recognize or draw fine distinctions')]},\n",
+ " {'answer': 'ad-lib',\n",
+ " 'hint': 'synonyms for ad-lib',\n",
+ " 'clues': [('unrehearsed', 'with little or no preparation or forethought'),\n",
+ " ('extemporaneous', 'with little or no preparation or forethought'),\n",
+ " ('extemporary', 'with little or no preparation or forethought'),\n",
+ " ('unwritten',\n",
+ " 'said or done without having been planned or written in advance'),\n",
+ " ('offhanded', 'with little or no preparation or forethought'),\n",
+ " ('spontaneous',\n",
+ " 'said or done without having been planned or written in advance'),\n",
+ " ('off-the-cuff', 'with little or no preparation or forethought'),\n",
+ " ('impromptu', 'with little or no preparation or forethought'),\n",
+ " ('extempore', 'with little or no preparation or forethought')]},\n",
+ " {'answer': 'addled',\n",
+ " 'hint': 'synonyms for addled',\n",
+ " 'clues': [('muzzy', 'confused and vague; used especially of thinking'),\n",
+ " ('woolly-headed', 'confused and vague; used especially of thinking'),\n",
+ " ('wooly', 'confused and vague; used especially of thinking'),\n",
+ " ('muddled', 'confused and vague; used especially of thinking'),\n",
+ " ('wooly-minded', 'confused and vague; used especially of thinking'),\n",
+ " ('befuddled', 'confused and vague; used especially of thinking')]},\n",
+ " {'answer': 'adept',\n",
+ " 'hint': 'synonyms for adept',\n",
+ " 'clues': [('proficient',\n",
+ " 'having or showing knowledge and skill and aptitude'),\n",
+ " ('good', 'having or showing knowledge and skill and aptitude'),\n",
+ " ('expert', 'having or showing knowledge and skill and aptitude'),\n",
+ " ('practiced', 'having or showing knowledge and skill and aptitude'),\n",
+ " ('skilful', 'having or showing knowledge and skill and aptitude')]},\n",
+ " {'answer': 'adequate',\n",
+ " 'hint': 'synonyms for adequate',\n",
+ " 'clues': [('tolerable', 'about average; acceptable'),\n",
+ " ('passable', 'about average; acceptable'),\n",
+ " ('fair to middling', 'about average; acceptable'),\n",
+ " ('decent', 'sufficient for the purpose'),\n",
+ " ('equal', 'having the requisite qualities or resources to meet a task'),\n",
+ " ('enough', 'sufficient for the purpose')]},\n",
+ " {'answer': 'adjacent',\n",
+ " 'hint': 'synonyms for adjacent',\n",
+ " 'clues': [('side by side',\n",
+ " 'nearest in space or position; immediately adjoining without intervening space'),\n",
+ " ('contiguous', 'having a common boundary or edge; abutting; touching'),\n",
+ " ('neighboring', 'having a common boundary or edge; abutting; touching'),\n",
+ " ('next',\n",
+ " 'nearest in space or position; immediately adjoining without intervening space'),\n",
+ " ('conterminous',\n",
+ " 'having a common boundary or edge; abutting; touching')]},\n",
+ " {'answer': 'adjunct',\n",
+ " 'hint': 'synonyms for adjunct',\n",
+ " 'clues': [('auxiliary', 'furnishing added support'),\n",
+ " ('assistant', 'of or relating to a person who is subordinate to another'),\n",
+ " ('ancillary', 'furnishing added support'),\n",
+ " ('accessory', 'furnishing added support'),\n",
+ " ('adjuvant', 'furnishing added support'),\n",
+ " ('appurtenant', 'furnishing added support')]},\n",
+ " {'answer': 'adjuvant',\n",
+ " 'hint': 'synonyms for adjuvant',\n",
+ " 'clues': [('adjunct', 'furnishing added support'),\n",
+ " ('ancillary', 'furnishing added support'),\n",
+ " ('accessory', 'furnishing added support'),\n",
+ " ('auxiliary', 'furnishing added support'),\n",
+ " ('appurtenant', 'furnishing added support')]},\n",
+ " {'answer': 'admonitory',\n",
+ " 'hint': 'synonyms for admonitory',\n",
+ " 'clues': [('exemplary', 'serving to warn'),\n",
+ " ('admonishing',\n",
+ " 'expressing reproof or reproach especially as a corrective'),\n",
+ " ('reproving',\n",
+ " 'expressing reproof or reproach especially as a corrective'),\n",
+ " ('warning', 'serving to warn'),\n",
+ " ('cautionary', 'serving to warn'),\n",
+ " ('reproachful',\n",
+ " 'expressing reproof or reproach especially as a corrective'),\n",
+ " ('monitory', 'serving to warn')]},\n",
+ " {'answer': 'adolescent',\n",
+ " 'hint': 'synonyms for adolescent',\n",
+ " 'clues': [('teenaged', 'being of the age 13 through 19'),\n",
+ " ('juvenile', 'displaying or suggesting a lack of maturity'),\n",
+ " ('jejune', 'displaying or suggesting a lack of maturity'),\n",
+ " ('puerile', 'displaying or suggesting a lack of maturity'),\n",
+ " ('teen', 'being of the age 13 through 19')]},\n",
+ " {'answer': 'adrift',\n",
+ " 'hint': 'synonyms for adrift',\n",
+ " 'clues': [('afloat', 'aimlessly drifting'),\n",
+ " ('directionless', 'aimlessly drifting'),\n",
+ " ('aimless', 'aimlessly drifting'),\n",
+ " ('undirected', 'aimlessly drifting'),\n",
+ " ('rudderless', 'aimlessly drifting'),\n",
+ " ('planless', 'aimlessly drifting')]},\n",
+ " {'answer': 'adult',\n",
+ " 'hint': 'synonyms for adult',\n",
+ " 'clues': [('grownup', '(of animals) fully developed'),\n",
+ " ('big', '(of animals) fully developed'),\n",
+ " ('pornographic', 'designed to arouse lust'),\n",
+ " ('full-grown', '(of animals) fully developed'),\n",
+ " ('grown', '(of animals) fully developed')]},\n",
+ " {'answer': 'adulterous',\n",
+ " 'hint': 'synonyms for adulterous',\n",
+ " 'clues': [('cheating', 'not faithful to a spouse or lover'),\n",
+ " ('extramarital', 'characterized by adultery'),\n",
+ " ('two-timing', 'not faithful to a spouse or lover'),\n",
+ " ('extracurricular', 'characterized by adultery')]},\n",
+ " {'answer': 'adust',\n",
+ " 'hint': 'synonyms for adust',\n",
+ " 'clues': [('parched',\n",
+ " 'dried out by heat or excessive exposure to sunlight'),\n",
+ " ('sunbaked', 'dried out by heat or excessive exposure to sunlight'),\n",
+ " ('scorched', 'dried out by heat or excessive exposure to sunlight'),\n",
+ " ('baked', 'dried out by heat or excessive exposure to sunlight')]},\n",
+ " {'answer': 'advanced',\n",
+ " 'hint': 'synonyms for advanced',\n",
+ " 'clues': [('sophisticated', 'ahead in development; complex or intricate'),\n",
+ " ('ripe', 'far along in time'),\n",
+ " ('advance', 'situated ahead or going before'),\n",
+ " ('forward-looking', 'ahead of the times'),\n",
+ " ('in advance', 'situated ahead or going before'),\n",
+ " ('innovative', 'ahead of the times'),\n",
+ " ('modern', 'ahead of the times')]},\n",
+ " {'answer': 'adynamic',\n",
+ " 'hint': 'synonyms for adynamic',\n",
+ " 'clues': [('debilitated', 'lacking strength or vigor'),\n",
+ " ('enervated', 'lacking strength or vigor'),\n",
+ " ('undynamic', 'characterized by an absence of force or forcefulness'),\n",
+ " ('asthenic', 'lacking strength or vigor')]},\n",
+ " {'answer': 'aeonian',\n",
+ " 'hint': 'synonyms for aeonian',\n",
+ " 'clues': [('perpetual', 'continuing forever or indefinitely'),\n",
+ " ('everlasting', 'continuing forever or indefinitely'),\n",
+ " ('eonian', 'of or relating to a geological eon (longer than an era)'),\n",
+ " ('unending', 'continuing forever or indefinitely'),\n",
+ " ('eternal', 'continuing forever or indefinitely'),\n",
+ " ('unceasing', 'continuing forever or indefinitely'),\n",
+ " ('ageless', 'continuing forever or indefinitely')]},\n",
+ " {'answer': 'aerial',\n",
+ " 'hint': 'synonyms for aerial',\n",
+ " 'clues': [('aery',\n",
+ " 'characterized by lightness and insubstantiality; as impalpable or intangible as air; - Thomas Carlyle'),\n",
+ " ('airy',\n",
+ " 'characterized by lightness and insubstantiality; as impalpable or intangible as air; - Thomas Carlyle'),\n",
+ " ('aeriform',\n",
+ " 'characterized by lightness and insubstantiality; as impalpable or intangible as air; - Thomas Carlyle'),\n",
+ " ('ethereal',\n",
+ " 'characterized by lightness and insubstantiality; as impalpable or intangible as air; - Thomas Carlyle')]},\n",
+ " {'answer': 'aeriform',\n",
+ " 'hint': 'synonyms for aeriform',\n",
+ " 'clues': [('airy',\n",
+ " 'characterized by lightness and insubstantiality; as impalpable or intangible as air; - Thomas Carlyle'),\n",
+ " ('aery',\n",
+ " 'characterized by lightness and insubstantiality; as impalpable or intangible as air; - Thomas Carlyle'),\n",
+ " ('aerial',\n",
+ " 'characterized by lightness and insubstantiality; as impalpable or intangible as air; - Thomas Carlyle'),\n",
+ " ('ethereal',\n",
+ " 'characterized by lightness and insubstantiality; as impalpable or intangible as air; - Thomas Carlyle'),\n",
+ " ('airlike', 'resembling air or having the form of air')]},\n",
+ " {'answer': 'aery',\n",
+ " 'hint': 'synonyms for aery',\n",
+ " 'clues': [('aerial',\n",
+ " 'characterized by lightness and insubstantiality; as impalpable or intangible as air; - Thomas Carlyle'),\n",
+ " ('aeriform',\n",
+ " 'characterized by lightness and insubstantiality; as impalpable or intangible as air; - Thomas Carlyle'),\n",
+ " ('ethereal',\n",
+ " 'characterized by lightness and insubstantiality; as impalpable or intangible as air; - Thomas Carlyle'),\n",
+ " ('airy',\n",
+ " 'characterized by lightness and insubstantiality; as impalpable or intangible as air; - Thomas Carlyle')]},\n",
+ " {'answer': 'affected',\n",
+ " 'hint': 'synonyms for affected',\n",
+ " 'clues': [('touched',\n",
+ " 'being excited or provoked to the expression of an emotion'),\n",
+ " ('unnatural',\n",
+ " 'speaking or behaving in an artificial way to make an impression'),\n",
+ " ('stirred', 'being excited or provoked to the expression of an emotion'),\n",
+ " ('moved', 'being excited or provoked to the expression of an emotion')]},\n",
+ " {'answer': 'affectionate',\n",
+ " 'hint': 'synonyms for affectionate',\n",
+ " 'clues': [('tender', 'having or displaying warmth or affection'),\n",
+ " ('lovesome', 'having or displaying warmth or affection'),\n",
+ " ('fond', 'having or displaying warmth or affection'),\n",
+ " ('warm', 'having or displaying warmth or affection')]},\n",
+ " {'answer': 'affirmative',\n",
+ " 'hint': 'synonyms for affirmative',\n",
+ " 'clues': [('optimistic', 'expecting the best'),\n",
+ " ('affirmatory', 'affirming or giving assent'),\n",
+ " ('approbatory', 'expressing or manifesting praise or approval'),\n",
+ " ('approving', 'expressing or manifesting praise or approval'),\n",
+ " ('approbative', 'expressing or manifesting praise or approval'),\n",
+ " ('plausive', 'expressing or manifesting praise or approval')]},\n",
+ " {'answer': 'affluent',\n",
+ " 'hint': 'synonyms for affluent',\n",
+ " 'clues': [('wealthy',\n",
+ " 'having an abundant supply of money or possessions of value'),\n",
+ " ('loaded', 'having an abundant supply of money or possessions of value'),\n",
+ " ('moneyed', 'having an abundant supply of money or possessions of value'),\n",
+ " ('flush', 'having an abundant supply of money or possessions of value')]},\n",
+ " {'answer': 'afire',\n",
+ " 'hint': 'synonyms for afire',\n",
+ " 'clues': [('alight', 'lighted up by or as by fire or flame'),\n",
+ " ('aflare', 'lighted up by or as by fire or flame'),\n",
+ " ('aflame', 'lighted up by or as by fire or flame'),\n",
+ " ('on fire', 'lighted up by or as by fire or flame'),\n",
+ " ('ablaze', 'lighted up by or as by fire or flame')]},\n",
+ " {'answer': 'aflame',\n",
+ " 'hint': 'synonyms for aflame',\n",
+ " 'clues': [('alight', 'lighted up by or as by fire or flame'),\n",
+ " ('aflare', 'lighted up by or as by fire or flame'),\n",
+ " ('on fire', 'lighted up by or as by fire or flame'),\n",
+ " ('aroused',\n",
+ " 'keenly excited (especially sexually) or indicating excitement; - Bram Stoker'),\n",
+ " ('afire', 'lighted up by or as by fire or flame'),\n",
+ " ('ablaze', 'lighted up by or as by fire or flame')]},\n",
+ " {'answer': 'aflare',\n",
+ " 'hint': 'synonyms for aflare',\n",
+ " 'clues': [('alight', 'lighted up by or as by fire or flame'),\n",
+ " ('aflame', 'lighted up by or as by fire or flame'),\n",
+ " ('afire', 'lighted up by or as by fire or flame'),\n",
+ " ('on fire', 'lighted up by or as by fire or flame'),\n",
+ " ('ablaze', 'lighted up by or as by fire or flame'),\n",
+ " ('flaring',\n",
+ " 'streaming or flapping or spreading wide as if in a current of air')]},\n",
+ " {'answer': 'afloat',\n",
+ " 'hint': 'synonyms for afloat',\n",
+ " 'clues': [('adrift', 'aimlessly drifting'),\n",
+ " ('directionless', 'aimlessly drifting'),\n",
+ " ('aimless', 'aimlessly drifting'),\n",
+ " ('undirected', 'aimlessly drifting'),\n",
+ " ('rudderless', 'aimlessly drifting'),\n",
+ " ('inundated', 'covered with water'),\n",
+ " ('overflowing', 'covered with water'),\n",
+ " ('awash', 'covered with water'),\n",
+ " ('planless', 'aimlessly drifting'),\n",
+ " ('flooded', 'covered with water')]},\n",
+ " {'answer': 'agamic',\n",
+ " 'hint': 'synonyms for agamic',\n",
+ " 'clues': [('agamogenetic',\n",
+ " '(of reproduction) not involving the fusion of male and female gametes in reproduction'),\n",
+ " ('parthenogenetic',\n",
+ " '(of reproduction) not involving the fusion of male and female gametes in reproduction'),\n",
+ " ('agamous',\n",
+ " '(of reproduction) not involving the fusion of male and female gametes in reproduction'),\n",
+ " ('apomictic',\n",
+ " '(of reproduction) not involving the fusion of male and female gametes in reproduction')]},\n",
+ " {'answer': 'agamogenetic',\n",
+ " 'hint': 'synonyms for agamogenetic',\n",
+ " 'clues': [('agamic',\n",
+ " '(of reproduction) not involving the fusion of male and female gametes in reproduction'),\n",
+ " ('parthenogenetic',\n",
+ " '(of reproduction) not involving the fusion of male and female gametes in reproduction'),\n",
+ " ('agamous',\n",
+ " '(of reproduction) not involving the fusion of male and female gametes in reproduction'),\n",
+ " ('apomictic',\n",
+ " '(of reproduction) not involving the fusion of male and female gametes in reproduction')]},\n",
+ " {'answer': 'agamous',\n",
+ " 'hint': 'synonyms for agamous',\n",
+ " 'clues': [('agamic',\n",
+ " '(of reproduction) not involving the fusion of male and female gametes in reproduction'),\n",
+ " ('agamogenetic',\n",
+ " '(of reproduction) not involving the fusion of male and female gametes in reproduction'),\n",
+ " ('parthenogenetic',\n",
+ " '(of reproduction) not involving the fusion of male and female gametes in reproduction'),\n",
+ " ('apomictic',\n",
+ " '(of reproduction) not involving the fusion of male and female gametes in reproduction')]},\n",
+ " {'answer': 'aged',\n",
+ " 'hint': 'synonyms for aged',\n",
+ " 'clues': [('of age',\n",
+ " \"having attained a specific age; (`aged' is pronounced as one syllable)\"),\n",
+ " ('ripened',\n",
+ " \"of wines, fruit, cheeses; having reached a desired or final condition; (`aged' pronounced as one syllable)\"),\n",
+ " ('senior', \"advanced in years; (`aged' is pronounced as two syllables)\"),\n",
+ " ('older', \"advanced in years; (`aged' is pronounced as two syllables)\"),\n",
+ " ('cured',\n",
+ " \"(used of tobacco) aging as a preservative process (`aged' is pronounced as one syllable)\"),\n",
+ " ('elderly',\n",
+ " \"advanced in years; (`aged' is pronounced as two syllables)\")]},\n",
+ " {'answer': 'ageless',\n",
+ " 'hint': 'synonyms for ageless',\n",
+ " 'clues': [('perpetual', 'continuing forever or indefinitely'),\n",
+ " ('everlasting', 'continuing forever or indefinitely'),\n",
+ " ('eonian', 'continuing forever or indefinitely'),\n",
+ " ('eternal', 'continuing forever or indefinitely'),\n",
+ " ('unceasing', 'continuing forever or indefinitely'),\n",
+ " ('unending', 'continuing forever or indefinitely')]},\n",
+ " {'answer': 'aglitter',\n",
+ " 'hint': 'synonyms for aglitter',\n",
+ " 'clues': [('sparkly', 'having brief brilliant points or flashes of light'),\n",
+ " ('glittering', 'having brief brilliant points or flashes of light'),\n",
+ " ('scintillating', 'having brief brilliant points or flashes of light'),\n",
+ " ('glittery', 'having brief brilliant points or flashes of light'),\n",
+ " ('scintillant', 'having brief brilliant points or flashes of light'),\n",
+ " ('glinting', 'having brief brilliant points or flashes of light'),\n",
+ " ('coruscant', 'having brief brilliant points or flashes of light'),\n",
+ " ('fulgid', 'having brief brilliant points or flashes of light')]},\n",
+ " {'answer': 'agonising',\n",
+ " 'hint': 'synonyms for agonising',\n",
+ " 'clues': [('agonizing', 'extremely painful'),\n",
+ " ('excruciating', 'extremely painful'),\n",
+ " ('torturing', 'extremely painful'),\n",
+ " ('torturous', 'extremely painful'),\n",
+ " ('harrowing', 'extremely painful'),\n",
+ " ('torturesome', 'extremely painful')]},\n",
+ " {'answer': 'agonizing',\n",
+ " 'hint': 'synonyms for agonizing',\n",
+ " 'clues': [('excruciating', 'extremely painful'),\n",
+ " ('torturing', 'extremely painful'),\n",
+ " ('torturous', 'extremely painful'),\n",
+ " ('agonising', 'extremely painful'),\n",
+ " ('harrowing', 'extremely painful'),\n",
+ " ('torturesome', 'extremely painful')]},\n",
+ " {'answer': 'agreeable',\n",
+ " 'hint': 'synonyms for agreeable',\n",
+ " 'clues': [('accordant', 'in keeping'),\n",
+ " ('conformable', 'in keeping'),\n",
+ " ('consonant', 'in keeping'),\n",
+ " ('concordant', 'in keeping')]},\n",
+ " {'answer': 'ailing',\n",
+ " 'hint': 'synonyms for ailing',\n",
+ " 'clues': [('unwell', 'somewhat ill or prone to illness'),\n",
+ " ('seedy', 'somewhat ill or prone to illness'),\n",
+ " ('indisposed', 'somewhat ill or prone to illness'),\n",
+ " ('poorly', 'somewhat ill or prone to illness'),\n",
+ " ('peaked', 'somewhat ill or prone to illness'),\n",
+ " ('under the weather', 'somewhat ill or prone to illness'),\n",
+ " ('sickly', 'somewhat ill or prone to illness')]},\n",
+ " {'answer': 'aimless',\n",
+ " 'hint': 'synonyms for aimless',\n",
+ " 'clues': [('adrift', 'aimlessly drifting'),\n",
+ " ('drifting',\n",
+ " 'continually changing especially as from one abode or occupation to another'),\n",
+ " ('directionless', 'aimlessly drifting'),\n",
+ " ('undirected', 'aimlessly drifting'),\n",
+ " ('vagabond',\n",
+ " 'continually changing especially as from one abode or occupation to another'),\n",
+ " ('rudderless', 'aimlessly drifting'),\n",
+ " ('vagrant',\n",
+ " 'continually changing especially as from one abode or occupation to another'),\n",
+ " ('floating',\n",
+ " 'continually changing especially as from one abode or occupation to another'),\n",
+ " ('afloat', 'aimlessly drifting'),\n",
+ " ('planless', 'aimlessly drifting')]},\n",
+ " {'answer': 'airheaded',\n",
+ " 'hint': 'synonyms for airheaded',\n",
+ " 'clues': [('empty-headed', 'lacking seriousness; given to frivolity'),\n",
+ " ('giddy', 'lacking seriousness; given to frivolity'),\n",
+ " ('dizzy', 'lacking seriousness; given to frivolity'),\n",
+ " ('lightheaded', 'lacking seriousness; given to frivolity'),\n",
+ " ('featherbrained', 'lacking seriousness; given to frivolity'),\n",
+ " ('silly', 'lacking seriousness; given to frivolity')]},\n",
+ " {'answer': 'airy',\n",
+ " 'hint': 'synonyms for airy',\n",
+ " 'clues': [('impractical', 'not practical or realizable; speculative'),\n",
+ " ('aired', 'open to or abounding in fresh air'),\n",
+ " ('aery',\n",
+ " 'characterized by lightness and insubstantiality; as impalpable or intangible as air; - Thomas Carlyle'),\n",
+ " ('ethereal',\n",
+ " 'characterized by lightness and insubstantiality; as impalpable or intangible as air; - Thomas Carlyle'),\n",
+ " ('windy', 'not practical or realizable; speculative'),\n",
+ " ('visionary', 'not practical or realizable; speculative'),\n",
+ " ('aerial',\n",
+ " 'characterized by lightness and insubstantiality; as impalpable or intangible as air; - Thomas Carlyle'),\n",
+ " ('aeriform',\n",
+ " 'characterized by lightness and insubstantiality; as impalpable or intangible as air; - Thomas Carlyle')]},\n",
+ " {'answer': 'akin',\n",
+ " 'hint': 'synonyms for akin',\n",
+ " 'clues': [('kin', 'related by blood'),\n",
+ " ('consanguine', 'related by blood'),\n",
+ " ('cognate', 'related by blood'),\n",
+ " ('kindred', 'similar in quality or character'),\n",
+ " ('blood-related', 'related by blood')]},\n",
+ " {'answer': 'alar',\n",
+ " 'hint': 'synonyms for alar',\n",
+ " 'clues': [('axillary', 'of or relating to the axil'),\n",
+ " ('wing-shaped', 'having or resembling wings'),\n",
+ " ('aliform', 'having or resembling wings'),\n",
+ " ('alary', 'having or resembling wings')]},\n",
+ " {'answer': 'alert',\n",
+ " 'hint': 'synonyms for alert',\n",
+ " 'clues': [('zippy', 'quick and energetic'),\n",
+ " ('spanking', 'quick and energetic'),\n",
+ " ('lively', 'quick and energetic'),\n",
+ " ('snappy', 'quick and energetic'),\n",
+ " ('awake', 'mentally perceptive and responsive'),\n",
+ " ('watchful', 'engaged in or accustomed to close observation'),\n",
+ " ('rattling', 'quick and energetic'),\n",
+ " ('alive', 'mentally perceptive and responsive'),\n",
+ " ('merry', 'quick and energetic'),\n",
+ " ('brisk', 'quick and energetic')]},\n",
+ " {'answer': 'alight',\n",
+ " 'hint': 'synonyms for alight',\n",
+ " 'clues': [('aflare', 'lighted up by or as by fire or flame'),\n",
+ " ('aflame', 'lighted up by or as by fire or flame'),\n",
+ " ('afire', 'lighted up by or as by fire or flame'),\n",
+ " ('on fire', 'lighted up by or as by fire or flame'),\n",
+ " ('ablaze', 'lighted up by or as by fire or flame')]},\n",
+ " {'answer': 'alimental',\n",
+ " 'hint': 'synonyms for alimental',\n",
+ " 'clues': [('nutritive', 'of or providing nourishment'),\n",
+ " ('alimentary', 'of or providing nourishment'),\n",
+ " ('nourishing', 'of or providing nourishment'),\n",
+ " ('nutritious', 'of or providing nourishment'),\n",
+ " ('nutrient', 'of or providing nourishment')]},\n",
+ " {'answer': 'alimentary',\n",
+ " 'hint': 'synonyms for alimentary',\n",
+ " 'clues': [('nutritive', 'of or providing nourishment'),\n",
+ " ('nourishing', 'of or providing nourishment'),\n",
+ " ('nutritious', 'of or providing nourishment'),\n",
+ " ('alimental', 'of or providing nourishment'),\n",
+ " ('nutrient', 'of or providing nourishment')]},\n",
+ " {'answer': 'alive',\n",
+ " 'hint': 'synonyms for alive',\n",
+ " 'clues': [('live', 'possessing life'),\n",
+ " ('alert', 'mentally perceptive and responsive'),\n",
+ " ('animated', 'having life or vigor or spirit'),\n",
+ " ('active', 'in operation'),\n",
+ " ('awake', 'mentally perceptive and responsive')]},\n",
+ " {'answer': 'all-embracing',\n",
+ " 'hint': 'synonyms for all-embracing',\n",
+ " 'clues': [('wide', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n",
+ " ('all-inclusive', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n",
+ " ('panoptic', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n",
+ " ('across-the-board', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n",
+ " ('encompassing', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n",
+ " ('extensive', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n",
+ " ('broad', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n",
+ " ('blanket', 'broad in scope or content; ; ; ; ; - T.G.Winner')]},\n",
+ " {'answer': 'all-encompassing',\n",
+ " 'hint': 'synonyms for all-encompassing',\n",
+ " 'clues': [('wide', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n",
+ " ('all-inclusive', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n",
+ " ('all-embracing', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n",
+ " ('panoptic', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n",
+ " ('across-the-board', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n",
+ " ('encompassing', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n",
+ " ('extensive', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n",
+ " ('broad', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n",
+ " ('blanket', 'broad in scope or content; ; ; ; ; - T.G.Winner')]},\n",
+ " {'answer': 'all-important',\n",
+ " 'hint': 'synonyms for all-important',\n",
+ " 'clues': [('all important', 'of the greatest importance'),\n",
+ " ('crucial', 'of the greatest importance'),\n",
+ " ('essential', 'of the greatest importance'),\n",
+ " ('of the essence', 'of the greatest importance')]},\n",
+ " {'answer': 'all-inclusive',\n",
+ " 'hint': 'synonyms for all-inclusive',\n",
+ " 'clues': [('wide', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n",
+ " ('all-embracing', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n",
+ " ('panoptic', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n",
+ " ('across-the-board', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n",
+ " ('encompassing', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n",
+ " ('extensive', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n",
+ " ('broad', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n",
+ " ('blanket', 'broad in scope or content; ; ; ; ; - T.G.Winner')]},\n",
+ " {'answer': 'all_important',\n",
+ " 'hint': 'synonyms for all important',\n",
+ " 'clues': [('essential', 'of the greatest importance'),\n",
+ " ('crucial', 'of the greatest importance'),\n",
+ " ('all-important', 'of the greatest importance'),\n",
+ " ('of the essence', 'of the greatest importance')]},\n",
+ " {'answer': 'all_over',\n",
+ " 'hint': 'synonyms for all over',\n",
+ " 'clues': [('concluded', 'having come or been brought to a conclusion'),\n",
+ " ('over', 'having come or been brought to a conclusion'),\n",
+ " ('ended', 'having come or been brought to a conclusion'),\n",
+ " ('complete', 'having come or been brought to a conclusion'),\n",
+ " ('terminated', 'having come or been brought to a conclusion')]},\n",
+ " {'answer': 'all_right',\n",
+ " 'hint': 'synonyms for all right',\n",
+ " 'clues': [('o.k.', 'being satisfactory or in satisfactory condition'),\n",
+ " ('hunky-dory', 'being satisfactory or in satisfactory condition'),\n",
+ " ('okay', 'being satisfactory or in satisfactory condition'),\n",
+ " ('ok', 'being satisfactory or in satisfactory condition'),\n",
+ " ('fine', 'being satisfactory or in satisfactory condition')]},\n",
+ " {'answer': 'alleviative',\n",
+ " 'hint': 'synonyms for alleviative',\n",
+ " 'clues': [('lenitive',\n",
+ " 'moderating pain or sorrow by making it easier to bear'),\n",
+ " ('mitigative', 'moderating pain or sorrow by making it easier to bear'),\n",
+ " ('alleviatory', 'moderating pain or sorrow by making it easier to bear'),\n",
+ " ('palliative', 'moderating pain or sorrow by making it easier to bear'),\n",
+ " ('mitigatory', 'moderating pain or sorrow by making it easier to bear')]},\n",
+ " {'answer': 'alleviatory',\n",
+ " 'hint': 'synonyms for alleviatory',\n",
+ " 'clues': [('lenitive',\n",
+ " 'moderating pain or sorrow by making it easier to bear'),\n",
+ " ('mitigative', 'moderating pain or sorrow by making it easier to bear'),\n",
+ " ('palliative', 'moderating pain or sorrow by making it easier to bear'),\n",
+ " ('mitigatory', 'moderating pain or sorrow by making it easier to bear')]},\n",
+ " {'answer': 'alone',\n",
+ " 'hint': 'synonyms for alone',\n",
+ " 'clues': [('unequalled', 'radically distinctive and without equal'),\n",
+ " ('only', 'exclusive of anyone or anything else'),\n",
+ " ('solitary', 'lacking companions or companionship'),\n",
+ " ('unique', 'radically distinctive and without equal'),\n",
+ " ('lone', 'lacking companions or companionship'),\n",
+ " ('unparalleled', 'radically distinctive and without equal')]},\n",
+ " {'answer': 'alterative',\n",
+ " 'hint': 'synonyms for alterative',\n",
+ " 'clues': [('healing', 'tending to cure or restore to health'),\n",
+ " ('therapeutic', 'tending to cure or restore to health'),\n",
+ " ('curative', 'tending to cure or restore to health'),\n",
+ " ('remedial', 'tending to cure or restore to health'),\n",
+ " ('sanative', 'tending to cure or restore to health')]},\n",
+ " {'answer': 'alveolate',\n",
+ " 'hint': 'synonyms for alveolate',\n",
+ " 'clues': [('pitted', 'pitted with cell-like cavities (as a honeycomb)'),\n",
+ " ('honeycombed', 'pitted with cell-like cavities (as a honeycomb)'),\n",
+ " ('cavitied', 'pitted with cell-like cavities (as a honeycomb)'),\n",
+ " ('faveolate', 'pitted with cell-like cavities (as a honeycomb)')]},\n",
+ " {'answer': 'amalgamate',\n",
+ " 'hint': 'synonyms for amalgamate',\n",
+ " 'clues': [('fused', 'joined together into a whole'),\n",
+ " ('consolidated', 'joined together into a whole'),\n",
+ " ('amalgamated', 'joined together into a whole'),\n",
+ " ('coalesced', 'joined together into a whole')]},\n",
+ " {'answer': 'amalgamated',\n",
+ " 'hint': 'synonyms for amalgamated',\n",
+ " 'clues': [('fused', 'joined together into a whole'),\n",
+ " ('amalgamate', 'joined together into a whole'),\n",
+ " ('consolidated', 'joined together into a whole'),\n",
+ " ('coalesced', 'joined together into a whole')]},\n",
+ " {'answer': 'amateur',\n",
+ " 'hint': 'synonyms for amateur',\n",
+ " 'clues': [('unpaid', 'engaged in as a pastime'),\n",
+ " ('amateurish', 'lacking professional skill or expertise'),\n",
+ " ('inexpert', 'lacking professional skill or expertise'),\n",
+ " ('recreational', 'engaged in as a pastime'),\n",
+ " ('unskilled', 'lacking professional skill or expertise')]},\n",
+ " {'answer': 'amazing',\n",
+ " 'hint': 'synonyms for amazing',\n",
+ " 'clues': [('awe-inspiring',\n",
+ " 'inspiring awe or admiration or wonder; ; ; ; - Melville'),\n",
+ " ('astonishing', 'surprising greatly'),\n",
+ " ('awesome', 'inspiring awe or admiration or wonder; ; ; ; - Melville'),\n",
+ " ('awful', 'inspiring awe or admiration or wonder; ; ; ; - Melville'),\n",
+ " ('awing', 'inspiring awe or admiration or wonder; ; ; ; - Melville')]},\n",
+ " {'answer': 'ambidextrous',\n",
+ " 'hint': 'synonyms for ambidextrous',\n",
+ " 'clues': [('two-faced',\n",
+ " 'marked by deliberate deceptiveness especially by pretending one set of feelings and acting under the influence of another; - Israel Zangwill; ; - W.M.Thackeray'),\n",
+ " ('two-handed', 'equally skillful with each hand'),\n",
+ " ('double-tongued',\n",
+ " 'marked by deliberate deceptiveness especially by pretending one set of feelings and acting under the influence of another; - Israel Zangwill; ; - W.M.Thackeray'),\n",
+ " ('deceitful',\n",
+ " 'marked by deliberate deceptiveness especially by pretending one set of feelings and acting under the influence of another; - Israel Zangwill; ; - W.M.Thackeray'),\n",
+ " ('double-faced',\n",
+ " 'marked by deliberate deceptiveness especially by pretending one set of feelings and acting under the influence of another; - Israel Zangwill; ; - W.M.Thackeray'),\n",
+ " ('duplicitous',\n",
+ " 'marked by deliberate deceptiveness especially by pretending one set of feelings and acting under the influence of another; - Israel Zangwill; ; - W.M.Thackeray'),\n",
+ " ('double-dealing',\n",
+ " 'marked by deliberate deceptiveness especially by pretending one set of feelings and acting under the influence of another; - Israel Zangwill; ; - W.M.Thackeray')]},\n",
+ " {'answer': 'amiable',\n",
+ " 'hint': 'synonyms for amiable',\n",
+ " 'clues': [('good-humored', 'disposed to please; - Hal Hinson'),\n",
+ " ('cordial', 'diffusing warmth and friendliness'),\n",
+ " ('affable', 'diffusing warmth and friendliness'),\n",
+ " ('genial', 'diffusing warmth and friendliness')]},\n",
+ " {'answer': 'amok',\n",
+ " 'hint': 'synonyms for amok',\n",
+ " 'clues': [('berserk', 'frenzied as if possessed by a demon'),\n",
+ " ('possessed', 'frenzied as if possessed by a demon'),\n",
+ " ('demoniacal', 'frenzied as if possessed by a demon'),\n",
+ " ('amuck', 'frenzied as if possessed by a demon')]},\n",
+ " {'answer': 'amorphous',\n",
+ " 'hint': 'synonyms for amorphous',\n",
+ " 'clues': [('shapeless', 'having no definite form or distinct shape'),\n",
+ " ('formless', 'having no definite form or distinct shape'),\n",
+ " ('uncrystallized', 'without real or apparent crystalline form'),\n",
+ " ('unstructured',\n",
+ " 'lacking the system or structure characteristic of living bodies')]},\n",
+ " {'answer': 'ample',\n",
+ " 'hint': 'synonyms for ample',\n",
+ " 'clues': [('rich', 'affording an abundant supply'),\n",
+ " ('sizable', 'fairly large'),\n",
+ " ('copious', 'affording an abundant supply'),\n",
+ " ('plentiful', 'affording an abundant supply'),\n",
+ " ('plenteous', 'affording an abundant supply')]},\n",
+ " {'answer': 'amuck',\n",
+ " 'hint': 'synonyms for amuck',\n",
+ " 'clues': [('berserk', 'frenzied as if possessed by a demon'),\n",
+ " ('amok', 'frenzied as if possessed by a demon'),\n",
+ " ('demoniacal', 'frenzied as if possessed by a demon'),\n",
+ " ('possessed', 'frenzied as if possessed by a demon')]},\n",
+ " {'answer': 'amusing',\n",
+ " 'hint': 'synonyms for amusing',\n",
+ " 'clues': [('mirthful', 'arousing or provoking laughter'),\n",
+ " ('risible', 'arousing or provoking laughter'),\n",
+ " ('funny', 'arousing or provoking laughter'),\n",
+ " ('diverting', 'providing enjoyment; pleasantly entertaining'),\n",
+ " ('comic', 'arousing or provoking laughter'),\n",
+ " ('amusive', 'providing enjoyment; pleasantly entertaining'),\n",
+ " ('laughable', 'arousing or provoking laughter'),\n",
+ " ('comical', 'arousing or provoking laughter')]},\n",
+ " {'answer': 'amyloid',\n",
+ " 'hint': 'synonyms for amyloid',\n",
+ " 'clues': [('farinaceous', 'resembling starch'),\n",
+ " ('amylaceous', 'resembling starch'),\n",
+ " ('starchlike', 'resembling starch'),\n",
+ " ('amyloidal', 'resembling starch')]},\n",
+ " {'answer': 'amyloidal',\n",
+ " 'hint': 'synonyms for amyloidal',\n",
+ " 'clues': [('farinaceous', 'resembling starch'),\n",
+ " ('amyloid', 'resembling starch'),\n",
+ " ('amylaceous', 'resembling starch'),\n",
+ " ('starchlike', 'resembling starch')]},\n",
+ " {'answer': 'ancillary',\n",
+ " 'hint': 'synonyms for ancillary',\n",
+ " 'clues': [('auxiliary', 'furnishing added support'),\n",
+ " ('adjunct', 'furnishing added support'),\n",
+ " ('accessory', 'furnishing added support'),\n",
+ " ('adjuvant', 'furnishing added support'),\n",
+ " ('appurtenant', 'furnishing added support')]},\n",
+ " {'answer': 'angelic',\n",
+ " 'hint': 'synonyms for angelic',\n",
+ " 'clues': [('cherubic',\n",
+ " 'having a sweet nature befitting an angel or cherub'),\n",
+ " ('saintlike',\n",
+ " 'marked by utter benignity; resembling or befitting an angel or saint'),\n",
+ " ('sweet', 'having a sweet nature befitting an angel or cherub'),\n",
+ " ('seraphic', 'having a sweet nature befitting an angel or cherub'),\n",
+ " ('angelical', 'of or relating to angels'),\n",
+ " ('saintly',\n",
+ " 'marked by utter benignity; resembling or befitting an angel or saint'),\n",
+ " ('sainted',\n",
+ " 'marked by utter benignity; resembling or befitting an angel or saint'),\n",
+ " ('beatific',\n",
+ " 'marked by utter benignity; resembling or befitting an angel or saint')]},\n",
+ " {'answer': 'angelical',\n",
+ " 'hint': 'synonyms for angelical',\n",
+ " 'clues': [('cherubic',\n",
+ " 'having a sweet nature befitting an angel or cherub'),\n",
+ " ('angelic', 'having a sweet nature befitting an angel or cherub'),\n",
+ " ('saintlike',\n",
+ " 'marked by utter benignity; resembling or befitting an angel or saint'),\n",
+ " ('sweet', 'having a sweet nature befitting an angel or cherub'),\n",
+ " ('seraphic', 'having a sweet nature befitting an angel or cherub'),\n",
+ " ('saintly',\n",
+ " 'marked by utter benignity; resembling or befitting an angel or saint'),\n",
+ " ('sainted',\n",
+ " 'marked by utter benignity; resembling or befitting an angel or saint'),\n",
+ " ('beatific',\n",
+ " 'marked by utter benignity; resembling or befitting an angel or saint')]},\n",
+ " {'answer': 'angered',\n",
+ " 'hint': 'synonyms for angered',\n",
+ " 'clues': [('infuriated', 'marked by extreme anger'),\n",
+ " ('furious', 'marked by extreme anger'),\n",
+ " ('enraged', 'marked by extreme anger'),\n",
+ " ('maddened', 'marked by extreme anger')]},\n",
+ " {'answer': 'angry',\n",
+ " 'hint': 'synonyms for angry',\n",
+ " 'clues': [('furious', '(of the elements) as if showing violent anger'),\n",
+ " ('tempestuous', '(of the elements) as if showing violent anger'),\n",
+ " ('wild', '(of the elements) as if showing violent anger'),\n",
+ " ('raging', '(of the elements) as if showing violent anger')]},\n",
+ " {'answer': 'annoyed',\n",
+ " 'hint': 'synonyms for annoyed',\n",
+ " 'clues': [('peeved', 'aroused to impatience or anger'),\n",
+ " ('pestered', 'troubled persistently especially with petty annoyances'),\n",
+ " ('riled', 'aroused to impatience or anger'),\n",
+ " ('steamed', 'aroused to impatience or anger'),\n",
+ " ('pissed off', 'aroused to impatience or anger'),\n",
+ " ('vexed', 'troubled persistently especially with petty annoyances'),\n",
+ " ('pissed', 'aroused to impatience or anger'),\n",
+ " ('miffed', 'aroused to impatience or anger'),\n",
+ " ('irritated', 'aroused to impatience or anger'),\n",
+ " ('nettled', 'aroused to impatience or anger'),\n",
+ " ('stung', 'aroused to impatience or anger'),\n",
+ " ('harried', 'troubled persistently especially with petty annoyances'),\n",
+ " ('harassed', 'troubled persistently especially with petty annoyances')]},\n",
+ " {'answer': 'annoying',\n",
+ " 'hint': 'synonyms for annoying',\n",
+ " 'clues': [('plaguy', 'causing irritation or annoyance'),\n",
+ " ('pestering', 'causing irritation or annoyance'),\n",
+ " ('vexing', 'causing irritation or annoyance'),\n",
+ " ('bothersome', 'causing irritation or annoyance'),\n",
+ " ('nettlesome', 'causing irritation or annoyance'),\n",
+ " ('pestiferous', 'causing irritation or annoyance'),\n",
+ " ('irritating', 'causing irritation or annoyance'),\n",
+ " ('galling', 'causing irritation or annoyance'),\n",
+ " ('vexatious', 'causing irritation or annoyance'),\n",
+ " ('teasing', 'causing irritation or annoyance'),\n",
+ " ('pesky', 'causing irritation or annoyance')]},\n",
+ " {'answer': 'annular',\n",
+ " 'hint': 'synonyms for annular',\n",
+ " 'clues': [('doughnut-shaped', 'shaped like a ring'),\n",
+ " ('annulated', 'shaped like a ring'),\n",
+ " ('ring-shaped', 'shaped like a ring'),\n",
+ " ('circinate', 'shaped like a ring'),\n",
+ " ('ringed', 'shaped like a ring')]},\n",
+ " {'answer': 'annulate',\n",
+ " 'hint': 'synonyms for annulate',\n",
+ " 'clues': [('doughnut-shaped', 'shaped like a ring'),\n",
+ " ('annulated', 'shaped like a ring'),\n",
+ " ('ring-shaped', 'shaped like a ring'),\n",
+ " ('annular', 'shaped like a ring'),\n",
+ " ('circinate', 'shaped like a ring'),\n",
+ " ('ringed', 'shaped like a ring')]},\n",
+ " {'answer': 'annulated',\n",
+ " 'hint': 'synonyms for annulated',\n",
+ " 'clues': [('doughnut-shaped', 'shaped like a ring'),\n",
+ " ('ring-shaped', 'shaped like a ring'),\n",
+ " ('annular', 'shaped like a ring'),\n",
+ " ('annulate', 'shaped like a ring'),\n",
+ " ('circinate', 'shaped like a ring'),\n",
+ " ('ringed', 'shaped like a ring')]},\n",
+ " {'answer': 'anserine',\n",
+ " 'hint': 'synonyms for anserine',\n",
+ " 'clues': [('goosy', 'having or revealing stupidity'),\n",
+ " ('foolish', 'having or revealing stupidity'),\n",
+ " ('dopy', 'having or revealing stupidity'),\n",
+ " ('gooselike', 'having or revealing stupidity'),\n",
+ " ('jerky', 'having or revealing stupidity')]},\n",
+ " {'answer': 'antipathetic',\n",
+ " 'hint': 'synonyms for antipathetic',\n",
+ " 'clues': [('averse', \"(usually followed by `to') strongly opposed\"),\n",
+ " ('loath', \"(usually followed by `to') strongly opposed\"),\n",
+ " ('antagonistic', 'characterized by antagonism or antipathy'),\n",
+ " ('antipathetical', 'characterized by antagonism or antipathy'),\n",
+ " ('indisposed', \"(usually followed by `to') strongly opposed\")]},\n",
+ " {'answer': 'antipathetical',\n",
+ " 'hint': 'synonyms for antipathetical',\n",
+ " 'clues': [('antipathetic', \"(usually followed by `to') strongly opposed\"),\n",
+ " ('averse', \"(usually followed by `to') strongly opposed\"),\n",
+ " ('loath', \"(usually followed by `to') strongly opposed\"),\n",
+ " ('antagonistic', 'characterized by antagonism or antipathy'),\n",
+ " ('indisposed', \"(usually followed by `to') strongly opposed\")]},\n",
+ " {'answer': 'antique',\n",
+ " 'hint': 'synonyms for antique',\n",
+ " 'clues': [('passe', 'out of fashion'),\n",
+ " ('demode', 'out of fashion'),\n",
+ " ('old-hat', 'out of fashion'),\n",
+ " ('old-fashioned', 'out of fashion'),\n",
+ " ('outmoded', 'out of fashion'),\n",
+ " ('ex', 'out of fashion'),\n",
+ " ('age-old', 'belonging to or lasting from times long ago')]},\n",
+ " {'answer': 'anxious',\n",
+ " 'hint': 'synonyms for anxious',\n",
+ " 'clues': [('dying', 'eagerly desirous'),\n",
+ " ('queasy', 'causing or fraught with or showing anxiety'),\n",
+ " ('uneasy', 'causing or fraught with or showing anxiety'),\n",
+ " ('nervous', 'causing or fraught with or showing anxiety'),\n",
+ " ('unquiet', 'causing or fraught with or showing anxiety')]},\n",
+ " {'answer': 'apomictic',\n",
+ " 'hint': 'synonyms for apomictic',\n",
+ " 'clues': [('parthenogenetic',\n",
+ " '(of reproduction) not involving the fusion of male and female gametes in reproduction'),\n",
+ " ('agamous',\n",
+ " '(of reproduction) not involving the fusion of male and female gametes in reproduction'),\n",
+ " ('agamic',\n",
+ " '(of reproduction) not involving the fusion of male and female gametes in reproduction'),\n",
+ " ('agamogenetic',\n",
+ " '(of reproduction) not involving the fusion of male and female gametes in reproduction'),\n",
+ " ('apomictical',\n",
+ " 'of or relating to a plant that reproduces by apomixis')]},\n",
+ " {'answer': 'appareled',\n",
+ " 'hint': 'synonyms for appareled',\n",
+ " 'clues': [('robed',\n",
+ " 'dressed or clothed especially in fine attire; often used in combination'),\n",
+ " ('attired',\n",
+ " 'dressed or clothed especially in fine attire; often used in combination'),\n",
+ " ('habilimented',\n",
+ " 'dressed or clothed especially in fine attire; often used in combination'),\n",
+ " ('garmented',\n",
+ " 'dressed or clothed especially in fine attire; often used in combination'),\n",
+ " ('garbed',\n",
+ " 'dressed or clothed especially in fine attire; often used in combination'),\n",
+ " ('dressed',\n",
+ " 'dressed or clothed especially in fine attire; often used in combination')]},\n",
+ " {'answer': 'apparent',\n",
+ " 'hint': 'synonyms for apparent',\n",
+ " 'clues': [('ostensible', 'appearing as such but not necessarily so'),\n",
+ " ('patent', 'clearly revealed to the mind or the senses or judgment'),\n",
+ " ('unmistakable',\n",
+ " 'clearly revealed to the mind or the senses or judgment'),\n",
+ " ('manifest', 'clearly revealed to the mind or the senses or judgment'),\n",
+ " ('evident', 'clearly revealed to the mind or the senses or judgment'),\n",
+ " ('seeming', 'appearing as such but not necessarily so'),\n",
+ " ('plain', 'clearly revealed to the mind or the senses or judgment')]},\n",
+ " {'answer': 'apparitional',\n",
+ " 'hint': 'synonyms for apparitional',\n",
+ " 'clues': [('spectral', 'resembling or characteristic of a phantom'),\n",
+ " ('ghostly', 'resembling or characteristic of a phantom'),\n",
+ " ('phantasmal', 'resembling or characteristic of a phantom'),\n",
+ " ('spiritual', 'resembling or characteristic of a phantom'),\n",
+ " ('ghostlike', 'resembling or characteristic of a phantom')]},\n",
+ " {'answer': 'appointed',\n",
+ " 'hint': 'synonyms for appointed',\n",
+ " 'clues': [('prescribed',\n",
+ " 'fixed or established especially by order or command; )'),\n",
+ " ('appointive', 'subject to appointment'),\n",
+ " ('decreed', 'fixed or established especially by order or command; )'),\n",
+ " ('ordained', 'fixed or established especially by order or command; )')]},\n",
+ " {'answer': 'apportioned',\n",
+ " 'hint': 'synonyms for apportioned',\n",
+ " 'clues': [('parceled out', 'given out in portions'),\n",
+ " ('doled out', 'given out in portions'),\n",
+ " ('meted out', 'given out in portions'),\n",
+ " ('dealt out', 'given out in portions')]},\n",
+ " {'answer': 'apprehensible',\n",
+ " 'hint': 'synonyms for apprehensible',\n",
+ " 'clues': [('intelligible', 'capable of being apprehended or understood'),\n",
+ " ('understandable', 'capable of being apprehended or understood'),\n",
+ " ('perceivable', 'capable of being apprehended or understood'),\n",
+ " ('graspable', 'capable of being apprehended or understood')]},\n",
+ " {'answer': 'approbative',\n",
+ " 'hint': 'synonyms for approbative',\n",
+ " 'clues': [('approbatory', 'expressing or manifesting praise or approval'),\n",
+ " ('approving', 'expressing or manifesting praise or approval'),\n",
+ " ('affirmative', 'expressing or manifesting praise or approval'),\n",
+ " ('plausive', 'expressing or manifesting praise or approval')]},\n",
+ " {'answer': 'approbatory',\n",
+ " 'hint': 'synonyms for approbatory',\n",
+ " 'clues': [('approving', 'expressing or manifesting praise or approval'),\n",
+ " ('approbative', 'expressing or manifesting praise or approval'),\n",
+ " ('affirmative', 'expressing or manifesting praise or approval'),\n",
+ " ('plausive', 'expressing or manifesting praise or approval')]},\n",
+ " {'answer': 'approving',\n",
+ " 'hint': 'synonyms for approving',\n",
+ " 'clues': [('approbatory', 'expressing or manifesting praise or approval'),\n",
+ " ('plausive', 'expressing or manifesting praise or approval'),\n",
+ " ('approbative', 'expressing or manifesting praise or approval'),\n",
+ " ('affirmative', 'expressing or manifesting praise or approval')]},\n",
+ " {'answer': 'approximate',\n",
+ " 'hint': 'synonyms for approximate',\n",
+ " 'clues': [('near', 'very close in resemblance'),\n",
+ " ('approximative', 'not quite exact or correct'),\n",
+ " ('close together', 'located close together'),\n",
+ " ('rough', 'not quite exact or correct')]},\n",
+ " {'answer': 'appurtenant',\n",
+ " 'hint': 'synonyms for appurtenant',\n",
+ " 'clues': [('auxiliary', 'furnishing added support'),\n",
+ " ('adjunct', 'furnishing added support'),\n",
+ " ('ancillary', 'furnishing added support'),\n",
+ " ('accessory', 'furnishing added support'),\n",
+ " ('adjuvant', 'furnishing added support')]},\n",
+ " {'answer': 'apt',\n",
+ " 'hint': 'synonyms for apt',\n",
+ " 'clues': [('clever', 'mentally quick and resourceful; ; -Bram Stoker'),\n",
+ " ('disposed', \"(usually followed by `to') naturally disposed toward\"),\n",
+ " ('given', \"(usually followed by `to') naturally disposed toward\"),\n",
+ " ('pertinent', 'being of striking appropriateness and pertinence'),\n",
+ " ('tending', \"(usually followed by `to') naturally disposed toward\"),\n",
+ " ('apposite', 'being of striking appropriateness and pertinence'),\n",
+ " ('minded', \"(usually followed by `to') naturally disposed toward\"),\n",
+ " ('liable',\n",
+ " 'at risk of or subject to experiencing something usually unpleasant')]},\n",
+ " {'answer': 'arboreal',\n",
+ " 'hint': 'synonyms for arboreal',\n",
+ " 'clues': [('dendroidal',\n",
+ " 'resembling a tree in form and branching structure'),\n",
+ " ('arboriform', 'resembling a tree in form and branching structure'),\n",
+ " ('dendriform', 'resembling a tree in form and branching structure'),\n",
+ " ('arboreous', 'inhabiting or frequenting trees'),\n",
+ " ('arborical', 'of or relating to or formed by trees'),\n",
+ " ('arborescent', 'resembling a tree in form and branching structure'),\n",
+ " ('treelike', 'resembling a tree in form and branching structure'),\n",
+ " ('tree-shaped', 'resembling a tree in form and branching structure'),\n",
+ " ('arborary', 'of or relating to or formed by trees'),\n",
+ " ('tree-living', 'inhabiting or frequenting trees'),\n",
+ " ('arboresque', 'resembling a tree in form and branching structure')]},\n",
+ " {'answer': 'arboreous',\n",
+ " 'hint': 'synonyms for arboreous',\n",
+ " 'clues': [('dendroidal',\n",
+ " 'resembling a tree in form and branching structure'),\n",
+ " ('arboriform', 'resembling a tree in form and branching structure'),\n",
+ " ('arboreal', 'resembling a tree in form and branching structure'),\n",
+ " ('dendriform', 'resembling a tree in form and branching structure'),\n",
+ " ('arborescent', 'resembling a tree in form and branching structure'),\n",
+ " ('arboraceous', 'abounding in trees'),\n",
+ " ('treelike', 'resembling a tree in form and branching structure'),\n",
+ " ('tree-shaped', 'resembling a tree in form and branching structure'),\n",
+ " ('tree-living', 'inhabiting or frequenting trees'),\n",
+ " ('arboresque', 'resembling a tree in form and branching structure'),\n",
+ " ('woody', 'abounding in trees')]},\n",
+ " {'answer': 'arborescent',\n",
+ " 'hint': 'synonyms for arborescent',\n",
+ " 'clues': [('dendroidal',\n",
+ " 'resembling a tree in form and branching structure'),\n",
+ " ('arboriform', 'resembling a tree in form and branching structure'),\n",
+ " ('arboreal', 'resembling a tree in form and branching structure'),\n",
+ " ('dendriform', 'resembling a tree in form and branching structure'),\n",
+ " ('treelike', 'resembling a tree in form and branching structure'),\n",
+ " ('arboreous', 'resembling a tree in form and branching structure'),\n",
+ " ('tree-shaped', 'resembling a tree in form and branching structure'),\n",
+ " ('arboresque', 'resembling a tree in form and branching structure')]},\n",
+ " {'answer': 'arboresque',\n",
+ " 'hint': 'synonyms for arboresque',\n",
+ " 'clues': [('dendroidal',\n",
+ " 'resembling a tree in form and branching structure'),\n",
+ " ('arboriform', 'resembling a tree in form and branching structure'),\n",
+ " ('arboreal', 'resembling a tree in form and branching structure'),\n",
+ " ('dendriform', 'resembling a tree in form and branching structure'),\n",
+ " ('arborescent', 'resembling a tree in form and branching structure'),\n",
+ " ('treelike', 'resembling a tree in form and branching structure'),\n",
+ " ('arboreous', 'resembling a tree in form and branching structure'),\n",
+ " ('tree-shaped', 'resembling a tree in form and branching structure')]},\n",
+ " {'answer': 'arboriform',\n",
+ " 'hint': 'synonyms for arboriform',\n",
+ " 'clues': [('dendroidal',\n",
+ " 'resembling a tree in form and branching structure'),\n",
+ " ('dendriform', 'resembling a tree in form and branching structure'),\n",
+ " ('arboreal', 'resembling a tree in form and branching structure'),\n",
+ " ('arborescent', 'resembling a tree in form and branching structure'),\n",
+ " ('treelike', 'resembling a tree in form and branching structure'),\n",
+ " ('arboreous', 'resembling a tree in form and branching structure'),\n",
+ " ('tree-shaped', 'resembling a tree in form and branching structure'),\n",
+ " ('arboresque', 'resembling a tree in form and branching structure')]},\n",
+ " {'answer': 'arced',\n",
+ " 'hint': 'synonyms for arced',\n",
+ " 'clues': [('arcuate', 'forming or resembling an arch'),\n",
+ " ('arciform', 'forming or resembling an arch'),\n",
+ " ('arched', 'forming or resembling an arch'),\n",
+ " ('bowed', 'forming or resembling an arch'),\n",
+ " ('arching', 'forming or resembling an arch')]},\n",
+ " {'answer': 'arch',\n",
+ " 'hint': 'synonyms for arch',\n",
+ " 'clues': [('condescending',\n",
+ " '(used of behavior or attitude) characteristic of those who treat others with condescension'),\n",
+ " ('impish', 'naughtily or annoyingly playful'),\n",
+ " ('patronising',\n",
+ " '(used of behavior or attitude) characteristic of those who treat others with condescension'),\n",
+ " ('prankish', 'naughtily or annoyingly playful'),\n",
+ " ('wicked', 'naughtily or annoyingly playful'),\n",
+ " ('mischievous', 'naughtily or annoyingly playful'),\n",
+ " ('implike', 'naughtily or annoyingly playful'),\n",
+ " ('puckish', 'naughtily or annoyingly playful'),\n",
+ " ('pixilated', 'naughtily or annoyingly playful')]},\n",
+ " {'answer': 'arched',\n",
+ " 'hint': 'synonyms for arched',\n",
+ " 'clues': [('arcuate', 'forming or resembling an arch'),\n",
+ " ('arced', 'forming or resembling an arch'),\n",
+ " ('arciform', 'forming or resembling an arch'),\n",
+ " ('bowed', 'forming or resembling an arch'),\n",
+ " ('arching', 'forming or resembling an arch')]},\n",
+ " {'answer': 'arching',\n",
+ " 'hint': 'synonyms for arching',\n",
+ " 'clues': [('arcuate', 'forming or resembling an arch'),\n",
+ " ('arced', 'forming or resembling an arch'),\n",
+ " ('arciform', 'forming or resembling an arch'),\n",
+ " ('bowed', 'forming or resembling an arch')]},\n",
+ " {'answer': 'arciform',\n",
+ " 'hint': 'synonyms for arciform',\n",
+ " 'clues': [('arcuate', 'forming or resembling an arch'),\n",
+ " ('arced', 'forming or resembling an arch'),\n",
+ " ('bowed', 'forming or resembling an arch'),\n",
+ " ('arching', 'forming or resembling an arch')]},\n",
+ " {'answer': 'arctic',\n",
+ " 'hint': 'synonyms for arctic',\n",
+ " 'clues': [('frigid', 'extremely cold'),\n",
+ " ('polar', 'extremely cold'),\n",
+ " ('north-polar', 'of or relating to the Arctic'),\n",
+ " ('icy', 'extremely cold'),\n",
+ " ('glacial', 'extremely cold'),\n",
+ " ('gelid', 'extremely cold')]},\n",
+ " {'answer': 'arcuate',\n",
+ " 'hint': 'synonyms for arcuate',\n",
+ " 'clues': [('arced', 'forming or resembling an arch'),\n",
+ " ('arciform', 'forming or resembling an arch'),\n",
+ " ('bowed', 'forming or resembling an arch'),\n",
+ " ('arching', 'forming or resembling an arch')]},\n",
+ " {'answer': 'ardent',\n",
+ " 'hint': 'synonyms for ardent',\n",
+ " 'clues': [('fervid', 'characterized by intense emotion'),\n",
+ " ('fervent', 'characterized by intense emotion'),\n",
+ " ('perfervid', 'characterized by intense emotion'),\n",
+ " ('warm', 'characterized by strong enthusiasm'),\n",
+ " ('torrid', 'characterized by intense emotion'),\n",
+ " ('fiery', 'characterized by intense emotion'),\n",
+ " ('impassioned', 'characterized by intense emotion')]},\n",
+ " {'answer': 'arduous',\n",
+ " 'hint': 'synonyms for arduous',\n",
+ " 'clues': [('operose',\n",
+ " 'characterized by effort to the point of exhaustion; especially physical effort'),\n",
+ " ('heavy',\n",
+ " 'characterized by effort to the point of exhaustion; especially physical effort'),\n",
+ " ('gruelling',\n",
+ " 'characterized by effort to the point of exhaustion; especially physical effort'),\n",
+ " ('laborious',\n",
+ " 'characterized by effort to the point of exhaustion; especially physical effort'),\n",
+ " ('strenuous',\n",
+ " 'taxing to the utmost; testing powers of endurance; ; ; - F.D.Roosevelt'),\n",
+ " ('toilsome',\n",
+ " 'characterized by effort to the point of exhaustion; especially physical effort'),\n",
+ " ('straining',\n",
+ " 'taxing to the utmost; testing powers of endurance; ; ; - F.D.Roosevelt'),\n",
+ " ('punishing',\n",
+ " 'characterized by effort to the point of exhaustion; especially physical effort'),\n",
+ " ('hard',\n",
+ " 'characterized by effort to the point of exhaustion; especially physical effort'),\n",
+ " ('backbreaking',\n",
+ " 'characterized by effort to the point of exhaustion; especially physical effort')]},\n",
+ " {'answer': 'argus-eyed',\n",
+ " 'hint': 'synonyms for argus-eyed',\n",
+ " 'clues': [('keen-sighted', 'having very keen vision'),\n",
+ " ('wakeful',\n",
+ " 'carefully observant or attentive; on the lookout for possible danger'),\n",
+ " ('lynx-eyed', 'having very keen vision'),\n",
+ " ('sharp-sighted', 'having very keen vision'),\n",
+ " ('hawk-eyed', 'having very keen vision'),\n",
+ " ('quick-sighted', 'having very keen vision'),\n",
+ " ('open-eyed',\n",
+ " 'carefully observant or attentive; on the lookout for possible danger'),\n",
+ " ('vigilant',\n",
+ " 'carefully observant or attentive; on the lookout for possible danger'),\n",
+ " ('sharp-eyed', 'having very keen vision')]},\n",
+ " {'answer': 'aristocratic',\n",
+ " 'hint': 'synonyms for aristocratic',\n",
+ " 'clues': [('patrician',\n",
+ " 'belonging to or characteristic of the nobility or aristocracy'),\n",
+ " ('aristocratical',\n",
+ " 'belonging to or characteristic of the nobility or aristocracy'),\n",
+ " ('blue', 'belonging to or characteristic of the nobility or aristocracy'),\n",
+ " ('gentle',\n",
+ " 'belonging to or characteristic of the nobility or aristocracy'),\n",
+ " ('blue-blooded',\n",
+ " 'belonging to or characteristic of the nobility or aristocracy')]},\n",
+ " {'answer': 'aristocratical',\n",
+ " 'hint': 'synonyms for aristocratical',\n",
+ " 'clues': [('patrician',\n",
+ " 'belonging to or characteristic of the nobility or aristocracy'),\n",
+ " ('blue', 'belonging to or characteristic of the nobility or aristocracy'),\n",
+ " ('gentle',\n",
+ " 'belonging to or characteristic of the nobility or aristocracy'),\n",
+ " ('aristocratic',\n",
+ " 'belonging to or characteristic of the nobility or aristocracy'),\n",
+ " ('blue-blooded',\n",
+ " 'belonging to or characteristic of the nobility or aristocracy')]},\n",
+ " {'answer': 'around_the_bend',\n",
+ " 'hint': 'synonyms for around the bend',\n",
+ " 'clues': [('crackers', 'informal or slang terms for mentally irregular'),\n",
+ " ('nuts', 'informal or slang terms for mentally irregular'),\n",
+ " ('loony', 'informal or slang terms for mentally irregular'),\n",
+ " ('dotty', 'informal or slang terms for mentally irregular'),\n",
+ " ('batty', 'informal or slang terms for mentally irregular'),\n",
+ " ('cracked', 'informal or slang terms for mentally irregular'),\n",
+ " ('balmy', 'informal or slang terms for mentally irregular'),\n",
+ " ('bats', 'informal or slang terms for mentally irregular'),\n",
+ " ('barmy', 'informal or slang terms for mentally irregular'),\n",
+ " ('wacky', 'informal or slang terms for mentally irregular'),\n",
+ " ('daft', 'informal or slang terms for mentally irregular'),\n",
+ " ('loco', 'informal or slang terms for mentally irregular'),\n",
+ " ('bonkers', 'informal or slang terms for mentally irregular'),\n",
+ " ('nutty', 'informal or slang terms for mentally irregular'),\n",
+ " ('haywire', 'informal or slang terms for mentally irregular'),\n",
+ " ('buggy', 'informal or slang terms for mentally irregular'),\n",
+ " ('kookie', 'informal or slang terms for mentally irregular'),\n",
+ " ('fruity', 'informal or slang terms for mentally irregular'),\n",
+ " ('round the bend', 'informal or slang terms for mentally irregular'),\n",
+ " ('kooky', 'informal or slang terms for mentally irregular'),\n",
+ " ('loopy', 'informal or slang terms for mentally irregular')]},\n",
+ " {'answer': 'aroused',\n",
+ " 'hint': 'synonyms for aroused',\n",
+ " 'clues': [('stimulated', 'emotionally aroused'),\n",
+ " ('ruttish', 'feeling great sexual desire'),\n",
+ " ('randy', 'feeling great sexual desire'),\n",
+ " ('wound up', 'brought to a state of great tension'),\n",
+ " ('stirred', 'emotionally aroused'),\n",
+ " ('excited', '(of persons) excessively affected by emotion'),\n",
+ " ('steamy', 'feeling great sexual desire'),\n",
+ " ('turned on', 'feeling great sexual desire'),\n",
+ " ('horny', 'feeling great sexual desire'),\n",
+ " ('ablaze',\n",
+ " 'keenly excited (especially sexually) or indicating excitement; - Bram Stoker'),\n",
+ " ('worked up', '(of persons) excessively affected by emotion'),\n",
+ " ('stirred up', 'emotionally aroused'),\n",
+ " ('emotional', '(of persons) excessively affected by emotion'),\n",
+ " ('aflame',\n",
+ " 'keenly excited (especially sexually) or indicating excitement; - Bram Stoker')]},\n",
+ " {'answer': 'arrant',\n",
+ " 'hint': 'synonyms for arrant',\n",
+ " 'clues': [('sodding',\n",
+ " 'without qualification; used informally as (often pejorative) intensifiers'),\n",
+ " ('pure',\n",
+ " 'without qualification; used informally as (often pejorative) intensifiers'),\n",
+ " ('stark',\n",
+ " 'without qualification; used informally as (often pejorative) intensifiers'),\n",
+ " ('utter',\n",
+ " 'without qualification; used informally as (often pejorative) intensifiers'),\n",
+ " ('consummate',\n",
+ " 'without qualification; used informally as (often pejorative) intensifiers'),\n",
+ " ('complete',\n",
+ " 'without qualification; used informally as (often pejorative) intensifiers'),\n",
+ " ('perfect',\n",
+ " 'without qualification; used informally as (often pejorative) intensifiers'),\n",
+ " ('everlasting',\n",
+ " 'without qualification; used informally as (often pejorative) intensifiers'),\n",
+ " ('staring',\n",
+ " 'without qualification; used informally as (often pejorative) intensifiers'),\n",
+ " ('thoroughgoing',\n",
+ " 'without qualification; used informally as (often pejorative) intensifiers'),\n",
+ " ('gross',\n",
+ " 'without qualification; used informally as (often pejorative) intensifiers'),\n",
+ " ('double-dyed',\n",
+ " 'without qualification; used informally as (often pejorative) intensifiers'),\n",
+ " ('unadulterated',\n",
+ " 'without qualification; used informally as (often pejorative) intensifiers')]},\n",
+ " {'answer': 'arthritic',\n",
+ " 'hint': 'synonyms for arthritic',\n",
+ " 'clues': [('creaky', 'of or pertaining to arthritis'),\n",
+ " ('rheumy', 'of or pertaining to arthritis'),\n",
+ " ('rheumatic', 'of or pertaining to arthritis'),\n",
+ " ('rheumatoid', 'of or pertaining to arthritis')]},\n",
+ " {'answer': 'artificial',\n",
+ " 'hint': 'synonyms for artificial',\n",
+ " 'clues': [('hokey', 'artificially formal'),\n",
+ " ('stilted', 'artificially formal'),\n",
+ " ('contrived', 'artificially formal'),\n",
+ " ('unreal', 'contrived by art rather than nature')]},\n",
+ " {'answer': 'ashen',\n",
+ " 'hint': 'synonyms for ashen',\n",
+ " 'clues': [('white',\n",
+ " 'anemic looking from illness or emotion; ; ; ; ; - Mary W. Shelley'),\n",
+ " ('bloodless',\n",
+ " 'anemic looking from illness or emotion; ; ; ; ; - Mary W. Shelley'),\n",
+ " ('livid',\n",
+ " 'anemic looking from illness or emotion; ; ; ; ; - Mary W. Shelley'),\n",
+ " ('blanched',\n",
+ " 'anemic looking from illness or emotion; ; ; ; ; - Mary W. Shelley')]},\n",
+ " {'answer': 'asinine',\n",
+ " 'hint': 'synonyms for asinine',\n",
+ " 'clues': [('fatuous', 'devoid of intelligence'),\n",
+ " ('mindless', 'devoid of intelligence'),\n",
+ " ('inane', 'devoid of intelligence'),\n",
+ " ('vacuous', 'devoid of intelligence')]},\n",
+ " {'answer': 'askance',\n",
+ " 'hint': 'synonyms for askance',\n",
+ " 'clues': [('squinty',\n",
+ " '(used especially of glances) directed to one side with or as if with doubt or suspicion or envy; - Elizabeth Bowen'),\n",
+ " ('askant',\n",
+ " '(used especially of glances) directed to one side with or as if with doubt or suspicion or envy; - Elizabeth Bowen'),\n",
+ " ('squint-eyed',\n",
+ " '(used especially of glances) directed to one side with or as if with doubt or suspicion or envy; - Elizabeth Bowen'),\n",
+ " ('sidelong',\n",
+ " '(used especially of glances) directed to one side with or as if with doubt or suspicion or envy; - Elizabeth Bowen')]},\n",
+ " {'answer': 'askant',\n",
+ " 'hint': 'synonyms for askant',\n",
+ " 'clues': [('squinty',\n",
+ " '(used especially of glances) directed to one side with or as if with doubt or suspicion or envy; - Elizabeth Bowen'),\n",
+ " ('squint-eyed',\n",
+ " '(used especially of glances) directed to one side with or as if with doubt or suspicion or envy; - Elizabeth Bowen'),\n",
+ " ('sidelong',\n",
+ " '(used especially of glances) directed to one side with or as if with doubt or suspicion or envy; - Elizabeth Bowen'),\n",
+ " ('askance',\n",
+ " '(used especially of glances) directed to one side with or as if with doubt or suspicion or envy; - Elizabeth Bowen')]},\n",
+ " {'answer': 'askew',\n",
+ " 'hint': 'synonyms for askew',\n",
+ " 'clues': [('wonky', 'turned or twisted toward one side; - G.K.Chesterton'),\n",
+ " ('awry', 'turned or twisted toward one side; - G.K.Chesterton'),\n",
+ " ('lopsided', 'turned or twisted toward one side; - G.K.Chesterton'),\n",
+ " ('cockeyed', 'turned or twisted toward one side; - G.K.Chesterton'),\n",
+ " ('skew-whiff', 'turned or twisted toward one side; - G.K.Chesterton')]},\n",
+ " {'answer': 'aslant',\n",
+ " 'hint': 'synonyms for aslant',\n",
+ " 'clues': [('aslope', 'having an oblique or slanted direction'),\n",
+ " ('sloped', 'having an oblique or slanted direction'),\n",
+ " ('slanted', 'having an oblique or slanted direction'),\n",
+ " ('diagonal', 'having an oblique or slanted direction'),\n",
+ " ('slanting', 'having an oblique or slanted direction'),\n",
+ " ('sloping', 'having an oblique or slanted direction')]},\n",
+ " {'answer': 'asleep',\n",
+ " 'hint': 'synonyms for asleep',\n",
+ " 'clues': [('deceased', 'dead'),\n",
+ " ('gone', 'dead'),\n",
+ " ('at peace', 'dead'),\n",
+ " ('benumbed', 'lacking sensation'),\n",
+ " ('numb', 'lacking sensation'),\n",
+ " ('at rest', 'dead'),\n",
+ " ('departed', 'dead')]},\n",
+ " {'answer': 'aslope',\n",
+ " 'hint': 'synonyms for aslope',\n",
+ " 'clues': [('sloped', 'having an oblique or slanted direction'),\n",
+ " ('slanted', 'having an oblique or slanted direction'),\n",
+ " ('diagonal', 'having an oblique or slanted direction'),\n",
+ " ('slanting', 'having an oblique or slanted direction'),\n",
+ " ('aslant', 'having an oblique or slanted direction'),\n",
+ " ('sloping', 'having an oblique or slanted direction')]},\n",
+ " {'answer': 'asquint',\n",
+ " 'hint': 'synonyms for asquint',\n",
+ " 'clues': [('squinty',\n",
+ " '(used especially of glances) directed to one side with or as if with doubt or suspicion or envy; - Elizabeth Bowen'),\n",
+ " ('askant',\n",
+ " '(used especially of glances) directed to one side with or as if with doubt or suspicion or envy; - Elizabeth Bowen'),\n",
+ " ('squint-eyed',\n",
+ " '(used especially of glances) directed to one side with or as if with doubt or suspicion or envy; - Elizabeth Bowen'),\n",
+ " ('sidelong',\n",
+ " '(used especially of glances) directed to one side with or as if with doubt or suspicion or envy; - Elizabeth Bowen'),\n",
+ " ('askance',\n",
+ " '(used especially of glances) directed to one side with or as if with doubt or suspicion or envy; - Elizabeth Bowen')]},\n",
+ " {'answer': 'assorted',\n",
+ " 'hint': 'synonyms for assorted',\n",
+ " 'clues': [('motley',\n",
+ " 'consisting of a haphazard assortment of different kinds; ; ; ; ; ; - I.A.Richards'),\n",
+ " ('various',\n",
+ " 'of many different kinds purposefully arranged but lacking any uniformity'),\n",
+ " ('sundry',\n",
+ " 'consisting of a haphazard assortment of different kinds; ; ; ; ; ; - I.A.Richards'),\n",
+ " ('miscellaneous',\n",
+ " 'consisting of a haphazard assortment of different kinds; ; ; ; ; ; - I.A.Richards'),\n",
+ " ('mixed',\n",
+ " 'consisting of a haphazard assortment of different kinds; ; ; ; ; ; - I.A.Richards')]},\n",
+ " {'answer': 'assumed',\n",
+ " 'hint': 'synonyms for assumed',\n",
+ " 'clues': [('fictitious', 'adopted in order to deceive'),\n",
+ " ('sham', 'adopted in order to deceive'),\n",
+ " ('false', 'adopted in order to deceive'),\n",
+ " ('pretended', 'adopted in order to deceive'),\n",
+ " ('fictive', 'adopted in order to deceive'),\n",
+ " ('put on', 'adopted in order to deceive')]},\n",
+ " {'answer': 'astonied',\n",
+ " 'hint': 'synonyms for astonied',\n",
+ " 'clues': [('amazed',\n",
+ " 'filled with the emotional impact of overwhelming surprise or shock'),\n",
+ " ('astounded',\n",
+ " 'filled with the emotional impact of overwhelming surprise or shock'),\n",
+ " ('astonished',\n",
+ " 'filled with the emotional impact of overwhelming surprise or shock'),\n",
+ " ('stunned',\n",
+ " 'filled with the emotional impact of overwhelming surprise or shock')]},\n",
+ " {'answer': 'astonished',\n",
+ " 'hint': 'synonyms for astonished',\n",
+ " 'clues': [('amazed',\n",
+ " 'filled with the emotional impact of overwhelming surprise or shock'),\n",
+ " ('astounded',\n",
+ " 'filled with the emotional impact of overwhelming surprise or shock'),\n",
+ " ('astonied',\n",
+ " 'filled with the emotional impact of overwhelming surprise or shock'),\n",
+ " ('stunned',\n",
+ " 'filled with the emotional impact of overwhelming surprise or shock')]},\n",
+ " {'answer': 'astonishing',\n",
+ " 'hint': 'synonyms for astonishing',\n",
+ " 'clues': [('staggering',\n",
+ " 'so surprisingly impressive as to stun or overwhelm'),\n",
+ " ('amazing', 'surprising greatly'),\n",
+ " ('stupefying', 'so surprisingly impressive as to stun or overwhelm'),\n",
+ " ('astounding', 'so surprisingly impressive as to stun or overwhelm')]},\n",
+ " {'answer': 'astounding',\n",
+ " 'hint': 'synonyms for astounding',\n",
+ " 'clues': [('staggering',\n",
+ " 'so surprisingly impressive as to stun or overwhelm'),\n",
+ " ('dumbfounding', 'bewildering or striking dumb with wonder'),\n",
+ " ('astonishing', 'so surprisingly impressive as to stun or overwhelm'),\n",
+ " ('stupefying', 'so surprisingly impressive as to stun or overwhelm')]},\n",
+ " {'answer': 'at_hand',\n",
+ " 'hint': 'synonyms for at hand',\n",
+ " 'clues': [('close at hand', 'close in time; about to occur'),\n",
+ " ('imminent', 'close in time; about to occur'),\n",
+ " ('impending', 'close in time; about to occur'),\n",
+ " ('impendent', 'close in time; about to occur')]},\n",
+ " {'answer': 'at_peace',\n",
+ " 'hint': 'synonyms for at peace',\n",
+ " 'clues': [('departed', 'dead'),\n",
+ " ('deceased', 'dead'),\n",
+ " ('gone', 'dead'),\n",
+ " ('at rest', 'dead'),\n",
+ " ('asleep', 'dead')]},\n",
+ " {'answer': 'at_rest',\n",
+ " 'hint': 'synonyms for at rest',\n",
+ " 'clues': [('departed', 'dead'),\n",
+ " ('deceased', 'dead'),\n",
+ " ('gone', 'dead'),\n",
+ " ('at peace', 'dead'),\n",
+ " ('asleep', 'dead')]},\n",
+ " {'answer': 'at_sea',\n",
+ " 'hint': 'synonyms for at sea',\n",
+ " 'clues': [('bewildered',\n",
+ " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n",
+ " ('mixed-up',\n",
+ " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n",
+ " ('mazed',\n",
+ " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n",
+ " ('baffled',\n",
+ " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n",
+ " ('lost',\n",
+ " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n",
+ " ('bemused',\n",
+ " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n",
+ " ('confounded',\n",
+ " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n",
+ " ('confused',\n",
+ " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n",
+ " ('befuddled',\n",
+ " 'perplexed by many conflicting situations or statements; filled with bewilderment')]},\n",
+ " {'answer': 'atilt',\n",
+ " 'hint': 'synonyms for atilt',\n",
+ " 'clues': [('leaning',\n",
+ " 'departing or being caused to depart from the true vertical or horizontal'),\n",
+ " ('canted',\n",
+ " 'departing or being caused to depart from the true vertical or horizontal'),\n",
+ " ('tipped',\n",
+ " 'departing or being caused to depart from the true vertical or horizontal'),\n",
+ " ('tilted',\n",
+ " 'departing or being caused to depart from the true vertical or horizontal')]},\n",
+ " {'answer': 'atrocious',\n",
+ " 'hint': 'synonyms for atrocious',\n",
+ " 'clues': [('painful', 'exceptionally bad or displeasing'),\n",
+ " ('frightful', 'provoking horror; ; ; ; - Winston Churchill'),\n",
+ " ('dreadful', 'exceptionally bad or displeasing'),\n",
+ " ('ugly', 'provoking horror; ; ; ; - Winston Churchill'),\n",
+ " ('unspeakable', 'exceptionally bad or displeasing'),\n",
+ " ('horrifying', 'provoking horror; ; ; ; - Winston Churchill'),\n",
+ " ('awful', 'exceptionally bad or displeasing'),\n",
+ " ('monstrous', 'shockingly brutal or cruel'),\n",
+ " ('horrible', 'provoking horror; ; ; ; - Winston Churchill'),\n",
+ " ('terrible', 'exceptionally bad or displeasing'),\n",
+ " ('abominable', 'exceptionally bad or displeasing'),\n",
+ " ('grievous', 'shockingly brutal or cruel'),\n",
+ " ('flagitious', 'shockingly brutal or cruel')]},\n",
+ " {'answer': 'attendant',\n",
+ " 'hint': 'synonyms for attendant',\n",
+ " 'clues': [('resultant', 'following or accompanying as a consequence'),\n",
+ " ('sequent', 'following or accompanying as a consequence'),\n",
+ " ('consequent', 'following or accompanying as a consequence'),\n",
+ " ('concomitant', 'following or accompanying as a consequence'),\n",
+ " ('incidental', 'following or accompanying as a consequence'),\n",
+ " ('ensuant', 'following or accompanying as a consequence'),\n",
+ " ('accompanying', 'following or accompanying as a consequence')]},\n",
+ " {'answer': 'attired',\n",
+ " 'hint': 'synonyms for attired',\n",
+ " 'clues': [('robed',\n",
+ " 'dressed or clothed especially in fine attire; often used in combination'),\n",
+ " ('appareled',\n",
+ " 'dressed or clothed especially in fine attire; often used in combination'),\n",
+ " ('habilimented',\n",
+ " 'dressed or clothed especially in fine attire; often used in combination'),\n",
+ " ('garmented',\n",
+ " 'dressed or clothed especially in fine attire; often used in combination'),\n",
+ " ('garbed',\n",
+ " 'dressed or clothed especially in fine attire; often used in combination'),\n",
+ " ('dressed',\n",
+ " 'dressed or clothed especially in fine attire; often used in combination')]},\n",
+ " {'answer': 'audacious',\n",
+ " 'hint': 'synonyms for audacious',\n",
+ " 'clues': [('brave', 'invulnerable to fear or intimidation'),\n",
+ " ('brazen',\n",
+ " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n",
+ " ('insolent',\n",
+ " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n",
+ " ('hardy', 'invulnerable to fear or intimidation'),\n",
+ " ('fearless', 'invulnerable to fear or intimidation'),\n",
+ " ('venturous', 'disposed to venture or take risks'),\n",
+ " ('daring', 'disposed to venture or take risks'),\n",
+ " ('brassy',\n",
+ " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n",
+ " ('bodacious',\n",
+ " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n",
+ " ('barefaced',\n",
+ " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n",
+ " ('brazen-faced',\n",
+ " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n",
+ " ('venturesome', 'disposed to venture or take risks'),\n",
+ " ('dauntless', 'invulnerable to fear or intimidation'),\n",
+ " ('bald-faced',\n",
+ " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n",
+ " ('unfearing', 'invulnerable to fear or intimidation'),\n",
+ " ('intrepid', 'invulnerable to fear or intimidation')]},\n",
+ " {'answer': 'august',\n",
+ " 'hint': 'synonyms for august',\n",
+ " 'clues': [('grand', 'of or befitting a lord'),\n",
+ " ('revered', 'profoundly honored'),\n",
+ " ('lordly', 'of or befitting a lord'),\n",
+ " ('venerable', 'profoundly honored')]},\n",
+ " {'answer': 'aureate',\n",
+ " 'hint': 'synonyms for aureate',\n",
+ " 'clues': [('gilded', 'having the deep slightly brownish color of gold'),\n",
+ " ('flamboyant', 'elaborately or excessively ornamented'),\n",
+ " ('florid', 'elaborately or excessively ornamented'),\n",
+ " ('gold', 'having the deep slightly brownish color of gold'),\n",
+ " ('golden', 'having the deep slightly brownish color of gold'),\n",
+ " ('gilt', 'having the deep slightly brownish color of gold')]},\n",
+ " {'answer': 'austere',\n",
+ " 'hint': 'synonyms for austere',\n",
+ " 'clues': [('severe', 'severely simple'),\n",
+ " ('stern', 'severely simple'),\n",
+ " ('ascetical', 'practicing great self-denial; - William James'),\n",
+ " ('stark', 'severely simple'),\n",
+ " ('spartan', 'practicing great self-denial; - William James')]},\n",
+ " {'answer': 'authentic',\n",
+ " 'hint': 'synonyms for authentic',\n",
+ " 'clues': [('bona fide', 'not counterfeit or copied'),\n",
+ " ('veritable', 'not counterfeit or copied'),\n",
+ " ('unquestionable', 'not counterfeit or copied'),\n",
+ " ('reliable', 'conforming to fact and therefore worthy of belief')]},\n",
+ " {'answer': 'authoritarian',\n",
+ " 'hint': 'synonyms for authoritarian',\n",
+ " 'clues': [('tyrannical',\n",
+ " 'characteristic of an absolute ruler or absolute rule; having absolute sovereignty'),\n",
+ " ('dictatorial', 'expecting unquestioning obedience'),\n",
+ " ('despotic',\n",
+ " 'characteristic of an absolute ruler or absolute rule; having absolute sovereignty'),\n",
+ " ('autocratic',\n",
+ " 'characteristic of an absolute ruler or absolute rule; having absolute sovereignty'),\n",
+ " ('overbearing', 'expecting unquestioning obedience')]},\n",
+ " {'answer': 'authoritative',\n",
+ " 'hint': 'synonyms for authoritative',\n",
+ " 'clues': [('definitive', 'of recognized authority or excellence'),\n",
+ " ('classic', 'of recognized authority or excellence'),\n",
+ " ('important', 'having authority or ascendancy or influence'),\n",
+ " ('authorized', 'sanctioned by established authority')]},\n",
+ " {'answer': 'autochthonal',\n",
+ " 'hint': 'synonyms for autochthonal',\n",
+ " 'clues': [('indigenous', 'originating where it is found'),\n",
+ " ('endemic', 'originating where it is found'),\n",
+ " ('autochthonous', 'originating where it is found'),\n",
+ " ('autochthonic', 'originating where it is found')]},\n",
+ " {'answer': 'autochthonic',\n",
+ " 'hint': 'synonyms for autochthonic',\n",
+ " 'clues': [('indigenous', 'originating where it is found'),\n",
+ " ('endemic', 'originating where it is found'),\n",
+ " ('autochthonous', 'originating where it is found'),\n",
+ " ('autochthonal', 'originating where it is found')]},\n",
+ " {'answer': 'autochthonous',\n",
+ " 'hint': 'synonyms for autochthonous',\n",
+ " 'clues': [('indigenous', 'originating where it is found'),\n",
+ " ('endemic', 'originating where it is found'),\n",
+ " ('autochthonic', 'originating where it is found'),\n",
+ " ('autochthonal', 'originating where it is found')]},\n",
+ " {'answer': 'autocratic',\n",
+ " 'hint': 'synonyms for autocratic',\n",
+ " 'clues': [('despotic',\n",
+ " 'characteristic of an absolute ruler or absolute rule; having absolute sovereignty'),\n",
+ " ('dictatorial',\n",
+ " 'characteristic of an absolute ruler or absolute rule; having absolute sovereignty'),\n",
+ " ('dominating',\n",
+ " 'offensively self-assured or given to exercising usually unwarranted power'),\n",
+ " ('authoritarian',\n",
+ " 'characteristic of an absolute ruler or absolute rule; having absolute sovereignty'),\n",
+ " ('bossy',\n",
+ " 'offensively self-assured or given to exercising usually unwarranted power'),\n",
+ " ('tyrannical',\n",
+ " 'characteristic of an absolute ruler or absolute rule; having absolute sovereignty'),\n",
+ " ('high-and-mighty',\n",
+ " 'offensively self-assured or given to exercising usually unwarranted power'),\n",
+ " ('magisterial',\n",
+ " 'offensively self-assured or given to exercising usually unwarranted power'),\n",
+ " ('peremptory',\n",
+ " 'offensively self-assured or given to exercising usually unwarranted power')]},\n",
+ " {'answer': 'automatic',\n",
+ " 'hint': 'synonyms for automatic',\n",
+ " 'clues': [('machinelike',\n",
+ " 'resembling the unthinking functioning of a machine'),\n",
+ " ('robotic', 'resembling the unthinking functioning of a machine'),\n",
+ " ('reflexive', 'without volition or conscious control'),\n",
+ " ('robotlike', 'resembling the unthinking functioning of a machine'),\n",
+ " ('reflex', 'without volition or conscious control'),\n",
+ " ('automatonlike', 'resembling the unthinking functioning of a machine')]},\n",
+ " {'answer': 'automatonlike',\n",
+ " 'hint': 'synonyms for automatonlike',\n",
+ " 'clues': [('machinelike',\n",
+ " 'resembling the unthinking functioning of a machine'),\n",
+ " ('automatic', 'resembling the unthinking functioning of a machine'),\n",
+ " ('robotic', 'resembling the unthinking functioning of a machine'),\n",
+ " ('robotlike', 'resembling the unthinking functioning of a machine')]},\n",
+ " {'answer': 'autonomous',\n",
+ " 'hint': 'synonyms for autonomous',\n",
+ " 'clues': [('self-governing',\n",
+ " '(of political bodies) not controlled by outside forces'),\n",
+ " ('sovereign', '(of political bodies) not controlled by outside forces'),\n",
+ " ('self-reliant',\n",
+ " '(of persons) free from external control and constraint in e.g. action and judgment'),\n",
+ " ('self-directed',\n",
+ " '(of persons) free from external control and constraint in e.g. action and judgment'),\n",
+ " ('independent',\n",
+ " '(of political bodies) not controlled by outside forces')]},\n",
+ " {'answer': 'autumn-blooming',\n",
+ " 'hint': 'synonyms for autumn-blooming',\n",
+ " 'clues': [('late-flowering', 'of plants that bloom during the autumn'),\n",
+ " ('fall-flowering', 'of plants that bloom during the autumn'),\n",
+ " ('late-blooming', 'of plants that bloom during the autumn'),\n",
+ " ('autumn-flowering', 'of plants that bloom during the autumn'),\n",
+ " ('fall-blooming', 'of plants that bloom during the autumn')]},\n",
+ " {'answer': 'autumn-flowering',\n",
+ " 'hint': 'synonyms for autumn-flowering',\n",
+ " 'clues': [('late-flowering', 'of plants that bloom during the autumn'),\n",
+ " ('autumn-blooming', 'of plants that bloom during the autumn'),\n",
+ " ('fall-flowering', 'of plants that bloom during the autumn'),\n",
+ " ('late-blooming', 'of plants that bloom during the autumn'),\n",
+ " ('fall-blooming', 'of plants that bloom during the autumn')]},\n",
+ " {'answer': 'auxiliary',\n",
+ " 'hint': 'synonyms for auxiliary',\n",
+ " 'clues': [('supplemental', 'functioning in a supporting capacity'),\n",
+ " ('accessory', 'furnishing added support'),\n",
+ " ('appurtenant', 'furnishing added support'),\n",
+ " ('adjunct', 'furnishing added support'),\n",
+ " ('subsidiary', 'functioning in a supporting capacity'),\n",
+ " ('ancillary', 'furnishing added support'),\n",
+ " ('adjuvant', 'furnishing added support')]},\n",
+ " {'answer': 'avaricious',\n",
+ " 'hint': 'synonyms for avaricious',\n",
+ " 'clues': [('prehensile', 'immoderately desirous of acquiring e.g. wealth'),\n",
+ " ('greedy', 'immoderately desirous of acquiring e.g. wealth'),\n",
+ " ('covetous', 'immoderately desirous of acquiring e.g. wealth'),\n",
+ " ('grabby', 'immoderately desirous of acquiring e.g. wealth'),\n",
+ " ('grasping', 'immoderately desirous of acquiring e.g. wealth')]},\n",
+ " {'answer': 'average',\n",
+ " 'hint': 'synonyms for average',\n",
+ " 'clues': [('intermediate', 'around the middle of a scale of evaluation'),\n",
+ " ('fair', 'lacking exceptional quality or ability'),\n",
+ " ('mediocre', 'lacking exceptional quality or ability'),\n",
+ " ('mean',\n",
+ " 'approximating the statistical norm or average or expected value'),\n",
+ " ('modal',\n",
+ " 'relating to or constituting the most frequent value in a distribution'),\n",
+ " ('middling', 'lacking exceptional quality or ability'),\n",
+ " ('median',\n",
+ " 'relating to or constituting the middle value of an ordered set of values (or the average of the middle two in a set with an even number of values)'),\n",
+ " ('medium', 'around the middle of a scale of evaluation'),\n",
+ " ('ordinary',\n",
+ " 'lacking special distinction, rank, or status; commonly encountered')]},\n",
+ " {'answer': 'avid',\n",
+ " 'hint': 'synonyms for avid',\n",
+ " 'clues': [('devouring',\n",
+ " \"(often followed by `for') ardently or excessively desirous\"),\n",
+ " ('esurient',\n",
+ " \"(often followed by `for') ardently or excessively desirous\"),\n",
+ " ('zealous', 'marked by active interest and enthusiasm'),\n",
+ " ('greedy',\n",
+ " \"(often followed by `for') ardently or excessively desirous\")]},\n",
+ " {'answer': 'awash',\n",
+ " 'hint': 'synonyms for awash',\n",
+ " 'clues': [('inundated', 'covered with water'),\n",
+ " ('flooded', 'covered with water'),\n",
+ " ('overflowing', 'covered with water'),\n",
+ " ('afloat', 'covered with water')]},\n",
+ " {'answer': 'awe-inspiring',\n",
+ " 'hint': 'synonyms for awe-inspiring',\n",
+ " 'clues': [('awing',\n",
+ " 'inspiring awe or admiration or wonder; ; ; ; - Melville'),\n",
+ " ('amazing', 'inspiring awe or admiration or wonder; ; ; ; - Melville'),\n",
+ " ('awful', 'inspiring awe or admiration or wonder; ; ; ; - Melville'),\n",
+ " ('awesome', 'inspiring awe or admiration or wonder; ; ; ; - Melville')]},\n",
+ " {'answer': 'awesome',\n",
+ " 'hint': 'synonyms for awesome',\n",
+ " 'clues': [('awing',\n",
+ " 'inspiring awe or admiration or wonder; ; ; ; - Melville'),\n",
+ " ('amazing', 'inspiring awe or admiration or wonder; ; ; ; - Melville'),\n",
+ " ('awful', 'inspiring awe or admiration or wonder; ; ; ; - Melville'),\n",
+ " ('awe-inspiring',\n",
+ " 'inspiring awe or admiration or wonder; ; ; ; - Melville')]},\n",
+ " {'answer': 'awful',\n",
+ " 'hint': 'synonyms for awful',\n",
+ " 'clues': [('fearful', 'causing fear or dread or terror'),\n",
+ " ('painful', 'exceptionally bad or displeasing'),\n",
+ " ('awed', 'inspired by a feeling of fearful wonderment or reverence'),\n",
+ " ('direful', 'causing fear or dread or terror'),\n",
+ " ('amazing', 'inspiring awe or admiration or wonder; ; ; ; - Melville'),\n",
+ " ('unspeakable', 'exceptionally bad or displeasing'),\n",
+ " ('dreaded', 'causing fear or dread or terror'),\n",
+ " ('horrific', 'causing fear or dread or terror'),\n",
+ " ('awing', 'inspiring awe or admiration or wonder; ; ; ; - Melville'),\n",
+ " ('dire', 'causing fear or dread or terror'),\n",
+ " ('frightening', 'causing fear or dread or terror'),\n",
+ " ('fearsome', 'causing fear or dread or terror'),\n",
+ " ('dread', 'causing fear or dread or terror'),\n",
+ " ('horrendous', 'causing fear or dread or terror'),\n",
+ " ('tremendous', 'extreme in degree or extent or amount or impact'),\n",
+ " ('awesome', 'inspiring awe or admiration or wonder; ; ; ; - Melville'),\n",
+ " ('atrocious', 'exceptionally bad or displeasing'),\n",
+ " ('terrible', 'extreme in degree or extent or amount or impact'),\n",
+ " ('awe-inspiring',\n",
+ " 'inspiring awe or admiration or wonder; ; ; ; - Melville'),\n",
+ " ('dreadful', 'exceptionally bad or displeasing'),\n",
+ " ('frightful', 'extreme in degree or extent or amount or impact'),\n",
+ " ('abominable', 'exceptionally bad or displeasing'),\n",
+ " ('nasty',\n",
+ " 'offensive or even (of persons) malicious; ; ; ; ; ; - Ezra Pound')]},\n",
+ " {'answer': 'awing',\n",
+ " 'hint': 'synonyms for awing',\n",
+ " 'clues': [('awesome',\n",
+ " 'inspiring awe or admiration or wonder; ; ; ; - Melville'),\n",
+ " ('amazing', 'inspiring awe or admiration or wonder; ; ; ; - Melville'),\n",
+ " ('awful', 'inspiring awe or admiration or wonder; ; ; ; - Melville'),\n",
+ " ('awe-inspiring',\n",
+ " 'inspiring awe or admiration or wonder; ; ; ; - Melville')]},\n",
+ " {'answer': 'awkward',\n",
+ " 'hint': 'synonyms for awkward',\n",
+ " 'clues': [('sticky',\n",
+ " 'hard to deal with; especially causing pain or embarrassment'),\n",
+ " ('clumsy', 'difficult to handle or manage especially because of shape'),\n",
+ " ('ill at ease',\n",
+ " 'socially uncomfortable; unsure and constrained in manner'),\n",
+ " ('uneasy', 'socially uncomfortable; unsure and constrained in manner'),\n",
+ " ('inapt', 'not elegant or graceful in expression'),\n",
+ " ('unenviable',\n",
+ " 'hard to deal with; especially causing pain or embarrassment'),\n",
+ " ('cumbersome', 'not elegant or graceful in expression'),\n",
+ " ('ill-chosen', 'not elegant or graceful in expression'),\n",
+ " ('bunglesome',\n",
+ " 'difficult to handle or manage especially because of shape'),\n",
+ " ('inept', 'not elegant or graceful in expression'),\n",
+ " ('embarrassing',\n",
+ " 'hard to deal with; especially causing pain or embarrassment'),\n",
+ " ('ungainly',\n",
+ " 'difficult to handle or manage especially because of shape')]},\n",
+ " {'answer': 'awry',\n",
+ " 'hint': 'synonyms for awry',\n",
+ " 'clues': [('wonky', 'turned or twisted toward one side; - G.K.Chesterton'),\n",
+ " ('lopsided', 'turned or twisted toward one side; - G.K.Chesterton'),\n",
+ " ('haywire', 'not functioning properly'),\n",
+ " ('wrong', 'not functioning properly'),\n",
+ " ('cockeyed', 'turned or twisted toward one side; - G.K.Chesterton'),\n",
+ " ('askew', 'turned or twisted toward one side; - G.K.Chesterton'),\n",
+ " ('amiss', 'not functioning properly'),\n",
+ " ('skew-whiff', 'turned or twisted toward one side; - G.K.Chesterton')]},\n",
+ " {'answer': 'axiomatic',\n",
+ " 'hint': 'synonyms for axiomatic',\n",
+ " 'clues': [('aphoristic', 'containing aphorisms or maxims'),\n",
+ " ('postulational',\n",
+ " 'of or relating to or derived from axioms; ; - S.S.Stevens'),\n",
+ " ('axiomatical',\n",
+ " 'of or relating to or derived from axioms; ; - S.S.Stevens'),\n",
+ " ('taken for granted', 'evident without proof or argument'),\n",
+ " ('self-evident', 'evident without proof or argument')]},\n",
+ " {'answer': 'bacchanal',\n",
+ " 'hint': 'synonyms for bacchanal',\n",
+ " 'clues': [('bacchanalian', 'used of riotously drunken merrymaking'),\n",
+ " ('carousing', 'used of riotously drunken merrymaking'),\n",
+ " ('bacchic', 'used of riotously drunken merrymaking'),\n",
+ " ('orgiastic', 'used of riotously drunken merrymaking')]},\n",
+ " {'answer': 'bacchanalian',\n",
+ " 'hint': 'synonyms for bacchanalian',\n",
+ " 'clues': [('bacchanal', 'used of riotously drunken merrymaking'),\n",
+ " ('carousing', 'used of riotously drunken merrymaking'),\n",
+ " ('bacchic', 'used of riotously drunken merrymaking'),\n",
+ " ('orgiastic', 'used of riotously drunken merrymaking')]},\n",
+ " {'answer': 'backbreaking',\n",
+ " 'hint': 'synonyms for backbreaking',\n",
+ " 'clues': [('arduous',\n",
+ " 'characterized by effort to the point of exhaustion; especially physical effort'),\n",
+ " ('operose',\n",
+ " 'characterized by effort to the point of exhaustion; especially physical effort'),\n",
+ " ('heavy',\n",
+ " 'characterized by effort to the point of exhaustion; especially physical effort'),\n",
+ " ('gruelling',\n",
+ " 'characterized by effort to the point of exhaustion; especially physical effort'),\n",
+ " ('laborious',\n",
+ " 'characterized by effort to the point of exhaustion; especially physical effort'),\n",
+ " ('toilsome',\n",
+ " 'characterized by effort to the point of exhaustion; especially physical effort'),\n",
+ " ('punishing',\n",
+ " 'characterized by effort to the point of exhaustion; especially physical effort'),\n",
+ " ('hard',\n",
+ " 'characterized by effort to the point of exhaustion; especially physical effort')]},\n",
+ " {'answer': 'bad',\n",
+ " 'hint': 'synonyms for bad',\n",
+ " 'clues': [('defective', 'not working properly'),\n",
+ " ('unsound', 'physically unsound or diseased'),\n",
+ " ('tough',\n",
+ " \"feeling physical discomfort or pain (`tough' is occasionally used colloquially for `bad')\"),\n",
+ " ('uncollectible', 'not capable of being collected'),\n",
+ " ('speculative', 'not financially safe or secure'),\n",
+ " ('high-risk', 'not financially safe or secure'),\n",
+ " ('forged', 'reproduced fraudulently'),\n",
+ " ('unfit', 'physically unsound or diseased'),\n",
+ " ('regretful',\n",
+ " 'feeling or expressing regret or sorrow or a sense of loss over something done or undone'),\n",
+ " ('big', 'very intense'),\n",
+ " ('sorry',\n",
+ " 'feeling or expressing regret or sorrow or a sense of loss over something done or undone'),\n",
+ " ('spoilt', '(of foodstuffs) not in an edible or usable condition'),\n",
+ " ('risky', 'not financially safe or secure'),\n",
+ " ('spoiled', '(of foodstuffs) not in an edible or usable condition')]},\n",
+ " {'answer': 'bad-mannered',\n",
+ " 'hint': 'synonyms for bad-mannered',\n",
+ " 'clues': [('unmannered', 'socially incorrect in behavior'),\n",
+ " ('rude', 'socially incorrect in behavior'),\n",
+ " ('unmannerly', 'socially incorrect in behavior'),\n",
+ " ('ill-mannered', 'socially incorrect in behavior')]},\n",
+ " {'answer': 'bad-tempered',\n",
+ " 'hint': 'synonyms for bad-tempered',\n",
+ " 'clues': [('ill-tempered', 'annoyed and irritable'),\n",
+ " ('crabbed', 'annoyed and irritable'),\n",
+ " ('grouchy', 'annoyed and irritable'),\n",
+ " ('cross', 'annoyed and irritable'),\n",
+ " ('fussy', 'annoyed and irritable'),\n",
+ " ('grumpy', 'annoyed and irritable'),\n",
+ " ('crabby', 'annoyed and irritable')]},\n",
+ " {'answer': 'baffled',\n",
+ " 'hint': 'synonyms for baffled',\n",
+ " 'clues': [('at sea',\n",
+ " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n",
+ " ('bewildered',\n",
+ " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n",
+ " ('mixed-up',\n",
+ " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n",
+ " ('mazed',\n",
+ " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n",
+ " ('lost',\n",
+ " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n",
+ " ('bemused',\n",
+ " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n",
+ " ('confounded',\n",
+ " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n",
+ " ('confused',\n",
+ " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n",
+ " ('befuddled',\n",
+ " 'perplexed by many conflicting situations or statements; filled with bewilderment')]},\n",
+ " {'answer': 'baffling',\n",
+ " 'hint': 'synonyms for baffling',\n",
+ " 'clues': [('tough',\n",
+ " 'making great mental demands; hard to comprehend or solve or believe'),\n",
+ " ('problematic',\n",
+ " 'making great mental demands; hard to comprehend or solve or believe'),\n",
+ " ('knotty',\n",
+ " 'making great mental demands; hard to comprehend or solve or believe'),\n",
+ " ('elusive',\n",
+ " 'making great mental demands; hard to comprehend or solve or believe')]},\n",
+ " {'answer': 'baked',\n",
+ " 'hint': 'synonyms for baked',\n",
+ " 'clues': [('adust', 'dried out by heat or excessive exposure to sunlight'),\n",
+ " ('parched', 'dried out by heat or excessive exposure to sunlight'),\n",
+ " ('scorched', 'dried out by heat or excessive exposure to sunlight'),\n",
+ " ('sunbaked', 'dried out by heat or excessive exposure to sunlight')]},\n",
+ " {'answer': 'bald',\n",
+ " 'hint': 'synonyms for bald',\n",
+ " 'clues': [('bald-pated', 'lacking hair on all or most of the scalp'),\n",
+ " ('bald-headed', 'lacking hair on all or most of the scalp'),\n",
+ " ('barefaced', 'with no effort to conceal'),\n",
+ " ('denudate', 'without the natural or usual covering'),\n",
+ " ('denuded', 'without the natural or usual covering')]},\n",
+ " {'answer': 'bald-faced',\n",
+ " 'hint': 'synonyms for bald-faced',\n",
+ " 'clues': [('bodacious',\n",
+ " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n",
+ " ('brazen',\n",
+ " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n",
+ " ('insolent',\n",
+ " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n",
+ " ('barefaced',\n",
+ " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n",
+ " ('brazen-faced',\n",
+ " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n",
+ " ('audacious',\n",
+ " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n",
+ " ('brassy',\n",
+ " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell')]},\n",
+ " {'answer': 'baleful',\n",
+ " 'hint': 'synonyms for baleful',\n",
+ " 'clues': [('menacing',\n",
+ " 'threatening or foreshadowing evil or tragic developments'),\n",
+ " ('baneful', 'deadly or sinister'),\n",
+ " ('forbidding',\n",
+ " 'threatening or foreshadowing evil or tragic developments'),\n",
+ " ('minatory', 'threatening or foreshadowing evil or tragic developments'),\n",
+ " ('ominous', 'threatening or foreshadowing evil or tragic developments'),\n",
+ " ('sinister', 'threatening or foreshadowing evil or tragic developments'),\n",
+ " ('threatening',\n",
+ " 'threatening or foreshadowing evil or tragic developments'),\n",
+ " ('minacious',\n",
+ " 'threatening or foreshadowing evil or tragic developments')]},\n",
+ " {'answer': 'ball-shaped',\n",
+ " 'hint': 'synonyms for ball-shaped',\n",
+ " 'clues': [('spheric',\n",
+ " 'having the shape of a sphere or ball; ; ; - Zane Grey'),\n",
+ " ('global', 'having the shape of a sphere or ball; ; ; - Zane Grey'),\n",
+ " ('globose', 'having the shape of a sphere or ball; ; ; - Zane Grey'),\n",
+ " ('globular', 'having the shape of a sphere or ball; ; ; - Zane Grey'),\n",
+ " ('orbicular', 'having the shape of a sphere or ball; ; ; - Zane Grey')]},\n",
+ " {'answer': 'bally',\n",
+ " 'hint': 'synonyms for bally',\n",
+ " 'clues': [('crashing', 'informal intensifiers'),\n",
+ " ('flaming', 'informal intensifiers'),\n",
+ " ('bloody', 'informal intensifiers'),\n",
+ " ('fucking', 'informal intensifiers'),\n",
+ " ('blinking', 'informal intensifiers'),\n",
+ " ('blooming', 'informal intensifiers')]},\n",
+ " {'answer': 'balmy',\n",
+ " 'hint': 'synonyms for balmy',\n",
+ " 'clues': [('crackers', 'informal or slang terms for mentally irregular'),\n",
+ " ('nuts', 'informal or slang terms for mentally irregular'),\n",
+ " ('loony', 'informal or slang terms for mentally irregular'),\n",
+ " ('dotty', 'informal or slang terms for mentally irregular'),\n",
+ " ('batty', 'informal or slang terms for mentally irregular'),\n",
+ " ('cracked', 'informal or slang terms for mentally irregular'),\n",
+ " ('bats', 'informal or slang terms for mentally irregular'),\n",
+ " ('barmy', 'informal or slang terms for mentally irregular'),\n",
+ " ('wacky', 'informal or slang terms for mentally irregular'),\n",
+ " ('daft', 'informal or slang terms for mentally irregular'),\n",
+ " ('loco', 'informal or slang terms for mentally irregular'),\n",
+ " ('bonkers', 'informal or slang terms for mentally irregular'),\n",
+ " ('nutty', 'informal or slang terms for mentally irregular'),\n",
+ " ('haywire', 'informal or slang terms for mentally irregular'),\n",
+ " ('buggy', 'informal or slang terms for mentally irregular'),\n",
+ " ('mild', 'mild and pleasant'),\n",
+ " ('kookie', 'informal or slang terms for mentally irregular'),\n",
+ " ('fruity', 'informal or slang terms for mentally irregular'),\n",
+ " ('round the bend', 'informal or slang terms for mentally irregular'),\n",
+ " ('kooky', 'informal or slang terms for mentally irregular'),\n",
+ " ('soft', 'mild and pleasant'),\n",
+ " ('loopy', 'informal or slang terms for mentally irregular')]},\n",
+ " {'answer': 'banal',\n",
+ " 'hint': 'synonyms for banal',\n",
+ " 'clues': [('hackneyed',\n",
+ " 'repeated too often; overfamiliar through overuse'),\n",
+ " ('shopworn', 'repeated too often; overfamiliar through overuse'),\n",
+ " ('old-hat', 'repeated too often; overfamiliar through overuse'),\n",
+ " ('commonplace', 'repeated too often; overfamiliar through overuse'),\n",
+ " ('well-worn', 'repeated too often; overfamiliar through overuse'),\n",
+ " ('timeworn', 'repeated too often; overfamiliar through overuse'),\n",
+ " ('threadbare', 'repeated too often; overfamiliar through overuse'),\n",
+ " ('trite', 'repeated too often; overfamiliar through overuse'),\n",
+ " ('stock', 'repeated too often; overfamiliar through overuse'),\n",
+ " ('tired', 'repeated too often; overfamiliar through overuse')]},\n",
+ " {'answer': 'bandy',\n",
+ " 'hint': 'synonyms for bandy',\n",
+ " 'clues': [('bowleg', 'have legs that curve outward at the knees'),\n",
+ " ('bowlegged', 'have legs that curve outward at the knees'),\n",
+ " ('bowed', 'have legs that curve outward at the knees'),\n",
+ " ('bandy-legged', 'have legs that curve outward at the knees')]},\n",
+ " {'answer': 'bandy-legged',\n",
+ " 'hint': 'synonyms for bandy-legged',\n",
+ " 'clues': [('bowleg', 'have legs that curve outward at the knees'),\n",
+ " ('bandy', 'have legs that curve outward at the knees'),\n",
+ " ('bowlegged', 'have legs that curve outward at the knees'),\n",
+ " ('bowed', 'have legs that curve outward at the knees')]},\n",
+ " {'answer': 'baneful',\n",
+ " 'hint': 'synonyms for baneful',\n",
+ " 'clues': [('pernicious', 'exceedingly harmful'),\n",
+ " ('deadly', 'exceedingly harmful'),\n",
+ " ('pestilent', 'exceedingly harmful'),\n",
+ " ('baleful', 'deadly or sinister')]},\n",
+ " {'answer': 'bang-up',\n",
+ " 'hint': 'synonyms for bang-up',\n",
+ " 'clues': [('smashing', 'very good'),\n",
+ " ('not bad', 'very good'),\n",
+ " ('swell', 'very good'),\n",
+ " ('dandy', 'very good'),\n",
+ " ('keen', 'very good'),\n",
+ " ('nifty', 'very good'),\n",
+ " ('peachy', 'very good'),\n",
+ " ('cracking', 'very good'),\n",
+ " ('slap-up', 'very good'),\n",
+ " ('corking', 'very good'),\n",
+ " ('bully', 'very good'),\n",
+ " ('neat', 'very good'),\n",
+ " ('groovy', 'very good'),\n",
+ " ('great', 'very good')]},\n",
+ " {'answer': 'banging',\n",
+ " 'hint': 'synonyms for banging',\n",
+ " 'clues': [('walloping', '(used informally) very large'),\n",
+ " ('humongous', '(used informally) very large'),\n",
+ " ('whopping', '(used informally) very large'),\n",
+ " ('thumping', '(used informally) very large')]},\n",
+ " {'answer': 'bantam',\n",
+ " 'hint': 'synonyms for bantam',\n",
+ " 'clues': [('diminutive', 'very small'),\n",
+ " ('lilliputian', 'very small'),\n",
+ " ('flyspeck', 'very small'),\n",
+ " ('petite', 'very small'),\n",
+ " ('tiny', 'very small'),\n",
+ " ('midget', 'very small')]},\n",
+ " {'answer': 'barbarian',\n",
+ " 'hint': 'synonyms for barbarian',\n",
+ " 'clues': [('barbaric',\n",
+ " 'without civilizing influences; ; ; ; -Margaret Meade'),\n",
+ " ('wild', 'without civilizing influences; ; ; ; -Margaret Meade'),\n",
+ " ('uncivilized', 'without civilizing influences; ; ; ; -Margaret Meade'),\n",
+ " ('savage', 'without civilizing influences; ; ; ; -Margaret Meade')]},\n",
+ " {'answer': 'barbaric',\n",
+ " 'hint': 'synonyms for barbaric',\n",
+ " 'clues': [('wild', 'without civilizing influences; ; ; ; -Margaret Meade'),\n",
+ " ('uncivilized', 'without civilizing influences; ; ; ; -Margaret Meade'),\n",
+ " ('barbarian', 'without civilizing influences; ; ; ; -Margaret Meade'),\n",
+ " ('savage', 'without civilizing influences; ; ; ; -Margaret Meade')]},\n",
+ " {'answer': 'barbarous',\n",
+ " 'hint': 'synonyms for barbarous',\n",
+ " 'clues': [('savage',\n",
+ " '(of persons or their actions) able or disposed to inflict pain or suffering'),\n",
+ " ('cruel',\n",
+ " '(of persons or their actions) able or disposed to inflict pain or suffering'),\n",
+ " ('fell',\n",
+ " '(of persons or their actions) able or disposed to inflict pain or suffering'),\n",
+ " ('brutal',\n",
+ " '(of persons or their actions) able or disposed to inflict pain or suffering'),\n",
+ " ('roughshod',\n",
+ " '(of persons or their actions) able or disposed to inflict pain or suffering'),\n",
+ " ('vicious',\n",
+ " '(of persons or their actions) able or disposed to inflict pain or suffering')]},\n",
+ " {'answer': 'barbed',\n",
+ " 'hint': 'synonyms for barbed',\n",
+ " 'clues': [('thorny',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n",
+ " ('briary',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n",
+ " ('biting', 'capable of wounding'),\n",
+ " ('spiny',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n",
+ " ('burry',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n",
+ " ('bristly',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n",
+ " ('bristled',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n",
+ " ('briery',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n",
+ " ('barbellate',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n",
+ " ('setose',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n",
+ " ('nipping', 'capable of wounding'),\n",
+ " ('prickly',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n",
+ " ('burred',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n",
+ " ('setaceous',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n",
+ " ('mordacious', 'capable of wounding'),\n",
+ " ('pungent', 'capable of wounding')]},\n",
+ " {'answer': 'barbellate',\n",
+ " 'hint': 'synonyms for barbellate',\n",
+ " 'clues': [('barbed',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n",
+ " ('thorny',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n",
+ " ('briary',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n",
+ " ('setose',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n",
+ " ('prickly',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n",
+ " ('spiny',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n",
+ " ('burred',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n",
+ " ('burry',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n",
+ " ('bristly',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n",
+ " ('bristled',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n",
+ " ('briery',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n",
+ " ('setaceous',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.')]},\n",
+ " {'answer': 'bare',\n",
+ " 'hint': 'synonyms for bare',\n",
+ " 'clues': [('unsheathed', 'not having a protective covering'),\n",
+ " ('barren', 'providing no shelter or sustenance'),\n",
+ " ('stark', 'providing no shelter or sustenance'),\n",
+ " ('stripped', 'having everything extraneous removed including contents'),\n",
+ " ('scanty', 'lacking in amplitude or quantity'),\n",
+ " ('spare', 'lacking embellishment or ornamentation'),\n",
+ " ('au naturel', 'completely unclothed'),\n",
+ " ('naked', 'completely unclothed'),\n",
+ " ('unornamented', 'lacking embellishment or ornamentation'),\n",
+ " ('unembellished', 'lacking embellishment or ornamentation'),\n",
+ " ('simple',\n",
+ " 'apart from anything else; without additions or modifications'),\n",
+ " ('nude', 'completely unclothed'),\n",
+ " ('desolate', 'providing no shelter or sustenance'),\n",
+ " ('plain', 'lacking embellishment or ornamentation'),\n",
+ " ('bleak', 'providing no shelter or sustenance'),\n",
+ " ('mere', 'apart from anything else; without additions or modifications'),\n",
+ " ('marginal', 'just barely adequate or within a lower limit'),\n",
+ " ('unfinished', 'lacking a surface finish such as paint')]},\n",
+ " {'answer': 'bare-ass',\n",
+ " 'hint': 'synonyms for bare-ass',\n",
+ " 'clues': [('raw', '(used informally) completely unclothed'),\n",
+ " ('naked as a jaybird', '(used informally) completely unclothed'),\n",
+ " ('peeled', '(used informally) completely unclothed'),\n",
+ " ('bare-assed', '(used informally) completely unclothed'),\n",
+ " ('in the buff', '(used informally) completely unclothed'),\n",
+ " ('in the altogether', '(used informally) completely unclothed'),\n",
+ " ('in the raw', '(used informally) completely unclothed'),\n",
+ " ('stark naked', '(used informally) completely unclothed')]},\n",
+ " {'answer': 'bare-assed',\n",
+ " 'hint': 'synonyms for bare-assed',\n",
+ " 'clues': [('raw', '(used informally) completely unclothed'),\n",
+ " ('naked as a jaybird', '(used informally) completely unclothed'),\n",
+ " ('peeled', '(used informally) completely unclothed'),\n",
+ " ('in the buff', '(used informally) completely unclothed'),\n",
+ " ('bare-ass', '(used informally) completely unclothed'),\n",
+ " ('in the altogether', '(used informally) completely unclothed'),\n",
+ " ('in the raw', '(used informally) completely unclothed'),\n",
+ " ('stark naked', '(used informally) completely unclothed')]},\n",
+ " {'answer': 'barefaced',\n",
+ " 'hint': 'synonyms for barefaced',\n",
+ " 'clues': [('bald', 'with no effort to conceal'),\n",
+ " ('brazen',\n",
+ " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n",
+ " ('insolent',\n",
+ " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n",
+ " ('audacious',\n",
+ " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n",
+ " ('brassy',\n",
+ " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n",
+ " ('bodacious',\n",
+ " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n",
+ " ('brazen-faced',\n",
+ " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n",
+ " ('bald-faced',\n",
+ " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell')]},\n",
+ " {'answer': 'barmy',\n",
+ " 'hint': 'synonyms for barmy',\n",
+ " 'clues': [('zestful', 'marked by spirited enjoyment'),\n",
+ " ('crackers', 'informal or slang terms for mentally irregular'),\n",
+ " ('nuts', 'informal or slang terms for mentally irregular'),\n",
+ " ('loony', 'informal or slang terms for mentally irregular'),\n",
+ " ('dotty', 'informal or slang terms for mentally irregular'),\n",
+ " ('batty', 'informal or slang terms for mentally irregular'),\n",
+ " ('cracked', 'informal or slang terms for mentally irregular'),\n",
+ " ('balmy', 'informal or slang terms for mentally irregular'),\n",
+ " ('bats', 'informal or slang terms for mentally irregular'),\n",
+ " ('wacky', 'informal or slang terms for mentally irregular'),\n",
+ " ('zesty', 'marked by spirited enjoyment'),\n",
+ " ('daft', 'informal or slang terms for mentally irregular'),\n",
+ " ('loco', 'informal or slang terms for mentally irregular'),\n",
+ " ('yeasty', 'marked by spirited enjoyment'),\n",
+ " ('bonkers', 'informal or slang terms for mentally irregular'),\n",
+ " ('haywire', 'informal or slang terms for mentally irregular'),\n",
+ " ('buggy', 'informal or slang terms for mentally irregular'),\n",
+ " ('nutty', 'informal or slang terms for mentally irregular'),\n",
+ " ('kookie', 'informal or slang terms for mentally irregular'),\n",
+ " ('fruity', 'informal or slang terms for mentally irregular'),\n",
+ " ('round the bend', 'informal or slang terms for mentally irregular'),\n",
+ " ('kooky', 'informal or slang terms for mentally irregular'),\n",
+ " ('loopy', 'informal or slang terms for mentally irregular')]},\n",
+ " {'answer': 'barren',\n",
+ " 'hint': 'synonyms for barren',\n",
+ " 'clues': [('devoid', 'completely wanting or lacking'),\n",
+ " ('stark', 'providing no shelter or sustenance'),\n",
+ " ('desolate', 'providing no shelter or sustenance'),\n",
+ " ('destitute', 'completely wanting or lacking'),\n",
+ " ('bleak', 'providing no shelter or sustenance'),\n",
+ " ('innocent', 'completely wanting or lacking'),\n",
+ " ('free', 'completely wanting or lacking'),\n",
+ " ('bare', 'providing no shelter or sustenance')]},\n",
+ " {'answer': 'base',\n",
+ " 'hint': 'synonyms for base',\n",
+ " 'clues': [('meanspirited',\n",
+ " 'having or showing an ignoble lack of honor or morality; - Edmund Burke; ; - Shakespeare'),\n",
+ " ('humble', \"of low birth or station (`base' is archaic in this sense)\"),\n",
+ " ('lowly', \"of low birth or station (`base' is archaic in this sense)\"),\n",
+ " ('immoral', 'not adhering to ethical or moral principles'),\n",
+ " ('baseborn', \"of low birth or station (`base' is archaic in this sense)\"),\n",
+ " ('mean',\n",
+ " 'having or showing an ignoble lack of honor or morality; - Edmund Burke; ; - Shakespeare'),\n",
+ " ('basal', 'serving as or forming a base')]},\n",
+ " {'answer': 'baseless',\n",
+ " 'hint': 'synonyms for baseless',\n",
+ " 'clues': [('groundless', 'without a basis in reason or fact'),\n",
+ " ('unfounded', 'without a basis in reason or fact'),\n",
+ " ('wild', 'without a basis in reason or fact'),\n",
+ " ('idle', 'without a basis in reason or fact'),\n",
+ " ('unwarranted', 'without a basis in reason or fact')]},\n",
+ " {'answer': 'bastardly',\n",
+ " 'hint': 'synonyms for bastardly',\n",
+ " 'clues': [('spurious', 'born out of wedlock; - E.A.Freeman'),\n",
+ " ('mean', 'of no value or worth'),\n",
+ " ('misbegot', 'born out of wedlock; - E.A.Freeman'),\n",
+ " ('misbegotten', 'born out of wedlock; - E.A.Freeman')]},\n",
+ " {'answer': 'bathetic',\n",
+ " 'hint': 'synonyms for bathetic',\n",
+ " 'clues': [('drippy', 'effusively or insincerely emotional'),\n",
+ " ('slushy', 'effusively or insincerely emotional'),\n",
+ " ('soupy', 'effusively or insincerely emotional'),\n",
+ " ('mawkish', 'effusively or insincerely emotional'),\n",
+ " ('mushy', 'effusively or insincerely emotional'),\n",
+ " ('sentimental', 'effusively or insincerely emotional'),\n",
+ " ('soppy', 'effusively or insincerely emotional'),\n",
+ " ('hokey', 'effusively or insincerely emotional'),\n",
+ " ('schmalzy', 'effusively or insincerely emotional'),\n",
+ " ('maudlin', 'effusively or insincerely emotional'),\n",
+ " ('kitschy', 'effusively or insincerely emotional')]},\n",
+ " {'answer': 'bats',\n",
+ " 'hint': 'synonyms for bats',\n",
+ " 'clues': [('crackers', 'informal or slang terms for mentally irregular'),\n",
+ " ('nuts', 'informal or slang terms for mentally irregular'),\n",
+ " ('loony', 'informal or slang terms for mentally irregular'),\n",
+ " ('dotty', 'informal or slang terms for mentally irregular'),\n",
+ " ('batty', 'informal or slang terms for mentally irregular'),\n",
+ " ('cracked', 'informal or slang terms for mentally irregular'),\n",
+ " ('balmy', 'informal or slang terms for mentally irregular'),\n",
+ " ('barmy', 'informal or slang terms for mentally irregular'),\n",
+ " ('wacky', 'informal or slang terms for mentally irregular'),\n",
+ " ('daft', 'informal or slang terms for mentally irregular'),\n",
+ " ('loco', 'informal or slang terms for mentally irregular'),\n",
+ " ('bonkers', 'informal or slang terms for mentally irregular'),\n",
+ " ('nutty', 'informal or slang terms for mentally irregular'),\n",
+ " ('haywire', 'informal or slang terms for mentally irregular'),\n",
+ " ('buggy', 'informal or slang terms for mentally irregular'),\n",
+ " ('kookie', 'informal or slang terms for mentally irregular'),\n",
+ " ('fruity', 'informal or slang terms for mentally irregular'),\n",
+ " ('round the bend', 'informal or slang terms for mentally irregular'),\n",
+ " ('kooky', 'informal or slang terms for mentally irregular'),\n",
+ " ('loopy', 'informal or slang terms for mentally irregular')]},\n",
+ " {'answer': 'batty',\n",
+ " 'hint': 'synonyms for batty',\n",
+ " 'clues': [('crackers', 'informal or slang terms for mentally irregular'),\n",
+ " ('nuts', 'informal or slang terms for mentally irregular'),\n",
+ " ('loony', 'informal or slang terms for mentally irregular'),\n",
+ " ('dotty', 'informal or slang terms for mentally irregular'),\n",
+ " ('bats', 'informal or slang terms for mentally irregular'),\n",
+ " ('cracked', 'informal or slang terms for mentally irregular'),\n",
+ " ('balmy', 'informal or slang terms for mentally irregular'),\n",
+ " ('barmy', 'informal or slang terms for mentally irregular'),\n",
+ " ('wacky', 'informal or slang terms for mentally irregular'),\n",
+ " ('daft', 'informal or slang terms for mentally irregular'),\n",
+ " ('loco', 'informal or slang terms for mentally irregular'),\n",
+ " ('bonkers', 'informal or slang terms for mentally irregular'),\n",
+ " ('nutty', 'informal or slang terms for mentally irregular'),\n",
+ " ('haywire', 'informal or slang terms for mentally irregular'),\n",
+ " ('buggy', 'informal or slang terms for mentally irregular'),\n",
+ " ('kookie', 'informal or slang terms for mentally irregular'),\n",
+ " ('fruity', 'informal or slang terms for mentally irregular'),\n",
+ " ('round the bend', 'informal or slang terms for mentally irregular'),\n",
+ " ('kooky', 'informal or slang terms for mentally irregular'),\n",
+ " ('loopy', 'informal or slang terms for mentally irregular')]},\n",
+ " {'answer': 'beady',\n",
+ " 'hint': 'synonyms for beady',\n",
+ " 'clues': [('beadlike',\n",
+ " 'small and round and shiny like a shiny bead or button'),\n",
+ " ('jewelled', 'covered with beads or jewels or sequins'),\n",
+ " ('buttony', 'small and round and shiny like a shiny bead or button'),\n",
+ " ('spangled', 'covered with beads or jewels or sequins'),\n",
+ " ('buttonlike', 'small and round and shiny like a shiny bead or button'),\n",
+ " ('sequined', 'covered with beads or jewels or sequins'),\n",
+ " ('spangly', 'covered with beads or jewels or sequins'),\n",
+ " ('gemmed', 'covered with beads or jewels or sequins')]},\n",
+ " {'answer': 'beaming',\n",
+ " 'hint': 'synonyms for beaming',\n",
+ " 'clues': [('effulgent', 'radiating or as if radiating light'),\n",
+ " ('glad', 'cheerful and bright'),\n",
+ " ('radiant', 'radiating or as if radiating light'),\n",
+ " ('beamy', 'radiating or as if radiating light')]},\n",
+ " {'answer': 'beastly',\n",
+ " 'hint': 'synonyms for beastly',\n",
+ " 'clues': [('god-awful', 'very unpleasant'),\n",
+ " ('brutal', 'resembling a beast; showing lack of human sensibility'),\n",
+ " ('bestial', 'resembling a beast; showing lack of human sensibility'),\n",
+ " ('brute', 'resembling a beast; showing lack of human sensibility'),\n",
+ " ('brutish', 'resembling a beast; showing lack of human sensibility'),\n",
+ " ('hellish', 'very unpleasant')]},\n",
+ " {'answer': 'beatific',\n",
+ " 'hint': 'synonyms for beatific',\n",
+ " 'clues': [('angelical',\n",
+ " 'marked by utter benignity; resembling or befitting an angel or saint'),\n",
+ " ('saintlike',\n",
+ " 'marked by utter benignity; resembling or befitting an angel or saint'),\n",
+ " ('saintly',\n",
+ " 'marked by utter benignity; resembling or befitting an angel or saint'),\n",
+ " ('sainted',\n",
+ " 'marked by utter benignity; resembling or befitting an angel or saint')]},\n",
+ " {'answer': 'becoming',\n",
+ " 'hint': 'synonyms for becoming',\n",
+ " 'clues': [('comme il faut', 'according with custom or propriety'),\n",
+ " ('comely', 'according with custom or propriety'),\n",
+ " ('seemly', 'according with custom or propriety'),\n",
+ " ('decorous', 'according with custom or propriety'),\n",
+ " ('decent', 'according with custom or propriety')]},\n",
+ " {'answer': 'bedraggled',\n",
+ " 'hint': 'synonyms for bedraggled',\n",
+ " 'clues': [('ramshackle', 'in deplorable condition'),\n",
+ " ('broken-down', 'in deplorable condition'),\n",
+ " ('dilapidated', 'in deplorable condition'),\n",
+ " ('derelict', 'in deplorable condition'),\n",
+ " ('tumble-down', 'in deplorable condition'),\n",
+ " ('tatterdemalion', 'in deplorable condition'),\n",
+ " ('draggled', 'limp and soiled as if dragged in the mud')]},\n",
+ " {'answer': 'beefy',\n",
+ " 'hint': 'synonyms for beefy',\n",
+ " 'clues': [('strapping', 'muscular and heavily built'),\n",
+ " ('buirdly', 'muscular and heavily built'),\n",
+ " ('husky', 'muscular and heavily built'),\n",
+ " ('burly', 'muscular and heavily built')]},\n",
+ " {'answer': 'befuddled',\n",
+ " 'hint': 'synonyms for befuddled',\n",
+ " 'clues': [('at sea',\n",
+ " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n",
+ " ('bewildered',\n",
+ " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n",
+ " ('wooly', 'confused and vague; used especially of thinking'),\n",
+ " ('mixed-up',\n",
+ " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n",
+ " ('mazed',\n",
+ " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n",
+ " ('addled', 'confused and vague; used especially of thinking'),\n",
+ " ('wooly-minded', 'confused and vague; used especially of thinking'),\n",
+ " ('baffled',\n",
+ " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n",
+ " ('lost',\n",
+ " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n",
+ " ('bemused',\n",
+ " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n",
+ " ('muzzy', 'confused and vague; used especially of thinking'),\n",
+ " ('confounded',\n",
+ " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n",
+ " ('confused',\n",
+ " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n",
+ " ('muddled', 'confused and vague; used especially of thinking'),\n",
+ " ('woolly-headed', 'confused and vague; used especially of thinking'),\n",
+ " ('befogged', 'stupefied by alcoholic drink')]},\n",
+ " {'answer': 'begrimed',\n",
+ " 'hint': 'synonyms for begrimed',\n",
+ " 'clues': [('raunchy', 'thickly covered with ingrained dirt or soot'),\n",
+ " ('grubby', 'thickly covered with ingrained dirt or soot'),\n",
+ " ('grungy', 'thickly covered with ingrained dirt or soot'),\n",
+ " ('dingy', 'thickly covered with ingrained dirt or soot'),\n",
+ " ('grimy', 'thickly covered with ingrained dirt or soot')]},\n",
+ " {'answer': 'beguiled',\n",
+ " 'hint': 'synonyms for beguiled',\n",
+ " 'clues': [('entranced', 'filled with wonder and delight'),\n",
+ " ('enthralled', 'filled with wonder and delight'),\n",
+ " ('delighted', 'filled with wonder and delight'),\n",
+ " ('captivated', 'filled with wonder and delight'),\n",
+ " ('charmed', 'filled with wonder and delight')]},\n",
+ " {'answer': 'belittling',\n",
+ " 'hint': 'synonyms for belittling',\n",
+ " 'clues': [('deprecating', 'tending to diminish or disparage'),\n",
+ " ('deprecative', 'tending to diminish or disparage'),\n",
+ " ('deprecatory', 'tending to diminish or disparage'),\n",
+ " ('slighting', 'tending to diminish or disparage')]},\n",
+ " {'answer': 'bellied',\n",
+ " 'hint': 'synonyms for bellied',\n",
+ " 'clues': [('bulging', 'curving outward'),\n",
+ " ('bulgy', 'curving outward'),\n",
+ " ('protuberant', 'curving outward'),\n",
+ " ('bellying', 'curving outward'),\n",
+ " ('bulbous', 'curving outward')]},\n",
+ " {'answer': 'belligerent',\n",
+ " 'hint': 'synonyms for belligerent',\n",
+ " 'clues': [('militant', 'engaged in war'),\n",
+ " ('warring', 'engaged in war'),\n",
+ " ('war-ridden', 'engaged in war'),\n",
+ " ('aggressive', 'characteristic of an enemy or one eager to fight')]},\n",
+ " {'answer': 'bellying',\n",
+ " 'hint': 'synonyms for bellying',\n",
+ " 'clues': [('bulging', 'curving outward'),\n",
+ " ('bulgy', 'curving outward'),\n",
+ " ('bellied', 'curving outward'),\n",
+ " ('protuberant', 'curving outward'),\n",
+ " ('bulbous', 'curving outward')]},\n",
+ " {'answer': 'bemused',\n",
+ " 'hint': 'synonyms for bemused',\n",
+ " 'clues': [('deep in thought', 'deeply absorbed in thought'),\n",
+ " ('at sea',\n",
+ " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n",
+ " ('preoccupied', 'deeply absorbed in thought'),\n",
+ " ('bewildered',\n",
+ " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n",
+ " ('mixed-up',\n",
+ " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n",
+ " ('mazed',\n",
+ " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n",
+ " ('lost', 'deeply absorbed in thought'),\n",
+ " ('baffled',\n",
+ " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n",
+ " ('confounded',\n",
+ " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n",
+ " ('confused',\n",
+ " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n",
+ " ('befuddled',\n",
+ " 'perplexed by many conflicting situations or statements; filled with bewilderment')]},\n",
+ " {'answer': 'benevolent',\n",
+ " 'hint': 'synonyms for benevolent',\n",
+ " 'clues': [('charitable',\n",
+ " 'showing or motivated by sympathy and understanding and generosity'),\n",
+ " ('freehearted', 'generous in providing aid to others'),\n",
+ " ('philanthropic', 'generous in assistance to the poor'),\n",
+ " ('eleemosynary', 'generous in assistance to the poor'),\n",
+ " ('large-hearted',\n",
+ " 'showing or motivated by sympathy and understanding and generosity'),\n",
+ " ('beneficent', 'generous in assistance to the poor'),\n",
+ " ('kindly',\n",
+ " 'showing or motivated by sympathy and understanding and generosity'),\n",
+ " ('sympathetic',\n",
+ " 'showing or motivated by sympathy and understanding and generosity'),\n",
+ " ('good-hearted',\n",
+ " 'showing or motivated by sympathy and understanding and generosity'),\n",
+ " ('openhearted',\n",
+ " 'showing or motivated by sympathy and understanding and generosity')]},\n",
+ " {'answer': 'bent',\n",
+ " 'hint': 'synonyms for bent',\n",
+ " 'clues': [('dead set', 'fixed in your purpose'),\n",
+ " ('dented', 'of metal e.g.'),\n",
+ " ('bent on', 'fixed in your purpose'),\n",
+ " ('bended', 'used of the back and knees; stooped'),\n",
+ " ('out to', 'fixed in your purpose'),\n",
+ " ('crumpled', 'of metal e.g.')]},\n",
+ " {'answer': 'bereaved',\n",
+ " 'hint': 'synonyms for bereaved',\n",
+ " 'clues': [('grieving', 'sorrowful through loss or deprivation'),\n",
+ " ('grief-stricken', 'sorrowful through loss or deprivation'),\n",
+ " ('bereft', 'sorrowful through loss or deprivation'),\n",
+ " ('sorrowing', 'sorrowful through loss or deprivation'),\n",
+ " ('mourning', 'sorrowful through loss or deprivation')]},\n",
+ " {'answer': 'bereft',\n",
+ " 'hint': 'synonyms for bereft',\n",
+ " 'clues': [('grieving', 'sorrowful through loss or deprivation'),\n",
+ " ('unbeloved', 'unhappy in love; suffering from unrequited love'),\n",
+ " ('grief-stricken', 'sorrowful through loss or deprivation'),\n",
+ " ('sorrowing', 'sorrowful through loss or deprivation'),\n",
+ " ('mourning', 'sorrowful through loss or deprivation'),\n",
+ " ('lovelorn', 'unhappy in love; suffering from unrequited love'),\n",
+ " ('bereaved', 'sorrowful through loss or deprivation')]},\n",
+ " {'answer': 'berserk',\n",
+ " 'hint': 'synonyms for berserk',\n",
+ " 'clues': [('amok', 'frenzied as if possessed by a demon'),\n",
+ " ('demoniacal', 'frenzied as if possessed by a demon'),\n",
+ " ('possessed', 'frenzied as if possessed by a demon'),\n",
+ " ('amuck', 'frenzied as if possessed by a demon')]},\n",
+ " {'answer': 'besotted',\n",
+ " 'hint': 'synonyms for besotted',\n",
+ " 'clues': [('pixilated', 'very drunk'),\n",
+ " ('sloshed', 'very drunk'),\n",
+ " ('tight', 'very drunk'),\n",
+ " ('pissed', 'very drunk'),\n",
+ " ('cockeyed', 'very drunk'),\n",
+ " ('smashed', 'very drunk'),\n",
+ " ('pie-eyed', 'very drunk'),\n",
+ " ('blind drunk', 'very drunk'),\n",
+ " ('crocked', 'very drunk'),\n",
+ " ('stiff', 'very drunk'),\n",
+ " ('slopped', 'very drunk'),\n",
+ " ('sozzled', 'very drunk'),\n",
+ " ('loaded', 'very drunk'),\n",
+ " ('soaked', 'very drunk'),\n",
+ " ('fuddled', 'very drunk'),\n",
+ " ('plastered', 'very drunk'),\n",
+ " ('blotto', 'very drunk'),\n",
+ " ('squiffy', 'very drunk'),\n",
+ " ('wet', 'very drunk'),\n",
+ " ('soused', 'very drunk')]},\n",
+ " {'answer': 'bespoke',\n",
+ " 'hint': 'synonyms for bespoke',\n",
+ " 'clues': [('tailor-made', '(of clothing) custom-made'),\n",
+ " ('made-to-order', '(of clothing) custom-made'),\n",
+ " ('tailored', '(of clothing) custom-made'),\n",
+ " ('bespoken', '(of clothing) custom-made')]},\n",
+ " {'answer': 'bespoken',\n",
+ " 'hint': 'synonyms for bespoken',\n",
+ " 'clues': [('tailor-made', '(of clothing) custom-made'),\n",
+ " ('made-to-order', '(of clothing) custom-made'),\n",
+ " ('tailored', '(of clothing) custom-made'),\n",
+ " ('betrothed', 'pledged to be married'),\n",
+ " ('bespoke', '(of clothing) custom-made')]},\n",
+ " {'answer': 'best',\n",
+ " 'hint': 'synonyms for best',\n",
+ " 'clues': [('in force', 'exerting force or influence'),\n",
+ " ('proficient', 'having or showing knowledge and skill and aptitude'),\n",
+ " ('unspoilt', 'not left to spoil'),\n",
+ " ('estimable', 'deserving of esteem and respect'),\n",
+ " ('honest', 'not forged'),\n",
+ " ('unspoiled', 'not left to spoil'),\n",
+ " ('dear', 'with or in a close or intimate relationship'),\n",
+ " ('beneficial', 'promoting or enhancing well-being'),\n",
+ " ('good', 'agreeable or pleasing'),\n",
+ " ('expert', 'having or showing knowledge and skill and aptitude'),\n",
+ " ('respectable', 'deserving of esteem and respect'),\n",
+ " ('upright', 'of moral excellence'),\n",
+ " ('dependable', 'financially sound'),\n",
+ " ('sound', 'in excellent physical condition'),\n",
+ " ('honorable', 'deserving of esteem and respect'),\n",
+ " ('skillful', 'having or showing knowledge and skill and aptitude'),\n",
+ " ('just', 'of moral excellence'),\n",
+ " ('secure', 'financially sound'),\n",
+ " ('in effect', 'exerting force or influence'),\n",
+ " ('ripe', 'most suitable or right for a particular purpose'),\n",
+ " ('well', 'resulting favorably'),\n",
+ " ('salutary',\n",
+ " 'tending to promote physical well-being; beneficial to health'),\n",
+ " ('serious', 'appealing to the mind'),\n",
+ " ('right', 'most suitable or right for a particular purpose'),\n",
+ " ('adept', 'having or showing knowledge and skill and aptitude'),\n",
+ " ('effective', 'exerting force or influence'),\n",
+ " ('practiced', 'having or showing knowledge and skill and aptitude'),\n",
+ " ('undecomposed', 'not left to spoil'),\n",
+ " ('near', 'with or in a close or intimate relationship'),\n",
+ " ('safe', 'financially sound'),\n",
+ " ('full', 'having the normally expected amount'),\n",
+ " ('better',\n",
+ " \"(comparative and superlative of `well') wiser or more advantageous and hence advisable\")]},\n",
+ " {'answer': 'best-loved',\n",
+ " 'hint': 'synonyms for best-loved',\n",
+ " 'clues': [('favored',\n",
+ " 'preferred above all others and treated with partiality'),\n",
+ " ('pet', 'preferred above all others and treated with partiality'),\n",
+ " ('preferent', 'preferred above all others and treated with partiality'),\n",
+ " ('favourite', 'preferred above all others and treated with partiality'),\n",
+ " ('preferred', 'preferred above all others and treated with partiality')]},\n",
+ " {'answer': 'bestial',\n",
+ " 'hint': 'synonyms for bestial',\n",
+ " 'clues': [('beastly',\n",
+ " 'resembling a beast; showing lack of human sensibility'),\n",
+ " ('brutal', 'resembling a beast; showing lack of human sensibility'),\n",
+ " ('brutish', 'resembling a beast; showing lack of human sensibility'),\n",
+ " ('brute', 'resembling a beast; showing lack of human sensibility')]},\n",
+ " {'answer': 'better',\n",
+ " 'hint': 'synonyms for better',\n",
+ " 'clues': [('in force', 'exerting force or influence'),\n",
+ " ('proficient', 'having or showing knowledge and skill and aptitude'),\n",
+ " ('unspoilt', 'not left to spoil'),\n",
+ " ('estimable', 'deserving of esteem and respect'),\n",
+ " ('honest', 'not forged'),\n",
+ " ('unspoiled', 'not left to spoil'),\n",
+ " ('dear', 'with or in a close or intimate relationship'),\n",
+ " ('beneficial', 'promoting or enhancing well-being'),\n",
+ " ('good', 'agreeable or pleasing'),\n",
+ " ('expert', 'having or showing knowledge and skill and aptitude'),\n",
+ " ('well', 'wise or advantageous and hence advisable'),\n",
+ " ('respectable', 'deserving of esteem and respect'),\n",
+ " ('upright', 'of moral excellence'),\n",
+ " ('dependable', 'financially sound'),\n",
+ " ('sound', 'in excellent physical condition'),\n",
+ " ('honorable', 'deserving of esteem and respect'),\n",
+ " ('best',\n",
+ " \"(comparative and superlative of `well') wiser or more advantageous and hence advisable\"),\n",
+ " ('skillful', 'having or showing knowledge and skill and aptitude'),\n",
+ " ('just', 'of moral excellence'),\n",
+ " ('secure', 'financially sound'),\n",
+ " ('in effect', 'exerting force or influence'),\n",
+ " ('ripe', 'most suitable or right for a particular purpose'),\n",
+ " ('salutary',\n",
+ " 'tending to promote physical well-being; beneficial to health'),\n",
+ " ('right', 'most suitable or right for a particular purpose'),\n",
+ " ('adept', 'having or showing knowledge and skill and aptitude'),\n",
+ " ('effective', 'exerting force or influence'),\n",
+ " ('practiced', 'having or showing knowledge and skill and aptitude'),\n",
+ " ('undecomposed', 'not left to spoil'),\n",
+ " ('near', 'with or in a close or intimate relationship'),\n",
+ " ('safe', 'financially sound'),\n",
+ " ('full', 'having the normally expected amount'),\n",
+ " ('serious', 'appealing to the mind')]},\n",
+ " {'answer': 'better-looking',\n",
+ " 'hint': 'synonyms for better-looking',\n",
+ " 'clues': [('fine-looking',\n",
+ " 'pleasing in appearance especially by reason of conformity to ideals of form and proportion; ; ; ; - Thackeray; - Lillian Hellman'),\n",
+ " ('well-favoured',\n",
+ " 'pleasing in appearance especially by reason of conformity to ideals of form and proportion; ; ; ; - Thackeray; - Lillian Hellman'),\n",
+ " ('good-looking',\n",
+ " 'pleasing in appearance especially by reason of conformity to ideals of form and proportion; ; ; ; - Thackeray; - Lillian Hellman'),\n",
+ " ('handsome',\n",
+ " 'pleasing in appearance especially by reason of conformity to ideals of form and proportion; ; ; ; - Thackeray; - Lillian Hellman')]},\n",
+ " {'answer': 'bewhiskered',\n",
+ " 'hint': 'synonyms for bewhiskered',\n",
+ " 'clues': [('bearded', 'having hair on the cheeks and chin'),\n",
+ " ('whiskery', 'having hair on the cheeks and chin'),\n",
+ " ('whiskered', 'having hair on the cheeks and chin'),\n",
+ " ('barbate', 'having hair on the cheeks and chin')]},\n",
+ " {'answer': 'bewildered',\n",
+ " 'hint': 'synonyms for bewildered',\n",
+ " 'clues': [('at sea',\n",
+ " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n",
+ " ('mixed-up',\n",
+ " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n",
+ " ('mazed',\n",
+ " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n",
+ " ('baffled',\n",
+ " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n",
+ " ('lost',\n",
+ " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n",
+ " ('bemused',\n",
+ " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n",
+ " ('confounded',\n",
+ " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n",
+ " ('confused',\n",
+ " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n",
+ " ('befuddled',\n",
+ " 'perplexed by many conflicting situations or statements; filled with bewilderment')]},\n",
+ " {'answer': 'bewitching',\n",
+ " 'hint': 'synonyms for bewitching',\n",
+ " 'clues': [('captivating', 'capturing interest as if by a spell'),\n",
+ " ('enchanting', 'capturing interest as if by a spell'),\n",
+ " ('fascinating', 'capturing interest as if by a spell'),\n",
+ " ('enthralling', 'capturing interest as if by a spell'),\n",
+ " ('entrancing', 'capturing interest as if by a spell')]},\n",
+ " {'answer': 'bicolor',\n",
+ " 'hint': 'synonyms for bicolor',\n",
+ " 'clues': [('bicolour', 'having two colors'),\n",
+ " ('bicolored', 'having two colors'),\n",
+ " ('dichromatic', 'having two colors'),\n",
+ " ('bichrome', 'having two colors')]},\n",
+ " {'answer': 'bicolour',\n",
+ " 'hint': 'synonyms for bicolour',\n",
+ " 'clues': [('bicoloured', 'having two colors'),\n",
+ " ('dichromatic', 'having two colors'),\n",
+ " ('bicolor', 'having two colors'),\n",
+ " ('bichrome', 'having two colors')]},\n",
+ " {'answer': 'bicoloured',\n",
+ " 'hint': 'synonyms for bicoloured',\n",
+ " 'clues': [('bicolour', 'having two colors'),\n",
+ " ('bicolored', 'having two colors'),\n",
+ " ('dichromatic', 'having two colors'),\n",
+ " ('bichrome', 'having two colors')]},\n",
+ " {'answer': 'bifurcate',\n",
+ " 'hint': 'synonyms for bifurcate',\n",
+ " 'clues': [('fork-like',\n",
+ " 'resembling a fork; divided or separated into two branches'),\n",
+ " ('forficate',\n",
+ " 'resembling a fork; divided or separated into two branches'),\n",
+ " ('pronged', 'resembling a fork; divided or separated into two branches'),\n",
+ " ('biramous', 'resembling a fork; divided or separated into two branches'),\n",
+ " ('forked', 'resembling a fork; divided or separated into two branches'),\n",
+ " ('prongy', 'resembling a fork; divided or separated into two branches'),\n",
+ " ('branched',\n",
+ " 'resembling a fork; divided or separated into two branches')]},\n",
+ " {'answer': 'big',\n",
+ " 'hint': 'synonyms for big',\n",
+ " 'clues': [('self-aggrandising', 'exhibiting self-importance'),\n",
+ " ('heavy', 'prodigious'),\n",
+ " ('boastful', 'exhibiting self-importance'),\n",
+ " ('giving', 'given or giving freely'),\n",
+ " ('with child', 'in an advanced stage of pregnancy'),\n",
+ " ('bragging', 'exhibiting self-importance'),\n",
+ " ('braggart', 'exhibiting self-importance'),\n",
+ " ('magnanimous', 'generous and understanding and tolerant'),\n",
+ " ('bighearted', 'given or giving freely'),\n",
+ " ('gravid', 'in an advanced stage of pregnancy'),\n",
+ " ('full-grown', '(of animals) fully developed'),\n",
+ " ('expectant', 'in an advanced stage of pregnancy'),\n",
+ " ('adult', '(of animals) fully developed'),\n",
+ " ('crowing', 'exhibiting self-importance'),\n",
+ " ('large',\n",
+ " 'above average in size or number or quantity or magnitude or extent'),\n",
+ " ('bounteous', 'given or giving freely'),\n",
+ " ('openhanded', 'given or giving freely'),\n",
+ " ('grown', '(of animals) fully developed'),\n",
+ " ('liberal', 'given or giving freely'),\n",
+ " ('bountiful', 'given or giving freely'),\n",
+ " ('handsome', 'given or giving freely'),\n",
+ " ('great', 'in an advanced stage of pregnancy'),\n",
+ " ('enceinte', 'in an advanced stage of pregnancy'),\n",
+ " ('vainglorious', 'feeling self-importance'),\n",
+ " ('cock-a-hoop', 'exhibiting self-importance'),\n",
+ " ('braggy', 'exhibiting self-importance'),\n",
+ " ('grownup', '(of animals) fully developed'),\n",
+ " ('prominent', 'conspicuous in position or importance'),\n",
+ " ('bad', 'very intense'),\n",
+ " ('swelled', 'feeling self-importance'),\n",
+ " ('freehanded', 'given or giving freely')]},\n",
+ " {'answer': 'bigger',\n",
+ " 'hint': 'synonyms for bigger',\n",
+ " 'clues': [('self-aggrandising', 'exhibiting self-importance'),\n",
+ " ('big', 'given or giving freely'),\n",
+ " ('heavy', 'prodigious'),\n",
+ " ('boastful', 'exhibiting self-importance'),\n",
+ " ('with child', 'in an advanced stage of pregnancy'),\n",
+ " ('bragging', 'exhibiting self-importance'),\n",
+ " ('magnanimous', 'generous and understanding and tolerant'),\n",
+ " ('gravid', 'in an advanced stage of pregnancy'),\n",
+ " ('full-grown', '(of animals) fully developed'),\n",
+ " ('expectant', 'in an advanced stage of pregnancy'),\n",
+ " ('crowing', 'exhibiting self-importance'),\n",
+ " ('large',\n",
+ " 'above average in size or number or quantity or magnitude or extent'),\n",
+ " ('bounteous', 'given or giving freely'),\n",
+ " ('openhanded', 'given or giving freely'),\n",
+ " ('liberal', 'given or giving freely'),\n",
+ " ('bountiful', 'given or giving freely'),\n",
+ " ('handsome', 'given or giving freely'),\n",
+ " ('great', 'in an advanced stage of pregnancy'),\n",
+ " ('prominent', 'conspicuous in position or importance'),\n",
+ " ('grownup', '(of animals) fully developed'),\n",
+ " ('swelled', 'feeling self-importance'),\n",
+ " ('freehanded', 'given or giving freely'),\n",
+ " ('braggart', 'exhibiting self-importance'),\n",
+ " ('bighearted', 'given or giving freely'),\n",
+ " ('adult', '(of animals) fully developed'),\n",
+ " ('grown', '(of animals) fully developed'),\n",
+ " ('enceinte', 'in an advanced stage of pregnancy'),\n",
+ " ('vainglorious', 'feeling self-importance'),\n",
+ " ('cock-a-hoop', 'exhibiting self-importance'),\n",
+ " ('braggy', 'exhibiting self-importance'),\n",
+ " ('giving', 'given or giving freely'),\n",
+ " ('bad', 'very intense')]},\n",
+ " {'answer': 'bigheaded',\n",
+ " 'hint': 'synonyms for bigheaded',\n",
+ " 'clues': [(\"too big for one's breeches\",\n",
+ " '(used colloquially) overly conceited or arrogant; -Laurent Le Sage'),\n",
+ " ('snooty',\n",
+ " '(used colloquially) overly conceited or arrogant; -Laurent Le Sage'),\n",
+ " ('snotty',\n",
+ " '(used colloquially) overly conceited or arrogant; -Laurent Le Sage'),\n",
+ " ('stuck-up',\n",
+ " '(used colloquially) overly conceited or arrogant; -Laurent Le Sage'),\n",
+ " ('persnickety',\n",
+ " '(used colloquially) overly conceited or arrogant; -Laurent Le Sage'),\n",
+ " ('snot-nosed',\n",
+ " '(used colloquially) overly conceited or arrogant; -Laurent Le Sage'),\n",
+ " ('uppish',\n",
+ " '(used colloquially) overly conceited or arrogant; -Laurent Le Sage')]},\n",
+ " {'answer': 'bighearted',\n",
+ " 'hint': 'synonyms for bighearted',\n",
+ " 'clues': [('bounteous', 'given or giving freely'),\n",
+ " ('big', 'given or giving freely'),\n",
+ " ('openhanded', 'given or giving freely'),\n",
+ " ('liberal', 'given or giving freely'),\n",
+ " ('bountiful', 'given or giving freely'),\n",
+ " ('handsome', 'given or giving freely'),\n",
+ " ('giving', 'given or giving freely'),\n",
+ " ('freehanded', 'given or giving freely')]},\n",
+ " {'answer': 'bilaterally_symmetrical',\n",
+ " 'hint': 'synonyms for bilaterally symmetrical',\n",
+ " 'clues': [('zygomorphous',\n",
+ " 'capable of division into symmetrical halves by only one longitudinal plane passing through the axis'),\n",
+ " ('zygomorphic',\n",
+ " 'capable of division into symmetrical halves by only one longitudinal plane passing through the axis'),\n",
+ " ('bilateral', 'having identical parts on each side of an axis'),\n",
+ " ('bilaterally symmetric',\n",
+ " 'having identical parts on each side of an axis')]},\n",
+ " {'answer': 'bilious',\n",
+ " 'hint': 'synonyms for bilious',\n",
+ " 'clues': [('liverish',\n",
+ " 'suffering from or suggesting a liver disorder or gastric distress'),\n",
+ " ('atrabilious', 'irritable as if suffering from indigestion'),\n",
+ " ('biliary', 'relating to or containing bile'),\n",
+ " ('livery',\n",
+ " 'suffering from or suggesting a liver disorder or gastric distress'),\n",
+ " ('dyspeptic', 'irritable as if suffering from indigestion')]},\n",
+ " {'answer': 'biramous',\n",
+ " 'hint': 'synonyms for biramous',\n",
+ " 'clues': [('bifurcate',\n",
+ " 'resembling a fork; divided or separated into two branches'),\n",
+ " ('forficate',\n",
+ " 'resembling a fork; divided or separated into two branches'),\n",
+ " ('pronged', 'resembling a fork; divided or separated into two branches'),\n",
+ " ('fork-like',\n",
+ " 'resembling a fork; divided or separated into two branches'),\n",
+ " ('forked', 'resembling a fork; divided or separated into two branches'),\n",
+ " ('prongy', 'resembling a fork; divided or separated into two branches'),\n",
+ " ('branched',\n",
+ " 'resembling a fork; divided or separated into two branches')]},\n",
+ " {'answer': 'bit-by-bit',\n",
+ " 'hint': 'synonyms for bit-by-bit',\n",
+ " 'clues': [('in small stages', 'one thing at a time'),\n",
+ " ('step-by-step', 'one thing at a time'),\n",
+ " ('stepwise', 'one thing at a time'),\n",
+ " ('piecemeal', 'one thing at a time')]},\n",
+ " {'answer': 'biting',\n",
+ " 'hint': 'synonyms for biting',\n",
+ " 'clues': [('barbed', 'capable of wounding'),\n",
+ " ('bitter',\n",
+ " 'causing a sharply painful or stinging sensation; used especially of cold'),\n",
+ " ('mordacious', 'capable of wounding'),\n",
+ " ('nipping', 'capable of wounding'),\n",
+ " ('pungent', 'capable of wounding')]},\n",
+ " {'answer': 'bitter',\n",
+ " 'hint': 'synonyms for bitter',\n",
+ " 'clues': [('acerb', 'harsh or corrosive in tone'),\n",
+ " ('acrid', 'harsh or corrosive in tone'),\n",
+ " ('acrimonious', 'marked by strong resentment or cynicism'),\n",
+ " ('acerbic', 'harsh or corrosive in tone'),\n",
+ " ('caustic', 'harsh or corrosive in tone'),\n",
+ " ('vitriolic', 'harsh or corrosive in tone'),\n",
+ " ('virulent', 'harsh or corrosive in tone'),\n",
+ " ('biting',\n",
+ " 'causing a sharply painful or stinging sensation; used especially of cold'),\n",
+ " ('sulphurous', 'harsh or corrosive in tone'),\n",
+ " ('sulfurous', 'harsh or corrosive in tone'),\n",
+ " ('blistering', 'harsh or corrosive in tone')]},\n",
+ " {'answer': 'bittie',\n",
+ " 'hint': 'synonyms for bittie',\n",
+ " 'clues': [('teeny', '(used informally) very small'),\n",
+ " ('weensy', '(used informally) very small'),\n",
+ " ('teentsy', '(used informally) very small'),\n",
+ " ('itsy-bitsy', '(used informally) very small'),\n",
+ " ('teeny-weeny', '(used informally) very small'),\n",
+ " ('bitty', '(used informally) very small'),\n",
+ " ('wee', '(used informally) very small'),\n",
+ " ('itty-bitty', '(used informally) very small')]},\n",
+ " {'answer': 'bitty',\n",
+ " 'hint': 'synonyms for bitty',\n",
+ " 'clues': [('teeny', '(used informally) very small'),\n",
+ " ('bittie', '(used informally) very small'),\n",
+ " ('weensy', '(used informally) very small'),\n",
+ " ('teentsy', '(used informally) very small'),\n",
+ " ('itsy-bitsy', '(used informally) very small'),\n",
+ " ('teeny-weeny', '(used informally) very small'),\n",
+ " ('wee', '(used informally) very small'),\n",
+ " ('itty-bitty', '(used informally) very small')]},\n",
+ " {'answer': 'biyearly',\n",
+ " 'hint': 'synonyms for biyearly',\n",
+ " 'clues': [('half-yearly', 'occurring or payable twice each year'),\n",
+ " ('semiannual', 'occurring or payable twice each year'),\n",
+ " ('biennial', 'occurring every second year'),\n",
+ " ('biannual', 'occurring or payable twice each year')]},\n",
+ " {'answer': 'bizarre',\n",
+ " 'hint': 'synonyms for bizarre',\n",
+ " 'clues': [('outlandish',\n",
+ " 'conspicuously or grossly unconventional or unusual'),\n",
+ " ('freaky', 'conspicuously or grossly unconventional or unusual'),\n",
+ " ('outre', 'conspicuously or grossly unconventional or unusual'),\n",
+ " ('flaky', 'conspicuously or grossly unconventional or unusual'),\n",
+ " ('eccentric', 'conspicuously or grossly unconventional or unusual'),\n",
+ " ('gonzo', 'conspicuously or grossly unconventional or unusual'),\n",
+ " ('freakish', 'conspicuously or grossly unconventional or unusual'),\n",
+ " ('off-the-wall', 'conspicuously or grossly unconventional or unusual')]},\n",
+ " {'answer': 'blabbermouthed',\n",
+ " 'hint': 'synonyms for blabbermouthed',\n",
+ " 'clues': [('talebearing', 'prone to communicate confidential information'),\n",
+ " ('blabby', 'unwisely talking too much'),\n",
+ " ('tattling', 'prone to communicate confidential information'),\n",
+ " ('talkative', 'unwisely talking too much'),\n",
+ " ('bigmouthed', 'unwisely talking too much'),\n",
+ " ('leaky', 'prone to communicate confidential information')]},\n",
+ " {'answer': 'black',\n",
+ " 'hint': 'synonyms for black',\n",
+ " 'clues': [('sinister',\n",
+ " 'stemming from evil characteristics or forces; wicked or dishonorable; ; ; ; ; ; ; -Thomas Hardy'),\n",
+ " ('pitch-black', 'extremely dark'),\n",
+ " ('bleak', 'offering little or no hope; ; ; - J.M.Synge'),\n",
+ " ('mordant', 'harshly ironic or sinister'),\n",
+ " ('smutty', 'soiled with dirt or soot'),\n",
+ " ('fatal',\n",
+ " '(of events) having extremely unfortunate or dire consequences; bringing ruin; ; ; ; - Charles Darwin; - Douglas MacArthur'),\n",
+ " ('contraband', 'distributed or sold illicitly'),\n",
+ " ('bootleg', 'distributed or sold illicitly'),\n",
+ " ('blackened',\n",
+ " '(of the face) made black especially as with suffused blood'),\n",
+ " ('opprobrious',\n",
+ " '(used of conduct or character) deserving or bringing disgrace or shame; - Rachel Carson'),\n",
+ " ('dim', 'offering little or no hope; ; ; - J.M.Synge'),\n",
+ " ('fateful',\n",
+ " '(of events) having extremely unfortunate or dire consequences; bringing ruin; ; ; ; - Charles Darwin; - Douglas MacArthur'),\n",
+ " ('grim', 'harshly ironic or sinister'),\n",
+ " ('black-market', 'distributed or sold illicitly'),\n",
+ " ('calamitous',\n",
+ " '(of events) having extremely unfortunate or dire consequences; bringing ruin; ; ; ; - Charles Darwin; - Douglas MacArthur'),\n",
+ " ('disastrous',\n",
+ " '(of events) having extremely unfortunate or dire consequences; bringing ruin; ; ; ; - Charles Darwin; - Douglas MacArthur'),\n",
+ " ('smuggled', 'distributed or sold illicitly'),\n",
+ " ('ignominious',\n",
+ " '(used of conduct or character) deserving or bringing disgrace or shame; - Rachel Carson'),\n",
+ " ('disgraceful',\n",
+ " '(used of conduct or character) deserving or bringing disgrace or shame; - Rachel Carson'),\n",
+ " ('shameful',\n",
+ " '(used of conduct or character) deserving or bringing disgrace or shame; - Rachel Carson'),\n",
+ " ('dark',\n",
+ " 'stemming from evil characteristics or forces; wicked or dishonorable; ; ; ; ; ; ; -Thomas Hardy'),\n",
+ " ('pitch-dark', 'extremely dark'),\n",
+ " ('inglorious',\n",
+ " '(used of conduct or character) deserving or bringing disgrace or shame; - Rachel Carson')]},\n",
+ " {'answer': 'black-market',\n",
+ " 'hint': 'synonyms for black-market',\n",
+ " 'clues': [('bootleg', 'distributed or sold illicitly'),\n",
+ " ('smuggled', 'distributed or sold illicitly'),\n",
+ " ('black', 'distributed or sold illicitly'),\n",
+ " ('contraband', 'distributed or sold illicitly')]},\n",
+ " {'answer': 'blamable',\n",
+ " 'hint': 'synonyms for blamable',\n",
+ " 'clues': [('blameworthy',\n",
+ " 'deserving blame or censure as being wrong or evil or injurious'),\n",
+ " ('censurable',\n",
+ " 'deserving blame or censure as being wrong or evil or injurious'),\n",
+ " ('culpable',\n",
+ " 'deserving blame or censure as being wrong or evil or injurious'),\n",
+ " ('blameful',\n",
+ " 'deserving blame or censure as being wrong or evil or injurious'),\n",
+ " ('blameable',\n",
+ " 'deserving blame or censure as being wrong or evil or injurious')]},\n",
+ " {'answer': 'blame',\n",
+ " 'hint': 'synonyms for blame',\n",
+ " 'clues': [('deuced', 'expletives used informally as intensifiers'),\n",
+ " ('goddam', 'expletives used informally as intensifiers'),\n",
+ " ('blasted', 'expletives used informally as intensifiers'),\n",
+ " ('blessed', 'expletives used informally as intensifiers'),\n",
+ " ('goddamned', 'expletives used informally as intensifiers'),\n",
+ " ('blamed', 'expletives used informally as intensifiers'),\n",
+ " ('darned', 'expletives used informally as intensifiers'),\n",
+ " ('damn', 'expletives used informally as intensifiers'),\n",
+ " ('damned', 'expletives used informally as intensifiers'),\n",
+ " ('infernal', 'expletives used informally as intensifiers')]},\n",
+ " {'answer': 'blameable',\n",
+ " 'hint': 'synonyms for blameable',\n",
+ " 'clues': [('blameworthy',\n",
+ " 'deserving blame or censure as being wrong or evil or injurious'),\n",
+ " ('censurable',\n",
+ " 'deserving blame or censure as being wrong or evil or injurious'),\n",
+ " ('blamable',\n",
+ " 'deserving blame or censure as being wrong or evil or injurious'),\n",
+ " ('culpable',\n",
+ " 'deserving blame or censure as being wrong or evil or injurious'),\n",
+ " ('blameful',\n",
+ " 'deserving blame or censure as being wrong or evil or injurious')]},\n",
+ " {'answer': 'blamed',\n",
+ " 'hint': 'synonyms for blamed',\n",
+ " 'clues': [('deuced', 'expletives used informally as intensifiers'),\n",
+ " ('goddam', 'expletives used informally as intensifiers'),\n",
+ " ('blasted', 'expletives used informally as intensifiers'),\n",
+ " ('blessed', 'expletives used informally as intensifiers'),\n",
+ " ('goddamned', 'expletives used informally as intensifiers'),\n",
+ " ('darned', 'expletives used informally as intensifiers'),\n",
+ " ('blame', 'expletives used informally as intensifiers'),\n",
+ " ('damn', 'expletives used informally as intensifiers'),\n",
+ " ('damned', 'expletives used informally as intensifiers'),\n",
+ " ('infernal', 'expletives used informally as intensifiers')]},\n",
+ " {'answer': 'blameful',\n",
+ " 'hint': 'synonyms for blameful',\n",
+ " 'clues': [('blameworthy',\n",
+ " 'deserving blame or censure as being wrong or evil or injurious'),\n",
+ " ('censurable',\n",
+ " 'deserving blame or censure as being wrong or evil or injurious'),\n",
+ " ('blamable',\n",
+ " 'deserving blame or censure as being wrong or evil or injurious'),\n",
+ " ('culpable',\n",
+ " 'deserving blame or censure as being wrong or evil or injurious')]},\n",
+ " {'answer': 'blameworthy',\n",
+ " 'hint': 'synonyms for blameworthy',\n",
+ " 'clues': [('censurable',\n",
+ " 'deserving blame or censure as being wrong or evil or injurious'),\n",
+ " ('blamable',\n",
+ " 'deserving blame or censure as being wrong or evil or injurious'),\n",
+ " ('culpable',\n",
+ " 'deserving blame or censure as being wrong or evil or injurious'),\n",
+ " ('blameful',\n",
+ " 'deserving blame or censure as being wrong or evil or injurious')]},\n",
+ " {'answer': 'blanched',\n",
+ " 'hint': 'synonyms for blanched',\n",
+ " 'clues': [('etiolated',\n",
+ " '(especially of plants) developed without chlorophyll by being deprived of light'),\n",
+ " ('white',\n",
+ " 'anemic looking from illness or emotion; ; ; ; ; - Mary W. Shelley'),\n",
+ " ('bloodless',\n",
+ " 'anemic looking from illness or emotion; ; ; ; ; - Mary W. Shelley'),\n",
+ " ('livid',\n",
+ " 'anemic looking from illness or emotion; ; ; ; ; - Mary W. Shelley'),\n",
+ " ('ashen',\n",
+ " 'anemic looking from illness or emotion; ; ; ; ; - Mary W. Shelley')]},\n",
+ " {'answer': 'bland',\n",
+ " 'hint': 'synonyms for bland',\n",
+ " 'clues': [('vapid', 'lacking taste or flavor or tang'),\n",
+ " ('savourless', 'lacking taste or flavor or tang'),\n",
+ " ('suave',\n",
+ " 'smoothly agreeable and courteous with a degree of sophistication'),\n",
+ " ('flat', 'lacking stimulating characteristics; uninteresting'),\n",
+ " ('smooth',\n",
+ " 'smoothly agreeable and courteous with a degree of sophistication'),\n",
+ " ('politic',\n",
+ " 'smoothly agreeable and courteous with a degree of sophistication'),\n",
+ " ('flavorless', 'lacking taste or flavor or tang'),\n",
+ " ('insipid', 'lacking taste or flavor or tang')]},\n",
+ " {'answer': 'blanket',\n",
+ " 'hint': 'synonyms for blanket',\n",
+ " 'clues': [('wide', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n",
+ " ('all-inclusive', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n",
+ " ('all-embracing', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n",
+ " ('panoptic', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n",
+ " ('across-the-board', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n",
+ " ('encompassing', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n",
+ " ('extensive', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n",
+ " ('broad', 'broad in scope or content; ; ; ; ; - T.G.Winner')]},\n",
+ " {'answer': 'blasted',\n",
+ " 'hint': 'synonyms for blasted',\n",
+ " 'clues': [('deuced', 'expletives used informally as intensifiers'),\n",
+ " ('goddam', 'expletives used informally as intensifiers'),\n",
+ " ('goddamned', 'expletives used informally as intensifiers'),\n",
+ " ('blessed', 'expletives used informally as intensifiers'),\n",
+ " ('blamed', 'expletives used informally as intensifiers'),\n",
+ " ('darned', 'expletives used informally as intensifiers'),\n",
+ " ('damn', 'expletives used informally as intensifiers'),\n",
+ " ('damned', 'expletives used informally as intensifiers'),\n",
+ " ('infernal', 'expletives used informally as intensifiers')]},\n",
+ " {'answer': 'blatant',\n",
+ " 'hint': 'synonyms for blatant',\n",
+ " 'clues': [('strident',\n",
+ " 'conspicuously and offensively loud; given to vehement outcry'),\n",
+ " ('clamant',\n",
+ " 'conspicuously and offensively loud; given to vehement outcry'),\n",
+ " ('clamorous',\n",
+ " 'conspicuously and offensively loud; given to vehement outcry'),\n",
+ " ('conspicuous', 'without any attempt at concealment; completely obvious'),\n",
+ " ('blazing', 'without any attempt at concealment; completely obvious'),\n",
+ " ('vociferous',\n",
+ " 'conspicuously and offensively loud; given to vehement outcry')]},\n",
+ " {'answer': 'blazing',\n",
+ " 'hint': 'synonyms for blazing',\n",
+ " 'clues': [('conspicuous',\n",
+ " 'without any attempt at concealment; completely obvious'),\n",
+ " ('dazzling', 'shining intensely'),\n",
+ " ('blatant', 'without any attempt at concealment; completely obvious'),\n",
+ " ('fulgent', 'shining intensely'),\n",
+ " ('blinding', 'shining intensely'),\n",
+ " ('glary', 'shining intensely'),\n",
+ " ('glaring', 'shining intensely')]},\n",
+ " {'answer': 'bleached',\n",
+ " 'hint': 'synonyms for bleached',\n",
+ " 'clues': [('washy', 'having lost freshness or brilliance of color'),\n",
+ " ('coloured', '(used of color) artificially produced; not natural'),\n",
+ " ('washed-out', 'having lost freshness or brilliance of color'),\n",
+ " ('faded', 'having lost freshness or brilliance of color'),\n",
+ " ('dyed', '(used of color) artificially produced; not natural')]},\n",
+ " {'answer': 'bleak',\n",
+ " 'hint': 'synonyms for bleak',\n",
+ " 'clues': [('cutting', 'unpleasantly cold and damp'),\n",
+ " ('stark', 'providing no shelter or sustenance'),\n",
+ " ('raw', 'unpleasantly cold and damp'),\n",
+ " ('black', 'offering little or no hope; ; ; - J.M.Synge'),\n",
+ " ('barren', 'providing no shelter or sustenance'),\n",
+ " ('dim', 'offering little or no hope; ; ; - J.M.Synge'),\n",
+ " ('bare', 'providing no shelter or sustenance'),\n",
+ " ('desolate', 'providing no shelter or sustenance')]},\n",
+ " {'answer': 'bleary',\n",
+ " 'hint': 'synonyms for bleary',\n",
+ " 'clues': [('foggy', 'indistinct or hazy in outline'),\n",
+ " ('blear', 'tired to the point of exhaustion'),\n",
+ " ('blurry', 'indistinct or hazy in outline'),\n",
+ " ('fuzzy', 'indistinct or hazy in outline'),\n",
+ " ('blurred', 'indistinct or hazy in outline'),\n",
+ " ('blear-eyed', 'tired to the point of exhaustion'),\n",
+ " ('hazy', 'indistinct or hazy in outline'),\n",
+ " ('muzzy', 'indistinct or hazy in outline')]},\n",
+ " {'answer': 'blessed',\n",
+ " 'hint': 'synonyms for blessed',\n",
+ " 'clues': [('beatified',\n",
+ " 'Roman Catholic; proclaimed one of the blessed and thus worthy of veneration'),\n",
+ " ('deuced', 'expletives used informally as intensifiers'),\n",
+ " ('goddam', 'expletives used informally as intensifiers'),\n",
+ " ('blasted', 'expletives used informally as intensifiers'),\n",
+ " ('goddamned', 'expletives used informally as intensifiers'),\n",
+ " ('blamed', 'expletives used informally as intensifiers'),\n",
+ " ('darned', 'expletives used informally as intensifiers'),\n",
+ " ('blest', 'highly favored or fortunate (as e.g. by divine grace)'),\n",
+ " ('damn', 'expletives used informally as intensifiers'),\n",
+ " ('damned', 'expletives used informally as intensifiers'),\n",
+ " ('infernal', 'expletives used informally as intensifiers')]},\n",
+ " {'answer': 'blind_drunk',\n",
+ " 'hint': 'synonyms for blind drunk',\n",
+ " 'clues': [('pixilated', 'very drunk'),\n",
+ " ('sloshed', 'very drunk'),\n",
+ " ('tight', 'very drunk'),\n",
+ " ('pissed', 'very drunk'),\n",
+ " ('cockeyed', 'very drunk'),\n",
+ " ('besotted', 'very drunk'),\n",
+ " ('smashed', 'very drunk'),\n",
+ " ('pie-eyed', 'very drunk'),\n",
+ " ('crocked', 'very drunk'),\n",
+ " ('stiff', 'very drunk'),\n",
+ " ('slopped', 'very drunk'),\n",
+ " ('sozzled', 'very drunk'),\n",
+ " ('loaded', 'very drunk'),\n",
+ " ('soaked', 'very drunk'),\n",
+ " ('fuddled', 'very drunk'),\n",
+ " ('plastered', 'very drunk'),\n",
+ " ('blotto', 'very drunk'),\n",
+ " ('squiffy', 'very drunk'),\n",
+ " ('wet', 'very drunk'),\n",
+ " ('soused', 'very drunk')]},\n",
+ " {'answer': 'blinding',\n",
+ " 'hint': 'synonyms for blinding',\n",
+ " 'clues': [('dazzling', 'shining intensely'),\n",
+ " ('blazing', 'shining intensely'),\n",
+ " ('fulgent', 'shining intensely'),\n",
+ " ('glary', 'shining intensely'),\n",
+ " ('glaring', 'shining intensely')]},\n",
+ " {'answer': 'blinking',\n",
+ " 'hint': 'synonyms for blinking',\n",
+ " 'clues': [('crashing', 'informal intensifiers'),\n",
+ " ('winking', 'closing the eyes intermittently and rapidly'),\n",
+ " ('flaming', 'informal intensifiers'),\n",
+ " ('bally', 'informal intensifiers'),\n",
+ " ('fucking', 'informal intensifiers'),\n",
+ " ('bloody', 'informal intensifiers'),\n",
+ " ('blooming', 'informal intensifiers')]},\n",
+ " {'answer': 'blistering',\n",
+ " 'hint': 'synonyms for blistering',\n",
+ " 'clues': [('acerb', 'harsh or corrosive in tone'),\n",
+ " ('hot', 'very fast; capable of quick response and great speed'),\n",
+ " ('acrid', 'harsh or corrosive in tone'),\n",
+ " ('blistery', 'hot enough to raise (or as if to raise) blisters'),\n",
+ " ('acerbic', 'harsh or corrosive in tone'),\n",
+ " ('caustic', 'harsh or corrosive in tone'),\n",
+ " ('vitriolic', 'harsh or corrosive in tone'),\n",
+ " ('virulent', 'harsh or corrosive in tone'),\n",
+ " ('sulphurous', 'harsh or corrosive in tone'),\n",
+ " ('sulfurous', 'harsh or corrosive in tone'),\n",
+ " ('bitter', 'harsh or corrosive in tone'),\n",
+ " ('red-hot', 'very fast; capable of quick response and great speed')]},\n",
+ " {'answer': 'blockheaded',\n",
+ " 'hint': 'synonyms for blockheaded',\n",
+ " 'clues': [('fatheaded', '(used informally) stupid'),\n",
+ " ('duncical', '(used informally) stupid'),\n",
+ " ('thickheaded', '(used informally) stupid'),\n",
+ " ('thick', '(used informally) stupid'),\n",
+ " ('thick-skulled', '(used informally) stupid'),\n",
+ " ('duncish', '(used informally) stupid'),\n",
+ " ('loggerheaded', '(used informally) stupid'),\n",
+ " ('boneheaded', '(used informally) stupid'),\n",
+ " ('wooden-headed', '(used informally) stupid')]},\n",
+ " {'answer': 'blood-red',\n",
+ " 'hint': 'synonyms for blood-red',\n",
+ " 'clues': [('ruddy',\n",
+ " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n",
+ " ('cerise',\n",
+ " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n",
+ " ('ruby-red',\n",
+ " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n",
+ " ('ruby',\n",
+ " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n",
+ " ('cherry',\n",
+ " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n",
+ " ('carmine',\n",
+ " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n",
+ " ('crimson',\n",
+ " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n",
+ " ('scarlet',\n",
+ " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n",
+ " ('reddish',\n",
+ " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n",
+ " ('cherry-red',\n",
+ " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n",
+ " ('red',\n",
+ " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies')]},\n",
+ " {'answer': 'bloodless',\n",
+ " 'hint': 'synonyms for bloodless',\n",
+ " 'clues': [('exsanguinous',\n",
+ " 'destitute of blood or apparently so; - John Dryden'),\n",
+ " ('white',\n",
+ " 'anemic looking from illness or emotion; ; ; ; ; - Mary W. Shelley'),\n",
+ " ('livid',\n",
+ " 'anemic looking from illness or emotion; ; ; ; ; - Mary W. Shelley'),\n",
+ " ('exsanguine', 'destitute of blood or apparently so; - John Dryden'),\n",
+ " ('ashen',\n",
+ " 'anemic looking from illness or emotion; ; ; ; ; - Mary W. Shelley'),\n",
+ " ('blanched',\n",
+ " 'anemic looking from illness or emotion; ; ; ; ; - Mary W. Shelley')]},\n",
+ " {'answer': 'bloody',\n",
+ " 'hint': 'synonyms for bloody',\n",
+ " 'clues': [('crashing', 'informal intensifiers'),\n",
+ " ('flaming', 'informal intensifiers'),\n",
+ " ('bally', 'informal intensifiers'),\n",
+ " ('fucking', 'informal intensifiers'),\n",
+ " ('blinking', 'informal intensifiers'),\n",
+ " ('blooming', 'informal intensifiers')]},\n",
+ " {'answer': 'blooming',\n",
+ " 'hint': 'synonyms for blooming',\n",
+ " 'clues': [('crashing', 'informal intensifiers'),\n",
+ " ('flaming', 'informal intensifiers'),\n",
+ " ('bally', 'informal intensifiers'),\n",
+ " ('bloody', 'informal intensifiers'),\n",
+ " ('blinking', 'informal intensifiers'),\n",
+ " ('fucking', 'informal intensifiers')]},\n",
+ " {'answer': 'blotto',\n",
+ " 'hint': 'synonyms for blotto',\n",
+ " 'clues': [('pixilated', 'very drunk'),\n",
+ " ('sloshed', 'very drunk'),\n",
+ " ('tight', 'very drunk'),\n",
+ " ('pissed', 'very drunk'),\n",
+ " ('cockeyed', 'very drunk'),\n",
+ " ('besotted', 'very drunk'),\n",
+ " ('smashed', 'very drunk'),\n",
+ " ('pie-eyed', 'very drunk'),\n",
+ " ('blind drunk', 'very drunk'),\n",
+ " ('crocked', 'very drunk'),\n",
+ " ('stiff', 'very drunk'),\n",
+ " ('slopped', 'very drunk'),\n",
+ " ('sozzled', 'very drunk'),\n",
+ " ('loaded', 'very drunk'),\n",
+ " ('soaked', 'very drunk'),\n",
+ " ('fuddled', 'very drunk'),\n",
+ " ('plastered', 'very drunk'),\n",
+ " ('squiffy', 'very drunk'),\n",
+ " ('wet', 'very drunk'),\n",
+ " ('soused', 'very drunk')]},\n",
+ " {'answer': 'blue',\n",
+ " 'hint': 'synonyms for blue',\n",
+ " 'clues': [('drab', 'causing dejection'),\n",
+ " ('bluish',\n",
+ " 'of the color intermediate between green and violet; having a color similar to that of a clear unclouded sky; - Helen Hunt Jackson'),\n",
+ " ('spicy', 'suggestive of sexual impropriety'),\n",
+ " ('gentle',\n",
+ " 'belonging to or characteristic of the nobility or aristocracy'),\n",
+ " ('puritanical', 'morally rigorous and strict'),\n",
+ " ('blue-blooded',\n",
+ " 'belonging to or characteristic of the nobility or aristocracy'),\n",
+ " ('depressed', 'filled with melancholy and despondency'),\n",
+ " ('dispirited', 'filled with melancholy and despondency'),\n",
+ " ('grim', 'filled with melancholy and despondency'),\n",
+ " ('patrician',\n",
+ " 'belonging to or characteristic of the nobility or aristocracy'),\n",
+ " ('juicy', 'suggestive of sexual impropriety'),\n",
+ " ('profane', 'characterized by profanity or cursing'),\n",
+ " ('aristocratic',\n",
+ " 'belonging to or characteristic of the nobility or aristocracy'),\n",
+ " ('naughty', 'suggestive of sexual impropriety'),\n",
+ " ('risque', 'suggestive of sexual impropriety'),\n",
+ " ('low', 'filled with melancholy and despondency'),\n",
+ " ('gloomy', 'filled with melancholy and despondency'),\n",
+ " ('disconsolate', 'causing dejection'),\n",
+ " ('dark', 'causing dejection'),\n",
+ " ('down', 'filled with melancholy and despondency'),\n",
+ " ('low-spirited', 'filled with melancholy and despondency'),\n",
+ " ('downhearted', 'filled with melancholy and despondency'),\n",
+ " ('down in the mouth', 'filled with melancholy and despondency'),\n",
+ " ('gamey', 'suggestive of sexual impropriety'),\n",
+ " ('racy', 'suggestive of sexual impropriety'),\n",
+ " ('blasphemous', 'characterized by profanity or cursing'),\n",
+ " ('dismal', 'causing dejection'),\n",
+ " ('sorry', 'causing dejection'),\n",
+ " ('downcast', 'filled with melancholy and despondency'),\n",
+ " ('dreary', 'causing dejection'),\n",
+ " ('dingy', 'causing dejection')]},\n",
+ " {'answer': 'blue-blooded',\n",
+ " 'hint': 'synonyms for blue-blooded',\n",
+ " 'clues': [('patrician',\n",
+ " 'belonging to or characteristic of the nobility or aristocracy'),\n",
+ " ('aristocratical',\n",
+ " 'belonging to or characteristic of the nobility or aristocracy'),\n",
+ " ('blue', 'belonging to or characteristic of the nobility or aristocracy'),\n",
+ " ('gentle',\n",
+ " 'belonging to or characteristic of the nobility or aristocracy')]},\n",
+ " {'answer': 'blunt',\n",
+ " 'hint': 'synonyms for blunt',\n",
+ " 'clues': [('plainspoken',\n",
+ " 'characterized by directness in manner or speech; without subtlety or evasion'),\n",
+ " ('crude', 'devoid of any qualifications or disguise or adornment'),\n",
+ " ('straight-from-the-shoulder',\n",
+ " 'characterized by directness in manner or speech; without subtlety or evasion'),\n",
+ " ('forthright',\n",
+ " 'characterized by directness in manner or speech; without subtlety or evasion'),\n",
+ " ('free-spoken',\n",
+ " 'characterized by directness in manner or speech; without subtlety or evasion'),\n",
+ " ('point-blank',\n",
+ " 'characterized by directness in manner or speech; without subtlety or evasion'),\n",
+ " ('outspoken',\n",
+ " 'characterized by directness in manner or speech; without subtlety or evasion'),\n",
+ " ('candid',\n",
+ " 'characterized by directness in manner or speech; without subtlety or evasion'),\n",
+ " ('stark', 'devoid of any qualifications or disguise or adornment'),\n",
+ " ('frank',\n",
+ " 'characterized by directness in manner or speech; without subtlety or evasion')]},\n",
+ " {'answer': 'blurred',\n",
+ " 'hint': 'synonyms for blurred',\n",
+ " 'clues': [('hazy', 'indistinct or hazy in outline'),\n",
+ " ('bleary', 'indistinct or hazy in outline'),\n",
+ " ('muzzy', 'indistinct or hazy in outline'),\n",
+ " ('foggy', 'indistinct or hazy in outline'),\n",
+ " ('clouded', 'unclear in form or expression; ; - H.G.Wells'),\n",
+ " ('blurry', 'indistinct or hazy in outline'),\n",
+ " ('fuzzy', 'indistinct or hazy in outline')]},\n",
+ " {'answer': 'blurry',\n",
+ " 'hint': 'synonyms for blurry',\n",
+ " 'clues': [('hazy', 'indistinct or hazy in outline'),\n",
+ " ('bleary', 'indistinct or hazy in outline'),\n",
+ " ('muzzy', 'indistinct or hazy in outline'),\n",
+ " ('foggy', 'indistinct or hazy in outline'),\n",
+ " ('blurred', 'indistinct or hazy in outline'),\n",
+ " ('fuzzy', 'indistinct or hazy in outline')]},\n",
+ " {'answer': 'boastful',\n",
+ " 'hint': 'synonyms for boastful',\n",
+ " 'clues': [('self-aggrandising', 'exhibiting self-importance'),\n",
+ " ('big', 'exhibiting self-importance'),\n",
+ " ('bragging', 'exhibiting self-importance'),\n",
+ " ('braggart', 'exhibiting self-importance'),\n",
+ " ('cock-a-hoop', 'exhibiting self-importance'),\n",
+ " ('braggy', 'exhibiting self-importance'),\n",
+ " ('crowing', 'exhibiting self-importance')]},\n",
+ " {'answer': 'bodacious',\n",
+ " 'hint': 'synonyms for bodacious',\n",
+ " 'clues': [('brazen',\n",
+ " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n",
+ " ('insolent',\n",
+ " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n",
+ " ('barefaced',\n",
+ " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n",
+ " ('bald-faced',\n",
+ " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n",
+ " ('brazen-faced',\n",
+ " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n",
+ " ('audacious',\n",
+ " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n",
+ " ('brassy',\n",
+ " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell')]},\n",
+ " {'answer': 'bodied',\n",
+ " 'hint': 'synonyms for bodied',\n",
+ " 'clues': [('embodied',\n",
+ " 'possessing or existing in bodily form; - Shakespeare'),\n",
+ " ('corporal', 'possessing or existing in bodily form; - Shakespeare'),\n",
+ " ('incarnate', 'possessing or existing in bodily form; - Shakespeare'),\n",
+ " ('corporate', 'possessing or existing in bodily form; - Shakespeare')]},\n",
+ " {'answer': 'bodiless',\n",
+ " 'hint': 'synonyms for bodiless',\n",
+ " 'clues': [('discorporate', 'not having a material body'),\n",
+ " ('unembodied', 'not having a material body'),\n",
+ " ('bodyless', 'having no trunk or main part'),\n",
+ " ('disembodied', 'not having a material body')]},\n",
+ " {'answer': 'boggy',\n",
+ " 'hint': 'synonyms for boggy',\n",
+ " 'clues': [('sloughy', '(of soil) soft and watery'),\n",
+ " ('squashy', '(of soil) soft and watery'),\n",
+ " ('marshy', '(of soil) soft and watery'),\n",
+ " ('soggy', '(of soil) soft and watery'),\n",
+ " ('waterlogged', '(of soil) soft and watery'),\n",
+ " ('muddy', '(of soil) soft and watery'),\n",
+ " ('sloppy', '(of soil) soft and watery'),\n",
+ " ('swampy', '(of soil) soft and watery'),\n",
+ " ('mucky', '(of soil) soft and watery'),\n",
+ " ('miry', '(of soil) soft and watery'),\n",
+ " ('quaggy', '(of soil) soft and watery')]},\n",
+ " {'answer': 'boisterous',\n",
+ " 'hint': 'synonyms for boisterous',\n",
+ " 'clues': [('robustious', 'noisy and lacking in restraint or discipline'),\n",
+ " ('fierce', 'violently agitated and turbulent; ; - Ezra Pound'),\n",
+ " ('unruly', 'noisy and lacking in restraint or discipline'),\n",
+ " ('rough', 'violently agitated and turbulent; ; - Ezra Pound'),\n",
+ " ('rambunctious', 'noisy and lacking in restraint or discipline'),\n",
+ " ('knockabout', 'full of rough and exuberant animal spirits')]},\n",
+ " {'answer': 'bombastic',\n",
+ " 'hint': 'synonyms for bombastic',\n",
+ " 'clues': [('turgid', 'ostentatiously lofty in style'),\n",
+ " ('large', 'ostentatiously lofty in style'),\n",
+ " ('declamatory', 'ostentatiously lofty in style'),\n",
+ " ('tumid', 'ostentatiously lofty in style'),\n",
+ " ('orotund', 'ostentatiously lofty in style')]},\n",
+ " {'answer': 'boneheaded',\n",
+ " 'hint': 'synonyms for boneheaded',\n",
+ " 'clues': [('fatheaded', '(used informally) stupid'),\n",
+ " ('duncical', '(used informally) stupid'),\n",
+ " ('thickheaded', '(used informally) stupid'),\n",
+ " ('thick', '(used informally) stupid'),\n",
+ " ('thick-skulled', '(used informally) stupid'),\n",
+ " ('blockheaded', '(used informally) stupid'),\n",
+ " ('duncish', '(used informally) stupid'),\n",
+ " ('loggerheaded', '(used informally) stupid'),\n",
+ " ('wooden-headed', '(used informally) stupid')]},\n",
+ " {'answer': 'boney',\n",
+ " 'hint': 'synonyms for boney',\n",
+ " 'clues': [('scraggy', 'being very thin'),\n",
+ " ('underweight', 'being very thin'),\n",
+ " ('weedy', 'being very thin'),\n",
+ " ('bony', 'having bones especially many or prominent bones'),\n",
+ " ('skinny', 'being very thin'),\n",
+ " ('scrawny', 'being very thin')]},\n",
+ " {'answer': 'bonkers',\n",
+ " 'hint': 'synonyms for bonkers',\n",
+ " 'clues': [('crackers', 'informal or slang terms for mentally irregular'),\n",
+ " ('nuts', 'informal or slang terms for mentally irregular'),\n",
+ " ('loony', 'informal or slang terms for mentally irregular'),\n",
+ " ('dotty', 'informal or slang terms for mentally irregular'),\n",
+ " ('batty', 'informal or slang terms for mentally irregular'),\n",
+ " ('cracked', 'informal or slang terms for mentally irregular'),\n",
+ " ('balmy', 'informal or slang terms for mentally irregular'),\n",
+ " ('bats', 'informal or slang terms for mentally irregular'),\n",
+ " ('barmy', 'informal or slang terms for mentally irregular'),\n",
+ " ('wacky', 'informal or slang terms for mentally irregular'),\n",
+ " ('daft', 'informal or slang terms for mentally irregular'),\n",
+ " ('loco', 'informal or slang terms for mentally irregular'),\n",
+ " ('nutty', 'informal or slang terms for mentally irregular'),\n",
+ " ('haywire', 'informal or slang terms for mentally irregular'),\n",
+ " ('buggy', 'informal or slang terms for mentally irregular'),\n",
+ " ('kookie', 'informal or slang terms for mentally irregular'),\n",
+ " ('fruity', 'informal or slang terms for mentally irregular'),\n",
+ " ('round the bend', 'informal or slang terms for mentally irregular'),\n",
+ " ('kooky', 'informal or slang terms for mentally irregular'),\n",
+ " ('loopy', 'informal or slang terms for mentally irregular')]},\n",
+ " {'answer': 'bonnie',\n",
+ " 'hint': 'synonyms for bonnie',\n",
+ " 'clues': [('comely', 'very pleasing to the eye'),\n",
+ " ('sightly', 'very pleasing to the eye'),\n",
+ " ('fair', 'very pleasing to the eye'),\n",
+ " ('bonny', 'very pleasing to the eye')]},\n",
+ " {'answer': 'bonny',\n",
+ " 'hint': 'synonyms for bonny',\n",
+ " 'clues': [('comely', 'very pleasing to the eye'),\n",
+ " ('sightly', 'very pleasing to the eye'),\n",
+ " ('bonnie', 'very pleasing to the eye'),\n",
+ " ('fair', 'very pleasing to the eye')]},\n",
+ " {'answer': 'bony',\n",
+ " 'hint': 'synonyms for bony',\n",
+ " 'clues': [('skeletal',\n",
+ " 'very thin especially from disease or hunger or cold'),\n",
+ " ('osteal', 'composed of or containing bone'),\n",
+ " ('emaciated', 'very thin especially from disease or hunger or cold'),\n",
+ " ('cadaverous', 'very thin especially from disease or hunger or cold'),\n",
+ " ('haggard', 'very thin especially from disease or hunger or cold'),\n",
+ " ('osseous', 'composed of or containing bone'),\n",
+ " ('boney', 'having bones especially many or prominent bones'),\n",
+ " ('gaunt', 'very thin especially from disease or hunger or cold'),\n",
+ " ('pinched', 'very thin especially from disease or hunger or cold'),\n",
+ " ('wasted', 'very thin especially from disease or hunger or cold')]},\n",
+ " {'answer': 'booming',\n",
+ " 'hint': 'synonyms for booming',\n",
+ " 'clues': [('palmy', 'very lively and profitable'),\n",
+ " ('prospering', 'very lively and profitable'),\n",
+ " ('prosperous', 'very lively and profitable'),\n",
+ " ('flourishing', 'very lively and profitable'),\n",
+ " ('roaring', 'very lively and profitable'),\n",
+ " ('stentorian', 'used of the voice'),\n",
+ " ('thriving', 'very lively and profitable')]},\n",
+ " {'answer': 'boorish',\n",
+ " 'hint': 'synonyms for boorish',\n",
+ " 'clues': [('oafish',\n",
+ " 'ill-mannered and coarse and contemptible in behavior or appearance'),\n",
+ " ('swinish',\n",
+ " 'ill-mannered and coarse and contemptible in behavior or appearance'),\n",
+ " ('neanderthal',\n",
+ " 'ill-mannered and coarse and contemptible in behavior or appearance'),\n",
+ " ('loutish',\n",
+ " 'ill-mannered and coarse and contemptible in behavior or appearance')]},\n",
+ " {'answer': 'bootleg',\n",
+ " 'hint': 'synonyms for bootleg',\n",
+ " 'clues': [('contraband', 'distributed or sold illicitly'),\n",
+ " ('smuggled', 'distributed or sold illicitly'),\n",
+ " ('black', 'distributed or sold illicitly'),\n",
+ " ('black-market', 'distributed or sold illicitly')]},\n",
+ " {'answer': 'bootless',\n",
+ " 'hint': 'synonyms for bootless',\n",
+ " 'clues': [('fruitless', 'unproductive of success'),\n",
+ " ('vain', 'unproductive of success'),\n",
+ " ('futile', 'unproductive of success'),\n",
+ " ('sleeveless', 'unproductive of success')]},\n",
+ " {'answer': 'bootlicking',\n",
+ " 'hint': 'synonyms for bootlicking',\n",
+ " 'clues': [('fawning',\n",
+ " 'attempting to win favor from influential people by flattery'),\n",
+ " ('obsequious',\n",
+ " 'attempting to win favor from influential people by flattery'),\n",
+ " ('toadyish', 'attempting to win favor by flattery'),\n",
+ " ('sycophantic', 'attempting to win favor by flattery')]},\n",
+ " {'answer': 'boring',\n",
+ " 'hint': 'synonyms for boring',\n",
+ " 'clues': [('slow',\n",
+ " 'so lacking in interest as to cause mental weariness; ; ; ; ; ; - Edmund Burke; ; - Mark Twain'),\n",
+ " ('tiresome',\n",
+ " 'so lacking in interest as to cause mental weariness; ; ; ; ; ; - Edmund Burke; ; - Mark Twain'),\n",
+ " ('irksome',\n",
+ " 'so lacking in interest as to cause mental weariness; ; ; ; ; ; - Edmund Burke; ; - Mark Twain'),\n",
+ " ('wearisome',\n",
+ " 'so lacking in interest as to cause mental weariness; ; ; ; ; ; - Edmund Burke; ; - Mark Twain'),\n",
+ " ('tedious',\n",
+ " 'so lacking in interest as to cause mental weariness; ; ; ; ; ; - Edmund Burke; ; - Mark Twain'),\n",
+ " ('dull',\n",
+ " 'so lacking in interest as to cause mental weariness; ; ; ; ; ; - Edmund Burke; ; - Mark Twain'),\n",
+ " ('deadening',\n",
+ " 'so lacking in interest as to cause mental weariness; ; ; ; ; ; - Edmund Burke; ; - Mark Twain'),\n",
+ " ('ho-hum',\n",
+ " 'so lacking in interest as to cause mental weariness; ; ; ; ; ; - Edmund Burke; ; - Mark Twain')]},\n",
+ " {'answer': 'bosomy',\n",
+ " 'hint': 'synonyms for bosomy',\n",
+ " 'clues': [('curvy',\n",
+ " \"(of a woman's body) having a large bosom and pleasing curves\"),\n",
+ " ('curvaceous',\n",
+ " \"(of a woman's body) having a large bosom and pleasing curves\"),\n",
+ " ('stacked',\n",
+ " \"(of a woman's body) having a large bosom and pleasing curves\"),\n",
+ " ('sonsy', \"(of a woman's body) having a large bosom and pleasing curves\"),\n",
+ " ('voluptuous',\n",
+ " \"(of a woman's body) having a large bosom and pleasing curves\"),\n",
+ " ('buxom', \"(of a woman's body) having a large bosom and pleasing curves\"),\n",
+ " ('busty', \"(of a woman's body) having a large bosom and pleasing curves\"),\n",
+ " ('full-bosomed',\n",
+ " \"(of a woman's body) having a large bosom and pleasing curves\"),\n",
+ " ('sonsie',\n",
+ " \"(of a woman's body) having a large bosom and pleasing curves\"),\n",
+ " ('well-endowed',\n",
+ " \"(of a woman's body) having a large bosom and pleasing curves\")]},\n",
+ " {'answer': 'bossy',\n",
+ " 'hint': 'synonyms for bossy',\n",
+ " 'clues': [('autocratic',\n",
+ " 'offensively self-assured or given to exercising usually unwarranted power'),\n",
+ " ('dominating',\n",
+ " 'offensively self-assured or given to exercising usually unwarranted power'),\n",
+ " ('high-and-mighty',\n",
+ " 'offensively self-assured or given to exercising usually unwarranted power'),\n",
+ " ('magisterial',\n",
+ " 'offensively self-assured or given to exercising usually unwarranted power'),\n",
+ " ('peremptory',\n",
+ " 'offensively self-assured or given to exercising usually unwarranted power')]},\n",
+ " {'answer': 'bothersome',\n",
+ " 'hint': 'synonyms for bothersome',\n",
+ " 'clues': [('plaguy', 'causing irritation or annoyance'),\n",
+ " ('pestering', 'causing irritation or annoyance'),\n",
+ " ('vexing', 'causing irritation or annoyance'),\n",
+ " ('nettlesome', 'causing irritation or annoyance'),\n",
+ " ('pestiferous', 'causing irritation or annoyance'),\n",
+ " ('irritating', 'causing irritation or annoyance'),\n",
+ " ('galling', 'causing irritation or annoyance'),\n",
+ " ('annoying', 'causing irritation or annoyance'),\n",
+ " ('vexatious', 'causing irritation or annoyance'),\n",
+ " ('teasing', 'causing irritation or annoyance'),\n",
+ " ('pesky', 'causing irritation or annoyance')]},\n",
+ " {'answer': 'bouncing',\n",
+ " 'hint': 'synonyms for bouncing',\n",
+ " 'clues': [('bouncy', 'marked by lively action'),\n",
+ " ('peppy', 'marked by lively action'),\n",
+ " ('zippy', 'marked by lively action'),\n",
+ " ('spirited', 'marked by lively action')]},\n",
+ " {'answer': 'bouncy',\n",
+ " 'hint': 'synonyms for bouncy',\n",
+ " 'clues': [('live', 'elastic; rebounds readily'),\n",
+ " ('springy', 'elastic; rebounds readily'),\n",
+ " ('resilient', 'elastic; rebounds readily'),\n",
+ " ('zippy', 'marked by lively action'),\n",
+ " ('spirited', 'marked by lively action'),\n",
+ " ('bouncing', 'marked by lively action'),\n",
+ " ('peppy', 'marked by lively action')]},\n",
+ " {'answer': 'bound',\n",
+ " 'hint': 'synonyms for bound',\n",
+ " 'clues': [('articled', 'bound by contract'),\n",
+ " ('bandaged', 'covered or wrapped with a bandage'),\n",
+ " ('apprenticed', 'bound by contract'),\n",
+ " ('destined', \"(usually followed by `to') governed by fate\"),\n",
+ " ('indentured', 'bound by contract')]},\n",
+ " {'answer': 'bounderish',\n",
+ " 'hint': 'synonyms for bounderish',\n",
+ " 'clues': [('underbred', '(of persons) lacking in refinement or grace'),\n",
+ " ('rude', '(of persons) lacking in refinement or grace'),\n",
+ " ('ill-bred', '(of persons) lacking in refinement or grace'),\n",
+ " ('yokelish', '(of persons) lacking in refinement or grace'),\n",
+ " ('lowbred', '(of persons) lacking in refinement or grace')]},\n",
+ " {'answer': 'bounteous',\n",
+ " 'hint': 'synonyms for bounteous',\n",
+ " 'clues': [('big', 'given or giving freely'),\n",
+ " ('openhanded', 'given or giving freely'),\n",
+ " ('liberal', 'given or giving freely'),\n",
+ " ('bountiful', 'given or giving freely'),\n",
+ " ('handsome', 'given or giving freely'),\n",
+ " ('bighearted', 'given or giving freely'),\n",
+ " ('giving', 'given or giving freely'),\n",
+ " ('freehanded', 'given or giving freely')]},\n",
+ " {'answer': 'bountiful',\n",
+ " 'hint': 'synonyms for bountiful',\n",
+ " 'clues': [('bounteous', 'given or giving freely'),\n",
+ " ('big', 'given or giving freely'),\n",
+ " ('openhanded', 'given or giving freely'),\n",
+ " ('liberal', 'given or giving freely'),\n",
+ " ('plentiful', 'producing in abundance'),\n",
+ " ('handsome', 'given or giving freely'),\n",
+ " ('bighearted', 'given or giving freely'),\n",
+ " ('giving', 'given or giving freely'),\n",
+ " ('freehanded', 'given or giving freely')]},\n",
+ " {'answer': 'bowed',\n",
+ " 'hint': 'synonyms for bowed',\n",
+ " 'clues': [('bowleg', 'have legs that curve outward at the knees'),\n",
+ " ('bandy', 'have legs that curve outward at the knees'),\n",
+ " ('bowlegged', 'have legs that curve outward at the knees'),\n",
+ " ('arched', 'forming or resembling an arch'),\n",
+ " ('arching', 'forming or resembling an arch'),\n",
+ " ('arcuate', 'forming or resembling an arch'),\n",
+ " ('bandy-legged', 'have legs that curve outward at the knees'),\n",
+ " ('arciform', 'forming or resembling an arch'),\n",
+ " ('bowing', 'showing an excessively deferential manner')]},\n",
+ " {'answer': 'bowleg',\n",
+ " 'hint': 'synonyms for bowleg',\n",
+ " 'clues': [('bandy', 'have legs that curve outward at the knees'),\n",
+ " ('bowlegged', 'have legs that curve outward at the knees'),\n",
+ " ('bowed', 'have legs that curve outward at the knees'),\n",
+ " ('bandy-legged', 'have legs that curve outward at the knees')]},\n",
+ " {'answer': 'bowlegged',\n",
+ " 'hint': 'synonyms for bowlegged',\n",
+ " 'clues': [('bowleg', 'have legs that curve outward at the knees'),\n",
+ " ('bandy', 'have legs that curve outward at the knees'),\n",
+ " ('bowed', 'have legs that curve outward at the knees'),\n",
+ " ('bandy-legged', 'have legs that curve outward at the knees')]},\n",
+ " {'answer': 'bracing',\n",
+ " 'hint': 'synonyms for bracing',\n",
+ " 'clues': [('tonic', 'imparting vitality and energy'),\n",
+ " ('refreshful', 'imparting vitality and energy'),\n",
+ " ('refreshing', 'imparting vitality and energy'),\n",
+ " ('brisk', 'imparting vitality and energy'),\n",
+ " ('fresh', 'imparting vitality and energy')]},\n",
+ " {'answer': 'braggart',\n",
+ " 'hint': 'synonyms for braggart',\n",
+ " 'clues': [('self-aggrandising', 'exhibiting self-importance'),\n",
+ " ('boastful', 'exhibiting self-importance'),\n",
+ " ('big', 'exhibiting self-importance'),\n",
+ " ('bragging', 'exhibiting self-importance'),\n",
+ " ('cock-a-hoop', 'exhibiting self-importance'),\n",
+ " ('braggy', 'exhibiting self-importance'),\n",
+ " ('crowing', 'exhibiting self-importance')]},\n",
+ " {'answer': 'bragging',\n",
+ " 'hint': 'synonyms for bragging',\n",
+ " 'clues': [('self-aggrandising', 'exhibiting self-importance'),\n",
+ " ('boastful', 'exhibiting self-importance'),\n",
+ " ('big', 'exhibiting self-importance'),\n",
+ " ('braggart', 'exhibiting self-importance'),\n",
+ " ('cock-a-hoop', 'exhibiting self-importance'),\n",
+ " ('braggy', 'exhibiting self-importance'),\n",
+ " ('crowing', 'exhibiting self-importance')]},\n",
+ " {'answer': 'braggy',\n",
+ " 'hint': 'synonyms for braggy',\n",
+ " 'clues': [('self-aggrandising', 'exhibiting self-importance'),\n",
+ " ('boastful', 'exhibiting self-importance'),\n",
+ " ('big', 'exhibiting self-importance'),\n",
+ " ('bragging', 'exhibiting self-importance'),\n",
+ " ('braggart', 'exhibiting self-importance'),\n",
+ " ('cock-a-hoop', 'exhibiting self-importance'),\n",
+ " ('crowing', 'exhibiting self-importance')]},\n",
+ " {'answer': 'brainish',\n",
+ " 'hint': 'synonyms for brainish',\n",
+ " 'clues': [('tearaway',\n",
+ " \"characterized by undue haste and lack of thought or deliberation; ; ; ; ; (`brainish' is archaic)\"),\n",
+ " ('madcap',\n",
+ " \"characterized by undue haste and lack of thought or deliberation; ; ; ; ; (`brainish' is archaic)\"),\n",
+ " ('impetuous',\n",
+ " \"characterized by undue haste and lack of thought or deliberation; ; ; ; ; (`brainish' is archaic)\"),\n",
+ " ('impulsive',\n",
+ " \"characterized by undue haste and lack of thought or deliberation; ; ; ; ; (`brainish' is archaic)\"),\n",
+ " ('hotheaded',\n",
+ " \"characterized by undue haste and lack of thought or deliberation; ; ; ; ; (`brainish' is archaic)\")]},\n",
+ " {'answer': 'brainsick',\n",
+ " 'hint': 'synonyms for brainsick',\n",
+ " 'clues': [('demented', 'affected with madness or insanity'),\n",
+ " ('mad', 'affected with madness or insanity'),\n",
+ " ('disturbed', 'affected with madness or insanity'),\n",
+ " ('unbalanced', 'affected with madness or insanity'),\n",
+ " ('sick', 'affected with madness or insanity'),\n",
+ " ('unhinged', 'affected with madness or insanity'),\n",
+ " ('crazy', 'affected with madness or insanity')]},\n",
+ " {'answer': 'branched',\n",
+ " 'hint': 'synonyms for branched',\n",
+ " 'clues': [('pronged',\n",
+ " 'resembling a fork; divided or separated into two branches'),\n",
+ " ('biramous', 'resembling a fork; divided or separated into two branches'),\n",
+ " ('forked', 'resembling a fork; divided or separated into two branches'),\n",
+ " ('ramate', 'having branches'),\n",
+ " ('branching', 'having branches'),\n",
+ " ('bifurcate',\n",
+ " 'resembling a fork; divided or separated into two branches'),\n",
+ " ('forficate',\n",
+ " 'resembling a fork; divided or separated into two branches'),\n",
+ " ('fork-like',\n",
+ " 'resembling a fork; divided or separated into two branches'),\n",
+ " ('prongy', 'resembling a fork; divided or separated into two branches'),\n",
+ " ('ramose', 'having branches')]},\n",
+ " {'answer': 'branching',\n",
+ " 'hint': 'synonyms for branching',\n",
+ " 'clues': [('ramous', 'having branches'),\n",
+ " ('branched', 'having branches'),\n",
+ " ('ramate', 'having branches'),\n",
+ " ('ramose', 'having branches')]},\n",
+ " {'answer': 'brassy',\n",
+ " 'hint': 'synonyms for brassy',\n",
+ " 'clues': [('flash', 'tastelessly showy'),\n",
+ " ('bald-faced',\n",
+ " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n",
+ " ('garish', 'tastelessly showy'),\n",
+ " ('trashy', 'tastelessly showy'),\n",
+ " ('audacious',\n",
+ " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n",
+ " ('bodacious',\n",
+ " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n",
+ " ('gimcrack', 'tastelessly showy'),\n",
+ " ('brasslike', 'resembling the sound of a brass instrument'),\n",
+ " ('tacky', 'tastelessly showy'),\n",
+ " ('brazen-faced',\n",
+ " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n",
+ " ('meretricious', 'tastelessly showy'),\n",
+ " ('cheap', 'tastelessly showy'),\n",
+ " ('brazen',\n",
+ " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n",
+ " ('insolent',\n",
+ " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n",
+ " ('gaudy', 'tastelessly showy'),\n",
+ " ('tawdry', 'tastelessly showy'),\n",
+ " ('tatty', 'tastelessly showy'),\n",
+ " ('barefaced',\n",
+ " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n",
+ " ('loud', 'tastelessly showy')]},\n",
+ " {'answer': 'brave',\n",
+ " 'hint': 'synonyms for brave',\n",
+ " 'clues': [('gay', 'brightly colored and showy'),\n",
+ " ('hardy', 'invulnerable to fear or intimidation'),\n",
+ " ('fearless', 'invulnerable to fear or intimidation'),\n",
+ " ('braw', 'brightly colored and showy'),\n",
+ " ('courageous',\n",
+ " 'possessing or displaying courage; able to face and deal with danger or fear without flinching; - Herman Melville; - William Wordsworth'),\n",
+ " ('audacious', 'invulnerable to fear or intimidation'),\n",
+ " ('dauntless', 'invulnerable to fear or intimidation'),\n",
+ " ('unfearing', 'invulnerable to fear or intimidation'),\n",
+ " ('intrepid', 'invulnerable to fear or intimidation')]},\n",
+ " {'answer': 'brawny',\n",
+ " 'hint': 'synonyms for brawny',\n",
+ " 'clues': [('powerful',\n",
+ " '(of a person) possessing physical strength and weight; rugged and powerful'),\n",
+ " ('muscular',\n",
+ " '(of a person) possessing physical strength and weight; rugged and powerful'),\n",
+ " ('sinewy',\n",
+ " '(of a person) possessing physical strength and weight; rugged and powerful'),\n",
+ " ('hefty',\n",
+ " '(of a person) possessing physical strength and weight; rugged and powerful')]},\n",
+ " {'answer': 'brazen',\n",
+ " 'hint': 'synonyms for brazen',\n",
+ " 'clues': [('bodacious',\n",
+ " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n",
+ " ('insolent',\n",
+ " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n",
+ " ('bald-faced',\n",
+ " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n",
+ " ('barefaced',\n",
+ " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n",
+ " ('brazen-faced',\n",
+ " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n",
+ " ('audacious',\n",
+ " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n",
+ " ('brassy',\n",
+ " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell')]},\n",
+ " {'answer': 'brazen-faced',\n",
+ " 'hint': 'synonyms for brazen-faced',\n",
+ " 'clues': [('bodacious',\n",
+ " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n",
+ " ('brazen',\n",
+ " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n",
+ " ('insolent',\n",
+ " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n",
+ " ('barefaced',\n",
+ " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n",
+ " ('bald-faced',\n",
+ " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n",
+ " ('audacious',\n",
+ " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n",
+ " ('brassy',\n",
+ " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell')]},\n",
+ " {'answer': 'breathless',\n",
+ " 'hint': 'synonyms for breathless',\n",
+ " 'clues': [('breathtaking',\n",
+ " 'tending to cause suspension of regular breathing'),\n",
+ " ('dyspneal', 'not breathing or able to breathe except with difficulty'),\n",
+ " ('inanimate',\n",
+ " 'appearing dead; not breathing or having no perceptible pulse'),\n",
+ " ('pulseless',\n",
+ " 'appearing dead; not breathing or having no perceptible pulse'),\n",
+ " ('dyspneic', 'not breathing or able to breathe except with difficulty')]},\n",
+ " {'answer': 'briary',\n",
+ " 'hint': 'synonyms for briary',\n",
+ " 'clues': [('barbed',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n",
+ " ('thorny',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n",
+ " ('setose',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n",
+ " ('prickly',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n",
+ " ('spiny',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n",
+ " ('burred',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n",
+ " ('burry',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n",
+ " ('bristly',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n",
+ " ('bristled',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n",
+ " ('briery',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n",
+ " ('setaceous',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n",
+ " ('barbellate',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.')]},\n",
+ " {'answer': 'bribable',\n",
+ " 'hint': 'synonyms for bribable',\n",
+ " 'clues': [('venal', 'capable of being corrupted'),\n",
+ " ('purchasable', 'capable of being corrupted'),\n",
+ " ('corruptible', 'capable of being corrupted'),\n",
+ " ('dishonest', 'capable of being corrupted')]},\n",
+ " {'answer': 'briery',\n",
+ " 'hint': 'synonyms for briery',\n",
+ " 'clues': [('barbed',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n",
+ " ('thorny',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n",
+ " ('briary',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n",
+ " ('setose',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n",
+ " ('prickly',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n",
+ " ('spiny',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n",
+ " ('burred',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n",
+ " ('burry',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n",
+ " ('bristly',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n",
+ " ('bristled',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n",
+ " ('setaceous',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n",
+ " ('barbellate',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.')]},\n",
+ " {'answer': 'bright',\n",
+ " 'hint': 'synonyms for bright',\n",
+ " 'clues': [('brilliant', 'clear and sharp and ringing'),\n",
+ " ('hopeful', 'full or promise'),\n",
+ " ('vivid', 'having striking color'),\n",
+ " ('smart', 'characterized by quickness and ease in learning'),\n",
+ " ('shining',\n",
+ " 'made smooth and bright by or as if by rubbing; reflecting a sheen or glow'),\n",
+ " ('promising', 'full or promise'),\n",
+ " ('undimmed', 'not made dim or less bright'),\n",
+ " ('lustrous',\n",
+ " 'made smooth and bright by or as if by rubbing; reflecting a sheen or glow'),\n",
+ " ('shiny',\n",
+ " 'made smooth and bright by or as if by rubbing; reflecting a sheen or glow'),\n",
+ " ('burnished',\n",
+ " 'made smooth and bright by or as if by rubbing; reflecting a sheen or glow')]},\n",
+ " {'answer': 'brilliant',\n",
+ " 'hint': 'synonyms for brilliant',\n",
+ " 'clues': [('smart as a whip',\n",
+ " 'having or marked by unusual and impressive intelligence'),\n",
+ " ('vivid', 'having striking color'),\n",
+ " ('magnificent', 'characterized by grandeur'),\n",
+ " ('superb', 'of surpassing excellence'),\n",
+ " ('bright', 'having striking color'),\n",
+ " ('splendid', 'characterized by grandeur'),\n",
+ " ('brainy', 'having or marked by unusual and impressive intelligence'),\n",
+ " ('glorious', 'characterized by grandeur')]},\n",
+ " {'answer': 'brisk',\n",
+ " 'hint': 'synonyms for brisk',\n",
+ " 'clues': [('zippy', 'quick and energetic'),\n",
+ " ('tonic', 'imparting vitality and energy'),\n",
+ " ('spanking', 'quick and energetic'),\n",
+ " ('lively', 'quick and energetic'),\n",
+ " ('refreshing', 'imparting vitality and energy'),\n",
+ " ('snappy', 'quick and energetic'),\n",
+ " ('bracing', 'imparting vitality and energy'),\n",
+ " ('refreshful', 'imparting vitality and energy'),\n",
+ " ('fresh', 'imparting vitality and energy'),\n",
+ " ('rattling', 'quick and energetic'),\n",
+ " ('alert', 'quick and energetic'),\n",
+ " ('merry', 'quick and energetic')]},\n",
+ " {'answer': 'bristled',\n",
+ " 'hint': 'synonyms for bristled',\n",
+ " 'clues': [('barbed',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n",
+ " ('thorny',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n",
+ " ('briary',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n",
+ " ('setose',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n",
+ " ('prickly',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n",
+ " ('spiny',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n",
+ " ('burred',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n",
+ " ('burry',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n",
+ " ('bristly',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n",
+ " ('briery',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n",
+ " ('setaceous',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n",
+ " ('barbellate',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.')]},\n",
+ " {'answer': 'bristly',\n",
+ " 'hint': 'synonyms for bristly',\n",
+ " 'clues': [('barbed',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n",
+ " ('waspish', 'very irritable'),\n",
+ " ('thorny',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n",
+ " ('briary',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n",
+ " ('prickly', 'very irritable'),\n",
+ " ('setose',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n",
+ " ('spiny',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n",
+ " ('splenetic', 'very irritable'),\n",
+ " ('burred',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n",
+ " ('burry',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n",
+ " ('briery',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n",
+ " ('bristled',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n",
+ " ('setaceous',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n",
+ " ('barbellate',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.')]},\n",
+ " {'answer': 'broad',\n",
+ " 'hint': 'synonyms for broad',\n",
+ " 'clues': [('wide', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n",
+ " ('all-inclusive', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n",
+ " ('tolerant', 'showing or characterized by broad-mindedness'),\n",
+ " ('all-embracing', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n",
+ " ('panoptic', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n",
+ " ('liberal', 'showing or characterized by broad-mindedness'),\n",
+ " ('across-the-board', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n",
+ " ('encompassing', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n",
+ " ('extensive', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n",
+ " ('full', 'being at a peak or culminating point'),\n",
+ " ('spacious', 'very large in expanse or scope'),\n",
+ " ('large-minded', 'showing or characterized by broad-mindedness'),\n",
+ " ('unsubtle', 'lacking subtlety; obvious'),\n",
+ " ('blanket', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n",
+ " ('unspecific', 'not detailed or specific')]},\n",
+ " {'answer': 'broken',\n",
+ " 'hint': 'synonyms for broken',\n",
+ " 'clues': [('humiliated', 'subdued or brought low in condition or status'),\n",
+ " ('disordered', 'thrown into a state of disarray or confusion'),\n",
+ " ('upset', 'thrown into a state of disarray or confusion'),\n",
+ " ('low', 'subdued or brought low in condition or status'),\n",
+ " ('humbled', 'subdued or brought low in condition or status'),\n",
+ " ('impoverished', 'destroyed financially'),\n",
+ " ('broken in', 'tamed or trained to obey'),\n",
+ " ('rugged', 'topographically very uneven'),\n",
+ " ('confused', 'thrown into a state of disarray or confusion'),\n",
+ " ('crushed', 'subdued or brought low in condition or status'),\n",
+ " ('unkept',\n",
+ " '(especially of promises or contracts) having been violated or disregarded'),\n",
+ " ('busted',\n",
+ " \"out of working order (`busted' is an informal substitute for `broken')\"),\n",
+ " ('wiped out', 'destroyed financially')]},\n",
+ " {'answer': 'broken-down',\n",
+ " 'hint': 'synonyms for broken-down',\n",
+ " 'clues': [('bedraggled', 'in deplorable condition'),\n",
+ " ('ramshackle', 'in deplorable condition'),\n",
+ " ('dilapidated', 'in deplorable condition'),\n",
+ " ('derelict', 'in deplorable condition'),\n",
+ " ('tumble-down', 'in deplorable condition'),\n",
+ " ('tatterdemalion', 'in deplorable condition')]},\n",
+ " {'answer': 'brooding',\n",
+ " 'hint': 'synonyms for brooding',\n",
+ " 'clues': [('broody', 'deeply or seriously thoughtful'),\n",
+ " ('reflective', 'deeply or seriously thoughtful'),\n",
+ " ('pondering', 'deeply or seriously thoughtful'),\n",
+ " ('meditative', 'deeply or seriously thoughtful'),\n",
+ " ('contemplative', 'deeply or seriously thoughtful'),\n",
+ " ('musing', 'deeply or seriously thoughtful'),\n",
+ " ('ruminative', 'deeply or seriously thoughtful'),\n",
+ " ('pensive', 'deeply or seriously thoughtful')]},\n",
+ " {'answer': 'broody',\n",
+ " 'hint': 'synonyms for broody',\n",
+ " 'clues': [('brooding', 'deeply or seriously thoughtful'),\n",
+ " ('reflective', 'deeply or seriously thoughtful'),\n",
+ " ('pondering', 'deeply or seriously thoughtful'),\n",
+ " ('meditative', 'deeply or seriously thoughtful'),\n",
+ " ('contemplative', 'deeply or seriously thoughtful'),\n",
+ " ('musing', 'deeply or seriously thoughtful'),\n",
+ " ('ruminative', 'deeply or seriously thoughtful'),\n",
+ " ('pensive', 'deeply or seriously thoughtful')]},\n",
+ " {'answer': 'brown',\n",
+ " 'hint': 'synonyms for brown',\n",
+ " 'clues': [('chocolate-brown',\n",
+ " 'of a color similar to that of wood or earth'),\n",
+ " ('dark-brown', 'of a color similar to that of wood or earth'),\n",
+ " ('brownish', 'of a color similar to that of wood or earth'),\n",
+ " ('browned', '(of skin) deeply suntanned')]},\n",
+ " {'answer': 'brutal',\n",
+ " 'hint': 'synonyms for brutal',\n",
+ " 'clues': [('vicious',\n",
+ " '(of persons or their actions) able or disposed to inflict pain or suffering'),\n",
+ " ('barbarous',\n",
+ " '(of persons or their actions) able or disposed to inflict pain or suffering'),\n",
+ " ('fell',\n",
+ " '(of persons or their actions) able or disposed to inflict pain or suffering'),\n",
+ " ('roughshod',\n",
+ " '(of persons or their actions) able or disposed to inflict pain or suffering'),\n",
+ " ('brute', 'resembling a beast; showing lack of human sensibility'),\n",
+ " ('cruel',\n",
+ " '(of persons or their actions) able or disposed to inflict pain or suffering'),\n",
+ " ('beastly', 'resembling a beast; showing lack of human sensibility'),\n",
+ " ('bestial', 'resembling a beast; showing lack of human sensibility'),\n",
+ " ('unrelenting', 'harsh'),\n",
+ " ('brutish', 'resembling a beast; showing lack of human sensibility'),\n",
+ " ('savage',\n",
+ " '(of persons or their actions) able or disposed to inflict pain or suffering')]},\n",
+ " {'answer': 'brute',\n",
+ " 'hint': 'synonyms for brute',\n",
+ " 'clues': [('beastly',\n",
+ " 'resembling a beast; showing lack of human sensibility'),\n",
+ " ('bestial', 'resembling a beast; showing lack of human sensibility'),\n",
+ " ('brutal', 'resembling a beast; showing lack of human sensibility'),\n",
+ " ('brutish', 'resembling a beast; showing lack of human sensibility')]},\n",
+ " {'answer': 'brutish',\n",
+ " 'hint': 'synonyms for brutish',\n",
+ " 'clues': [('beastly',\n",
+ " 'resembling a beast; showing lack of human sensibility'),\n",
+ " ('bestial', 'resembling a beast; showing lack of human sensibility'),\n",
+ " ('brutal', 'resembling a beast; showing lack of human sensibility'),\n",
+ " ('brute', 'resembling a beast; showing lack of human sensibility')]},\n",
+ " {'answer': 'bubbling',\n",
+ " 'hint': 'synonyms for bubbling',\n",
+ " 'clues': [('bubbly',\n",
+ " 'emitting or filled with bubbles as from carbonation or fermentation'),\n",
+ " ('foamy',\n",
+ " 'emitting or filled with bubbles as from carbonation or fermentation'),\n",
+ " ('foaming',\n",
+ " 'emitting or filled with bubbles as from carbonation or fermentation'),\n",
+ " ('effervescing',\n",
+ " 'emitting or filled with bubbles as from carbonation or fermentation'),\n",
+ " ('sparkly', 'marked by high spirits or excitement'),\n",
+ " ('scintillating', 'marked by high spirits or excitement'),\n",
+ " ('frothy',\n",
+ " 'emitting or filled with bubbles as from carbonation or fermentation'),\n",
+ " ('spumy',\n",
+ " 'emitting or filled with bubbles as from carbonation or fermentation'),\n",
+ " ('effervescent', 'marked by high spirits or excitement')]},\n",
+ " {'answer': 'bubbly',\n",
+ " 'hint': 'synonyms for bubbly',\n",
+ " 'clues': [('frothy',\n",
+ " 'emitting or filled with bubbles as from carbonation or fermentation'),\n",
+ " ('spumy',\n",
+ " 'emitting or filled with bubbles as from carbonation or fermentation'),\n",
+ " ('foamy',\n",
+ " 'emitting or filled with bubbles as from carbonation or fermentation'),\n",
+ " ('foaming',\n",
+ " 'emitting or filled with bubbles as from carbonation or fermentation'),\n",
+ " ('bubbling',\n",
+ " 'emitting or filled with bubbles as from carbonation or fermentation'),\n",
+ " ('effervescing',\n",
+ " 'emitting or filled with bubbles as from carbonation or fermentation')]},\n",
+ " {'answer': 'buffeted',\n",
+ " 'hint': 'synonyms for buffeted',\n",
+ " 'clues': [('tempest-swept',\n",
+ " 'pounded or hit repeatedly by storms or adversities'),\n",
+ " ('tempest-tossed', 'pounded or hit repeatedly by storms or adversities'),\n",
+ " ('storm-tossed', 'pounded or hit repeatedly by storms or adversities'),\n",
+ " ('tempest-tost', 'pounded or hit repeatedly by storms or adversities')]},\n",
+ " {'answer': 'buggy',\n",
+ " 'hint': 'synonyms for buggy',\n",
+ " 'clues': [('crackers', 'informal or slang terms for mentally irregular'),\n",
+ " ('nuts', 'informal or slang terms for mentally irregular'),\n",
+ " ('loony', 'informal or slang terms for mentally irregular'),\n",
+ " ('dotty', 'informal or slang terms for mentally irregular'),\n",
+ " ('batty', 'informal or slang terms for mentally irregular'),\n",
+ " ('cracked', 'informal or slang terms for mentally irregular'),\n",
+ " ('balmy', 'informal or slang terms for mentally irregular'),\n",
+ " ('bats', 'informal or slang terms for mentally irregular'),\n",
+ " ('barmy', 'informal or slang terms for mentally irregular'),\n",
+ " ('wacky', 'informal or slang terms for mentally irregular'),\n",
+ " ('daft', 'informal or slang terms for mentally irregular'),\n",
+ " ('loco', 'informal or slang terms for mentally irregular'),\n",
+ " ('bonkers', 'informal or slang terms for mentally irregular'),\n",
+ " ('nutty', 'informal or slang terms for mentally irregular'),\n",
+ " ('haywire', 'informal or slang terms for mentally irregular'),\n",
+ " ('kookie', 'informal or slang terms for mentally irregular'),\n",
+ " ('fruity', 'informal or slang terms for mentally irregular'),\n",
+ " ('round the bend', 'informal or slang terms for mentally irregular'),\n",
+ " ('kooky', 'informal or slang terms for mentally irregular'),\n",
+ " ('loopy', 'informal or slang terms for mentally irregular')]},\n",
+ " {'answer': 'built-in',\n",
+ " 'hint': 'synonyms for built-in',\n",
+ " 'clues': [('inbuilt',\n",
+ " 'existing as an essential constituent or characteristic'),\n",
+ " ('constitutional',\n",
+ " 'existing as an essential constituent or characteristic'),\n",
+ " ('integral', 'existing as an essential constituent or characteristic'),\n",
+ " ('inherent', 'existing as an essential constituent or characteristic')]},\n",
+ " {'answer': 'buirdly',\n",
+ " 'hint': 'synonyms for buirdly',\n",
+ " 'clues': [('strapping', 'muscular and heavily built'),\n",
+ " ('beefy', 'muscular and heavily built'),\n",
+ " ('husky', 'muscular and heavily built'),\n",
+ " ('burly', 'muscular and heavily built')]},\n",
+ " {'answer': 'bulbous',\n",
+ " 'hint': 'synonyms for bulbous',\n",
+ " 'clues': [('bulging', 'curving outward'),\n",
+ " ('bulgy', 'curving outward'),\n",
+ " ('bellied', 'curving outward'),\n",
+ " ('protuberant', 'curving outward'),\n",
+ " ('bellying', 'curving outward'),\n",
+ " ('bulb-shaped', 'shaped like a bulb'),\n",
+ " ('bulblike', 'shaped like a bulb')]},\n",
+ " {'answer': 'bulging',\n",
+ " 'hint': 'synonyms for bulging',\n",
+ " 'clues': [('bulgy', 'curving outward'),\n",
+ " ('bellied', 'curving outward'),\n",
+ " ('protuberant', 'curving outward'),\n",
+ " ('convex', 'curving or bulging outward'),\n",
+ " ('bulbous', 'curving outward'),\n",
+ " ('bellying', 'curving outward')]},\n",
+ " {'answer': 'bulgy',\n",
+ " 'hint': 'synonyms for bulgy',\n",
+ " 'clues': [('bulging', 'curving outward'),\n",
+ " ('bellied', 'curving outward'),\n",
+ " ('protuberant', 'curving outward'),\n",
+ " ('bellying', 'curving outward'),\n",
+ " ('bulbous', 'curving outward')]},\n",
+ " {'answer': 'bully',\n",
+ " 'hint': 'synonyms for bully',\n",
+ " 'clues': [('smashing', 'very good'),\n",
+ " ('not bad', 'very good'),\n",
+ " ('swell', 'very good'),\n",
+ " ('dandy', 'very good'),\n",
+ " ('keen', 'very good'),\n",
+ " ('nifty', 'very good'),\n",
+ " ('peachy', 'very good'),\n",
+ " ('cracking', 'very good'),\n",
+ " ('slap-up', 'very good'),\n",
+ " ('bang-up', 'very good'),\n",
+ " ('corking', 'very good'),\n",
+ " ('neat', 'very good'),\n",
+ " ('groovy', 'very good'),\n",
+ " ('great', 'very good')]},\n",
+ " {'answer': 'bum',\n",
+ " 'hint': 'synonyms for bum',\n",
+ " 'clues': [('punk', 'of very poor quality; flimsy'),\n",
+ " ('cheap', 'of very poor quality; flimsy'),\n",
+ " ('chintzy', 'of very poor quality; flimsy'),\n",
+ " ('tinny', 'of very poor quality; flimsy'),\n",
+ " ('sleazy', 'of very poor quality; flimsy'),\n",
+ " ('crummy', 'of very poor quality; flimsy'),\n",
+ " ('cheesy', 'of very poor quality; flimsy')]},\n",
+ " {'answer': 'bumbling',\n",
+ " 'hint': 'synonyms for bumbling',\n",
+ " 'clues': [('heavy-handed',\n",
+ " 'lacking physical movement skills, especially with the hands; ; ; ; - Mary H. Vorse'),\n",
+ " ('ham-fisted',\n",
+ " 'lacking physical movement skills, especially with the hands; ; ; ; - Mary H. Vorse'),\n",
+ " ('ham-handed',\n",
+ " 'lacking physical movement skills, especially with the hands; ; ; ; - Mary H. Vorse'),\n",
+ " ('bungling',\n",
+ " 'lacking physical movement skills, especially with the hands; ; ; ; - Mary H. Vorse'),\n",
+ " ('butterfingered',\n",
+ " 'lacking physical movement skills, especially with the hands; ; ; ; - Mary H. Vorse'),\n",
+ " ('handless',\n",
+ " 'lacking physical movement skills, especially with the hands; ; ; ; - Mary H. Vorse'),\n",
+ " ('left-handed',\n",
+ " 'lacking physical movement skills, especially with the hands; ; ; ; - Mary H. Vorse')]},\n",
+ " {'answer': 'bumpy',\n",
+ " 'hint': 'synonyms for bumpy',\n",
+ " 'clues': [('jolty',\n",
+ " 'causing or characterized by jolts and irregular movements'),\n",
+ " ('rough', 'causing or characterized by jolts and irregular movements'),\n",
+ " ('rocky', 'causing or characterized by jolts and irregular movements'),\n",
+ " ('jolting', 'causing or characterized by jolts and irregular movements'),\n",
+ " ('jumpy', 'causing or characterized by jolts and irregular movements')]},\n",
+ " {'answer': 'bungling',\n",
+ " 'hint': 'synonyms for bungling',\n",
+ " 'clues': [('bumbling',\n",
+ " 'lacking physical movement skills, especially with the hands; ; ; ; - Mary H. Vorse'),\n",
+ " ('clumsy', 'showing lack of skill or aptitude'),\n",
+ " ('incompetent', 'showing lack of skill or aptitude'),\n",
+ " ('handless',\n",
+ " 'lacking physical movement skills, especially with the hands; ; ; ; - Mary H. Vorse'),\n",
+ " ('ham-handed',\n",
+ " 'lacking physical movement skills, especially with the hands; ; ; ; - Mary H. Vorse'),\n",
+ " ('left-handed',\n",
+ " 'lacking physical movement skills, especially with the hands; ; ; ; - Mary H. Vorse'),\n",
+ " ('heavy-handed',\n",
+ " 'lacking physical movement skills, especially with the hands; ; ; ; - Mary H. Vorse'),\n",
+ " ('ham-fisted',\n",
+ " 'lacking physical movement skills, especially with the hands; ; ; ; - Mary H. Vorse'),\n",
+ " ('butterfingered',\n",
+ " 'lacking physical movement skills, especially with the hands; ; ; ; - Mary H. Vorse')]},\n",
+ " {'answer': 'burly',\n",
+ " 'hint': 'synonyms for burly',\n",
+ " 'clues': [('buirdly', 'muscular and heavily built'),\n",
+ " ('beefy', 'muscular and heavily built'),\n",
+ " ('strapping', 'muscular and heavily built'),\n",
+ " ('husky', 'muscular and heavily built')]},\n",
+ " {'answer': 'burned',\n",
+ " 'hint': 'synonyms for burned',\n",
+ " 'clues': [('burnt-out', 'destroyed or badly damaged by fire'),\n",
+ " ('burnt', 'destroyed or badly damaged by fire'),\n",
+ " ('burned-over', 'destroyed or badly damaged by fire'),\n",
+ " ('burned-out', 'destroyed or badly damaged by fire')]},\n",
+ " {'answer': 'burned-out',\n",
+ " 'hint': 'synonyms for burned-out',\n",
+ " 'clues': [('burnt-out', 'exhausted as a result of longtime stress'),\n",
+ " ('burnt', 'destroyed or badly damaged by fire'),\n",
+ " ('burned', 'destroyed or badly damaged by fire'),\n",
+ " ('burned-over', 'destroyed or badly damaged by fire')]},\n",
+ " {'answer': 'burned-over',\n",
+ " 'hint': 'synonyms for burned-over',\n",
+ " 'clues': [('burnt-out', 'destroyed or badly damaged by fire'),\n",
+ " ('burnt', 'destroyed or badly damaged by fire'),\n",
+ " ('burned', 'destroyed or badly damaged by fire'),\n",
+ " ('burned-out', 'destroyed or badly damaged by fire')]},\n",
+ " {'answer': 'burnished',\n",
+ " 'hint': 'synonyms for burnished',\n",
+ " 'clues': [('shiny',\n",
+ " 'made smooth and bright by or as if by rubbing; reflecting a sheen or glow'),\n",
+ " ('shining',\n",
+ " 'made smooth and bright by or as if by rubbing; reflecting a sheen or glow'),\n",
+ " ('lustrous',\n",
+ " 'made smooth and bright by or as if by rubbing; reflecting a sheen or glow'),\n",
+ " ('bright',\n",
+ " 'made smooth and bright by or as if by rubbing; reflecting a sheen or glow')]},\n",
+ " {'answer': 'burnt',\n",
+ " 'hint': 'synonyms for burnt',\n",
+ " 'clues': [('burned',\n",
+ " 'treated by heating to a high temperature but below the melting or fusing point'),\n",
+ " ('burnt-out', 'destroyed or badly damaged by fire'),\n",
+ " ('burned-over', 'destroyed or badly damaged by fire'),\n",
+ " ('burned-out', 'destroyed or badly damaged by fire')]},\n",
+ " {'answer': 'burnt-out',\n",
+ " 'hint': 'synonyms for burnt-out',\n",
+ " 'clues': [('burnt', 'destroyed or badly damaged by fire'),\n",
+ " ('burned-out', 'exhausted as a result of longtime stress'),\n",
+ " ('burned', 'destroyed or badly damaged by fire'),\n",
+ " ('burned-over', 'destroyed or badly damaged by fire')]},\n",
+ " {'answer': 'burred',\n",
+ " 'hint': 'synonyms for burred',\n",
+ " 'clues': [('barbed',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n",
+ " ('thorny',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n",
+ " ('briary',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n",
+ " ('setose',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n",
+ " ('prickly',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n",
+ " ('spiny',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n",
+ " ('burry',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n",
+ " ('briery',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n",
+ " ('bristled',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n",
+ " ('bristly',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n",
+ " ('setaceous',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n",
+ " ('barbellate',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.')]},\n",
+ " {'answer': 'burry',\n",
+ " 'hint': 'synonyms for burry',\n",
+ " 'clues': [('barbed',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n",
+ " ('thorny',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n",
+ " ('briary',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n",
+ " ('setose',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n",
+ " ('prickly',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n",
+ " ('spiny',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n",
+ " ('burred',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n",
+ " ('briery',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n",
+ " ('bristled',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n",
+ " ('bristly',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n",
+ " ('setaceous',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n",
+ " ('barbellate',\n",
+ " 'having or covered with protective barbs or quills or spines or thorns or setae etc.')]},\n",
+ " {'answer': 'busty',\n",
+ " 'hint': 'synonyms for busty',\n",
+ " 'clues': [('curvy',\n",
+ " \"(of a woman's body) having a large bosom and pleasing curves\"),\n",
+ " ('curvaceous',\n",
+ " \"(of a woman's body) having a large bosom and pleasing curves\"),\n",
+ " ('stacked',\n",
+ " \"(of a woman's body) having a large bosom and pleasing curves\"),\n",
+ " ('sonsy', \"(of a woman's body) having a large bosom and pleasing curves\"),\n",
+ " ('voluptuous',\n",
+ " \"(of a woman's body) having a large bosom and pleasing curves\"),\n",
+ " ('buxom', \"(of a woman's body) having a large bosom and pleasing curves\"),\n",
+ " ('sonsie',\n",
+ " \"(of a woman's body) having a large bosom and pleasing curves\"),\n",
+ " ('full-bosomed',\n",
+ " \"(of a woman's body) having a large bosom and pleasing curves\"),\n",
+ " ('bosomy',\n",
+ " \"(of a woman's body) having a large bosom and pleasing curves\"),\n",
+ " ('well-endowed',\n",
+ " \"(of a woman's body) having a large bosom and pleasing curves\")]},\n",
+ " {'answer': 'busy',\n",
+ " 'hint': 'synonyms for busy',\n",
+ " 'clues': [('in use',\n",
+ " \"(of facilities such as telephones or lavatories) unavailable for use by anyone else or indicating unavailability; (`engaged' is a British term for a busy telephone line)\"),\n",
+ " ('meddling', 'intrusive in a meddling or offensive manner'),\n",
+ " ('interfering', 'intrusive in a meddling or offensive manner'),\n",
+ " ('meddlesome', 'intrusive in a meddling or offensive manner'),\n",
+ " ('officious', 'intrusive in a meddling or offensive manner'),\n",
+ " ('fussy', 'overcrowded or cluttered with detail'),\n",
+ " ('engaged',\n",
+ " \"(of facilities such as telephones or lavatories) unavailable for use by anyone else or indicating unavailability; (`engaged' is a British term for a busy telephone line)\"),\n",
+ " ('busybodied', 'intrusive in a meddling or offensive manner')]},\n",
+ " {'answer': 'busybodied',\n",
+ " 'hint': 'synonyms for busybodied',\n",
+ " 'clues': [('meddling', 'intrusive in a meddling or offensive manner'),\n",
+ " ('interfering', 'intrusive in a meddling or offensive manner'),\n",
+ " ('meddlesome', 'intrusive in a meddling or offensive manner'),\n",
+ " ('officious', 'intrusive in a meddling or offensive manner'),\n",
+ " ('busy', 'intrusive in a meddling or offensive manner')]},\n",
+ " {'answer': 'butcherly',\n",
+ " 'hint': 'synonyms for butcherly',\n",
+ " 'clues': [('unskillful', 'poorly done'),\n",
+ " ('slaughterous', 'accompanied by bloodshed'),\n",
+ " ('sanguineous', 'accompanied by bloodshed'),\n",
+ " ('sanguinary', 'accompanied by bloodshed'),\n",
+ " ('botchy', 'poorly done'),\n",
+ " ('gory', 'accompanied by bloodshed')]},\n",
+ " {'answer': 'butterfingered',\n",
+ " 'hint': 'synonyms for butterfingered',\n",
+ " 'clues': [('bumbling',\n",
+ " 'lacking physical movement skills, especially with the hands; ; ; ; - Mary H. Vorse'),\n",
+ " ('heavy-handed',\n",
+ " 'lacking physical movement skills, especially with the hands; ; ; ; - Mary H. Vorse'),\n",
+ " ('ham-handed',\n",
+ " 'lacking physical movement skills, especially with the hands; ; ; ; - Mary H. Vorse'),\n",
+ " ('ham-fisted',\n",
+ " 'lacking physical movement skills, especially with the hands; ; ; ; - Mary H. Vorse'),\n",
+ " ('bungling',\n",
+ " 'lacking physical movement skills, especially with the hands; ; ; ; - Mary H. Vorse'),\n",
+ " ('handless',\n",
+ " 'lacking physical movement skills, especially with the hands; ; ; ; - Mary H. Vorse'),\n",
+ " ('left-handed',\n",
+ " 'lacking physical movement skills, especially with the hands; ; ; ; - Mary H. Vorse')]},\n",
+ " {'answer': 'buttery',\n",
+ " 'hint': 'synonyms for buttery',\n",
+ " 'clues': [('unctuous',\n",
+ " 'unpleasantly and excessively suave or ingratiating in manner or speech'),\n",
+ " ('fulsome',\n",
+ " 'unpleasantly and excessively suave or ingratiating in manner or speech'),\n",
+ " ('oleaginous',\n",
+ " 'unpleasantly and excessively suave or ingratiating in manner or speech'),\n",
+ " ('soapy',\n",
+ " 'unpleasantly and excessively suave or ingratiating in manner or speech'),\n",
+ " ('oily',\n",
+ " 'unpleasantly and excessively suave or ingratiating in manner or speech'),\n",
+ " ('smarmy',\n",
+ " 'unpleasantly and excessively suave or ingratiating in manner or speech')]},\n",
+ " {'answer': 'buxom',\n",
+ " 'hint': 'synonyms for buxom',\n",
+ " 'clues': [('curvy',\n",
+ " \"(of a woman's body) having a large bosom and pleasing curves\"),\n",
+ " ('curvaceous',\n",
+ " \"(of a woman's body) having a large bosom and pleasing curves\"),\n",
+ " ('stacked',\n",
+ " \"(of a woman's body) having a large bosom and pleasing curves\"),\n",
+ " ('sonsy', \"(of a woman's body) having a large bosom and pleasing curves\"),\n",
+ " ('zaftig',\n",
+ " '(of a female body) healthily plump and vigorous ; - Robt.A.Hamilton'),\n",
+ " ('zoftig',\n",
+ " '(of a female body) healthily plump and vigorous ; - Robt.A.Hamilton'),\n",
+ " ('voluptuous',\n",
+ " \"(of a woman's body) having a large bosom and pleasing curves\"),\n",
+ " ('busty', \"(of a woman's body) having a large bosom and pleasing curves\"),\n",
+ " ('full-bosomed',\n",
+ " \"(of a woman's body) having a large bosom and pleasing curves\"),\n",
+ " ('bosomy',\n",
+ " \"(of a woman's body) having a large bosom and pleasing curves\"),\n",
+ " ('sonsie',\n",
+ " \"(of a woman's body) having a large bosom and pleasing curves\"),\n",
+ " ('well-endowed',\n",
+ " \"(of a woman's body) having a large bosom and pleasing curves\")]},\n",
+ " {'answer': 'bygone',\n",
+ " 'hint': 'synonyms for bygone',\n",
+ " 'clues': [('foregone', 'well in the past; former'),\n",
+ " ('departed', 'well in the past; former'),\n",
+ " ('gone', 'well in the past; former'),\n",
+ " ('bypast', 'well in the past; former')]},\n",
+ " {'answer': 'bypast',\n",
+ " 'hint': 'synonyms for bypast',\n",
+ " 'clues': [('foregone', 'well in the past; former'),\n",
+ " ('departed', 'well in the past; former'),\n",
+ " ('gone', 'well in the past; former'),\n",
+ " ('bygone', 'well in the past; former')]},\n",
+ " {'answer': 'byzantine',\n",
+ " 'hint': 'synonyms for byzantine',\n",
+ " 'clues': [('tangled',\n",
+ " 'highly complex or intricate and occasionally devious; ; ; ; ; ; ; ; - Sir Walter Scott'),\n",
+ " ('knotty',\n",
+ " 'highly complex or intricate and occasionally devious; ; ; ; ; ; ; ; - Sir Walter Scott'),\n",
+ " ('tortuous',\n",
+ " 'highly complex or intricate and occasionally devious; ; ; ; ; ; ; ; - Sir Walter Scott'),\n",
+ " ('involved',\n",
+ " 'highly complex or intricate and occasionally devious; ; ; ; ; ; ; ; - Sir Walter Scott'),\n",
+ " ('convoluted',\n",
+ " 'highly complex or intricate and occasionally devious; ; ; ; ; ; ; ; - Sir Walter Scott')]},\n",
+ " {'answer': 'cadaverous',\n",
+ " 'hint': 'synonyms for cadaverous',\n",
+ " 'clues': [('skeletal',\n",
+ " 'very thin especially from disease or hunger or cold'),\n",
+ " ('gaunt', 'very thin especially from disease or hunger or cold'),\n",
+ " ('pinched', 'very thin especially from disease or hunger or cold'),\n",
+ " ('bony', 'very thin especially from disease or hunger or cold'),\n",
+ " ('cadaveric', 'of or relating to a cadaver or corpse'),\n",
+ " ('wasted', 'very thin especially from disease or hunger or cold'),\n",
+ " ('emaciated', 'very thin especially from disease or hunger or cold'),\n",
+ " ('haggard', 'very thin especially from disease or hunger or cold')]},\n",
+ " {'answer': 'cagey',\n",
+ " 'hint': 'synonyms for cagey',\n",
+ " 'clues': [('clever',\n",
+ " 'showing self-interest and shrewdness in dealing with others'),\n",
+ " ('cagy', 'characterized by great caution and wariness'),\n",
+ " ('canny', 'showing self-interest and shrewdness in dealing with others'),\n",
+ " ('chary', 'characterized by great caution and wariness')]},\n",
+ " {'answer': 'cagy',\n",
+ " 'hint': 'synonyms for cagy',\n",
+ " 'clues': [('clever',\n",
+ " 'showing self-interest and shrewdness in dealing with others'),\n",
+ " ('cagey', 'showing self-interest and shrewdness in dealing with others'),\n",
+ " ('canny', 'showing self-interest and shrewdness in dealing with others'),\n",
+ " ('chary', 'characterized by great caution and wariness')]},\n",
+ " {'answer': 'calamitous',\n",
+ " 'hint': 'synonyms for calamitous',\n",
+ " 'clues': [('fateful',\n",
+ " '(of events) having extremely unfortunate or dire consequences; bringing ruin; ; ; ; - Charles Darwin; - Douglas MacArthur'),\n",
+ " ('fatal',\n",
+ " '(of events) having extremely unfortunate or dire consequences; bringing ruin; ; ; ; - Charles Darwin; - Douglas MacArthur'),\n",
+ " ('disastrous',\n",
+ " '(of events) having extremely unfortunate or dire consequences; bringing ruin; ; ; ; - Charles Darwin; - Douglas MacArthur'),\n",
+ " ('black',\n",
+ " '(of events) having extremely unfortunate or dire consequences; bringing ruin; ; ; ; - Charles Darwin; - Douglas MacArthur')]},\n",
+ " {'answer': 'calculating',\n",
+ " 'hint': 'synonyms for calculating',\n",
+ " 'clues': [('conniving', 'used of persons'),\n",
+ " ('shrewd', 'used of persons'),\n",
+ " ('scheming', 'used of persons'),\n",
+ " ('calculative', 'used of persons')]},\n",
+ " {'answer': 'calculative',\n",
+ " 'hint': 'synonyms for calculative',\n",
+ " 'clues': [('conniving', 'used of persons'),\n",
+ " ('shrewd', 'used of persons'),\n",
+ " ('calculating', 'used of persons'),\n",
+ " ('scheming', 'used of persons')]},\n",
+ " {'answer': 'calico',\n",
+ " 'hint': 'synonyms for calico',\n",
+ " 'clues': [('multicolored',\n",
+ " 'having sections or patches colored differently and usually brightly'),\n",
+ " ('particoloured',\n",
+ " 'having sections or patches colored differently and usually brightly'),\n",
+ " ('pied',\n",
+ " 'having sections or patches colored differently and usually brightly'),\n",
+ " ('piebald',\n",
+ " 'having sections or patches colored differently and usually brightly'),\n",
+ " ('painted',\n",
+ " 'having sections or patches colored differently and usually brightly'),\n",
+ " ('varicolored',\n",
+ " 'having sections or patches colored differently and usually brightly'),\n",
+ " ('multi-colour',\n",
+ " 'having sections or patches colored differently and usually brightly'),\n",
+ " ('motley',\n",
+ " 'having sections or patches colored differently and usually brightly')]},\n",
+ " {'answer': 'callous',\n",
+ " 'hint': 'synonyms for callous',\n",
+ " 'clues': [('calloused',\n",
+ " 'having calluses; having skin made tough and thick through wear'),\n",
+ " ('thickened',\n",
+ " 'having calluses; having skin made tough and thick through wear'),\n",
+ " ('pachydermatous', 'emotionally hardened'),\n",
+ " ('indurate', 'emotionally hardened')]},\n",
+ " {'answer': 'calumniatory',\n",
+ " 'hint': 'synonyms for calumniatory',\n",
+ " 'clues': [('libelous',\n",
+ " '(used of statements) harmful and often untrue; tending to discredit or malign'),\n",
+ " ('denigratory',\n",
+ " '(used of statements) harmful and often untrue; tending to discredit or malign'),\n",
+ " ('denigrative',\n",
+ " '(used of statements) harmful and often untrue; tending to discredit or malign'),\n",
+ " ('denigrating',\n",
+ " '(used of statements) harmful and often untrue; tending to discredit or malign'),\n",
+ " ('defamatory',\n",
+ " '(used of statements) harmful and often untrue; tending to discredit or malign'),\n",
+ " ('slanderous',\n",
+ " '(used of statements) harmful and often untrue; tending to discredit or malign'),\n",
+ " ('calumnious',\n",
+ " '(used of statements) harmful and often untrue; tending to discredit or malign')]},\n",
+ " {'answer': 'calumnious',\n",
+ " 'hint': 'synonyms for calumnious',\n",
+ " 'clues': [('libelous',\n",
+ " '(used of statements) harmful and often untrue; tending to discredit or malign'),\n",
+ " ('denigratory',\n",
+ " '(used of statements) harmful and often untrue; tending to discredit or malign'),\n",
+ " ('denigrative',\n",
+ " '(used of statements) harmful and often untrue; tending to discredit or malign'),\n",
+ " ('denigrating',\n",
+ " '(used of statements) harmful and often untrue; tending to discredit or malign'),\n",
+ " ('defamatory',\n",
+ " '(used of statements) harmful and often untrue; tending to discredit or malign'),\n",
+ " ('slanderous',\n",
+ " '(used of statements) harmful and often untrue; tending to discredit or malign'),\n",
+ " ('calumniatory',\n",
+ " '(used of statements) harmful and often untrue; tending to discredit or malign')]},\n",
+ " {'answer': 'candid',\n",
+ " 'hint': 'synonyms for candid',\n",
+ " 'clues': [('plainspoken',\n",
+ " 'characterized by directness in manner or speech; without subtlety or evasion'),\n",
+ " ('open',\n",
+ " 'openly straightforward and direct without reserve or secretiveness'),\n",
+ " ('blunt',\n",
+ " 'characterized by directness in manner or speech; without subtlety or evasion'),\n",
+ " ('straight-from-the-shoulder',\n",
+ " 'characterized by directness in manner or speech; without subtlety or evasion'),\n",
+ " ('forthright',\n",
+ " 'characterized by directness in manner or speech; without subtlety or evasion'),\n",
+ " ('free-spoken',\n",
+ " 'characterized by directness in manner or speech; without subtlety or evasion'),\n",
+ " ('heart-to-heart',\n",
+ " 'openly straightforward and direct without reserve or secretiveness'),\n",
+ " ('point-blank',\n",
+ " 'characterized by directness in manner or speech; without subtlety or evasion'),\n",
+ " ('outspoken',\n",
+ " 'characterized by directness in manner or speech; without subtlety or evasion'),\n",
+ " ('frank',\n",
+ " 'characterized by directness in manner or speech; without subtlety or evasion')]},\n",
+ " {'answer': 'cannular',\n",
+ " 'hint': 'synonyms for cannular',\n",
+ " 'clues': [('tubelike',\n",
+ " 'constituting a tube; having hollow tubes (as for the passage of fluids)'),\n",
+ " ('tube-shaped',\n",
+ " 'constituting a tube; having hollow tubes (as for the passage of fluids)'),\n",
+ " ('vasiform',\n",
+ " 'constituting a tube; having hollow tubes (as for the passage of fluids)'),\n",
+ " ('tubular',\n",
+ " 'constituting a tube; having hollow tubes (as for the passage of fluids)')]},\n",
+ " {'answer': 'canted',\n",
+ " 'hint': 'synonyms for canted',\n",
+ " 'clues': [('leaning',\n",
+ " 'departing or being caused to depart from the true vertical or horizontal'),\n",
+ " ('tilted',\n",
+ " 'departing or being caused to depart from the true vertical or horizontal'),\n",
+ " ('tipped',\n",
+ " 'departing or being caused to depart from the true vertical or horizontal'),\n",
+ " ('atilt',\n",
+ " 'departing or being caused to depart from the true vertical or horizontal')]},\n",
+ " {'answer': 'capable',\n",
+ " 'hint': 'synonyms for capable',\n",
+ " 'clues': [('open', 'possibly accepting or permitting'),\n",
+ " ('able', 'have the skills and qualifications to do things well'),\n",
+ " ('equal to', 'having the requisite qualities for'),\n",
+ " ('adequate to', 'having the requisite qualities for'),\n",
+ " ('up to', 'having the requisite qualities for'),\n",
+ " ('subject', 'possibly accepting or permitting')]},\n",
+ " {'answer': 'captivated',\n",
+ " 'hint': 'synonyms for captivated',\n",
+ " 'clues': [('entranced', 'filled with wonder and delight'),\n",
+ " ('beguiled', 'filled with wonder and delight'),\n",
+ " ('enthralled', 'filled with wonder and delight'),\n",
+ " ('delighted', 'filled with wonder and delight'),\n",
+ " ('charmed', 'filled with wonder and delight')]},\n",
+ " {'answer': 'captivating',\n",
+ " 'hint': 'synonyms for captivating',\n",
+ " 'clues': [('enchanting', 'capturing interest as if by a spell'),\n",
+ " ('bewitching', 'capturing interest as if by a spell'),\n",
+ " ('fascinating', 'capturing interest as if by a spell'),\n",
+ " ('enthralling', 'capturing interest as if by a spell'),\n",
+ " ('entrancing', 'capturing interest as if by a spell')]},\n",
+ " {'answer': 'captive',\n",
+ " 'hint': 'synonyms for captive',\n",
+ " 'clues': [('imprisoned', 'being in captivity'),\n",
+ " ('jailed', 'being in captivity'),\n",
+ " ('wrapped',\n",
+ " 'giving or marked by complete attention to; ; ; - Walter de la Mare'),\n",
+ " ('engrossed',\n",
+ " 'giving or marked by complete attention to; ; ; - Walter de la Mare'),\n",
+ " ('confined', 'being in captivity'),\n",
+ " ('intent',\n",
+ " 'giving or marked by complete attention to; ; ; - Walter de la Mare'),\n",
+ " ('absorbed',\n",
+ " 'giving or marked by complete attention to; ; ; - Walter de la Mare')]},\n",
+ " {'answer': 'cardinal',\n",
+ " 'hint': 'synonyms for cardinal',\n",
+ " 'clues': [('primal', 'serving as an essential component'),\n",
+ " ('key', 'serving as an essential component'),\n",
+ " ('fundamental', 'serving as an essential component'),\n",
+ " ('central', 'serving as an essential component')]},\n",
+ " {'answer': 'carefree',\n",
+ " 'hint': 'synonyms for carefree',\n",
+ " 'clues': [('happy-go-lucky', 'cheerfully irresponsible'),\n",
+ " ('harum-scarum', 'cheerfully irresponsible'),\n",
+ " ('devil-may-care', 'cheerfully irresponsible'),\n",
+ " ('slaphappy', 'cheerfully irresponsible'),\n",
+ " ('unworried', 'free of trouble and worry and care'),\n",
+ " ('freewheeling', 'cheerfully irresponsible')]},\n",
+ " {'answer': 'careful',\n",
+ " 'hint': 'synonyms for careful',\n",
+ " 'clues': [('deliberate', 'unhurried and with care and dignity'),\n",
+ " ('measured', 'unhurried and with care and dignity'),\n",
+ " ('heedful', 'cautiously attentive'),\n",
+ " ('thrifty', 'mindful of the future in spending money')]},\n",
+ " {'answer': 'careworn',\n",
+ " 'hint': 'synonyms for careworn',\n",
+ " 'clues': [('haggard',\n",
+ " 'showing the wearing effects of overwork or care or suffering; ; ; ; - Charles Dickens'),\n",
+ " ('drawn',\n",
+ " 'showing the wearing effects of overwork or care or suffering; ; ; ; - Charles Dickens'),\n",
+ " ('raddled',\n",
+ " 'showing the wearing effects of overwork or care or suffering; ; ; ; - Charles Dickens'),\n",
+ " ('worn',\n",
+ " 'showing the wearing effects of overwork or care or suffering; ; ; ; - Charles Dickens')]},\n",
+ " {'answer': 'carmine',\n",
+ " 'hint': 'synonyms for carmine',\n",
+ " 'clues': [('red',\n",
+ " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n",
+ " ('ruddy',\n",
+ " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n",
+ " ('cerise',\n",
+ " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n",
+ " ('ruby-red',\n",
+ " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n",
+ " ('ruby',\n",
+ " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n",
+ " ('cherry',\n",
+ " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n",
+ " ('crimson',\n",
+ " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n",
+ " ('scarlet',\n",
+ " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n",
+ " ('reddish',\n",
+ " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n",
+ " ('cherry-red',\n",
+ " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n",
+ " ('blood-red',\n",
+ " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies')]},\n",
+ " {'answer': 'casual',\n",
+ " 'hint': 'synonyms for casual',\n",
+ " 'clues': [('chance', 'occurring or appearing or singled out by chance'),\n",
+ " ('effortless', 'not showing effort or strain'),\n",
+ " ('occasional', 'occurring from time to time'),\n",
+ " ('everyday', 'appropriate for ordinary or routine occasions'),\n",
+ " ('passing', 'hasty and without attention to detail; not thorough'),\n",
+ " ('insouciant', 'marked by blithe unconcern'),\n",
+ " ('cursory', 'hasty and without attention to detail; not thorough'),\n",
+ " ('nonchalant', 'marked by blithe unconcern'),\n",
+ " ('daily', 'appropriate for ordinary or routine occasions'),\n",
+ " ('fooling', 'characterized by a feeling of irresponsibility'),\n",
+ " ('free-and-easy', 'natural and unstudied'),\n",
+ " ('perfunctory', 'hasty and without attention to detail; not thorough')]},\n",
+ " {'answer': 'catching',\n",
+ " 'hint': 'synonyms for catching',\n",
+ " 'clues': [('contractable',\n",
+ " '(of disease) capable of being transmitted by infection'),\n",
+ " ('transmissible',\n",
+ " '(of disease) capable of being transmitted by infection'),\n",
+ " ('contagious', '(of disease) capable of being transmitted by infection'),\n",
+ " ('transmittable',\n",
+ " '(of disease) capable of being transmitted by infection'),\n",
+ " ('communicable',\n",
+ " '(of disease) capable of being transmitted by infection')]},\n",
+ " {'answer': 'cathartic',\n",
+ " 'hint': 'synonyms for cathartic',\n",
+ " 'clues': [('psychotherapeutic', 'emotionally purging'),\n",
+ " ('purgative', 'strongly laxative'),\n",
+ " ('releasing', 'emotionally purging (of e.g. art)'),\n",
+ " ('evacuant', 'strongly laxative')]},\n",
+ " {'answer': 'catty-cornered',\n",
+ " 'hint': 'synonyms for catty-cornered',\n",
+ " 'clues': [('kitty-cornered',\n",
+ " 'slanted across a polygon on a diagonal line'),\n",
+ " ('cata-cornered', 'slanted across a polygon on a diagonal line'),\n",
+ " ('catercorner', 'slanted across a polygon on a diagonal line'),\n",
+ " ('catty-corner', 'slanted across a polygon on a diagonal line')]},\n",
+ " {'answer': 'caustic',\n",
+ " 'hint': 'synonyms for caustic',\n",
+ " 'clues': [('acerb', 'harsh or corrosive in tone'),\n",
+ " ('acrid', 'harsh or corrosive in tone'),\n",
+ " ('acerbic', 'harsh or corrosive in tone'),\n",
+ " ('vitriolic', 'harsh or corrosive in tone'),\n",
+ " ('erosive',\n",
+ " 'of a substance, especially a strong acid; capable of destroying or eating away by chemical action'),\n",
+ " ('mordant',\n",
+ " 'of a substance, especially a strong acid; capable of destroying or eating away by chemical action'),\n",
+ " ('virulent', 'harsh or corrosive in tone'),\n",
+ " ('corrosive',\n",
+ " 'of a substance, especially a strong acid; capable of destroying or eating away by chemical action'),\n",
+ " ('sulphurous', 'harsh or corrosive in tone'),\n",
+ " ('sulfurous', 'harsh or corrosive in tone'),\n",
+ " ('bitter', 'harsh or corrosive in tone'),\n",
+ " ('blistering', 'harsh or corrosive in tone')]},\n",
+ " {'answer': 'cautionary',\n",
+ " 'hint': 'synonyms for cautionary',\n",
+ " 'clues': [('exemplary', 'serving to warn'),\n",
+ " ('prophylactic', 'warding off; - Victor Schultze'),\n",
+ " ('warning', 'serving to warn'),\n",
+ " ('monitory', 'serving to warn')]},\n",
+ " {'answer': 'ceaseless',\n",
+ " 'hint': 'synonyms for ceaseless',\n",
+ " 'clues': [('never-ending',\n",
+ " 'uninterrupted in time and indefinitely long continuing'),\n",
+ " ('incessant', 'uninterrupted in time and indefinitely long continuing'),\n",
+ " ('constant', 'uninterrupted in time and indefinitely long continuing'),\n",
+ " ('unceasing', 'uninterrupted in time and indefinitely long continuing'),\n",
+ " ('unremitting', 'uninterrupted in time and indefinitely long continuing'),\n",
+ " ('perpetual', 'uninterrupted in time and indefinitely long continuing')]},\n",
+ " {'answer': 'celebrated',\n",
+ " 'hint': 'synonyms for celebrated',\n",
+ " 'clues': [('famous', 'widely known and esteemed'),\n",
+ " ('historied', 'having an illustrious past'),\n",
+ " ('illustrious', 'widely known and esteemed'),\n",
+ " ('notable', 'widely known and esteemed'),\n",
+ " ('famed', 'widely known and esteemed'),\n",
+ " ('far-famed', 'widely known and esteemed'),\n",
+ " ('noted', 'widely known and esteemed'),\n",
+ " ('renowned', 'widely known and esteemed')]},\n",
+ " {'answer': 'censurable',\n",
+ " 'hint': 'synonyms for censurable',\n",
+ " 'clues': [('blameworthy',\n",
+ " 'deserving blame or censure as being wrong or evil or injurious'),\n",
+ " ('blamable',\n",
+ " 'deserving blame or censure as being wrong or evil or injurious'),\n",
+ " ('culpable',\n",
+ " 'deserving blame or censure as being wrong or evil or injurious'),\n",
+ " ('blameful',\n",
+ " 'deserving blame or censure as being wrong or evil or injurious')]},\n",
+ " {'answer': 'central',\n",
+ " 'hint': 'synonyms for central',\n",
+ " 'clues': [('key', 'serving as an essential component'),\n",
+ " ('primal', 'serving as an essential component'),\n",
+ " ('cardinal', 'serving as an essential component'),\n",
+ " ('fundamental', 'serving as an essential component')]},\n",
+ " {'answer': 'cerise',\n",
+ " 'hint': 'synonyms for cerise',\n",
+ " 'clues': [('red',\n",
+ " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n",
+ " ('ruddy',\n",
+ " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n",
+ " ('ruby-red',\n",
+ " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n",
+ " ('ruby',\n",
+ " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n",
+ " ('cherry',\n",
+ " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n",
+ " ('carmine',\n",
+ " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n",
+ " ('crimson',\n",
+ " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n",
+ " ('scarlet',\n",
+ " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n",
+ " ('reddish',\n",
+ " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n",
+ " ('cherry-red',\n",
+ " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n",
+ " ('blood-red',\n",
+ " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies')]},\n",
+ " {'answer': 'cernuous',\n",
+ " 'hint': 'synonyms for cernuous',\n",
+ " 'clues': [('pendulous',\n",
+ " 'having branches or flower heads that bend downward'),\n",
+ " ('drooping', 'having branches or flower heads that bend downward'),\n",
+ " ('weeping', 'having branches or flower heads that bend downward'),\n",
+ " ('nodding', 'having branches or flower heads that bend downward')]},\n",
+ " {'answer': 'chancy',\n",
+ " 'hint': 'synonyms for chancy',\n",
+ " 'clues': [('dodgy',\n",
+ " 'of uncertain outcome; especially fraught with risk; - New Yorker'),\n",
+ " ('fluky', 'subject to accident or chance or change'),\n",
+ " ('chanceful',\n",
+ " 'of uncertain outcome; especially fraught with risk; - New Yorker'),\n",
+ " ('dicey',\n",
+ " 'of uncertain outcome; especially fraught with risk; - New Yorker'),\n",
+ " ('iffy', 'subject to accident or chance or change')]},\n",
+ " {'answer': 'changeable',\n",
+ " 'hint': 'synonyms for changeable',\n",
+ " 'clues': [('iridescent',\n",
+ " 'varying in color when seen in different lights or from different angles'),\n",
+ " ('shot',\n",
+ " 'varying in color when seen in different lights or from different angles'),\n",
+ " ('chatoyant',\n",
+ " 'varying in color when seen in different lights or from different angles'),\n",
+ " ('uncertain', 'subject to change'),\n",
+ " ('mutable',\n",
+ " 'capable of or tending to change in form or quality or nature'),\n",
+ " ('unsettled', 'subject to change'),\n",
+ " ('changeful',\n",
+ " 'such that alteration is possible; having a marked tendency to change')]},\n",
+ " {'answer': 'changeless',\n",
+ " 'hint': 'synonyms for changeless',\n",
+ " 'clues': [('immutable',\n",
+ " 'not subject or susceptible to change or variation in form or quality or nature'),\n",
+ " ('invariant', 'unvarying in nature'),\n",
+ " ('unvarying', 'unvarying in nature'),\n",
+ " ('constant', 'unvarying in nature'),\n",
+ " ('unalterable', 'remaining the same for indefinitely long times')]},\n",
+ " {'answer': 'charitable',\n",
+ " 'hint': 'synonyms for charitable',\n",
+ " 'clues': [('large-hearted',\n",
+ " 'showing or motivated by sympathy and understanding and generosity'),\n",
+ " ('kindly',\n",
+ " 'showing or motivated by sympathy and understanding and generosity'),\n",
+ " ('sympathetic',\n",
+ " 'showing or motivated by sympathy and understanding and generosity'),\n",
+ " ('good-hearted',\n",
+ " 'showing or motivated by sympathy and understanding and generosity'),\n",
+ " ('benevolent',\n",
+ " 'showing or motivated by sympathy and understanding and generosity'),\n",
+ " ('openhearted',\n",
+ " 'showing or motivated by sympathy and understanding and generosity')]},\n",
+ " {'answer': 'charmed',\n",
+ " 'hint': 'synonyms for charmed',\n",
+ " 'clues': [('entranced', 'filled with wonder and delight'),\n",
+ " ('beguiled', 'filled with wonder and delight'),\n",
+ " ('enthralled', 'filled with wonder and delight'),\n",
+ " ('delighted', 'filled with wonder and delight'),\n",
+ " ('captivated', 'filled with wonder and delight')]},\n",
+ " {'answer': 'charming',\n",
+ " 'hint': 'synonyms for charming',\n",
+ " 'clues': [('witching',\n",
+ " 'possessing or using or characteristic of or appropriate to supernatural powers; ; ; ; - Shakespeare'),\n",
+ " ('sorcerous',\n",
+ " 'possessing or using or characteristic of or appropriate to supernatural powers; ; ; ; - Shakespeare'),\n",
+ " ('magical',\n",
+ " 'possessing or using or characteristic of or appropriate to supernatural powers; ; ; ; - Shakespeare'),\n",
+ " ('wizardly',\n",
+ " 'possessing or using or characteristic of or appropriate to supernatural powers; ; ; ; - Shakespeare'),\n",
+ " ('magic',\n",
+ " 'possessing or using or characteristic of or appropriate to supernatural powers; ; ; ; - Shakespeare')]},\n",
+ " {'answer': 'chatty',\n",
+ " 'hint': 'synonyms for chatty',\n",
+ " 'clues': [('talkative', 'full of trivial conversation'),\n",
+ " ('gossipy', 'prone to friendly informal communication'),\n",
+ " ('gabby', 'full of trivial conversation'),\n",
+ " ('newsy', 'prone to friendly informal communication'),\n",
+ " ('talky', 'full of trivial conversation'),\n",
+ " ('garrulous', 'full of trivial conversation'),\n",
+ " ('loquacious', 'full of trivial conversation')]},\n",
+ " {'answer': 'chauvinistic',\n",
+ " 'hint': 'synonyms for chauvinistic',\n",
+ " 'clues': [('nationalistic', 'fanatically patriotic'),\n",
+ " ('flag-waving', 'fanatically patriotic'),\n",
+ " ('jingoistic', 'fanatically patriotic'),\n",
+ " ('superpatriotic', 'fanatically patriotic'),\n",
+ " ('ultranationalistic', 'fanatically patriotic')]},\n",
+ " {'answer': 'cheap',\n",
+ " 'hint': 'synonyms for cheap',\n",
+ " 'clues': [('flash', 'tastelessly showy'),\n",
+ " ('garish', 'tastelessly showy'),\n",
+ " ('trashy', 'tastelessly showy'),\n",
+ " ('chinchy', 'embarrassingly stingy'),\n",
+ " ('gimcrack', 'tastelessly showy'),\n",
+ " ('bum', 'of very poor quality; flimsy'),\n",
+ " ('tacky', 'tastelessly showy'),\n",
+ " ('brassy', 'tastelessly showy'),\n",
+ " ('meretricious', 'tastelessly showy'),\n",
+ " ('crummy', 'of very poor quality; flimsy'),\n",
+ " ('sleazy', 'of very poor quality; flimsy'),\n",
+ " ('inexpensive', 'relatively low in price or charging low prices'),\n",
+ " ('tinny', 'of very poor quality; flimsy'),\n",
+ " ('chintzy', 'embarrassingly stingy'),\n",
+ " ('gaudy', 'tastelessly showy'),\n",
+ " ('cheesy', 'of very poor quality; flimsy'),\n",
+ " ('tawdry', 'tastelessly showy'),\n",
+ " ('tatty', 'tastelessly showy'),\n",
+ " ('punk', 'of very poor quality; flimsy'),\n",
+ " ('loud', 'tastelessly showy')]},\n",
+ " {'answer': 'cheating',\n",
+ " 'hint': 'synonyms for cheating',\n",
+ " 'clues': [('adulterous', 'not faithful to a spouse or lover'),\n",
+ " ('two-timing', 'not faithful to a spouse or lover'),\n",
+ " ('unsporting', 'violating accepted standards or rules'),\n",
+ " ('dirty', 'violating accepted standards or rules'),\n",
+ " ('unsportsmanlike', 'violating accepted standards or rules'),\n",
+ " ('foul', 'violating accepted standards or rules')]},\n",
+ " {'answer': 'cheeseparing',\n",
+ " 'hint': 'synonyms for cheeseparing',\n",
+ " 'clues': [('near', 'giving or spending with reluctance'),\n",
+ " ('skinny', 'giving or spending with reluctance'),\n",
+ " ('penny-pinching', 'giving or spending with reluctance'),\n",
+ " ('close', 'giving or spending with reluctance')]},\n",
+ " {'answer': 'cheesy',\n",
+ " 'hint': 'synonyms for cheesy',\n",
+ " 'clues': [('bum', 'of very poor quality; flimsy'),\n",
+ " ('punk', 'of very poor quality; flimsy'),\n",
+ " ('cheap', 'of very poor quality; flimsy'),\n",
+ " ('chintzy', 'of very poor quality; flimsy'),\n",
+ " ('tinny', 'of very poor quality; flimsy'),\n",
+ " ('crummy', 'of very poor quality; flimsy'),\n",
+ " ('sleazy', 'of very poor quality; flimsy')]},\n",
+ " {'answer': 'cherry',\n",
+ " 'hint': 'synonyms for cherry',\n",
+ " 'clues': [('red',\n",
+ " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n",
+ " ('ruddy',\n",
+ " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n",
+ " ('cerise',\n",
+ " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n",
+ " ('ruby-red',\n",
+ " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n",
+ " ('ruby',\n",
+ " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n",
+ " ('carmine',\n",
+ " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n",
+ " ('crimson',\n",
+ " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n",
+ " ('scarlet',\n",
+ " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n",
+ " ('reddish',\n",
+ " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n",
+ " ('cherry-red',\n",
+ " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n",
+ " ('blood-red',\n",
+ " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies')]},\n",
+ " {'answer': 'cherry-red',\n",
+ " 'hint': 'synonyms for cherry-red',\n",
+ " 'clues': [('red',\n",
+ " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n",
+ " ('ruddy',\n",
+ " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n",
+ " ('cerise',\n",
+ " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n",
+ " ('ruby-red',\n",
+ " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n",
+ " ('ruby',\n",
+ " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n",
+ " ('cherry',\n",
+ " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n",
+ " ('carmine',\n",
+ " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n",
+ " ('crimson',\n",
+ " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n",
+ " ('scarlet',\n",
+ " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n",
+ " ('reddish',\n",
+ " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n",
+ " ('blood-red',\n",
+ " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies')]},\n",
+ " {'answer': 'chicken',\n",
+ " 'hint': 'synonyms for chicken',\n",
+ " 'clues': [('lily-livered', 'easily frightened'),\n",
+ " ('yellow-bellied', 'easily frightened'),\n",
+ " ('white-livered', 'easily frightened'),\n",
+ " ('chickenhearted', 'easily frightened'),\n",
+ " ('yellow', 'easily frightened')]},\n",
+ " {'answer': 'chickenhearted',\n",
+ " 'hint': 'synonyms for chickenhearted',\n",
+ " 'clues': [('yellow-bellied', 'easily frightened'),\n",
+ " ('chicken', 'easily frightened'),\n",
+ " ('lily-livered', 'easily frightened'),\n",
+ " ('white-livered', 'easily frightened'),\n",
+ " ('yellow', 'easily frightened')]},\n",
+ " {'answer': 'chief',\n",
+ " 'hint': 'synonyms for chief',\n",
+ " 'clues': [('main', 'most important element'),\n",
+ " ('master', 'most important element'),\n",
+ " ('principal', 'most important element'),\n",
+ " ('primary', 'most important element')]},\n",
+ " {'answer': 'childlike',\n",
+ " 'hint': 'synonyms for childlike',\n",
+ " 'clues': [('childly', 'befitting a young child'),\n",
+ " ('wide-eyed', 'exhibiting childlike simplicity and credulity'),\n",
+ " ('simple', 'exhibiting childlike simplicity and credulity'),\n",
+ " ('dewy-eyed', 'exhibiting childlike simplicity and credulity'),\n",
+ " ('round-eyed', 'exhibiting childlike simplicity and credulity')]},\n",
+ " {'answer': 'chintzy',\n",
+ " 'hint': 'synonyms for chintzy',\n",
+ " 'clues': [('tinny', 'of very poor quality; flimsy'),\n",
+ " ('cheap', 'embarrassingly stingy'),\n",
+ " ('cheesy', 'of very poor quality; flimsy'),\n",
+ " ('chinchy', 'embarrassingly stingy'),\n",
+ " ('bum', 'of very poor quality; flimsy'),\n",
+ " ('punk', 'of very poor quality; flimsy'),\n",
+ " ('crummy', 'of very poor quality; flimsy'),\n",
+ " ('sleazy', 'of very poor quality; flimsy')]},\n",
+ " {'answer': 'chock-full',\n",
+ " 'hint': 'synonyms for chock-full',\n",
+ " 'clues': [('chuck-full', 'packed full to capacity'),\n",
+ " ('chockful', 'packed full to capacity'),\n",
+ " ('cram full', 'packed full to capacity'),\n",
+ " ('chockablock', 'packed full to capacity'),\n",
+ " ('choke-full', 'packed full to capacity')]},\n",
+ " {'answer': 'chockablock',\n",
+ " 'hint': 'synonyms for chockablock',\n",
+ " 'clues': [('chuck-full', 'packed full to capacity'),\n",
+ " ('chockful', 'packed full to capacity'),\n",
+ " ('cram full', 'packed full to capacity'),\n",
+ " ('choke-full', 'packed full to capacity')]},\n",
+ " {'answer': 'chockful',\n",
+ " 'hint': 'synonyms for chockful',\n",
+ " 'clues': [('chuck-full', 'packed full to capacity'),\n",
+ " ('cram full', 'packed full to capacity'),\n",
+ " ('choke-full', 'packed full to capacity'),\n",
+ " ('chockablock', 'packed full to capacity')]},\n",
+ " {'answer': 'choice',\n",
+ " 'hint': 'synonyms for choice',\n",
+ " 'clues': [('select', 'of superior grade'),\n",
+ " ('quality', 'of superior grade'),\n",
+ " ('prize', 'of superior grade'),\n",
+ " ('prime', 'of superior grade')]},\n",
+ " {'answer': 'choke-full',\n",
+ " 'hint': 'synonyms for choke-full',\n",
+ " 'clues': [('chuck-full', 'packed full to capacity'),\n",
+ " ('chockful', 'packed full to capacity'),\n",
+ " ('cram full', 'packed full to capacity'),\n",
+ " ('chockablock', 'packed full to capacity')]},\n",
+ " {'answer': 'choleric',\n",
+ " 'hint': 'synonyms for choleric',\n",
+ " 'clues': [('hot-tempered', 'quickly aroused to anger'),\n",
+ " ('quick-tempered', 'quickly aroused to anger'),\n",
+ " ('irascible', 'characterized by anger'),\n",
+ " ('hotheaded', 'quickly aroused to anger')]},\n",
+ " {'answer': 'chuck-full',\n",
+ " 'hint': 'synonyms for chuck-full',\n",
+ " 'clues': [('chockful', 'packed full to capacity'),\n",
+ " ('cram full', 'packed full to capacity'),\n",
+ " ('choke-full', 'packed full to capacity'),\n",
+ " ('chockablock', 'packed full to capacity')]},\n",
+ " {'answer': 'chummy',\n",
+ " 'hint': 'synonyms for chummy',\n",
+ " 'clues': [('thick', '(used informally) associated on close terms'),\n",
+ " ('palsy-walsy',\n",
+ " '(used colloquially) having the relationship of friends or pals'),\n",
+ " ('buddy-buddy', '(used informally) associated on close terms'),\n",
+ " ('matey',\n",
+ " '(used colloquially) having the relationship of friends or pals'),\n",
+ " ('pally',\n",
+ " '(used colloquially) having the relationship of friends or pals')]},\n",
+ " {'answer': 'chunky',\n",
+ " 'hint': 'synonyms for chunky',\n",
+ " 'clues': [('low-set',\n",
+ " 'short and thick; as e.g. having short legs and heavy musculature'),\n",
+ " ('dumpy',\n",
+ " 'short and thick; as e.g. having short legs and heavy musculature'),\n",
+ " ('squatty',\n",
+ " 'short and thick; as e.g. having short legs and heavy musculature'),\n",
+ " ('squat',\n",
+ " 'short and thick; as e.g. having short legs and heavy musculature'),\n",
+ " ('lumpy', 'like or containing small sticky lumps'),\n",
+ " ('stumpy',\n",
+ " 'short and thick; as e.g. having short legs and heavy musculature')]},\n",
+ " {'answer': 'churning',\n",
+ " 'hint': 'synonyms for churning',\n",
+ " 'clues': [('churned-up',\n",
+ " 'moving with or producing or produced by vigorous agitation'),\n",
+ " ('roiled', '(of a liquid) agitated vigorously; in a state of turbulence'),\n",
+ " ('roiling',\n",
+ " '(of a liquid) agitated vigorously; in a state of turbulence'),\n",
+ " ('turbulent',\n",
+ " '(of a liquid) agitated vigorously; in a state of turbulence'),\n",
+ " ('roily',\n",
+ " '(of a liquid) agitated vigorously; in a state of turbulence')]},\n",
+ " {'answer': 'circinate',\n",
+ " 'hint': 'synonyms for circinate',\n",
+ " 'clues': [('doughnut-shaped', 'shaped like a ring'),\n",
+ " ('ring-shaped', 'shaped like a ring'),\n",
+ " ('annular', 'shaped like a ring'),\n",
+ " ('annulate', 'shaped like a ring'),\n",
+ " ('ringed', 'shaped like a ring')]},\n",
+ " {'answer': 'cissy',\n",
+ " 'hint': 'synonyms for cissy',\n",
+ " 'clues': [('epicene', 'having unsuitable feminine qualities'),\n",
+ " ('effeminate', 'having unsuitable feminine qualities'),\n",
+ " ('emasculate', 'having unsuitable feminine qualities'),\n",
+ " ('sissy', 'having unsuitable feminine qualities'),\n",
+ " ('sissified', 'having unsuitable feminine qualities'),\n",
+ " ('sissyish', 'having unsuitable feminine qualities')]},\n",
+ " {'answer': 'civilised',\n",
+ " 'hint': 'synonyms for civilised',\n",
+ " 'clues': [('polite', 'marked by refinement in taste and manners'),\n",
+ " ('genteel', 'marked by refinement in taste and manners'),\n",
+ " ('civilized',\n",
+ " 'having a high state of culture and development both social and technological'),\n",
+ " ('cultured', 'marked by refinement in taste and manners'),\n",
+ " ('cultivated', 'marked by refinement in taste and manners')]},\n",
+ " {'answer': 'civilized',\n",
+ " 'hint': 'synonyms for civilized',\n",
+ " 'clues': [('polite', 'marked by refinement in taste and manners'),\n",
+ " ('genteel', 'marked by refinement in taste and manners'),\n",
+ " ('civilised',\n",
+ " 'having a high state of culture and development both social and technological'),\n",
+ " ('cultured', 'marked by refinement in taste and manners'),\n",
+ " ('cultivated', 'marked by refinement in taste and manners')]},\n",
+ " {'answer': 'clamant',\n",
+ " 'hint': 'synonyms for clamant',\n",
+ " 'clues': [('strident',\n",
+ " 'conspicuously and offensively loud; given to vehement outcry'),\n",
+ " ('clamorous',\n",
+ " 'conspicuously and offensively loud; given to vehement outcry'),\n",
+ " ('insistent', 'demanding attention; ; ; - H.L.Mencken'),\n",
+ " ('instant', 'demanding attention; ; ; - H.L.Mencken'),\n",
+ " ('exigent', 'demanding attention; ; ; - H.L.Mencken'),\n",
+ " ('blatant',\n",
+ " 'conspicuously and offensively loud; given to vehement outcry'),\n",
+ " ('vociferous',\n",
+ " 'conspicuously and offensively loud; given to vehement outcry'),\n",
+ " ('crying', 'demanding attention; ; ; - H.L.Mencken')]},\n",
+ " {'answer': 'clamorous',\n",
+ " 'hint': 'synonyms for clamorous',\n",
+ " 'clues': [('blatant',\n",
+ " 'conspicuously and offensively loud; given to vehement outcry'),\n",
+ " ('strident',\n",
+ " 'conspicuously and offensively loud; given to vehement outcry'),\n",
+ " ('clamant',\n",
+ " 'conspicuously and offensively loud; given to vehement outcry'),\n",
+ " ('vociferous',\n",
+ " 'conspicuously and offensively loud; given to vehement outcry')]},\n",
+ " {'answer': 'clandestine',\n",
+ " 'hint': 'synonyms for clandestine',\n",
+ " 'clues': [('cloak-and-dagger',\n",
+ " 'conducted with or marked by hidden aims or methods'),\n",
+ " ('underground', 'conducted with or marked by hidden aims or methods'),\n",
+ " ('hugger-mugger', 'conducted with or marked by hidden aims or methods'),\n",
+ " ('secret', 'conducted with or marked by hidden aims or methods'),\n",
+ " ('undercover', 'conducted with or marked by hidden aims or methods'),\n",
+ " ('surreptitious', 'conducted with or marked by hidden aims or methods'),\n",
+ " ('hush-hush', 'conducted with or marked by hidden aims or methods'),\n",
+ " ('hole-and-corner',\n",
+ " 'conducted with or marked by hidden aims or methods')]},\n",
+ " {'answer': 'clannish',\n",
+ " 'hint': 'synonyms for clannish',\n",
+ " 'clues': [('snobbish',\n",
+ " 'befitting or characteristic of those who incline to social exclusiveness and who rebuff the advances of people considered inferior'),\n",
+ " ('cliquish',\n",
+ " 'befitting or characteristic of those who incline to social exclusiveness and who rebuff the advances of people considered inferior'),\n",
+ " ('snobby',\n",
+ " 'befitting or characteristic of those who incline to social exclusiveness and who rebuff the advances of people considered inferior'),\n",
+ " ('clubby',\n",
+ " 'befitting or characteristic of those who incline to social exclusiveness and who rebuff the advances of people considered inferior')]},\n",
+ " {'answer': 'clean',\n",
+ " 'hint': 'synonyms for clean',\n",
+ " 'clues': [('uncontaminating',\n",
+ " 'not spreading pollution or contamination; especially radioactive contamination'),\n",
+ " ('neat', 'free from clumsiness; precisely or deftly executed'),\n",
+ " ('fresh', 'free from impurities'),\n",
+ " ('white', '(of a surface) not written or printed on'),\n",
+ " ('unclouded',\n",
+ " '(of sound or color) free from anything that dulls or dims'),\n",
+ " ('blank', '(of a surface) not written or printed on'),\n",
+ " ('uninfected', 'free from sepsis or infection'),\n",
+ " ('light', '(of sound or color) free from anything that dulls or dims'),\n",
+ " ('sporting', 'exhibiting or calling for sportsmanship or fair play'),\n",
+ " ('clear', '(of sound or color) free from anything that dulls or dims'),\n",
+ " ('clean-living', 'morally pure'),\n",
+ " ('sportsmanlike', 'exhibiting or calling for sportsmanship or fair play'),\n",
+ " ('sporty', 'exhibiting or calling for sportsmanship or fair play'),\n",
+ " ('fair', '(of a manuscript) having few alterations or corrections'),\n",
+ " ('unobjectionable',\n",
+ " '(of behavior or especially language) free from objectionable elements; fit for all observers')]},\n",
+ " {'answer': 'clean-cut',\n",
+ " 'hint': 'synonyms for clean-cut',\n",
+ " 'clues': [('clear-cut',\n",
+ " 'clear and distinct to the senses; easily perceptible'),\n",
+ " ('trim', 'neat and smart in appearance'),\n",
+ " ('clear', 'clear and distinct to the senses; easily perceptible'),\n",
+ " ('trig', 'neat and smart in appearance')]},\n",
+ " {'answer': 'clear',\n",
+ " 'hint': 'synonyms for clear',\n",
+ " 'clues': [('percipient',\n",
+ " 'characterized by ease and quickness in perceiving'),\n",
+ " ('clean', '(of sound or color) free from anything that dulls or dims'),\n",
+ " ('clear-cut', 'clear and distinct to the senses; easily perceptible'),\n",
+ " ('well-defined', 'accurately stated or described'),\n",
+ " ('unmortgaged',\n",
+ " '(especially of a title) free from any encumbrance or limitation that presents a question of fact or law'),\n",
+ " ('unclouded',\n",
+ " '(of sound or color) free from anything that dulls or dims'),\n",
+ " ('light', '(of sound or color) free from anything that dulls or dims'),\n",
+ " ('readable', 'easily deciphered'),\n",
+ " ('decipherable', 'easily deciphered'),\n",
+ " ('absolved', 'freed from any question of guilt'),\n",
+ " ('exonerated', 'freed from any question of guilt'),\n",
+ " ('exculpated', 'freed from any question of guilt'),\n",
+ " ('vindicated', 'freed from any question of guilt'),\n",
+ " ('cleared', 'freed from any question of guilt'),\n",
+ " ('open', 'affording free passage or view')]},\n",
+ " {'answer': 'clear-cut',\n",
+ " 'hint': 'synonyms for clear-cut',\n",
+ " 'clues': [('clean-cut',\n",
+ " 'clear and distinct to the senses; easily perceptible'),\n",
+ " ('clear', 'clear and distinct to the senses; easily perceptible'),\n",
+ " ('distinct', 'clearly or sharply defined to the mind'),\n",
+ " ('trenchant', 'clearly or sharply defined to the mind')]},\n",
+ " {'answer': 'cleared',\n",
+ " 'hint': 'synonyms for cleared',\n",
+ " 'clues': [('vindicated', 'freed from any question of guilt'),\n",
+ " ('absolved', 'freed from any question of guilt'),\n",
+ " ('clear', 'freed from any question of guilt'),\n",
+ " ('exonerated', 'freed from any question of guilt'),\n",
+ " ('exculpated', 'freed from any question of guilt')]},\n",
+ " {'answer': 'clever',\n",
+ " 'hint': 'synonyms for clever',\n",
+ " 'clues': [('cunning', 'showing inventiveness and skill'),\n",
+ " ('apt', 'mentally quick and resourceful; ; -Bram Stoker'),\n",
+ " ('cagey', 'showing self-interest and shrewdness in dealing with others'),\n",
+ " ('canny', 'showing self-interest and shrewdness in dealing with others'),\n",
+ " ('ingenious', 'showing inventiveness and skill')]},\n",
+ " {'answer': 'cliquish',\n",
+ " 'hint': 'synonyms for cliquish',\n",
+ " 'clues': [('snobbish',\n",
+ " 'befitting or characteristic of those who incline to social exclusiveness and who rebuff the advances of people considered inferior'),\n",
+ " ('clannish',\n",
+ " 'befitting or characteristic of those who incline to social exclusiveness and who rebuff the advances of people considered inferior'),\n",
+ " ('snobby',\n",
+ " 'befitting or characteristic of those who incline to social exclusiveness and who rebuff the advances of people considered inferior'),\n",
+ " ('clubby',\n",
+ " 'befitting or characteristic of those who incline to social exclusiveness and who rebuff the advances of people considered inferior')]},\n",
+ " {'answer': 'cloak-and-dagger',\n",
+ " 'hint': 'synonyms for cloak-and-dagger',\n",
+ " 'clues': [('underground',\n",
+ " 'conducted with or marked by hidden aims or methods'),\n",
+ " ('hugger-mugger', 'conducted with or marked by hidden aims or methods'),\n",
+ " ('secret', 'conducted with or marked by hidden aims or methods'),\n",
+ " ('undercover', 'conducted with or marked by hidden aims or methods'),\n",
+ " ('surreptitious', 'conducted with or marked by hidden aims or methods'),\n",
+ " ('clandestine', 'conducted with or marked by hidden aims or methods'),\n",
+ " ('hush-hush', 'conducted with or marked by hidden aims or methods'),\n",
+ " ('hole-and-corner',\n",
+ " 'conducted with or marked by hidden aims or methods')]},\n",
+ " {'answer': 'cloaked',\n",
+ " 'hint': 'synonyms for cloaked',\n",
+ " 'clues': [('draped',\n",
+ " 'covered with or as if with clothes or a wrap or cloak'),\n",
+ " ('clothed', 'covered with or as if with clothes or a wrap or cloak'),\n",
+ " ('mantled', 'covered with or as if with clothes or a wrap or cloak'),\n",
+ " ('masked',\n",
+ " 'having its true character concealed with the intent of misleading'),\n",
+ " ('wrapped', 'covered with or as if with clothes or a wrap or cloak'),\n",
+ " ('disguised',\n",
+ " 'having its true character concealed with the intent of misleading')]},\n",
+ " {'answer': 'cloistered',\n",
+ " 'hint': 'synonyms for cloistered',\n",
+ " 'clues': [('sequestered', 'providing privacy or seclusion'),\n",
+ " ('monastic',\n",
+ " 'of communal life sequestered from the world under religious vows'),\n",
+ " ('conventual',\n",
+ " 'of communal life sequestered from the world under religious vows'),\n",
+ " ('cloistral',\n",
+ " 'of communal life sequestered from the world under religious vows'),\n",
+ " ('reclusive', 'providing privacy or seclusion'),\n",
+ " ('secluded', 'providing privacy or seclusion')]},\n",
+ " {'answer': 'close',\n",
+ " 'hint': 'synonyms for close',\n",
+ " 'clues': [('tightlipped',\n",
+ " 'inclined to secrecy or reticence about divulging information'),\n",
+ " ('snug', 'fitting closely but comfortably'),\n",
+ " ('cheeseparing', 'giving or spending with reluctance'),\n",
+ " ('airless', 'lacking fresh air'),\n",
+ " ('unaired', 'lacking fresh air'),\n",
+ " ('stuffy', 'lacking fresh air'),\n",
+ " ('near', 'not far distant in time or space or degree or circumstances'),\n",
+ " ('close-fitting', 'fitting closely but comfortably'),\n",
+ " ('skinny', 'giving or spending with reluctance'),\n",
+ " ('nigh', 'not far distant in time or space or degree or circumstances'),\n",
+ " ('confining', 'crowded'),\n",
+ " ('penny-pinching', 'giving or spending with reluctance'),\n",
+ " ('faithful', 'marked by fidelity to an original'),\n",
+ " ('tight', 'of textiles'),\n",
+ " ('closelipped',\n",
+ " 'inclined to secrecy or reticence about divulging information'),\n",
+ " ('secretive',\n",
+ " 'inclined to secrecy or reticence about divulging information'),\n",
+ " ('closemouthed',\n",
+ " 'inclined to secrecy or reticence about divulging information')]},\n",
+ " {'answer': 'close_at_hand',\n",
+ " 'hint': 'synonyms for close at hand',\n",
+ " 'clues': [('imminent', 'close in time; about to occur'),\n",
+ " ('impendent', 'close in time; about to occur'),\n",
+ " ('impending', 'close in time; about to occur'),\n",
+ " ('at hand', 'close in time; about to occur')]},\n",
+ " {'answer': 'closed',\n",
+ " 'hint': 'synonyms for closed',\n",
+ " 'clues': [('unopen', 'not open'),\n",
+ " ('shut', 'used especially of mouth or eyes'),\n",
+ " ('closed in', 'blocked against entry'),\n",
+ " ('unsympathetic', 'not having an open mind')]},\n",
+ " {'answer': 'closelipped',\n",
+ " 'hint': 'synonyms for closelipped',\n",
+ " 'clues': [('closemouthed',\n",
+ " 'inclined to secrecy or reticence about divulging information'),\n",
+ " ('close', 'inclined to secrecy or reticence about divulging information'),\n",
+ " ('secretive',\n",
+ " 'inclined to secrecy or reticence about divulging information'),\n",
+ " ('tightlipped',\n",
+ " 'inclined to secrecy or reticence about divulging information')]},\n",
+ " {'answer': 'closemouthed',\n",
+ " 'hint': 'synonyms for closemouthed',\n",
+ " 'clues': [('closelipped',\n",
+ " 'inclined to secrecy or reticence about divulging information'),\n",
+ " ('close', 'inclined to secrecy or reticence about divulging information'),\n",
+ " ('secretive',\n",
+ " 'inclined to secrecy or reticence about divulging information'),\n",
+ " ('tightlipped',\n",
+ " 'inclined to secrecy or reticence about divulging information')]},\n",
+ " {'answer': 'clothed',\n",
+ " 'hint': 'synonyms for clothed',\n",
+ " 'clues': [('draped',\n",
+ " 'covered with or as if with clothes or a wrap or cloak'),\n",
+ " ('mantled', 'covered with or as if with clothes or a wrap or cloak'),\n",
+ " ('cloaked', 'covered with or as if with clothes or a wrap or cloak'),\n",
+ " ('clad',\n",
+ " 'wearing or provided with clothing; sometimes used in combination; - Bible'),\n",
+ " ('wrapped', 'covered with or as if with clothes or a wrap or cloak')]},\n",
+ " {'answer': 'clouded',\n",
+ " 'hint': 'synonyms for clouded',\n",
+ " 'clues': [('blurred', 'unclear in form or expression; ; - H.G.Wells'),\n",
+ " ('cloud-covered', 'filled or abounding with clouds'),\n",
+ " ('sunless', 'filled or abounding with clouds'),\n",
+ " ('overcast', 'filled or abounding with clouds')]},\n",
+ " {'answer': 'cloudy',\n",
+ " 'hint': 'synonyms for cloudy',\n",
+ " 'clues': [('nebulose', 'lacking definite form or limits; - H.T.Moore'),\n",
+ " ('muddy', '(of liquids) clouded as with sediment'),\n",
+ " ('turbid', '(of liquids) clouded as with sediment'),\n",
+ " ('murky', '(of liquids) clouded as with sediment'),\n",
+ " ('mirky', '(of liquids) clouded as with sediment')]},\n",
+ " {'answer': 'clubby',\n",
+ " 'hint': 'synonyms for clubby',\n",
+ " 'clues': [('snobbish',\n",
+ " 'befitting or characteristic of those who incline to social exclusiveness and who rebuff the advances of people considered inferior'),\n",
+ " ('cliquish',\n",
+ " 'befitting or characteristic of those who incline to social exclusiveness and who rebuff the advances of people considered inferior'),\n",
+ " ('clannish',\n",
+ " 'befitting or characteristic of those who incline to social exclusiveness and who rebuff the advances of people considered inferior'),\n",
+ " ('clubbish', 'effusively sociable'),\n",
+ " ('snobby',\n",
+ " 'befitting or characteristic of those who incline to social exclusiveness and who rebuff the advances of people considered inferior')]},\n",
+ " {'answer': 'clumsy',\n",
+ " 'hint': 'synonyms for clumsy',\n",
+ " 'clues': [('awkward', 'not elegant or graceful in expression'),\n",
+ " ('incompetent', 'showing lack of skill or aptitude'),\n",
+ " ('clunky', 'lacking grace in movement or posture'),\n",
+ " ('unwieldy', 'lacking grace in movement or posture'),\n",
+ " ('inapt', 'not elegant or graceful in expression'),\n",
+ " ('cumbersome', 'not elegant or graceful in expression'),\n",
+ " ('bungling', 'showing lack of skill or aptitude'),\n",
+ " ('ill-chosen', 'not elegant or graceful in expression'),\n",
+ " ('bunglesome',\n",
+ " 'difficult to handle or manage especially because of shape'),\n",
+ " ('ungainly', 'lacking grace in movement or posture'),\n",
+ " ('fumbling', 'showing lack of skill or aptitude'),\n",
+ " ('inept', 'not elegant or graceful in expression'),\n",
+ " ('gawky', 'lacking grace in movement or posture')]},\n",
+ " {'answer': 'clunky',\n",
+ " 'hint': 'synonyms for clunky',\n",
+ " 'clues': [('unwieldy', 'lacking grace in movement or posture'),\n",
+ " ('clumsy', 'lacking grace in movement or posture'),\n",
+ " ('gawky', 'lacking grace in movement or posture'),\n",
+ " ('ungainly', 'lacking grace in movement or posture')]},\n",
+ " {'answer': 'co-occurrent',\n",
+ " 'hint': 'synonyms for co-occurrent',\n",
+ " 'clues': [('coincidental', 'occurring or operating at the same time'),\n",
+ " ('cooccurring', 'occurring or operating at the same time'),\n",
+ " ('simultaneous', 'occurring or operating at the same time'),\n",
+ " ('concurrent', 'occurring or operating at the same time'),\n",
+ " ('coinciding', 'occurring or operating at the same time')]},\n",
+ " {'answer': 'co-ordinated',\n",
+ " 'hint': 'synonyms for co-ordinated',\n",
+ " 'clues': [('coordinated', 'intentionally matched'),\n",
+ " ('unified', 'operating as a unit'),\n",
+ " ('interconnected', 'operating as a unit'),\n",
+ " ('matching', 'intentionally matched')]},\n",
+ " {'answer': 'coagulated',\n",
+ " 'hint': 'synonyms for coagulated',\n",
+ " 'clues': [('coagulate',\n",
+ " 'transformed from a liquid into a soft semisolid or solid mass'),\n",
+ " ('curdled',\n",
+ " 'transformed from a liquid into a soft semisolid or solid mass'),\n",
+ " ('solidified', 'changed into a solid mass'),\n",
+ " ('grumose',\n",
+ " 'transformed from a liquid into a soft semisolid or solid mass')]},\n",
+ " {'answer': 'coal-black',\n",
+ " 'hint': 'synonyms for coal-black',\n",
+ " 'clues': [('sooty',\n",
+ " 'of the blackest black; similar to the color of jet or coal'),\n",
+ " ('jet-black',\n",
+ " 'of the blackest black; similar to the color of jet or coal'),\n",
+ " ('pitchy', 'of the blackest black; similar to the color of jet or coal'),\n",
+ " ('jet', 'of the blackest black; similar to the color of jet or coal')]},\n",
+ " {'answer': 'coarse',\n",
+ " 'hint': 'synonyms for coarse',\n",
+ " 'clues': [('harsh',\n",
+ " 'of textures that are rough to the touch or substances consisting of relatively large particles'),\n",
+ " ('vulgar', 'lacking refinement or cultivation or taste'),\n",
+ " ('common', 'lacking refinement or cultivation or taste'),\n",
+ " ('rough-cut', 'lacking refinement or cultivation or taste'),\n",
+ " ('uncouth', 'lacking refinement or cultivation or taste')]},\n",
+ " {'answer': 'coarse-grained',\n",
+ " 'hint': 'synonyms for coarse-grained',\n",
+ " 'clues': [('mealy',\n",
+ " 'composed of or covered with particles resembling meal in texture or consistency'),\n",
+ " ('gritty',\n",
+ " 'composed of or covered with particles resembling meal in texture or consistency'),\n",
+ " ('grainy',\n",
+ " 'composed of or covered with particles resembling meal in texture or consistency'),\n",
+ " ('large-grained', 'not having a fine texture'),\n",
+ " ('farinaceous',\n",
+ " 'composed of or covered with particles resembling meal in texture or consistency'),\n",
+ " ('granular',\n",
+ " 'composed of or covered with particles resembling meal in texture or consistency'),\n",
+ " ('granulose',\n",
+ " 'composed of or covered with particles resembling meal in texture or consistency')]},\n",
+ " {'answer': 'cobwebby',\n",
+ " 'hint': 'synonyms for cobwebby',\n",
+ " 'clues': [('gauzy', 'so thin as to transmit light'),\n",
+ " ('transparent', 'so thin as to transmit light'),\n",
+ " ('gossamer', 'so thin as to transmit light'),\n",
+ " ('see-through', 'so thin as to transmit light'),\n",
+ " ('sheer', 'so thin as to transmit light'),\n",
+ " ('gauze-like', 'so thin as to transmit light'),\n",
+ " ('vapourous', 'so thin as to transmit light'),\n",
+ " ('diaphanous', 'so thin as to transmit light'),\n",
+ " ('filmy', 'so thin as to transmit light')]},\n",
+ " {'answer': 'cock-a-hoop',\n",
+ " 'hint': 'synonyms for cock-a-hoop',\n",
+ " 'clues': [('self-aggrandising', 'exhibiting self-importance'),\n",
+ " ('boastful', 'exhibiting self-importance'),\n",
+ " ('big', 'exhibiting self-importance'),\n",
+ " ('bragging', 'exhibiting self-importance'),\n",
+ " ('braggart', 'exhibiting self-importance'),\n",
+ " ('braggy', 'exhibiting self-importance'),\n",
+ " ('crowing', 'exhibiting self-importance')]},\n",
+ " {'answer': 'cockamamie',\n",
+ " 'hint': 'synonyms for cockamamie',\n",
+ " 'clues': [('sappy', 'ludicrous, foolish'),\n",
+ " ('whacky', 'ludicrous, foolish'),\n",
+ " ('goofy', 'ludicrous, foolish'),\n",
+ " ('cockamamy', 'ludicrous, foolish'),\n",
+ " ('zany', 'ludicrous, foolish'),\n",
+ " ('silly', 'ludicrous, foolish')]},\n",
+ " {'answer': 'cockamamy',\n",
+ " 'hint': 'synonyms for cockamamy',\n",
+ " 'clues': [('cockamamie', 'ludicrous, foolish'),\n",
+ " ('sappy', 'ludicrous, foolish'),\n",
+ " ('whacky', 'ludicrous, foolish'),\n",
+ " ('goofy', 'ludicrous, foolish'),\n",
+ " ('zany', 'ludicrous, foolish'),\n",
+ " ('silly', 'ludicrous, foolish')]},\n",
+ " {'answer': 'cockeyed',\n",
+ " 'hint': 'synonyms for cockeyed',\n",
+ " 'clues': [('pixilated', 'very drunk'),\n",
+ " ('besotted', 'very drunk'),\n",
+ " ('smashed', 'very drunk'),\n",
+ " ('wonky', 'turned or twisted toward one side; - G.K.Chesterton'),\n",
+ " ('askew', 'turned or twisted toward one side; - G.K.Chesterton'),\n",
+ " ('idiotic', 'incongruous;inviting ridicule'),\n",
+ " ('pie-eyed', 'very drunk'),\n",
+ " ('blind drunk', 'very drunk'),\n",
+ " ('crocked', 'very drunk'),\n",
+ " ('slopped', 'very drunk'),\n",
+ " ('absurd', 'incongruous;inviting ridicule'),\n",
+ " ('loaded', 'very drunk'),\n",
+ " ('soaked', 'very drunk'),\n",
+ " ('plastered', 'very drunk'),\n",
+ " ('derisory', 'incongruous;inviting ridicule'),\n",
+ " ('awry', 'turned or twisted toward one side; - G.K.Chesterton'),\n",
+ " ('ludicrous', 'incongruous;inviting ridicule'),\n",
+ " ('sloshed', 'very drunk'),\n",
+ " ('laughable', 'incongruous;inviting ridicule'),\n",
+ " ('nonsensical', 'incongruous;inviting ridicule'),\n",
+ " ('tight', 'very drunk'),\n",
+ " ('pissed', 'very drunk'),\n",
+ " ('ridiculous', 'incongruous;inviting ridicule'),\n",
+ " ('wet', 'very drunk'),\n",
+ " ('lopsided', 'turned or twisted toward one side; - G.K.Chesterton'),\n",
+ " ('stiff', 'very drunk'),\n",
+ " ('sozzled', 'very drunk'),\n",
+ " ('skew-whiff', 'turned or twisted toward one side; - G.K.Chesterton'),\n",
+ " ('fuddled', 'very drunk'),\n",
+ " ('blotto', 'very drunk'),\n",
+ " ('squiffy', 'very drunk'),\n",
+ " ('preposterous', 'incongruous;inviting ridicule'),\n",
+ " ('soused', 'very drunk')]},\n",
+ " {'answer': 'cognate',\n",
+ " 'hint': 'synonyms for cognate',\n",
+ " 'clues': [('connate', 'related in nature'),\n",
+ " ('kin', 'related by blood'),\n",
+ " ('consanguine', 'related by blood'),\n",
+ " ('blood-related', 'related by blood')]},\n",
+ " {'answer': 'coherent',\n",
+ " 'hint': 'synonyms for coherent',\n",
+ " 'clues': [('tenacious', 'sticking together'),\n",
+ " ('logical',\n",
+ " 'capable of thinking and expressing yourself in a clear and consistent manner'),\n",
+ " ('ordered',\n",
+ " 'marked by an orderly, logical, and aesthetically consistent relation of parts'),\n",
+ " ('lucid',\n",
+ " 'capable of thinking and expressing yourself in a clear and consistent manner'),\n",
+ " ('consistent',\n",
+ " 'marked by an orderly, logical, and aesthetically consistent relation of parts')]},\n",
+ " {'answer': 'coiling',\n",
+ " 'hint': 'synonyms for coiling',\n",
+ " 'clues': [('voluted', 'in the shape of a coil'),\n",
+ " ('spiraling', 'in the shape of a coil'),\n",
+ " ('helical', 'in the shape of a coil'),\n",
+ " ('turbinate', 'in the shape of a coil'),\n",
+ " ('whorled', 'in the shape of a coil')]},\n",
+ " {'answer': 'coincident',\n",
+ " 'hint': 'synonyms for coincident',\n",
+ " 'clues': [('coincidental', 'occurring or operating at the same time'),\n",
+ " ('cooccurring', 'occurring or operating at the same time'),\n",
+ " ('simultaneous', 'occurring or operating at the same time'),\n",
+ " ('concurrent', 'occurring or operating at the same time'),\n",
+ " ('coinciding', 'occurring or operating at the same time'),\n",
+ " ('co-occurrent', 'occurring or operating at the same time')]},\n",
+ " {'answer': 'coincidental',\n",
+ " 'hint': 'synonyms for coincidental',\n",
+ " 'clues': [('coincident', 'occurring or operating at the same time'),\n",
+ " ('cooccurring', 'occurring or operating at the same time'),\n",
+ " ('simultaneous', 'occurring or operating at the same time'),\n",
+ " ('concurrent', 'occurring or operating at the same time'),\n",
+ " ('coinciding', 'occurring or operating at the same time'),\n",
+ " ('co-occurrent', 'occurring or operating at the same time')]},\n",
+ " {'answer': 'coinciding',\n",
+ " 'hint': 'synonyms for coinciding',\n",
+ " 'clues': [('coincidental', 'occurring or operating at the same time'),\n",
+ " ('cooccurring', 'occurring or operating at the same time'),\n",
+ " ('simultaneous', 'occurring or operating at the same time'),\n",
+ " ('concurrent', 'occurring or operating at the same time'),\n",
+ " ('co-occurrent', 'occurring or operating at the same time')]},\n",
+ " {'answer': 'cold',\n",
+ " 'hint': 'synonyms for cold',\n",
+ " 'clues': [('moth-eaten',\n",
+ " 'lacking originality or spontaneity; no longer new'),\n",
+ " ('dusty', 'lacking originality or spontaneity; no longer new'),\n",
+ " ('stale', 'lacking originality or spontaneity; no longer new'),\n",
+ " ('inhuman', 'without compunction or human feeling'),\n",
+ " ('cold-blooded', 'without compunction or human feeling'),\n",
+ " ('insensate', 'without compunction or human feeling'),\n",
+ " ('frigid', 'sexually unresponsive')]},\n",
+ " {'answer': 'collateral',\n",
+ " 'hint': 'synonyms for collateral',\n",
+ " 'clues': [('substantiating', 'serving to support or corroborate'),\n",
+ " ('validatory', 'serving to support or corroborate'),\n",
+ " ('validating', 'serving to support or corroborate'),\n",
+ " ('indirect',\n",
+ " 'descended from a common ancestor but through different lines'),\n",
+ " ('confirmative', 'serving to support or corroborate'),\n",
+ " ('verificatory', 'serving to support or corroborate'),\n",
+ " ('corroboratory', 'serving to support or corroborate'),\n",
+ " ('confirming', 'serving to support or corroborate'),\n",
+ " ('verifying', 'serving to support or corroborate'),\n",
+ " ('corroborative', 'serving to support or corroborate'),\n",
+ " ('confirmatory', 'serving to support or corroborate')]},\n",
+ " {'answer': 'collected',\n",
+ " 'hint': 'synonyms for collected',\n",
+ " 'clues': [('gathered', 'brought together in one place'),\n",
+ " ('equanimous', 'in full control of your faculties'),\n",
+ " ('self-contained', 'in full control of your faculties'),\n",
+ " ('self-possessed', 'in full control of your faculties'),\n",
+ " ('poised', 'in full control of your faculties'),\n",
+ " ('self-collected', 'in full control of your faculties')]},\n",
+ " {'answer': 'colored',\n",
+ " 'hint': 'synonyms for colored',\n",
+ " 'clues': [('coloured',\n",
+ " '(used of color) artificially produced; not natural'),\n",
+ " ('dark-skinned', 'having skin rich in melanin pigments'),\n",
+ " ('colorful',\n",
+ " 'having color or a certain color; sometimes used in combination'),\n",
+ " ('one-sided', 'favoring one person or side over another'),\n",
+ " ('slanted', 'favoring one person or side over another'),\n",
+ " ('biased', 'favoring one person or side over another'),\n",
+ " ('non-white', 'having skin rich in melanin pigments'),\n",
+ " ('dyed', '(used of color) artificially produced; not natural'),\n",
+ " ('bleached', '(used of color) artificially produced; not natural'),\n",
+ " ('dark', 'having skin rich in melanin pigments')]},\n",
+ " {'answer': 'coloured',\n",
+ " 'hint': 'synonyms for coloured',\n",
+ " 'clues': [('colored',\n",
+ " 'having color or a certain color; sometimes used in combination'),\n",
+ " ('one-sided', 'favoring one person or side over another'),\n",
+ " ('colorful',\n",
+ " 'having color or a certain color; sometimes used in combination'),\n",
+ " ('dark-skinned', 'having skin rich in melanin pigments'),\n",
+ " ('slanted', 'favoring one person or side over another'),\n",
+ " ('biased', 'favoring one person or side over another'),\n",
+ " ('non-white', 'having skin rich in melanin pigments'),\n",
+ " ('dyed', '(used of color) artificially produced; not natural'),\n",
+ " ('bleached', '(used of color) artificially produced; not natural'),\n",
+ " ('dark', 'having skin rich in melanin pigments')]},\n",
+ " {'answer': 'coltish',\n",
+ " 'hint': 'synonyms for coltish',\n",
+ " 'clues': [('rollicking', 'given to merry frolicking'),\n",
+ " ('frolicsome', 'given to merry frolicking'),\n",
+ " ('sportive', 'given to merry frolicking'),\n",
+ " ('frolicky', 'given to merry frolicking')]},\n",
+ " {'answer': 'combative',\n",
+ " 'hint': 'synonyms for combative',\n",
+ " 'clues': [('disputative',\n",
+ " 'inclined or showing an inclination to dispute or disagree, even to engage in law suits'),\n",
+ " ('contentious',\n",
+ " 'inclined or showing an inclination to dispute or disagree, even to engage in law suits'),\n",
+ " ('litigious',\n",
+ " 'inclined or showing an inclination to dispute or disagree, even to engage in law suits'),\n",
+ " ('battleful', 'having or showing a ready disposition to fight'),\n",
+ " ('bellicose', 'having or showing a ready disposition to fight'),\n",
+ " ('agonistic', 'striving to overcome in argument'),\n",
+ " ('disputatious',\n",
+ " 'inclined or showing an inclination to dispute or disagree, even to engage in law suits')]},\n",
+ " {'answer': 'combinatory',\n",
+ " 'hint': 'synonyms for combinatory',\n",
+ " 'clues': [('combinational', 'able to or tending to combine'),\n",
+ " ('combinative', 'relating to or involving combinations'),\n",
+ " ('combinatorial', 'relating to or involving combinations'),\n",
+ " ('combinable', 'able to or tending to combine')]},\n",
+ " {'answer': 'comely',\n",
+ " 'hint': 'synonyms for comely',\n",
+ " 'clues': [('sightly', 'very pleasing to the eye'),\n",
+ " ('seemly', 'according with custom or propriety'),\n",
+ " ('becoming', 'according with custom or propriety'),\n",
+ " ('comme il faut', 'according with custom or propriety'),\n",
+ " ('bonnie', 'very pleasing to the eye'),\n",
+ " ('decorous', 'according with custom or propriety'),\n",
+ " ('decent', 'according with custom or propriety'),\n",
+ " ('fair', 'very pleasing to the eye'),\n",
+ " ('bonny', 'very pleasing to the eye')]},\n",
+ " {'answer': 'comfortable',\n",
+ " 'hint': 'synonyms for comfortable',\n",
+ " 'clues': [('well-heeled',\n",
+ " 'in fortunate circumstances financially; moderately rich'),\n",
+ " ('comfy',\n",
+ " \"providing or experiencing physical well-being or relief (`comfy' is informal)\"),\n",
+ " ('prosperous', 'in fortunate circumstances financially; moderately rich'),\n",
+ " ('well-to-do', 'in fortunate circumstances financially; moderately rich'),\n",
+ " ('well-off', 'in fortunate circumstances financially; moderately rich'),\n",
+ " ('easy', 'in fortunate circumstances financially; moderately rich'),\n",
+ " ('well-situated',\n",
+ " 'in fortunate circumstances financially; moderately rich'),\n",
+ " ('well-fixed',\n",
+ " 'in fortunate circumstances financially; moderately rich')]},\n",
+ " {'answer': 'comforting',\n",
+ " 'hint': 'synonyms for comforting',\n",
+ " 'clues': [('consoling', 'affording comfort or solace'),\n",
+ " ('satisfying', 'providing freedom from worry'),\n",
+ " ('consolatory', 'affording comfort or solace'),\n",
+ " ('cheering', 'providing freedom from worry')]},\n",
+ " {'answer': 'comic',\n",
+ " 'hint': 'synonyms for comic',\n",
+ " 'clues': [('mirthful', 'arousing or provoking laughter'),\n",
+ " ('funny', 'arousing or provoking laughter'),\n",
+ " ('risible', 'arousing or provoking laughter'),\n",
+ " ('laughable', 'arousing or provoking laughter'),\n",
+ " ('amusing', 'arousing or provoking laughter'),\n",
+ " ('comical', 'arousing or provoking laughter')]},\n",
+ " {'answer': 'comical',\n",
+ " 'hint': 'synonyms for comical',\n",
+ " 'clues': [('mirthful', 'arousing or provoking laughter'),\n",
+ " ('comic', 'arousing or provoking laughter'),\n",
+ " ('risible', 'arousing or provoking laughter'),\n",
+ " ('funny', 'arousing or provoking laughter'),\n",
+ " ('laughable', 'arousing or provoking laughter'),\n",
+ " ('amusing', 'arousing or provoking laughter')]},\n",
+ " {'answer': 'comme_il_faut',\n",
+ " 'hint': 'synonyms for comme il faut',\n",
+ " 'clues': [('seemly', 'according with custom or propriety'),\n",
+ " ('comely', 'according with custom or propriety'),\n",
+ " ('becoming', 'according with custom or propriety'),\n",
+ " ('decorous', 'according with custom or propriety'),\n",
+ " ('decent', 'according with custom or propriety')]},\n",
+ " {'answer': 'common',\n",
+ " 'hint': 'synonyms for common',\n",
+ " 'clues': [('vernacular',\n",
+ " 'being or characteristic of or appropriate to everyday language'),\n",
+ " ('unwashed', 'of or associated with the great masses of people'),\n",
+ " ('usual', 'commonly encountered'),\n",
+ " ('coarse', 'of low or inferior quality or value; - Shakespeare'),\n",
+ " ('vulgar', 'lacking refinement or cultivation or taste'),\n",
+ " ('rough-cut', 'lacking refinement or cultivation or taste'),\n",
+ " ('uncouth', 'lacking refinement or cultivation or taste'),\n",
+ " ('plebeian', 'of or associated with the great masses of people'),\n",
+ " ('mutual', 'common to or shared by two or more parties')]},\n",
+ " {'answer': 'commonplace',\n",
+ " 'hint': 'synonyms for commonplace',\n",
+ " 'clues': [('unglamorous', 'not challenging; dull and lacking excitement'),\n",
+ " ('hackneyed', 'repeated too often; overfamiliar through overuse'),\n",
+ " ('prosaic', 'not challenging; dull and lacking excitement'),\n",
+ " ('shopworn', 'repeated too often; overfamiliar through overuse'),\n",
+ " ('old-hat', 'repeated too often; overfamiliar through overuse'),\n",
+ " ('stock', 'repeated too often; overfamiliar through overuse'),\n",
+ " ('timeworn', 'repeated too often; overfamiliar through overuse'),\n",
+ " ('threadbare', 'repeated too often; overfamiliar through overuse'),\n",
+ " ('trite', 'repeated too often; overfamiliar through overuse'),\n",
+ " ('humdrum', 'not challenging; dull and lacking excitement'),\n",
+ " ('banal', 'repeated too often; overfamiliar through overuse'),\n",
+ " ('well-worn', 'repeated too often; overfamiliar through overuse'),\n",
+ " ('tired', 'repeated too often; overfamiliar through overuse')]},\n",
+ " {'answer': 'communicable',\n",
+ " 'hint': 'synonyms for communicable',\n",
+ " 'clues': [('contractable',\n",
+ " '(of disease) capable of being transmitted by infection'),\n",
+ " ('transmissible',\n",
+ " '(of disease) capable of being transmitted by infection'),\n",
+ " ('contagious', '(of disease) capable of being transmitted by infection'),\n",
+ " ('catching', '(of disease) capable of being transmitted by infection'),\n",
+ " ('transmittable',\n",
+ " '(of disease) capable of being transmitted by infection')]},\n",
+ " {'answer': 'compact',\n",
+ " 'hint': 'synonyms for compact',\n",
+ " 'clues': [('heavyset', 'having a short and solid form or stature'),\n",
+ " ('succinct', 'briefly giving the gist of something'),\n",
+ " ('thick', 'having a short and solid form or stature'),\n",
+ " ('thickset', 'having a short and solid form or stature'),\n",
+ " ('summary', 'briefly giving the gist of something'),\n",
+ " ('stocky', 'having a short and solid form or stature'),\n",
+ " ('compendious', 'briefly giving the gist of something')]},\n",
+ " {'answer': 'compensable',\n",
+ " 'hint': 'synonyms for compensable',\n",
+ " 'clues': [('paying', 'for which money is paid'),\n",
+ " ('stipendiary', 'for which money is paid'),\n",
+ " ('salaried', 'for which money is paid'),\n",
+ " ('remunerative', 'for which money is paid')]},\n",
+ " {'answer': 'competitive',\n",
+ " 'hint': 'synonyms for competitive',\n",
+ " 'clues': [('militant', 'showing a fighting disposition'),\n",
+ " ('private-enterprise', 'subscribing to capitalistic competition'),\n",
+ " ('free-enterprise', 'subscribing to capitalistic competition'),\n",
+ " ('competitory', 'involving competition or competitiveness')]},\n",
+ " {'answer': 'complete',\n",
+ " 'hint': 'synonyms for complete',\n",
+ " 'clues': [('sodding',\n",
+ " 'without qualification; used informally as (often pejorative) intensifiers'),\n",
+ " ('pure',\n",
+ " 'without qualification; used informally as (often pejorative) intensifiers'),\n",
+ " ('utter',\n",
+ " 'without qualification; used informally as (often pejorative) intensifiers'),\n",
+ " ('consummate',\n",
+ " 'without qualification; used informally as (often pejorative) intensifiers'),\n",
+ " ('ended', 'having come or been brought to a conclusion'),\n",
+ " ('thoroughgoing',\n",
+ " 'without qualification; used informally as (often pejorative) intensifiers'),\n",
+ " ('arrant',\n",
+ " 'without qualification; used informally as (often pejorative) intensifiers'),\n",
+ " ('gross',\n",
+ " 'without qualification; used informally as (often pejorative) intensifiers'),\n",
+ " ('accomplished', 'highly skilled'),\n",
+ " ('stark',\n",
+ " 'without qualification; used informally as (often pejorative) intensifiers'),\n",
+ " ('concluded', 'having come or been brought to a conclusion'),\n",
+ " ('over', 'having come or been brought to a conclusion'),\n",
+ " ('terminated', 'having come or been brought to a conclusion'),\n",
+ " ('perfect',\n",
+ " 'without qualification; used informally as (often pejorative) intensifiers'),\n",
+ " ('everlasting',\n",
+ " 'without qualification; used informally as (often pejorative) intensifiers'),\n",
+ " ('staring',\n",
+ " 'without qualification; used informally as (often pejorative) intensifiers'),\n",
+ " ('double-dyed',\n",
+ " 'without qualification; used informally as (often pejorative) intensifiers'),\n",
+ " ('unadulterated',\n",
+ " 'without qualification; used informally as (often pejorative) intensifiers'),\n",
+ " ('all over', 'having come or been brought to a conclusion')]},\n",
+ " {'answer': 'complimentary',\n",
+ " 'hint': 'synonyms for complimentary',\n",
+ " 'clues': [('gratuitous', 'costing nothing'),\n",
+ " ('free', 'costing nothing'),\n",
+ " ('gratis', 'costing nothing'),\n",
+ " ('costless', 'costing nothing')]},\n",
+ " {'answer': 'conceited',\n",
+ " 'hint': 'synonyms for conceited',\n",
+ " 'clues': [('swollen-headed',\n",
+ " 'characteristic of false pride; having an exaggerated sense of self-importance'),\n",
+ " ('self-conceited',\n",
+ " 'characteristic of false pride; having an exaggerated sense of self-importance'),\n",
+ " ('egotistic',\n",
+ " 'characteristic of false pride; having an exaggerated sense of self-importance'),\n",
+ " ('vain',\n",
+ " 'characteristic of false pride; having an exaggerated sense of self-importance'),\n",
+ " ('swollen',\n",
+ " 'characteristic of false pride; having an exaggerated sense of self-importance')]},\n",
+ " {'answer': 'concluded',\n",
+ " 'hint': 'synonyms for concluded',\n",
+ " 'clues': [('over', 'having come or been brought to a conclusion'),\n",
+ " ('ended', 'having come or been brought to a conclusion'),\n",
+ " ('complete', 'having come or been brought to a conclusion'),\n",
+ " ('terminated', 'having come or been brought to a conclusion'),\n",
+ " ('all over', 'having come or been brought to a conclusion')]},\n",
+ " {'answer': 'concomitant',\n",
+ " 'hint': 'synonyms for concomitant',\n",
+ " 'clues': [('resultant', 'following or accompanying as a consequence'),\n",
+ " ('sequent', 'following or accompanying as a consequence'),\n",
+ " ('consequent', 'following or accompanying as a consequence'),\n",
+ " ('incidental', 'following or accompanying as a consequence'),\n",
+ " ('ensuant', 'following or accompanying as a consequence'),\n",
+ " ('accompanying', 'following or accompanying as a consequence'),\n",
+ " ('attendant', 'following or accompanying as a consequence')]},\n",
+ " {'answer': 'concordant',\n",
+ " 'hint': 'synonyms for concordant',\n",
+ " 'clues': [('accordant', 'in keeping'),\n",
+ " ('agreeable', 'in keeping'),\n",
+ " ('consonant', 'in keeping'),\n",
+ " ('concurring', 'being of the same opinion'),\n",
+ " ('conformable', 'in keeping')]},\n",
+ " {'answer': 'concurrent',\n",
+ " 'hint': 'synonyms for concurrent',\n",
+ " 'clues': [('coincident', 'occurring or operating at the same time'),\n",
+ " ('cooccurring', 'occurring or operating at the same time'),\n",
+ " ('simultaneous', 'occurring or operating at the same time'),\n",
+ " ('coinciding', 'occurring or operating at the same time'),\n",
+ " ('co-occurrent', 'occurring or operating at the same time')]},\n",
+ " {'answer': 'condemnable',\n",
+ " 'hint': 'synonyms for condemnable',\n",
+ " 'clues': [('reprehensible',\n",
+ " 'bringing or deserving severe rebuke or censure'),\n",
+ " ('criminal', 'bringing or deserving severe rebuke or censure'),\n",
+ " ('vicious', 'bringing or deserving severe rebuke or censure'),\n",
+ " ('deplorable', 'bringing or deserving severe rebuke or censure')]},\n",
+ " {'answer': 'conducive',\n",
+ " 'hint': 'synonyms for conducive',\n",
+ " 'clues': [('contributing',\n",
+ " 'tending to bring about; being partly responsible for'),\n",
+ " ('contributory', 'tending to bring about; being partly responsible for'),\n",
+ " ('contributive', 'tending to bring about; being partly responsible for'),\n",
+ " ('tributary', 'tending to bring about; being partly responsible for')]},\n",
+ " {'answer': 'confining',\n",
+ " 'hint': 'synonyms for confining',\n",
+ " 'clues': [('constrictive', 'restricting the scope or freedom of action'),\n",
+ " ('close', 'crowded'),\n",
+ " ('constraining', 'restricting the scope or freedom of action'),\n",
+ " ('restricting', 'restricting the scope or freedom of action'),\n",
+ " ('limiting', 'restricting the scope or freedom of action')]},\n",
+ " {'answer': 'confirmative',\n",
+ " 'hint': 'synonyms for confirmative',\n",
+ " 'clues': [('substantiating', 'serving to support or corroborate'),\n",
+ " ('validatory', 'serving to support or corroborate'),\n",
+ " ('collateral', 'serving to support or corroborate'),\n",
+ " ('validating', 'serving to support or corroborate'),\n",
+ " ('verificatory', 'serving to support or corroborate'),\n",
+ " ('corroboratory', 'serving to support or corroborate'),\n",
+ " ('confirming', 'serving to support or corroborate'),\n",
+ " ('verifying', 'serving to support or corroborate'),\n",
+ " ('corroborative', 'serving to support or corroborate'),\n",
+ " ('confirmatory', 'serving to support or corroborate')]},\n",
+ " {'answer': 'confirmatory',\n",
+ " 'hint': 'synonyms for confirmatory',\n",
+ " 'clues': [('substantiating', 'serving to support or corroborate'),\n",
+ " ('validatory', 'serving to support or corroborate'),\n",
+ " ('collateral', 'serving to support or corroborate'),\n",
+ " ('validating', 'serving to support or corroborate'),\n",
+ " ('confirmative', 'serving to support or corroborate'),\n",
+ " ('verificatory', 'serving to support or corroborate'),\n",
+ " ('corroboratory', 'serving to support or corroborate'),\n",
+ " ('confirming', 'serving to support or corroborate'),\n",
+ " ('verifying', 'serving to support or corroborate'),\n",
+ " ('corroborative', 'serving to support or corroborate')]},\n",
+ " {'answer': 'confirming',\n",
+ " 'hint': 'synonyms for confirming',\n",
+ " 'clues': [('substantiating', 'serving to support or corroborate'),\n",
+ " ('validatory', 'serving to support or corroborate'),\n",
+ " ('collateral', 'serving to support or corroborate'),\n",
+ " ('positive',\n",
+ " 'indicating existence or presence of a suspected condition or pathogen'),\n",
+ " ('validating', 'serving to support or corroborate'),\n",
+ " ('confirmative', 'serving to support or corroborate'),\n",
+ " ('verificatory', 'serving to support or corroborate'),\n",
+ " ('corroboratory', 'serving to support or corroborate'),\n",
+ " ('verifying', 'serving to support or corroborate'),\n",
+ " ('corroborative', 'serving to support or corroborate'),\n",
+ " ('confirmatory', 'serving to support or corroborate')]},\n",
+ " {'answer': 'conformable',\n",
+ " 'hint': 'synonyms for conformable',\n",
+ " 'clues': [('accordant', 'in keeping'),\n",
+ " ('agreeable', 'in keeping'),\n",
+ " ('consonant', 'in keeping'),\n",
+ " ('concordant', 'in keeping'),\n",
+ " ('amenable', 'disposed or willing to comply')]},\n",
+ " {'answer': 'confounded',\n",
+ " 'hint': 'synonyms for confounded',\n",
+ " 'clues': [('at sea',\n",
+ " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n",
+ " ('bewildered',\n",
+ " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n",
+ " ('mixed-up',\n",
+ " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n",
+ " ('mazed',\n",
+ " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n",
+ " ('baffled',\n",
+ " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n",
+ " ('lost',\n",
+ " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n",
+ " ('bemused',\n",
+ " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n",
+ " ('confused',\n",
+ " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n",
+ " ('befuddled',\n",
+ " 'perplexed by many conflicting situations or statements; filled with bewilderment')]},\n",
+ " {'answer': 'confused',\n",
+ " 'hint': 'synonyms for confused',\n",
+ " 'clues': [('disordered', 'thrown into a state of disarray or confusion'),\n",
+ " ('disoriented',\n",
+ " 'having lost your bearings; confused as to time or place or personal identity'),\n",
+ " ('scattered', 'lacking orderly continuity'),\n",
+ " ('garbled', 'lacking orderly continuity'),\n",
+ " ('baffled',\n",
+ " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n",
+ " ('lost',\n",
+ " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n",
+ " ('broken', 'thrown into a state of disarray or confusion'),\n",
+ " ('unconnected', 'lacking orderly continuity'),\n",
+ " ('at sea',\n",
+ " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n",
+ " ('bewildered',\n",
+ " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n",
+ " ('illogical', 'lacking orderly continuity'),\n",
+ " ('mixed-up',\n",
+ " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n",
+ " ('mazed',\n",
+ " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n",
+ " ('disconnected', 'lacking orderly continuity'),\n",
+ " ('upset', 'thrown into a state of disarray or confusion'),\n",
+ " ('bemused',\n",
+ " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n",
+ " ('confounded',\n",
+ " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n",
+ " ('befuddled',\n",
+ " 'perplexed by many conflicting situations or statements; filled with bewilderment')]},\n",
+ " {'answer': 'conjectural',\n",
+ " 'hint': 'synonyms for conjectural',\n",
+ " 'clues': [('divinatory',\n",
+ " 'based primarily on surmise rather than adequate evidence'),\n",
+ " ('hypothetical',\n",
+ " 'based primarily on surmise rather than adequate evidence'),\n",
+ " ('supposed', 'based primarily on surmise rather than adequate evidence'),\n",
+ " ('suppositious',\n",
+ " 'based primarily on surmise rather than adequate evidence'),\n",
+ " ('suppositional',\n",
+ " 'based primarily on surmise rather than adequate evidence')]},\n",
+ " {'answer': 'conniving',\n",
+ " 'hint': 'synonyms for conniving',\n",
+ " 'clues': [('collusive',\n",
+ " 'acting together in secret toward a fraudulent or illegal end'),\n",
+ " ('scheming', 'used of persons'),\n",
+ " ('calculative', 'used of persons'),\n",
+ " ('shrewd', 'used of persons'),\n",
+ " ('calculating', 'used of persons')]},\n",
+ " {'answer': 'consanguine',\n",
+ " 'hint': 'synonyms for consanguine',\n",
+ " 'clues': [('kin', 'related by blood'),\n",
+ " ('consanguineal', 'related by blood'),\n",
+ " ('cognate', 'related by blood'),\n",
+ " ('consanguineous', 'related by blood'),\n",
+ " ('blood-related', 'related by blood')]},\n",
+ " {'answer': 'consanguineal',\n",
+ " 'hint': 'synonyms for consanguineal',\n",
+ " 'clues': [('kin', 'related by blood'),\n",
+ " ('consanguine', 'related by blood'),\n",
+ " ('cognate', 'related by blood'),\n",
+ " ('blood-related', 'related by blood')]},\n",
+ " {'answer': 'consanguineous',\n",
+ " 'hint': 'synonyms for consanguineous',\n",
+ " 'clues': [('kin', 'related by blood'),\n",
+ " ('consanguine', 'related by blood'),\n",
+ " ('cognate', 'related by blood'),\n",
+ " ('blood-related', 'related by blood')]},\n",
+ " {'answer': 'consecrated',\n",
+ " 'hint': 'synonyms for consecrated',\n",
+ " 'clues': [('consecrate',\n",
+ " 'solemnly dedicated to or set apart for a high purpose'),\n",
+ " ('dedicated', 'solemnly dedicated to or set apart for a high purpose'),\n",
+ " ('sanctified',\n",
+ " 'made or declared or believed to be holy; devoted to a deity or some religious ceremony or use'),\n",
+ " ('sacred',\n",
+ " 'made or declared or believed to be holy; devoted to a deity or some religious ceremony or use')]},\n",
+ " {'answer': 'consecutive',\n",
+ " 'hint': 'synonyms for consecutive',\n",
+ " 'clues': [('sequent', 'in regular succession without gaps'),\n",
+ " ('successive', 'in regular succession without gaps'),\n",
+ " ('back-to-back', 'one after the other'),\n",
+ " ('straight', 'successive (without a break)'),\n",
+ " ('sequential', 'in regular succession without gaps'),\n",
+ " ('serial', 'in regular succession without gaps')]},\n",
+ " {'answer': 'consequent',\n",
+ " 'hint': 'synonyms for consequent',\n",
+ " 'clues': [('resultant', 'following or accompanying as a consequence'),\n",
+ " ('sequent', 'following or accompanying as a consequence'),\n",
+ " ('concomitant', 'following or accompanying as a consequence'),\n",
+ " ('incidental', 'following or accompanying as a consequence'),\n",
+ " ('ensuant', 'following or accompanying as a consequence'),\n",
+ " ('accompanying', 'following or accompanying as a consequence'),\n",
+ " ('attendant', 'following or accompanying as a consequence')]},\n",
+ " {'answer': 'conservative',\n",
+ " 'hint': 'synonyms for conservative',\n",
+ " 'clues': [('buttoned-down', 'unimaginatively conventional; - Newsweek'),\n",
+ " ('materialistic',\n",
+ " 'conforming to the standards and conventions of the middle class'),\n",
+ " ('cautious', 'avoiding excess'),\n",
+ " ('bourgeois',\n",
+ " 'conforming to the standards and conventions of the middle class')]},\n",
+ " {'answer': 'consistent',\n",
+ " 'hint': 'synonyms for consistent',\n",
+ " 'clues': [('logical',\n",
+ " 'marked by an orderly, logical, and aesthetically consistent relation of parts'),\n",
+ " ('uniform', 'the same throughout in structure or composition'),\n",
+ " ('reproducible', 'capable of being reproduced'),\n",
+ " ('ordered',\n",
+ " 'marked by an orderly, logical, and aesthetically consistent relation of parts'),\n",
+ " ('coherent',\n",
+ " 'marked by an orderly, logical, and aesthetically consistent relation of parts')]},\n",
+ " {'answer': 'consonant',\n",
+ " 'hint': 'synonyms for consonant',\n",
+ " 'clues': [('agreeable', 'in keeping'),\n",
+ " ('harmonic', 'involving or characterized by harmony'),\n",
+ " ('concordant', 'in keeping'),\n",
+ " ('conformable', 'in keeping'),\n",
+ " ('harmonized', 'involving or characterized by harmony'),\n",
+ " ('accordant', 'in keeping')]},\n",
+ " {'answer': 'constant',\n",
+ " 'hint': 'synonyms for constant',\n",
+ " 'clues': [('never-ending',\n",
+ " 'uninterrupted in time and indefinitely long continuing'),\n",
+ " ('incessant', 'uninterrupted in time and indefinitely long continuing'),\n",
+ " ('invariant', 'unvarying in nature'),\n",
+ " ('unceasing', 'uninterrupted in time and indefinitely long continuing'),\n",
+ " ('changeless', 'unvarying in nature'),\n",
+ " ('unremitting', 'uninterrupted in time and indefinitely long continuing'),\n",
+ " ('perpetual', 'uninterrupted in time and indefinitely long continuing'),\n",
+ " ('ceaseless', 'uninterrupted in time and indefinitely long continuing'),\n",
+ " ('unvarying', 'unvarying in nature')]},\n",
+ " {'answer': 'constitutional',\n",
+ " 'hint': 'synonyms for constitutional',\n",
+ " 'clues': [('integral',\n",
+ " 'existing as an essential constituent or characteristic'),\n",
+ " ('inbuilt', 'existing as an essential constituent or characteristic'),\n",
+ " ('inherent', 'existing as an essential constituent or characteristic'),\n",
+ " ('organic',\n",
+ " 'constitutional in the structure of something (especially your physical makeup)'),\n",
+ " ('constitutive',\n",
+ " 'constitutional in the structure of something (especially your physical makeup)'),\n",
+ " ('built-in', 'existing as an essential constituent or characteristic'),\n",
+ " ('constituent',\n",
+ " 'constitutional in the structure of something (especially your physical makeup)')]},\n",
+ " {'answer': 'constraining',\n",
+ " 'hint': 'synonyms for constraining',\n",
+ " 'clues': [('confining', 'restricting the scope or freedom of action'),\n",
+ " ('restricting', 'restricting the scope or freedom of action'),\n",
+ " ('constrictive', 'restricting the scope or freedom of action'),\n",
+ " ('limiting', 'restricting the scope or freedom of action')]},\n",
+ " {'answer': 'constrictive',\n",
+ " 'hint': 'synonyms for constrictive',\n",
+ " 'clues': [('constricting',\n",
+ " '(of circumstances) tending to constrict freedom'),\n",
+ " ('constraining', 'restricting the scope or freedom of action'),\n",
+ " ('confining', 'restricting the scope or freedom of action'),\n",
+ " ('restricting', 'restricting the scope or freedom of action'),\n",
+ " ('limiting', 'restricting the scope or freedom of action'),\n",
+ " ('narrowing', '(of circumstances) tending to constrict freedom')]},\n",
+ " {'answer': 'consummate',\n",
+ " 'hint': 'synonyms for consummate',\n",
+ " 'clues': [('sodding',\n",
+ " 'without qualification; used informally as (often pejorative) intensifiers'),\n",
+ " ('pure',\n",
+ " 'without qualification; used informally as (often pejorative) intensifiers'),\n",
+ " ('utter',\n",
+ " 'without qualification; used informally as (often pejorative) intensifiers'),\n",
+ " ('thoroughgoing',\n",
+ " 'without qualification; used informally as (often pejorative) intensifiers'),\n",
+ " ('complete',\n",
+ " 'perfect and complete in every respect; having all necessary qualities'),\n",
+ " ('arrant',\n",
+ " 'without qualification; used informally as (often pejorative) intensifiers'),\n",
+ " ('gross',\n",
+ " 'without qualification; used informally as (often pejorative) intensifiers'),\n",
+ " ('masterful', 'having or revealing supreme mastery or skill'),\n",
+ " ('stark',\n",
+ " 'without qualification; used informally as (often pejorative) intensifiers'),\n",
+ " ('perfect',\n",
+ " 'without qualification; used informally as (often pejorative) intensifiers'),\n",
+ " ('everlasting',\n",
+ " 'without qualification; used informally as (often pejorative) intensifiers'),\n",
+ " ('staring',\n",
+ " 'without qualification; used informally as (often pejorative) intensifiers'),\n",
+ " ('double-dyed',\n",
+ " 'without qualification; used informally as (often pejorative) intensifiers'),\n",
+ " ('unadulterated',\n",
+ " 'without qualification; used informally as (often pejorative) intensifiers'),\n",
+ " ('masterly', 'having or revealing supreme mastery or skill'),\n",
+ " ('virtuoso', 'having or revealing supreme mastery or skill')]},\n",
+ " {'answer': 'contagious',\n",
+ " 'hint': 'synonyms for contagious',\n",
+ " 'clues': [('contractable',\n",
+ " '(of disease) capable of being transmitted by infection'),\n",
+ " ('transmissible',\n",
+ " '(of disease) capable of being transmitted by infection'),\n",
+ " ('catching', '(of disease) capable of being transmitted by infection'),\n",
+ " ('transmittable',\n",
+ " '(of disease) capable of being transmitted by infection'),\n",
+ " ('communicable',\n",
+ " '(of disease) capable of being transmitted by infection')]},\n",
+ " {'answer': 'contemplative',\n",
+ " 'hint': 'synonyms for contemplative',\n",
+ " 'clues': [('broody', 'deeply or seriously thoughtful'),\n",
+ " ('brooding', 'deeply or seriously thoughtful'),\n",
+ " ('reflective', 'deeply or seriously thoughtful'),\n",
+ " ('pondering', 'deeply or seriously thoughtful'),\n",
+ " ('meditative', 'deeply or seriously thoughtful'),\n",
+ " ('musing', 'deeply or seriously thoughtful'),\n",
+ " ('ruminative', 'deeply or seriously thoughtful'),\n",
+ " ('pensive', 'deeply or seriously thoughtful')]},\n",
+ " {'answer': 'contentious',\n",
+ " 'hint': 'synonyms for contentious',\n",
+ " 'clues': [('combative',\n",
+ " 'inclined or showing an inclination to dispute or disagree, even to engage in law suits'),\n",
+ " ('disputative',\n",
+ " 'inclined or showing an inclination to dispute or disagree, even to engage in law suits'),\n",
+ " ('litigious',\n",
+ " 'inclined or showing an inclination to dispute or disagree, even to engage in law suits'),\n",
+ " ('disputatious',\n",
+ " 'inclined or showing an inclination to dispute or disagree, even to engage in law suits')]},\n",
+ " {'answer': 'conterminous',\n",
+ " 'hint': 'synonyms for conterminous',\n",
+ " 'clues': [('contiguous',\n",
+ " 'having a common boundary or edge; abutting; touching'),\n",
+ " ('neighboring', 'having a common boundary or edge; abutting; touching'),\n",
+ " ('adjacent', 'having a common boundary or edge; abutting; touching'),\n",
+ " ('coextensive', 'being of equal extent or scope or duration'),\n",
+ " ('coterminous', 'being of equal extent or scope or duration')]},\n",
+ " {'answer': 'contiguous',\n",
+ " 'hint': 'synonyms for contiguous',\n",
+ " 'clues': [('neighboring',\n",
+ " 'having a common boundary or edge; abutting; touching'),\n",
+ " ('adjacent', 'having a common boundary or edge; abutting; touching'),\n",
+ " ('conterminous', 'connecting without a break; within a common boundary'),\n",
+ " ('immediate', 'very close or connected in space or time')]},\n",
+ " {'answer': 'contingent',\n",
+ " 'hint': 'synonyms for contingent',\n",
+ " 'clues': [('contingent upon',\n",
+ " 'determined by conditions or circumstances that follow'),\n",
+ " ('dependant upon',\n",
+ " 'determined by conditions or circumstances that follow'),\n",
+ " ('depending on', 'determined by conditions or circumstances that follow'),\n",
+ " ('dependent on',\n",
+ " 'determined by conditions or circumstances that follow')]},\n",
+ " {'answer': 'contingent_on',\n",
+ " 'hint': 'synonyms for contingent on',\n",
+ " 'clues': [('contingent upon',\n",
+ " 'determined by conditions or circumstances that follow'),\n",
+ " ('dependant upon',\n",
+ " 'determined by conditions or circumstances that follow'),\n",
+ " ('contingent', 'determined by conditions or circumstances that follow'),\n",
+ " ('depending on', 'determined by conditions or circumstances that follow'),\n",
+ " ('dependent on',\n",
+ " 'determined by conditions or circumstances that follow')]},\n",
+ " {'answer': 'contingent_upon',\n",
+ " 'hint': 'synonyms for contingent upon',\n",
+ " 'clues': [('contingent on',\n",
+ " 'determined by conditions or circumstances that follow'),\n",
+ " ('dependant upon',\n",
+ " 'determined by conditions or circumstances that follow'),\n",
+ " ('depending on', 'determined by conditions or circumstances that follow'),\n",
+ " ('dependent on',\n",
+ " 'determined by conditions or circumstances that follow')]},\n",
+ " {'answer': 'continuant',\n",
+ " 'hint': 'synonyms for continuant',\n",
+ " 'clues': [('sibilant',\n",
+ " \"of speech sounds produced by forcing air through a constricted passage (as `f', `s', `z', or `th' in both `thin' and `then')\"),\n",
+ " ('spirant',\n",
+ " \"of speech sounds produced by forcing air through a constricted passage (as `f', `s', `z', or `th' in both `thin' and `then')\"),\n",
+ " ('strident',\n",
+ " \"of speech sounds produced by forcing air through a constricted passage (as `f', `s', `z', or `th' in both `thin' and `then')\"),\n",
+ " ('fricative',\n",
+ " \"of speech sounds produced by forcing air through a constricted passage (as `f', `s', `z', or `th' in both `thin' and `then')\")]},\n",
+ " {'answer': 'contraband',\n",
+ " 'hint': 'synonyms for contraband',\n",
+ " 'clues': [('bootleg', 'distributed or sold illicitly'),\n",
+ " ('smuggled', 'distributed or sold illicitly'),\n",
+ " ('black', 'distributed or sold illicitly'),\n",
+ " ('black-market', 'distributed or sold illicitly')]},\n",
+ " {'answer': 'contractable',\n",
+ " 'hint': 'synonyms for contractable',\n",
+ " 'clues': [('transmissible',\n",
+ " '(of disease) capable of being transmitted by infection'),\n",
+ " ('contagious', '(of disease) capable of being transmitted by infection'),\n",
+ " ('catching', '(of disease) capable of being transmitted by infection'),\n",
+ " ('transmittable',\n",
+ " '(of disease) capable of being transmitted by infection'),\n",
+ " ('communicable',\n",
+ " '(of disease) capable of being transmitted by infection')]},\n",
+ " {'answer': 'contradictory',\n",
+ " 'hint': 'synonyms for contradictory',\n",
+ " 'clues': [('self-contradictory', 'in disagreement; ; - John Morley'),\n",
+ " ('confounding', 'that confounds or contradicts or confuses'),\n",
+ " ('conflicting', 'in disagreement; ; - John Morley'),\n",
+ " ('at odds', 'in disagreement; ; - John Morley'),\n",
+ " ('mutually exclusive', 'unable to be both true at the same time')]},\n",
+ " {'answer': 'contrary',\n",
+ " 'hint': 'synonyms for contrary',\n",
+ " 'clues': [('obstinate', 'resistant to guidance or discipline'),\n",
+ " ('perverse', 'resistant to guidance or discipline'),\n",
+ " ('wayward', 'resistant to guidance or discipline'),\n",
+ " ('adverse', 'in an opposing direction')]},\n",
+ " {'answer': 'contributing',\n",
+ " 'hint': 'synonyms for contributing',\n",
+ " 'clues': [('contributory',\n",
+ " 'tending to bring about; being partly responsible for'),\n",
+ " ('contributive', 'tending to bring about; being partly responsible for'),\n",
+ " ('conducive', 'tending to bring about; being partly responsible for'),\n",
+ " ('tributary', 'tending to bring about; being partly responsible for')]},\n",
+ " {'answer': 'contributive',\n",
+ " 'hint': 'synonyms for contributive',\n",
+ " 'clues': [('contributing',\n",
+ " 'tending to bring about; being partly responsible for'),\n",
+ " ('contributory', 'tending to bring about; being partly responsible for'),\n",
+ " ('conducive', 'tending to bring about; being partly responsible for'),\n",
+ " ('tributary', 'tending to bring about; being partly responsible for')]},\n",
+ " {'answer': 'contributory',\n",
+ " 'hint': 'synonyms for contributory',\n",
+ " 'clues': [('contributing',\n",
+ " 'tending to bring about; being partly responsible for'),\n",
+ " ('contributive', 'tending to bring about; being partly responsible for'),\n",
+ " ('conducive', 'tending to bring about; being partly responsible for'),\n",
+ " ('tributary', 'tending to bring about; being partly responsible for')]},\n",
+ " {'answer': 'conventional',\n",
+ " 'hint': 'synonyms for conventional',\n",
+ " 'clues': [('established', 'conforming with accepted standards'),\n",
+ " ('formal', 'represented in simplified or symbolic form'),\n",
+ " ('ceremonious', 'rigidly formal or bound by convention'),\n",
+ " ('schematic', 'represented in simplified or symbolic form')]},\n",
+ " {'answer': 'convertible',\n",
+ " 'hint': 'synonyms for convertible',\n",
+ " 'clues': [('transformable',\n",
+ " 'capable of being changed in substance as if by alchemy'),\n",
+ " ('transmutable',\n",
+ " 'capable of being changed in substance as if by alchemy'),\n",
+ " ('exchangeable',\n",
+ " 'capable of being exchanged for or replaced by something of equal value'),\n",
+ " ('translatable',\n",
+ " 'capable of being changed in substance as if by alchemy')]},\n",
+ " {'answer': 'convoluted',\n",
+ " 'hint': 'synonyms for convoluted',\n",
+ " 'clues': [('knotty',\n",
+ " 'highly complex or intricate and occasionally devious; ; ; ; ; ; ; ; - Sir Walter Scott'),\n",
+ " ('tangled',\n",
+ " 'highly complex or intricate and occasionally devious; ; ; ; ; ; ; ; - Sir Walter Scott'),\n",
+ " ('convolute', 'rolled longitudinally upon itself'),\n",
+ " ('tortuous',\n",
+ " 'highly complex or intricate and occasionally devious; ; ; ; ; ; ; ; - Sir Walter Scott'),\n",
+ " ('involved',\n",
+ " 'highly complex or intricate and occasionally devious; ; ; ; ; ; ; ; - Sir Walter Scott')]},\n",
+ " {'answer': 'cooccurring',\n",
+ " 'hint': 'synonyms for cooccurring',\n",
+ " 'clues': [('coincidental', 'occurring or operating at the same time'),\n",
+ " ('simultaneous', 'occurring or operating at the same time'),\n",
+ " ('concurrent', 'occurring or operating at the same time'),\n",
+ " ('coinciding', 'occurring or operating at the same time'),\n",
+ " ('co-occurrent', 'occurring or operating at the same time')]},\n",
+ " {'answer': 'cooperative',\n",
+ " 'hint': 'synonyms for cooperative',\n",
+ " 'clues': [('accommodative',\n",
+ " 'willing to adjust to differences in order to obtain agreement'),\n",
+ " ('concerted', 'involving the joint activity of two or more'),\n",
+ " ('conjunct', 'involving the joint activity of two or more'),\n",
+ " ('conjunctive', 'involving the joint activity of two or more')]},\n",
+ " {'answer': 'coordinated',\n",
+ " 'hint': 'synonyms for coordinated',\n",
+ " 'clues': [('co-ordinated', 'intentionally matched'),\n",
+ " ('interconnected', 'operating as a unit'),\n",
+ " ('matching', 'intentionally matched'),\n",
+ " ('unified', 'operating as a unit')]},\n",
+ " {'answer': 'copious',\n",
+ " 'hint': 'synonyms for copious',\n",
+ " 'clues': [('rich', 'affording an abundant supply'),\n",
+ " ('voluminous', 'large in number or quantity (especially of discourse)'),\n",
+ " ('plentiful', 'affording an abundant supply'),\n",
+ " ('plenteous', 'affording an abundant supply'),\n",
+ " ('ample', 'affording an abundant supply')]},\n",
+ " {'answer': 'corking',\n",
+ " 'hint': 'synonyms for corking',\n",
+ " 'clues': [('smashing', 'very good'),\n",
+ " ('not bad', 'very good'),\n",
+ " ('swell', 'very good'),\n",
+ " ('dandy', 'very good'),\n",
+ " ('keen', 'very good'),\n",
+ " ('nifty', 'very good'),\n",
+ " ('peachy', 'very good'),\n",
+ " ('cracking', 'very good'),\n",
+ " ('slap-up', 'very good'),\n",
+ " ('bang-up', 'very good'),\n",
+ " ('bully', 'very good'),\n",
+ " ('neat', 'very good'),\n",
+ " ('groovy', 'very good'),\n",
+ " ('great', 'very good')]},\n",
+ " {'answer': 'corporal',\n",
+ " 'hint': 'synonyms for corporal',\n",
+ " 'clues': [('bodied',\n",
+ " 'possessing or existing in bodily form; - Shakespeare'),\n",
+ " ('corporeal',\n",
+ " 'affecting or characteristic of the body as opposed to the mind or spirit'),\n",
+ " ('corporate', 'possessing or existing in bodily form; - Shakespeare'),\n",
+ " ('somatic',\n",
+ " 'affecting or characteristic of the body as opposed to the mind or spirit'),\n",
+ " ('incarnate', 'possessing or existing in bodily form; - Shakespeare'),\n",
+ " ('bodily',\n",
+ " 'affecting or characteristic of the body as opposed to the mind or spirit')]},\n",
+ " {'answer': 'corporate',\n",
+ " 'hint': 'synonyms for corporate',\n",
+ " 'clues': [('bodied',\n",
+ " 'possessing or existing in bodily form; - Shakespeare'),\n",
+ " ('corporal', 'possessing or existing in bodily form; - Shakespeare'),\n",
+ " ('incorporated', 'organized and maintained as a legal corporation'),\n",
+ " ('incarnate', 'possessing or existing in bodily form; - Shakespeare'),\n",
+ " ('collective',\n",
+ " 'done by or characteristic of individuals acting together')]},\n",
+ " {'answer': 'corporeal',\n",
+ " 'hint': 'synonyms for corporeal',\n",
+ " 'clues': [('material',\n",
+ " 'having material or physical form or substance; - Benjamin Jowett'),\n",
+ " ('somatic',\n",
+ " 'affecting or characteristic of the body as opposed to the mind or spirit'),\n",
+ " ('bodily',\n",
+ " 'affecting or characteristic of the body as opposed to the mind or spirit'),\n",
+ " ('corporal',\n",
+ " 'affecting or characteristic of the body as opposed to the mind or spirit')]},\n",
+ " {'answer': 'corroborative',\n",
+ " 'hint': 'synonyms for corroborative',\n",
+ " 'clues': [('substantiating', 'serving to support or corroborate'),\n",
+ " ('validatory', 'serving to support or corroborate'),\n",
+ " ('collateral', 'serving to support or corroborate'),\n",
+ " ('validating', 'serving to support or corroborate'),\n",
+ " ('confirmative', 'serving to support or corroborate'),\n",
+ " ('verificatory', 'serving to support or corroborate'),\n",
+ " ('corroboratory', 'serving to support or corroborate'),\n",
+ " ('confirming', 'serving to support or corroborate'),\n",
+ " ('verifying', 'serving to support or corroborate'),\n",
+ " ('confirmatory', 'serving to support or corroborate')]},\n",
+ " {'answer': 'corroboratory',\n",
+ " 'hint': 'synonyms for corroboratory',\n",
+ " 'clues': [('substantiating', 'serving to support or corroborate'),\n",
+ " ('validatory', 'serving to support or corroborate'),\n",
+ " ('collateral', 'serving to support or corroborate'),\n",
+ " ('validating', 'serving to support or corroborate'),\n",
+ " ('confirmative', 'serving to support or corroborate'),\n",
+ " ('verificatory', 'serving to support or corroborate'),\n",
+ " ('confirming', 'serving to support or corroborate'),\n",
+ " ('verifying', 'serving to support or corroborate'),\n",
+ " ('corroborative', 'serving to support or corroborate'),\n",
+ " ('confirmatory', 'serving to support or corroborate')]},\n",
+ " {'answer': 'corrosive',\n",
+ " 'hint': 'synonyms for corrosive',\n",
+ " 'clues': [('mordant',\n",
+ " 'of a substance, especially a strong acid; capable of destroying or eating away by chemical action'),\n",
+ " ('vitriolic',\n",
+ " 'of a substance, especially a strong acid; capable of destroying or eating away by chemical action'),\n",
+ " ('erosive',\n",
+ " 'of a substance, especially a strong acid; capable of destroying or eating away by chemical action'),\n",
+ " ('caustic',\n",
+ " 'of a substance, especially a strong acid; capable of destroying or eating away by chemical action')]},\n",
+ " {'answer': 'corruptible',\n",
+ " 'hint': 'synonyms for corruptible',\n",
+ " 'clues': [('purchasable', 'capable of being corrupted'),\n",
+ " ('venal', 'capable of being corrupted'),\n",
+ " ('bribable', 'capable of being corrupted'),\n",
+ " ('dishonest', 'capable of being corrupted')]},\n",
+ " {'answer': 'coruscant',\n",
+ " 'hint': 'synonyms for coruscant',\n",
+ " 'clues': [('sparkly', 'having brief brilliant points or flashes of light'),\n",
+ " ('glittering', 'having brief brilliant points or flashes of light'),\n",
+ " ('scintillating', 'having brief brilliant points or flashes of light'),\n",
+ " ('aglitter', 'having brief brilliant points or flashes of light'),\n",
+ " ('scintillant', 'having brief brilliant points or flashes of light'),\n",
+ " ('glinting', 'having brief brilliant points or flashes of light'),\n",
+ " ('fulgid', 'having brief brilliant points or flashes of light')]},\n",
+ " {'answer': 'cosmopolitan',\n",
+ " 'hint': 'synonyms for cosmopolitan',\n",
+ " 'clues': [('ecumenical',\n",
+ " 'of worldwide scope or applicability; ; - Christopher Morley'),\n",
+ " ('world-wide',\n",
+ " 'of worldwide scope or applicability; ; - Christopher Morley'),\n",
+ " ('general',\n",
+ " 'of worldwide scope or applicability; ; - Christopher Morley'),\n",
+ " ('universal',\n",
+ " 'of worldwide scope or applicability; ; - Christopher Morley'),\n",
+ " ('widely distributed',\n",
+ " 'growing or occurring in many parts of the world')]},\n",
+ " {'answer': 'costless',\n",
+ " 'hint': 'synonyms for costless',\n",
+ " 'clues': [('gratuitous', 'costing nothing'),\n",
+ " ('gratis', 'costing nothing'),\n",
+ " ('complimentary', 'costing nothing'),\n",
+ " ('free', 'costing nothing')]},\n",
+ " {'answer': 'costly',\n",
+ " 'hint': 'synonyms for costly',\n",
+ " 'clues': [('high-priced', 'having a high price'),\n",
+ " ('pricy', 'having a high price'),\n",
+ " ('dearly-won', 'entailing great loss or sacrifice'),\n",
+ " ('dear', 'having a high price')]},\n",
+ " {'answer': 'countless',\n",
+ " 'hint': 'synonyms for countless',\n",
+ " 'clues': [('unnumerable', 'too numerous to be counted'),\n",
+ " ('myriad', 'too numerous to be counted'),\n",
+ " ('infinite', 'too numerous to be counted'),\n",
+ " ('innumerous', 'too numerous to be counted'),\n",
+ " ('multitudinous', 'too numerous to be counted'),\n",
+ " ('uncounted', 'too numerous to be counted'),\n",
+ " ('numberless', 'too numerous to be counted'),\n",
+ " ('unnumbered', 'too numerous to be counted')]},\n",
+ " {'answer': 'covetous',\n",
+ " 'hint': 'synonyms for covetous',\n",
+ " 'clues': [('jealous',\n",
+ " \"showing extreme cupidity; painfully desirous of another's advantages\"),\n",
+ " ('prehensile', 'immoderately desirous of acquiring e.g. wealth'),\n",
+ " ('greedy', 'immoderately desirous of acquiring e.g. wealth'),\n",
+ " ('grabby', 'immoderately desirous of acquiring e.g. wealth'),\n",
+ " ('avaricious', 'immoderately desirous of acquiring e.g. wealth'),\n",
+ " ('grasping', 'immoderately desirous of acquiring e.g. wealth'),\n",
+ " ('envious',\n",
+ " \"showing extreme cupidity; painfully desirous of another's advantages\")]},\n",
+ " {'answer': 'cozy',\n",
+ " 'hint': 'synonyms for cozy',\n",
+ " 'clues': [('cosy',\n",
+ " 'enjoying or affording comforting warmth and shelter especially in a small space'),\n",
+ " ('snug',\n",
+ " 'enjoying or affording comforting warmth and shelter especially in a small space'),\n",
+ " ('intimate',\n",
+ " 'having or fostering a warm or friendly and informal atmosphere'),\n",
+ " ('informal',\n",
+ " 'having or fostering a warm or friendly and informal atmosphere')]},\n",
+ " {'answer': 'crabbed',\n",
+ " 'hint': 'synonyms for crabbed',\n",
+ " 'clues': [('ill-tempered', 'annoyed and irritable'),\n",
+ " ('cross', 'annoyed and irritable'),\n",
+ " ('grouchy', 'annoyed and irritable'),\n",
+ " ('bad-tempered', 'annoyed and irritable'),\n",
+ " ('fussy', 'annoyed and irritable'),\n",
+ " ('grumpy', 'annoyed and irritable'),\n",
+ " ('crabby', 'annoyed and irritable')]},\n",
+ " {'answer': 'crabby',\n",
+ " 'hint': 'synonyms for crabby',\n",
+ " 'clues': [('ill-tempered', 'annoyed and irritable'),\n",
+ " ('crabbed', 'annoyed and irritable'),\n",
+ " ('cross', 'annoyed and irritable'),\n",
+ " ('grouchy', 'annoyed and irritable'),\n",
+ " ('bad-tempered', 'annoyed and irritable'),\n",
+ " ('fussy', 'annoyed and irritable'),\n",
+ " ('grumpy', 'annoyed and irritable')]},\n",
+ " {'answer': 'crack',\n",
+ " 'hint': 'synonyms for crack',\n",
+ " 'clues': [('topnotch', 'of the highest quality'),\n",
+ " ('first-rate', 'of the highest quality'),\n",
+ " ('tops', 'of the highest quality'),\n",
+ " ('super', 'of the highest quality'),\n",
+ " ('tiptop', 'of the highest quality'),\n",
+ " ('ace', 'of the highest quality')]},\n",
+ " {'answer': 'cracked',\n",
+ " 'hint': 'synonyms for cracked',\n",
+ " 'clues': [('crackers', 'informal or slang terms for mentally irregular'),\n",
+ " ('nuts', 'informal or slang terms for mentally irregular'),\n",
+ " ('loony', 'informal or slang terms for mentally irregular'),\n",
+ " ('dotty', 'informal or slang terms for mentally irregular'),\n",
+ " ('batty', 'informal or slang terms for mentally irregular'),\n",
+ " ('bats', 'informal or slang terms for mentally irregular'),\n",
+ " ('balmy', 'informal or slang terms for mentally irregular'),\n",
+ " ('chapped', 'used of skin roughened as a result of cold or exposure'),\n",
+ " ('roughened', 'used of skin roughened as a result of cold or exposure'),\n",
+ " ('barmy', 'informal or slang terms for mentally irregular'),\n",
+ " ('wacky', 'informal or slang terms for mentally irregular'),\n",
+ " ('daft', 'informal or slang terms for mentally irregular'),\n",
+ " ('loco', 'informal or slang terms for mentally irregular'),\n",
+ " ('bonkers', 'informal or slang terms for mentally irregular'),\n",
+ " ('nutty', 'informal or slang terms for mentally irregular'),\n",
+ " ('haywire', 'informal or slang terms for mentally irregular'),\n",
+ " ('buggy', 'informal or slang terms for mentally irregular'),\n",
+ " ('kookie', 'informal or slang terms for mentally irregular'),\n",
+ " ('alligatored',\n",
+ " 'of paint or varnish; having the appearance of alligator hide'),\n",
+ " ('fruity', 'informal or slang terms for mentally irregular'),\n",
+ " ('round the bend', 'informal or slang terms for mentally irregular'),\n",
+ " ('kooky', 'informal or slang terms for mentally irregular'),\n",
+ " ('loopy', 'informal or slang terms for mentally irregular')]},\n",
+ " {'answer': 'crackers',\n",
+ " 'hint': 'synonyms for crackers',\n",
+ " 'clues': [('nuts', 'informal or slang terms for mentally irregular'),\n",
+ " ('loony', 'informal or slang terms for mentally irregular'),\n",
+ " ('dotty', 'informal or slang terms for mentally irregular'),\n",
+ " ('batty', 'informal or slang terms for mentally irregular'),\n",
+ " ('cracked', 'informal or slang terms for mentally irregular'),\n",
+ " ('balmy', 'informal or slang terms for mentally irregular'),\n",
+ " ('bats', 'informal or slang terms for mentally irregular'),\n",
+ " ('barmy', 'informal or slang terms for mentally irregular'),\n",
+ " ('wacky', 'informal or slang terms for mentally irregular'),\n",
+ " ('daft', 'informal or slang terms for mentally irregular'),\n",
+ " ('loco', 'informal or slang terms for mentally irregular'),\n",
+ " ('bonkers', 'informal or slang terms for mentally irregular'),\n",
+ " ('nutty', 'informal or slang terms for mentally irregular'),\n",
+ " ('haywire', 'informal or slang terms for mentally irregular'),\n",
+ " ('buggy', 'informal or slang terms for mentally irregular'),\n",
+ " ('kookie', 'informal or slang terms for mentally irregular'),\n",
+ " ('fruity', 'informal or slang terms for mentally irregular'),\n",
+ " ('round the bend', 'informal or slang terms for mentally irregular'),\n",
+ " ('kooky', 'informal or slang terms for mentally irregular'),\n",
+ " ('loopy', 'informal or slang terms for mentally irregular')]},\n",
+ " {'answer': 'cracking',\n",
+ " 'hint': 'synonyms for cracking',\n",
+ " 'clues': [('smashing', 'very good'),\n",
+ " ('not bad', 'very good'),\n",
+ " ('swell', 'very good'),\n",
+ " ('dandy', 'very good'),\n",
+ " ('keen', 'very good'),\n",
+ " ('nifty', 'very good'),\n",
+ " ('peachy', 'very good'),\n",
+ " ('slap-up', 'very good'),\n",
+ " ('bang-up', 'very good'),\n",
+ " ('corking', 'very good'),\n",
+ " ('bully', 'very good'),\n",
+ " ('neat', 'very good'),\n",
+ " ('groovy', 'very good'),\n",
+ " ('great', 'very good')]},\n",
+ " {'answer': 'crafty',\n",
+ " 'hint': 'synonyms for crafty',\n",
+ " 'clues': [('tricky', 'marked by skill in deception'),\n",
+ " ('knavish', 'marked by skill in deception'),\n",
+ " ('sly', 'marked by skill in deception'),\n",
+ " ('slick', 'marked by skill in deception'),\n",
+ " ('wily', 'marked by skill in deception'),\n",
+ " ('foxy', 'marked by skill in deception'),\n",
+ " ('dodgy', 'marked by skill in deception'),\n",
+ " ('guileful', 'marked by skill in deception'),\n",
+ " ('cunning', 'marked by skill in deception')]},\n",
+ " {'answer': 'cram_full',\n",
+ " 'hint': 'synonyms for cram full',\n",
+ " 'clues': [('chuck-full', 'packed full to capacity'),\n",
+ " ('chockful', 'packed full to capacity'),\n",
+ " ('chockablock', 'packed full to capacity'),\n",
+ " ('choke-full', 'packed full to capacity')]},\n",
+ " {'answer': 'cranky',\n",
+ " 'hint': 'synonyms for cranky',\n",
+ " 'clues': [('crank',\n",
+ " '(used of boats) inclined to heel over easily under sail'),\n",
+ " ('nettlesome', 'easily irritated or annoyed'),\n",
+ " ('fractious', 'easily irritated or annoyed'),\n",
+ " ('petulant', 'easily irritated or annoyed'),\n",
+ " ('tender', '(used of boats) inclined to heel over easily under sail'),\n",
+ " ('irritable', 'easily irritated or annoyed'),\n",
+ " ('peevish', 'easily irritated or annoyed'),\n",
+ " ('tippy', '(used of boats) inclined to heel over easily under sail'),\n",
+ " ('techy', 'easily irritated or annoyed'),\n",
+ " ('pettish', 'easily irritated or annoyed'),\n",
+ " ('scratchy', 'easily irritated or annoyed'),\n",
+ " ('peckish', 'easily irritated or annoyed'),\n",
+ " ('testy', 'easily irritated or annoyed')]},\n",
+ " {'answer': 'crappy',\n",
+ " 'hint': 'synonyms for crappy',\n",
+ " 'clues': [('shitty', 'very bad'),\n",
+ " ('rotten', 'very bad'),\n",
+ " ('icky', 'very bad'),\n",
+ " ('lousy', 'very bad'),\n",
+ " ('stinky', 'very bad'),\n",
+ " ('stinking', 'very bad')]},\n",
+ " {'answer': 'crashing',\n",
+ " 'hint': 'synonyms for crashing',\n",
+ " 'clues': [('flaming', 'informal intensifiers'),\n",
+ " ('bally', 'informal intensifiers'),\n",
+ " ('fucking', 'informal intensifiers'),\n",
+ " ('bloody', 'informal intensifiers'),\n",
+ " ('blinking', 'informal intensifiers'),\n",
+ " ('blooming', 'informal intensifiers')]},\n",
+ " {'answer': 'crazy',\n",
+ " 'hint': 'synonyms for crazy',\n",
+ " 'clues': [('unhinged', 'affected with madness or insanity'),\n",
+ " ('brainsick', 'affected with madness or insanity'),\n",
+ " ('gaga', 'intensely enthusiastic about or preoccupied with'),\n",
+ " ('wild', 'intensely enthusiastic about or preoccupied with'),\n",
+ " ('mad', 'affected with madness or insanity'),\n",
+ " ('screwball', 'foolish; totally unsound'),\n",
+ " ('softheaded', 'foolish; totally unsound'),\n",
+ " ('demented', 'affected with madness or insanity'),\n",
+ " ('half-baked', 'foolish; totally unsound'),\n",
+ " ('disturbed', 'affected with madness or insanity'),\n",
+ " ('sick', 'affected with madness or insanity'),\n",
+ " ('unbalanced', 'affected with madness or insanity'),\n",
+ " ('dotty', 'intensely enthusiastic about or preoccupied with')]},\n",
+ " {'answer': 'creaky',\n",
+ " 'hint': 'synonyms for creaky',\n",
+ " 'clues': [('flea-bitten', 'worn and broken down by hard use'),\n",
+ " ('rheumy', 'of or pertaining to arthritis'),\n",
+ " ('decrepit', 'worn and broken down by hard use'),\n",
+ " ('run-down', 'worn and broken down by hard use'),\n",
+ " ('rheumatic', 'of or pertaining to arthritis'),\n",
+ " ('derelict', 'worn and broken down by hard use'),\n",
+ " ('screaky', 'having a rasping or grating sound'),\n",
+ " ('woebegone', 'worn and broken down by hard use'),\n",
+ " ('rheumatoid', 'of or pertaining to arthritis'),\n",
+ " ('arthritic', 'of or pertaining to arthritis')]},\n",
+ " {'answer': 'criminal',\n",
+ " 'hint': 'synonyms for criminal',\n",
+ " 'clues': [('condemnable',\n",
+ " 'bringing or deserving severe rebuke or censure'),\n",
+ " ('deplorable', 'bringing or deserving severe rebuke or censure'),\n",
+ " ('felonious', 'involving or being or having the nature of a crime'),\n",
+ " ('reprehensible', 'bringing or deserving severe rebuke or censure'),\n",
+ " ('vicious', 'bringing or deserving severe rebuke or censure')]},\n",
+ " {'answer': 'crimson',\n",
+ " 'hint': 'synonyms for crimson',\n",
+ " 'clues': [('red',\n",
+ " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n",
+ " ('ruddy',\n",
+ " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n",
+ " ('cerise',\n",
+ " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n",
+ " ('ruby-red',\n",
+ " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n",
+ " ('ruby',\n",
+ " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n",
+ " ('red-faced',\n",
+ " '(especially of the face) reddened or suffused with or as if with blood from emotion or exertion'),\n",
+ " ('cherry',\n",
+ " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n",
+ " ('carmine',\n",
+ " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n",
+ " ('reddened',\n",
+ " '(especially of the face) reddened or suffused with or as if with blood from emotion or exertion'),\n",
+ " ('scarlet',\n",
+ " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n",
+ " ('reddish',\n",
+ " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n",
+ " ('cherry-red',\n",
+ " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n",
+ " ('flushed',\n",
+ " '(especially of the face) reddened or suffused with or as if with blood from emotion or exertion'),\n",
+ " ('blood-red',\n",
+ " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n",
+ " ('violent',\n",
+ " 'characterized by violence or bloodshed; - Andrea Parke; - Thomas Gray; - Hudson Strode')]},\n",
+ " {'answer': 'crinkled',\n",
+ " 'hint': 'synonyms for crinkled',\n",
+ " 'clues': [('crinkly', 'uneven by virtue of having wrinkles or waves'),\n",
+ " ('wavelike', 'uneven by virtue of having wrinkles or waves'),\n",
+ " ('rippled', 'uneven by virtue of having wrinkles or waves'),\n",
+ " ('wavy', 'uneven by virtue of having wrinkles or waves')]},\n",
+ " {'answer': 'crinkly',\n",
+ " 'hint': 'synonyms for crinkly',\n",
+ " 'clues': [('wavelike', 'uneven by virtue of having wrinkles or waves'),\n",
+ " ('crinkled', 'uneven by virtue of having wrinkles or waves'),\n",
+ " ('rippled', 'uneven by virtue of having wrinkles or waves'),\n",
+ " ('wavy', 'uneven by virtue of having wrinkles or waves')]},\n",
+ " {'answer': 'crippled',\n",
+ " 'hint': 'synonyms for crippled',\n",
+ " 'clues': [('lame', 'disabled in the feet or legs'),\n",
+ " ('halt', 'disabled in the feet or legs'),\n",
+ " ('game', 'disabled in the feet or legs'),\n",
+ " ('gimpy', 'disabled in the feet or legs')]},\n",
+ " {'answer': 'crisp',\n",
+ " 'hint': 'synonyms for crisp',\n",
+ " 'clues': [('frosty', 'pleasantly cold and invigorating'),\n",
+ " ('curt', 'brief and to the point; effectively cut short'),\n",
+ " ('nipping', 'pleasantly cold and invigorating'),\n",
+ " ('kinky', '(of hair) in small tight curls'),\n",
+ " ('frizzy', '(of hair) in small tight curls'),\n",
+ " ('crispy', 'tender and brittle'),\n",
+ " ('snappy', 'pleasantly cold and invigorating'),\n",
+ " ('laconic', 'brief and to the point; effectively cut short'),\n",
+ " ('nippy', 'pleasantly cold and invigorating'),\n",
+ " ('sharp', '(of something seen or heard) clearly defined'),\n",
+ " ('terse', 'brief and to the point; effectively cut short')]},\n",
+ " {'answer': 'crocked',\n",
+ " 'hint': 'synonyms for crocked',\n",
+ " 'clues': [('pixilated', 'very drunk'),\n",
+ " ('sloshed', 'very drunk'),\n",
+ " ('tight', 'very drunk'),\n",
+ " ('pissed', 'very drunk'),\n",
+ " ('cockeyed', 'very drunk'),\n",
+ " ('besotted', 'very drunk'),\n",
+ " ('smashed', 'very drunk'),\n",
+ " ('pie-eyed', 'very drunk'),\n",
+ " ('blind drunk', 'very drunk'),\n",
+ " ('stiff', 'very drunk'),\n",
+ " ('slopped', 'very drunk'),\n",
+ " ('sozzled', 'very drunk'),\n",
+ " ('loaded', 'very drunk'),\n",
+ " ('soaked', 'very drunk'),\n",
+ " ('fuddled', 'very drunk'),\n",
+ " ('plastered', 'very drunk'),\n",
+ " ('blotto', 'very drunk'),\n",
+ " ('squiffy', 'very drunk'),\n",
+ " ('wet', 'very drunk'),\n",
+ " ('soused', 'very drunk')]},\n",
+ " {'answer': 'crookback',\n",
+ " 'hint': 'synonyms for crookback',\n",
+ " 'clues': [('humped',\n",
+ " 'characteristic of or suffering from kyphosis, an abnormality of the vertebral column'),\n",
+ " ('humpbacked',\n",
+ " 'characteristic of or suffering from kyphosis, an abnormality of the vertebral column'),\n",
+ " ('hunchbacked',\n",
+ " 'characteristic of or suffering from kyphosis, an abnormality of the vertebral column'),\n",
+ " ('gibbous',\n",
+ " 'characteristic of or suffering from kyphosis, an abnormality of the vertebral column'),\n",
+ " ('crookbacked',\n",
+ " 'characteristic of or suffering from kyphosis, an abnormality of the vertebral column'),\n",
+ " ('kyphotic',\n",
+ " 'characteristic of or suffering from kyphosis, an abnormality of the vertebral column')]},\n",
+ " {'answer': 'crookbacked',\n",
+ " 'hint': 'synonyms for crookbacked',\n",
+ " 'clues': [('humped',\n",
+ " 'characteristic of or suffering from kyphosis, an abnormality of the vertebral column'),\n",
+ " ('humpbacked',\n",
+ " 'characteristic of or suffering from kyphosis, an abnormality of the vertebral column'),\n",
+ " ('crookback',\n",
+ " 'characteristic of or suffering from kyphosis, an abnormality of the vertebral column'),\n",
+ " ('gibbous',\n",
+ " 'characteristic of or suffering from kyphosis, an abnormality of the vertebral column'),\n",
+ " ('hunchbacked',\n",
+ " 'characteristic of or suffering from kyphosis, an abnormality of the vertebral column'),\n",
+ " ('kyphotic',\n",
+ " 'characteristic of or suffering from kyphosis, an abnormality of the vertebral column')]},\n",
+ " {'answer': 'crooked',\n",
+ " 'hint': 'synonyms for crooked',\n",
+ " 'clues': [('stooped', 'having the back and shoulders rounded; not erect'),\n",
+ " ('corrupt', 'not straight; dishonest or immoral or evasive'),\n",
+ " ('stooping', 'having the back and shoulders rounded; not erect'),\n",
+ " ('round-shouldered', 'having the back and shoulders rounded; not erect'),\n",
+ " ('hunched', 'having the back and shoulders rounded; not erect'),\n",
+ " ('round-backed', 'having the back and shoulders rounded; not erect'),\n",
+ " ('asymmetrical', 'irregular in shape or outline')]},\n",
+ " {'answer': 'cross',\n",
+ " 'hint': 'synonyms for cross',\n",
+ " 'clues': [('grouchy', 'annoyed and irritable'),\n",
+ " ('bad-tempered', 'annoyed and irritable'),\n",
+ " ('transverse',\n",
+ " 'extending or lying across; in a crosswise direction; at right angles to the long axis'),\n",
+ " ('fussy', 'annoyed and irritable'),\n",
+ " ('grumpy', 'annoyed and irritable'),\n",
+ " ('thwartwise',\n",
+ " 'extending or lying across; in a crosswise direction; at right angles to the long axis'),\n",
+ " ('ill-tempered', 'annoyed and irritable'),\n",
+ " ('crabbed', 'annoyed and irritable'),\n",
+ " ('crabby', 'annoyed and irritable')]},\n",
+ " {'answer': 'crowing',\n",
+ " 'hint': 'synonyms for crowing',\n",
+ " 'clues': [('self-aggrandising', 'exhibiting self-importance'),\n",
+ " ('boastful', 'exhibiting self-importance'),\n",
+ " ('big', 'exhibiting self-importance'),\n",
+ " ('bragging', 'exhibiting self-importance'),\n",
+ " ('braggart', 'exhibiting self-importance'),\n",
+ " ('cock-a-hoop', 'exhibiting self-importance'),\n",
+ " ('braggy', 'exhibiting self-importance')]},\n",
+ " {'answer': 'crucial',\n",
+ " 'hint': 'synonyms for crucial',\n",
+ " 'clues': [('all-important', 'of the greatest importance'),\n",
+ " ('important',\n",
+ " 'of extreme importance; vital to the resolution of a crisis'),\n",
+ " ('of the essence', 'of the greatest importance'),\n",
+ " ('essential', 'of the greatest importance')]},\n",
+ " {'answer': 'cruddy',\n",
+ " 'hint': 'synonyms for cruddy',\n",
+ " 'clues': [('smutty', 'characterized by obscenity'),\n",
+ " ('nasty', 'characterized by obscenity'),\n",
+ " ('filthy', 'characterized by obscenity'),\n",
+ " ('foul', 'characterized by obscenity')]},\n",
+ " {'answer': 'crude',\n",
+ " 'hint': 'synonyms for crude',\n",
+ " 'clues': [('rough', 'not carefully or expertly made'),\n",
+ " ('rude',\n",
+ " 'belonging to an early stage of technical development; characterized by simplicity and (often) crudeness'),\n",
+ " ('raw', 'not processed or subjected to analysis'),\n",
+ " ('gross', 'conspicuously and tastelessly indecent'),\n",
+ " ('primitive',\n",
+ " 'belonging to an early stage of technical development; characterized by simplicity and (often) crudeness'),\n",
+ " ('earthy', 'conspicuously and tastelessly indecent'),\n",
+ " ('blunt', 'devoid of any qualifications or disguise or adornment'),\n",
+ " ('stark', 'devoid of any qualifications or disguise or adornment'),\n",
+ " ('unrefined', 'not refined or processed'),\n",
+ " ('vulgar', 'conspicuously and tastelessly indecent'),\n",
+ " ('unprocessed', 'not refined or processed')]},\n",
+ " {'answer': 'cruel',\n",
+ " 'hint': 'synonyms for cruel',\n",
+ " 'clues': [('savage',\n",
+ " '(of persons or their actions) able or disposed to inflict pain or suffering'),\n",
+ " ('barbarous',\n",
+ " '(of persons or their actions) able or disposed to inflict pain or suffering'),\n",
+ " ('fell',\n",
+ " '(of persons or their actions) able or disposed to inflict pain or suffering'),\n",
+ " ('brutal',\n",
+ " '(of persons or their actions) able or disposed to inflict pain or suffering'),\n",
+ " ('roughshod',\n",
+ " '(of persons or their actions) able or disposed to inflict pain or suffering'),\n",
+ " ('vicious',\n",
+ " '(of persons or their actions) able or disposed to inflict pain or suffering')]},\n",
+ " {'answer': 'crummy',\n",
+ " 'hint': 'synonyms for crummy',\n",
+ " 'clues': [('bum', 'of very poor quality; flimsy'),\n",
+ " ('punk', 'of very poor quality; flimsy'),\n",
+ " ('cheap', 'of very poor quality; flimsy'),\n",
+ " ('chintzy', 'of very poor quality; flimsy'),\n",
+ " ('tinny', 'of very poor quality; flimsy'),\n",
+ " ('sleazy', 'of very poor quality; flimsy'),\n",
+ " ('cheesy', 'of very poor quality; flimsy')]},\n",
+ " {'answer': 'crushed',\n",
+ " 'hint': 'synonyms for crushed',\n",
+ " 'clues': [('humiliated', 'subdued or brought low in condition or status'),\n",
+ " ('broken', 'subdued or brought low in condition or status'),\n",
+ " ('low', 'subdued or brought low in condition or status'),\n",
+ " ('humbled', 'subdued or brought low in condition or status')]},\n",
+ " {'answer': 'crusty',\n",
+ " 'hint': 'synonyms for crusty',\n",
+ " 'clues': [('crusted', 'having a hardened crust as a covering'),\n",
+ " ('crustlike', 'having a hardened crust as a covering'),\n",
+ " ('curmudgeonly', 'brusque and surly and forbidding'),\n",
+ " ('ill-humoured', 'brusque and surly and forbidding'),\n",
+ " ('gruff', 'brusque and surly and forbidding')]},\n",
+ " {'answer': 'crying',\n",
+ " 'hint': 'synonyms for crying',\n",
+ " 'clues': [('insistent', 'demanding attention; ; ; - H.L.Mencken'),\n",
+ " ('rank', 'conspicuously and outrageously bad or reprehensible'),\n",
+ " ('flagrant', 'conspicuously and outrageously bad or reprehensible'),\n",
+ " ('instant', 'demanding attention; ; ; - H.L.Mencken'),\n",
+ " ('clamant', 'demanding attention; ; ; - H.L.Mencken'),\n",
+ " ('egregious', 'conspicuously and outrageously bad or reprehensible'),\n",
+ " ('exigent', 'demanding attention; ; ; - H.L.Mencken'),\n",
+ " ('glaring', 'conspicuously and outrageously bad or reprehensible'),\n",
+ " ('gross', 'conspicuously and outrageously bad or reprehensible')]},\n",
+ " {'answer': 'cryptic',\n",
+ " 'hint': 'synonyms for cryptic',\n",
+ " 'clues': [('sibylline',\n",
+ " 'having a secret or hidden meaning; ; ; - John Gunther'),\n",
+ " ('mystifying', 'of an obscure nature; ; ; ; - Rachel Carson'),\n",
+ " ('deep', 'of an obscure nature; ; ; ; - Rachel Carson'),\n",
+ " ('mysterious', 'of an obscure nature; ; ; ; - Rachel Carson'),\n",
+ " ('kabbalistic', 'having a secret or hidden meaning; ; ; - John Gunther'),\n",
+ " ('inscrutable', 'of an obscure nature; ; ; ; - Rachel Carson'),\n",
+ " ('cryptical', 'having a secret or hidden meaning; ; ; - John Gunther')]},\n",
+ " {'answer': 'cryptical',\n",
+ " 'hint': 'synonyms for cryptical',\n",
+ " 'clues': [('sibylline',\n",
+ " 'having a secret or hidden meaning; ; ; - John Gunther'),\n",
+ " ('mystifying', 'of an obscure nature; ; ; ; - Rachel Carson'),\n",
+ " ('cryptic', 'having a secret or hidden meaning; ; ; - John Gunther'),\n",
+ " ('deep', 'of an obscure nature; ; ; ; - Rachel Carson'),\n",
+ " ('mysterious', 'of an obscure nature; ; ; ; - Rachel Carson'),\n",
+ " ('kabbalistic', 'having a secret or hidden meaning; ; ; - John Gunther'),\n",
+ " ('inscrutable', 'of an obscure nature; ; ; ; - Rachel Carson')]},\n",
+ " {'answer': 'crystal_clear',\n",
+ " 'hint': 'synonyms for crystal clear',\n",
+ " 'clues': [('limpid',\n",
+ " 'transmitting light; able to be seen through with clarity'),\n",
+ " ('lucid',\n",
+ " '(of language) transparently clear; easily understandable; ; ; - Robert Burton'),\n",
+ " ('transparent',\n",
+ " 'transmitting light; able to be seen through with clarity'),\n",
+ " ('perspicuous',\n",
+ " '(of language) transparently clear; easily understandable; ; ; - Robert Burton'),\n",
+ " ('pellucid', 'transmitting light; able to be seen through with clarity'),\n",
+ " ('luculent',\n",
+ " '(of language) transparently clear; easily understandable; ; ; - Robert Burton'),\n",
+ " ('crystalline',\n",
+ " 'transmitting light; able to be seen through with clarity')]},\n",
+ " {'answer': 'crystalline',\n",
+ " 'hint': 'synonyms for crystalline',\n",
+ " 'clues': [('limpid',\n",
+ " 'transmitting light; able to be seen through with clarity'),\n",
+ " ('crystal clear',\n",
+ " 'transmitting light; able to be seen through with clarity'),\n",
+ " ('pellucid', 'transmitting light; able to be seen through with clarity'),\n",
+ " ('lucid', 'transmitting light; able to be seen through with clarity'),\n",
+ " ('transparent',\n",
+ " 'transmitting light; able to be seen through with clarity')]},\n",
+ " {'answer': 'cube-shaped',\n",
+ " 'hint': 'synonyms for cube-shaped',\n",
+ " 'clues': [('cubical', 'shaped like a cube'),\n",
+ " ('cubelike', 'shaped like a cube'),\n",
+ " ('cubiform', 'shaped like a cube'),\n",
+ " ('cuboid', 'shaped like a cube')]},\n",
+ " {'answer': 'cubelike',\n",
+ " 'hint': 'synonyms for cubelike',\n",
+ " 'clues': [('cubical', 'shaped like a cube'),\n",
+ " ('cube-shaped', 'shaped like a cube'),\n",
+ " ('cubiform', 'shaped like a cube'),\n",
+ " ('cuboid', 'shaped like a cube')]},\n",
+ " {'answer': 'cubical',\n",
+ " 'hint': 'synonyms for cubical',\n",
+ " 'clues': [('cubelike', 'shaped like a cube'),\n",
+ " ('cube-shaped', 'shaped like a cube'),\n",
+ " ('cubiform', 'shaped like a cube'),\n",
+ " ('cuboid', 'shaped like a cube')]},\n",
+ " {'answer': 'cubiform',\n",
+ " 'hint': 'synonyms for cubiform',\n",
+ " 'clues': [('cubical', 'shaped like a cube'),\n",
+ " ('cubelike', 'shaped like a cube'),\n",
+ " ('cube-shaped', 'shaped like a cube'),\n",
+ " ('cuboid', 'shaped like a cube')]},\n",
+ " {'answer': 'cuboid',\n",
+ " 'hint': 'synonyms for cuboid',\n",
+ " 'clues': [('cubical', 'shaped like a cube'),\n",
+ " ('cubelike', 'shaped like a cube'),\n",
+ " ('cube-shaped', 'shaped like a cube'),\n",
+ " ('cubiform', 'shaped like a cube'),\n",
+ " ('cuboidal', 'shaped like a cube')]},\n",
+ " {'answer': 'cuboidal',\n",
+ " 'hint': 'synonyms for cuboidal',\n",
+ " 'clues': [('cubical', 'shaped like a cube'),\n",
+ " ('cubelike', 'shaped like a cube'),\n",
+ " ('cube-shaped', 'shaped like a cube'),\n",
+ " ('cubiform', 'shaped like a cube'),\n",
+ " ('cuboid', 'shaped like a cube')]},\n",
+ " {'answer': 'culpable',\n",
+ " 'hint': 'synonyms for culpable',\n",
+ " 'clues': [('blameworthy',\n",
+ " 'deserving blame or censure as being wrong or evil or injurious'),\n",
+ " ('censurable',\n",
+ " 'deserving blame or censure as being wrong or evil or injurious'),\n",
+ " ('blamable',\n",
+ " 'deserving blame or censure as being wrong or evil or injurious'),\n",
+ " ('blameful',\n",
+ " 'deserving blame or censure as being wrong or evil or injurious')]},\n",
+ " {'answer': 'cultivated',\n",
+ " 'hint': 'synonyms for cultivated',\n",
+ " 'clues': [('polite', 'marked by refinement in taste and manners'),\n",
+ " ('genteel', 'marked by refinement in taste and manners'),\n",
+ " ('civilised', 'marked by refinement in taste and manners'),\n",
+ " ('cultured', 'marked by refinement in taste and manners')]},\n",
+ " {'answer': 'cultured',\n",
+ " 'hint': 'synonyms for cultured',\n",
+ " 'clues': [('polite', 'marked by refinement in taste and manners'),\n",
+ " ('genteel', 'marked by refinement in taste and manners'),\n",
+ " ('civilised', 'marked by refinement in taste and manners'),\n",
+ " ('cultivated', 'marked by refinement in taste and manners')]},\n",
+ " {'answer': 'cumbersome',\n",
+ " 'hint': 'synonyms for cumbersome',\n",
+ " 'clues': [('ill-chosen', 'not elegant or graceful in expression'),\n",
+ " ('awkward', 'not elegant or graceful in expression'),\n",
+ " ('inept', 'not elegant or graceful in expression'),\n",
+ " ('cumbrous',\n",
+ " 'difficult to handle or use especially because of size or weight'),\n",
+ " ('clumsy', 'not elegant or graceful in expression'),\n",
+ " ('inapt', 'not elegant or graceful in expression')]},\n",
+ " {'answer': 'cunning',\n",
+ " 'hint': 'synonyms for cunning',\n",
+ " 'clues': [('tricky', 'marked by skill in deception'),\n",
+ " ('cute',\n",
+ " 'attractive especially by means of smallness or prettiness or quaintness'),\n",
+ " ('knavish', 'marked by skill in deception'),\n",
+ " ('sly', 'marked by skill in deception'),\n",
+ " ('slick', 'marked by skill in deception'),\n",
+ " ('wily', 'marked by skill in deception'),\n",
+ " ('foxy', 'marked by skill in deception'),\n",
+ " ('clever', 'showing inventiveness and skill'),\n",
+ " ('dodgy', 'marked by skill in deception'),\n",
+ " ('guileful', 'marked by skill in deception'),\n",
+ " ('ingenious', 'showing inventiveness and skill'),\n",
+ " ('crafty', 'marked by skill in deception')]},\n",
+ " {'answer': 'curative',\n",
+ " 'hint': 'synonyms for curative',\n",
+ " 'clues': [('healing', 'tending to cure or restore to health'),\n",
+ " ('therapeutic', 'tending to cure or restore to health'),\n",
+ " ('remedial', 'tending to cure or restore to health'),\n",
+ " ('sanative', 'tending to cure or restore to health'),\n",
+ " ('alterative', 'tending to cure or restore to health')]},\n",
+ " {'answer': 'cured',\n",
+ " 'hint': 'synonyms for cured',\n",
+ " 'clues': [('corned', '(used especially of meat) cured in brine'),\n",
+ " ('recovered', 'freed from illness or injury; ; ; ; - Normon Cameron'),\n",
+ " ('healed', 'freed from illness or injury; ; ; ; - Normon Cameron'),\n",
+ " ('vulcanised',\n",
+ " '(used of rubber) treated by a chemical or physical process to improve its properties (hardness and strength and odor and elasticity)'),\n",
+ " ('aged',\n",
+ " \"(used of tobacco) aging as a preservative process (`aged' is pronounced as one syllable)\")]},\n",
+ " {'answer': 'curious',\n",
+ " 'hint': 'synonyms for curious',\n",
+ " 'clues': [('singular', 'beyond or deviating from the usual or expected'),\n",
+ " ('queer', 'beyond or deviating from the usual or expected'),\n",
+ " ('peculiar', 'beyond or deviating from the usual or expected'),\n",
+ " ('odd', 'beyond or deviating from the usual or expected'),\n",
+ " ('rummy', 'beyond or deviating from the usual or expected'),\n",
+ " ('funny', 'beyond or deviating from the usual or expected'),\n",
+ " ('rum', 'beyond or deviating from the usual or expected')]},\n",
+ " {'answer': 'cursed',\n",
+ " 'hint': 'synonyms for cursed',\n",
+ " 'clues': [('unsaved', 'in danger of the eternal punishment of Hell'),\n",
+ " ('doomed', 'in danger of the eternal punishment of Hell'),\n",
+ " ('unredeemed', 'in danger of the eternal punishment of Hell'),\n",
+ " ('damned', 'in danger of the eternal punishment of Hell'),\n",
+ " ('curst', 'deserving a curse; sometimes used as an intensifier')]},\n",
+ " {'answer': 'curt',\n",
+ " 'hint': 'synonyms for curt',\n",
+ " 'clues': [('brusque', 'marked by rude or peremptory shortness'),\n",
+ " ('brusk', 'marked by rude or peremptory shortness'),\n",
+ " ('short', 'marked by rude or peremptory shortness'),\n",
+ " ('laconic', 'brief and to the point; effectively cut short'),\n",
+ " ('crisp', 'brief and to the point; effectively cut short'),\n",
+ " ('terse', 'brief and to the point; effectively cut short')]},\n",
+ " {'answer': 'curvaceous',\n",
+ " 'hint': 'synonyms for curvaceous',\n",
+ " 'clues': [('curvy',\n",
+ " \"(of a woman's body) having a large bosom and pleasing curves\"),\n",
+ " ('stacked',\n",
+ " \"(of a woman's body) having a large bosom and pleasing curves\"),\n",
+ " ('sonsy', \"(of a woman's body) having a large bosom and pleasing curves\"),\n",
+ " ('voluptuous',\n",
+ " \"(of a woman's body) having a large bosom and pleasing curves\"),\n",
+ " ('buxom', \"(of a woman's body) having a large bosom and pleasing curves\"),\n",
+ " ('busty', \"(of a woman's body) having a large bosom and pleasing curves\"),\n",
+ " ('full-bosomed',\n",
+ " \"(of a woman's body) having a large bosom and pleasing curves\"),\n",
+ " ('bosomy',\n",
+ " \"(of a woman's body) having a large bosom and pleasing curves\"),\n",
+ " ('sonsie',\n",
+ " \"(of a woman's body) having a large bosom and pleasing curves\"),\n",
+ " ('well-endowed',\n",
+ " \"(of a woman's body) having a large bosom and pleasing curves\")]},\n",
+ " {'answer': 'curvy',\n",
+ " 'hint': 'synonyms for curvy',\n",
+ " 'clues': [('sonsie',\n",
+ " \"(of a woman's body) having a large bosom and pleasing curves\"),\n",
+ " ('stacked',\n",
+ " \"(of a woman's body) having a large bosom and pleasing curves\"),\n",
+ " ('sonsy', \"(of a woman's body) having a large bosom and pleasing curves\"),\n",
+ " ('busty', \"(of a woman's body) having a large bosom and pleasing curves\"),\n",
+ " ('full-bosomed',\n",
+ " \"(of a woman's body) having a large bosom and pleasing curves\"),\n",
+ " ('buxom', \"(of a woman's body) having a large bosom and pleasing curves\"),\n",
+ " ('voluptuous',\n",
+ " \"(of a woman's body) having a large bosom and pleasing curves\"),\n",
+ " ('curvaceous',\n",
+ " \"(of a woman's body) having a large bosom and pleasing curves\"),\n",
+ " ('bosomy',\n",
+ " \"(of a woman's body) having a large bosom and pleasing curves\"),\n",
+ " ('curvey', 'having curves'),\n",
+ " ('well-endowed',\n",
+ " \"(of a woman's body) having a large bosom and pleasing curves\")]},\n",
+ " {'answer': 'cuspated',\n",
+ " 'hint': 'synonyms for cuspated',\n",
+ " 'clues': [('cuspidated', 'having cusps or points'),\n",
+ " ('cusped', 'having cusps or points'),\n",
+ " ('cuspate', 'having cusps or points'),\n",
+ " ('cuspidal', 'having cusps or points')]},\n",
+ " {'answer': 'cut',\n",
+ " 'hint': 'synonyms for cut',\n",
+ " 'clues': [('thinned', 'mixed with water'),\n",
+ " ('trimmed', 'made neat and tidy by trimming'),\n",
+ " ('weakened', 'mixed with water'),\n",
+ " ('gelded', '(of a male animal) having the testicles removed'),\n",
+ " ('mown',\n",
+ " '(used of grass or vegetation) cut down with a hand implement or machine'),\n",
+ " ('shortened', 'with parts removed'),\n",
+ " ('emasculated', '(of a male animal) having the testicles removed'),\n",
+ " ('slashed', '(used of rates or prices) reduced usually sharply')]},\n",
+ " {'answer': 'cutting',\n",
+ " 'hint': 'synonyms for cutting',\n",
+ " 'clues': [('bleak', 'unpleasantly cold and damp'),\n",
+ " ('edged', '(of speech) harsh or hurtful in tone or character'),\n",
+ " ('lancinate', 'painful as if caused by a sharp instrument'),\n",
+ " ('knifelike', 'painful as if caused by a sharp instrument'),\n",
+ " ('keen', 'painful as if caused by a sharp instrument'),\n",
+ " ('stabbing', 'painful as if caused by a sharp instrument'),\n",
+ " ('raw', 'unpleasantly cold and damp'),\n",
+ " ('stinging', '(of speech) harsh or hurtful in tone or character'),\n",
+ " ('lancinating', 'painful as if caused by a sharp instrument'),\n",
+ " ('piercing', 'painful as if caused by a sharp instrument')]},\n",
+ " {'answer': 'daft',\n",
+ " 'hint': 'synonyms for daft',\n",
+ " 'clues': [('crackers', 'informal or slang terms for mentally irregular'),\n",
+ " ('nuts', 'informal or slang terms for mentally irregular'),\n",
+ " ('loony', 'informal or slang terms for mentally irregular'),\n",
+ " ('dotty', 'informal or slang terms for mentally irregular'),\n",
+ " ('batty', 'informal or slang terms for mentally irregular'),\n",
+ " ('cracked', 'informal or slang terms for mentally irregular'),\n",
+ " ('balmy', 'informal or slang terms for mentally irregular'),\n",
+ " ('bats', 'informal or slang terms for mentally irregular'),\n",
+ " ('barmy', 'informal or slang terms for mentally irregular'),\n",
+ " ('wacky', 'informal or slang terms for mentally irregular'),\n",
+ " ('loco', 'informal or slang terms for mentally irregular'),\n",
+ " ('bonkers', 'informal or slang terms for mentally irregular'),\n",
+ " ('nutty', 'informal or slang terms for mentally irregular'),\n",
+ " ('haywire', 'informal or slang terms for mentally irregular'),\n",
+ " ('buggy', 'informal or slang terms for mentally irregular'),\n",
+ " ('kookie', 'informal or slang terms for mentally irregular'),\n",
+ " ('fruity', 'informal or slang terms for mentally irregular'),\n",
+ " ('round the bend', 'informal or slang terms for mentally irregular'),\n",
+ " ('kooky', 'informal or slang terms for mentally irregular'),\n",
+ " ('loopy', 'informal or slang terms for mentally irregular')]},\n",
+ " {'answer': 'daily',\n",
+ " 'hint': 'synonyms for daily',\n",
+ " 'clues': [('day-to-day', 'of or belonging to or occurring every day'),\n",
+ " ('day-by-day', 'of or belonging to or occurring every day'),\n",
+ " ('day-after-day', 'of or belonging to or occurring every day'),\n",
+ " ('everyday', 'appropriate for ordinary or routine occasions'),\n",
+ " ('casual', 'appropriate for ordinary or routine occasions')]},\n",
+ " {'answer': 'dainty',\n",
+ " 'hint': 'synonyms for dainty',\n",
+ " 'clues': [('twee', 'affectedly dainty or refined'),\n",
+ " ('niminy-piminy', 'affectedly dainty or refined'),\n",
+ " ('nice', 'excessively fastidious and easily disgusted'),\n",
+ " ('squeamish', 'excessively fastidious and easily disgusted'),\n",
+ " ('mincing', 'affectedly dainty or refined'),\n",
+ " ('prissy', 'excessively fastidious and easily disgusted'),\n",
+ " ('exquisite', 'delicately beautiful'),\n",
+ " ('overnice', 'excessively fastidious and easily disgusted'),\n",
+ " ('prim', 'affectedly dainty or refined')]},\n",
+ " {'answer': 'damaging',\n",
+ " 'hint': 'synonyms for damaging',\n",
+ " 'clues': [('prejudicious',\n",
+ " \"(sometimes followed by `to') causing harm or injury\"),\n",
+ " ('negative',\n",
+ " 'designed or tending to discredit, especially without positive or helpful suggestions'),\n",
+ " ('prejudicial', \"(sometimes followed by `to') causing harm or injury\"),\n",
+ " ('detrimental', \"(sometimes followed by `to') causing harm or injury\")]},\n",
+ " {'answer': 'damn',\n",
+ " 'hint': 'synonyms for damn',\n",
+ " 'clues': [('goddamn', 'used as expletives'),\n",
+ " ('deuced', 'expletives used informally as intensifiers'),\n",
+ " ('blasted', 'expletives used informally as intensifiers'),\n",
+ " ('blessed', 'expletives used informally as intensifiers'),\n",
+ " ('blamed', 'expletives used informally as intensifiers'),\n",
+ " ('darned', 'expletives used informally as intensifiers'),\n",
+ " ('damned', 'expletives used informally as intensifiers'),\n",
+ " ('infernal', 'expletives used informally as intensifiers')]},\n",
+ " {'answer': 'damned',\n",
+ " 'hint': 'synonyms for damned',\n",
+ " 'clues': [('deuced', 'expletives used informally as intensifiers'),\n",
+ " ('goddam', 'expletives used informally as intensifiers'),\n",
+ " ('blasted', 'expletives used informally as intensifiers'),\n",
+ " ('blessed', 'expletives used informally as intensifiers'),\n",
+ " ('goddamned', 'expletives used informally as intensifiers'),\n",
+ " ('unredeemed', 'in danger of the eternal punishment of Hell'),\n",
+ " ('unsaved', 'in danger of the eternal punishment of Hell'),\n",
+ " ('blamed', 'expletives used informally as intensifiers'),\n",
+ " ('darned', 'expletives used informally as intensifiers'),\n",
+ " ('damn', 'expletives used informally as intensifiers'),\n",
+ " ('doomed', 'in danger of the eternal punishment of Hell'),\n",
+ " ('cursed', 'in danger of the eternal punishment of Hell'),\n",
+ " ('infernal', 'expletives used informally as intensifiers')]},\n",
+ " {'answer': 'dandy',\n",
+ " 'hint': 'synonyms for dandy',\n",
+ " 'clues': [('smashing', 'very good'),\n",
+ " ('not bad', 'very good'),\n",
+ " ('swell', 'very good'),\n",
+ " ('keen', 'very good'),\n",
+ " ('nifty', 'very good'),\n",
+ " ('peachy', 'very good'),\n",
+ " ('cracking', 'very good'),\n",
+ " ('slap-up', 'very good'),\n",
+ " ('bang-up', 'very good'),\n",
+ " ('corking', 'very good'),\n",
+ " ('bully', 'very good'),\n",
+ " ('neat', 'very good'),\n",
+ " ('groovy', 'very good'),\n",
+ " ('great', 'very good')]},\n",
+ " {'answer': 'dangerous',\n",
+ " 'hint': 'synonyms for dangerous',\n",
+ " 'clues': [('unsafe',\n",
+ " 'involving or causing danger or risk; liable to hurt or harm'),\n",
+ " ('life-threatening', 'causing fear or anxiety by threatening great harm'),\n",
+ " ('serious', 'causing fear or anxiety by threatening great harm'),\n",
+ " ('grave', 'causing fear or anxiety by threatening great harm'),\n",
+ " ('grievous', 'causing fear or anxiety by threatening great harm'),\n",
+ " ('severe', 'causing fear or anxiety by threatening great harm')]},\n",
+ " {'answer': 'dapper',\n",
+ " 'hint': 'synonyms for dapper',\n",
+ " 'clues': [('snappy', 'marked by up-to-dateness in dress and manners'),\n",
+ " ('dashing', 'marked by up-to-dateness in dress and manners'),\n",
+ " ('natty', 'marked by up-to-dateness in dress and manners'),\n",
+ " ('spiffy', 'marked by up-to-dateness in dress and manners'),\n",
+ " ('spruce', 'marked by up-to-dateness in dress and manners'),\n",
+ " ('raffish', 'marked by up-to-dateness in dress and manners'),\n",
+ " ('rakish', 'marked by up-to-dateness in dress and manners'),\n",
+ " ('jaunty', 'marked by up-to-dateness in dress and manners')]},\n",
+ " {'answer': 'daring',\n",
+ " 'hint': 'synonyms for daring',\n",
+ " 'clues': [('venturesome', 'disposed to venture or take risks'),\n",
+ " ('audacious', 'disposed to venture or take risks'),\n",
+ " ('avant-garde', 'radically new or original'),\n",
+ " ('venturous', 'disposed to venture or take risks')]},\n",
+ " {'answer': 'dark',\n",
+ " 'hint': 'synonyms for dark',\n",
+ " 'clues': [('sinister',\n",
+ " 'stemming from evil characteristics or forces; wicked or dishonorable; ; ; ; ; ; ; -Thomas Hardy'),\n",
+ " ('saturnine', 'showing a brooding ill humor; ; ; ; ; ; - Bruce Bliven'),\n",
+ " ('drab', 'causing dejection'),\n",
+ " ('gloomy', 'causing dejection'),\n",
+ " ('blue', 'causing dejection'),\n",
+ " ('coloured', 'having skin rich in melanin pigments'),\n",
+ " ('dour', 'showing a brooding ill humor; ; ; ; ; ; - Bruce Bliven'),\n",
+ " ('moody', 'showing a brooding ill humor; ; ; ; ; ; - Bruce Bliven'),\n",
+ " ('morose', 'showing a brooding ill humor; ; ; ; ; ; - Bruce Bliven'),\n",
+ " ('glowering', 'showing a brooding ill humor; ; ; ; ; ; - Bruce Bliven'),\n",
+ " ('drear', 'causing dejection'),\n",
+ " ('glum', 'showing a brooding ill humor; ; ; ; ; ; - Bruce Bliven'),\n",
+ " ('disconsolate', 'causing dejection'),\n",
+ " ('dismal', 'causing dejection'),\n",
+ " ('obscure', 'marked by difficulty of style or expression'),\n",
+ " ('grim', 'causing dejection'),\n",
+ " ('dark-skinned', 'having skin rich in melanin pigments'),\n",
+ " ('black',\n",
+ " 'stemming from evil characteristics or forces; wicked or dishonorable; ; ; ; ; ; ; -Thomas Hardy'),\n",
+ " ('sorry', 'causing dejection'),\n",
+ " ('sour', 'showing a brooding ill humor; ; ; ; ; ; - Bruce Bliven'),\n",
+ " ('non-white', 'having skin rich in melanin pigments'),\n",
+ " ('sullen', 'showing a brooding ill humor; ; ; ; ; ; - Bruce Bliven'),\n",
+ " ('benighted', 'lacking enlightenment or knowledge or culture'),\n",
+ " ('dingy', 'causing dejection')]},\n",
+ " {'answer': 'dark-skinned',\n",
+ " 'hint': 'synonyms for dark-skinned',\n",
+ " 'clues': [('non-white', 'having skin rich in melanin pigments'),\n",
+ " ('coloured', 'having skin rich in melanin pigments'),\n",
+ " ('swarthy', 'naturally having skin of a dark color'),\n",
+ " ('dusky', 'naturally having skin of a dark color'),\n",
+ " ('swart', 'naturally having skin of a dark color'),\n",
+ " ('dark', 'having skin rich in melanin pigments')]},\n",
+ " {'answer': 'darned',\n",
+ " 'hint': 'synonyms for darned',\n",
+ " 'clues': [('deuced', 'expletives used informally as intensifiers'),\n",
+ " ('goddam', 'expletives used informally as intensifiers'),\n",
+ " ('blasted', 'expletives used informally as intensifiers'),\n",
+ " ('blessed', 'expletives used informally as intensifiers'),\n",
+ " ('goddamned', 'expletives used informally as intensifiers'),\n",
+ " ('blamed', 'expletives used informally as intensifiers'),\n",
+ " ('damn', 'expletives used informally as intensifiers'),\n",
+ " ('damned', 'expletives used informally as intensifiers'),\n",
+ " ('infernal', 'expletives used informally as intensifiers')]},\n",
+ " {'answer': 'dashing',\n",
+ " 'hint': 'synonyms for dashing',\n",
+ " 'clues': [('snappy', 'marked by up-to-dateness in dress and manners'),\n",
+ " ('jaunty', 'marked by up-to-dateness in dress and manners'),\n",
+ " ('dapper', 'marked by up-to-dateness in dress and manners'),\n",
+ " ('natty', 'marked by up-to-dateness in dress and manners'),\n",
+ " ('spiffy', 'marked by up-to-dateness in dress and manners'),\n",
+ " ('spruce', 'marked by up-to-dateness in dress and manners'),\n",
+ " ('raffish', 'marked by up-to-dateness in dress and manners'),\n",
+ " ('gallant', 'lively and spirited'),\n",
+ " ('rakish', 'marked by up-to-dateness in dress and manners')]},\n",
+ " {'answer': 'dateless',\n",
+ " 'hint': 'synonyms for dateless',\n",
+ " 'clues': [('undated', 'not bearing a date'),\n",
+ " ('timeless', 'unaffected by time'),\n",
+ " ('endless', 'having no known beginning and presumably no end'),\n",
+ " ('sempiternal', 'having no known beginning and presumably no end')]},\n",
+ " {'answer': 'dauntless',\n",
+ " 'hint': 'synonyms for dauntless',\n",
+ " 'clues': [('brave', 'invulnerable to fear or intimidation'),\n",
+ " ('hardy', 'invulnerable to fear or intimidation'),\n",
+ " ('fearless', 'invulnerable to fear or intimidation'),\n",
+ " ('audacious', 'invulnerable to fear or intimidation'),\n",
+ " ('unfearing', 'invulnerable to fear or intimidation'),\n",
+ " ('intrepid', 'invulnerable to fear or intimidation')]},\n",
+ " {'answer': 'dazed',\n",
+ " 'hint': 'synonyms for dazed',\n",
+ " 'clues': [('foggy',\n",
+ " 'stunned or confused and slow to react (as from blows or drunkenness or exhaustion)'),\n",
+ " ('groggy',\n",
+ " 'stunned or confused and slow to react (as from blows or drunkenness or exhaustion)'),\n",
+ " ('logy',\n",
+ " 'stunned or confused and slow to react (as from blows or drunkenness or exhaustion)'),\n",
+ " ('stupid',\n",
+ " 'in a state of mental numbness especially as resulting from shock'),\n",
+ " ('stupefied',\n",
+ " 'in a state of mental numbness especially as resulting from shock'),\n",
+ " ('stuporous',\n",
+ " 'stunned or confused and slow to react (as from blows or drunkenness or exhaustion)'),\n",
+ " ('stunned',\n",
+ " 'in a state of mental numbness especially as resulting from shock')]},\n",
+ " {'answer': 'dazzling',\n",
+ " 'hint': 'synonyms for dazzling',\n",
+ " 'clues': [('blinding', 'shining intensely'),\n",
+ " ('glary', 'shining intensely'),\n",
+ " ('glaring', 'shining intensely'),\n",
+ " ('fulgurant',\n",
+ " 'amazingly impressive; suggestive of the flashing of lightning; ; - Janet Flanner; - Idwal Jones'),\n",
+ " ('blazing', 'shining intensely'),\n",
+ " ('fulgurous',\n",
+ " 'amazingly impressive; suggestive of the flashing of lightning; ; - Janet Flanner; - Idwal Jones'),\n",
+ " ('fulgent', 'shining intensely'),\n",
+ " ('eye-popping',\n",
+ " 'amazingly impressive; suggestive of the flashing of lightning; ; - Janet Flanner; - Idwal Jones')]},\n",
+ " {'answer': 'dead',\n",
+ " 'hint': 'synonyms for dead',\n",
+ " 'clues': [('stagnant', 'not circulating or flowing'),\n",
+ " ('drained', 'drained of electric charge; discharged'),\n",
+ " ('idle', 'not yielding a return'),\n",
+ " ('all in', 'very tired'),\n",
+ " ('bushed', 'very tired'),\n",
+ " ('deadened', 'devoid of physical sensation; numb'),\n",
+ " ('utter', 'complete'),\n",
+ " ('beat', 'very tired'),\n",
+ " ('numb',\n",
+ " \"(followed by `to') not showing human feeling or sensitivity; unresponsive\")]},\n",
+ " {'answer': 'deadening',\n",
+ " 'hint': 'synonyms for deadening',\n",
+ " 'clues': [('slow',\n",
+ " 'so lacking in interest as to cause mental weariness; ; ; ; ; ; - Edmund Burke; ; - Mark Twain'),\n",
+ " ('tiresome',\n",
+ " 'so lacking in interest as to cause mental weariness; ; ; ; ; ; - Edmund Burke; ; - Mark Twain'),\n",
+ " ('irksome',\n",
+ " 'so lacking in interest as to cause mental weariness; ; ; ; ; ; - Edmund Burke; ; - Mark Twain'),\n",
+ " ('boring',\n",
+ " 'so lacking in interest as to cause mental weariness; ; ; ; ; ; - Edmund Burke; ; - Mark Twain'),\n",
+ " ('wearisome',\n",
+ " 'so lacking in interest as to cause mental weariness; ; ; ; ; ; - Edmund Burke; ; - Mark Twain'),\n",
+ " ('tedious',\n",
+ " 'so lacking in interest as to cause mental weariness; ; ; ; ; ; - Edmund Burke; ; - Mark Twain'),\n",
+ " ('ho-hum',\n",
+ " 'so lacking in interest as to cause mental weariness; ; ; ; ; ; - Edmund Burke; ; - Mark Twain'),\n",
+ " ('dull',\n",
+ " 'so lacking in interest as to cause mental weariness; ; ; ; ; ; - Edmund Burke; ; - Mark Twain')]},\n",
+ " {'answer': 'deadly',\n",
+ " 'hint': 'synonyms for deadly',\n",
+ " 'clues': [('pernicious', 'exceedingly harmful'),\n",
+ " ('mortal', 'causing or capable of causing death'),\n",
+ " ('pestilent', 'exceedingly harmful'),\n",
+ " ('baneful', 'exceedingly harmful'),\n",
+ " ('virulent', 'extremely poisonous or injurious; producing venom'),\n",
+ " ('venomous', 'extremely poisonous or injurious; producing venom'),\n",
+ " ('deathly', 'causing or capable of causing death'),\n",
+ " ('lethal', 'of an instrument of certain death')]},\n",
+ " {'answer': 'deadpan',\n",
+ " 'hint': 'synonyms for deadpan',\n",
+ " 'clues': [('unexpressive', 'deliberately impassive in manner'),\n",
+ " ('impassive', 'deliberately impassive in manner'),\n",
+ " ('expressionless', 'deliberately impassive in manner'),\n",
+ " ('poker-faced', 'deliberately impassive in manner')]},\n",
+ " {'answer': 'dealt_out',\n",
+ " 'hint': 'synonyms for dealt out',\n",
+ " 'clues': [('parceled out', 'given out in portions'),\n",
+ " ('doled out', 'given out in portions'),\n",
+ " ('meted out', 'given out in portions'),\n",
+ " ('apportioned', 'given out in portions')]},\n",
+ " {'answer': 'dear',\n",
+ " 'hint': 'synonyms for dear',\n",
+ " 'clues': [('earnest', 'earnest'),\n",
+ " ('high-priced', 'having a high price'),\n",
+ " ('near', 'with or in a close or intimate relationship'),\n",
+ " ('devout', 'earnest'),\n",
+ " ('heartfelt', 'earnest'),\n",
+ " ('beloved', 'dearly loved'),\n",
+ " ('good', 'with or in a close or intimate relationship'),\n",
+ " ('pricy', 'having a high price'),\n",
+ " ('darling', 'dearly loved'),\n",
+ " ('costly', 'having a high price')]},\n",
+ " {'answer': 'debased',\n",
+ " 'hint': 'synonyms for debased',\n",
+ " 'clues': [('devalued', 'lowered in value'),\n",
+ " ('adulterated', 'mixed with impurities'),\n",
+ " ('degraded', 'lowered in value'),\n",
+ " ('corrupted', 'ruined in character or quality'),\n",
+ " ('vitiated', 'ruined in character or quality')]},\n",
+ " {'answer': 'debatable',\n",
+ " 'hint': 'synonyms for debatable',\n",
+ " 'clues': [('problematic', 'open to doubt or debate'),\n",
+ " ('arguable', 'open to argument or debate'),\n",
+ " ('disputable', 'capable of being disproved'),\n",
+ " ('moot', 'open to argument or debate')]},\n",
+ " {'answer': 'debauched',\n",
+ " 'hint': 'synonyms for debauched',\n",
+ " 'clues': [('libertine', 'unrestrained by convention or morality'),\n",
+ " ('riotous', 'unrestrained by convention or morality'),\n",
+ " ('dissolute', 'unrestrained by convention or morality'),\n",
+ " ('degenerate', 'unrestrained by convention or morality'),\n",
+ " ('degraded', 'unrestrained by convention or morality'),\n",
+ " ('profligate', 'unrestrained by convention or morality'),\n",
+ " ('dissipated', 'unrestrained by convention or morality'),\n",
+ " ('fast', 'unrestrained by convention or morality')]},\n",
+ " {'answer': 'debile',\n",
+ " 'hint': 'synonyms for debile',\n",
+ " 'clues': [('rickety', 'lacking bodily or muscular strength or vitality'),\n",
+ " ('decrepit', 'lacking bodily or muscular strength or vitality'),\n",
+ " ('sapless', 'lacking bodily or muscular strength or vitality'),\n",
+ " ('infirm', 'lacking bodily or muscular strength or vitality'),\n",
+ " ('weak', 'lacking bodily or muscular strength or vitality'),\n",
+ " ('feeble', 'lacking bodily or muscular strength or vitality')]},\n",
+ " {'answer': 'debonair',\n",
+ " 'hint': 'synonyms for debonair',\n",
+ " 'clues': [('suave', 'having a sophisticated charm'),\n",
+ " ('debonnaire', 'having a sophisticated charm'),\n",
+ " ('chipper',\n",
+ " 'having a cheerful, lively, and self-confident air; - Frances G. Patton; - H.M.Reynolds'),\n",
+ " ('jaunty',\n",
+ " 'having a cheerful, lively, and self-confident air; - Frances G. Patton; - H.M.Reynolds')]},\n",
+ " {'answer': 'debonaire',\n",
+ " 'hint': 'synonyms for debonaire',\n",
+ " 'clues': [('suave', 'having a sophisticated charm'),\n",
+ " ('debonair',\n",
+ " 'having a cheerful, lively, and self-confident air; - Frances G. Patton; - H.M.Reynolds'),\n",
+ " ('chipper',\n",
+ " 'having a cheerful, lively, and self-confident air; - Frances G. Patton; - H.M.Reynolds'),\n",
+ " ('jaunty',\n",
+ " 'having a cheerful, lively, and self-confident air; - Frances G. Patton; - H.M.Reynolds')]},\n",
+ " {'answer': 'deceased',\n",
+ " 'hint': 'synonyms for deceased',\n",
+ " 'clues': [('departed', 'dead'),\n",
+ " ('gone', 'dead'),\n",
+ " ('at peace', 'dead'),\n",
+ " ('at rest', 'dead'),\n",
+ " ('asleep', 'dead')]},\n",
+ " {'answer': 'deceitful',\n",
+ " 'hint': 'synonyms for deceitful',\n",
+ " 'clues': [('ambidextrous',\n",
+ " 'marked by deliberate deceptiveness especially by pretending one set of feelings and acting under the influence of another; - Israel Zangwill; ; - W.M.Thackeray'),\n",
+ " ('double-tongued',\n",
+ " 'marked by deliberate deceptiveness especially by pretending one set of feelings and acting under the influence of another; - Israel Zangwill; ; - W.M.Thackeray'),\n",
+ " ('double-dealing',\n",
+ " 'marked by deliberate deceptiveness especially by pretending one set of feelings and acting under the influence of another; - Israel Zangwill; ; - W.M.Thackeray'),\n",
+ " ('fallacious', 'intended to deceive; ; ; - S.T.Coleridge'),\n",
+ " ('fraudulent', 'intended to deceive; ; ; - S.T.Coleridge'),\n",
+ " ('double-faced',\n",
+ " 'marked by deliberate deceptiveness especially by pretending one set of feelings and acting under the influence of another; - Israel Zangwill; ; - W.M.Thackeray'),\n",
+ " ('duplicitous',\n",
+ " 'marked by deliberate deceptiveness especially by pretending one set of feelings and acting under the influence of another; - Israel Zangwill; ; - W.M.Thackeray'),\n",
+ " ('two-faced',\n",
+ " 'marked by deliberate deceptiveness especially by pretending one set of feelings and acting under the influence of another; - Israel Zangwill; ; - W.M.Thackeray')]},\n",
+ " {'answer': 'decent',\n",
+ " 'hint': 'synonyms for decent',\n",
+ " 'clues': [('adequate', 'sufficient for the purpose'),\n",
+ " ('comme il faut', 'according with custom or propriety'),\n",
+ " ('seemly', 'according with custom or propriety'),\n",
+ " ('comely', 'according with custom or propriety'),\n",
+ " ('becoming', 'according with custom or propriety'),\n",
+ " ('decorous', 'according with custom or propriety'),\n",
+ " ('nice', 'socially or conventionally correct; refined or virtuous'),\n",
+ " ('enough', 'sufficient for the purpose')]},\n",
+ " {'answer': 'declamatory',\n",
+ " 'hint': 'synonyms for declamatory',\n",
+ " 'clues': [('turgid', 'ostentatiously lofty in style'),\n",
+ " ('large', 'ostentatiously lofty in style'),\n",
+ " ('bombastic', 'ostentatiously lofty in style'),\n",
+ " ('tumid', 'ostentatiously lofty in style'),\n",
+ " ('orotund', 'ostentatiously lofty in style')]},\n",
+ " {'answer': 'decorous',\n",
+ " 'hint': 'synonyms for decorous',\n",
+ " 'clues': [('comme il faut', 'according with custom or propriety'),\n",
+ " ('seemly', 'according with custom or propriety'),\n",
+ " ('comely', 'according with custom or propriety'),\n",
+ " ('becoming', 'according with custom or propriety'),\n",
+ " ('decent', 'according with custom or propriety')]},\n",
+ " {'answer': 'decrepit',\n",
+ " 'hint': 'synonyms for decrepit',\n",
+ " 'clues': [('rickety', 'lacking bodily or muscular strength or vitality'),\n",
+ " ('flea-bitten', 'worn and broken down by hard use'),\n",
+ " ('debile', 'lacking bodily or muscular strength or vitality'),\n",
+ " ('sapless', 'lacking bodily or muscular strength or vitality'),\n",
+ " ('creaky', 'worn and broken down by hard use'),\n",
+ " ('run-down', 'worn and broken down by hard use'),\n",
+ " ('weakly', 'lacking bodily or muscular strength or vitality'),\n",
+ " ('derelict', 'worn and broken down by hard use'),\n",
+ " ('woebegone', 'worn and broken down by hard use'),\n",
+ " ('infirm', 'lacking bodily or muscular strength or vitality'),\n",
+ " ('feeble', 'lacking bodily or muscular strength or vitality')]},\n",
+ " {'answer': 'deep',\n",
+ " 'hint': 'synonyms for deep',\n",
+ " 'clues': [('bass', 'having or denoting a low vocal or instrumental range'),\n",
+ " ('thick', '(of darkness) very intense'),\n",
+ " ('rich', 'strong; intense'),\n",
+ " ('mystifying', 'of an obscure nature; ; ; ; - Rachel Carson'),\n",
+ " ('cryptic', 'of an obscure nature; ; ; ; - Rachel Carson'),\n",
+ " ('abstruse',\n",
+ " 'difficult to penetrate; incomprehensible to one of ordinary understanding or knowledge'),\n",
+ " ('mysterious', 'of an obscure nature; ; ; ; - Rachel Carson'),\n",
+ " ('recondite',\n",
+ " 'difficult to penetrate; incomprehensible to one of ordinary understanding or knowledge'),\n",
+ " ('inscrutable', 'of an obscure nature; ; ; ; - Rachel Carson')]},\n",
+ " {'answer': 'defamatory',\n",
+ " 'hint': 'synonyms for defamatory',\n",
+ " 'clues': [('libelous',\n",
+ " '(used of statements) harmful and often untrue; tending to discredit or malign'),\n",
+ " ('denigratory',\n",
+ " '(used of statements) harmful and often untrue; tending to discredit or malign'),\n",
+ " ('denigrative',\n",
+ " '(used of statements) harmful and often untrue; tending to discredit or malign'),\n",
+ " ('denigrating',\n",
+ " '(used of statements) harmful and often untrue; tending to discredit or malign'),\n",
+ " ('slanderous',\n",
+ " '(used of statements) harmful and often untrue; tending to discredit or malign'),\n",
+ " ('calumniatory',\n",
+ " '(used of statements) harmful and often untrue; tending to discredit or malign'),\n",
+ " ('calumnious',\n",
+ " '(used of statements) harmful and often untrue; tending to discredit or malign')]},\n",
+ " {'answer': 'defeated',\n",
+ " 'hint': 'synonyms for defeated',\n",
+ " 'clues': [('disappointed', 'disappointingly unsuccessful'),\n",
+ " ('thwarted', 'disappointingly unsuccessful'),\n",
+ " ('frustrated', 'disappointingly unsuccessful'),\n",
+ " ('discomfited', 'disappointingly unsuccessful'),\n",
+ " ('foiled', 'disappointingly unsuccessful')]},\n",
+ " {'answer': 'deficient',\n",
+ " 'hint': 'synonyms for deficient',\n",
+ " 'clues': [('substandard', 'falling short of some prescribed norm'),\n",
+ " ('wanting', 'inadequate in amount or degree'),\n",
+ " ('inferior', 'falling short of some prescribed norm'),\n",
+ " ('insufficient',\n",
+ " 'of a quantity not able to fulfill a need or requirement'),\n",
+ " ('lacking', 'inadequate in amount or degree')]},\n",
+ " {'answer': 'definitive',\n",
+ " 'hint': 'synonyms for definitive',\n",
+ " 'clues': [('authoritative', 'of recognized authority or excellence'),\n",
+ " ('classic', 'of recognized authority or excellence'),\n",
+ " ('unequivocal', 'clearly defined or formulated; - R.B.Taney'),\n",
+ " ('determinate', 'supplying or being a final or conclusive settlement')]},\n",
+ " {'answer': 'deformed',\n",
+ " 'hint': 'synonyms for deformed',\n",
+ " 'clues': [('misshapen', 'so badly formed or out of shape as to be ugly'),\n",
+ " ('ill-shapen', 'so badly formed or out of shape as to be ugly'),\n",
+ " ('distorted', 'so badly formed or out of shape as to be ugly'),\n",
+ " ('malformed', 'so badly formed or out of shape as to be ugly')]},\n",
+ " {'answer': 'degenerate',\n",
+ " 'hint': 'synonyms for degenerate',\n",
+ " 'clues': [('libertine', 'unrestrained by convention or morality'),\n",
+ " ('riotous', 'unrestrained by convention or morality'),\n",
+ " ('dissolute', 'unrestrained by convention or morality'),\n",
+ " ('degraded', 'unrestrained by convention or morality'),\n",
+ " ('profligate', 'unrestrained by convention or morality'),\n",
+ " ('dissipated', 'unrestrained by convention or morality'),\n",
+ " ('fast', 'unrestrained by convention or morality'),\n",
+ " ('debauched', 'unrestrained by convention or morality')]},\n",
+ " {'answer': 'degraded',\n",
+ " 'hint': 'synonyms for degraded',\n",
+ " 'clues': [('libertine', 'unrestrained by convention or morality'),\n",
+ " ('riotous', 'unrestrained by convention or morality'),\n",
+ " ('dissolute', 'unrestrained by convention or morality'),\n",
+ " ('degenerate', 'unrestrained by convention or morality'),\n",
+ " ('devalued', 'lowered in value'),\n",
+ " ('debased', 'lowered in value'),\n",
+ " ('profligate', 'unrestrained by convention or morality'),\n",
+ " ('dissipated', 'unrestrained by convention or morality'),\n",
+ " ('fast', 'unrestrained by convention or morality'),\n",
+ " ('debauched', 'unrestrained by convention or morality')]},\n",
+ " {'answer': 'delectable',\n",
+ " 'hint': 'synonyms for delectable',\n",
+ " 'clues': [('pleasant-tasting', 'extremely pleasing to the sense of taste'),\n",
+ " ('sexually attractive', 'capable of arousing desire'),\n",
+ " ('delicious', 'extremely pleasing to the sense of taste'),\n",
+ " ('toothsome', 'extremely pleasing to the sense of taste'),\n",
+ " ('scrumptious', 'extremely pleasing to the sense of taste'),\n",
+ " ('yummy', 'extremely pleasing to the sense of taste'),\n",
+ " ('luscious', 'extremely pleasing to the sense of taste')]},\n",
+ " {'answer': 'delicate',\n",
+ " 'hint': 'synonyms for delicate',\n",
+ " 'clues': [('frail', 'easily broken or damaged or destroyed'),\n",
+ " ('soft', 'easily hurt'),\n",
+ " ('ticklish', 'difficult to handle; requiring great tact'),\n",
+ " ('fragile', 'easily broken or damaged or destroyed'),\n",
+ " ('touchy', 'difficult to handle; requiring great tact'),\n",
+ " ('finespun', 'developed with extreme delicacy and subtlety')]},\n",
+ " {'answer': 'delicious',\n",
+ " 'hint': 'synonyms for delicious',\n",
+ " 'clues': [('pleasant-tasting', 'extremely pleasing to the sense of taste'),\n",
+ " ('delectable', 'extremely pleasing to the sense of taste'),\n",
+ " ('delightful', 'greatly pleasing or entertaining'),\n",
+ " ('toothsome', 'extremely pleasing to the sense of taste'),\n",
+ " ('scrumptious', 'extremely pleasing to the sense of taste'),\n",
+ " ('yummy', 'extremely pleasing to the sense of taste'),\n",
+ " ('luscious', 'extremely pleasing to the sense of taste')]},\n",
+ " {'answer': 'delighted',\n",
+ " 'hint': 'synonyms for delighted',\n",
+ " 'clues': [('entranced', 'filled with wonder and delight'),\n",
+ " ('beguiled', 'filled with wonder and delight'),\n",
+ " ('enthralled', 'filled with wonder and delight'),\n",
+ " ('captivated', 'filled with wonder and delight'),\n",
+ " ('charmed', 'filled with wonder and delight')]},\n",
+ " {'answer': 'delinquent',\n",
+ " 'hint': 'synonyms for delinquent',\n",
+ " 'clues': [('neglectful', 'failing in what duty requires'),\n",
+ " ('overdue', 'past due; not paid at the scheduled time'),\n",
+ " ('remiss', 'failing in what duty requires'),\n",
+ " ('derelict', 'failing in what duty requires')]},\n",
+ " {'answer': 'delirious',\n",
+ " 'hint': 'synonyms for delirious',\n",
+ " 'clues': [('frantic', 'marked by uncontrolled excitement or emotion'),\n",
+ " ('hallucinating', 'experiencing delirium'),\n",
+ " ('excited', 'marked by uncontrolled excitement or emotion'),\n",
+ " ('mad', 'marked by uncontrolled excitement or emotion'),\n",
+ " ('unrestrained', 'marked by uncontrolled excitement or emotion')]},\n",
+ " {'answer': 'deluxe',\n",
+ " 'hint': 'synonyms for deluxe',\n",
+ " 'clues': [('gilded', 'rich and superior in quality'),\n",
+ " ('de luxe', 'elegant and sumptuous'),\n",
+ " ('sumptuous', 'rich and superior in quality'),\n",
+ " ('princely', 'rich and superior in quality'),\n",
+ " ('grand', 'rich and superior in quality'),\n",
+ " ('opulent', 'rich and superior in quality'),\n",
+ " ('luxe', 'elegant and sumptuous'),\n",
+ " ('luxurious', 'rich and superior in quality')]},\n",
+ " {'answer': 'demented',\n",
+ " 'hint': 'synonyms for demented',\n",
+ " 'clues': [('brainsick', 'affected with madness or insanity'),\n",
+ " ('mad', 'affected with madness or insanity'),\n",
+ " ('disturbed', 'affected with madness or insanity'),\n",
+ " ('unbalanced', 'affected with madness or insanity'),\n",
+ " ('sick', 'affected with madness or insanity'),\n",
+ " ('unhinged', 'affected with madness or insanity'),\n",
+ " ('crazy', 'affected with madness or insanity')]},\n",
+ " {'answer': 'demode',\n",
+ " 'hint': 'synonyms for demode',\n",
+ " 'clues': [('passe', 'out of fashion'),\n",
+ " ('antique', 'out of fashion'),\n",
+ " ('old-fashioned', 'out of fashion'),\n",
+ " ('old-hat', 'out of fashion'),\n",
+ " ('outmoded', 'out of fashion'),\n",
+ " ('ex', 'out of fashion')]},\n",
+ " {'answer': 'demoniac',\n",
+ " 'hint': 'synonyms for demoniac',\n",
+ " 'clues': [('berserk', 'frenzied as if possessed by a demon'),\n",
+ " ('amok', 'frenzied as if possessed by a demon'),\n",
+ " ('demoniacal', 'frenzied as if possessed by a demon'),\n",
+ " ('possessed', 'frenzied as if possessed by a demon'),\n",
+ " ('amuck', 'frenzied as if possessed by a demon')]},\n",
+ " {'answer': 'demoniacal',\n",
+ " 'hint': 'synonyms for demoniacal',\n",
+ " 'clues': [('berserk', 'frenzied as if possessed by a demon'),\n",
+ " ('amok', 'frenzied as if possessed by a demon'),\n",
+ " ('possessed', 'frenzied as if possessed by a demon'),\n",
+ " ('amuck', 'frenzied as if possessed by a demon'),\n",
+ " ('demoniac', 'frenzied as if possessed by a demon')]},\n",
+ " {'answer': 'demonic',\n",
+ " 'hint': 'synonyms for demonic',\n",
+ " 'clues': [('unholy',\n",
+ " 'extremely evil or cruel; expressive of cruelty or befitting hell'),\n",
+ " ('satanic',\n",
+ " 'extremely evil or cruel; expressive of cruelty or befitting hell'),\n",
+ " ('hellish',\n",
+ " 'extremely evil or cruel; expressive of cruelty or befitting hell'),\n",
+ " ('diabolic',\n",
+ " 'extremely evil or cruel; expressive of cruelty or befitting hell'),\n",
+ " ('infernal',\n",
+ " 'extremely evil or cruel; expressive of cruelty or befitting hell'),\n",
+ " ('fiendish',\n",
+ " 'extremely evil or cruel; expressive of cruelty or befitting hell')]},\n",
+ " {'answer': 'dendriform',\n",
+ " 'hint': 'synonyms for dendriform',\n",
+ " 'clues': [('dendroidal',\n",
+ " 'resembling a tree in form and branching structure'),\n",
+ " ('arboriform', 'resembling a tree in form and branching structure'),\n",
+ " ('arboreal', 'resembling a tree in form and branching structure'),\n",
+ " ('arborescent', 'resembling a tree in form and branching structure'),\n",
+ " ('treelike', 'resembling a tree in form and branching structure'),\n",
+ " ('arboreous', 'resembling a tree in form and branching structure'),\n",
+ " ('tree-shaped', 'resembling a tree in form and branching structure'),\n",
+ " ('arboresque', 'resembling a tree in form and branching structure')]},\n",
+ " {'answer': 'dendroid',\n",
+ " 'hint': 'synonyms for dendroid',\n",
+ " 'clues': [('dendroidal',\n",
+ " 'resembling a tree in form and branching structure'),\n",
+ " ('arboriform', 'resembling a tree in form and branching structure'),\n",
+ " ('arboreal', 'resembling a tree in form and branching structure'),\n",
+ " ('dendriform', 'resembling a tree in form and branching structure'),\n",
+ " ('arborescent', 'resembling a tree in form and branching structure'),\n",
+ " ('treelike', 'resembling a tree in form and branching structure'),\n",
+ " ('arboreous', 'resembling a tree in form and branching structure'),\n",
+ " ('tree-shaped', 'resembling a tree in form and branching structure'),\n",
+ " ('arboresque', 'resembling a tree in form and branching structure')]},\n",
+ " {'answer': 'dendroidal',\n",
+ " 'hint': 'synonyms for dendroidal',\n",
+ " 'clues': [('arboriform',\n",
+ " 'resembling a tree in form and branching structure'),\n",
+ " ('arboreal', 'resembling a tree in form and branching structure'),\n",
+ " ('dendriform', 'resembling a tree in form and branching structure'),\n",
+ " ('arborescent', 'resembling a tree in form and branching structure'),\n",
+ " ('dendroid', 'resembling a tree in form and branching structure'),\n",
+ " ('treelike', 'resembling a tree in form and branching structure'),\n",
+ " ('arboreous', 'resembling a tree in form and branching structure'),\n",
+ " ('tree-shaped', 'resembling a tree in form and branching structure'),\n",
+ " ('arboresque', 'resembling a tree in form and branching structure')]},\n",
+ " {'answer': 'denigrating',\n",
+ " 'hint': 'synonyms for denigrating',\n",
+ " 'clues': [('libelous',\n",
+ " '(used of statements) harmful and often untrue; tending to discredit or malign'),\n",
+ " ('denigratory',\n",
+ " '(used of statements) harmful and often untrue; tending to discredit or malign'),\n",
+ " ('denigrative',\n",
+ " '(used of statements) harmful and often untrue; tending to discredit or malign'),\n",
+ " ('defamatory',\n",
+ " '(used of statements) harmful and often untrue; tending to discredit or malign'),\n",
+ " ('slanderous',\n",
+ " '(used of statements) harmful and often untrue; tending to discredit or malign'),\n",
+ " ('calumniatory',\n",
+ " '(used of statements) harmful and often untrue; tending to discredit or malign'),\n",
+ " ('calumnious',\n",
+ " '(used of statements) harmful and often untrue; tending to discredit or malign')]},\n",
+ " {'answer': 'denigrative',\n",
+ " 'hint': 'synonyms for denigrative',\n",
+ " 'clues': [('libelous',\n",
+ " '(used of statements) harmful and often untrue; tending to discredit or malign'),\n",
+ " ('denigratory',\n",
+ " '(used of statements) harmful and often untrue; tending to discredit or malign'),\n",
+ " ('denigrating',\n",
+ " '(used of statements) harmful and often untrue; tending to discredit or malign'),\n",
+ " ('defamatory',\n",
+ " '(used of statements) harmful and often untrue; tending to discredit or malign'),\n",
+ " ('slanderous',\n",
+ " '(used of statements) harmful and often untrue; tending to discredit or malign'),\n",
+ " ('calumniatory',\n",
+ " '(used of statements) harmful and often untrue; tending to discredit or malign'),\n",
+ " ('calumnious',\n",
+ " '(used of statements) harmful and often untrue; tending to discredit or malign')]},\n",
+ " {'answer': 'denigratory',\n",
+ " 'hint': 'synonyms for denigratory',\n",
+ " 'clues': [('libelous',\n",
+ " '(used of statements) harmful and often untrue; tending to discredit or malign'),\n",
+ " ('denigrative',\n",
+ " '(used of statements) harmful and often untrue; tending to discredit or malign'),\n",
+ " ('denigrating',\n",
+ " '(used of statements) harmful and often untrue; tending to discredit or malign'),\n",
+ " ('defamatory',\n",
+ " '(used of statements) harmful and often untrue; tending to discredit or malign'),\n",
+ " ('slanderous',\n",
+ " '(used of statements) harmful and often untrue; tending to discredit or malign'),\n",
+ " ('calumniatory',\n",
+ " '(used of statements) harmful and often untrue; tending to discredit or malign'),\n",
+ " ('calumnious',\n",
+ " '(used of statements) harmful and often untrue; tending to discredit or malign')]},\n",
+ " {'answer': 'dense',\n",
+ " 'hint': 'synonyms for dense',\n",
+ " 'clues': [('dim',\n",
+ " 'slow to learn or understand; lacking intellectual acuity; ; ; - Thackeray'),\n",
+ " ('thick', 'hard to pass through because of dense growth'),\n",
+ " ('dull',\n",
+ " 'slow to learn or understand; lacking intellectual acuity; ; ; - Thackeray'),\n",
+ " ('impenetrable',\n",
+ " 'permitting little if any light to pass through because of denseness of matter'),\n",
+ " ('dumb',\n",
+ " 'slow to learn or understand; lacking intellectual acuity; ; ; - Thackeray'),\n",
+ " ('heavy',\n",
+ " 'permitting little if any light to pass through because of denseness of matter'),\n",
+ " ('obtuse',\n",
+ " 'slow to learn or understand; lacking intellectual acuity; ; ; - Thackeray'),\n",
+ " ('slow',\n",
+ " 'slow to learn or understand; lacking intellectual acuity; ; ; - Thackeray')]},\n",
+ " {'answer': 'departed',\n",
+ " 'hint': 'synonyms for departed',\n",
+ " 'clues': [('gone', 'well in the past; former'),\n",
+ " ('bypast', 'well in the past; former'),\n",
+ " ('bygone', 'well in the past; former'),\n",
+ " ('at peace', 'dead'),\n",
+ " ('at rest', 'dead'),\n",
+ " ('deceased', 'dead'),\n",
+ " ('foregone', 'well in the past; former'),\n",
+ " ('asleep', 'dead')]},\n",
+ " {'answer': 'dependable',\n",
+ " 'hint': 'synonyms for dependable',\n",
+ " 'clues': [('secure', 'financially sound'),\n",
+ " ('rock-steady', 'consistent in performance or behavior'),\n",
+ " ('reliable', 'worthy of reliance or trust'),\n",
+ " ('honest', 'worthy of being depended on'),\n",
+ " ('good', 'financially sound'),\n",
+ " ('safe', 'financially sound'),\n",
+ " ('true', 'worthy of being depended on'),\n",
+ " ('steady-going', 'consistent in performance or behavior')]},\n",
+ " {'answer': 'dependant',\n",
+ " 'hint': 'synonyms for dependant',\n",
+ " 'clues': [('qualified', 'contingent on something else'),\n",
+ " ('strung-out', 'addicted to a drug'),\n",
+ " ('hooked', 'addicted to a drug'),\n",
+ " ('drug-addicted', 'addicted to a drug'),\n",
+ " ('dependent', 'addicted to a drug')]},\n",
+ " {'answer': 'dependant_on',\n",
+ " 'hint': 'synonyms for dependant on',\n",
+ " 'clues': [('contingent upon',\n",
+ " 'determined by conditions or circumstances that follow'),\n",
+ " ('dependant upon',\n",
+ " 'determined by conditions or circumstances that follow'),\n",
+ " ('contingent', 'determined by conditions or circumstances that follow'),\n",
+ " ('depending on', 'determined by conditions or circumstances that follow'),\n",
+ " ('dependent on',\n",
+ " 'determined by conditions or circumstances that follow')]},\n",
+ " {'answer': 'dependant_upon',\n",
+ " 'hint': 'synonyms for dependant upon',\n",
+ " 'clues': [('contingent upon',\n",
+ " 'determined by conditions or circumstances that follow'),\n",
+ " ('contingent', 'determined by conditions or circumstances that follow'),\n",
+ " ('dependant on', 'determined by conditions or circumstances that follow'),\n",
+ " ('depending on', 'determined by conditions or circumstances that follow'),\n",
+ " ('dependent upon',\n",
+ " 'determined by conditions or circumstances that follow')]},\n",
+ " {'answer': 'dependent',\n",
+ " 'hint': 'synonyms for dependent',\n",
+ " 'clues': [('subject',\n",
+ " 'being under the power or sovereignty of another or others'),\n",
+ " ('subordinate',\n",
+ " '(of a clause) unable to stand alone syntactically as a complete sentence'),\n",
+ " ('dependant', 'addicted to a drug'),\n",
+ " ('qualified', 'contingent on something else'),\n",
+ " ('pendent', 'held from above'),\n",
+ " ('strung-out', 'addicted to a drug'),\n",
+ " ('hooked', 'addicted to a drug'),\n",
+ " ('drug-addicted', 'addicted to a drug')]},\n",
+ " {'answer': 'dependent_upon',\n",
+ " 'hint': 'synonyms for dependent upon',\n",
+ " 'clues': [('contingent upon',\n",
+ " 'determined by conditions or circumstances that follow'),\n",
+ " ('dependant upon',\n",
+ " 'determined by conditions or circumstances that follow'),\n",
+ " ('contingent', 'determined by conditions or circumstances that follow'),\n",
+ " ('depending on', 'determined by conditions or circumstances that follow'),\n",
+ " ('dependent on',\n",
+ " 'determined by conditions or circumstances that follow')]},\n",
+ " {'answer': 'depending_on',\n",
+ " 'hint': 'synonyms for depending on',\n",
+ " 'clues': [('contingent upon',\n",
+ " 'determined by conditions or circumstances that follow'),\n",
+ " ('dependant upon',\n",
+ " 'determined by conditions or circumstances that follow'),\n",
+ " ('contingent', 'determined by conditions or circumstances that follow'),\n",
+ " ('dependent on',\n",
+ " 'determined by conditions or circumstances that follow')]},\n",
+ " {'answer': 'deplorable',\n",
+ " 'hint': 'synonyms for deplorable',\n",
+ " 'clues': [('wretched', 'of very poor quality or condition'),\n",
+ " ('sad', 'bad; unfortunate'),\n",
+ " ('lamentable', 'bad; unfortunate'),\n",
+ " ('miserable', 'of very poor quality or condition'),\n",
+ " ('criminal', 'bringing or deserving severe rebuke or censure'),\n",
+ " ('vicious', 'bringing or deserving severe rebuke or censure'),\n",
+ " ('distressing', 'bad; unfortunate'),\n",
+ " ('pitiful', 'bad; unfortunate'),\n",
+ " ('condemnable', 'bringing or deserving severe rebuke or censure'),\n",
+ " ('sorry', 'bad; unfortunate'),\n",
+ " ('execrable', 'of very poor quality or condition'),\n",
+ " ('woeful', 'of very poor quality or condition'),\n",
+ " ('reprehensible', 'bringing or deserving severe rebuke or censure')]},\n",
+ " {'answer': 'deprecating',\n",
+ " 'hint': 'synonyms for deprecating',\n",
+ " 'clues': [('deprecative', 'tending to diminish or disparage'),\n",
+ " ('deprecatory', 'tending to diminish or disparage'),\n",
+ " ('belittling', 'tending to diminish or disparage'),\n",
+ " ('slighting', 'tending to diminish or disparage')]},\n",
+ " {'answer': 'deprecative',\n",
+ " 'hint': 'synonyms for deprecative',\n",
+ " 'clues': [('deprecating', 'tending to diminish or disparage'),\n",
+ " ('deprecatory', 'tending to diminish or disparage'),\n",
+ " ('belittling', 'tending to diminish or disparage'),\n",
+ " ('depreciative', 'tending to diminish or disparage'),\n",
+ " ('slighting', 'tending to diminish or disparage')]},\n",
+ " {'answer': 'deprecatory',\n",
+ " 'hint': 'synonyms for deprecatory',\n",
+ " 'clues': [('deprecating', 'tending to diminish or disparage'),\n",
+ " ('deprecative', 'tending to diminish or disparage'),\n",
+ " ('depreciatory', 'tending to diminish or disparage'),\n",
+ " ('belittling', 'tending to diminish or disparage'),\n",
+ " ('slighting', 'tending to diminish or disparage')]},\n",
+ " {'answer': 'depreciative',\n",
+ " 'hint': 'synonyms for depreciative',\n",
+ " 'clues': [('deprecatory', 'tending to diminish or disparage'),\n",
+ " ('belittling', 'tending to diminish or disparage'),\n",
+ " ('deprecating', 'tending to diminish or disparage'),\n",
+ " ('deprecative', 'tending to diminish or disparage'),\n",
+ " ('slighting', 'tending to diminish or disparage')]},\n",
+ " {'answer': 'depreciatory',\n",
+ " 'hint': 'synonyms for depreciatory',\n",
+ " 'clues': [('deprecatory', 'tending to diminish or disparage'),\n",
+ " ('belittling', 'tending to diminish or disparage'),\n",
+ " ('depreciative', 'tending to diminish or disparage'),\n",
+ " ('deprecating', 'tending to diminish or disparage'),\n",
+ " ('slighting', 'tending to diminish or disparage')]},\n",
+ " {'answer': 'depressed',\n",
+ " 'hint': 'synonyms for depressed',\n",
+ " 'clues': [('low-spirited', 'filled with melancholy and despondency'),\n",
+ " ('downhearted', 'filled with melancholy and despondency'),\n",
+ " ('down in the mouth', 'filled with melancholy and despondency'),\n",
+ " ('low', 'filled with melancholy and despondency'),\n",
+ " ('downcast', 'filled with melancholy and despondency'),\n",
+ " ('blue', 'filled with melancholy and despondency'),\n",
+ " ('down', 'lower than previously'),\n",
+ " ('dispirited', 'filled with melancholy and despondency'),\n",
+ " ('gloomy', 'filled with melancholy and despondency'),\n",
+ " ('grim', 'filled with melancholy and despondency')]},\n",
+ " {'answer': 'derelict',\n",
+ " 'hint': 'synonyms for derelict',\n",
+ " 'clues': [('abandoned', 'forsaken by owner or inhabitants'),\n",
+ " ('flea-bitten', 'worn and broken down by hard use'),\n",
+ " ('neglectful', 'failing in what duty requires'),\n",
+ " ('decrepit', 'worn and broken down by hard use'),\n",
+ " ('delinquent', 'failing in what duty requires'),\n",
+ " ('creaky', 'worn and broken down by hard use'),\n",
+ " ('broken-down', 'in deplorable condition'),\n",
+ " ('run-down', 'worn and broken down by hard use'),\n",
+ " ('dilapidated', 'in deplorable condition'),\n",
+ " ('tatterdemalion', 'in deplorable condition'),\n",
+ " ('remiss', 'failing in what duty requires'),\n",
+ " ('bedraggled', 'in deplorable condition'),\n",
+ " ('woebegone', 'worn and broken down by hard use'),\n",
+ " ('ramshackle', 'in deplorable condition'),\n",
+ " ('deserted', 'forsaken by owner or inhabitants'),\n",
+ " ('tumble-down', 'in deplorable condition')]},\n",
+ " {'answer': 'derisive',\n",
+ " 'hint': 'synonyms for derisive',\n",
+ " 'clues': [('mocking', 'abusing vocally; expressing contempt or ridicule'),\n",
+ " ('gibelike', 'abusing vocally; expressing contempt or ridicule'),\n",
+ " ('jeering', 'abusing vocally; expressing contempt or ridicule'),\n",
+ " ('taunting', 'abusing vocally; expressing contempt or ridicule')]},\n",
+ " {'answer': 'derisory',\n",
+ " 'hint': 'synonyms for derisory',\n",
+ " 'clues': [('ludicrous', 'incongruous;inviting ridicule'),\n",
+ " ('laughable', 'incongruous;inviting ridicule'),\n",
+ " ('absurd', 'incongruous;inviting ridicule'),\n",
+ " ('nonsensical', 'incongruous;inviting ridicule'),\n",
+ " ('cockeyed', 'incongruous;inviting ridicule'),\n",
+ " ('preposterous', 'incongruous;inviting ridicule'),\n",
+ " ('ridiculous', 'incongruous;inviting ridicule'),\n",
+ " ('idiotic', 'incongruous;inviting ridicule')]},\n",
+ " {'answer': 'dermal',\n",
+ " 'hint': 'synonyms for dermal',\n",
+ " 'clues': [('dermic', 'of or relating to or located in the dermis'),\n",
+ " ('cuticular', 'of or relating to a cuticle or cuticula'),\n",
+ " ('cutaneal', 'relating to or existing on or affecting the skin'),\n",
+ " ('epidermic', 'of or relating to a cuticle or cuticula'),\n",
+ " ('epidermal', 'of or relating to a cuticle or cuticula'),\n",
+ " ('cutaneous', 'relating to or existing on or affecting the skin')]},\n",
+ " {'answer': 'desiccated',\n",
+ " 'hint': 'synonyms for desiccated',\n",
+ " 'clues': [('dehydrated', 'preserved by removing natural moisture'),\n",
+ " ('arid', 'lacking vitality or spirit; lifeless; ; ; -C.J.Rolo'),\n",
+ " ('dried', 'preserved by removing natural moisture'),\n",
+ " ('dried-out', 'thoroughly dried out'),\n",
+ " ('desiccate', 'lacking vitality or spirit; lifeless; ; ; -C.J.Rolo')]},\n",
+ " {'answer': 'desired',\n",
+ " 'hint': 'synonyms for desired',\n",
+ " 'clues': [('coveted', 'greatly desired'),\n",
+ " ('craved', 'wanted intensely'),\n",
+ " ('in demand', 'greatly desired'),\n",
+ " ('sought after', 'greatly desired')]},\n",
+ " {'answer': 'desolate',\n",
+ " 'hint': 'synonyms for desolate',\n",
+ " 'clues': [('barren', 'providing no shelter or sustenance'),\n",
+ " ('bare', 'providing no shelter or sustenance'),\n",
+ " ('stark', 'providing no shelter or sustenance'),\n",
+ " ('bleak', 'providing no shelter or sustenance')]},\n",
+ " {'answer': 'desperate',\n",
+ " 'hint': 'synonyms for desperate',\n",
+ " 'clues': [('do-or-die', 'desperately determined'),\n",
+ " ('despairing', 'arising from or marked by despair or loss of hope'),\n",
+ " ('heroic',\n",
+ " 'showing extreme courage; especially of actions courageously undertaken in desperation as a last resort; ; - G.C.Marshall'),\n",
+ " ('dire',\n",
+ " 'fraught with extreme danger; nearly hopeless; ; - G.C.Marshall')]},\n",
+ " {'answer': 'despicable',\n",
+ " 'hint': 'synonyms for despicable',\n",
+ " 'clues': [('vile', 'morally reprehensible'),\n",
+ " ('ugly', 'morally reprehensible'),\n",
+ " ('slimy', 'morally reprehensible'),\n",
+ " ('worthless', 'morally reprehensible'),\n",
+ " ('wretched', 'morally reprehensible'),\n",
+ " ('unworthy', 'morally reprehensible')]},\n",
+ " {'answer': 'despoiled',\n",
+ " 'hint': 'synonyms for despoiled',\n",
+ " 'clues': [('sacked',\n",
+ " 'having been robbed and destroyed by force and violence'),\n",
+ " ('raped', 'having been robbed and destroyed by force and violence'),\n",
+ " ('pillaged', 'having been robbed and destroyed by force and violence'),\n",
+ " ('ravaged', 'having been robbed and destroyed by force and violence')]},\n",
+ " {'answer': 'despotic',\n",
+ " 'hint': 'synonyms for despotic',\n",
+ " 'clues': [('despotical',\n",
+ " 'belonging to or having the characteristics of a despot'),\n",
+ " ('authoritarian',\n",
+ " 'characteristic of an absolute ruler or absolute rule; having absolute sovereignty'),\n",
+ " ('tyrannical',\n",
+ " 'characteristic of an absolute ruler or absolute rule; having absolute sovereignty'),\n",
+ " ('autocratic',\n",
+ " 'characteristic of an absolute ruler or absolute rule; having absolute sovereignty'),\n",
+ " ('dictatorial',\n",
+ " 'characteristic of an absolute ruler or absolute rule; having absolute sovereignty')]},\n",
+ " {'answer': 'destitute',\n",
+ " 'hint': 'synonyms for destitute',\n",
+ " 'clues': [('devoid', 'completely wanting or lacking'),\n",
+ " ('innocent', 'completely wanting or lacking'),\n",
+ " ('poverty-stricken', 'poor enough to need help from others'),\n",
+ " ('barren', 'completely wanting or lacking'),\n",
+ " ('free', 'completely wanting or lacking'),\n",
+ " ('indigent', 'poor enough to need help from others'),\n",
+ " ('necessitous', 'poor enough to need help from others'),\n",
+ " ('needy', 'poor enough to need help from others'),\n",
+ " ('impoverished', 'poor enough to need help from others')]},\n",
+ " {'answer': 'detached',\n",
+ " 'hint': 'synonyms for detached',\n",
+ " 'clues': [('separated', 'no longer connected or joined'),\n",
+ " ('isolated',\n",
+ " 'being or feeling set or kept apart from others; ; - Sherwood Anderson'),\n",
+ " ('unaffectionate', 'lacking affection or warm feeling'),\n",
+ " ('set-apart',\n",
+ " 'being or feeling set or kept apart from others; ; - Sherwood Anderson'),\n",
+ " ('free', 'not fixed in position'),\n",
+ " ('uninvolved', 'showing lack of emotional involvement; - J.S.Perelman'),\n",
+ " ('degage', 'showing lack of emotional involvement; - J.S.Perelman'),\n",
+ " ('uncaring', 'lacking affection or warm feeling')]},\n",
+ " {'answer': 'determined',\n",
+ " 'hint': 'synonyms for determined',\n",
+ " 'clues': [('set', 'determined or decided upon as by an authority'),\n",
+ " ('driven', 'strongly motivated to succeed'),\n",
+ " ('dictated', 'determined or decided upon as by an authority'),\n",
+ " ('compulsive', 'strongly motivated to succeed')]},\n",
+ " {'answer': 'detestable',\n",
+ " 'hint': 'synonyms for detestable',\n",
+ " 'clues': [('abominable', 'unequivocally detestable; ; ; ; - Edmund Burke'),\n",
+ " ('abhorrent', 'offensive to the mind'),\n",
+ " ('obscene', 'offensive to the mind'),\n",
+ " ('execrable', 'unequivocally detestable; ; ; ; - Edmund Burke'),\n",
+ " ('repulsive', 'offensive to the mind'),\n",
+ " ('odious', 'unequivocally detestable; ; ; ; - Edmund Burke'),\n",
+ " ('repugnant', 'offensive to the mind')]},\n",
+ " {'answer': 'deuced',\n",
+ " 'hint': 'synonyms for deuced',\n",
+ " 'clues': [('goddam', 'expletives used informally as intensifiers'),\n",
+ " ('goddamned', 'expletives used informally as intensifiers'),\n",
+ " ('blasted', 'expletives used informally as intensifiers'),\n",
+ " ('blessed', 'expletives used informally as intensifiers'),\n",
+ " ('blamed', 'expletives used informally as intensifiers'),\n",
+ " ('darned', 'expletives used informally as intensifiers'),\n",
+ " ('damn', 'expletives used informally as intensifiers'),\n",
+ " ('damned', 'expletives used informally as intensifiers'),\n",
+ " ('infernal', 'expletives used informally as intensifiers')]},\n",
+ " {'answer': 'devastating',\n",
+ " 'hint': 'synonyms for devastating',\n",
+ " 'clues': [('withering',\n",
+ " 'wreaking or capable of wreaking complete destruction'),\n",
+ " ('annihilative', 'wreaking or capable of wreaking complete destruction'),\n",
+ " ('annihilating', 'making light of; ; ; - W.S.Gilbert'),\n",
+ " ('crushing',\n",
+ " 'physically or spiritually devastating; often used in combination')]},\n",
+ " {'answer': 'devil-may-care',\n",
+ " 'hint': 'synonyms for devil-may-care',\n",
+ " 'clues': [('carefree', 'cheerfully irresponsible'),\n",
+ " ('happy-go-lucky', 'cheerfully irresponsible'),\n",
+ " ('rakish',\n",
+ " 'marked by a carefree unconventionality or disreputableness; - Crary Moore'),\n",
+ " ('harum-scarum', 'cheerfully irresponsible'),\n",
+ " ('raffish',\n",
+ " 'marked by a carefree unconventionality or disreputableness; - Crary Moore'),\n",
+ " ('slaphappy', 'cheerfully irresponsible'),\n",
+ " ('freewheeling', 'cheerfully irresponsible')]},\n",
+ " {'answer': 'devilish',\n",
+ " 'hint': 'synonyms for devilish',\n",
+ " 'clues': [('mephistophelian',\n",
+ " 'showing the cunning or ingenuity or wickedness typical of a devil'),\n",
+ " ('roguish', 'playful in an appealingly bold way'),\n",
+ " ('rascally', 'playful in an appealingly bold way'),\n",
+ " ('diabolical',\n",
+ " 'showing the cunning or ingenuity or wickedness typical of a devil')]},\n",
+ " {'answer': 'devious',\n",
+ " 'hint': 'synonyms for devious',\n",
+ " 'clues': [('circuitous', 'deviating from a straight course'),\n",
+ " ('oblique',\n",
+ " 'indirect in departing from the accepted or proper way; misleading'),\n",
+ " ('roundabout', 'deviating from a straight course'),\n",
+ " ('shifty', 'characterized by insincerity or deceit; evasive')]},\n",
+ " {'answer': 'devoid',\n",
+ " 'hint': 'synonyms for devoid',\n",
+ " 'clues': [('destitute', 'completely wanting or lacking'),\n",
+ " ('free', 'completely wanting or lacking'),\n",
+ " ('innocent', 'completely wanting or lacking'),\n",
+ " ('barren', 'completely wanting or lacking')]},\n",
+ " {'answer': 'devout',\n",
+ " 'hint': 'synonyms for devout',\n",
+ " 'clues': [('dear', 'earnest'),\n",
+ " ('god-fearing', 'deeply religious; H.L.Mencken'),\n",
+ " ('earnest', 'earnest'),\n",
+ " ('heartfelt', 'earnest')]},\n",
+ " {'answer': 'dewy-eyed',\n",
+ " 'hint': 'synonyms for dewy-eyed',\n",
+ " 'clues': [('wide-eyed', 'exhibiting childlike simplicity and credulity'),\n",
+ " ('childlike', 'exhibiting childlike simplicity and credulity'),\n",
+ " ('round-eyed', 'exhibiting childlike simplicity and credulity'),\n",
+ " ('simple', 'exhibiting childlike simplicity and credulity')]},\n",
+ " {'answer': 'diabolic',\n",
+ " 'hint': 'synonyms for diabolic',\n",
+ " 'clues': [('unholy',\n",
+ " 'extremely evil or cruel; expressive of cruelty or befitting hell'),\n",
+ " ('mephistophelian',\n",
+ " 'showing the cunning or ingenuity or wickedness typical of a devil'),\n",
+ " ('infernal',\n",
+ " 'extremely evil or cruel; expressive of cruelty or befitting hell'),\n",
+ " ('devilish',\n",
+ " 'showing the cunning or ingenuity or wickedness typical of a devil'),\n",
+ " ('diabolical',\n",
+ " 'showing the cunning or ingenuity or wickedness typical of a devil'),\n",
+ " ('satanic',\n",
+ " 'extremely evil or cruel; expressive of cruelty or befitting hell'),\n",
+ " ('fiendish',\n",
+ " 'extremely evil or cruel; expressive of cruelty or befitting hell'),\n",
+ " ('hellish',\n",
+ " 'extremely evil or cruel; expressive of cruelty or befitting hell'),\n",
+ " ('demonic',\n",
+ " 'extremely evil or cruel; expressive of cruelty or befitting hell')]},\n",
+ " {'answer': 'diabolical',\n",
+ " 'hint': 'synonyms for diabolical',\n",
+ " 'clues': [('unholy',\n",
+ " 'extremely evil or cruel; expressive of cruelty or befitting hell'),\n",
+ " ('mephistophelian',\n",
+ " 'showing the cunning or ingenuity or wickedness typical of a devil'),\n",
+ " ('infernal',\n",
+ " 'extremely evil or cruel; expressive of cruelty or befitting hell'),\n",
+ " ('devilish',\n",
+ " 'showing the cunning or ingenuity or wickedness typical of a devil'),\n",
+ " ('satanic',\n",
+ " 'extremely evil or cruel; expressive of cruelty or befitting hell'),\n",
+ " ('diabolic',\n",
+ " 'showing the cunning or ingenuity or wickedness typical of a devil'),\n",
+ " ('fiendish',\n",
+ " 'extremely evil or cruel; expressive of cruelty or befitting hell'),\n",
+ " ('hellish',\n",
+ " 'extremely evil or cruel; expressive of cruelty or befitting hell'),\n",
+ " ('demonic',\n",
+ " 'extremely evil or cruel; expressive of cruelty or befitting hell')]},\n",
+ " {'answer': 'diagonal',\n",
+ " 'hint': 'synonyms for diagonal',\n",
+ " 'clues': [('aslope', 'having an oblique or slanted direction'),\n",
+ " ('sloped', 'having an oblique or slanted direction'),\n",
+ " ('slanted', 'having an oblique or slanted direction'),\n",
+ " ('aslant', 'having an oblique or slanted direction'),\n",
+ " ('slanting', 'having an oblique or slanted direction'),\n",
+ " ('sloping', 'having an oblique or slanted direction')]},\n",
+ " {'answer': 'diametrical',\n",
+ " 'hint': 'synonyms for diametrical',\n",
+ " 'clues': [('diametral', 'related to or along a diameter'),\n",
+ " ('polar', 'characterized by opposite extremes; completely opposed'),\n",
+ " ('diametric', 'related to or along a diameter'),\n",
+ " ('opposite', 'characterized by opposite extremes; completely opposed')]},\n",
+ " {'answer': 'diaphanous',\n",
+ " 'hint': 'synonyms for diaphanous',\n",
+ " 'clues': [('gauzy', 'so thin as to transmit light'),\n",
+ " ('transparent', 'so thin as to transmit light'),\n",
+ " ('gossamer', 'so thin as to transmit light'),\n",
+ " ('see-through', 'so thin as to transmit light'),\n",
+ " ('sheer', 'so thin as to transmit light'),\n",
+ " ('gauze-like', 'so thin as to transmit light'),\n",
+ " ('vapourous', 'so thin as to transmit light'),\n",
+ " ('cobwebby', 'so thin as to transmit light'),\n",
+ " ('filmy', 'so thin as to transmit light')]},\n",
+ " {'answer': 'dictatorial',\n",
+ " 'hint': 'synonyms for dictatorial',\n",
+ " 'clues': [('authoritarian',\n",
+ " 'characteristic of an absolute ruler or absolute rule; having absolute sovereignty'),\n",
+ " ('tyrannical',\n",
+ " 'characteristic of an absolute ruler or absolute rule; having absolute sovereignty'),\n",
+ " ('despotic',\n",
+ " 'characteristic of an absolute ruler or absolute rule; having absolute sovereignty'),\n",
+ " ('autocratic',\n",
+ " 'characteristic of an absolute ruler or absolute rule; having absolute sovereignty'),\n",
+ " ('overbearing', 'expecting unquestioning obedience')]},\n",
+ " {'answer': 'digressive',\n",
+ " 'hint': 'synonyms for digressive',\n",
+ " 'clues': [('tangential', 'of superficial relevance if any'),\n",
+ " ('discursive',\n",
+ " '(of e.g. speech and writing) tending to depart from the main point or cover a wide range of subjects'),\n",
+ " ('rambling',\n",
+ " '(of e.g. speech and writing) tending to depart from the main point or cover a wide range of subjects'),\n",
+ " ('excursive',\n",
+ " '(of e.g. speech and writing) tending to depart from the main point or cover a wide range of subjects')]},\n",
+ " {'answer': 'dilapidated',\n",
+ " 'hint': 'synonyms for dilapidated',\n",
+ " 'clues': [('bedraggled', 'in deplorable condition'),\n",
+ " ('ramshackle', 'in deplorable condition'),\n",
+ " ('broken-down', 'in deplorable condition'),\n",
+ " ('tatterdemalion', 'in deplorable condition'),\n",
+ " ('derelict', 'in deplorable condition'),\n",
+ " ('tumble-down', 'in deplorable condition')]},\n",
+ " {'answer': 'dim',\n",
+ " 'hint': 'synonyms for dim',\n",
+ " 'clues': [('dimmed', 'made dim or less bright'),\n",
+ " ('faint', 'lacking clarity or distinctness'),\n",
+ " ('wispy', 'lacking clarity or distinctness'),\n",
+ " ('dull',\n",
+ " 'slow to learn or understand; lacking intellectual acuity; ; ; - Thackeray'),\n",
+ " ('bleak', 'offering little or no hope; ; ; - J.M.Synge'),\n",
+ " ('dumb',\n",
+ " 'slow to learn or understand; lacking intellectual acuity; ; ; - Thackeray'),\n",
+ " ('obtuse',\n",
+ " 'slow to learn or understand; lacking intellectual acuity; ; ; - Thackeray'),\n",
+ " ('dense',\n",
+ " 'slow to learn or understand; lacking intellectual acuity; ; ; - Thackeray'),\n",
+ " ('subdued', 'lacking in light; not bright or harsh'),\n",
+ " ('vague', 'lacking clarity or distinctness'),\n",
+ " ('shadowy', 'lacking clarity or distinctness'),\n",
+ " ('black', 'offering little or no hope; ; ; - J.M.Synge'),\n",
+ " ('slow',\n",
+ " 'slow to learn or understand; lacking intellectual acuity; ; ; - Thackeray')]},\n",
+ " {'answer': 'dim-sighted',\n",
+ " 'hint': 'synonyms for dim-sighted',\n",
+ " 'clues': [('near-blind', 'having greatly reduced vision'),\n",
+ " ('purblind', 'having greatly reduced vision'),\n",
+ " ('visually impaired', 'having greatly reduced vision'),\n",
+ " ('visually challenged', 'having greatly reduced vision'),\n",
+ " ('sand-blind', 'having greatly reduced vision')]},\n",
+ " {'answer': 'diminished',\n",
+ " 'hint': 'synonyms for diminished',\n",
+ " 'clues': [('small', 'made to seem smaller or less (especially in worth)'),\n",
+ " ('vitiated', 'impaired by diminution'),\n",
+ " ('weakened', 'impaired by diminution'),\n",
+ " ('atrophied',\n",
+ " '(of an organ or body part) diminished in size or strength as a result of disease or injury or lack of use'),\n",
+ " ('belittled', 'made to seem smaller or less (especially in worth)'),\n",
+ " ('lessened', 'impaired by diminution'),\n",
+ " ('wasted',\n",
+ " '(of an organ or body part) diminished in size or strength as a result of disease or injury or lack of use')]},\n",
+ " {'answer': 'diminutive',\n",
+ " 'hint': 'synonyms for diminutive',\n",
+ " 'clues': [('lilliputian', 'very small'),\n",
+ " ('midget', 'very small'),\n",
+ " ('flyspeck', 'very small'),\n",
+ " ('petite', 'very small'),\n",
+ " ('tiny', 'very small'),\n",
+ " ('bantam', 'very small')]},\n",
+ " {'answer': 'dingy',\n",
+ " 'hint': 'synonyms for dingy',\n",
+ " 'clues': [('drab', 'causing dejection'),\n",
+ " ('gloomy', 'causing dejection'),\n",
+ " ('blue', 'causing dejection'),\n",
+ " ('grungy', 'thickly covered with ingrained dirt or soot'),\n",
+ " ('grimy', 'thickly covered with ingrained dirt or soot'),\n",
+ " ('dark', 'causing dejection'),\n",
+ " ('dirty',\n",
+ " '(of color) discolored by impurities; not bright and clear; is often used in combination'),\n",
+ " ('begrimed', 'thickly covered with ingrained dirt or soot'),\n",
+ " ('disconsolate', 'causing dejection'),\n",
+ " ('raunchy', 'thickly covered with ingrained dirt or soot'),\n",
+ " ('grubby', 'thickly covered with ingrained dirt or soot'),\n",
+ " ('dismal', 'causing dejection'),\n",
+ " ('muddy',\n",
+ " '(of color) discolored by impurities; not bright and clear; is often used in combination'),\n",
+ " ('sorry', 'causing dejection'),\n",
+ " ('dreary', 'causing dejection'),\n",
+ " ('muddied',\n",
+ " '(of color) discolored by impurities; not bright and clear; is often used in combination')]},\n",
+ " {'answer': 'dire',\n",
+ " 'hint': 'synonyms for dire',\n",
+ " 'clues': [('dread', 'causing fear or dread or terror'),\n",
+ " ('horrendous', 'causing fear or dread or terror'),\n",
+ " ('fearful', 'causing fear or dread or terror'),\n",
+ " ('direful', 'causing fear or dread or terror'),\n",
+ " ('dreaded', 'causing fear or dread or terror'),\n",
+ " ('horrific', 'causing fear or dread or terror'),\n",
+ " ('dreadful', 'causing fear or dread or terror'),\n",
+ " ('fearsome', 'causing fear or dread or terror'),\n",
+ " ('awful', 'causing fear or dread or terror'),\n",
+ " ('terrible', 'causing fear or dread or terror'),\n",
+ " ('frightening', 'causing fear or dread or terror'),\n",
+ " ('desperate',\n",
+ " 'fraught with extreme danger; nearly hopeless; ; - G.C.Marshall')]},\n",
+ " {'answer': 'directionless',\n",
+ " 'hint': 'synonyms for directionless',\n",
+ " 'clues': [('adrift', 'aimlessly drifting'),\n",
+ " ('afloat', 'aimlessly drifting'),\n",
+ " ('undirected', 'aimlessly drifting'),\n",
+ " ('aimless', 'aimlessly drifting'),\n",
+ " ('planless', 'aimlessly drifting'),\n",
+ " ('rudderless', 'aimlessly drifting')]},\n",
+ " {'answer': 'direful',\n",
+ " 'hint': 'synonyms for direful',\n",
+ " 'clues': [('dread', 'causing fear or dread or terror'),\n",
+ " ('horrendous', 'causing fear or dread or terror'),\n",
+ " ('fearful', 'causing fear or dread or terror'),\n",
+ " ('dreaded', 'causing fear or dread or terror'),\n",
+ " ('horrific', 'causing fear or dread or terror'),\n",
+ " ('dreadful', 'causing fear or dread or terror'),\n",
+ " ('awful', 'causing fear or dread or terror'),\n",
+ " ('terrible', 'causing fear or dread or terror'),\n",
+ " ('dire', 'causing fear or dread or terror'),\n",
+ " ('frightening', 'causing fear or dread or terror'),\n",
+ " ('fearsome', 'causing fear or dread or terror')]},\n",
+ " {'answer': 'dirty',\n",
+ " 'hint': 'synonyms for dirty',\n",
+ " 'clues': [('unsporting', 'violating accepted standards or rules'),\n",
+ " ('lousy', 'vile; despicable'),\n",
+ " ('cheating', 'violating accepted standards or rules'),\n",
+ " ('foul', 'violating accepted standards or rules'),\n",
+ " ('muddy',\n",
+ " '(of color) discolored by impurities; not bright and clear; is often used in combination'),\n",
+ " ('contaminating',\n",
+ " 'spreading pollution or contamination; especially radioactive contamination'),\n",
+ " ('sordid', 'unethical or dishonest'),\n",
+ " ('pestiferous', 'contaminated with infecting organisms; ; - Jane Austen'),\n",
+ " ('unclean', 'soiled or likely to soil with dirt or grime'),\n",
+ " ('dingy',\n",
+ " '(of color) discolored by impurities; not bright and clear; is often used in combination'),\n",
+ " ('unsportsmanlike', 'violating accepted standards or rules'),\n",
+ " ('marked-up', '(of a manuscript) defaced with changes'),\n",
+ " ('soiled', 'soiled or likely to soil with dirt or grime'),\n",
+ " ('filthy', 'vile; despicable'),\n",
+ " ('ill-gotten', 'obtained illegally or by improper means'),\n",
+ " ('muddied',\n",
+ " '(of color) discolored by impurities; not bright and clear; is often used in combination')]},\n",
+ " {'answer': 'disappointed',\n",
+ " 'hint': 'synonyms for disappointed',\n",
+ " 'clues': [('thwarted', 'disappointingly unsuccessful'),\n",
+ " ('frustrated', 'disappointingly unsuccessful'),\n",
+ " ('discomfited', 'disappointingly unsuccessful'),\n",
+ " ('foiled', 'disappointingly unsuccessful'),\n",
+ " ('defeated', 'disappointingly unsuccessful')]},\n",
+ " {'answer': 'disastrous',\n",
+ " 'hint': 'synonyms for disastrous',\n",
+ " 'clues': [('fateful',\n",
+ " '(of events) having extremely unfortunate or dire consequences; bringing ruin; ; ; ; - Charles Darwin; - Douglas MacArthur'),\n",
+ " ('fatal',\n",
+ " '(of events) having extremely unfortunate or dire consequences; bringing ruin; ; ; ; - Charles Darwin; - Douglas MacArthur'),\n",
+ " ('calamitous',\n",
+ " '(of events) having extremely unfortunate or dire consequences; bringing ruin; ; ; ; - Charles Darwin; - Douglas MacArthur'),\n",
+ " ('black',\n",
+ " '(of events) having extremely unfortunate or dire consequences; bringing ruin; ; ; ; - Charles Darwin; - Douglas MacArthur')]},\n",
+ " {'answer': 'discharged',\n",
+ " 'hint': 'synonyms for discharged',\n",
+ " 'clues': [('fired', 'having lost your job'),\n",
+ " ('dismissed', 'having lost your job'),\n",
+ " ('pink-slipped', 'having lost your job'),\n",
+ " ('laid-off', 'having lost your job')]},\n",
+ " {'answer': 'discomfited',\n",
+ " 'hint': 'synonyms for discomfited',\n",
+ " 'clues': [('disappointed', 'disappointingly unsuccessful'),\n",
+ " ('thwarted', 'disappointingly unsuccessful'),\n",
+ " ('frustrated', 'disappointingly unsuccessful'),\n",
+ " ('foiled', 'disappointingly unsuccessful'),\n",
+ " ('defeated', 'disappointingly unsuccessful')]},\n",
+ " {'answer': 'disconnected',\n",
+ " 'hint': 'synonyms for disconnected',\n",
+ " 'clues': [('unconnected', 'lacking orderly continuity'),\n",
+ " ('disordered', 'lacking orderly continuity'),\n",
+ " ('illogical', 'lacking orderly continuity'),\n",
+ " ('disunited',\n",
+ " 'having been divided; having the unity destroyed; -Samuel Lubell; - E.B.White'),\n",
+ " ('fragmented',\n",
+ " 'having been divided; having the unity destroyed; -Samuel Lubell; - E.B.White'),\n",
+ " ('split',\n",
+ " 'having been divided; having the unity destroyed; -Samuel Lubell; - E.B.White'),\n",
+ " ('scattered', 'lacking orderly continuity'),\n",
+ " ('garbled', 'lacking orderly continuity'),\n",
+ " ('staccato',\n",
+ " '(music) marked by or composed of disconnected parts or sounds; cut short crisply'),\n",
+ " ('disjointed', 'lacking orderly continuity'),\n",
+ " ('confused', 'lacking orderly continuity'),\n",
+ " ('abrupt', 'marked by sudden changes in subject and sharp transitions')]},\n",
+ " {'answer': 'disconsolate',\n",
+ " 'hint': 'synonyms for disconsolate',\n",
+ " 'clues': [('drab', 'causing dejection'),\n",
+ " ('dismal', 'causing dejection'),\n",
+ " ('gloomy', 'causing dejection'),\n",
+ " ('blue', 'causing dejection'),\n",
+ " ('grim', 'causing dejection'),\n",
+ " ('sorry', 'causing dejection'),\n",
+ " ('inconsolable', 'sad beyond comforting; incapable of being consoled'),\n",
+ " ('dreary', 'causing dejection'),\n",
+ " ('dingy', 'causing dejection'),\n",
+ " ('dark', 'causing dejection')]},\n",
+ " {'answer': 'discredited',\n",
+ " 'hint': 'synonyms for discredited',\n",
+ " 'clues': [('disgraced', 'suffering shame'),\n",
+ " ('dishonored', 'suffering shame'),\n",
+ " ('damaged', 'being unjustly brought into disrepute'),\n",
+ " ('shamed', 'suffering shame')]},\n",
+ " {'answer': 'discrepant',\n",
+ " 'hint': 'synonyms for discrepant',\n",
+ " 'clues': [('inconsistent', 'not in agreement'),\n",
+ " ('dissonant', 'not in accord'),\n",
+ " ('at variance', 'not in accord'),\n",
+ " ('incompatible', 'not compatible with other facts')]},\n",
+ " {'answer': 'discriminating',\n",
+ " 'hint': 'synonyms for discriminating',\n",
+ " 'clues': [('penetrating',\n",
+ " 'having or demonstrating ability to recognize or draw fine distinctions'),\n",
+ " ('piercing',\n",
+ " 'having or demonstrating ability to recognize or draw fine distinctions'),\n",
+ " ('incisive',\n",
+ " 'having or demonstrating ability to recognize or draw fine distinctions'),\n",
+ " ('sharp',\n",
+ " 'having or demonstrating ability to recognize or draw fine distinctions'),\n",
+ " ('penetrative',\n",
+ " 'having or demonstrating ability to recognize or draw fine distinctions'),\n",
+ " ('acute',\n",
+ " 'having or demonstrating ability to recognize or draw fine distinctions'),\n",
+ " ('knifelike',\n",
+ " 'having or demonstrating ability to recognize or draw fine distinctions'),\n",
+ " ('keen',\n",
+ " 'having or demonstrating ability to recognize or draw fine distinctions')]},\n",
+ " {'answer': 'discriminatory',\n",
+ " 'hint': 'synonyms for discriminatory',\n",
+ " 'clues': [('discriminative', 'capable of making fine distinctions'),\n",
+ " ('preferential', 'manifesting partiality'),\n",
+ " ('prejudiced',\n",
+ " 'being biased or having a belief or attitude formed beforehand'),\n",
+ " ('invidious', 'containing or implying a slight or showing prejudice')]},\n",
+ " {'answer': 'discursive',\n",
+ " 'hint': 'synonyms for discursive',\n",
+ " 'clues': [('excursive',\n",
+ " '(of e.g. speech and writing) tending to depart from the main point or cover a wide range of subjects'),\n",
+ " ('dianoetic',\n",
+ " 'proceeding to a conclusion by reason or argument rather than intuition'),\n",
+ " ('digressive',\n",
+ " '(of e.g. speech and writing) tending to depart from the main point or cover a wide range of subjects'),\n",
+ " ('rambling',\n",
+ " '(of e.g. speech and writing) tending to depart from the main point or cover a wide range of subjects')]},\n",
+ " {'answer': 'disdainful',\n",
+ " 'hint': 'synonyms for disdainful',\n",
+ " 'clues': [('insulting', 'expressing extreme contempt'),\n",
+ " ('contemptuous', 'expressing extreme contempt'),\n",
+ " ('scornful', 'expressing extreme contempt'),\n",
+ " ('lordly',\n",
+ " 'having or showing arrogant superiority to and disdain of those one views as unworthy; ; ; ; ; ; ; - W.L.Shirer'),\n",
+ " ('sniffy',\n",
+ " 'having or showing arrogant superiority to and disdain of those one views as unworthy; ; ; ; ; ; ; - W.L.Shirer'),\n",
+ " ('supercilious',\n",
+ " 'having or showing arrogant superiority to and disdain of those one views as unworthy; ; ; ; ; ; ; - W.L.Shirer'),\n",
+ " ('haughty',\n",
+ " 'having or showing arrogant superiority to and disdain of those one views as unworthy; ; ; ; ; ; ; - W.L.Shirer'),\n",
+ " ('swaggering',\n",
+ " 'having or showing arrogant superiority to and disdain of those one views as unworthy; ; ; ; ; ; ; - W.L.Shirer'),\n",
+ " ('imperious',\n",
+ " 'having or showing arrogant superiority to and disdain of those one views as unworthy; ; ; ; ; ; ; - W.L.Shirer'),\n",
+ " ('prideful',\n",
+ " 'having or showing arrogant superiority to and disdain of those one views as unworthy; ; ; ; ; ; ; - W.L.Shirer'),\n",
+ " ('overbearing',\n",
+ " 'having or showing arrogant superiority to and disdain of those one views as unworthy; ; ; ; ; ; ; - W.L.Shirer')]},\n",
+ " {'answer': 'disgraceful',\n",
+ " 'hint': 'synonyms for disgraceful',\n",
+ " 'clues': [('shocking',\n",
+ " 'giving offense to moral sensibilities and injurious to reputation; ; - Thackeray'),\n",
+ " ('black',\n",
+ " '(used of conduct or character) deserving or bringing disgrace or shame; - Rachel Carson'),\n",
+ " ('scandalous',\n",
+ " 'giving offense to moral sensibilities and injurious to reputation; ; - Thackeray'),\n",
+ " ('ignominious',\n",
+ " '(used of conduct or character) deserving or bringing disgrace or shame; - Rachel Carson'),\n",
+ " ('shameful',\n",
+ " '(used of conduct or character) deserving or bringing disgrace or shame; - Rachel Carson'),\n",
+ " ('opprobrious',\n",
+ " '(used of conduct or character) deserving or bringing disgrace or shame; - Rachel Carson'),\n",
+ " ('inglorious',\n",
+ " '(used of conduct or character) deserving or bringing disgrace or shame; - Rachel Carson')]},\n",
+ " {'answer': 'disgusted',\n",
+ " 'hint': 'synonyms for disgusted',\n",
+ " 'clues': [('sick', 'having a strong distaste from surfeit'),\n",
+ " ('fed up', 'having a strong distaste from surfeit'),\n",
+ " ('tired of', 'having a strong distaste from surfeit'),\n",
+ " ('sick of', 'having a strong distaste from surfeit')]},\n",
+ " {'answer': 'disgustful',\n",
+ " 'hint': 'synonyms for disgustful',\n",
+ " 'clues': [('foul', 'highly offensive; arousing aversion or disgust'),\n",
+ " ('repellant', 'highly offensive; arousing aversion or disgust'),\n",
+ " ('disgusting', 'highly offensive; arousing aversion or disgust'),\n",
+ " ('skanky', 'highly offensive; arousing aversion or disgust'),\n",
+ " ('repelling', 'highly offensive; arousing aversion or disgust'),\n",
+ " ('wicked', 'highly offensive; arousing aversion or disgust'),\n",
+ " ('distasteful', 'highly offensive; arousing aversion or disgust'),\n",
+ " ('loathsome', 'highly offensive; arousing aversion or disgust'),\n",
+ " ('yucky', 'highly offensive; arousing aversion or disgust'),\n",
+ " ('revolting', 'highly offensive; arousing aversion or disgust'),\n",
+ " ('loathly', 'highly offensive; arousing aversion or disgust')]},\n",
+ " {'answer': 'disgusting',\n",
+ " 'hint': 'synonyms for disgusting',\n",
+ " 'clues': [('foul', 'highly offensive; arousing aversion or disgust'),\n",
+ " ('repellant', 'highly offensive; arousing aversion or disgust'),\n",
+ " ('disgustful', 'highly offensive; arousing aversion or disgust'),\n",
+ " ('skanky', 'highly offensive; arousing aversion or disgust'),\n",
+ " ('repelling', 'highly offensive; arousing aversion or disgust'),\n",
+ " ('wicked', 'highly offensive; arousing aversion or disgust'),\n",
+ " ('distasteful', 'highly offensive; arousing aversion or disgust'),\n",
+ " ('loathsome', 'highly offensive; arousing aversion or disgust'),\n",
+ " ('yucky', 'highly offensive; arousing aversion or disgust'),\n",
+ " ('revolting', 'highly offensive; arousing aversion or disgust'),\n",
+ " ('loathly', 'highly offensive; arousing aversion or disgust')]},\n",
+ " {'answer': 'disheveled',\n",
+ " 'hint': 'synonyms for disheveled',\n",
+ " 'clues': [('tousled',\n",
+ " 'in disarray; extremely disorderly; ; ; ; ; - Al Spiers'),\n",
+ " ('rumpled', 'in disarray; extremely disorderly; ; ; ; ; - Al Spiers'),\n",
+ " ('dishevelled', 'in disarray; extremely disorderly; ; ; ; ; - Al Spiers'),\n",
+ " ('frowzled', 'in disarray; extremely disorderly; ; ; ; ; - Al Spiers')]},\n",
+ " {'answer': 'dishevelled',\n",
+ " 'hint': 'synonyms for dishevelled',\n",
+ " 'clues': [('tousled',\n",
+ " 'in disarray; extremely disorderly; ; ; ; ; - Al Spiers'),\n",
+ " ('rumpled', 'in disarray; extremely disorderly; ; ; ; ; - Al Spiers'),\n",
+ " ('disheveled', 'in disarray; extremely disorderly; ; ; ; ; - Al Spiers'),\n",
+ " ('frowzled', 'in disarray; extremely disorderly; ; ; ; ; - Al Spiers')]},\n",
+ " {'answer': 'dishonest',\n",
+ " 'hint': 'synonyms for dishonest',\n",
+ " 'clues': [('purchasable', 'capable of being corrupted'),\n",
+ " ('corruptible', 'capable of being corrupted'),\n",
+ " ('venal', 'capable of being corrupted'),\n",
+ " ('bribable', 'capable of being corrupted'),\n",
+ " ('dishonorable',\n",
+ " 'deceptive or fraudulent; disposed to cheat or defraud or deceive')]},\n",
+ " {'answer': 'disjointed',\n",
+ " 'hint': 'synonyms for disjointed',\n",
+ " 'clues': [('unconnected', 'lacking orderly continuity'),\n",
+ " ('disordered', 'lacking orderly continuity'),\n",
+ " ('illogical', 'lacking orderly continuity'),\n",
+ " ('separated', 'separated at the joint'),\n",
+ " ('disconnected', 'lacking orderly continuity'),\n",
+ " ('scattered', 'lacking orderly continuity'),\n",
+ " ('garbled', 'lacking orderly continuity'),\n",
+ " ('dislocated', 'separated at the joint'),\n",
+ " ('confused', 'lacking orderly continuity')]},\n",
+ " {'answer': 'dismal',\n",
+ " 'hint': 'synonyms for dismal',\n",
+ " 'clues': [('drab', 'causing dejection'),\n",
+ " ('gloomy', 'causing dejection'),\n",
+ " ('blue', 'causing dejection'),\n",
+ " ('grim', 'causing dejection'),\n",
+ " ('sorry', 'causing dejection'),\n",
+ " ('dreary', 'causing dejection'),\n",
+ " ('disconsolate', 'causing dejection'),\n",
+ " ('dingy', 'causing dejection'),\n",
+ " ('dark', 'causing dejection')]},\n",
+ " {'answer': 'dismissed',\n",
+ " 'hint': 'synonyms for dismissed',\n",
+ " 'clues': [('fired', 'having lost your job'),\n",
+ " ('pink-slipped', 'having lost your job'),\n",
+ " ('discharged', 'having lost your job'),\n",
+ " ('laid-off', 'having lost your job')]},\n",
+ " {'answer': 'disordered',\n",
+ " 'hint': 'synonyms for disordered',\n",
+ " 'clues': [('confused', 'lacking orderly continuity'),\n",
+ " ('unconnected', 'lacking orderly continuity'),\n",
+ " ('upset', 'thrown into a state of disarray or confusion'),\n",
+ " ('illogical', 'lacking orderly continuity'),\n",
+ " ('unordered', 'not arranged in order'),\n",
+ " ('disconnected', 'lacking orderly continuity'),\n",
+ " ('scattered', 'lacking orderly continuity'),\n",
+ " ('garbled', 'lacking orderly continuity'),\n",
+ " ('disjointed', 'lacking orderly continuity'),\n",
+ " ('broken', 'thrown into a state of disarray or confusion')]},\n",
+ " {'answer': 'disorderly',\n",
+ " 'hint': 'synonyms for disorderly',\n",
+ " 'clues': [('topsy-turvy', 'in utter disorder'),\n",
+ " ('hugger-mugger', 'in utter disorder'),\n",
+ " ('jumbled', 'in utter disorder'),\n",
+ " ('higgledy-piggledy', 'in utter disorder'),\n",
+ " ('chaotic', 'completely unordered and unpredictable and confusing')]},\n",
+ " {'answer': 'disoriented',\n",
+ " 'hint': 'synonyms for disoriented',\n",
+ " 'clues': [('lost',\n",
+ " 'having lost your bearings; confused as to time or place or personal identity'),\n",
+ " ('anomic', 'socially disoriented'),\n",
+ " ('confused',\n",
+ " 'having lost your bearings; confused as to time or place or personal identity'),\n",
+ " ('alienated', 'socially disoriented')]},\n",
+ " {'answer': 'dispirited',\n",
+ " 'hint': 'synonyms for dispirited',\n",
+ " 'clues': [('low-spirited', 'filled with melancholy and despondency'),\n",
+ " ('listless', 'marked by low spirits; showing no enthusiasm'),\n",
+ " ('downhearted', 'filled with melancholy and despondency'),\n",
+ " ('down in the mouth', 'filled with melancholy and despondency'),\n",
+ " ('depressed', 'filled with melancholy and despondency'),\n",
+ " ('downcast', 'filled with melancholy and despondency'),\n",
+ " ('blue', 'filled with melancholy and despondency'),\n",
+ " ('low', 'filled with melancholy and despondency'),\n",
+ " ('gloomy', 'filled with melancholy and despondency'),\n",
+ " ('grim', 'filled with melancholy and despondency'),\n",
+ " ('down', 'filled with melancholy and despondency')]},\n",
+ " {'answer': 'disposed',\n",
+ " 'hint': 'synonyms for disposed',\n",
+ " 'clues': [('apt', \"(usually followed by `to') naturally disposed toward\"),\n",
+ " ('given', \"(usually followed by `to') naturally disposed toward\"),\n",
+ " ('fain', 'having made preparations'),\n",
+ " ('minded', \"(usually followed by `to') naturally disposed toward\"),\n",
+ " ('tending', \"(usually followed by `to') naturally disposed toward\"),\n",
+ " ('inclined', 'having made preparations'),\n",
+ " ('prepared', 'having made preparations')]},\n",
+ " {'answer': 'disputatious',\n",
+ " 'hint': 'synonyms for disputatious',\n",
+ " 'clues': [('combative',\n",
+ " 'inclined or showing an inclination to dispute or disagree, even to engage in law suits'),\n",
+ " ('disputative',\n",
+ " 'inclined or showing an inclination to dispute or disagree, even to engage in law suits'),\n",
+ " ('contentious',\n",
+ " 'inclined or showing an inclination to dispute or disagree, even to engage in law suits'),\n",
+ " ('litigious',\n",
+ " 'inclined or showing an inclination to dispute or disagree, even to engage in law suits')]},\n",
+ " {'answer': 'disputative',\n",
+ " 'hint': 'synonyms for disputative',\n",
+ " 'clues': [('combative',\n",
+ " 'inclined or showing an inclination to dispute or disagree, even to engage in law suits'),\n",
+ " ('contentious',\n",
+ " 'inclined or showing an inclination to dispute or disagree, even to engage in law suits'),\n",
+ " ('litigious',\n",
+ " 'inclined or showing an inclination to dispute or disagree, even to engage in law suits'),\n",
+ " ('disputatious',\n",
+ " 'inclined or showing an inclination to dispute or disagree, even to engage in law suits')]},\n",
+ " {'answer': 'disquieted',\n",
+ " 'hint': 'synonyms for disquieted',\n",
+ " 'clues': [('distressed',\n",
+ " 'afflicted with or marked by anxious uneasiness or trouble or grief'),\n",
+ " ('disturbed',\n",
+ " 'afflicted with or marked by anxious uneasiness or trouble or grief'),\n",
+ " ('worried',\n",
+ " 'afflicted with or marked by anxious uneasiness or trouble or grief'),\n",
+ " ('upset',\n",
+ " 'afflicted with or marked by anxious uneasiness or trouble or grief')]},\n",
+ " {'answer': 'disruptive',\n",
+ " 'hint': 'synonyms for disruptive',\n",
+ " 'clues': [('riotous',\n",
+ " 'characterized by unrest or disorder or insubordination'),\n",
+ " ('tumultuous', 'characterized by unrest or disorder or insubordination'),\n",
+ " ('turbulent', 'characterized by unrest or disorder or insubordination'),\n",
+ " ('troubled', 'characterized by unrest or disorder or insubordination')]},\n",
+ " {'answer': 'dissipated',\n",
+ " 'hint': 'synonyms for dissipated',\n",
+ " 'clues': [('betting',\n",
+ " 'preoccupied with the pursuit of pleasure and especially games of chance'),\n",
+ " ('libertine', 'unrestrained by convention or morality'),\n",
+ " ('sporting',\n",
+ " 'preoccupied with the pursuit of pleasure and especially games of chance'),\n",
+ " ('riotous', 'unrestrained by convention or morality'),\n",
+ " ('dissolute', 'unrestrained by convention or morality'),\n",
+ " ('degenerate', 'unrestrained by convention or morality'),\n",
+ " ('degraded', 'unrestrained by convention or morality'),\n",
+ " ('profligate', 'unrestrained by convention or morality'),\n",
+ " ('card-playing',\n",
+ " 'preoccupied with the pursuit of pleasure and especially games of chance'),\n",
+ " ('fast', 'unrestrained by convention or morality'),\n",
+ " ('debauched', 'unrestrained by convention or morality')]},\n",
+ " {'answer': 'dissolute',\n",
+ " 'hint': 'synonyms for dissolute',\n",
+ " 'clues': [('libertine', 'unrestrained by convention or morality'),\n",
+ " ('riotous', 'unrestrained by convention or morality'),\n",
+ " ('degenerate', 'unrestrained by convention or morality'),\n",
+ " ('degraded', 'unrestrained by convention or morality'),\n",
+ " ('profligate', 'unrestrained by convention or morality'),\n",
+ " ('dissipated', 'unrestrained by convention or morality'),\n",
+ " ('fast', 'unrestrained by convention or morality'),\n",
+ " ('debauched', 'unrestrained by convention or morality')]},\n",
+ " {'answer': 'dissonant',\n",
+ " 'hint': 'synonyms for dissonant',\n",
+ " 'clues': [('inharmonic', 'lacking in harmony'),\n",
+ " ('discordant', 'lacking in harmony'),\n",
+ " ('discrepant', 'not in accord'),\n",
+ " ('disharmonious', 'lacking in harmony'),\n",
+ " ('at variance', 'not in accord'),\n",
+ " ('unresolved',\n",
+ " 'characterized by musical dissonance; harmonically unresolved')]},\n",
+ " {'answer': 'distant',\n",
+ " 'hint': 'synonyms for distant',\n",
+ " 'clues': [('removed', 'separate or apart in time'),\n",
+ " ('remote', 'far apart in relevance or relationship or kinship'),\n",
+ " ('aloof', 'remote in manner'),\n",
+ " ('upstage', 'remote in manner')]},\n",
+ " {'answer': 'distasteful',\n",
+ " 'hint': 'synonyms for distasteful',\n",
+ " 'clues': [('foul', 'highly offensive; arousing aversion or disgust'),\n",
+ " ('repellant', 'highly offensive; arousing aversion or disgust'),\n",
+ " ('disgustful', 'highly offensive; arousing aversion or disgust'),\n",
+ " ('unsavory', 'not pleasing in odor or taste'),\n",
+ " ('disgusting', 'highly offensive; arousing aversion or disgust'),\n",
+ " ('skanky', 'highly offensive; arousing aversion or disgust'),\n",
+ " ('repelling', 'highly offensive; arousing aversion or disgust'),\n",
+ " ('wicked', 'highly offensive; arousing aversion or disgust'),\n",
+ " ('loathsome', 'highly offensive; arousing aversion or disgust'),\n",
+ " ('yucky', 'highly offensive; arousing aversion or disgust'),\n",
+ " ('revolting', 'highly offensive; arousing aversion or disgust'),\n",
+ " ('loathly', 'highly offensive; arousing aversion or disgust')]},\n",
+ " {'answer': 'distinct',\n",
+ " 'hint': 'synonyms for distinct',\n",
+ " 'clues': [('trenchant', 'clearly or sharply defined to the mind'),\n",
+ " ('distinguishable',\n",
+ " \"(often followed by `from') not alike; different in nature or quality\"),\n",
+ " ('discrete', 'constituting a separate entity or part'),\n",
+ " ('clear-cut', 'clearly or sharply defined to the mind'),\n",
+ " ('decided', 'recognizable; marked')]},\n",
+ " {'answer': 'distorted',\n",
+ " 'hint': 'synonyms for distorted',\n",
+ " 'clues': [('misshapen', 'so badly formed or out of shape as to be ugly'),\n",
+ " ('perverted', 'having an intended meaning altered or misrepresented'),\n",
+ " ('deformed', 'so badly formed or out of shape as to be ugly'),\n",
+ " ('misrepresented',\n",
+ " 'having an intended meaning altered or misrepresented'),\n",
+ " ('twisted', 'having an intended meaning altered or misrepresented'),\n",
+ " ('ill-shapen', 'so badly formed or out of shape as to be ugly'),\n",
+ " ('malformed', 'so badly formed or out of shape as to be ugly')]},\n",
+ " {'answer': 'distressed',\n",
+ " 'hint': 'synonyms for distressed',\n",
+ " 'clues': [('dysphoric', 'generalized feeling of distress'),\n",
+ " ('worried',\n",
+ " 'afflicted with or marked by anxious uneasiness or trouble or grief'),\n",
+ " ('upset',\n",
+ " 'afflicted with or marked by anxious uneasiness or trouble or grief'),\n",
+ " ('unhappy', 'generalized feeling of distress'),\n",
+ " ('in a bad way',\n",
+ " 'facing or experiencing financial trouble or difficulty'),\n",
+ " ('disturbed',\n",
+ " 'afflicted with or marked by anxious uneasiness or trouble or grief'),\n",
+ " ('disquieted',\n",
+ " 'afflicted with or marked by anxious uneasiness or trouble or grief'),\n",
+ " ('hard-pressed',\n",
+ " 'facing or experiencing financial trouble or difficulty'),\n",
+ " ('hard put', 'facing or experiencing financial trouble or difficulty'),\n",
+ " ('stressed', 'suffering severe physical strain or distress')]},\n",
+ " {'answer': 'distressful',\n",
+ " 'hint': 'synonyms for distressful',\n",
+ " 'clues': [('perturbing', 'causing distress or worry or anxiety'),\n",
+ " ('distressing', 'causing distress or worry or anxiety'),\n",
+ " ('worrisome', 'causing distress or worry or anxiety'),\n",
+ " ('troubling', 'causing distress or worry or anxiety'),\n",
+ " ('disturbing', 'causing distress or worry or anxiety'),\n",
+ " ('worrying', 'causing distress or worry or anxiety')]},\n",
+ " {'answer': 'distressing',\n",
+ " 'hint': 'synonyms for distressing',\n",
+ " 'clues': [('deplorable', 'bad; unfortunate'),\n",
+ " ('sad', 'bad; unfortunate'),\n",
+ " ('lamentable', 'bad; unfortunate'),\n",
+ " ('troubling', 'causing distress or worry or anxiety'),\n",
+ " ('disturbing', 'causing distress or worry or anxiety'),\n",
+ " ('distressful', 'causing distress or worry or anxiety'),\n",
+ " ('pitiful', 'bad; unfortunate'),\n",
+ " ('perturbing', 'causing distress or worry or anxiety'),\n",
+ " ('sorry', 'bad; unfortunate'),\n",
+ " ('worrisome', 'causing distress or worry or anxiety'),\n",
+ " ('worrying', 'causing distress or worry or anxiety')]},\n",
+ " {'answer': 'disturbed',\n",
+ " 'hint': 'synonyms for disturbed',\n",
+ " 'clues': [('unhinged', 'affected with madness or insanity'),\n",
+ " ('brainsick', 'affected with madness or insanity'),\n",
+ " ('worried',\n",
+ " 'afflicted with or marked by anxious uneasiness or trouble or grief'),\n",
+ " ('mad', 'affected with madness or insanity'),\n",
+ " ('unbalanced', 'affected with madness or insanity'),\n",
+ " ('maladjusted',\n",
+ " 'emotionally unstable and having difficulty coping with personal relationships'),\n",
+ " ('crazy', 'affected with madness or insanity'),\n",
+ " ('disquieted',\n",
+ " 'afflicted with or marked by anxious uneasiness or trouble or grief'),\n",
+ " ('demented', 'affected with madness or insanity'),\n",
+ " ('distressed',\n",
+ " 'afflicted with or marked by anxious uneasiness or trouble or grief'),\n",
+ " ('sick', 'affected with madness or insanity'),\n",
+ " ('upset',\n",
+ " 'afflicted with or marked by anxious uneasiness or trouble or grief')]},\n",
+ " {'answer': 'disturbing',\n",
+ " 'hint': 'synonyms for disturbing',\n",
+ " 'clues': [('distressful', 'causing distress or worry or anxiety'),\n",
+ " ('perturbing', 'causing distress or worry or anxiety'),\n",
+ " ('distressing', 'causing distress or worry or anxiety'),\n",
+ " ('worrisome', 'causing distress or worry or anxiety'),\n",
+ " ('troubling', 'causing distress or worry or anxiety'),\n",
+ " ('worrying', 'causing distress or worry or anxiety')]},\n",
+ " {'answer': 'divided',\n",
+ " 'hint': 'synonyms for divided',\n",
+ " 'clues': [('divided up',\n",
+ " 'distributed in portions (often equal) on the basis of a plan or purpose'),\n",
+ " ('shared out',\n",
+ " 'distributed in portions (often equal) on the basis of a plan or purpose'),\n",
+ " ('shared',\n",
+ " 'distributed in portions (often equal) on the basis of a plan or purpose'),\n",
+ " ('dual-lane',\n",
+ " 'having a median strip or island between lanes of traffic moving in opposite directions')]},\n",
+ " {'answer': 'divinatory',\n",
+ " 'hint': 'synonyms for divinatory',\n",
+ " 'clues': [('vatic',\n",
+ " 'resembling or characteristic of a prophet or prophecy'),\n",
+ " ('conjectural',\n",
+ " 'based primarily on surmise rather than adequate evidence'),\n",
+ " ('hypothetic',\n",
+ " 'based primarily on surmise rather than adequate evidence'),\n",
+ " ('suppositional',\n",
+ " 'based primarily on surmise rather than adequate evidence'),\n",
+ " ('sibylline', 'resembling or characteristic of a prophet or prophecy'),\n",
+ " ('supposititious',\n",
+ " 'based primarily on surmise rather than adequate evidence'),\n",
+ " ('mantic', 'resembling or characteristic of a prophet or prophecy'),\n",
+ " ('vatical', 'resembling or characteristic of a prophet or prophecy'),\n",
+ " ('supposed', 'based primarily on surmise rather than adequate evidence'),\n",
+ " ('sibyllic', 'resembling or characteristic of a prophet or prophecy')]},\n",
+ " {'answer': 'divine',\n",
+ " 'hint': 'synonyms for divine',\n",
+ " 'clues': [('godlike',\n",
+ " 'appropriate to or befitting a god; ; ; -R.H.Roveref'),\n",
+ " ('elysian',\n",
+ " 'being of such surpassing excellence as to suggest inspiration by the gods'),\n",
+ " ('inspired',\n",
+ " 'being of such surpassing excellence as to suggest inspiration by the gods'),\n",
+ " ('providential', 'resulting from divine providence'),\n",
+ " ('godly', 'emanating from God; ; ; -Saturday Review')]},\n",
+ " {'answer': 'dizzy',\n",
+ " 'hint': 'synonyms for dizzy',\n",
+ " 'clues': [('woozy',\n",
+ " 'having or causing a whirling sensation; liable to falling'),\n",
+ " ('lightheaded', 'lacking seriousness; given to frivolity'),\n",
+ " ('giddy', 'having or causing a whirling sensation; liable to falling'),\n",
+ " ('airheaded', 'lacking seriousness; given to frivolity'),\n",
+ " ('featherbrained', 'lacking seriousness; given to frivolity'),\n",
+ " ('empty-headed', 'lacking seriousness; given to frivolity'),\n",
+ " ('vertiginous',\n",
+ " 'having or causing a whirling sensation; liable to falling'),\n",
+ " ('silly', 'lacking seriousness; given to frivolity')]},\n",
+ " {'answer': 'doable',\n",
+ " 'hint': 'synonyms for doable',\n",
+ " 'clues': [('realizable',\n",
+ " 'capable of existing or taking place or proving true; possible to do'),\n",
+ " ('achievable',\n",
+ " 'capable of existing or taking place or proving true; possible to do'),\n",
+ " ('accomplishable',\n",
+ " 'capable of existing or taking place or proving true; possible to do'),\n",
+ " ('manageable',\n",
+ " 'capable of existing or taking place or proving true; possible to do')]},\n",
+ " {'answer': 'dodgy',\n",
+ " 'hint': 'synonyms for dodgy',\n",
+ " 'clues': [('tricky', 'marked by skill in deception'),\n",
+ " ('knavish', 'marked by skill in deception'),\n",
+ " ('dicey',\n",
+ " 'of uncertain outcome; especially fraught with risk; - New Yorker'),\n",
+ " ('sly', 'marked by skill in deception'),\n",
+ " ('slick', 'marked by skill in deception'),\n",
+ " ('wily', 'marked by skill in deception'),\n",
+ " ('chancy',\n",
+ " 'of uncertain outcome; especially fraught with risk; - New Yorker'),\n",
+ " ('foxy', 'marked by skill in deception'),\n",
+ " ('chanceful',\n",
+ " 'of uncertain outcome; especially fraught with risk; - New Yorker'),\n",
+ " ('guileful', 'marked by skill in deception'),\n",
+ " ('cunning', 'marked by skill in deception'),\n",
+ " ('crafty', 'marked by skill in deception')]},\n",
+ " {'answer': 'dog-tired',\n",
+ " 'hint': 'synonyms for dog-tired',\n",
+ " 'clues': [('fatigued',\n",
+ " 'drained of energy or effectiveness; extremely tired; completely exhausted'),\n",
+ " ('fagged',\n",
+ " 'drained of energy or effectiveness; extremely tired; completely exhausted'),\n",
+ " ('worn out',\n",
+ " 'drained of energy or effectiveness; extremely tired; completely exhausted'),\n",
+ " ('spent',\n",
+ " 'drained of energy or effectiveness; extremely tired; completely exhausted'),\n",
+ " ('exhausted',\n",
+ " 'drained of energy or effectiveness; extremely tired; completely exhausted'),\n",
+ " ('washed-out',\n",
+ " 'drained of energy or effectiveness; extremely tired; completely exhausted'),\n",
+ " ('played out',\n",
+ " 'drained of energy or effectiveness; extremely tired; completely exhausted')]},\n",
+ " {'answer': 'dogged',\n",
+ " 'hint': 'synonyms for dogged',\n",
+ " 'clues': [('tenacious', 'stubbornly unyielding; ; ; ; - T.S.Eliot'),\n",
+ " ('dour', 'stubbornly unyielding; ; ; ; - T.S.Eliot'),\n",
+ " ('pertinacious', 'stubbornly unyielding; ; ; ; - T.S.Eliot'),\n",
+ " ('persistent', 'stubbornly unyielding; ; ; ; - T.S.Eliot'),\n",
+ " ('unyielding', 'stubbornly unyielding; ; ; ; - T.S.Eliot')]},\n",
+ " {'answer': 'doled_out',\n",
+ " 'hint': 'synonyms for doled out',\n",
+ " 'clues': [('dealt out', 'given out in portions'),\n",
+ " ('parceled out', 'given out in portions'),\n",
+ " ('meted out', 'given out in portions'),\n",
+ " ('apportioned', 'given out in portions')]},\n",
+ " {'answer': 'dolled_up',\n",
+ " 'hint': 'synonyms for dolled up',\n",
+ " 'clues': [('dressed to the nines', 'dressed in fancy or formal clothing'),\n",
+ " ('spruced up', 'dressed in fancy or formal clothing'),\n",
+ " ('dressed-up', 'dressed in fancy or formal clothing'),\n",
+ " ('togged up', 'dressed in fancy or formal clothing'),\n",
+ " ('dressed', 'dressed in fancy or formal clothing'),\n",
+ " ('dressed to kill', 'dressed in fancy or formal clothing'),\n",
+ " ('spiffed up', 'dressed in fancy or formal clothing')]},\n",
+ " {'answer': 'dolorous',\n",
+ " 'hint': 'synonyms for dolorous',\n",
+ " 'clues': [('dolourous', 'showing sorrow'),\n",
+ " ('tearful', 'showing sorrow'),\n",
+ " ('lachrymose', 'showing sorrow'),\n",
+ " ('weeping', 'showing sorrow')]},\n",
+ " {'answer': 'dolourous',\n",
+ " 'hint': 'synonyms for dolourous',\n",
+ " 'clues': [('tearful', 'showing sorrow'),\n",
+ " ('lachrymose', 'showing sorrow'),\n",
+ " ('dolorous', 'showing sorrow'),\n",
+ " ('weeping', 'showing sorrow')]},\n",
+ " {'answer': 'dominant',\n",
+ " 'hint': 'synonyms for dominant',\n",
+ " 'clues': [('rife', 'most frequent or common'),\n",
+ " ('prevailing', 'most frequent or common'),\n",
+ " ('prevalent', 'most frequent or common'),\n",
+ " ('predominant', 'most frequent or common')]},\n",
+ " {'answer': 'dominating',\n",
+ " 'hint': 'synonyms for dominating',\n",
+ " 'clues': [('ascendant', 'most powerful or important or influential'),\n",
+ " ('overlooking', 'used of a height or viewpoint'),\n",
+ " ('commanding', 'used of a height or viewpoint'),\n",
+ " ('bossy',\n",
+ " 'offensively self-assured or given to exercising usually unwarranted power'),\n",
+ " ('autocratic',\n",
+ " 'offensively self-assured or given to exercising usually unwarranted power'),\n",
+ " ('high-and-mighty',\n",
+ " 'offensively self-assured or given to exercising usually unwarranted power'),\n",
+ " ('magisterial',\n",
+ " 'offensively self-assured or given to exercising usually unwarranted power'),\n",
+ " ('peremptory',\n",
+ " 'offensively self-assured or given to exercising usually unwarranted power')]},\n",
+ " {'answer': 'done_for',\n",
+ " 'hint': 'synonyms for done for',\n",
+ " 'clues': [('gone', 'destroyed or killed'),\n",
+ " ('undone', 'doomed to extinction'),\n",
+ " ('ruined', 'doomed to extinction'),\n",
+ " ('washed-up', 'doomed to extinction'),\n",
+ " ('sunk', 'doomed to extinction'),\n",
+ " ('kaput', 'destroyed or killed')]},\n",
+ " {'answer': 'doomed',\n",
+ " 'hint': 'synonyms for doomed',\n",
+ " 'clues': [('ill-omened',\n",
+ " 'marked by or promising bad fortune; ; ; ; - W.H.Prescott'),\n",
+ " ('unsaved', 'in danger of the eternal punishment of Hell'),\n",
+ " ('fated', \"(usually followed by `to') determined by tragic fate\"),\n",
+ " ('unredeemed', 'in danger of the eternal punishment of Hell'),\n",
+ " ('cursed', 'in danger of the eternal punishment of Hell'),\n",
+ " ('unlucky', 'marked by or promising bad fortune; ; ; ; - W.H.Prescott'),\n",
+ " ('ill-fated', 'marked by or promising bad fortune; ; ; ; - W.H.Prescott'),\n",
+ " ('damned', 'in danger of the eternal punishment of Hell'),\n",
+ " ('ill-starred',\n",
+ " 'marked by or promising bad fortune; ; ; ; - W.H.Prescott')]},\n",
+ " {'answer': 'dopey',\n",
+ " 'hint': 'synonyms for dopey',\n",
+ " 'clues': [('goosy', 'having or revealing stupidity'),\n",
+ " ('foolish', 'having or revealing stupidity'),\n",
+ " ('anserine', 'having or revealing stupidity'),\n",
+ " ('dopy', 'having or revealing stupidity'),\n",
+ " ('gooselike', 'having or revealing stupidity'),\n",
+ " ('jerky', 'having or revealing stupidity')]},\n",
+ " {'answer': 'dopy',\n",
+ " 'hint': 'synonyms for dopy',\n",
+ " 'clues': [('goosy', 'having or revealing stupidity'),\n",
+ " ('foolish', 'having or revealing stupidity'),\n",
+ " ('anserine', 'having or revealing stupidity'),\n",
+ " ('dopey', 'having or revealing stupidity'),\n",
+ " ('gooselike', 'having or revealing stupidity'),\n",
+ " ('jerky', 'having or revealing stupidity')]},\n",
+ " {'answer': 'dormant',\n",
+ " 'hint': 'synonyms for dormant',\n",
+ " 'clues': [('inactive', '(of e.g. volcanos) not erupting and not extinct'),\n",
+ " ('abeyant', 'inactive but capable of becoming active'),\n",
+ " ('sleeping', 'lying with head on paws as if sleeping'),\n",
+ " ('torpid', 'in a condition of biological rest or suspended animation'),\n",
+ " ('hibernating',\n",
+ " 'in a condition of biological rest or suspended animation')]},\n",
+ " {'answer': 'dotted',\n",
+ " 'hint': 'synonyms for dotted',\n",
+ " 'clues': [('dashed', 'having gaps or spaces'),\n",
+ " ('specked', 'having a pattern of dots'),\n",
+ " ('flecked', 'having a pattern of dots'),\n",
+ " ('stippled', 'having a pattern of dots')]},\n",
+ " {'answer': 'dotty',\n",
+ " 'hint': 'synonyms for dotty',\n",
+ " 'clues': [('wild', 'intensely enthusiastic about or preoccupied with'),\n",
+ " ('crackers', 'informal or slang terms for mentally irregular'),\n",
+ " ('nuts', 'informal or slang terms for mentally irregular'),\n",
+ " ('loony', 'informal or slang terms for mentally irregular'),\n",
+ " ('crazy', 'intensely enthusiastic about or preoccupied with'),\n",
+ " ('batty', 'informal or slang terms for mentally irregular'),\n",
+ " ('cracked', 'informal or slang terms for mentally irregular'),\n",
+ " ('balmy', 'informal or slang terms for mentally irregular'),\n",
+ " ('bats', 'informal or slang terms for mentally irregular'),\n",
+ " ('barmy', 'informal or slang terms for mentally irregular'),\n",
+ " ('wacky', 'informal or slang terms for mentally irregular'),\n",
+ " ('gaga', 'intensely enthusiastic about or preoccupied with'),\n",
+ " ('daft', 'informal or slang terms for mentally irregular'),\n",
+ " ('loco', 'informal or slang terms for mentally irregular'),\n",
+ " ('bonkers', 'informal or slang terms for mentally irregular'),\n",
+ " ('nutty', 'informal or slang terms for mentally irregular'),\n",
+ " ('haywire', 'informal or slang terms for mentally irregular'),\n",
+ " ('buggy', 'informal or slang terms for mentally irregular'),\n",
+ " ('kookie', 'informal or slang terms for mentally irregular'),\n",
+ " ('fruity', 'informal or slang terms for mentally irregular'),\n",
+ " ('round the bend', 'informal or slang terms for mentally irregular'),\n",
+ " ('kooky', 'informal or slang terms for mentally irregular'),\n",
+ " ('loopy', 'informal or slang terms for mentally irregular')]},\n",
+ " {'answer': 'double',\n",
+ " 'hint': 'synonyms for double',\n",
+ " 'clues': [('doubled', 'twice as great or many'),\n",
+ " ('threefold',\n",
+ " 'having more than one decidedly dissimilar aspects or qualities; ; - R.W.Emerson; -Frederick Harrison'),\n",
+ " ('twofold',\n",
+ " 'having more than one decidedly dissimilar aspects or qualities; ; - R.W.Emerson; -Frederick Harrison'),\n",
+ " ('bivalent',\n",
+ " 'used of homologous chromosomes associated in pairs in synapsis'),\n",
+ " ('dual',\n",
+ " 'having more than one decidedly dissimilar aspects or qualities; ; - R.W.Emerson; -Frederick Harrison'),\n",
+ " ('treble',\n",
+ " 'having more than one decidedly dissimilar aspects or qualities; ; - R.W.Emerson; -Frederick Harrison'),\n",
+ " ('duple',\n",
+ " 'consisting of or involving two parts or components usually in pairs'),\n",
+ " ('forked', 'having two meanings with intent to deceive')]},\n",
+ " {'answer': 'double-dealing',\n",
+ " 'hint': 'synonyms for double-dealing',\n",
+ " 'clues': [('ambidextrous',\n",
+ " 'marked by deliberate deceptiveness especially by pretending one set of feelings and acting under the influence of another; - Israel Zangwill; ; - W.M.Thackeray'),\n",
+ " ('double-tongued',\n",
+ " 'marked by deliberate deceptiveness especially by pretending one set of feelings and acting under the influence of another; - Israel Zangwill; ; - W.M.Thackeray'),\n",
+ " ('deceitful',\n",
+ " 'marked by deliberate deceptiveness especially by pretending one set of feelings and acting under the influence of another; - Israel Zangwill; ; - W.M.Thackeray'),\n",
+ " ('double-faced',\n",
+ " 'marked by deliberate deceptiveness especially by pretending one set of feelings and acting under the influence of another; - Israel Zangwill; ; - W.M.Thackeray'),\n",
+ " ('duplicitous',\n",
+ " 'marked by deliberate deceptiveness especially by pretending one set of feelings and acting under the influence of another; - Israel Zangwill; ; - W.M.Thackeray'),\n",
+ " ('two-faced',\n",
+ " 'marked by deliberate deceptiveness especially by pretending one set of feelings and acting under the influence of another; - Israel Zangwill; ; - W.M.Thackeray')]},\n",
+ " {'answer': 'double-dyed',\n",
+ " 'hint': 'synonyms for double-dyed',\n",
+ " 'clues': [('sodding',\n",
+ " 'without qualification; used informally as (often pejorative) intensifiers'),\n",
+ " ('pure',\n",
+ " 'without qualification; used informally as (often pejorative) intensifiers'),\n",
+ " ('stark',\n",
+ " 'without qualification; used informally as (often pejorative) intensifiers'),\n",
+ " ('utter',\n",
+ " 'without qualification; used informally as (often pejorative) intensifiers'),\n",
+ " ('consummate',\n",
+ " 'without qualification; used informally as (often pejorative) intensifiers'),\n",
+ " ('complete',\n",
+ " 'without qualification; used informally as (often pejorative) intensifiers'),\n",
+ " ('perfect',\n",
+ " 'without qualification; used informally as (often pejorative) intensifiers'),\n",
+ " ('everlasting',\n",
+ " 'without qualification; used informally as (often pejorative) intensifiers'),\n",
+ " ('staring',\n",
+ " 'without qualification; used informally as (often pejorative) intensifiers'),\n",
+ " ('thoroughgoing',\n",
+ " 'without qualification; used informally as (often pejorative) intensifiers'),\n",
+ " ('arrant',\n",
+ " 'without qualification; used informally as (often pejorative) intensifiers'),\n",
+ " ('gross',\n",
+ " 'without qualification; used informally as (often pejorative) intensifiers'),\n",
+ " ('unadulterated',\n",
+ " 'without qualification; used informally as (often pejorative) intensifiers')]},\n",
+ " {'answer': 'double-faced',\n",
+ " 'hint': 'synonyms for double-faced',\n",
+ " 'clues': [('two-faced',\n",
+ " 'marked by deliberate deceptiveness especially by pretending one set of feelings and acting under the influence of another; - Israel Zangwill; ; - W.M.Thackeray'),\n",
+ " ('ambidextrous',\n",
+ " 'marked by deliberate deceptiveness especially by pretending one set of feelings and acting under the influence of another; - Israel Zangwill; ; - W.M.Thackeray'),\n",
+ " ('double-tongued',\n",
+ " 'marked by deliberate deceptiveness especially by pretending one set of feelings and acting under the influence of another; - Israel Zangwill; ; - W.M.Thackeray'),\n",
+ " ('deceitful',\n",
+ " 'marked by deliberate deceptiveness especially by pretending one set of feelings and acting under the influence of another; - Israel Zangwill; ; - W.M.Thackeray'),\n",
+ " ('duplicitous',\n",
+ " 'marked by deliberate deceptiveness especially by pretending one set of feelings and acting under the influence of another; - Israel Zangwill; ; - W.M.Thackeray'),\n",
+ " ('double-dealing',\n",
+ " 'marked by deliberate deceptiveness especially by pretending one set of feelings and acting under the influence of another; - Israel Zangwill; ; - W.M.Thackeray')]},\n",
+ " {'answer': 'double-tongued',\n",
+ " 'hint': 'synonyms for double-tongued',\n",
+ " 'clues': [('two-faced',\n",
+ " 'marked by deliberate deceptiveness especially by pretending one set of feelings and acting under the influence of another; - Israel Zangwill; ; - W.M.Thackeray'),\n",
+ " ('ambidextrous',\n",
+ " 'marked by deliberate deceptiveness especially by pretending one set of feelings and acting under the influence of another; - Israel Zangwill; ; - W.M.Thackeray'),\n",
+ " ('deceitful',\n",
+ " 'marked by deliberate deceptiveness especially by pretending one set of feelings and acting under the influence of another; - Israel Zangwill; ; - W.M.Thackeray'),\n",
+ " ('double-faced',\n",
+ " 'marked by deliberate deceptiveness especially by pretending one set of feelings and acting under the influence of another; - Israel Zangwill; ; - W.M.Thackeray'),\n",
+ " ('duplicitous',\n",
+ " 'marked by deliberate deceptiveness especially by pretending one set of feelings and acting under the influence of another; - Israel Zangwill; ; - W.M.Thackeray'),\n",
+ " ('double-dealing',\n",
+ " 'marked by deliberate deceptiveness especially by pretending one set of feelings and acting under the influence of another; - Israel Zangwill; ; - W.M.Thackeray')]},\n",
+ " {'answer': 'doubtful',\n",
+ " 'hint': 'synonyms for doubtful',\n",
+ " 'clues': [('tentative', 'unsettled in mind or opinion'),\n",
+ " ('dubious', 'open to doubt or suspicion; ; ; ; - Karen Horney'),\n",
+ " ('in question', 'open to doubt or suspicion; ; ; ; - Karen Horney'),\n",
+ " ('dubitable', 'open to doubt or suspicion; ; ; ; - Karen Horney')]},\n",
+ " {'answer': 'doughnut-shaped',\n",
+ " 'hint': 'synonyms for doughnut-shaped',\n",
+ " 'clues': [('annulated', 'shaped like a ring'),\n",
+ " ('ring-shaped', 'shaped like a ring'),\n",
+ " ('annular', 'shaped like a ring'),\n",
+ " ('circinate', 'shaped like a ring'),\n",
+ " ('ringed', 'shaped like a ring')]},\n",
+ " {'answer': 'dour',\n",
+ " 'hint': 'synonyms for dour',\n",
+ " 'clues': [('persistent', 'stubbornly unyielding; ; ; ; - T.S.Eliot'),\n",
+ " ('unyielding', 'stubbornly unyielding; ; ; ; - T.S.Eliot'),\n",
+ " ('forbidding',\n",
+ " 'harshly uninviting or formidable in manner or appearance; ; ; ; - J.M.Barrie'),\n",
+ " ('tenacious', 'stubbornly unyielding; ; ; ; - T.S.Eliot'),\n",
+ " ('moody', 'showing a brooding ill humor; ; ; ; ; ; - Bruce Bliven'),\n",
+ " ('morose', 'showing a brooding ill humor; ; ; ; ; ; - Bruce Bliven'),\n",
+ " ('grim',\n",
+ " 'harshly uninviting or formidable in manner or appearance; ; ; ; - J.M.Barrie'),\n",
+ " ('sour', 'showing a brooding ill humor; ; ; ; ; ; - Bruce Bliven'),\n",
+ " ('pertinacious', 'stubbornly unyielding; ; ; ; - T.S.Eliot'),\n",
+ " ('dogged', 'stubbornly unyielding; ; ; ; - T.S.Eliot'),\n",
+ " ('sullen', 'showing a brooding ill humor; ; ; ; ; ; - Bruce Bliven'),\n",
+ " ('glowering', 'showing a brooding ill humor; ; ; ; ; ; - Bruce Bliven'),\n",
+ " ('saturnine', 'showing a brooding ill humor; ; ; ; ; ; - Bruce Bliven'),\n",
+ " ('glum', 'showing a brooding ill humor; ; ; ; ; ; - Bruce Bliven'),\n",
+ " ('dark', 'showing a brooding ill humor; ; ; ; ; ; - Bruce Bliven')]},\n",
+ " {'answer': 'down',\n",
+ " 'hint': 'synonyms for down',\n",
+ " 'clues': [('low-spirited', 'filled with melancholy and despondency'),\n",
+ " ('downhearted', 'filled with melancholy and despondency'),\n",
+ " ('down in the mouth', 'filled with melancholy and despondency'),\n",
+ " ('depressed', 'lower than previously'),\n",
+ " ('down pat', 'understood perfectly'),\n",
+ " ('downward', 'extending or moving from a higher to a lower place'),\n",
+ " ('downcast', 'filled with melancholy and despondency'),\n",
+ " ('blue', 'filled with melancholy and despondency'),\n",
+ " ('low', 'filled with melancholy and despondency'),\n",
+ " ('dispirited', 'filled with melancholy and despondency'),\n",
+ " ('gloomy', 'filled with melancholy and despondency'),\n",
+ " ('grim', 'filled with melancholy and despondency'),\n",
+ " ('mastered', 'understood perfectly')]},\n",
+ " {'answer': 'down_in_the_mouth',\n",
+ " 'hint': 'synonyms for down in the mouth',\n",
+ " 'clues': [('low-spirited', 'filled with melancholy and despondency'),\n",
+ " ('downhearted', 'filled with melancholy and despondency'),\n",
+ " ('depressed', 'filled with melancholy and despondency'),\n",
+ " ('downcast', 'filled with melancholy and despondency'),\n",
+ " ('grim', 'filled with melancholy and despondency'),\n",
+ " ('low', 'filled with melancholy and despondency'),\n",
+ " ('dispirited', 'filled with melancholy and despondency'),\n",
+ " ('gloomy', 'filled with melancholy and despondency'),\n",
+ " ('blue', 'filled with melancholy and despondency'),\n",
+ " ('down', 'filled with melancholy and despondency')]},\n",
+ " {'answer': 'downcast',\n",
+ " 'hint': 'synonyms for downcast',\n",
+ " 'clues': [('low-spirited', 'filled with melancholy and despondency'),\n",
+ " ('downhearted', 'filled with melancholy and despondency'),\n",
+ " ('down in the mouth', 'filled with melancholy and despondency'),\n",
+ " ('depressed', 'filled with melancholy and despondency'),\n",
+ " ('grim', 'filled with melancholy and despondency'),\n",
+ " ('low', 'filled with melancholy and despondency'),\n",
+ " ('dispirited', 'filled with melancholy and despondency'),\n",
+ " ('gloomy', 'filled with melancholy and despondency'),\n",
+ " ('blue', 'filled with melancholy and despondency'),\n",
+ " ('down', 'filled with melancholy and despondency')]},\n",
+ " {'answer': 'downhearted',\n",
+ " 'hint': 'synonyms for downhearted',\n",
+ " 'clues': [('low-spirited', 'filled with melancholy and despondency'),\n",
+ " ('down in the mouth', 'filled with melancholy and despondency'),\n",
+ " ('depressed', 'filled with melancholy and despondency'),\n",
+ " ('downcast', 'filled with melancholy and despondency'),\n",
+ " ('grim', 'filled with melancholy and despondency'),\n",
+ " ('low', 'filled with melancholy and despondency'),\n",
+ " ('dispirited', 'filled with melancholy and despondency'),\n",
+ " ('gloomy', 'filled with melancholy and despondency'),\n",
+ " ('blue', 'filled with melancholy and despondency'),\n",
+ " ('down', 'filled with melancholy and despondency')]},\n",
+ " {'answer': 'downright',\n",
+ " 'hint': 'synonyms for downright',\n",
+ " 'clues': [('out-and-out',\n",
+ " 'complete and without restriction or qualification; sometimes used informally as intensifiers'),\n",
+ " ('right-down',\n",
+ " 'complete and without restriction or qualification; sometimes used informally as intensifiers'),\n",
+ " ('sheer',\n",
+ " 'complete and without restriction or qualification; sometimes used informally as intensifiers'),\n",
+ " ('rank',\n",
+ " 'complete and without restriction or qualification; sometimes used informally as intensifiers'),\n",
+ " ('absolute',\n",
+ " 'complete and without restriction or qualification; sometimes used informally as intensifiers')]},\n",
+ " {'answer': 'downy',\n",
+ " 'hint': 'synonyms for downy',\n",
+ " 'clues': [('fluffy', 'like down or as soft as down'),\n",
+ " ('flossy', 'like down or as soft as down'),\n",
+ " ('pubescent', 'covered with fine soft hairs or down'),\n",
+ " ('puberulent', 'covered with fine soft hairs or down'),\n",
+ " ('downlike', 'like down or as soft as down'),\n",
+ " ('sericeous', 'covered with fine soft hairs or down')]},\n",
+ " {'answer': 'drab',\n",
+ " 'hint': 'synonyms for drab',\n",
+ " 'clues': [('sober', 'lacking brightness or color; dull'),\n",
+ " ('dismal', 'causing dejection'),\n",
+ " ('gloomy', 'causing dejection'),\n",
+ " ('olive-drab', 'of a light brownish green color'),\n",
+ " ('blue', 'causing dejection'),\n",
+ " ('grim', 'causing dejection'),\n",
+ " ('sorry', 'causing dejection'),\n",
+ " ('dark', 'causing dejection'),\n",
+ " ('sombre', 'lacking brightness or color; dull'),\n",
+ " ('dreary', 'causing dejection'),\n",
+ " ('dingy', 'causing dejection'),\n",
+ " ('disconsolate', 'causing dejection')]},\n",
+ " {'answer': 'draped',\n",
+ " 'hint': 'synonyms for draped',\n",
+ " 'clues': [('clothed',\n",
+ " 'covered with or as if with clothes or a wrap or cloak'),\n",
+ " ('mantled', 'covered with or as if with clothes or a wrap or cloak'),\n",
+ " ('wrapped', 'covered with or as if with clothes or a wrap or cloak'),\n",
+ " ('cloaked', 'covered with or as if with clothes or a wrap or cloak')]},\n",
+ " {'answer': 'drawn',\n",
+ " 'hint': 'synonyms for drawn',\n",
+ " 'clues': [('haggard',\n",
+ " 'showing the wearing effects of overwork or care or suffering; ; ; ; - Charles Dickens'),\n",
+ " ('careworn',\n",
+ " 'showing the wearing effects of overwork or care or suffering; ; ; ; - Charles Dickens'),\n",
+ " ('raddled',\n",
+ " 'showing the wearing effects of overwork or care or suffering; ; ; ; - Charles Dickens'),\n",
+ " ('worn',\n",
+ " 'showing the wearing effects of overwork or care or suffering; ; ; ; - Charles Dickens')]},\n",
+ " {'answer': 'drawn-out',\n",
+ " 'hint': 'synonyms for drawn-out',\n",
+ " 'clues': [('extended',\n",
+ " 'relatively long in duration; tediously protracted'),\n",
+ " ('lengthy', 'relatively long in duration; tediously protracted'),\n",
+ " ('prolonged', 'relatively long in duration; tediously protracted'),\n",
+ " ('protracted', 'relatively long in duration; tediously protracted')]},\n",
+ " {'answer': 'dread',\n",
+ " 'hint': 'synonyms for dread',\n",
+ " 'clues': [('horrendous', 'causing fear or dread or terror'),\n",
+ " ('fearful', 'causing fear or dread or terror'),\n",
+ " ('direful', 'causing fear or dread or terror'),\n",
+ " ('dreaded', 'causing fear or dread or terror'),\n",
+ " ('horrific', 'causing fear or dread or terror'),\n",
+ " ('dreadful', 'causing fear or dread or terror'),\n",
+ " ('awful', 'causing fear or dread or terror'),\n",
+ " ('terrible', 'causing fear or dread or terror'),\n",
+ " ('dire', 'causing fear or dread or terror'),\n",
+ " ('frightening', 'causing fear or dread or terror'),\n",
+ " ('fearsome', 'causing fear or dread or terror')]},\n",
+ " {'answer': 'dreaded',\n",
+ " 'hint': 'synonyms for dreaded',\n",
+ " 'clues': [('dread', 'causing fear or dread or terror'),\n",
+ " ('horrendous', 'causing fear or dread or terror'),\n",
+ " ('fearful', 'causing fear or dread or terror'),\n",
+ " ('direful', 'causing fear or dread or terror'),\n",
+ " ('horrific', 'causing fear or dread or terror'),\n",
+ " ('dreadful', 'causing fear or dread or terror'),\n",
+ " ('awful', 'causing fear or dread or terror'),\n",
+ " ('terrible', 'causing fear or dread or terror'),\n",
+ " ('dire', 'causing fear or dread or terror'),\n",
+ " ('frightening', 'causing fear or dread or terror'),\n",
+ " ('fearsome', 'causing fear or dread or terror')]},\n",
+ " {'answer': 'dreadful',\n",
+ " 'hint': 'synonyms for dreadful',\n",
+ " 'clues': [('dread', 'causing fear or dread or terror'),\n",
+ " ('horrendous', 'causing fear or dread or terror'),\n",
+ " ('fearful', 'causing fear or dread or terror'),\n",
+ " ('atrocious', 'exceptionally bad or displeasing'),\n",
+ " ('painful', 'exceptionally bad or displeasing'),\n",
+ " ('direful', 'causing fear or dread or terror'),\n",
+ " ('dreaded', 'causing fear or dread or terror'),\n",
+ " ('horrific', 'causing fear or dread or terror'),\n",
+ " ('unspeakable', 'exceptionally bad or displeasing'),\n",
+ " ('awful', 'exceptionally bad or displeasing'),\n",
+ " ('terrible', 'exceptionally bad or displeasing'),\n",
+ " ('abominable', 'exceptionally bad or displeasing'),\n",
+ " ('dire', 'causing fear or dread or terror'),\n",
+ " ('frightening', 'causing fear or dread or terror'),\n",
+ " ('fearsome', 'causing fear or dread or terror')]},\n",
+ " {'answer': 'dreamy',\n",
+ " 'hint': 'synonyms for dreamy',\n",
+ " 'clues': [('moony', 'dreamy in mood or nature'),\n",
+ " ('lackadaisical', 'lacking spirit or liveliness'),\n",
+ " ('woolgathering', 'dreamy in mood or nature'),\n",
+ " ('languid', 'lacking spirit or liveliness'),\n",
+ " ('languorous', 'lacking spirit or liveliness')]},\n",
+ " {'answer': 'drear',\n",
+ " 'hint': 'synonyms for drear',\n",
+ " 'clues': [('drab', 'causing dejection'),\n",
+ " ('dismal', 'causing dejection'),\n",
+ " ('gloomy', 'causing dejection'),\n",
+ " ('blue', 'causing dejection'),\n",
+ " ('grim', 'causing dejection'),\n",
+ " ('sorry', 'causing dejection'),\n",
+ " ('dreary', 'causing dejection'),\n",
+ " ('disconsolate', 'causing dejection'),\n",
+ " ('dingy', 'causing dejection'),\n",
+ " ('dark', 'causing dejection')]},\n",
+ " {'answer': 'dreary',\n",
+ " 'hint': 'synonyms for dreary',\n",
+ " 'clues': [('drab', 'causing dejection'),\n",
+ " ('dismal', 'causing dejection'),\n",
+ " ('gloomy', 'causing dejection'),\n",
+ " ('blue', 'causing dejection'),\n",
+ " ('grim', 'causing dejection'),\n",
+ " ('disconsolate', 'causing dejection'),\n",
+ " ('sorry', 'causing dejection'),\n",
+ " ('dark', 'causing dejection'),\n",
+ " ('drear', 'causing dejection'),\n",
+ " ('dingy', 'causing dejection')]},\n",
+ " {'answer': 'dressed',\n",
+ " 'hint': 'synonyms for dressed',\n",
+ " 'clues': [('polished', '(of lumber or stone) to trim and smooth'),\n",
+ " ('dolled up', 'dressed in fancy or formal clothing'),\n",
+ " ('dressed to the nines', 'dressed in fancy or formal clothing'),\n",
+ " ('spruced up', 'dressed in fancy or formal clothing'),\n",
+ " ('garmented',\n",
+ " 'dressed or clothed especially in fine attire; often used in combination'),\n",
+ " ('togged up', 'dressed in fancy or formal clothing'),\n",
+ " ('garbed',\n",
+ " 'dressed or clothed especially in fine attire; often used in combination'),\n",
+ " ('robed',\n",
+ " 'dressed or clothed especially in fine attire; often used in combination'),\n",
+ " ('appareled',\n",
+ " 'dressed or clothed especially in fine attire; often used in combination'),\n",
+ " ('attired',\n",
+ " 'dressed or clothed especially in fine attire; often used in combination'),\n",
+ " ('habilimented',\n",
+ " 'dressed or clothed especially in fine attire; often used in combination'),\n",
+ " ('dressed-up', 'dressed in fancy or formal clothing'),\n",
+ " ('dressed to kill', 'dressed in fancy or formal clothing'),\n",
+ " ('spiffed up', 'dressed in fancy or formal clothing')]},\n",
+ " {'answer': 'dressed-up',\n",
+ " 'hint': 'synonyms for dressed-up',\n",
+ " 'clues': [('dolled up', 'dressed in fancy or formal clothing'),\n",
+ " ('dressed to the nines', 'dressed in fancy or formal clothing'),\n",
+ " ('spruced up', 'dressed in fancy or formal clothing'),\n",
+ " ('togged up', 'dressed in fancy or formal clothing'),\n",
+ " ('dressed', 'dressed in fancy or formal clothing'),\n",
+ " ('dressed to kill', 'dressed in fancy or formal clothing'),\n",
+ " ('spiffed up', 'dressed in fancy or formal clothing')]},\n",
+ " {'answer': 'dressed_to_kill',\n",
+ " 'hint': 'synonyms for dressed to kill',\n",
+ " 'clues': [('dolled up', 'dressed in fancy or formal clothing'),\n",
+ " ('dressed to the nines', 'dressed in fancy or formal clothing'),\n",
+ " ('spruced up', 'dressed in fancy or formal clothing'),\n",
+ " ('dressed-up', 'dressed in fancy or formal clothing'),\n",
+ " ('togged up', 'dressed in fancy or formal clothing'),\n",
+ " ('dressed', 'dressed in fancy or formal clothing'),\n",
+ " ('spiffed up', 'dressed in fancy or formal clothing')]},\n",
+ " {'answer': 'dressed_to_the_nines',\n",
+ " 'hint': 'synonyms for dressed to the nines',\n",
+ " 'clues': [('dolled up', 'dressed in fancy or formal clothing'),\n",
+ " ('spruced up', 'dressed in fancy or formal clothing'),\n",
+ " ('dressed-up', 'dressed in fancy or formal clothing'),\n",
+ " ('togged up', 'dressed in fancy or formal clothing'),\n",
+ " ('dressed', 'dressed in fancy or formal clothing'),\n",
+ " ('dressed to kill', 'dressed in fancy or formal clothing'),\n",
+ " ('spiffed up', 'dressed in fancy or formal clothing')]},\n",
+ " {'answer': 'dried-up',\n",
+ " 'hint': 'synonyms for dried-up',\n",
+ " 'clues': [('sear',\n",
+ " '(used especially of vegetation) having lost all moisture'),\n",
+ " ('sere', '(used especially of vegetation) having lost all moisture'),\n",
+ " ('shrivelled',\n",
+ " '(used especially of vegetation) having lost all moisture'),\n",
+ " ('withered',\n",
+ " '(used especially of vegetation) having lost all moisture')]},\n",
+ " {'answer': 'drifting',\n",
+ " 'hint': 'synonyms for drifting',\n",
+ " 'clues': [('floating',\n",
+ " 'continually changing especially as from one abode or occupation to another'),\n",
+ " ('vagabond',\n",
+ " 'continually changing especially as from one abode or occupation to another'),\n",
+ " ('vagrant',\n",
+ " 'continually changing especially as from one abode or occupation to another'),\n",
+ " ('aimless',\n",
+ " 'continually changing especially as from one abode or occupation to another')]},\n",
+ " {'answer': 'drippy',\n",
+ " 'hint': 'synonyms for drippy',\n",
+ " 'clues': [('soupy', 'effusively or insincerely emotional'),\n",
+ " ('slushy', 'effusively or insincerely emotional'),\n",
+ " ('bathetic', 'effusively or insincerely emotional'),\n",
+ " ('mawkish', 'effusively or insincerely emotional'),\n",
+ " ('mushy', 'effusively or insincerely emotional'),\n",
+ " ('sentimental', 'effusively or insincerely emotional'),\n",
+ " ('hokey', 'effusively or insincerely emotional'),\n",
+ " ('soppy', 'effusively or insincerely emotional'),\n",
+ " ('schmalzy', 'effusively or insincerely emotional'),\n",
+ " ('maudlin', 'effusively or insincerely emotional'),\n",
+ " ('drizzly', 'wet with light rain'),\n",
+ " ('kitschy', 'effusively or insincerely emotional')]},\n",
+ " {'answer': 'driven',\n",
+ " 'hint': 'synonyms for driven',\n",
+ " 'clues': [('goaded', 'compelled forcibly by an outside agency'),\n",
+ " ('compulsive', 'strongly motivated to succeed'),\n",
+ " ('impelled', 'urged or forced to action through moral pressure'),\n",
+ " ('determined', 'strongly motivated to succeed')]},\n",
+ " {'answer': 'drooping',\n",
+ " 'hint': 'synonyms for drooping',\n",
+ " 'clues': [('droopy', 'hanging down (as from exhaustion or weakness)'),\n",
+ " ('pendulous', 'having branches or flower heads that bend downward'),\n",
+ " ('weeping', 'having branches or flower heads that bend downward'),\n",
+ " ('nodding', 'having branches or flower heads that bend downward'),\n",
+ " ('sagging', 'hanging down (as from exhaustion or weakness)'),\n",
+ " ('cernuous', 'having branches or flower heads that bend downward'),\n",
+ " ('flagging', 'weak from exhaustion')]},\n",
+ " {'answer': 'drowsy',\n",
+ " 'hint': 'synonyms for drowsy',\n",
+ " 'clues': [('yawning', 'showing lack of attention or boredom'),\n",
+ " ('oscitant', 'showing lack of attention or boredom'),\n",
+ " ('drowsing', 'half asleep'),\n",
+ " ('dozy', 'half asleep')]},\n",
+ " {'answer': 'dry',\n",
+ " 'hint': 'synonyms for dry',\n",
+ " 'clues': [('ironical', 'humorously sarcastic or mocking'),\n",
+ " ('wry', 'humorously sarcastic or mocking'),\n",
+ " ('juiceless',\n",
+ " 'lacking interest or stimulation; dull and lifeless; ; ; - John Mason Brown'),\n",
+ " ('teetotal', 'practicing complete abstinence from alcoholic beverages')]},\n",
+ " {'answer': 'dual',\n",
+ " 'hint': 'synonyms for dual',\n",
+ " 'clues': [('double',\n",
+ " 'consisting of or involving two parts or components usually in pairs'),\n",
+ " ('threefold',\n",
+ " 'having more than one decidedly dissimilar aspects or qualities; ; - R.W.Emerson; -Frederick Harrison'),\n",
+ " ('twofold',\n",
+ " 'having more than one decidedly dissimilar aspects or qualities; ; - R.W.Emerson; -Frederick Harrison'),\n",
+ " ('treble',\n",
+ " 'having more than one decidedly dissimilar aspects or qualities; ; - R.W.Emerson; -Frederick Harrison'),\n",
+ " ('duple',\n",
+ " 'consisting of or involving two parts or components usually in pairs')]},\n",
+ " {'answer': 'ductile',\n",
+ " 'hint': 'synonyms for ductile',\n",
+ " 'clues': [('malleable', 'capable of being shaped or bent or drawn out'),\n",
+ " ('tractile', 'capable of being shaped or bent or drawn out'),\n",
+ " ('tensile', 'capable of being shaped or bent or drawn out'),\n",
+ " ('pliable', 'capable of being shaped or bent or drawn out'),\n",
+ " ('pliant', 'capable of being shaped or bent or drawn out')]},\n",
+ " {'answer': 'dulcet',\n",
+ " 'hint': 'synonyms for dulcet',\n",
+ " 'clues': [('mellisonant', 'pleasing to the ear'),\n",
+ " ('sweet', 'pleasing to the ear'),\n",
+ " ('honeyed', 'pleasing to the ear'),\n",
+ " ('mellifluous', 'pleasing to the ear')]},\n",
+ " {'answer': 'dull',\n",
+ " 'hint': 'synonyms for dull',\n",
+ " 'clues': [('dim',\n",
+ " 'slow to learn or understand; lacking intellectual acuity; ; ; - Thackeray'),\n",
+ " ('softened', 'being or made softer or less loud or clear'),\n",
+ " ('slow',\n",
+ " 'so lacking in interest as to cause mental weariness; ; ; ; ; ; - Edmund Burke; ; - Mark Twain'),\n",
+ " ('tiresome',\n",
+ " 'so lacking in interest as to cause mental weariness; ; ; ; ; ; - Edmund Burke; ; - Mark Twain'),\n",
+ " ('obtuse',\n",
+ " 'slow to learn or understand; lacking intellectual acuity; ; ; - Thackeray'),\n",
+ " ('leaden', 'darkened with overcast'),\n",
+ " ('sluggish', '(of business) not active or brisk'),\n",
+ " ('ho-hum',\n",
+ " 'so lacking in interest as to cause mental weariness; ; ; ; ; ; - Edmund Burke; ; - Mark Twain'),\n",
+ " ('deadening',\n",
+ " 'so lacking in interest as to cause mental weariness; ; ; ; ; ; - Edmund Burke; ; - Mark Twain'),\n",
+ " ('thudding',\n",
+ " 'not clear and resonant; sounding as if striking with or against something relatively soft'),\n",
+ " ('irksome',\n",
+ " 'so lacking in interest as to cause mental weariness; ; ; ; ; ; - Edmund Burke; ; - Mark Twain'),\n",
+ " ('dumb',\n",
+ " 'slow to learn or understand; lacking intellectual acuity; ; ; - Thackeray'),\n",
+ " ('muted', 'being or made softer or less loud or clear'),\n",
+ " ('muffled', 'being or made softer or less loud or clear'),\n",
+ " ('wearisome',\n",
+ " 'so lacking in interest as to cause mental weariness; ; ; ; ; ; - Edmund Burke; ; - Mark Twain'),\n",
+ " ('dense',\n",
+ " 'slow to learn or understand; lacking intellectual acuity; ; ; - Thackeray'),\n",
+ " ('tedious',\n",
+ " 'so lacking in interest as to cause mental weariness; ; ; ; ; ; - Edmund Burke; ; - Mark Twain'),\n",
+ " ('boring',\n",
+ " 'so lacking in interest as to cause mental weariness; ; ; ; ; ; - Edmund Burke; ; - Mark Twain')]},\n",
+ " {'answer': 'dumb',\n",
+ " 'hint': 'synonyms for dumb',\n",
+ " 'clues': [('dim',\n",
+ " 'slow to learn or understand; lacking intellectual acuity; ; ; - Thackeray'),\n",
+ " ('dense',\n",
+ " 'slow to learn or understand; lacking intellectual acuity; ; ; - Thackeray'),\n",
+ " ('mute', 'unable to speak because of hereditary deafness'),\n",
+ " ('speechless', 'temporarily incapable of speaking'),\n",
+ " ('dull',\n",
+ " 'slow to learn or understand; lacking intellectual acuity; ; ; - Thackeray'),\n",
+ " ('slow',\n",
+ " 'slow to learn or understand; lacking intellectual acuity; ; ; - Thackeray'),\n",
+ " ('obtuse',\n",
+ " 'slow to learn or understand; lacking intellectual acuity; ; ; - Thackeray'),\n",
+ " ('silent', 'unable to speak because of hereditary deafness')]},\n",
+ " {'answer': 'dumbfounded',\n",
+ " 'hint': 'synonyms for dumbfounded',\n",
+ " 'clues': [('dumbstricken',\n",
+ " 'as if struck dumb with astonishment and surprise'),\n",
+ " ('dumfounded', 'as if struck dumb with astonishment and surprise'),\n",
+ " ('thunderstruck', 'as if struck dumb with astonishment and surprise'),\n",
+ " ('stupefied', 'as if struck dumb with astonishment and surprise'),\n",
+ " ('flabbergasted', 'as if struck dumb with astonishment and surprise'),\n",
+ " ('dumbstruck', 'as if struck dumb with astonishment and surprise')]},\n",
+ " {'answer': 'dumbstricken',\n",
+ " 'hint': 'synonyms for dumbstricken',\n",
+ " 'clues': [('dumfounded',\n",
+ " 'as if struck dumb with astonishment and surprise'),\n",
+ " ('thunderstruck', 'as if struck dumb with astonishment and surprise'),\n",
+ " ('stupefied', 'as if struck dumb with astonishment and surprise'),\n",
+ " ('flabbergasted', 'as if struck dumb with astonishment and surprise'),\n",
+ " ('dumbstruck', 'as if struck dumb with astonishment and surprise')]},\n",
+ " {'answer': 'dumbstruck',\n",
+ " 'hint': 'synonyms for dumbstruck',\n",
+ " 'clues': [('dumbstricken',\n",
+ " 'as if struck dumb with astonishment and surprise'),\n",
+ " ('dumfounded', 'as if struck dumb with astonishment and surprise'),\n",
+ " ('thunderstruck', 'as if struck dumb with astonishment and surprise'),\n",
+ " ('stupefied', 'as if struck dumb with astonishment and surprise'),\n",
+ " ('flabbergasted', 'as if struck dumb with astonishment and surprise')]},\n",
+ " {'answer': 'dumfounded',\n",
+ " 'hint': 'synonyms for dumfounded',\n",
+ " 'clues': [('dumbstricken',\n",
+ " 'as if struck dumb with astonishment and surprise'),\n",
+ " ('thunderstruck', 'as if struck dumb with astonishment and surprise'),\n",
+ " ('dumbfounded', 'as if struck dumb with astonishment and surprise'),\n",
+ " ('stupefied', 'as if struck dumb with astonishment and surprise'),\n",
+ " ('flabbergasted', 'as if struck dumb with astonishment and surprise'),\n",
+ " ('dumbstruck', 'as if struck dumb with astonishment and surprise')]},\n",
+ " {'answer': 'dumpy',\n",
+ " 'hint': 'synonyms for dumpy',\n",
+ " 'clues': [('low-set',\n",
+ " 'short and thick; as e.g. having short legs and heavy musculature'),\n",
+ " ('chunky',\n",
+ " 'short and thick; as e.g. having short legs and heavy musculature'),\n",
+ " ('squatty',\n",
+ " 'short and thick; as e.g. having short legs and heavy musculature'),\n",
+ " ('podgy', 'short and plump'),\n",
+ " ('stumpy',\n",
+ " 'short and thick; as e.g. having short legs and heavy musculature'),\n",
+ " ('squat',\n",
+ " 'short and thick; as e.g. having short legs and heavy musculature'),\n",
+ " ('pudgy', 'short and plump'),\n",
+ " ('tubby', 'short and plump'),\n",
+ " ('roly-poly', 'short and plump')]},\n",
+ " {'answer': 'duncical',\n",
+ " 'hint': 'synonyms for duncical',\n",
+ " 'clues': [('fatheaded', '(used informally) stupid'),\n",
+ " ('thickheaded', '(used informally) stupid'),\n",
+ " ('thick', '(used informally) stupid'),\n",
+ " ('thick-skulled', '(used informally) stupid'),\n",
+ " ('blockheaded', '(used informally) stupid'),\n",
+ " ('duncish', '(used informally) stupid'),\n",
+ " ('loggerheaded', '(used informally) stupid'),\n",
+ " ('boneheaded', '(used informally) stupid'),\n",
+ " ('wooden-headed', '(used informally) stupid')]},\n",
+ " {'answer': 'duncish',\n",
+ " 'hint': 'synonyms for duncish',\n",
+ " 'clues': [('fatheaded', '(used informally) stupid'),\n",
+ " ('duncical', '(used informally) stupid'),\n",
+ " ('thickheaded', '(used informally) stupid'),\n",
+ " ('thick', '(used informally) stupid'),\n",
+ " ('thick-skulled', '(used informally) stupid'),\n",
+ " ('blockheaded', '(used informally) stupid'),\n",
+ " ('wooden-headed', '(used informally) stupid'),\n",
+ " ('loggerheaded', '(used informally) stupid'),\n",
+ " ('boneheaded', '(used informally) stupid')]},\n",
+ " {'answer': 'duplicitous',\n",
+ " 'hint': 'synonyms for duplicitous',\n",
+ " 'clues': [('two-faced',\n",
+ " 'marked by deliberate deceptiveness especially by pretending one set of feelings and acting under the influence of another; - Israel Zangwill; ; - W.M.Thackeray'),\n",
+ " ('ambidextrous',\n",
+ " 'marked by deliberate deceptiveness especially by pretending one set of feelings and acting under the influence of another; - Israel Zangwill; ; - W.M.Thackeray'),\n",
+ " ('double-tongued',\n",
+ " 'marked by deliberate deceptiveness especially by pretending one set of feelings and acting under the influence of another; - Israel Zangwill; ; - W.M.Thackeray'),\n",
+ " ('deceitful',\n",
+ " 'marked by deliberate deceptiveness especially by pretending one set of feelings and acting under the influence of another; - Israel Zangwill; ; - W.M.Thackeray'),\n",
+ " ('double-faced',\n",
+ " 'marked by deliberate deceptiveness especially by pretending one set of feelings and acting under the influence of another; - Israel Zangwill; ; - W.M.Thackeray'),\n",
+ " ('double-dealing',\n",
+ " 'marked by deliberate deceptiveness especially by pretending one set of feelings and acting under the influence of another; - Israel Zangwill; ; - W.M.Thackeray')]},\n",
+ " {'answer': 'durable',\n",
+ " 'hint': 'synonyms for durable',\n",
+ " 'clues': [('indestructible', 'very long lasting'),\n",
+ " ('perdurable', 'very long lasting'),\n",
+ " ('long-wearing', 'capable of withstanding wear and tear and decay'),\n",
+ " ('long-lived', 'existing for a long time'),\n",
+ " ('long-lasting', 'existing for a long time'),\n",
+ " ('lasting', 'existing for a long time'),\n",
+ " ('undestroyable', 'very long lasting')]},\n",
+ " {'answer': 'dusky',\n",
+ " 'hint': 'synonyms for dusky',\n",
+ " 'clues': [('twilight', 'lighted by or as if by twilight; -Henry Fielding'),\n",
+ " ('swarthy', 'naturally having skin of a dark color'),\n",
+ " ('swart', 'naturally having skin of a dark color'),\n",
+ " ('dark-skinned', 'naturally having skin of a dark color')]},\n",
+ " {'answer': 'dusty',\n",
+ " 'hint': 'synonyms for dusty',\n",
+ " 'clues': [('moth-eaten',\n",
+ " 'lacking originality or spontaneity; no longer new'),\n",
+ " ('dust-covered', 'covered with a layer of dust'),\n",
+ " ('stale', 'lacking originality or spontaneity; no longer new'),\n",
+ " ('cold', 'lacking originality or spontaneity; no longer new')]},\n",
+ " {'answer': 'earlier',\n",
+ " 'hint': 'synonyms for earlier',\n",
+ " 'clues': [('early',\n",
+ " 'at or near the beginning of a period of time or course of events or before the usual or expected time'),\n",
+ " ('other', 'belonging to the distant past'),\n",
+ " ('earliest',\n",
+ " \"(comparative and superlative of `early') more early than; most early\"),\n",
+ " ('former', 'belonging to the distant past')]},\n",
+ " {'answer': 'earliest',\n",
+ " 'hint': 'synonyms for earliest',\n",
+ " 'clues': [('early',\n",
+ " 'at or near the beginning of a period of time or course of events or before the usual or expected time'),\n",
+ " ('other', 'belonging to the distant past'),\n",
+ " ('earlier',\n",
+ " \"(comparative and superlative of `early') more early than; most early\"),\n",
+ " ('former', 'belonging to the distant past')]},\n",
+ " {'answer': 'earnest',\n",
+ " 'hint': 'synonyms for earnest',\n",
+ " 'clues': [('dear', 'earnest'),\n",
+ " ('heartfelt', 'earnest'),\n",
+ " ('businesslike', 'not distracted by anything unrelated to the goal'),\n",
+ " ('solemn',\n",
+ " 'characterized by a firm and humorless belief in the validity of your opinions'),\n",
+ " ('devout', 'earnest'),\n",
+ " ('sincere',\n",
+ " 'characterized by a firm and humorless belief in the validity of your opinions')]},\n",
+ " {'answer': 'earthy',\n",
+ " 'hint': 'synonyms for earthy',\n",
+ " 'clues': [('crude', 'conspicuously and tastelessly indecent'),\n",
+ " ('down-to-earth', 'sensible and practical'),\n",
+ " ('vulgar', 'conspicuously and tastelessly indecent'),\n",
+ " ('gross', 'conspicuously and tastelessly indecent')]},\n",
+ " {'answer': 'easy',\n",
+ " 'hint': 'synonyms for easy',\n",
+ " 'clues': [('promiscuous', 'casual and unrestrained in sexual behavior'),\n",
+ " ('comfortable',\n",
+ " 'in fortunate circumstances financially; moderately rich'),\n",
+ " ('well-heeled',\n",
+ " 'in fortunate circumstances financially; moderately rich'),\n",
+ " ('leisurely', 'not hurried or forced'),\n",
+ " ('prosperous', 'in fortunate circumstances financially; moderately rich'),\n",
+ " ('easygoing', 'not hurried or forced'),\n",
+ " ('light', 'casual and unrestrained in sexual behavior'),\n",
+ " ('sluttish', 'casual and unrestrained in sexual behavior'),\n",
+ " ('gentle', 'having little impact'),\n",
+ " ('well-to-do', 'in fortunate circumstances financially; moderately rich'),\n",
+ " ('well-off', 'in fortunate circumstances financially; moderately rich'),\n",
+ " ('wanton', 'casual and unrestrained in sexual behavior'),\n",
+ " ('soft', 'having little impact'),\n",
+ " ('loose', 'casual and unrestrained in sexual behavior'),\n",
+ " ('well-situated',\n",
+ " 'in fortunate circumstances financially; moderately rich'),\n",
+ " ('well-fixed',\n",
+ " 'in fortunate circumstances financially; moderately rich')]},\n",
+ " {'answer': 'easygoing',\n",
+ " 'hint': 'synonyms for easygoing',\n",
+ " 'clues': [('cushy',\n",
+ " 'not burdensome or demanding; borne or done easily and without hardship'),\n",
+ " ('easy', 'not hurried or forced'),\n",
+ " ('soft',\n",
+ " 'not burdensome or demanding; borne or done easily and without hardship'),\n",
+ " ('leisurely', 'not hurried or forced')]},\n",
+ " {'answer': 'eccentric',\n",
+ " 'hint': 'synonyms for eccentric',\n",
+ " 'clues': [('nonconcentric', 'not having a common center; not concentric'),\n",
+ " ('outlandish', 'conspicuously or grossly unconventional or unusual'),\n",
+ " ('freaky', 'conspicuously or grossly unconventional or unusual'),\n",
+ " ('outre', 'conspicuously or grossly unconventional or unusual'),\n",
+ " ('flaky', 'conspicuously or grossly unconventional or unusual'),\n",
+ " ('gonzo', 'conspicuously or grossly unconventional or unusual'),\n",
+ " ('bizarre', 'conspicuously or grossly unconventional or unusual'),\n",
+ " ('freakish', 'conspicuously or grossly unconventional or unusual'),\n",
+ " ('off-the-wall', 'conspicuously or grossly unconventional or unusual')]},\n",
+ " {'answer': 'economical',\n",
+ " 'hint': 'synonyms for economical',\n",
+ " 'clues': [('stinting', 'avoiding waste'),\n",
+ " ('economic',\n",
+ " 'using the minimum of time or resources necessary for effectiveness'),\n",
+ " ('sparing', 'avoiding waste'),\n",
+ " ('scotch', 'avoiding waste'),\n",
+ " ('frugal', 'avoiding waste')]},\n",
+ " {'answer': 'ecstatic',\n",
+ " 'hint': 'synonyms for ecstatic',\n",
+ " 'clues': [('rhapsodic', 'feeling great rapture or delight'),\n",
+ " ('rapt', 'feeling great rapture or delight'),\n",
+ " ('rapturous', 'feeling great rapture or delight'),\n",
+ " ('enraptured', 'feeling great rapture or delight')]},\n",
+ " {'answer': 'ecumenical',\n",
+ " 'hint': 'synonyms for ecumenical',\n",
+ " 'clues': [('oecumenic',\n",
+ " 'concerned with promoting unity among churches or religions'),\n",
+ " ('world-wide',\n",
+ " 'of worldwide scope or applicability; ; - Christopher Morley'),\n",
+ " ('cosmopolitan',\n",
+ " 'of worldwide scope or applicability; ; - Christopher Morley'),\n",
+ " ('general',\n",
+ " 'of worldwide scope or applicability; ; - Christopher Morley'),\n",
+ " ('universal',\n",
+ " 'of worldwide scope or applicability; ; - Christopher Morley')]},\n",
+ " {'answer': 'edacious',\n",
+ " 'hint': 'synonyms for edacious',\n",
+ " 'clues': [('ravening', 'devouring or craving food in great quantities'),\n",
+ " ('voracious', 'devouring or craving food in great quantities'),\n",
+ " ('wolfish', 'devouring or craving food in great quantities'),\n",
+ " ('esurient', 'devouring or craving food in great quantities'),\n",
+ " ('rapacious', 'devouring or craving food in great quantities'),\n",
+ " ('ravenous', 'devouring or craving food in great quantities')]},\n",
+ " {'answer': 'edgy',\n",
+ " 'hint': 'synonyms for edgy',\n",
+ " 'clues': [('highly strung', 'being in a tense state'),\n",
+ " ('overstrung', 'being in a tense state'),\n",
+ " ('uptight', 'being in a tense state'),\n",
+ " ('jumpy', 'being in a tense state'),\n",
+ " ('nervy', 'being in a tense state'),\n",
+ " ('restive', 'being in a tense state'),\n",
+ " ('jittery', 'being in a tense state'),\n",
+ " ('high-strung', 'being in a tense state')]},\n",
+ " {'answer': 'effective',\n",
+ " 'hint': 'synonyms for effective',\n",
+ " 'clues': [('efficient',\n",
+ " 'able to accomplish a purpose; functioning effectively; -G.B.Shaw'),\n",
+ " ('in force', 'exerting force or influence'),\n",
+ " ('good', 'exerting force or influence'),\n",
+ " ('efficacious',\n",
+ " 'producing or capable of producing an intended result or having a striking effect; -LewisMumford'),\n",
+ " ('effectual',\n",
+ " 'producing or capable of producing an intended result or having a striking effect; -LewisMumford'),\n",
+ " ('in effect', 'exerting force or influence')]},\n",
+ " {'answer': 'effectual',\n",
+ " 'hint': 'synonyms for effectual',\n",
+ " 'clues': [('effective',\n",
+ " 'producing or capable of producing an intended result or having a striking effect; -LewisMumford'),\n",
+ " ('sound', 'having legal efficacy or force'),\n",
+ " ('legal', 'having legal efficacy or force'),\n",
+ " ('efficacious',\n",
+ " 'producing or capable of producing an intended result or having a striking effect; -LewisMumford')]},\n",
+ " {'answer': 'effeminate',\n",
+ " 'hint': 'synonyms for effeminate',\n",
+ " 'clues': [('epicene', 'having unsuitable feminine qualities'),\n",
+ " ('cissy', 'having unsuitable feminine qualities'),\n",
+ " ('emasculate', 'having unsuitable feminine qualities'),\n",
+ " ('sissy', 'having unsuitable feminine qualities'),\n",
+ " ('sissified', 'having unsuitable feminine qualities'),\n",
+ " ('sissyish', 'having unsuitable feminine qualities')]},\n",
+ " {'answer': 'effervescent',\n",
+ " 'hint': 'synonyms for effervescent',\n",
+ " 'clues': [('sparkly', 'marked by high spirits or excitement'),\n",
+ " ('bubbling', 'marked by high spirits or excitement'),\n",
+ " ('scintillating', 'marked by high spirits or excitement'),\n",
+ " ('frothy', 'marked by high spirits or excitement'),\n",
+ " ('sparkling',\n",
+ " 'used of wines and waters; charged naturally or artificially with carbon dioxide')]},\n",
+ " {'answer': 'effervescing',\n",
+ " 'hint': 'synonyms for effervescing',\n",
+ " 'clues': [('frothy',\n",
+ " 'emitting or filled with bubbles as from carbonation or fermentation'),\n",
+ " ('bubbly',\n",
+ " 'emitting or filled with bubbles as from carbonation or fermentation'),\n",
+ " ('spumy',\n",
+ " 'emitting or filled with bubbles as from carbonation or fermentation'),\n",
+ " ('foamy',\n",
+ " 'emitting or filled with bubbles as from carbonation or fermentation'),\n",
+ " ('foaming',\n",
+ " 'emitting or filled with bubbles as from carbonation or fermentation'),\n",
+ " ('bubbling',\n",
+ " 'emitting or filled with bubbles as from carbonation or fermentation')]},\n",
+ " {'answer': 'effulgent',\n",
+ " 'hint': 'synonyms for effulgent',\n",
+ " 'clues': [('beaming', 'radiating or as if radiating light'),\n",
+ " ('beamy', 'radiating or as if radiating light'),\n",
+ " ('radiant', 'radiating or as if radiating light'),\n",
+ " ('refulgent', 'radiating or as if radiating light')]},\n",
+ " {'answer': 'effusive',\n",
+ " 'hint': 'synonyms for effusive',\n",
+ " 'clues': [('gushing', 'extravagantly demonstrative'),\n",
+ " ('gushy', 'extravagantly demonstrative'),\n",
+ " ('burbling', 'uttered with unrestrained enthusiasm'),\n",
+ " ('burbly', 'uttered with unrestrained enthusiasm')]},\n",
+ " {'answer': 'egg-shaped',\n",
+ " 'hint': 'synonyms for egg-shaped',\n",
+ " 'clues': [('oval', 'rounded like an egg'),\n",
+ " ('prolate', 'rounded like an egg'),\n",
+ " ('elliptical', 'rounded like an egg'),\n",
+ " ('ovate', 'rounded like an egg'),\n",
+ " ('ovoid', 'rounded like an egg'),\n",
+ " ('oviform', 'rounded like an egg'),\n",
+ " ('oval-shaped', 'rounded like an egg')]},\n",
+ " {'answer': 'egotistic',\n",
+ " 'hint': 'synonyms for egotistic',\n",
+ " 'clues': [('swollen-headed',\n",
+ " 'characteristic of false pride; having an exaggerated sense of self-importance'),\n",
+ " ('self-conceited',\n",
+ " 'characteristic of false pride; having an exaggerated sense of self-importance'),\n",
+ " ('egotistical',\n",
+ " 'characteristic of false pride; having an exaggerated sense of self-importance'),\n",
+ " ('vain',\n",
+ " 'characteristic of false pride; having an exaggerated sense of self-importance'),\n",
+ " ('narcissistic',\n",
+ " 'characteristic of those having an inflated idea of their own importance'),\n",
+ " ('self-loving',\n",
+ " 'characteristic of those having an inflated idea of their own importance'),\n",
+ " ('swollen',\n",
+ " 'characteristic of false pride; having an exaggerated sense of self-importance'),\n",
+ " ('conceited',\n",
+ " 'characteristic of false pride; having an exaggerated sense of self-importance')]},\n",
+ " {'answer': 'egotistical',\n",
+ " 'hint': 'synonyms for egotistical',\n",
+ " 'clues': [('swollen-headed',\n",
+ " 'characteristic of false pride; having an exaggerated sense of self-importance'),\n",
+ " ('self-conceited',\n",
+ " 'characteristic of false pride; having an exaggerated sense of self-importance'),\n",
+ " ('egotistic',\n",
+ " 'characteristic of those having an inflated idea of their own importance'),\n",
+ " ('narcissistic',\n",
+ " 'characteristic of those having an inflated idea of their own importance'),\n",
+ " ('self-loving',\n",
+ " 'characteristic of those having an inflated idea of their own importance'),\n",
+ " ('vain',\n",
+ " 'characteristic of false pride; having an exaggerated sense of self-importance'),\n",
+ " ('swollen',\n",
+ " 'characteristic of false pride; having an exaggerated sense of self-importance'),\n",
+ " ('conceited',\n",
+ " 'characteristic of false pride; having an exaggerated sense of self-importance')]},\n",
+ " {'answer': 'egregious',\n",
+ " 'hint': 'synonyms for egregious',\n",
+ " 'clues': [('crying',\n",
+ " 'conspicuously and outrageously bad or reprehensible'),\n",
+ " ('rank', 'conspicuously and outrageously bad or reprehensible'),\n",
+ " ('glaring', 'conspicuously and outrageously bad or reprehensible'),\n",
+ " ('flagrant', 'conspicuously and outrageously bad or reprehensible'),\n",
+ " ('gross', 'conspicuously and outrageously bad or reprehensible')]},\n",
+ " {'answer': 'elementary',\n",
+ " 'hint': 'synonyms for elementary',\n",
+ " 'clues': [('primary', 'of or being the essential or basic part'),\n",
+ " ('simple', 'easy and not involved or complicated'),\n",
+ " ('unproblematic', 'easy and not involved or complicated'),\n",
+ " ('uncomplicated', 'easy and not involved or complicated'),\n",
+ " ('elemental', 'of or being the essential or basic part')]},\n",
+ " {'answer': 'elevated',\n",
+ " 'hint': 'synonyms for elevated',\n",
+ " 'clues': [('exalted',\n",
+ " 'of high moral or intellectual value; elevated in nature or style; ; - Oliver Franks'),\n",
+ " ('noble-minded',\n",
+ " 'of high moral or intellectual value; elevated in nature or style; ; - Oliver Franks'),\n",
+ " ('rarefied',\n",
+ " 'of high moral or intellectual value; elevated in nature or style; ; - Oliver Franks'),\n",
+ " ('high-flown',\n",
+ " 'of high moral or intellectual value; elevated in nature or style; ; - Oliver Franks'),\n",
+ " ('raised', 'increased in amount or degree'),\n",
+ " ('high-minded',\n",
+ " 'of high moral or intellectual value; elevated in nature or style; ; - Oliver Franks'),\n",
+ " ('grand',\n",
+ " 'of high moral or intellectual value; elevated in nature or style; ; - Oliver Franks'),\n",
+ " ('sublime',\n",
+ " 'of high moral or intellectual value; elevated in nature or style; ; - Oliver Franks'),\n",
+ " ('lofty',\n",
+ " 'of high moral or intellectual value; elevated in nature or style; ; - Oliver Franks'),\n",
+ " ('idealistic',\n",
+ " 'of high moral or intellectual value; elevated in nature or style; ; - Oliver Franks')]},\n",
+ " {'answer': 'elfin',\n",
+ " 'hint': 'synonyms for elfin',\n",
+ " 'clues': [('elfish', 'usually good-naturedly mischievous'),\n",
+ " ('elvish', 'usually good-naturedly mischievous'),\n",
+ " ('elflike', 'small and delicate'),\n",
+ " ('fey',\n",
+ " 'suggestive of an elf in strangeness and otherworldliness; ; - John Mason Brown')]},\n",
+ " {'answer': 'elliptic',\n",
+ " 'hint': 'synonyms for elliptic',\n",
+ " 'clues': [('oval', 'rounded like an egg'),\n",
+ " ('prolate', 'rounded like an egg'),\n",
+ " ('egg-shaped', 'rounded like an egg'),\n",
+ " ('elliptical', 'rounded like an egg'),\n",
+ " ('ovate', 'rounded like an egg'),\n",
+ " ('ovoid', 'rounded like an egg'),\n",
+ " ('oviform', 'rounded like an egg'),\n",
+ " ('oval-shaped', 'rounded like an egg')]},\n",
+ " {'answer': 'elliptical',\n",
+ " 'hint': 'synonyms for elliptical',\n",
+ " 'clues': [('oval', 'rounded like an egg'),\n",
+ " ('prolate', 'rounded like an egg'),\n",
+ " ('egg-shaped', 'rounded like an egg'),\n",
+ " ('elliptic',\n",
+ " 'characterized by extreme economy of expression or omission of superfluous elements; ; - H.O.Taylor'),\n",
+ " ('ovate', 'rounded like an egg'),\n",
+ " ('ovoid', 'rounded like an egg'),\n",
+ " ('oviform', 'rounded like an egg'),\n",
+ " ('oval-shaped', 'rounded like an egg')]},\n",
+ " {'answer': 'elongated',\n",
+ " 'hint': 'synonyms for elongated',\n",
+ " 'clues': [('lengthened', 'drawn out or made longer spatially'),\n",
+ " ('prolonged', 'drawn out or made longer spatially'),\n",
+ " ('extended', 'drawn out or made longer spatially'),\n",
+ " ('elongate',\n",
+ " 'having notably more length than width; being long and slender')]},\n",
+ " {'answer': 'eloquent',\n",
+ " 'hint': 'synonyms for eloquent',\n",
+ " 'clues': [('silver', 'expressing yourself readily, clearly, effectively'),\n",
+ " ('silver-tongued', 'expressing yourself readily, clearly, effectively'),\n",
+ " ('fluent', 'expressing yourself readily, clearly, effectively'),\n",
+ " ('facile', 'expressing yourself readily, clearly, effectively'),\n",
+ " ('smooth-spoken', 'expressing yourself readily, clearly, effectively')]},\n",
+ " {'answer': 'elusive',\n",
+ " 'hint': 'synonyms for elusive',\n",
+ " 'clues': [('subtle',\n",
+ " 'difficult to detect or grasp by the mind or analyze'),\n",
+ " ('baffling',\n",
+ " 'making great mental demands; hard to comprehend or solve or believe'),\n",
+ " ('tough',\n",
+ " 'making great mental demands; hard to comprehend or solve or believe'),\n",
+ " ('problematic',\n",
+ " 'making great mental demands; hard to comprehend or solve or believe'),\n",
+ " ('knotty',\n",
+ " 'making great mental demands; hard to comprehend or solve or believe')]},\n",
+ " {'answer': 'emaciated',\n",
+ " 'hint': 'synonyms for emaciated',\n",
+ " 'clues': [('skeletal',\n",
+ " 'very thin especially from disease or hunger or cold'),\n",
+ " ('gaunt', 'very thin especially from disease or hunger or cold'),\n",
+ " ('pinched', 'very thin especially from disease or hunger or cold'),\n",
+ " ('bony', 'very thin especially from disease or hunger or cold'),\n",
+ " ('wasted', 'very thin especially from disease or hunger or cold'),\n",
+ " ('cadaverous', 'very thin especially from disease or hunger or cold'),\n",
+ " ('haggard', 'very thin especially from disease or hunger or cold')]},\n",
+ " {'answer': 'emasculate',\n",
+ " 'hint': 'synonyms for emasculate',\n",
+ " 'clues': [('epicene', 'having unsuitable feminine qualities'),\n",
+ " ('effeminate', 'having unsuitable feminine qualities'),\n",
+ " ('cissy', 'having unsuitable feminine qualities'),\n",
+ " ('sissy', 'having unsuitable feminine qualities'),\n",
+ " ('sissified', 'having unsuitable feminine qualities'),\n",
+ " ('sissyish', 'having unsuitable feminine qualities')]},\n",
+ " {'answer': 'embarrassed',\n",
+ " 'hint': 'synonyms for embarrassed',\n",
+ " 'clues': [('chagrined',\n",
+ " 'feeling or caused to feel uneasy and self-conscious'),\n",
+ " ('humiliated',\n",
+ " 'made to feel uncomfortable because of shame or wounded pride'),\n",
+ " ('abashed', 'feeling or caused to feel uneasy and self-conscious'),\n",
+ " ('mortified',\n",
+ " 'made to feel uncomfortable because of shame or wounded pride')]},\n",
+ " {'answer': 'embarrassing',\n",
+ " 'hint': 'synonyms for embarrassing',\n",
+ " 'clues': [('sticky',\n",
+ " 'hard to deal with; especially causing pain or embarrassment'),\n",
+ " ('unenviable',\n",
+ " 'hard to deal with; especially causing pain or embarrassment'),\n",
+ " ('awkward',\n",
+ " 'hard to deal with; especially causing pain or embarrassment'),\n",
+ " ('mortifying', 'causing to feel shame or chagrin or vexation')]},\n",
+ " {'answer': 'emblematic',\n",
+ " 'hint': 'synonyms for emblematic',\n",
+ " 'clues': [('emblematical',\n",
+ " 'serving as a visible symbol for something abstract'),\n",
+ " ('symbolical', 'serving as a visible symbol for something abstract'),\n",
+ " ('typic', 'being or serving as an illustration of a type'),\n",
+ " ('exemplary', 'being or serving as an illustration of a type')]},\n",
+ " {'answer': 'embodied',\n",
+ " 'hint': 'synonyms for embodied',\n",
+ " 'clues': [('bodied',\n",
+ " 'possessing or existing in bodily form; - Shakespeare'),\n",
+ " ('corporal', 'possessing or existing in bodily form; - Shakespeare'),\n",
+ " ('incarnate', 'possessing or existing in bodily form; - Shakespeare'),\n",
+ " ('corporate', 'possessing or existing in bodily form; - Shakespeare')]},\n",
+ " {'answer': 'eminent',\n",
+ " 'hint': 'synonyms for eminent',\n",
+ " 'clues': [('lofty',\n",
+ " 'of imposing height; especially standing out above others'),\n",
+ " ('soaring', 'of imposing height; especially standing out above others'),\n",
+ " ('towering', 'of imposing height; especially standing out above others'),\n",
+ " ('high', 'standing above others in quality or position')]},\n",
+ " {'answer': 'empty-headed',\n",
+ " 'hint': 'synonyms for empty-headed',\n",
+ " 'clues': [('airheaded', 'lacking seriousness; given to frivolity'),\n",
+ " ('giddy', 'lacking seriousness; given to frivolity'),\n",
+ " ('dizzy', 'lacking seriousness; given to frivolity'),\n",
+ " ('lightheaded', 'lacking seriousness; given to frivolity'),\n",
+ " ('featherbrained', 'lacking seriousness; given to frivolity'),\n",
+ " ('silly', 'lacking seriousness; given to frivolity')]},\n",
+ " {'answer': 'enamored',\n",
+ " 'hint': 'synonyms for enamored',\n",
+ " 'clues': [('smitten', 'marked by foolish or unreasoning fondness'),\n",
+ " ('in love', 'marked by foolish or unreasoning fondness'),\n",
+ " ('soft on', 'marked by foolish or unreasoning fondness'),\n",
+ " ('infatuated', 'marked by foolish or unreasoning fondness'),\n",
+ " ('potty', 'marked by foolish or unreasoning fondness'),\n",
+ " ('taken with', 'marked by foolish or unreasoning fondness')]},\n",
+ " {'answer': 'enceinte',\n",
+ " 'hint': 'synonyms for enceinte',\n",
+ " 'clues': [('gravid', 'in an advanced stage of pregnancy'),\n",
+ " ('expectant', 'in an advanced stage of pregnancy'),\n",
+ " ('with child', 'in an advanced stage of pregnancy'),\n",
+ " ('great', 'in an advanced stage of pregnancy'),\n",
+ " ('big', 'in an advanced stage of pregnancy'),\n",
+ " ('heavy', 'in an advanced stage of pregnancy'),\n",
+ " ('large', 'in an advanced stage of pregnancy')]},\n",
+ " {'answer': 'enchanting',\n",
+ " 'hint': 'synonyms for enchanting',\n",
+ " 'clues': [('captivating', 'capturing interest as if by a spell'),\n",
+ " ('bewitching', 'capturing interest as if by a spell'),\n",
+ " ('fascinating', 'capturing interest as if by a spell'),\n",
+ " ('enthralling', 'capturing interest as if by a spell'),\n",
+ " ('entrancing', 'capturing interest as if by a spell')]},\n",
+ " {'answer': 'encompassing',\n",
+ " 'hint': 'synonyms for encompassing',\n",
+ " 'clues': [('wide', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n",
+ " ('all-inclusive', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n",
+ " ('all-embracing', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n",
+ " ('panoptic', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n",
+ " ('across-the-board', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n",
+ " ('surrounding', 'closely encircling'),\n",
+ " ('extensive', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n",
+ " ('circumferent', 'closely encircling'),\n",
+ " ('broad', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n",
+ " ('blanket', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n",
+ " ('all-encompassing', 'broad in scope or content; ; ; ; ; - T.G.Winner')]},\n",
+ " {'answer': 'ended',\n",
+ " 'hint': 'synonyms for ended',\n",
+ " 'clues': [('concluded', 'having come or been brought to a conclusion'),\n",
+ " ('over', 'having come or been brought to a conclusion'),\n",
+ " ('complete', 'having come or been brought to a conclusion'),\n",
+ " ('terminated', 'having come or been brought to a conclusion'),\n",
+ " ('all over', 'having come or been brought to a conclusion')]},\n",
+ " {'answer': 'endemic',\n",
+ " 'hint': 'synonyms for endemic',\n",
+ " 'clues': [('indigenous', 'originating where it is found'),\n",
+ " ('autochthonous', 'originating where it is found'),\n",
+ " ('endemical',\n",
+ " 'of or relating to a disease (or anything resembling a disease) constantly present to greater or lesser extent in a particular locality'),\n",
+ " ('autochthonic', 'originating where it is found'),\n",
+ " ('autochthonal', 'originating where it is found')]},\n",
+ " {'answer': 'endless',\n",
+ " 'hint': 'synonyms for endless',\n",
+ " 'clues': [('dateless', 'having no known beginning and presumably no end'),\n",
+ " ('interminable', 'tiresomely long; seemingly without end'),\n",
+ " ('sempiternal', 'having no known beginning and presumably no end'),\n",
+ " ('eternal', 'tiresomely long; seemingly without end')]},\n",
+ " {'answer': 'engaged',\n",
+ " 'hint': 'synonyms for engaged',\n",
+ " 'clues': [('in use',\n",
+ " \"(of facilities such as telephones or lavatories) unavailable for use by anyone else or indicating unavailability; (`engaged' is a British term for a busy telephone line)\"),\n",
+ " ('booked', 'reserved in advance'),\n",
+ " ('meshed',\n",
+ " '(used of toothed parts or gears) interlocked and interacting'),\n",
+ " ('intermeshed',\n",
+ " '(used of toothed parts or gears) interlocked and interacting'),\n",
+ " ('busy',\n",
+ " \"(of facilities such as telephones or lavatories) unavailable for use by anyone else or indicating unavailability; (`engaged' is a British term for a busy telephone line)\"),\n",
+ " ('occupied', 'having ones attention or mind or energy engaged'),\n",
+ " ('set-aside', 'reserved in advance')]},\n",
+ " {'answer': 'engraved',\n",
+ " 'hint': 'synonyms for engraved',\n",
+ " 'clues': [('graven', 'cut or impressed into a surface'),\n",
+ " ('inscribed', 'cut or impressed into a surface'),\n",
+ " ('etched', 'cut or impressed into a surface'),\n",
+ " ('incised', 'cut or impressed into a surface')]},\n",
+ " {'answer': 'engrossed',\n",
+ " 'hint': 'synonyms for engrossed',\n",
+ " 'clues': [('captive',\n",
+ " 'giving or marked by complete attention to; ; ; - Walter de la Mare'),\n",
+ " ('wrapped',\n",
+ " 'giving or marked by complete attention to; ; ; - Walter de la Mare'),\n",
+ " ('intent',\n",
+ " 'giving or marked by complete attention to; ; ; - Walter de la Mare'),\n",
+ " ('absorbed',\n",
+ " 'giving or marked by complete attention to; ; ; - Walter de la Mare')]},\n",
+ " {'answer': 'engrossing',\n",
+ " 'hint': 'synonyms for engrossing',\n",
+ " 'clues': [('gripping', 'capable of arousing and holding the attention'),\n",
+ " ('absorbing', 'capable of arousing and holding the attention'),\n",
+ " ('riveting', 'capable of arousing and holding the attention'),\n",
+ " ('fascinating', 'capable of arousing and holding the attention')]},\n",
+ " {'answer': 'enlarged',\n",
+ " 'hint': 'synonyms for enlarged',\n",
+ " 'clues': [('hypertrophied',\n",
+ " '(of an organ or body part) excessively enlarged as a result of increased size in the constituent cells'),\n",
+ " ('exaggerated', 'enlarged to an abnormal degree'),\n",
+ " ('blown-up', 'as of a photograph; made larger'),\n",
+ " ('magnified', 'enlarged to an abnormal degree')]},\n",
+ " {'answer': 'enraged',\n",
+ " 'hint': 'synonyms for enraged',\n",
+ " 'clues': [('infuriated', 'marked by extreme anger'),\n",
+ " ('furious', 'marked by extreme anger'),\n",
+ " ('angered', 'marked by extreme anger'),\n",
+ " ('maddened', 'marked by extreme anger')]},\n",
+ " {'answer': 'enraptured',\n",
+ " 'hint': 'synonyms for enraptured',\n",
+ " 'clues': [('rhapsodic', 'feeling great rapture or delight'),\n",
+ " ('ecstatic', 'feeling great rapture or delight'),\n",
+ " ('rapturous', 'feeling great rapture or delight'),\n",
+ " ('rapt', 'feeling great rapture or delight')]},\n",
+ " {'answer': 'ensuant',\n",
+ " 'hint': 'synonyms for ensuant',\n",
+ " 'clues': [('resultant', 'following or accompanying as a consequence'),\n",
+ " ('sequent', 'following or accompanying as a consequence'),\n",
+ " ('consequent', 'following or accompanying as a consequence'),\n",
+ " ('concomitant', 'following or accompanying as a consequence'),\n",
+ " ('incidental', 'following or accompanying as a consequence'),\n",
+ " ('accompanying', 'following or accompanying as a consequence'),\n",
+ " ('attendant', 'following or accompanying as a consequence')]},\n",
+ " {'answer': 'enthralled',\n",
+ " 'hint': 'synonyms for enthralled',\n",
+ " 'clues': [('entranced', 'filled with wonder and delight'),\n",
+ " ('beguiled', 'filled with wonder and delight'),\n",
+ " ('delighted', 'filled with wonder and delight'),\n",
+ " ('captivated', 'filled with wonder and delight'),\n",
+ " ('charmed', 'filled with wonder and delight')]},\n",
+ " {'answer': 'enthralling',\n",
+ " 'hint': 'synonyms for enthralling',\n",
+ " 'clues': [('captivating', 'capturing interest as if by a spell'),\n",
+ " ('enchanting', 'capturing interest as if by a spell'),\n",
+ " ('bewitching', 'capturing interest as if by a spell'),\n",
+ " ('fascinating', 'capturing interest as if by a spell'),\n",
+ " ('entrancing', 'capturing interest as if by a spell')]},\n",
+ " {'answer': 'entire',\n",
+ " 'hint': 'synonyms for entire',\n",
+ " 'clues': [('integral',\n",
+ " 'constituting the undiminished entirety; lacking nothing essential especially not damaged; - Bacon'),\n",
+ " ('intact', '(used of domestic animals) sexually competent'),\n",
+ " ('full', 'constituting the full quantity or extent; complete'),\n",
+ " ('total', 'constituting the full quantity or extent; complete')]},\n",
+ " {'answer': 'entranced',\n",
+ " 'hint': 'synonyms for entranced',\n",
+ " 'clues': [('beguiled', 'filled with wonder and delight'),\n",
+ " ('enthralled', 'filled with wonder and delight'),\n",
+ " ('delighted', 'filled with wonder and delight'),\n",
+ " ('captivated', 'filled with wonder and delight'),\n",
+ " ('charmed', 'filled with wonder and delight')]},\n",
+ " {'answer': 'entrancing',\n",
+ " 'hint': 'synonyms for entrancing',\n",
+ " 'clues': [('captivating', 'capturing interest as if by a spell'),\n",
+ " ('enchanting', 'capturing interest as if by a spell'),\n",
+ " ('bewitching', 'capturing interest as if by a spell'),\n",
+ " ('fascinating', 'capturing interest as if by a spell'),\n",
+ " ('enthralling', 'capturing interest as if by a spell')]},\n",
+ " {'answer': 'enwrapped',\n",
+ " 'hint': 'synonyms for enwrapped',\n",
+ " 'clues': [('captive',\n",
+ " 'giving or marked by complete attention to; ; ; - Walter de la Mare'),\n",
+ " ('wrapped',\n",
+ " 'giving or marked by complete attention to; ; ; - Walter de la Mare'),\n",
+ " ('intent',\n",
+ " 'giving or marked by complete attention to; ; ; - Walter de la Mare'),\n",
+ " ('absorbed',\n",
+ " 'giving or marked by complete attention to; ; ; - Walter de la Mare'),\n",
+ " ('engrossed',\n",
+ " 'giving or marked by complete attention to; ; ; - Walter de la Mare')]},\n",
+ " {'answer': 'eonian',\n",
+ " 'hint': 'synonyms for eonian',\n",
+ " 'clues': [('perpetual', 'continuing forever or indefinitely'),\n",
+ " ('everlasting', 'continuing forever or indefinitely'),\n",
+ " ('unending', 'continuing forever or indefinitely'),\n",
+ " ('aeonian', 'of or relating to a geological eon (longer than an era)'),\n",
+ " ('eternal', 'continuing forever or indefinitely'),\n",
+ " ('unceasing', 'continuing forever or indefinitely'),\n",
+ " ('ageless', 'continuing forever or indefinitely')]},\n",
+ " {'answer': 'ephemeral',\n",
+ " 'hint': 'synonyms for ephemeral',\n",
+ " 'clues': [('passing', 'lasting a very short time'),\n",
+ " ('fugacious', 'lasting a very short time'),\n",
+ " ('transitory', 'lasting a very short time'),\n",
+ " ('transient', 'lasting a very short time'),\n",
+ " ('short-lived', 'lasting a very short time')]},\n",
+ " {'answer': 'epicene',\n",
+ " 'hint': 'synonyms for epicene',\n",
+ " 'clues': [('sissyish', 'having unsuitable feminine qualities'),\n",
+ " ('effeminate', 'having unsuitable feminine qualities'),\n",
+ " ('cissy', 'having unsuitable feminine qualities'),\n",
+ " ('emasculate', 'having unsuitable feminine qualities'),\n",
+ " ('sissy', 'having unsuitable feminine qualities'),\n",
+ " ('sissified', 'having unsuitable feminine qualities'),\n",
+ " ('bisexual', 'having an ambiguous sexual identity')]},\n",
+ " {'answer': 'epicurean',\n",
+ " 'hint': 'synonyms for epicurean',\n",
+ " 'clues': [('hedonic', 'devoted to pleasure'),\n",
+ " ('voluptuous',\n",
+ " 'displaying luxury and furnishing gratification to the senses'),\n",
+ " ('luxurious',\n",
+ " 'displaying luxury and furnishing gratification to the senses'),\n",
+ " ('luxuriant',\n",
+ " 'displaying luxury and furnishing gratification to the senses'),\n",
+ " ('sybaritic',\n",
+ " 'displaying luxury and furnishing gratification to the senses'),\n",
+ " ('voluptuary',\n",
+ " 'displaying luxury and furnishing gratification to the senses'),\n",
+ " ('hedonistic', 'devoted to pleasure')]},\n",
+ " {'answer': 'equanimous',\n",
+ " 'hint': 'synonyms for equanimous',\n",
+ " 'clues': [('collected', 'in full control of your faculties'),\n",
+ " ('self-contained', 'in full control of your faculties'),\n",
+ " ('self-possessed', 'in full control of your faculties'),\n",
+ " ('poised', 'in full control of your faculties'),\n",
+ " ('self-collected', 'in full control of your faculties')]},\n",
+ " {'answer': 'equipped',\n",
+ " 'hint': 'synonyms for equipped',\n",
+ " 'clues': [('fitted out', 'prepared with proper equipment'),\n",
+ " ('weaponed', 'carrying weapons'),\n",
+ " ('furnished',\n",
+ " 'provided with whatever is necessary for a purpose (as furniture or equipment or authority)'),\n",
+ " ('equipt',\n",
+ " 'provided or fitted out with what is necessary or useful or appropriate')]},\n",
+ " {'answer': 'erose',\n",
+ " 'hint': 'synonyms for erose',\n",
+ " 'clues': [('jagged',\n",
+ " 'having an irregularly notched or toothed margin as though gnawed'),\n",
+ " ('jaggy',\n",
+ " 'having an irregularly notched or toothed margin as though gnawed'),\n",
+ " ('toothed',\n",
+ " 'having an irregularly notched or toothed margin as though gnawed'),\n",
+ " ('notched',\n",
+ " 'having an irregularly notched or toothed margin as though gnawed')]},\n",
+ " {'answer': 'erosive',\n",
+ " 'hint': 'synonyms for erosive',\n",
+ " 'clues': [('mordant',\n",
+ " 'of a substance, especially a strong acid; capable of destroying or eating away by chemical action'),\n",
+ " ('corrosive',\n",
+ " 'of a substance, especially a strong acid; capable of destroying or eating away by chemical action'),\n",
+ " ('vitriolic',\n",
+ " 'of a substance, especially a strong acid; capable of destroying or eating away by chemical action'),\n",
+ " ('caustic',\n",
+ " 'of a substance, especially a strong acid; capable of destroying or eating away by chemical action')]},\n",
+ " {'answer': 'erratic',\n",
+ " 'hint': 'synonyms for erratic',\n",
+ " 'clues': [('quicksilver', 'liable to sudden unpredictable change'),\n",
+ " ('fickle', 'liable to sudden unpredictable change'),\n",
+ " ('temperamental',\n",
+ " 'likely to perform unpredictably; ; ; - Osbert Lancaster'),\n",
+ " ('mercurial', 'liable to sudden unpredictable change'),\n",
+ " ('wandering', 'having no fixed course'),\n",
+ " ('planetary', 'having no fixed course')]},\n",
+ " {'answer': 'erstwhile',\n",
+ " 'hint': 'synonyms for erstwhile',\n",
+ " 'clues': [('former', 'belonging to some prior time'),\n",
+ " ('old', 'belonging to some prior time'),\n",
+ " ('quondam', 'belonging to some prior time'),\n",
+ " ('sometime', 'belonging to some prior time'),\n",
+ " ('onetime', 'belonging to some prior time')]},\n",
+ " {'answer': 'essential',\n",
+ " 'hint': 'synonyms for essential',\n",
+ " 'clues': [('substantive',\n",
+ " 'defining rights and duties as opposed to giving the rules by which rights and duties are established'),\n",
+ " ('of the essence', 'of the greatest importance'),\n",
+ " ('all important', 'of the greatest importance'),\n",
+ " ('indispensable', 'absolutely necessary; vitally necessary'),\n",
+ " ('crucial', 'of the greatest importance')]},\n",
+ " {'answer': 'established',\n",
+ " 'hint': 'synonyms for established',\n",
+ " 'clues': [('naturalized',\n",
+ " 'introduced from another region and persisting without cultivation'),\n",
+ " ('effected', 'settled securely and unconditionally'),\n",
+ " ('accomplished', 'settled securely and unconditionally'),\n",
+ " ('constituted',\n",
+ " 'brought about or set up or accepted; especially long established'),\n",
+ " ('conventional', 'conforming with accepted standards')]},\n",
+ " {'answer': 'estimable',\n",
+ " 'hint': 'synonyms for estimable',\n",
+ " 'clues': [('good', 'deserving of esteem and respect'),\n",
+ " ('honorable', 'deserving of esteem and respect'),\n",
+ " ('respectable', 'deserving of esteem and respect'),\n",
+ " ('computable', 'may be computed or estimated')]},\n",
+ " {'answer': 'esurient',\n",
+ " 'hint': 'synonyms for esurient',\n",
+ " 'clues': [('ravening', 'devouring or craving food in great quantities'),\n",
+ " ('voracious', 'devouring or craving food in great quantities'),\n",
+ " ('wolfish', 'devouring or craving food in great quantities'),\n",
+ " ('devouring',\n",
+ " \"(often followed by `for') ardently or excessively desirous\"),\n",
+ " ('famished', 'extremely hungry'),\n",
+ " ('rapacious', 'devouring or craving food in great quantities'),\n",
+ " ('sharp-set', 'extremely hungry'),\n",
+ " ('ravenous', 'devouring or craving food in great quantities'),\n",
+ " ('avid', \"(often followed by `for') ardently or excessively desirous\"),\n",
+ " ('starved', 'extremely hungry'),\n",
+ " ('edacious', 'devouring or craving food in great quantities'),\n",
+ " ('greedy',\n",
+ " \"(often followed by `for') ardently or excessively desirous\")]},\n",
+ " {'answer': 'etched',\n",
+ " 'hint': 'synonyms for etched',\n",
+ " 'clues': [('graven', 'cut or impressed into a surface'),\n",
+ " ('inscribed', 'cut or impressed into a surface'),\n",
+ " ('engraved', 'cut or impressed into a surface'),\n",
+ " ('incised', 'cut or impressed into a surface')]},\n",
+ " {'answer': 'eternal',\n",
+ " 'hint': 'synonyms for eternal',\n",
+ " 'clues': [('perpetual', 'continuing forever or indefinitely'),\n",
+ " ('everlasting', 'continuing forever or indefinitely'),\n",
+ " ('interminable', 'tiresomely long; seemingly without end'),\n",
+ " ('unending', 'continuing forever or indefinitely'),\n",
+ " ('eonian', 'continuing forever or indefinitely'),\n",
+ " ('unceasing', 'continuing forever or indefinitely'),\n",
+ " ('ageless', 'continuing forever or indefinitely'),\n",
+ " ('endless', 'tiresomely long; seemingly without end')]},\n",
+ " {'answer': 'ethereal',\n",
+ " 'hint': 'synonyms for ethereal',\n",
+ " 'clues': [('airy',\n",
+ " 'characterized by lightness and insubstantiality; as impalpable or intangible as air; - Thomas Carlyle'),\n",
+ " ('celestial', 'of heaven or the spirit'),\n",
+ " ('gossamer', 'characterized by unusual lightness and delicacy'),\n",
+ " ('aery',\n",
+ " 'characterized by lightness and insubstantiality; as impalpable or intangible as air; - Thomas Carlyle'),\n",
+ " ('aerial',\n",
+ " 'characterized by lightness and insubstantiality; as impalpable or intangible as air; - Thomas Carlyle'),\n",
+ " ('aeriform',\n",
+ " 'characterized by lightness and insubstantiality; as impalpable or intangible as air; - Thomas Carlyle'),\n",
+ " ('supernal', 'of heaven or the spirit')]},\n",
+ " {'answer': 'ethnic',\n",
+ " 'hint': 'synonyms for ethnic',\n",
+ " 'clues': [('ethnical',\n",
+ " 'denoting or deriving from or distinctive of the ways of living built up by a group of people; - J.F.Kennedy'),\n",
+ " ('pagan',\n",
+ " 'not acknowledging the God of Christianity and Judaism and Islam'),\n",
+ " ('heathenish',\n",
+ " 'not acknowledging the God of Christianity and Judaism and Islam'),\n",
+ " ('cultural',\n",
+ " 'denoting or deriving from or distinctive of the ways of living built up by a group of people; - J.F.Kennedy'),\n",
+ " ('heathen',\n",
+ " 'not acknowledging the God of Christianity and Judaism and Islam')]},\n",
+ " {'answer': 'even',\n",
+ " 'hint': 'synonyms for even',\n",
+ " 'clues': [('tied', 'of the score in a contest'),\n",
+ " ('regular', 'occurring at fixed intervals'),\n",
+ " ('level', 'of the score in a contest'),\n",
+ " ('fifty-fifty',\n",
+ " 'equal in degree or extent or amount; or equally matched or balanced')]},\n",
+ " {'answer': 'everlasting',\n",
+ " 'hint': 'synonyms for everlasting',\n",
+ " 'clues': [('perpetual', 'continuing forever or indefinitely'),\n",
+ " ('sodding',\n",
+ " 'without qualification; used informally as (often pejorative) intensifiers'),\n",
+ " ('pure',\n",
+ " 'without qualification; used informally as (often pejorative) intensifiers'),\n",
+ " ('utter',\n",
+ " 'without qualification; used informally as (often pejorative) intensifiers'),\n",
+ " ('consummate',\n",
+ " 'without qualification; used informally as (often pejorative) intensifiers'),\n",
+ " ('thoroughgoing',\n",
+ " 'without qualification; used informally as (often pejorative) intensifiers'),\n",
+ " ('arrant',\n",
+ " 'without qualification; used informally as (often pejorative) intensifiers'),\n",
+ " ('eonian', 'continuing forever or indefinitely'),\n",
+ " ('gross',\n",
+ " 'without qualification; used informally as (often pejorative) intensifiers'),\n",
+ " ('stark',\n",
+ " 'without qualification; used informally as (often pejorative) intensifiers'),\n",
+ " ('unending', 'continuing forever or indefinitely'),\n",
+ " ('complete',\n",
+ " 'without qualification; used informally as (often pejorative) intensifiers'),\n",
+ " ('perfect',\n",
+ " 'without qualification; used informally as (often pejorative) intensifiers'),\n",
+ " ('staring',\n",
+ " 'without qualification; used informally as (often pejorative) intensifiers'),\n",
+ " ('double-dyed',\n",
+ " 'without qualification; used informally as (often pejorative) intensifiers'),\n",
+ " ('unadulterated',\n",
+ " 'without qualification; used informally as (often pejorative) intensifiers'),\n",
+ " ('eternal', 'continuing forever or indefinitely'),\n",
+ " ('unceasing', 'continuing forever or indefinitely'),\n",
+ " ('ageless', 'continuing forever or indefinitely')]},\n",
+ " {'answer': 'everyday',\n",
+ " 'hint': 'synonyms for everyday',\n",
+ " 'clues': [('mundane',\n",
+ " 'found in the ordinary course of events; ; ; - Anita Diamant'),\n",
+ " ('routine',\n",
+ " 'found in the ordinary course of events; ; ; - Anita Diamant'),\n",
+ " ('daily', 'appropriate for ordinary or routine occasions'),\n",
+ " ('quotidian',\n",
+ " 'found in the ordinary course of events; ; ; - Anita Diamant'),\n",
+ " ('workaday',\n",
+ " 'found in the ordinary course of events; ; ; - Anita Diamant'),\n",
+ " ('unremarkable',\n",
+ " 'found in the ordinary course of events; ; ; - Anita Diamant'),\n",
+ " ('casual', 'appropriate for ordinary or routine occasions')]},\n",
+ " {'answer': 'evident',\n",
+ " 'hint': 'synonyms for evident',\n",
+ " 'clues': [('patent',\n",
+ " 'clearly revealed to the mind or the senses or judgment'),\n",
+ " ('discernible', 'capable of being seen or noticed'),\n",
+ " ('unmistakable',\n",
+ " 'clearly revealed to the mind or the senses or judgment'),\n",
+ " ('apparent', 'clearly revealed to the mind or the senses or judgment'),\n",
+ " ('manifest', 'clearly revealed to the mind or the senses or judgment'),\n",
+ " ('observable', 'capable of being seen or noticed'),\n",
+ " ('plain', 'clearly revealed to the mind or the senses or judgment')]},\n",
+ " {'answer': 'evil',\n",
+ " 'hint': 'synonyms for evil',\n",
+ " 'clues': [('malevolent', 'having or exerting a malignant influence'),\n",
+ " ('vicious', 'having the nature of vice'),\n",
+ " ('malign', 'having or exerting a malignant influence'),\n",
+ " ('malefic', 'having or exerting a malignant influence')]},\n",
+ " {'answer': 'evocative',\n",
+ " 'hint': 'synonyms for evocative',\n",
+ " 'clues': [('reminiscent', 'serving to bring to mind; - Wilder Hobson'),\n",
+ " ('redolent', 'serving to bring to mind; - Wilder Hobson'),\n",
+ " ('remindful', 'serving to bring to mind; - Wilder Hobson'),\n",
+ " ('resonant', 'serving to bring to mind; - Wilder Hobson')]},\n",
+ " {'answer': 'ex',\n",
+ " 'hint': 'synonyms for ex',\n",
+ " 'clues': [('passe', 'out of fashion'),\n",
+ " ('antique', 'out of fashion'),\n",
+ " ('demode', 'out of fashion'),\n",
+ " ('old-hat', 'out of fashion'),\n",
+ " ('old-fashioned', 'out of fashion'),\n",
+ " ('outmoded', 'out of fashion')]},\n",
+ " {'answer': 'exacting',\n",
+ " 'hint': 'synonyms for exacting',\n",
+ " 'clues': [('strict', 'severe and unremitting in making demands'),\n",
+ " ('fastidious',\n",
+ " 'having complicated nutritional requirements; especially growing only in special artificial cultures'),\n",
+ " ('exigent', 'requiring precise accuracy'),\n",
+ " ('stern', 'severe and unremitting in making demands')]},\n",
+ " {'answer': 'exaggerated',\n",
+ " 'hint': 'synonyms for exaggerated',\n",
+ " 'clues': [('enlarged', 'enlarged to an abnormal degree'),\n",
+ " ('overstated', 'represented as greater than is true or reasonable'),\n",
+ " ('overdone', 'represented as greater than is true or reasonable'),\n",
+ " ('magnified', 'enlarged to an abnormal degree')]},\n",
+ " {'answer': 'exalted',\n",
+ " 'hint': 'synonyms for exalted',\n",
+ " 'clues': [('elevated',\n",
+ " 'of high moral or intellectual value; elevated in nature or style; ; - Oliver Franks'),\n",
+ " ('noble-minded',\n",
+ " 'of high moral or intellectual value; elevated in nature or style; ; - Oliver Franks'),\n",
+ " ('rarefied',\n",
+ " 'of high moral or intellectual value; elevated in nature or style; ; - Oliver Franks'),\n",
+ " ('high-flown',\n",
+ " 'of high moral or intellectual value; elevated in nature or style; ; - Oliver Franks'),\n",
+ " ('high-minded',\n",
+ " 'of high moral or intellectual value; elevated in nature or style; ; - Oliver Franks'),\n",
+ " ('grand',\n",
+ " 'of high moral or intellectual value; elevated in nature or style; ; - Oliver Franks'),\n",
+ " ('sublime',\n",
+ " 'of high moral or intellectual value; elevated in nature or style; ; - Oliver Franks'),\n",
+ " ('lofty',\n",
+ " 'of high moral or intellectual value; elevated in nature or style; ; - Oliver Franks'),\n",
+ " ('idealistic',\n",
+ " 'of high moral or intellectual value; elevated in nature or style; ; - Oliver Franks')]},\n",
+ " {'answer': 'exasperating',\n",
+ " 'hint': 'synonyms for exasperating',\n",
+ " 'clues': [('maddening', 'extremely annoying or displeasing'),\n",
+ " ('infuriating', 'extremely annoying or displeasing'),\n",
+ " ('aggravating', 'making worse'),\n",
+ " ('exacerbating', 'making worse'),\n",
+ " ('vexing', 'extremely annoying or displeasing')]},\n",
+ " {'answer': 'exceeding',\n",
+ " 'hint': 'synonyms for exceeding',\n",
+ " 'clues': [('exceptional',\n",
+ " 'far beyond what is usual in magnitude or degree'),\n",
+ " ('prodigious', 'far beyond what is usual in magnitude or degree'),\n",
+ " ('olympian', 'far beyond what is usual in magnitude or degree'),\n",
+ " ('surpassing', 'far beyond what is usual in magnitude or degree')]},\n",
+ " ...],\n",
+ " 'portion': 0}]"
+ ]
+ },
+ "execution_count": 95,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "corpus"
+ ]
},
{
"cell_type": "code",
@@ -239,11 +45962,24 @@
},
{
"cell_type": "code",
- "execution_count": null,
+ "execution_count": 81,
"id": "091e0422-99be-4b20-a20d-17ac296990b6",
"metadata": {},
- "outputs": [],
- "source": []
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "[['accost', 'address']]"
+ ]
+ },
+ "execution_count": 81,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "wn.synonyms('come_up_to')"
+ ]
},
{
"cell_type": "code",