-
Notifications
You must be signed in to change notification settings - Fork 0
/
adverbnoun.py
executable file
·48 lines (38 loc) · 65.4 KB
/
adverbnoun.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import sys
import random
def read_json(wordtype):
with open(wordtype+'.json') as data_file:
words = json.load(data_file)
return words
return None
def single_ver(ver1):
random.seed(ver1)
return random.choice(nouns)
def double_ver(ver1, ver2):
random.seed(ver1+ver2)
return random.choice(adjectives)+"-"+random.choice(nouns)
def triple_ver(ver1, ver2, ver3):
random.seed(ver1+ver2+ver3)
return random.choice(adjectives)+"-"+ random.choice(verbs)+"-"+random.choice(nouns)
def compute_versions():
if len(sys.argv)==2:
ver1 = sys.argv[1]
print single_ver(ver1)
elif len(sys.argv)==3:
ver1 = sys.argv[1]
ver2 = sys.argv[2]
print double_ver(ver1,ver2)
elif len(sys.argv)==4:
ver1 = sys.argv[1]
ver2 = sys.argv[2]
ver3 = sys.argv[3]
print triple_ver(ver1,ver2,ver3)
else:
raise ValueError("Max 3 args!")
nouns = [ "aardvark", "albatross", "alligator", "alpaca", "ant", "anteater", "antelope", "ape", "armadillo", "donkey", "baboon", "badger", "barracuda", "bat", "bear", "beaver", "bee", "bison", "boar", "buffalo", "butterfly", "camel", "capybara", "caribou", "cassowary", "cat", "caterpillar", "cattle", "chamois", "cheetah", "chicken", "chimpanzee", "chinchilla", "chough", "clam", "cobra", "cockroach", "cod", "cormorant", "coyote", "crab", "crane", "crocodile", "crow", "curlew", "deer", "dinosaur", "dog", "dogfish", "dolphin", "donkey", "dotterel", "dove", "dragonfly", "duck", "dugong", "dunlin", "eagle", "echidna", "eel", "eland", "elephant", "elephant-seal", "elk", "emu", "falcon", "ferret", "finch", "fish", "flamingo", "fly", "fox", "frog", "gaur", "gazelle", "gerbil", "giant-panda", "giraffe", "gnat", "gnu", "goat", "goose", "goldfinch", "goldfish", "gorilla", "goshawk", "grasshopper", "grouse", "guanaco", "guinea-fowl", "guinea-pig", "gull", "hamster", "hare", "hawk", "hedgehog", "heron", "herring", "hippopotamus", "hornet", "horse", "human", "hummingbird", "hyena", "ibex", "ibis", "jackal", "jaguar", "jay", "jellyfish", "kangaroo", "kingfisher", "koala", "komodo-dragon", "kookabura", "kouprey", "kudu", "lapwing", "lark", "lemur", "leopard", "lion", "llama", "lobster", "locust", "loris", "louse", "lyrebird", "magpie", "mallard", "manatee", "mandrill", "mantis", "marten", "meerkat", "mink", "mole", "mongoose", "monkey", "moose", "mouse", "mosquito", "mule", "narwhal", "newt", "nightingale", "octopus", "okapi", "opossum", "oryx", "ostrich", "otter", "owl", "ox", "oyster", "panther", "parrot", "partridge", "peafowl", "pelican", "penguin", "pheasant", "pig", "pigeon", "polar-bear", "pony", "porcupine", "porpoise", "prairie-dog", "quail", "quelea", "quetzal", "rabbit", "raccoon", "rail", "ram", "rat", "raven", "red-deer", "red-panda", "reindeer", "rhinoceros", "rook", "salamander", "salmon", "sand-dollar", "sandpiper", "sardine", "scorpion", "sea-lion", "sea-urchin", "seahorse", "seal", "shark", "sheep", "shrew", "skunk", "snail", "snake", "sparrow", "spider", "spoonbill", "squid", "squirrel", "starling", "stingray", "stinkbug", "stork", "swallow", "swan", "tapir", "tarsier", "termite", "tiger", "toad", "trout", "turkey", "turtle", "vicuña", "viper", "vulture", "wallaby", "walrus", "wasp", "water-buffalo", "weasel", "whale", "wolf", "wolverine", "wombat", "woodcock", "woodpecker", "worm", "wren", "yak", "zebra" ]
adjectives = ["other", "new", "good", "old", "little", "great", "small", "young", "long", "black", "high", "only", "big", "white", "political", "right", "large", "real", "sure", "different", "important", "public", "possible", "full", "whole", "certain", "human", "major", "military", "bad", "social", "dead", "true", "economic", "open", "early", "free", "national", "strong", "hard", "special", "clear", "local", "private", "wrong", "late", "short", "poor", "recent", "dark", "fine", "foreign", "ready", "red", "cold", "low", "heavy", "serious", "single", "personal", "difficult", "left", "blue", "federal", "necessary", "general", "easy", "likely", "beautiful", "happy", "past", "hot", "close", "common", "afraid", "simple", "natural", "main", "various", "available", "nice", "present", "final", "sorry", "entire", "current", "similar", "deep", "huge", "rich", "nuclear", "empty", "strange", "quiet", "front", "wide", "modern", "concerned", "green", "very", "alone", "particular", "bright", "supposed", "basic", "medical", "aware", "total", "financial", "legal", "original", "international", "soft", "alive", "interested", "tall", "warm", "popular", "tiny", "top", "normal", "powerful", "silent", "religious", "impossible", "quick", "safe", "thin", "familiar", "gray", "fresh", "physical", "individual", "willing", "crazy", "sick", "angry", "perfect", "tired", "wild", "moral", "brown", "dangerous", "famous", "married", "terrible", "successful", "fair", "professional", "official", "obvious", "glad", "central", "chief", "effective", "light", "complete", "interesting", "thick", "proper", "involved", "responsible", "narrow", "civil", "industrial", "dry", "yellow", "specific", "sharp", "sudden", "direct", "following", "growing", "significant", "traditional", "slow", "previous", "vast", "surprised", "busy", "usual", "clean", "funny", "regular", "scientific", "ordinary", "ancient", "senior", "sweet", "future", "annual", "secret", "equal", "independent", "wonderful", "tough", "broad", "additional", "careful", "domestic", "brief", "enormous", "commercial", "grand", "average", "sexual", "nervous", "pale", "immediate", "critical", "proud", "like", "complex", "separate", "considerable", "still", "extra", "expensive", "guilty", "active", "mad", "asleep", "wooden", "cool", "presidential", "apparent", "weak", "essential", "living", "pretty", "cultural", "useful", "actual", "unusual", "daily", "potential", "wet", "solid", "lovely", "comfortable", "formal", "outside", "massive", "sad", "corporate", "distant", "loose", "rare", "stupid", "visible", "liberal", "flat", "pleased", "pure", "curious", "practical", "upper", "technical", "male", "appropriate", "fat", "just", "due", "mere", "handsome", "mental", "conservative", "positive", "leading", "naked", "false", "drunk", "dirty", "friendly", "constant", "well", "used", "emotional", "internal", "odd", "historical", "female", "ill", "broken", "capable", "southern", "pleasant", "bare", "minor", "eager", "lucky", "urban", "steady", "fiscal", "rough", "primary", "reasonable", "typical", "inner", "favorite", "attractive", "slight", "innocent", "limited", "straight", "pink", "excellent", "double", "dramatic", "violent", "honest", "electric", "fellow", "substantial", "opposite", "awful", "severe", "joint", "armed", "hungry", "remarkable", "increased", "gentle", "illegal", "middle", "bitter", "mass", "permanent", "increasing", "damn", "golden", "correct", "intense", "round", "northern", "proposed", "socalled", "criminal", "healthy", "plain", "vital", "blind", "native", "intellectual", "unknown", "extreme", "existing", "raw", "prime", "brilliant", "sensitive", "extraordinary", "sufficient", "remaining", "ultimate", "unique", "royal", "initial", "negative", "fundamental", "nearby", "smart", "strategic", "educational", "unlikely", "smooth", "modest", "conventional", "giant", "scared", "cheap", "dear", "delicate", "anxious", "valuable", "standard", "desperate", "lonely", "diplomatic", "firm", "wise", "principal", "congressional", "occasional", "ugly", "vice", "radical", "faint", "working", "absolute", "intelligent", "racial", "mutual", "silly", "fast", "musical", "tight", "complicated", "numerous", "crucial", "square", "contemporary", "bloody", "western", "endless", "inevitable", "environmental", "constitutional", "rapid", "worried", "lost", "genuine", "temporary", "democratic", "rural", "regional", "given", "painful", "literary", "chemical", "sophisticated", "decent", "academic", "awake", "conscious", "revolutionary", "surprising", "elderly", "agricultural", "psychological", "pregnant", "live", "adequate", "superior", "grateful", "prominent", "frightened", "remote", "overall", "stiff", "harsh", "electronic", "spiritual", "okay", "closed", "excited", "convinced", "longterm", "unexpected", "dull", "evident", "civilian", "mysterious", "romantic", "impressive", "continuing", "exciting", "logical", "peculiar", "exact", "widespread", "foolish", "extensive", "evil", "continued", "confident", "generous", "legislative", "stable", "vulnerable", "elegant", "embarrassed", "hostile", "efficient", "blond", "dumb", "advanced", "defensive", "outer", "neat", "estimated", "wealthy", "dying", "loud", "creative", "acceptable", "unhappy", "sheer", "competitive", "concrete", "reluctant", "fucking", "precious", "tremendous", "burning", "precise", "uncertain", "holy", "artificial", "vague", "ideal", "universal", "moderate", "subtle", "mild", "peaceful", "assistant", "invisible", "casual", "crowded", "crude", "running", "classic", "controversial", "ridiculous", "frequent", "grim", "accurate", "detailed", "goddamn", "fun", "fierce", "cruel", "incredible", "blank", "dim", "suitable", "classical", "elaborate", "collective", "eastern", "legitimate", "aggressive", "rear", "administrative", "automatic", "dependent", "ashamed", "distinct", "fit", "clever", "brave", "ethnic", "maximum", "relative", "primitive", "uncomfortable", "profound", "sacred", "biological", "identical", "furious", "loyal", "rational", "mechanical", "mean", "naval", "noble", "ambitious", "purple", "historic", "dominant", "suburban", "developing", "calm", "frozen", "subsequent", "charming", "damp", "fixed", "rigid", "offensive", "electrical", "shy", "continuous", "urgent", "weary", "immense", "splendid", "downtown", "uneasy", "disappointed", "helpless", "voluntary", "polite", "junior", "gross", "striking", "overwhelming", "unconscious", "steep", "outstanding", "tender", "tragic", "costly", "miserable", "near", "useless", "welcome", "external", "helpful", "weekly", "middleaged", "suspicious", "oldfashioned", "technological", "damned", "awkward", "visual", "organized", "ideological", "orange", "horrible", "strict", "magnificent", "deadly", "dusty", "mighty", "puzzled", "bold", "global", "passing", "magic", "fond", "judicial", "missing", "definite", "changing", "rubber", "theoretical", "satisfied", "promising", "abstract", "excessive", "comparable", "fatal", "distinguished", "inadequate", "slender", "artistic", "known", "sympathetic", "favorable", "cheerful", "faithful", "delighted", "unnecessary", "sole", "cautious", "productive", "reliable", "patient", "sensible", "desirable", "depressed", "atomic", "able", "instant", "relevant", "alien", "spectacular", "lesser", "swift", "comic", "enthusiastic", "marvelous", "experimental", "weird", "retired", "fascinating", "content", "medieval", "inclined", "bored", "ruling", "flying", "consistent", "organic", "alleged", "grave", "smiling", "realistic", "amazing", "exotic", "symbolic", "confused", "underground", "spare", "philosophical", "vigorous", "troubled", "shallow", "amused", "lively", "genetic", "impatient", "brutal", "solar", "unfair", "formidable", "tense", "unfortunate", "minimum", "sleeping", "secondary", "shiny", "jealous", "insane", "gay", "vivid", "wounded", "hurt", "intimate", "monthly", "sour", "socialist", "worthy", "preliminary", "colonial", "middleclass", "alternative", "influential", "unpleasant", "comprehensive", "devoted", "upset", "secure", "absurd", "neutral", "frightening", "profitable", "fragile", "civilized", "slim", "partial", "added", "fearful", "optimistic", "isolated", "eternal", "vocal", "beloved", "alert", "verbal", "rising", "skilled", "antique", "municipal", "written", "restless", "outdoor", "governmental", "driving", "sore", "informal", "loving", "retail", "hidden", "determined", "monetary", "convenient", "thoughtful", "colored", "progressive", "bizarre", "sweeping", "fancy", "expected", "fantastic", "editorial", "intact", "bottom", "multiple", "wellknown", "nasty", "protective", "acute", "combined", "related", "fortunate", "earnest", "divine", "passionate", "icy", "noisy", "vicious", "dreadful", "apt", "boring", "unprecedented", "decisive", "sunny", "marked", "experienced", "disturbing", "satisfactory", "sober", "random", "electoral", "shocked", "deliberate", "coming", "orderly", "surrounding", "unwilling", "inherent", "mixed", "naive", "dense", "hopeless", "aesthetic", "supreme", "encouraging", "institutional", "solemn", "stubborn", "required", "relaxed", "bald", "frantic", "exclusive", "rotten", "filthy", "flexible", "explicit", "glorious", "lean", "ignorant", "extended", "embarrassing", "architectural", "mortal", "corrupt", "hopeful", "regulatory", "valid", "characteristic", "tribal", "capitalist", "diverse", "functional", "improved", "ironic", "graceful", "unaware", "respectable", "eligible", "lousy", "established", "postwar", "objective", "wary", "elementary", "moving", "superb", "cute", "minimal", "meaningful", "notable", "structural", "developed", "rolling", "fashionable", "persistent", "distinctive", "terrific", "thorough", "skeptical", "secular", "chronic", "level", "everyday", "visiting", "infinite", "shortterm", "terrorist", "youthful", "unemployed", "forced", "liquid", "explosive", "rude", "colorful", "renewed", "semantic", "astonishing", "passive", "heroic", "gleaming", "indifferent", "vertical", "prior", "anonymous", "absent", "customary", "mobile", "uniform", "solitary", "probable", "amazed", "petty", "bleak", "athletic", "tentative", "harmless", "ample", "rightwing", "polished", "obscure", "sincere", "dried", "intensive", "equivalent", "convincing", "idle", "vacant", "mature", "amusing", "competent", "ominous", "savage", "motionless", "tropical", "blunt", "drunken", "delicious", "lazy", "ragged", "longtime", "nationwide", "startling", "civic", "freezing", "muscular", "circular", "imperial", "irrelevant", "countless", "gloomy", "startled", "disastrous", "skinny", "hollow", "upward", "ethical", "underlying", "careless", "wholesale", "abandoned", "unfamiliar", "mandatory", "imaginary", "bewildered", "annoyed", "magnetic", "dazzling", "lengthy", "stern", "surgical", "clinical", "fulltime", "metropolitan", "moist", "unlike", "doubtful", "prosperous", "keen", "awesome", "humble", "interior", "psychiatric", "clumsy", "outraged", "theatrical", "educated", "gigantic", "scattered", "privileged", "sleepy", "battered", "meaningless", "predictable", "gradual", "miniature", "radioactive", "prospective", "aging", "destructive", "authentic", "portable", "bearded", "balanced", "shining", "spontaneous", "bureaucratic", "inferior", "sturdy", "cynical", "exquisite", "talented", "immune", "imaginative", "ripe", "shared", "kind", "parliamentary", "glowing", "frail", "astonished", "forward", "inside", "operational", "faded", "closing", "pro", "coastal", "shrewd", "preoccupied", "celebrated", "wicked", "bourgeois", "marginal", "transparent", "dynamic", "psychic", "plump", "coarse", "bleeding", "striped", "eventual", "residential", "hysterical", "pathetic", "planned", "fake", "imminent", "sentimental", "stunning", "worldwide", "militant", "sizable", "representative", "incapable", "provincial", "poetic", "injured", "tactical", "selfish", "winning", "foul", "repeated", "novel", "dubious", "parttime", "abrupt", "lone", "overseas", "grey", "varied", "cooperative", "muddy", "scheduled", "legendary", "arrogant", "conspicuous", "varying", "devastating", "vulgar", "martial", "amateur", "mathematical", "deaf", "scarce", "specialized", "honorable", "outrageous", "confidential", "fallen", "goddamned", "fiveyear", "feminine", "monstrous", "brisk", "systematic", "exhausted", "frank", "lunar", "daring", "shadowy", "respected", "stark", "accepted", "successive", "pending", "prolonged", "unseen", "uniformed", "wretched", "sullen", "arbitrary", "drastic", "crooked", "resulting", "intricate", "unpredictable", "printed", "utter", "satisfying", "delightful", "linguistic", "shabby", "statistical", "accessible", "prestigious", "trivial", "waiting", "futile", "prepared", "aged", "misleading", "cognitive", "shocking", "childish", "elected", "magical", "forthcoming", "exceptional", "gifted", "stricken", "fiery", "cardboard", "shaky", "conflicting", "commanding", "starving", "accustomed", "rocky", "longrange", "floating", "sinister", "potent", "phony", "lasting", "understandable", "curved", "barren", "lethal", "toxic", "deserted", "ambiguous", "notorious", "synthetic", "worthwhile", "imported", "intent", "reduced", "painted", "taut", "sociological", "questionable", "crisp", "pointed", "harmful", "horizontal", "rival", "somber", "benign", "prevailing", "selected", "organizational", "excess", "dedicated", "veteran", "implicit", "prudent", "plausible", "confusing", "smoking", "largescale", "subdued", "constructive", "marital", "scarlet", "rugged", "darkened", "untouched", "above", "matching", "covert", "communal", "sticky", "affluent", "energetic", "stale", "controlled", "qualified", "reminiscent", "shut", "blonde", "handy", "ritual", "straightforward", "terminal", "dizzy", "sane", "twisted", "occupied", "finished", "opposing", "sly", "depressing", "irregular", "marine", "communist", "obscene", "wrinkled", "unsuccessful", "gracious", "static", "consecutive", "reserve", "exposed", "scholarly", "sleek", "reckless", "oral", "comforting", "pressing", "swollen", "viable", "carved", "obsessed", "projected", "hideous", "unthinkable", "mock", "susceptible", "respective", "goddam", "downward", "memorable", "worn", "raised", "glittering", "beneficial", "lingering", "patriotic", "stunned", "hairy", "worrying", "lighted", "sexy", "abundant", "tangled", "perpetual", "irresistible", "terrified", "compelling", "unmistakable", "feeble", "uneven", "trained", "folded", "relentless", "killed", "gorgeous", "conservation", "serene", "eerie", "premature", "dismal", "competing", "risky", "unacceptable", "indirect", "witty", "muffled", "feasible", "interstate", "heated", "uncommon", "accidental", "queer", "innovative", "parallel", "fried", "unnatural", "cracked", "persuasive", "integrated", "ongoing", "homosexual", "sound", "fertile", "canned", "preceding", "worldly", "onstage", "declining", "advisory", "juvenile", "slippery", "numb", "postal", "olive", "eccentric", "lay", "chilly", "shrill", "ceremonial", "registered", "boiling", "contradictory", "irresponsible", "then", "industrialized", "obsolete", "rusty", "inflationary", "split", "discreet", "intolerable", "barefoot", "territorial", "outspoken", "audible", "adverse", "associate", "impending", "decorative", "luminous", "twoyear", "expanding", "unchanged", "outstretched", "momentary", "goodlooking", "cunning", "overnight", "sprawling", "unbelievable", "bland", "liable", "terrifying", "televised", "appealing", "breathless", "alarming", "supporting", "greasy", "affirmative", "guiding", "homeless", "triumphant", "rainy", "stolen", "empirical", "timid", "provocative", "knowledgeable", "pragmatic", "touching", "desired", "amiable", "attempted", "humane", "adjacent", "superficial", "greedy", "assorted", "elusive", "ruthless", "lush", "soothing", "imposing", "preferred", "lavish", "pervasive", "managing", "sandy", "inappropriate", "desolate", "nude", "reassuring", "shimmering", "firstclass", "unfinished", "insistent", "comparative", "conceivable", "admirable", "courageous", "aristocratic", "meager", "subjective", "vain", "disgusted", "dual", "towering", "responsive", "ailing", "compact", "torn", "sortal", "entertaining", "dreary", "metallic", "tedious", "irrational", "immoral", "teenage", "interim", "jagged", "selective", "volatile", "cozy", "unanimous", "unlimited", "hired", "cosmic", "indoor", "retarded", "gold", "fabulous", "dignified", "longdistance", "highschool", "classified", "luxurious", "insufficient", "pious", "incomplete", "oblivious", "imperialist", "stately", "lifelong", "subordinate", "extravagant", "intrinsic", "unpopular", "scant", "surplus", "radiant", "ruined", "grotesque", "hazardous", "disabled", "intriguing", "worthless", "reported", "hoarse", "utmost", "muted", "bony", "disgusting", "monumental", "pleasing", "sterile", "agreeable", "threeyear", "tricky", "lucrative", "respectful", "inexpensive", "bulky", "troublesome", "affectionate", "coherent", "unreasonable", "nineteenthcentury", "curly", "indispensable", "nursing", "incompetent", "governing", "alternate", "suspected", "leftwing", "refined", "overt", "chilling", "virtual", "devoid", "perverse", "enduring", "outright", "overhead", "unnoticed", "nonprofit", "pointless", "appalling", "dental", "chosen", "enlightened", "robust", "commonplace", "damaging", "conscientious", "eloquent", "erratic", "applied", "merry", "ardent", "flowing", "incoming", "chaotic", "noticeable", "pitiful", "locked", "swelling", "definitive", "homemade", "super", "pronounced", "kindly", "prone", "attentive", "unstable", "unrelated", "charitable", "armored", "unclear", "tangible", "medium", "winding", "slick", "credible", "frustrating", "shifting", "spacious", "daytoday", "surviving", "expanded", "arid", "unwanted", "unbearable", "hesitant", "recognizable", "multinational", "abdominal", "murderous", "glossy", "mute", "workingclass", "insignificant", "ingenious", "masculine", "blessed", "gaunt", "miraculous", "unconstitutional", "parental", "rigorous", "bodily", "impersonal", "backward", "computerized", "fouryear", "unmarried", "wry", "resident", "luxury", "highlevel", "partisan", "powerless", "seasonal", "selfconscious", "triple", "onetime", "ecological", "periodic", "racist", "exaggerated", "facial", "erotic", "unreal", "durable", "manual", "rounded", "concentrated", "literal", "mystical", "stimulating", "staggering", "tempting", "lastminute", "erect", "feudal", "head", "emerging", "hind", "brooding", "candid", "paranoid", "defective", "linear", "immortal", "shattered", "unsure", "swinging", "compatible", "ghastly", "investigative", "rosy", "convicted", "sensational", "committed", "makeshift", "tolerant", "forceful", "supernatural", "joyous", "limp", "improper", "hanging", "sliding", "renowned", "tattered", "nonexistent", "supportive", "frustrated", "undercover", "handicapped", "apprehensive", "plentiful", "authoritative", "sustained", "disappointing", "hereditary", "photographic", "impoverished", "ornate", "respiratory", "substantive", "acting", "nutritional", "unofficial", "innumerable", "prevalent", "dire", "menacing", "outward", "brittle", "hasty", "sparkling", "sled", "geographical", "therapeutic", "melancholy", "adolescent", "hearty", "disturbed", "sweaty", "poisonous", "paid", "ineffective", "humorous", "burly", "rebellious", "reddish", "stout", "teenage", "eminent", "rhythmic", "physiological", "guaranteed", "opaque", "folding", "fleeting", "fullscale", "lowincome", "infectious", "stringent", "stained", "beige", "stirring", "soaring", "glamorous", "airborne", "improbable", "austere", "anticipated", "designated", "oval", "restrictive", "yearly", "precarious", "relieved", "said", "feverish", "occupational", "holding", "speculative", "abnormal", "challenging", "healing", "boyish", "forbidding", "divorced", "famed", "sluggish", "struggling", "united", "undesirable", "steaming", "consulting", "answering", "recreational", "accompanying", "cramped", "journalistic", "neighboring", "fictional", "chopped", "phenomenal", "bankrupt", "illicit", "advancing", "upcoming", "racing", "protected", "padded", "venerable", "fuzzy", "behavioral", "roast", "mocking", "reactionary", "inefficient", "packed", "sloppy", "sparse", "foster", "revealing", "reverse", "gaping", "bluecollar", "thankful", "down", "unimportant", "traveling", "corresponding", "maternal", "autonomous", "conceptual", "smoky", "baked", "stuffed", "murky", "totalitarian", "ghostly", "seeming", "flickering", "sensual", "clenched", "offshore", "stinging", "oppressive", "strained", "messy", "executive", "evolutionary", "theological", "damaged", "unrealistic", "rectangular", "off", "mainstream", "benevolent", "thirsty", "blinding", "loaded", "applicable", "unused", "crushed", "tan", "factual", "involuntary", "brandnew", "akin", "scary", "modified", "mindless", "born", "feminist", "integral", "uncanny", "aloof", "spreading", "watery", "playful", "stocky", "wasted", "compulsory", "indignant", "pertinent", "incredulous", "simultaneous", "turbulent", "framed", "aching", "falling", "cardiac", "trim", "silvery", "accused", "pastoral", "barbed", "adjoining", "inspired", "courteous", "skillful", "majestic", "gilded", "published", "perennial", "upright", "seasoned", "continual", "papal", "victorious", "optical", "ecstatic", "agonizing", "shameful", "expressive", "inconsistent", "insulting", "cloudy", "defiant", "restricted", "approaching", "aggregate", "orthodox", "unified", "allout", "wooded", "nationalist", "favored", "lofty", "assured", "smug", "earthly", "improving", "instrumental", "stray", "clandestine", "managerial", "animated", "intended", "flawed", "bent", "clerical", "outgoing", "righteous", "unspoken", "poignant", "faulty", "defeated", "authoritarian", "treacherous", "catastrophic", "refreshing", "unidentified", "suicidal", "sickly", "disciplined", "meticulous", "preferable", "trusted", "hectic", "husky", "distraught", "select", "snowy", "ferocious", "crumpled", "humiliating", "divided", "crippled", "infamous", "chic", "broke", "sovereign", "continental", "idealistic", "firstrate", "guarded", "learned", "nameless", "runaway", "metaphysical", "senseless", "boiled", "needy", "silver", "recorded", "polar", "realestate", "stormy", "incomprehensible", "wiry", "raging", "composite", "flamboyant", "crimson", "reproductive", "intermediate", "ubiquitous", "repressive", "hefty", "listening", "goodnatured", "parochial", "stylish", "hightech", "flaming", "coronary", "overweight", "bathing", "threeday", "tidy", "beleaguered", "manifest", "ludicrous", "indigenous", "adamant", "placid", "inept", "exuberant", "stony", "salty", "seductive", "accomplished", "impassive", "grazing", "congenial", "misguided", "wideeyed", "revised", "bass", "sonic", "budgetary", "halfway", "ensuing", "admiring", "palpable", "nightly", "hooded", "bestknown", "eighteenthcentury", "dissident", "morbid", "incumbent", "demanding", "inexperienced", "hazy", "revolving", "rented", "disadvantaged", "innate", "dietary", "minute", "cultivated", "sealed", "contemptuous", "rhetorical", "conciliatory", "articulate", "jobless", "macho", "forgotten", "lifeless", "proven", "latent", "secretive", "perilous", "token", "graphic", "alcoholic", "overdue", "permissible", "shattering", "preventive", "illiterate", "back", "atmospheric", "thermal", "quaint", "negotiated", "preposterous", "temporal", "restrained", "triangular", "mayoral", "spatial", "heady", "biblical", "fitting", "pessimistic", "mammoth", "allied", "failed", "intuitive", "nagging", "tidal", "angular", "speechless", "finishing", "protracted", "watchful", "businesslike", "automated", "versatile", "booming", "pouring", "misty", "deceptive", "sunken", "singular", "suspended", "unworthy", "immigrant", "expressionless", "airy", "mournful", "neurotic", "cubic", "unauthorized", "economical", "fundraising", "captive", "blatant", "farreaching", "subversive", "imperfect", "jolly", "inaccurate", "resentful", "strenuous", "suffering", "hardened", "malicious", "unjust", "perceptive", "newborn", "promised", "differing", "virgin", "alarmed", "grassy", "frivolous", "apologetic", "wasteful", "endangered", "unarmed", "adept", "unavoidable", "approved", "trembling", "stuck", "highranking", "crushing", "prescribed", "dependable", "fragrant", "expansive", "unfriendly", "covered", "bemused", "digital", "probing", "sloping", "manmade", "festive", "unilateral", "unmarked", "bipartisan", "statewide", "burgeoning", "devout", "sickening", "mediocre", "adventurous", "elevated", "suggestive", "accountable", "virtuous", "lame", "heavenly", "bruised", "unbroken", "irritable", "affected", "inconceivable", "sometime", "vile", "baggy", "timely", "glistening", "imagined", "unprepared", "unresolved", "windy", "humanitarian", "overriding", "detached", "annoying", "narrative", "interminable", "appalled", "penal", "unsatisfactory", "instinctive", "variable", "cumulative", "obedient", "deficient", "colossal", "unaffected", "extinct", "routine", "microscopic", "compassionate", "nominal", "forlorn", "distorted", "mistaken", "enclosed", "infected", "fervent", "analogous", "frigid", "instructive", "appointed", "oneway", "gnarled", "problematic", "sardonic", "twohour", "hypothetical", "prompt", "anguished", "electromagnetic", "sensuous", "homely", "beaten", "malignant", "rotting", "concealed", "peripheral", "creaking", "impeccable", "khaki", "grinning", "irreversible", "rampant", "wondrous", "inward", "manufactured", "grisly", "cooked", "discriminatory", "cerebral", "knowing", "auxiliary", "operative", "losing", "genial", "phonetic", "ecclesiastical", "sarcastic", "incorrect", "ruddy", "welltodo", "inexplicable", "unreliable", "developmental", "woolen", "agitated", "lyrical", "consequent", "calculated", "molecular", "pompous", "presentday", "shaggy", "even", "inhuman", "sublime", "diagnostic", "manly", "raucous", "balding", "after", "bilateral", "mounted", "blackened", "assembled", "separated", "gaudy", "evangelical", "darling", "juicy", "impotent", "receptive", "irritating", "pulmonary", "dazed", "crosscountry", "unavailable", "parked", "habitual", "lexical", "lowered", "unwise", "planetary", "throbbing", "enigmatic", "superstitious", "threatening", "manned", "childlike", "sporting", "righthand", "adult", "reflective", "whitehaired", "discernible", "celestial", "prodigious", "translucent", "equitable", "epic", "frayed", "arduous", "flimsy", "penetrating", "howling", "disparate", "alike", "alltime", "deformed", "comical", "inert", "procedural", "resistant", "vibrant", "geographic", "wistful", "specified", "rightful", "spirited", "unborn", "enjoyable", "regal", "cumbersome", "burned", "frenzied", "gubernatorial", "deteriorating", "haunted", "evasive", "neglected", "anthropological", "inescapable", "clearcut", "visionary", "bloated", "accumulated", "agrarian", "pained", "dwindling", "heightened", "grayhaired", "distressing", "grinding", "insecure", "archaic", "piercing", "fluent", "leisurely", "giddy", "slimy", "oncoming", "shortlived", "spinal", "wholesome", "unanswered", "illegitimate", "staunch", "twoday", "rumpled", "speedy", "soaked", "rocking", "invaluable", "gallant", "tacit", "finite", "inviting", "sporadic", "powdered", "cheery", "volcanic", "optional", "mischievous", "flowered", "contagious", "automotive", "inflated", "mythic", "analytical", "infrared", "twoweek", "binding", "ancestral", "dissatisfied", "upstate", "veritable", "unaccustomed", "oily", "monotonous", "seated", "feeding", "fluorescent", "undue", "impassioned", "picturesque", "vocational", "tranquil", "tumultuous", "rustic", "patterned", "twostory", "pagan", "flash", "playing", "exhilarating", "maiden", "threedimensional", "mythical", "thriving", "drab", "blackandwhite", "honorary", "dingy", "founding", "imperative", "indistinguishable", "lightweight", "avid", "dreamy", "everlasting", "obsessive", "tional", "homogeneous", "innercity", "changed", "tame", "colorless", "haggard", "implacable", "altered", "unequal", "focal", "perceptual", "literate", "priceless", "diminishing", "harmonious", "darkhaired", "fatty", "squat", "undecided", "banal", "fruitful", "pioneering", "innocuous", "cordial", "rewarding", "unsafe", "maritime", "overcrowded", "timeless", "fledgling", "nostalgic", "abreast", "onetime", "humid", "astronomical", "oneman", "deepening", "blazing", "fleshy", "dishonest", "succeeding", "qualitative", "needless", "rickety", "joyful", "stated", "ambivalent", "hybrid", "sixmonth", "limiting", "workable", "sleepless", "unpaid", "mundane", "flashy", "stagnant", "bumper", "recurring", "sinful", "immaculate", "synonymous", "measured", "thrilling", "longstanding", "unruly", "bewildering", "unfit", "edgy", "numerical", "sumptuous", "fragmented", "puffy", "elastic", "highpitched", "momentous", "woven", "unsteady", "unnamed", "cosmetic", "snap", "impenetrable", "floral", "waving", "promotional", "tenuous", "lonesome", "embroidered", "strident", "cherished", "aghast", "fundamentalist", "whitecollar", "afloat", "disruptive", "lawenforcement", "gathered", "indefinite", "intervening", "publicized", "geometric", "disciplinary", "descriptive", "wavy", "edible", "disgruntled", "obligatory", "untrue", "amber", "snug", "resolute", "awed", "simplistic", "grandiose", "crippling", "highspeed", "mounting", "glaring", "smalltown", "cavernous", "hushed", "wageprice", "demographic", "diseased", "unpublished", "causal", "defenseless", "sheltered", "dormant", "compulsive", "loved", "willful", "truthful", "punitive", "disposable", "ajar", "drowsy", "statutory", "tanned", "proprietary", "informed", "unheard", "decisionmaking", "transient", "unlawful", "dour", "negligible", "underwater", "optimum", "illusory", "imaginable", "borrowed", "divergent", "looking", "exempt", "contentious", "forbidden", "cowardly", "masked", "crazed", "silken", "parched", "furry", "wandering", "insensitive", "overall", "elated", "waxed", "veiled", "envious", "insidious", "scrawny", "unwarranted", "lithe", "abrasive", "pretentious", "faroff", "murdered", "deft", "prickly", "musty", "shapeless", "incongruous", "gruesome", "honored", "perceived", "grieving", "unspecified", "dizzying", "privy", "noteworthy", "charred", "median", "fearless", "twisting", "unattractive", "flawless", "welcoming", "flushed", "hardy", "glum", "scenic", "devious", "recurrent", "distasteful", "jubilant", "ballistic", "hilarious", "naughty", "bustling", "discarded", "pristine", "exemplary", "fading", "complacent", "incessant", "engaging", "twentiethcentury", "protectionist", "rudimentary", "traumatic", "steamy", "emphatic", "hardline", "teeming", "generating", "stuffy", "connecting", "stationary", "genteel", "populist", "supple", "hateful", "retrospective", "glazed", "lawful", "arched", "tiresome", "lucid", "reserved", "pivotal", "grimy", "surly", "antiSoviet", "contrary", "quarterly", "oldtime", "residual", "spiral", "decaying", "threatened", "docile", "appreciative", "jovial", "fascist", "worrisome", "redhaired", "undisturbed", "creamy", "welldressed", "serial", "existential", "mountainous", "pastel", "selfsufficient", "spoken", "express", "tasty", "maroon", "infrequent", "deceased", "fullfledged", "transitional", "leafy", "gravitational", "furtive", "prophetic", "nasal", "unwelcome", "troubling", "immobile", "merciful", "uncontrollable", "impartial", "unfavorable", "attendant", "associated", "highrise", "vascular", "fateful", "concerted", "rash", "stubby", "paramount", "impulsive", "fraudulent", "drooping", "reciprocal", "usable", "fastfood", "touchy", "astute", "oversized", "mottled", "slack", "fruitless", "unhealthy", "decorated", "shady", "shaped", "fanciful", "quivering", "charismatic", "sordid", "oppressed", "inaccessible", "fastidious", "brazen", "gloved", "crumbling", "underdeveloped", "scarred", "rambling", "incipient", "remedial", "derelict", "incompatible", "fanatical", "smoked", "secondhand", "hypnotic", "failing", "marching", "flattened", "paradoxical", "unskilled", "esthetic", "tolerable", "pungent", "substitute", "soggy", "terse", "tiring", "fictitious", "manageable", "inventive", "haughty", "normative", "premier", "grudging", "vested", "exhausting", "crosslegged", "selfevident", "away", "horrified", "prolific", "incoherent", "quantitative", "fulllength", "yearround", "unkind", "provisional", "exterior", "brash", "inconclusive", "landed", "breathtaking", "acrid", "noted", "resultant", "longtime", "resounding", "lovable", "hypocritical", "plush", "foggy", "acknowledged", "idiotic", "tracking", "ceramic", "taxable", "enterprising", "flashing", "wee", "barbaric", "deafening", "orbital", "lurid", "dated", "hated", "buoyant", "mating", "pictorial", "overlapping", "lax", "archetypal", "manic", "limitless", "puzzling", "condescending", "hapless", "meek", "faceless", "uncommitted", "horrid", "greenish", "unorthodox", "unending", "accelerated", "daycare", "undeniable", "bushy", "searing", "fearsome", "unharmed", "divisive", "overpowering", "diving", "telling", "determining", "uptight", "cast", "enlarged", "ebullient", "disagreeable", "insatiable", "grownup", "demented", "puffing", "inconvenient", "uncontrolled", "inland", "repulsive", "unintelligible", "blueeyed", "pallid", "nonviolent", "dilapidated", "unyielding", "astounded", "marvellous", "lowcost", "purposeful", "courtly", "predominant", "conversational", "erroneous", "resourceful", "converted", "disconcerting", "oblique", "dreaded", "indicative", "silky", "sixyear", "frontpage", "biting", "flowering", "sunlit", "licensed", "unspeakable", "adrift", "awash", "identifiable", "girlish", "zealous", "spooky", "uncompromising", "deserving", "driven", "certified", "unlucky", "temperate", "budding", "impractical", "publicrelations", "inflexible", "sensory", "pornographic", "outlandish", "resonant", "belligerent", "wan", "leftover", "spotted", "soybean", "easygoing", "vengeful", "proportional", "inaugural", "dank", "screaming", "heterosexual", "sliced", "yearold", "considerate", "thunderous", "distressed", "warring", "assertive", "foreseeable", "psychotic", "intermittent", "antiCommunist", "generalized", "unable", "molten", "excruciating", "illustrious", "voluminous", "offending", "trustworthy", "grating", "laughing", "oneyear", "industrious", "uninterrupted", "dashing", "speaking", "metabolic", "flattering", "onesided", "ineffectual", "primal", "digestive", "taped", "floppy", "jaunty", "practiced", "walled", "hospitable", "dutiful", "melodramatic", "intestinal", "cluttered", "conclusive", "complementary", "unprotected", "buzzing", "attributable", "tasteless", "forthright", "wily", "hourly", "delayed", "sweating", "affable", "studied", "chubby", "thyroid", "chilled", "conducive", "childless", "faltering", "authorized", "buried", "landbased", "observable", "hurried", "curving", "dismayed", "pernicious", "upturned", "believable", "questioning", "syndicated", "pharmaceutical", "highrisk", "resigned", "discrete", "likable", "imprisoned", "cocky", "outdated", "autocratic", "ablaze", "askew", "grammatical", "wintry", "incidental", "matteroffact", "disputed", "exorbitant", "lowlevel", "sodden", "skeletal", "disproportionate", "soiled", "cellular", "ephemeral", "perfunctory", "inconsequential", "flourishing", "intentional", "twoway", "elemental", "whispered", "fourday", "stinking", "informative", "tenacious", "outlying", "virulent", "horrendous", "horrifying", "burnt", "longstanding", "senile", "unmoving", "deprived", "interpersonal", "intimidating", "posh", "dainty", "portly", "nondescript", "inquisitive", "exiled", "capricious", "scandalous", "severed", "debilitating", "widowed", "horny", "sallow", "uptodate", "selfcontained", "carefree", "boisterous", "coordinated", "antiSemitic", "superfluous", "metric", "expressed", "enchanting", "disorderly", "paternal", "wanton", "frightful", "freelance", "extremist", "lined", "scornful", "inseparable", "obese", "ponderous", "imperious", "indistinct", "adrenal", "belated", "rippling", "valiant", "livid", "mystic", "cracking", "subterranean", "invading", "rusted", "esoteric", "redfaced", "segregated", "lanky", "departmental", "allergic", "predatory", "enforced", "antiinflation", "implied", "flagrant", "bestselling", "haphazard", "trailing", "seedy", "reallife", "unannounced", "utilitarian", "roving", "despairing", "immature", "simulated", "embattled", "poisoned", "patronizing", "baffled", "centralized", "weathered", "weeping", "mutilated", "painstaking", "taxexempt", "socioeconomic", "tearful", "stringy", "projecting", "lowkey", "singleminded", "shadowed", "vehement", "darn", "fluffy", "apocalyptic", "completed", "intelligible", "furnished", "elongated", "worsening", "eclectic", "bacterial", "earthy", "sagging", "wideranging", "facetoface", "settled", "dogmatic", "anti", "secluded", "baffling", "coy", "pathological", "echoing", "bridal", "autobiographical", "instantaneous", "ornamental", "satirical", "voluptuous", "movable", "kinetic", "merciless", "tireless", "threemonth", "unconcerned", "impromptu", "turning", "followup", "retaliatory", "arcane", "waterproof", "justifiable", "glassy", "unearthly", "shuttered", "inverted", "bogus", "petrified", "simmering", "guided", "gritty", "widening", "generic", "pretrial", "returning", "boundless", "swirling", "northeastern", "swell", "tive", "minuscule", "estranged", "upbeat", "explanatory", "repetitive", "repressed", "vindictive", "shrinking", "canny", "littleknown", "hydraulic", "unrelenting", "looming", "supersonic", "justified", "lukewarm", "unmoved", "blurred", "doublebreasted", "sanitary", "unforgettable", "diligent", "unconventional", "ashen", "wordless", "stainless", "inlaid", "irritated", "spotless", "pudgy", "yellowish", "lateral", "adopted", "lowly", "obnoxious", "utopian", "called", "unimaginable", "hairless", "foregoing", "opulent", "garish", "nocturnal", "rousing", "unexplained", "cosmopolitan", "milky", "mediumsized", "allnight", "bloodshot", "rueful", "hardworking", "crafty", "familial", "iced", "violet", "arctic", "ceaseless", "exasperated", "warped", "aquatic", "gruff", "terrestrial", "contrasting", "egalitarian", "needful", "spent", "untrained", "escalating", "liberated", "longhaired", "abortive", "syntactic", "consummate", "lumpy", "spoiled", "tenyearold", "talkative", "whimsical", "weighty", "audio", "inflammatory", "deplorable", "spicy", "corrugated", "morose", "sobering", "southwestern", "threeyearold", "methodical", "prehistoric", "carpeted", "smelly", "processed", "overheated", "interstellar", "agile", "approximate", "sadistic", "livingroom", "irate", "smashed", "frontal", "venereal", "indiscriminate", "suggested", "cultured", "creeping", "recognized", "toothless", "handmade", "mellow", "fetal", "disinterested", "gratifying", "trusting", "smallscale", "intravenous", "crashing", "exhaustive", "afire", "clammy", "sleazy", "florid", "heartless", "transcendent", "restored", "demonic", "abusive", "avowed", "shrunken", "objectionable", "tailored", "armscontrol", "listless", "polluted", "palatable", "funded", "elective", "entrenched", "classy", "operatic", "daunting", "roaring", "preferential", "languid", "threehour", "virile", "inspiring", "enhanced", "scrupulous", "bottomless", "ginger", "wispy", "advantageous", "rapt", "umbilical", "uphill", "ordered", "enraged", "detrimental", "curt", "exalted", "hardpressed", "intangible", "fussy", "forgiving", "facile", "populous", "condemned", "mashed", "hardboiled", "introductory", "rowdy", "switching", "perplexing", "spilled", "southeastern", "undulating", "fractured", "inherited", "inscrutable", "measurable", "stunted", "hormonal", "stylized", "hierarchical", "airconditioned", "aimless", "subsidized", "paying", "symmetrical", "nomadic", "cloudless", "reigning", "thatched", "perceptible", "anesthetic", "antiAmerican", "miscellaneous", "homesick", "preparatory", "sevenyear", "bigcity", "decadent", "searching", "allimportant", "inanimate", "senatorial", "diminutive", "softspoken", "contingent", "dusky", "smashing", "precipitous", "bulging", "standardized", "biographical", "restive", "indecent", "upperclass", "ecumenical", "interchangeable", "lumbering", "fascinated", "untidy", "indulgent", "leaden", "wanted", "endemic", "doomed", "wanting", "receiving", "engaged", "unparalleled", "abbreviated", "malevolent", "wishful", "carnival", "worldwide", "protruding", "resplendent", "stranded", "structured", "biased", "frosty", "northwestern", "viral", "mindful", "paved", "indeterminate", "painless", "secondfloor", "geological", "permissive", "downhill", "unsuspecting", "expectant", "fabled", "jittery", "windowless", "evocative", "unsolved", "disoriented", "monastic", "soluble", "misshapen", "antiquated", "repugnant", "nonCommunist", "retiring", "shaded", "combative", "highpowered", "resilient", "antagonistic", "starched", "vicepresidential", "speckled", "lopsided", "bluish", "latenight", "prim", "unrestrained", "almighty", "tyrannical", "unkempt", "menstrual", "bleached", "overgrown", "idiosyncratic", "shoddy", "hallowed", "trying", "halting", "princely", "drugged", "gratuitous", "descending", "fatherly", "avantgarde", "laborious", "pinched", "disguised", "caustic", "bespectacled", "handwritten", "goodly", "itinerant", "cryptic", "undisclosed", "affordable", "outmoded", "expedient", "moody", "tepid", "firsthand", "digging", "elitist", "observed", "chartered", "slain", "fiveday", "unimpressed", "tactful", "idyllic", "prostrate", "ramshackle", "expert", "deferred", "undistinguished", "prized", "transatlantic", "crystalline", "tacky", "haunting", "nutritious", "bereft", "turquoise", "timeconsuming", "sanguine", "culinary", "fraught", "precocious", "assigned", "scrambled", "advisable", "nationalistic", "longawaited", "unwrapped", "unchallenged", "circumstantial", "pleasurable", "compressed", "humanistic", "unforeseen", "diversified", "frenetic", "disapproving", "proletarian", "conspiratorial", "featureless", "going", "commendable", "nononsense", "chipped", "surreal", "salient", "pissed", "insurmountable", "backstage", "contented", "indebted", "adoring", "oneroom", "prewar", "potted", "accelerating", "thorny", "possessive", "abiding", "everincreasing", "bloodless", "hightechnology", "counterproductive", "attracting", "entrepreneurial", "cooling", "unoccupied", "craggy", "leathery", "degenerate", "additive", "weakened", "quilted", "untold", "incandescent", "intractable", "middleincome", "abject", "selfmade", "gaseous", "anal", "displaced", "unabashed", "immutable", "fluttering", "tenyear", "bearable", "stamped", "darkening", "beefy", "petite", "charging", "highquality", "lefthand", "ageold", "checkered", "stupendous", "priestly", "loath", "endearing", "exacting", "correctional", "freak", "sneaky", "disgraceful", "unholy", "oriental", "wayward", "societal", "hardcore", "bilingual", "flipping", "staid", "paramilitary", "heartfelt", "shapely", "kosher", "heedless", "incurable", "controlling", "inhouse", "choral", "manicured", "cardinal", "inconspicuous", "steely", "vanishing", "misplaced", "centrefire", "enchanted", "unfounded", "wrecked", "womanly", "delirious", "deposed", "panicky", "differential", "tawny", "articulated", "coded", "wideopen", "unregulated", "lenient", "feathered", "simplified", "beguiling", "sectarian", "producing", "tiled", "inorganic", "frosted", "lusty", "scented", "rotating", "grievous", "dissimilar", "salaried", "unequivocal", "strangled", "grubby", "alluring", "downcast", "restraining", "unjustified", "contaminated", "lacy", "cinematic", "secondclass", "splintered", "adorable", "derisive", "stateowned", "requisite", "fleeing", "uncomplicated", "motherly", "inter", "highheeled", "climatic", "republican", "unqualified", "leveraged", "intercontinental", "uncharacteristic", "compositional", "unwritten", "patriarchal", "brusque", "unresponsive", "replete", "corrective", "reflected", "scraping", "doctoral", "premium", "deductible", "alternating", "amorous", "overjoyed", "recalcitrant", "presumptuous", "vaulted", "declared", "inexorable", "groggy", "diminished", "restful", "retroactive", "presumed", "monolithic", "curtained", "tortured", "ground", "trendy", "brassy", "prosaic", "inactive", "chaste", "bumpy", "aggrieved", "corny", "centrist", "trapped", "noxious", "jerky", "concomitant", "withholding", "poorly", "stolid", "unguarded", "methodological", "primordial", "retreating", "telescopic", "sidelong", "offduty", "pleated", "dissenting", "agreed", "doubleaction", "optimal", "plaintive", "banned", "kindred", "quintessential", "impervious", "jumping", "disenchanted", "observant", "congested", "secondrate", "reasoned", "extrinsic", "infantile", "transitory", "coveted", "smalltime", "doctrinal", "incomparable", "jaded", "specialinterest", "sociable", "shameless", "coloured", "ascending", "fraternal", "queasy", "wont", "exhilarated", "salted", "disquieting", "listed", "unchanging", "nineyearold", "unrestricted", "uppermost", "reputable", "dummy", "skimpy", "crusty", "corrosive", "bubbling", "decrepit", "unsuitable", "snarling", "destitute", "illuminating", "systemic", "material", "unwashed", "rushing", "dialectical", "jeweled", "attached", "liberating", "judicious", "errant", "vanished", "wornout", "erstwhile", "uninformed", "twelveyearold", "longterm", "petulant", "twin", "selfrighteous", "afflicted", "snappy", "tantamount", "sworn", "unethical", "drained", "hydroelectric", "perplexed", "logistical", "concentric", "unifying", "lunatic", "invincible", "diffident", "inexhaustible", "discouraging", "dreamlike", "artful", "rolled", "suppressed", "secretarial", "smoldering", "redundant", "forensic", "milliondollar", "selfstyled", "earned", "weightless", "signed", "compensatory", "glacial", "unmanned", "stalwart", "funky", "intensified", "uninterested", "submerged", "urbane", "glib", "ascetic", "contractual", "warlike", "highpriced", "diagonal", "cylindrical", "gargantuan", "illuminated", "unconditional", "hulking", "supplementary", "dictatorial", "puny", "sedate", "moonlit", "eightyearold", "gullible", "counterfeit", "alienated", "spinning", "analytic", "nimble", "adaptive", "individualistic", "numbered", "blissful", "insolent", "supplemental", "delectable", "inordinate", "unbalanced", "tormented", "unchecked", "aspiring", "punishing", "selfserving", "crossed", "discretionary", "boxoffice", "snowcovered", "improvised", "squalid", "orphaned", "grizzled", "unsmiling", "disappearing", "affiliated", "readable", "blocking", "bullish", "contending", "burnedout", "bloodied", "subsidiary", "complimentary", "unclean", "scanty", "uprooted", "farfetched", "solicitous", "regulated", "threadbare", "choppy", "everpresent", "negligent", "nonstop", "oneday", "wildeyed", "infuriating", "vivacious", "abominable", "wrought", "inaudible", "braided", "transcendental", "desultory", "climactic", "appellate", "interlocking", "submissive", "unmatched", "dapper", "demeaning", "adaptable", "wellmeaning", "lustrous", "taxfree", "ungrateful", "gentlemanly", "missed", "loathsome", "incalculable", "blistering", "amenable", "tremulous", "massed", "nonpartisan", "unsettled", "threestory", "succulent", "trite", "masterful", "reticent", "unsettling", "proverbial", "strapping", "spurious", "invulnerable", "paltry", "embryonic", "repeating", "neural", "sultry", "metaphorical", "foreignpolicy", "linked", "pubic", "beaming", "ministerial", "phantom", "quizzical", "hilly", "coldblooded", "gregarious", "threepiece", "untroubled", "bisexual", "pensive", "unpretentious", "exploratory", "unscathed", "irrepressible", "pelvic", "newfound", "starry", "corned", "overworked", "illogical", "unfaithful", "interrelated", "saintly", "overcast", "connected", "ungainly", "organizing", "carnal", "philosophic", "nationalized", "fickle", "ultraviolet", "crass", "undeveloped", "unprofitable", "sheepish", "archaeological", "outoftown", "balmy", "spongy", "infallible", "callous", "scathing", "rheumatic", "audacious", "participating", "swarthy", "handheld", "comatose", "modernist", "stellar", "antinuclear", "delinquent", "timehonored", "presiding", "relaxing", "highpressure", "impetuous", "hypodermic", "fringed", "favourite", "unscrupulous", "inspirational", "mystified", "wobbly", "intrepid", "deferential", "burdensome", "stored", "supervisory", "seventeenthcentury", "sixday", "interdependent", "updated", "allpowerful", "unitary", "standup", "laconic", "penniless", "steadfast", "dogged", "scholastic", "convertible", "mingled", "sorrowful", "symptomatic", "stylistic", "wellintentioned", "consuming", "sketchy", "weakening", "generative", "atrocious", "firstquarter", "irrevocable", "charged", "stoned", "dividing", "apathetic", "debatable", "uncomprehending", "overhanging", "galloping", "kinky", "uncritical", "suave", "undisputed", "spiky", "inarticulate", "extracurricular", "guttural", "impressed", "departing", "yellowed", "discontented", "adroit", "highfiber", "secondhand", "blinking", "formless", "unsavory", "newfound", "withered", "collected", "menial", "unobserved", "flabby", "afterward", "vanquished", "stainedglass", "hourlong", "bittersweet", "invalid", "incriminating", "commensurate", "allAmerican", "assumed", "tried", "cursory", "absorbing", "clearing", "confirmed", "stressful", "depleted", "eightyear", "participatory", "stripped", "concave", "regrettable", "fortified", "effortless", "regressive", "irreverent", "collegiate", "defunct", "grainy", "inhospitable", "gripping", "grizzly", "restoring", "arterial", "busted", "indomitable", "demure", "rabid", "headlong", "bluegreen", "bound", "breezy", "materialistic", "uneducated", "scruffy", "cohesive", "fullblown", "cranky", "motivated", "mauve", "hardworking", "melodic", "genital", "decorous", "comely", "rife", "purported", "hurtful", "sixfoot", "macabre", "odious", "convulsive", "welltrained", "heterogeneous", "curled", "pearly", "spindly", "latterday", "innermost", "clipped", "checked", "masterly", "laughable", "naturalistic", "tinkling", "impudent", "fitful", "illustrated", "speeding", "roasted", "indepth", "helluva", "vigilant", "emptyhanded", "forged", "wroughtiron", "disgraced", "agonized", "infirm", "preserving", "tasteful", "onerous", "shredded", "impregnable", "slanted", "tainted", "opened", "firsttime", "machinegun", "bottled", "seismic", "fetid", "saturated", "insubstantial", "fullpage", "aromatic", "stingy", "promiscuous", "unlit", "regimental", "spellbound", "streamlined", "bereaved", "ruffled", "creepy", "treasured", "ensconced", "oneparty", "welleducated", "pert", "mercantile", "allpurpose", "voracious", "tortuous", "despised", "unadorned", "offhand", "qualifying", "manipulative", "indelible", "wellestablished", "revolting", "ethereal", "roasting", "prohibitive", "domed", "whipped", "overstuffed", "garrulous", "skittish", "revived", "heartening", "jumpy", "grilled", "melted", "unfocused", "spectral", "unproductive", "toplevel", "lifesize", "threeway", "negotiable", "disloyal", "turnofthecentury", "fourhour", "unopened", "devilish", "amorphous", "antiseptic", "sharpened", "primeval", "unrecognizable", "ineligible", "expendable", "deathly", "auspicious", "insoluble", "inimical", "unquestioned", "farflung", "medicinal", "deepseated", "formative", "iridescent", "fragmentary", "distinguishable", "auburn", "closedcircuit", "emeritus", "thirdfloor", "hazel", "tumbling", "departed", "obstinate", "portentous", "quixotic", "scorched", "adjustable", "winged", "intrusive", "taxing", "highceilinged", "barbarous", "decreasing", "sleeveless", "unattended", "tightlipped", "concluding", "unobtrusive", "starved", "quirky", "bigtime", "sooty", "copious", "stalled", "scriptural", "unconvincing", "earthen", "throaty", "august", "extant", "sexist", "exultant", "cancerous", "psychedelic", "yielding", "matched", "chunky", "unfathomable", "concise", "admitting", "knitted", "projective", "euphoric", "garbled", "divisional", "despondent", "recommended", "passable", "vegetarian", "indefatigable", "irreparable", "feisty", "untenable", "contrite", "angelic", "reputed", "untimely", "dejected", "appreciable", "remembered", "hellish", "rearview", "openair", "illfated", "nonpolitical", "factional", "separatist", "contributing", "postwar", "uneventful", "metaphoric", "unsound", "unwitting", "venomous", "harried", "engraved", "collapsing", "reformist", "thematic", "inclusive", "cheering", "springy", "obliging", "contemplative", "unbridled", "staterun", "reflex", "allegorical", "geopolitical", "disembodied", "issuing", "bountiful", "alright", "overbearing", "muddled", "congenital", "distinguishing", "absorbed", "tart", "french", "autumnal", "verifiable", "grueling", "crackling", "aft", "punishable", "freckled", "indestructible", "imprecise", "hardnosed", "thoughtless", "through", "proficient", "pentup", "neverending", "hunted", "defensible", "arresting", "acrosstheboard", "spotty", "orchestral", "undefined", "stacked", "implausible", "antitank", "unwary", "inflamed", "sacrificial", "oilproducing", "leaky", "mint", "chronological", "conquering", "jumbo", "threeweek", "addictive", "uninhibited", "substandard", "contracting", "degenerative", "triumphal", "flowery", "cardiovascular", "shaken", "undefeated", "unassuming", "luscious", "unperturbed", "gleeful", "sentencing", "brawny", "perfumed", "mildmannered", "healthful", "lefthanded", "rancid", "welldefined", "unmanageable", "drowning", "clinging", "anachronistic", "revered", "enriched", "capitalistic", "goodby", "invigorating", "practicing", "unsold", "longlegged", "unruffled", "aboriginal", "inane", "bedraggled", "earlymorning", "rundown", "straightbacked", "reverent", "acquired", "bestselling", "topsecret", "woolly", "foolhardy", "sticking", "blueblack", "impassable", "overcome", "coiled", "frontline", "tinted", "acquisitive", "slatted", "octagonal", "receding", "investing", "doctrinaire", "allwhite", "caring", "prejudiced", "slowmoving", "circulating", "sciencefiction", "shortsighted", "disaffected", "lawless", "chastened", "lewd", "rubbery", "foaming", "unsympathetic", "ladylike", "betrayed", "neurological", "shouting", "goodsized", "electrostatic", "untoward", "flabbergasted", "citywide", "unanticipated", "knotted", "whitewashed", "yearend", "enticing", "migratory", "multicolored", "hashish", "ascorbic", "topless", "heathen", "spherical", "filmy", "deviant", "centennial", "proportionate", "instructional", "contrived", "savvy", "overthecounter", "fastmoving", "measuring", "uptown", "compliant", "favourable", "unforgivable", "undamaged", "psychoanalytic", "gebling", "bubbly", "readymade", "caged", "ostentatious", "superhuman", "busing", "creamcolored", "selfdestructive", "ostensible", "cobbled", "whirling", "released", "showy", "baleful", "redhot", "named", "monogamous", "fallow", "disdainful", "cyclical", "longrunning", "pitiless", "diffuse", "omnipresent", "mossy", "cutting", "astounding", "lyric", "darkblue", "unsophisticated", "indigent", "coincidental", "imperceptible", "veterinary", "coercive", "multilateral", "ageless", "lawabiding", "functioning", "beneficent", "crawling", "overturned", "steamed", "comprehensible", "oilrich", "undetected", "ribbed", "nautical", "textured", "fastgrowing", "nauseous", "vaunted", "paralyzed", "maimed", "shortrange", "impure", "unintended", "practicable", "intermediaterange", "unfulfilled", "behindthescenes", "backhand", "voluble", "goofy", "apolitical", "contraceptive", "waning", "blasted", "sundry", "profane", "binary", "rockandroll", "ruinous", "openended", "nextdoor", "withering", "conical", "flustered", "decided", "ablebodied", "roundtrip", "decreased", "halfempty", "sponsored", "riotous", "stereotyped", "fiveminute", "irreplaceable", "harrowing", "uninteresting", "salutary", "frugal", "disjointed", "cupped", "freshwater", "shaven", "ravenous", "bulbous", "steppedup", "swaying", "tworoom", "valued", "planted", "brighteyed", "unreadable", "trucking", "infatuated", "dysfunctional", "pinkish", "futuristic", "airtight", "unseemly", "vaginal", "sizzling", "mercurial", "conic", "unfettered", "undisciplined", "unrecognized", "wellpublicized", "incometax", "selfappointed", "icecold", "biochemical", "contemptible", "barefooted", "droll", "mythological", "treelined", "rearing", "luxuriant", "heartbreaking", "tufted", "wellorganized", "selfless", "worldclass", "unwieldy", "contested", "rasping", "downright", "ingratiating", "selfproclaimed", "parasitic", "graying", "reformed", "cautionary", "untested", "beaded", "maniacal", "eucalyptus", "pliable", "airconditioning", "moot", "traceable", "antiabortion", "antisocial", "reprehensible", "selfimposed", "yellowing", "teasing", "porous", "ersatz", "unwavering", "untouchable", "underprivileged", "auditory", "escaping", "subservient", "unspoiled", "anterior", "fatuous", "lordly", "infernal", "bouncing", "taboo", "orthopedic", "spiteful", "surging", "nuts", "esteemed", "outlawed", "pushy", "displeased", "selfconfident", "attainable", "bowed", "castiron", "despicable", "unconvinced", "famished", "coed", "bygone", "nonaligned", "sectional", "typed", "squeaky", "disparaging", "cutrate", "heartshaped", "offbeat", "velvety", "wellworn", "upsetting", "leery", "longlost", "horsedrawn", "puritanical", "payable", "fertilized", "predicted", "allowable", "peaceable", "soundless", "marshy", "discordant", "intoxicating", "concurrent", "uncut", "tantalizing", "shitty", "pedagogical", "accursed", "twoman", "connective", "hawkish", "ripped", "cleared", "doubledigit", "unencumbered", "yawning", "manifold", "stopped", "untreated", "subliminal", "grayish", "gory", "uppermiddleclass", "avenging", "selffulfilling", "equatorial", "saucy", "barred", "arch", "midwestern", "bluegray", "tarnished", "leafless", "incisive", "unearned", "botanical", "feline", "extraneous", "prep", "intransigent", "changeminimizing", "insurgent", "acrimonious", "thermonuclear", "bluechip", "crummy", "acoustic", "oversize", "fated", "galactic", "cantankerous", "illadvised", "detectable", "lowerclass", "sacrosanct", "palatial", "conditional", "insulated", "stepbystep", "nebulous", "twodimensional", "wellheeled", "bronchial", "subatomic", "semifinal", "firstyear", "darkeyed", "tinny", "attacking", "indecisive", "anatomical", "brotherly", "blooming", "sinuous", "meditative", "socalled", "rheumatoid", "received", "bleary", "halfnaked", "leaded", "woody", "averse", "shuddering", "doortodoor", "heretical", "suspect", "untapped", "ravaged", "decentralized", "rutted", "ineffable", "intolerant", "mechanized", "fortuitous", "equestrian", "sevenyearold", "darting", "consoling", "modernday", "groundfloor", "emblematic", "lurking", "twoyearold", "purplish", "disorganized", "vaudeville", "circulatory", "eighthour", "presentable", "anarchic", "unsatisfied", "labored", "maudlin", "trampled", "gibberish", "unaccountable", "sedentary", "heavyduty", "thrilled", "tutoring", "selfcentered", "doityourself", "inquiring", "uncaring", "disillusioned", "bloodstained", "surfacetoair", "consular", "subconscious", "fouryearold", "collaborative", "terraced", "figurative", "sinewy", "hornrimmed", "impertinent", "hitandrun", "standby", "mediumsize", "peremptory", "incremental", "firstaid", "dyed", "centrifugal", "omnipotent", "lascivious", "twomonth", "unionized", "discredited", "massproduced", "feathery", "selfindulgent", "liturgical", "enviable", "fifteenyearold", "buxom", "abashed", "urinary", "newsworthy", "flailing", "beastly", "undiscovered", "strongwilled", "prenatal", "brownish", "announced", "flaky", "washed", "nightmarish", "broadshouldered", "shortsleeved", "twobit", "selfassured", "whitish", "suffocating", "blackhaired", "fullsize", "selfhelp", "created", "uninhabited", "smokeless", "nofault", "unfashionable", "mushy", "forested", "adhesive", "creased", "insufferable", "downtoearth", "trifling", "landless", "disreputable", "selfeffacing", "sporty", "confined", "adoptive", "monogrammed", "motley", "duplicate", "silverhaired", "rejected", "undifferentiated", "blasphemous", "institutionalized", "blueandwhite", "hip", "winsome", "buttondown", "discerning", "abused", "cleancut", "bracing", "selfsupporting", "unsupported", "premarital", "flattered", "studious", "repetitious", "marketable", "anemic", "meaty", "airless", "unhurried", "galvanized", "feal", "peacekeeping", "rapacious", "bulletproof", "wellplaced", "helmeted", "packaged", "courtordered", "aggravated", "gastrointestinal", "handtohand", "sixteenyearold", "fretful", "fourthquarter", "conquered", "satiric", "nutty", "befuddled", "humorless", "pitched", "burnished", "mirrored", "fishy", "fluted", "conditioned", "militaryindustrial", "onestory", "barbarian", "branching", "dynastic", "unthinking", "unconscionable", "hunched", "postWorld", "capital", "putative", "incendiary", "shaving", "topical", "selfsatisfied", "farcical", "narcissistic", "kneeling", "bornagain", "oldline", "amateurish", "illfitting", "scaly", "unpainted", "eroding"]
verbs = ["accepted" ,"added" ,"admired" ,"admitted" ,"advised" ,"afforded" ,"agreed" ,"alerted" ,"allowed" ,"amused" ,"analysed" ,"announced" ,"annoyed" ,"answered" ,"apologised" ,"appeared" ,"applauded" ,"appreciated" ,"approved" ,"argued" ,"arranged" ,"arrested" ,"arrived" ,"asked" ,"attached" ,"attacked" ,"attempted" ,"attended" ,"attracted" ,"avoided" ,"backed" ,"baked" ,"balanced" ,"banned" ,"banged" ,"bared" ,"batted" ,"bathed" ,"battled" ,"beamed" ,"begged" ,"behaved" ,"belonged" ,"bleached" ,"blessed" ,"blinded" ,"blinked" ,"blotted" ,"blushed" ,"boasted" ,"boiled" ,"bolted" ,"bombed" ,"booked" ,"bored" ,"borrowed" ,"bounced" ,"bowed" ,"boxed" ,"braked" ,"branched" ,"breathed" ,"bruised" ,"brushed" ,"bubbled" ,"bumped" ,"burned" ,"buried" ,"buzzed" ,"calculated" ,"called" ,"camped" ,"cared" ,"carried" ,"carved" ,"caused" ,"challenged" ,"changed" ,"charged" ,"chased" ,"cheated" ,"checked" ,"cheered" ,"chewed" ,"choked" ,"chopped" ,"claimed" ,"clapped" ,"cleaned" ,"cleared" ,"clipped" ,"closed" ,"coached" ,"coiled" ,"collected" ,"coloured" ,"combed" ,"commanded" ,"communicated" ,"compared" ,"competed" ,"complained" ,"completed" ,"concentrated" ,"concerned" ,"confessed" ,"confused" ,"connected" ,"considered" ,"consisted" ,"contained" ,"continued" ,"copied" ,"corrected" ,"coughed" ,"counted" ,"covered" ,"cracked" ,"crashed" ,"crawled" ,"crossed" ,"crushed" ,"cried" ,"cured" ,"curled" ,"curved" ,"cycled" ,"dammed" ,"damaged" ,"danced" ,"dared" ,"decayed" ,"deceived" ,"decided" ,"decorated" ,"delayed" ,"delighted" ,"delivered" ,"depended" ,"described" ,"deserted" ,"deserved" ,"destroyed" ,"detected" ,"developed" ,"disagreed" ,"disappeared" ,"disapproved" ,"disarmed" ,"discovered" ,"disliked" ,"divided" ,"doubled" ,"doubted" ,"dragged" ,"drained" ,"dreamed" ,"dressed" ,"dripped" ,"dropped" ,"drowned" ,"drummed" ,"dried" ,"dusted" ,"earned" ,"educated" ,"embarrassed" ,"employed" ,"emptied" ,"encouraged" ,"ended" ,"enjoyed" ,"entered" ,"entertained" ,"escaped" ,"examined" ,"excited" ,"excused" ,"exercised" ,"existed" ,"expand" ,"expected" ,"explained" ,"exploded" ,"extended" ,"faced" ,"faded" ,"failed" ,"fancied" ,"fastened" ,"faxed" ,"feared" ,"fenced" ,"fetched" ,"filed" ,"filled" ,"filmed" ,"fired" ,"fitted" ,"fixed" ,"flapped" ,"flashed" ,"floated" ,"flooded" ,"flowed" ,"flowered" ,"folded" ,"followed" ,"fooled" ,"forced" ,"formed" ,"founded" ,"framed" ,"frightened" ,"fried" ,"gathered" ,"gazed" ,"glowed" ,"glued" ,"grabbed" ,"grated" ,"greased" ,"greeted" ,"grinned" ,"gripped" ,"groaned" ,"guaranteed" ,"guarded" ,"guessed" ,"guided" ,"hammered" ,"handed" ,"handled" ,"hung" ,"happened" ,"harassed" ,"harmed" ,"hated" ,"haunted" ,"headed" ,"healed" ,"heaped" ,"heated" ,"helped" ,"hooked" ,"hopped" ,"hoped" ,"hovered" ,"hugged" ,"hummed" ,"hunted" ,"hurried" ,"identified" ,"ignored" ,"imagined" ,"impressed" ,"improved" ,"included" ,"increased" ,"influenced" ,"informed" ,"injected" ]
if __name__=="__main__":
compute_versions()