From 7d6063f15a04323729b56f8acc2d9203fac22c3f Mon Sep 17 00:00:00 2001 From: diamondburned Date: Sun, 10 Mar 2024 04:42:10 -0700 Subject: [PATCH] WIP --- problems/crafting/generate_recipes.ts | 10 +- problems/crafting/problem.py | 18 - problems/crafting/recipes.json | 2454 ++++++++++++------------- 3 files changed, 1235 insertions(+), 1247 deletions(-) diff --git a/problems/crafting/generate_recipes.ts b/problems/crafting/generate_recipes.ts index cac36f4..49e4f33 100755 --- a/problems/crafting/generate_recipes.ts +++ b/problems/crafting/generate_recipes.ts @@ -40,8 +40,10 @@ async function main() { // Get the custom JSON formatting that we want. let output = "{\n"; for (const [i, recipe] of Object.entries(outputRecipes).entries()) { - const result = JSON.stringify(recipe[0]); - const [first, second] = recipe[1].map((s) => JSON.stringify(s)); + const [result, first, second] = [recipe[0], ...recipe[1]] + .map((s) => sanitizeName(s)) + .map((s) => JSON.stringify(s)); + output += ` ${result}: [${first}, ${second}]`; output += i === Object.keys(outputRecipes).length - 1 ? "\n" : ",\n"; } @@ -63,6 +65,10 @@ async function main() { // await Deno.writeTextFile(outputRecipesFile, output); } +function sanitizeName(name: string): string { + return name.toLowerCase().replaceAll("+", "p").replaceAll("=", "?"); +} + function arrayEquals(a: T[], b: T[]): boolean { if (a.length !== b.length) { return false; diff --git a/problems/crafting/problem.py b/problems/crafting/problem.py index 14fa352..3d2f317 100755 --- a/problems/crafting/problem.py +++ b/problems/crafting/problem.py @@ -29,13 +29,6 @@ def __init__(self, seed=0) -> None: with open(RECIPES_JSON, "r") as f: self.recipes = json.loads(f.read()) - # Be lazy. I don't care! - self.items.relevant_items = sanitize_names(self.items.relevant_items) - self.items.miscellaneous_items = sanitize_names(self.items.miscellaneous_items) - self.recipes = { - sanitize_name(k): sanitize_names(v) for k, v in self.recipes.items() - } - self.wanted = self.rand.sample(self.items.relevant_items, 6) def generate_input(self, output: typing.IO | None = None): @@ -52,16 +45,5 @@ def part2_answer(self) -> int: raise NotImplementedError -def sanitize_name(name: str) -> str: - name = name.lower() - name = name.replace("+", "p") - name = name.replace("=", "?") - return name - - -def sanitize_names(names: list[str]) -> list[str]: - return [sanitize_name(name) for name in names] - - if __name__ == "__main__": problem_utils.main(Problem) diff --git a/problems/crafting/recipes.json b/problems/crafting/recipes.json index 0e90345..06646f3 100644 --- a/problems/crafting/recipes.json +++ b/problems/crafting/recipes.json @@ -1,1229 +1,1229 @@ { - "1": ["Number", "Red"], - "2": ["1", "Double"], - "69": ["Golden", "Six"], - "420": ["Fireworks", "Weed"], - "Dust": ["Earth", "Wind"], - "Plant": ["Earth", "Water"], - "Steam": ["Fire", "Water"], - "Planet": ["Dust", "Earth"], - "Lake": ["Water", "Water"], - "Dandelion": ["Plant", "Wind"], - "Steampunk": ["Planet", "Steam"], - "Ocean": ["Lake", "Water"], - "Dandelion Patch": ["Dandelion", "Dandelion"], - "Steampunk Pirate": ["Ocean", "Steampunk"], - "Tea": ["Plant", "Steam"], - "Mud": ["Dust", "Lake"], - "Sea": ["Lake", "Ocean"], - "Lava": ["Earth", "Fire"], - "Duck": ["Dandelion Patch", "Lake"], - "Airship": ["Steampunk Pirate", "Wind"], - "Teapot": ["Earth", "Tea"], - "Swamp": ["Mud", "Water"], - "Stone": ["Lava", "Sea"], - "Steampunk Pirate Ship": ["Steam", "Steampunk Pirate"], - "Duckling": ["Duck", "Water"], - "Dragon": ["Airship", "Lava"], - "Witch": ["Swamp", "Teapot"], - "Stonehenge": ["Steampunk Pirate Ship", "Stone"], - "Storm": ["Planet", "Wind"], - "Tree": ["Plant", "Plant"], - "Family": ["Duck", "Duckling"], - "Dragonfly": ["Dandelion", "Dragon"], - "Witch Hut": ["Witch", "Witch"], - "Time": ["Steam", "Stonehenge"], - "Tempest": ["Storm", "Tea"], - "Ash": ["Fire", "Tree"], - "Farm": ["Earth", "Family"], - "Fairy": ["Dragonfly", "Dust"], - "Wizard": ["Time", "Witch Hut"], - "Smoke": ["Fire", "Wind"], - "Sand": ["Dust", "Ocean"], - "Typhoon": ["Tea", "Tempest"], - "Cinder": ["Ash", "Dust"], - "Field": ["Earth", "Farm"], - "Flower": ["Fairy", "Plant"], - "Genie": ["Smoke", "Wizard"], - "Wood": ["Dust", "Tree"], - "Cactus": ["Plant", "Sand"], - "Venus Flytrap": ["Plant", "Swamp"], - "Cloud": ["Steam", "Typhoon"], - "Glass": ["Cinder", "Stone"], - "Fog": ["Field", "Steam"], - "Garden": ["Flower", "Plant"], - "Lamp": ["Dust", "Genie"], - "Furniture": ["Cactus", "Wood"], - "Cloud Trap": ["Cloud", "Venus Flytrap"], - "Lens": ["Fog", "Glass"], - "Marsh": ["Garden", "Swamp"], - "Coral": ["Plant", "Sea"], - "Tsunami": ["Ocean", "Tempest"], - "Light": ["Furniture", "Lamp"], - "Fish": ["Cloud Trap", "Sea"], - "Wave": ["Water", "Wind"], - "Microscope": ["Lens", "Swamp"], - "Reef": ["Coral", "Marsh"], - "Lighthouse": ["Light", "Tsunami"], - "Crash": ["Airship", "Fire"], - "Fishing": ["Fish", "Lake"], - "Radio": ["Microscope", "Wave"], - "Surf": ["Reef", "Wave"], - "Shipwreck": ["Crash", "Lighthouse"], - "Kite": ["Fishing", "Wind"], - "SOS": ["Ocean", "Radio"], - "Survivor": ["Shipwreck", "Surf"], - "Island": ["Ocean", "Stone"], - "Paper": ["Kite", "Stone"], - "Sausage": ["Fire", "SOS"], - "Tom Hanks": ["Island", "Survivor"], - "Book": ["Paper", "Plant"], - "Meatball": ["Sausage", "Stone"], - "Da Vinci Code": ["Book", "Tom Hanks"], - "Spaghetti": ["Da Vinci Code", "Meatball"], - "Tornado": ["Tempest", "Wind"], - "Funnel Cake": ["Tornado", "Venus Flytrap"], - "Maple": ["Funnel Cake", "Tree"], - "Maple Leaf": ["Maple", "Tornado"], - "Maple Syrup": ["Maple Leaf", "Water"], - "Pancake": ["Maple Syrup", "Stone"], - "Cake": ["Earth", "Pancake"], - "Smoked Duck": ["Duckling", "Smoke"], - "Smoked Salmon": ["Lake", "Smoked Duck"], - "Bagel": ["Dust", "Smoked Salmon"], - "Bread": ["Bagel", "Stone"], - "Weed": ["Dandelion", "Plant"], - "Pudding": ["Maple Syrup", "Mud"], - "Brownies": ["Pudding", "Weed"], - "Cookies": ["Brownies", "Fire"], - "Pollen": ["Dust", "Plant"], - "Broom": ["Dust", "Witch"], - "Bee": ["Pollen", "Smoke"], - "Clean": ["Broom", "Dust"], - "Breeze": ["Bee", "Wind"], - "Fresh": ["Breeze", "Clean"], - "Fruit": ["Fresh", "Time"], - "Peach": ["Fruit", "Lava"], - "Pie": ["Mud", "Peach"], - "Pizza": ["Pie", "Stone"], - "Magnifying Glass": ["Fire", "Lens"], - "Seed": ["Magnifying Glass", "Plant"], - "Soap": ["Clean", "Seed"], - "Bubble": ["Fog", "Soap"], - "Boba": ["Bubble", "Tea"], - "Universe": ["Planet", "Time"], - "Clay": ["Dust", "Mud"], - "Engine": ["Fire", "Steam"], - "Adam": ["Clay", "Universe"], - "Pot": ["Clay", "Pollen"], - "Android": ["Adam", "Engine"], - "Coffee": ["Android", "Pot"], - "Campfire": ["Fire", "Wood"], - "Charcoal": ["Campfire", "Earth"], - "Gnome": ["Earth", "Fairy"], - "Coal": ["Charcoal", "Charcoal"], - "Goblin": ["Coal", "Gnome"], - "Hobbit": ["Goblin", "Wind"], - "Pipe": ["Hobbit", "Plant"], - "Mountain": ["Earth", "Earth"], - "Tobacco": ["Earth", "Pipe"], - "Mountain Dew": ["Dandelion", "Mountain"], - "Mountain Dew Baja Blast": ["Mountain Dew", "Tobacco"], - "Harvest": ["Farm", "Time"], - "Rice": ["Harvest", "Tsunami"], - "Rice Pudding": ["Dust", "Rice"], - "Steamed Rice Pudding": ["Rice Pudding", "Steam"], - "Radio Waves": ["Fog", "Radio"], - "Surfer": ["Steamed Rice Pudding", "Wave"], - "Satellite": ["Earth", "Radio Waves"], - "Wi-Fi": ["Satellite", "Surfer"], - "Internet": ["Water", "Wi-Fi"], - "Avalanche": ["Mountain", "Wind"], - "Sandstorm": ["Dust", "Sand"], - "Disaster": ["Avalanche", "Tsunami"], - "Dust Bowl": ["Disaster", "Sandstorm"], - "Dust Storm": ["Dust Bowl", "Wind"], - "Star": ["Planet", "Planet"], - "Dust Trap": ["Dust Storm", "Venus Flytrap"], - "Incense": ["Harvest", "Smoke"], - "Moon": ["Earth", "Star"], - "Flypaper": ["Dust Trap", "Venus Flytrap"], - "Prayer": ["Dust", "Incense"], - "Canada": ["Maple", "Moon"], - "Spider": ["Dust Trap", "Flypaper"], - "Monk": ["Mountain", "Prayer"], - "C": ["Canada", "Sea"], - "Web": ["Marsh", "Spider"], - "C++": ["C", "Monk"], - "Node.js": ["C++", "Web"], - "Poison": ["Plant", "Witch"], - "Snake": ["Poison", "Stone"], - "Python": ["Crash", "Snake"], - "Cyclone": ["Swamp", "Tornado"], - "Fire Tornado": ["Cyclone", "Fire"], - "Fire Truck": ["Engine", "Fire Tornado"], - "Brick": ["Fire", "Mud"], - "Fireplace": ["Brick", "Fire Truck"], - "Oven": ["Fireplace", "Stone"], - "Fjord": ["Lake", "Mountain"], - "Toast": ["Crash", "Oven"], - "Rain": ["Cloud", "Microscope"], - "Land": ["Earth", "Fjord"], - "Grass": ["Field", "Field"], - "Cereal": ["Rain", "Toast"], - "Train": ["Snake", "Steam"], - "Continent": ["Earth", "Land"], - "Lawn": ["Grass", "Stone"], - "Corn": ["Cereal", "Rain"], - "Transcontinental Railroad": ["Continent", "Train"], - "Cornhole": ["Corn", "Lawn"], - "America": ["Cornhole", "Transcontinental Railroad"], - "Hourglass": ["Time", "Tornado"], - "Science": ["Hourglass", "Microscope"], - "Technology": ["Science", "Science"], - "Computer": ["Technology", "Technology"], - "Mountain Dew Code Red": ["Engine", "Mountain Dew"], - "Red Bull": ["Engine", "Mountain Dew Code Red"], - "Energy Drink": ["Mountain Dew", "Red Bull"], - "Mirror": ["Glass", "Lake"], - "Potato": ["Mirror", "Pot"], - "Potato Chip": ["Kite", "Potato"], - "Salt": ["Ocean", "Potato Chip"], - "Volcano": ["Fire", "Typhoon"], - "Saltwater": ["Engine", "Salt"], - "Soda": ["Saltwater", "Volcano"], - "Diamond": ["Charcoal", "Dust"], - "Coke": ["Diamond", "Soda"], - "Destruction": ["Tornado", "Tsunami"], - "Earthquake": ["Destruction", "Tsunami"], - "California": ["America", "Earthquake"], - "Boat": ["Ocean", "Wood"], - "Prison": ["Brick", "Island"], - "Whole": ["Clean", "Pie"], - "Raft": ["Boat", "Plant"], - "Sea Star": ["Ocean", "Star"], - "Prisoner": ["Dust", "Prison"], - "Wreck": ["Crash", "Whole"], - "Shatter": ["Glass", "Tornado"], - "Sail": ["Raft", "Wind"], - "Starfish": ["Sea Star", "Wave"], - "Slave": ["Dust", "Prisoner"], - "Destroy": ["Shatter", "Wreck"], - "Sailor": ["Sail", "Time"], - "Flying Starfish": ["Starfish", "Wind"], - "Freedom": ["Destroy", "Slave"], - "Sailor Moon": ["Flying Starfish", "Sailor"], - "Anarchy": ["Freedom", "Tsunami"], - "Sailor Anarchy": ["Anarchy", "Sailor Moon"], - "Loch Ness Monster": ["Dragon", "Lake"], - "Monocle": ["Glass", "Loch Ness Monster"], - "Professor": ["Maple", "Monocle"], - "Einstein": ["Professor", "Time"], - "Steampunk Plant": ["Plant", "Steampunk Pirate"], - "Steampunk Tree": ["Smoke", "Steampunk Plant"], - "Aeon": ["Lake", "Time"], - "Tree of Life": ["Steampunk Tree", "Swamp"], - "Food": ["Farm", "Plant"], - "Emerald": ["Crash", "Diamond"], - "Eternity": ["Aeon", "Time"], - "Evolution": ["Steam", "Tree of Life"], - "Fishbowl": ["Fish", "Water"], - "Sun": ["Plant", "Star"], - "Fuel": ["Engine", "Food"], - "Perfume": ["Flower", "Steam"], - "Green": ["Crash", "Emerald"], - "Forever": ["Aeon", "Eternity"], - "Human": ["Evolution", "Time"], - "Goldfish": ["Fire", "Fishbowl"], - "Meal": ["Food", "Food"], - "History": ["Disaster", "Time"], - "Sunset": ["Lake", "Sun"], - "Gasoline": ["Fuel", "Water"], - "Mushroom": ["Fog", "Plant"], - "Geysir": ["Steam", "Stone"], - "Slavery": ["Crash", "Slave"], - "Scent": ["Perfume", "Water"], - "Money": ["Forever", "Green"], - "Mummy": ["Dust", "Human"], - "Piranha": ["Goldfish", "Swamp"], - "Thanksgiving": ["History", "Meal"], - "Beach": ["Ocean", "Sunset"], - "Smog": ["Fog", "Gasoline"], - "Mushroom Cloud": ["Geysir", "Mushroom"], - "Pyramid": ["Aeon", "Brick"], - "Traffic": ["Crash", "Slavery"], - "Skunk": ["Scent", "Swamp"], - "Forest": ["Plant", "Tree"], - "Rich": ["Genie", "Money"], - "Wrap": ["Mummy", "Paper"], - "Vampire": ["Piranha", "Smoke"], - "Turkey": ["Beach", "Thanksgiving"], - "Air Pollution": ["Smog", "Venus Flytrap"], - "Nuclear Winter": ["Earth", "Mushroom Cloud"], - "Sphinx": ["Pyramid", "Stone"], - "Jam": ["Cloud", "Traffic"], - "Smell": ["Cloud", "Skunk"], - "Jungle": ["Forest", "Forest"], - "Richer": ["Money", "Rich"], - "Blanket": ["Wrap", "Wrap"], - "Count": ["Turkey", "Vampire"], - "Global Warming": ["Air Pollution", "Tsunami"], - "Acid Rain": ["Fog", "Nuclear Winter"], - "Riddle": ["Jam", "Sphinx"], - "Fireworks": ["Dandelion", "Volcano"], - "Stench": ["Smell", "Smell"], - "Tiger": ["Jungle", "Tsunami"], - "Landslide": ["Avalanche", "Earth"], - "Warmer": ["Blanket", "Richer"], - "Number": ["Count", "Count"], - "Climate Change": ["Acid Rain", "Global Warming"], - "Answer": ["Riddle", "Wind"], - "Tea Party": ["Fireworks", "Tea"], - "Fart": ["Stench", "Wind"], - "Tiger Woods": ["Tiger", "Tree"], - "Sticky Situation": ["Flypaper", "Landslide"], - "Hotter": ["Number", "Warmer"], - "Denial": ["Answer", "Climate Change"], - "Tax": ["Money", "Tea Party"], - "Silent": ["Fart", "Prayer"], - "Ring": ["Diamond", "Mud"], - "Divorce": ["Sticky Situation", "Tiger Woods"], - "Not": ["Denial", "Hotter"], - "Income": ["Silent", "Tax"], - "Single": ["Divorce", "Ring"], - "Drink": ["Clean", "Water"], - "Park": ["Garden", "Garden"], - "Outcome": ["Income", "Not"], - "One": ["Number", "Single"], - "Solar": ["Fire", "Sun"], - "Hangover": ["Crash", "Drink"], - "Zoo": ["Garden", "Park"], - "University": ["Professor", "Professor"], - "Sum": ["One", "Outcome"], - "System": ["Planet", "Solar"], - "Allergy": ["Pollen", "Tornado"], - "Regret": ["Beach", "Hangover"], - "Animal": ["Earth", "Zoo"], - "Math": ["Sum", "University"], - "Immune": ["Allergy", "System"], - "Guilt": ["Animal", "Regret"], - "Physics": ["Crash", "Math"], - "Innocent": ["Guilt", "Immune"], - "Bose-Einstein Condensate": ["Innocent", "Physics"], - "Carnivore": ["Tree", "Venus Flytrap"], - "Dinosaur": ["Carnivore", "Earth"], - "Egg": ["Dinosaur", "Dinosaur"], - "Bird": ["Egg", "Egg"], - "Flock": ["Bird", "Bird"], - "Druid": ["Fire", "Stonehenge"], - "Coconut": ["Fruit", "Wave"], - "Shepherd": ["Druid", "Flock"], - "Coconut Milk": ["Coconut", "Marsh"], - "Riddle of the Sphinx": ["Riddle", "Shepherd"], - "Coconut Tsunami": ["Coconut Milk", "Tsunami"], - "The Answer To Life, The Universe, And Everything": ["Coconut Tsunami", "Riddle of the Sphinx"], - "Morning": ["Glass", "Hangover"], - "Cough": ["Ash", "Pollen"], - "Frost": ["Diamond", "Fog"], - "Muddy": ["Morning", "Mud"], - "Medicine": ["Cough", "Plant"], - "Ice": ["Frost", "Frost"], - "Pig": ["Dust", "Muddy"], - "Moonflower": ["Moon", "Venus Flytrap"], - "Potion": ["Medicine", "Water"], - "Ice Cube": ["Diamond", "Ice"], - "Piggy Bank": ["Moonflower", "Pig"], - "Rocket": ["Engine", "Potion"], - "Dragon Egg": ["Dragon", "Dragon"], - "Iceberg": ["Ice Cube", "Tsunami"], - "Pluto": ["Piggy Bank", "Planet"], - "Space Farm": ["Farm", "Rocket"], - "Crocodile": ["Carnivore", "Swamp"], - "Dustbuster": ["Duck", "Dust"], - "Sea Serpent": ["Dragon Egg", "Ocean"], - "Penguin": ["Iceberg", "Marsh"], - "Underworld": ["Pluto", "Volcano"], - "Space Whale": ["Space Farm", "Water"], - "Lotus": ["Crocodile", "Flower"], - "Ghost Ship": ["Boat", "Fog"], - "Whale": ["Dustbuster", "Ocean"], - "Penguin Serpent": ["Penguin", "Sea Serpent"], - "Cthulhu": ["Space Whale", "Underworld"], - "Kali": ["Lotus", "Storm"], - "Pirate Ship": ["Ghost Ship", "Smoke"], - "Train Station": ["Train", "Train"], - "Jonah": ["Fishing", "Whale"], - "Cthulhu Penguin": ["Cthulhu", "Penguin Serpent"], - "Avocado": ["Kali", "Seed"], - "Jade": ["Emerald", "Stone"], - "Pirateosaurus": ["Dinosaur", "Pirate Ship"], - "Jonah Hex": ["Jonah", "Train Station"], - "Guacamole": ["Avocado", "Cthulhu Penguin"], - "Buddha": ["Jade", "Smoke"], - "Jonah Hexasaurus": ["Jonah Hex", "Pirateosaurus"], - "Buddha Bowl": ["Buddha", "Guacamole"], - "Buddha Hexasaurus": ["Buddha Bowl", "Jonah Hexasaurus"], - "Atlantis": ["Ocean", "Stonehenge"], - "Orc": ["Goblin", "Mud"], - "Loch Ness": ["Atlantis", "Swamp"], - "Troll": ["Fog", "Orc"], - "Monster": ["Loch Ness", "Volcano"], - "Ogre": ["Monster", "Troll"], - "Shinkansen": ["Ogre", "Train"], - "Duck and Cover": ["Dandelion Patch", "Duck"], - "Glue": ["Flypaper", "Fuel"], - "Fallout": ["Ash", "Duck and Cover"], - "Vine": ["Glue", "Plant"], - "Vault": ["Duck and Cover", "Fallout"], - "Wine": ["Fog", "Vine"], - "Bank": ["Crash", "Vault"], - "Comet": ["Smoke", "Star"], - "Credit": ["Bank", "Wine"], - "Black Hole": ["Tsunami", "Universe"], - "Meteor": ["Comet", "Volcano"], - "Interest": ["Credit", "Time"], - "Sentence": ["Prison", "Time"], - "Singularity": ["Black Hole", "Tornado"], - "Seasoning": ["Meteor", "Salt"], - "Throat": ["Cough", "Tea"], - "Passion": ["Fire", "Interest"], - "Paragraph": ["Sentence", "Sentence"], - "Spice": ["Seasoning", "Singularity"], - "Mouth": ["Earth", "Throat"], - "Poem": ["Paragraph", "Passion"], - "Chili": ["Rain", "Spice"], - "Tongue": ["Animal", "Mouth"], - "Poetry": ["Poem", "Poem"], - "Hot": ["Chili", "Fire"], - "Narcissus": ["Lake", "Mirror"], - "Language": ["Poetry", "Tongue"], - "College": ["Hot", "University"], - "Narcissism": ["Dust", "Narcissus"], - "Latin": ["College", "Language"], - "Celebrity": ["Dust", "Narcissism"], - "Spanish": ["Celebrity", "Latin"], - "English": ["Not", "Spanish"], - "Ghost": ["Campfire", "Dust"], - "Halloween": ["Ghost", "Witch"], - "Pumpkin": ["Halloween", "Time"], - "Soup": ["Pumpkin", "Water"], - "Drain": ["Black Hole", "Water"], - "Stew": ["Soup", "Steam"], - "Flying Fish": ["Fish", "Wind"], - "Pump": ["Drain", "Engine"], - "Focus": ["Lens", "Stew"], - "Jet": ["Flying Fish", "Steam"], - "Ship": ["Ocean", "Sail"], - "Well": ["Earth", "Pump"], - "Time Machine": ["Pirate Ship", "Time"], - "Laser": ["Fire", "Focus"], - "Jetpack": ["Jet", "Jet"], - "Spaceship": ["Rocket", "Ship"], - "Alice": ["Mirror", "Well"], - "Time Laser": ["Laser", "Time Machine"], - "Pilot": ["Jet", "Jetpack"], - "Space Alice": ["Alice", "Spaceship"], - "Hawaii": ["Beach", "Volcano"], - "Time Pilot": ["Pilot", "Time Laser"], - "Space Hawaii": ["Hawaii", "Space Alice"], - "Space Time Pilot": ["Space Hawaii", "Time Pilot"], - "Google": ["Android", "Cloud"], - "Transistor": ["Engine", "Radio"], - "Debt": ["Credit", "Credit"], - "Walkman": ["Radio", "Transistor"], - "Bottle": ["Earth", "Glass"], - "Deja Vu": ["Fog", "Time"], - "Done": ["Debt", "One"], - "Static": ["Ash", "Radio"], - "CD": ["Fire", "Walkman"], - "Lung": ["Cough", "Water"], - "Message": ["Beach", "Bottle"], - "Memory": ["Deja Vu", "Water"], - "Prison Break": ["Prison", "Tsunami"], - "Finished": ["Done", "Latin"], - "Cat": ["Animal", "Static"], - "Music": ["CD", "Fire"], - "Pneumonia": ["Cough", "Lung"], - "Help": ["Message", "SOS"], - "Forget": ["Memory", "Wind"], - "Escape": ["Prison Break", "Wind"], - "Satisfied": ["Cat", "Finished"], - "Quicksand": ["Cloud Trap", "Mud"], - "Slate": ["Clean", "Stone"], - "Dance": ["Earth", "Music"], - "Sick": ["Pneumonia", "Water"], - "Hurt": ["Forget", "Help"], - "Survive": ["Escape", "Tsunami"], - "Content": ["Latin", "Satisfied"], - "Slow": ["Quicksand", "Steam"], - "Tablet": ["Slate", "Stone"], - "Sing": ["Dance", "Mouth"], - "Injured": ["Hurt", "Sick"], - "Thrive": ["Content", "Survive"], - "Stop": ["Fire", "Slow"], - "Ten": ["One", "Tablet"], - "Singer": ["Injured", "Sing"], - "Strive": ["Stop", "Thrive"], - "Decade": ["Singer", "Ten"], - "Translation": ["Language", "Language"], - "Effort": ["Decade", "Strive"], - "Google Translate": ["Effort", "Translation"], - "Piece": ["Lake", "Pie"], - "Refrigerator": ["Engine", "Ice"], - "Sculpture": ["Piece", "Piece"], - "Salad": ["Plant", "Refrigerator"], - "Virus": ["Fire", "Microscope"], - "Statue of Liberty": ["Sculpture", "Tsunami"], - "Monkey": ["Dust", "Jungle"], - "Salsa": ["Fire", "Salad"], - "Bacteria": ["Virus", "Virus"], - "New York": ["Sea", "Statue of Liberty"], - "See No Evil": ["Mirror", "Monkey"], - "Taco": ["Earth", "Salsa"], - "Cheese": ["Bacteria", "Smoke"], - "Empire State": ["America", "New York"], - "Shark": ["Fish", "See No Evil"], - "Quesadilla": ["Cheese", "Taco"], - "Empire State Building": ["Empire State", "Engine"], - "Sharknado": ["Ocean", "Shark"], - "Empire State Quesadilla": ["Empire State Building", "Quesadilla"], - "Sharknado 2: The Second One": ["Empire State Quesadilla", "Sharknado"], - "Sharknado 3: Oh Hell No!": ["Salt", "Sharknado 2: The Second One"], - "Oil Spill": ["Funnel Cake", "Lake"], - "Happiness": ["Buddha", "Whale"], - "Aspirin": ["Hangover", "Plant"], - "Black Friday": ["Thanksgiving", "Time"], - "Fishing Rod": ["Engine", "Fishing"], - "Pollution": ["Earth", "Oil Spill"], - "Health": ["Aspirin", "Happiness"], - "Cyber Monday": ["Black Friday", "Surf"], - "Telescope": ["Engine", "Lens"], - "Frog": ["Fishing Rod", "Swamp"], - "Norway": ["Fjord", "Mountain"], - "Roast": ["Duck", "Oven"], - "Sweatshop": ["Pollution", "Slavery"], - "Alcohol": ["Drink", "Stone"], - "Cybernetics": ["Cyber Monday", "Health"], - "Astronomy": ["Telescope", "Wine"], - "Ice Cream": ["Ice", "Volcano"], - "Prince": ["Frog", "Smoke"], - "Viking": ["Fire", "Norway"], - "Window": ["Glass", "Rain"], - "Sandwich": ["Roast", "Wind"], - "Tequila": ["Alcohol", "Sweatshop"], - "Astrocybernetics": ["Astronomy", "Cybernetics"], - "Stinky": ["Ice Cream", "Skunk"], - "Hay": ["Allergy", "Farm"], - "Tarzan": ["Jungle", "Prince"], - "Berserker": ["Fog", "Viking"], - "Sandwich Board": ["Sandwich", "Window"], - "Sharknado 2": ["Norway", "Sharknado"], - "Cybernetic Tequila": ["Astrocybernetics", "Tequila"], - "Manure": ["Hay", "Stinky"], - "Greenpeace": ["Pollution", "Tarzan"], - "Rage": ["Berserker", "Mountain Dew"], - "Advertising": ["Fish", "Sandwich Board"], - "Sharknado 3": ["Cybernetic Tequila", "Sharknado 2"], - "Protest": ["Greenpeace", "Manure"], - "Marketing": ["Advertising", "Rage"], - "Sharknado 4": ["Protest", "Sharknado 3"], - "Greenwashing": ["Climate Change", "Marketing"], - "Sharknado 4: The 4th Awakens": ["Greenwashing", "Sharknado 4"], - "Pun": ["Sentence", "Underworld"], - "Night": ["Flower", "Moon"], - "Punain": ["Pun", "Rain"], - "Sleep": ["Night", "Rain"], - "Punainen": ["Punain", "Roast"], - "Bed": ["Earth", "Sleep"], - "Red": ["Bed", "Punainen"], - "Double": ["Mirror", "Single"], - "Glacier": ["Fjord", "Fjord"], - "Gator": ["Food", "Swamp"], - "Dragon Flower": ["Dragon Egg", "Pollen"], - "Ice Age": ["Aeon", "Glacier"], - "Foghorn": ["Duck", "Fog"], - "Mosquito": ["Incense", "Swamp"], - "Mountain Range": ["Mountain", "Mountain"], - "Pirate": ["Ghost Ship", "Plant"], - "Rainbow Trout": ["Cloud", "Fish"], - "Lizard": ["Dragon Flower", "Gator"], - "Money Tree": ["Diamond", "Tree"], - "Mammoth": ["Ice Age", "Plant"], - "Foghorn Leghorn": ["Flying Fish", "Foghorn"], - "Swarm": ["Mosquito", "Mosquito"], - "Great Wall of China": ["Brick", "Mountain Range"], - "Toadstool": ["Mushroom", "Storm"], - "Eye Patch": ["Glass", "Pirate"], - "Salamander": ["Lizard", "Rainbow Trout"], - "Story": ["Campfire", "Time"], - "Casino": ["Ghost", "Money Tree"], - "Rainforest": ["Jungle", "Rain"], - "Tank": ["Engine", "Mammoth"], - "Chicken": ["Fire", "Foghorn Leghorn"], - "Army": ["Great Wall of China", "Swarm"], - "Mario": ["Eye Patch", "Toadstool"], - "Choo-Choo": ["Salamander", "Train"], - "Tale": ["Story", "Wind"], - "Panel": ["Clean", "Solar"], - "Gambler": ["Animal", "Casino"], - "Amazon": ["Rainforest", "Tsunami"], - "War": ["Jet", "Tank"], - "Colonel": ["Army", "Chicken"], - "Thomas": ["Choo-Choo", "Mario"], - "Comic": ["Panel", "Tale"], - "Shopper": ["Amazon", "Gambler"], - "General": ["Colonel", "War"], - "Iron": ["Clean", "Steam"], - "Carnival": ["Flower", "Funnel Cake"], - "Vulture": ["Carnivore", "Wind"], - "Tomorrow": ["Thomas", "Time"], - "Serious": ["Comic", "Not"], - "Consumer": ["General", "Shopper"], - "Metal": ["Earth", "Iron"], - "Parade": ["Carnival", "Plant"], - "Dust Mite": ["Dust Storm", "Microscope"], - "Hyena": ["Carnivore", "Vulture"], - "Someday": ["Serious", "Tomorrow"], - "Producer": ["Consumer", "Not"], - "Coin": ["Metal", "Mud"], - "Carnivorous Plant": ["Plant", "Venus Flytrap"], - "Peat": ["Charcoal", "Swamp"], - "Pride": ["Dust Mite", "Parade"], - "Laughter": ["Hyena", "Steam"], - "Never": ["Dragon", "Someday"], - "Director": ["Lens", "Producer"], - "Pigweed": ["Dandelion", "Pig"], - "Economy": ["Bread", "Coin"], - "Horse": ["Hay", "Plant"], - "Flying Cow": ["Carnivorous Plant", "Tornado"], - "Scotch": ["Fog", "Peat"], - "Sunrise": ["Land", "Sunset"], - "Satisfaction": ["Laughter", "Pride"], - "Always": ["Director", "Never"], - "Cotton": ["Pigweed", "Plant"], - "Market": ["Animal", "Economy"], - "Pegasus": ["Horse", "Wind"], - "Boulder": ["Stone", "Stone"], - "Flying Pig": ["Flying Cow", "Mud"], - "Whiskey": ["Lava", "Scotch"], - "Day": ["Earth", "Sunrise"], - "Guarantee": ["Always", "Satisfaction"], - "Fabric": ["Cotton", "Flower"], - "Shop": ["Market", "Mirror"], - "Rocking Horse": ["Boulder", "Pegasus"], - "Muddy Pig": ["Flying Pig", "Mud"], - "Irish Coffee": ["Fog", "Whiskey"], - "Week": ["Day", "Time"], - "Quality": ["Fabric", "Guarantee"], - "Closed": ["Shop", "Time"], - "Toy": ["Dust", "Rocking Horse"], - "Triffid": ["Muddy Pig", "Plant"], - "Irish Smoke": ["Irish Coffee", "Smoke"], - "Weak": ["Not", "Week"], - "Quantity": ["Closed", "Quality"], - "Balloon": ["Cloud", "Toy"], - "Tumbleweed": ["Triffid", "Wind"], - "Leprechaun": ["Fog", "Irish Smoke"], - "Unicorn": ["Rocking Horse", "Smoke"], - "Few": ["Quantity", "Weak"], - "Ego": ["Balloon", "Narcissus"], - "Lucky": ["Leprechaun", "Tumbleweed"], - "Magic": ["Tea", "Unicorn"], - "Fewer": ["Ego", "Few"], - "Paradox": ["Freedom", "Slavery"], - "Noise": ["Crash", "Static"], - "Wealth": ["Dandelion", "Money"], - "Seven": ["Lucky", "One"], - "Less": ["Fewer", "Magic"], - "Silence": ["Noise", "Paradox"], - "Bankruptcy": ["Crash", "Wealth"], - "Six": ["Less", "Seven"], - "Golden": ["Bankruptcy", "Silence"], - "Honey": ["Bee", "Water"], - "Squito": ["Mosquito", "Ocean"], - "Meade": ["Honey", "Water"], - "Ant": ["Earth", "Squito"], - "Robin Hood": ["Forest", "Meade"], - "Aunt": ["Ant", "Kite"], - "Archer": ["Robin Hood", "Water"], - "Newspaper": ["Aunt", "Paper"], - "Arrow": ["Archer", "Dust"], - "Sniper": ["Arrow", "Newspaper"], - "Bitcoin": ["Comet", "Money"], - "Hodl": ["Bitcoin", "Sniper"], - "Inflation": ["Economy", "Fire"], - "Headache": ["Hangover", "Stone"], - "Pain": ["Headache", "Inflation"], - "Fame": ["Money", "Star"], - "Value": ["Money", "Time"], - "Shame": ["Fame", "Pain"], - "Honor": ["Shame", "Value"], - "Shadow": ["Orc", "Smoke"], - "Stealth": ["Engine", "Shadow"], - "Ranger": ["Park", "Time"], - "Ninja": ["Ranger", "Stealth"], - "Hurricane": ["Dragon", "Storm"], - "Shuriken": ["Hurricane", "Ninja"], - "Sale": ["Fire", "Market"], - "Throw": ["Ninja", "Shuriken"], - "Recognize": ["Not", "Wreck"], - "Regular": ["Not", "Sale"], - "Acknowledge": ["Recognize", "Throw"], - "Cognizant": ["Acknowledge", "Regular"], - "Mouse Trap": ["Cheese", "Engine"], - "Mousetrap": ["Mouse Trap", "Rocket"], - "Ironman": ["Iron", "Marsh"], - "Ironmouse": ["Ironman", "Mousetrap"], - "Wall": ["Stop", "Tsunami"], - "River": ["Tree", "Water"], - "Desert": ["Cactus", "Tsunami"], - "Dam": ["River", "Wall"], - "Mirage": ["Desert", "Ocean"], - "Village": ["Farm", "Farm"], - "Plane": ["Pilot", "Swamp"], - "Damn": ["Dam", "Dust"], - "Cheese Wheel": ["Cheese", "Cheese"], - "Galaxy": ["Star", "Star"], - "Landship": ["Airship", "Earth"], - "Oasis": ["Mirage", "Mirage"], - "Piggyback": ["Ocean", "Pig"], - "Airport": ["Plane", "Village"], - "Airplane": ["Cloud Trap", "Engine"], - "Orient Express": ["Rich", "Train"], - "Damnation": ["Damn", "Plant"], - "Cheeseburger": ["Cheese Wheel", "Mosquito"], - "Signal": ["Galaxy", "Radio"], - "Titan": ["Landship", "Volcano"], - "Date": ["Harvest", "Oasis"], - "Piggyback Rider": ["Engine", "Piggyback"], - "Flight": ["Airplane", "Airport"], - "Murder on the Orient Express": ["Damnation", "Orient Express"], - "Double Cheeseburger": ["Cheeseburger", "Cheeseburger"], - "Warning": ["Signal", "Tsunami"], - "Antelope": ["Ant", "Wind"], - "Cyclops": ["Swamp", "Titan"], - "Parking": ["Earth", "Traffic"], - "Impossible": ["Internet", "Satisfaction"], - "Richest": ["Richer", "Richer"], - "Table": ["Tea", "Wood"], - "Clock": ["Steam", "Time"], - "Dating": ["Date", "Water"], - "Surfing": ["Piggyback Rider", "Tsunami"], - "Glider": ["Flight", "Slow"], - "Agatha Christie": ["Double Cheeseburger", "Murder on the Orient Express"], - "Alarm": ["Engine", "Warning"], - "Mars": ["Dust Storm", "Planet"], - "Gazelle": ["Antelope", "Plant"], - "Eye": ["Cyclops", "Kite"], - "Coalition": ["Coal", "Window"], - "Ticket": ["Parking", "Time"], - "Possible": ["Impossible", "Latin"], - "Poorest": ["Not", "Richest"], - "Desk": ["Clock", "Table"], - "Pressure": ["Diamond", "Time"], - "Love": ["Dating", "Fire"], - "Yoga": ["Incense", "Surfing"], - "Murder Mystery": ["Agatha Christie", "Glider"], - "Car": ["Alarm", "Crash"], - "Rover": ["Engine", "Mars"], - "Racecar": ["Engine", "Gazelle"], - "Face": ["Eye", "Eye"], - "Down": ["Crash", "Internet"], - "Alliance": ["Coalition", "Coalition"], - "Admit": ["Latin", "Ticket"], - "Latest": ["Latin", "Possible"], - "Desperate": ["Desk", "Poorest"], - "Stress": ["Pressure", "Pressure"], - "Sigh": ["Love", "Lung"], - "Murderer": ["Murder Mystery", "Yoga"], - "Traffic Ticket": ["Car", "Paper"], - "Curiosity": ["Mars", "Rover"], - "Rally": ["Mud", "Racecar"], - "Mask": ["Clay", "Face"], - "Up": ["Down", "Not"], - "Trust": ["Alliance", "Credit"], - "Resist": ["Admit", "Stop"], - "Last": ["Desperate", "Latest"], - "Success": ["Stress", "Time"], - "Dad": ["Family", "Radio"], - "Sighs": ["Murderer", "Sigh"], - "Revenue": ["Car", "Traffic Ticket"], - "Question": ["Curiosity", "Curiosity"], - "Anonymous": ["Mask", "Rally"], - "Reliable": ["Trust", "Up"], - "Persist": ["Last", "Resist"], - "Bong": ["420", "Fire"], - "Proud": ["Dad", "Success"], - "Profits": ["Revenue", "Sighs"], - "When": ["Question", "Time"], - "Known": ["Anonymous", "Not"], - "Consistent": ["Persist", "Reliable"], - "Vacuum": ["Dustbuster", "Lawn"], - "High": ["Bong", "Smoke"], - "Profound": ["Profits", "Proud"], - "Now": ["Time", "When"], - "Constant": ["Consistent", "Known"], - "Low": ["High", "Vacuum"], - "Shallow": ["Never", "Profound"], - "Continuous": ["Constant", "Now"], - "Allow": ["Admit", "Low"], - "Clone": ["Animal", "Science"], - "Stream": ["Continuous", "Shallow"], - "Permission": ["Allow", "Message"], - "Unique": ["Clone", "Not"], - "Streaming": ["Permission", "Stream"], - "Twitch": ["Streaming", "Unique"], - "Tube": ["Pipe", "Pipe"], - "Venus": ["Salamander", "Venus Flytrap"], - "Television": ["Dust", "Radio Waves"], - "Illusion": ["Engine", "Mirage"], - "Tunnel": ["Brick", "Tube"], - "Venus de Milo": ["Time Machine", "Venus"], - "Reality": ["Illusion", "Television"], - "Cave": ["Swamp", "Tunnel"], - "Art": ["Stew", "Venus de Milo"], - "Virtual Reality": ["Cave", "Reality"], - "Artist": ["Art", "Ash"], - "Temple": ["Prayer", "Prayer"], - "VR Artist": ["Artist", "Virtual Reality"], - "Idol": ["Stone", "Temple"], - "Vr Idol": ["Idol", "VR Artist"], - "Streamer": ["Stream", "Twitch"], - "Vtuber": ["Streamer", "Vr Idol"], - "Pumpkin Pie": ["Pig", "Pumpkin"], - "Apple": ["Fire", "Fruit"], - "Apple Pie": ["Apple", "Ocean"], - "Burger": ["Fire", "Flying Cow"], - "Chocolate": ["Brownies", "Cloud"], - "Chocolate Cake": ["Chocolate", "Time"], - "Chocolate Milk": ["Chocolate Cake", "Water"], - "Hot Chocolate": ["Chocolate Milk", "Lava"], - "Nail": ["Iron", "Wood"], - "Juice": ["Fruit", "Water"], - "Orange": ["Juice", "Nail"], - "Orange Juice": ["Orange", "Tax"], - "Rose": ["Flower", "Mountain"], - "Cherry": ["Rose", "Tree"], - "Banana": ["Fruit", "Mirror"], - "Sake": ["Lake", "Rice"], - "Drunk": ["Engine", "Sake"], - "Sex": ["Date", "Drunk"], - "Milk": ["Flying Cow", "Water"], - "Jewel": ["Diamond", "Stone"], - "Pearl": ["Jewel", "Ocean"], - "Pearl Harbor": ["Pearl", "Tsunami"], - "Japan": ["Earth", "Pearl Harbor"], - "Rice Krispies": ["Rice", "Tornado"], - "Snap": ["Rice Krispies", "Water"], - "Mud Dragon": ["Dragon Egg", "Mud"], - "Camera": ["Snap", "Wind"], - "Space Ship": ["Engine", "Galaxy"], - "Sea Dragon": ["Mud Dragon", "Ocean"], - "Eclipse": ["Crash", "Sun"], - "Voting": ["Landslide", "System"], - "Worker": ["Fire", "Slave"], - "Paparazzi": ["Camera", "Weed"], - "Space Station": ["Space Ship", "Space Ship"], - "Leviathan": ["Eclipse", "Sea Dragon"], - "Election": ["Animal", "Voting"], - "Fisherman": ["Water", "Worker"], - "Tacopazzi": ["Paparazzi", "Taco"], - "Space Leviathan": ["Leviathan", "Space Station"], - "President": ["Election", "History"], - "Fisherman’s Wife": ["Fisherman", "Ghost"], - "Space Tacopazzi": ["Space Leviathan", "Tacopazzi"], - "First Lady": ["Fisherman’s Wife", "President"], - "Michelle Obama": ["First Lady", "Space Tacopazzi"], - "Giant Venus Flytrap": ["Venus Flytrap", "Venus Flytrap"], - "Bricktrap": ["Brick", "Giant Venus Flytrap"], - "Steel": ["Fog", "Metal"], - "Sword": ["Steel", "Stone"], - "Thorn": ["Plant", "Sword"], - "Priest": ["Fog", "Prayer"], - "Crown": ["Priest", "Thorn"], - "Flytrap": ["Earth", "Flypaper"], - "Pope": ["Crown", "Priest"], - "Helicopter": ["Engine", "Flytrap"], - "Helipope": ["Helicopter", "Pope"], - "Thunder": ["Smoke", "Storm"], - "Thunderstorm": ["Steam", "Thunder"], - "Lightning": ["Fire", "Thunderstorm"], - "Thor": ["Lightning", "Surfer"], - "Surf Thor": ["Surfing", "Thor"], - "Surfing Thor": ["Surf Thor", "Surfing"], - "Rake": ["Dust", "Lawn"], - "Souped-up": ["Engine", "Soup"], - "Stink": ["Skunk", "Smoke"], - "Gravel": ["Rake", "Stone"], - "Steamroller": ["Souped-up", "Steam"], - "Lawnmower": ["Crash", "Grass"], - "Stinky Volcano": ["Stink", "Volcano"], - "House": ["Brick", "Fireworks"], - "Road": ["Engine", "Gravel"], - "Flat Earth": ["Planet", "Steamroller"], - "Tractor": ["Lawnmower", "Lawnmower"], - "Smelly Volcano": ["Smoke", "Stinky Volcano"], - "Mansion": ["House", "Swamp"], - "Green Dragon": ["Emerald", "Volcano"], - "Superstar": ["Salad", "Star"], - "Road Trip": ["Flat Earth", "Road"], - "Bulldozer": ["Mountain", "Tractor"], - "Carrot": ["Engine", "Seed"], - "Rescue": ["Helicopter", "Mountain"], - "Yellowstone": ["Mountain Range", "Volcano"], - "Sulfuric Acid": ["Smelly Volcano", "Water"], - "Swimming Pool": ["Mansion", "Water"], - "Red Dragon": ["Fire", "Green Dragon"], - "Tar": ["Fuel", "Mud"], - "Dirty": ["Black Hole", "Clean"], - "Bridge": ["Troll", "Water"], - "Straw": ["Hay", "Hay"], - "Tour": ["Road Trip", "Superstar"], - "Street": ["Bulldozer", "Road"], - "Bugs": ["Carrot", "Crash"], - "Abandon": ["Not", "Rescue"], - "Gatorade": ["Funnel Cake", "Gator"], - "Geysers": ["Fog", "Yellowstone"], - "Vinegar": ["Plant", "Sulfuric Acid"], - "Coughing": ["Cough", "Stone"], - "Water Park": ["Ocean", "Swimming Pool"], - "Red Sea": ["Red Dragon", "Water"], - "Asphalt": ["Fire", "Tar"], - "Hell": ["Fire", "Forever"], - "Moses": ["Smoke", "Tablet"], - "Fence": ["Earth", "Wall"], - "Bath": ["Dirty", "Time"], - "Obsidian": ["Emerald", "Lava"], - "Nuclear": ["Engine", "Fallout"], - "Gap": ["Bridge", "Not"], - "Average": ["Not", "Superstar"], - "Apple Juice": ["Apple", "Straw"], - "Bus": ["Street", "Tour"], - "Cable": ["Bugs", "Television"], - "Adopt": ["Abandon", "Not"], - "Sweat": ["Gatorade", "Steam"], - "Sunflower": ["Sun", "Wind"], - "Selfie": ["Mirror", "Narcissus"], - "Cigar": ["Smoke", "Time"], - "Hot Springs": ["Geysers", "Lake"], - "Big Bang": ["Fire", "Universe"], - "Balsamic Vinegar": ["Vinegar", "Wine"], - "Larynx": ["Coughing", "Stone"], - "Sushi": ["Lava", "Rice"], - "Fun": ["Steam", "Water Park"], - "Profit": ["Hurricane", "Money"], - "Crossing": ["Asphalt", "Red Sea"], - "Satan": ["Hell", "Volcano"], - "Parting": ["Moses", "Ocean"], - "Cannon": ["Fire", "Pirate Ship"], - "Monument": ["History", "Stone"], - "Laundry": ["Clean", "Time"], - "Criminal": ["Prisoner", "Time"], - "Skimming": ["Stone", "Surfing"], - "Gate": ["Engine", "Fence"], - "Europe": ["Bath", "Continent"], - "Blade": ["Obsidian", "Stone"], - "Then": ["Crash", "When"], - "Power": ["Nuclear", "Steam"], - "Normal": ["Average", "Gap"], - "Cider": ["Apple Juice", "Steam"], - "Schedule": ["Bus", "Time"], - "Adopted": ["Adopt", "Cable"], - "Work": ["Farm", "Sweat"], - "Van Gogh": ["Selfie", "Sunflower"], - "Engineer": ["Choo-Choo", "Cigar"], - "Spa": ["Hot Springs", "Plant"], - "Life": ["Big Bang", "Swamp"], - "Crystal Ball": ["Glass", "Witch"], - "Balsamic Vinegar of Modena": ["Balsamic Vinegar", "Wine"], - "Voice": ["Larynx", "Wind"], - "Aging": ["Rice", "Time"], - "Tuna": ["Crash", "Sushi"], - "Funner": ["Fun", "Fun"], - "Loss": ["Crossing", "Profit"], - "Sinner": ["Prayer", "Satan"], - "Farewell": ["Parting", "Perfume"], - "Cannonball": ["Cannon", "Fire"], - "Statue": ["Laundry", "Monument"], - "Judge": ["Count", "Criminal"], - "Mass": ["Prayer", "Wine"], - "Headline": ["Newspaper", "Wine"], - "Skipping": ["Skimming", "Stone"], - "Loan": ["Bank", "Lake"], - "Pass": ["Gate", "Mountain"], - "France": ["Earth", "Europe"], - "Knife": ["Blade", "Obsidian"], - "Seeds": ["Dandelion Patch", "Wind"], - "Them": ["Dust", "Then"], - "Resistance": ["Power", "Resist"], - "Hard": ["Cider", "Normal"], - "Adjusted": ["Adopted", "Schedule"], - "Sodium": ["Mirror", "Salt"], - "Labor": ["Eye", "Work"], - "Ear": ["Not", "Van Gogh"], - "Bone": ["Animal", "Shatter"], - "Farmer": ["Earth", "Engineer"], - "Herd": ["Flock", "Flock"], - "Explosion": ["Destruction", "Steam"], - "Spin": ["Spa", "Wind"], - "Vegan": ["Life", "Salad"], - "Clean Air": ["Smog", "Vacuum"], - "Prediction": ["Crystal Ball", "Tsunami"], - "Me": ["Balsamic Vinegar of Modena", "Drunk"], - "Whisper": ["Voice", "Water"], - "Retiring": ["Aging", "High"], - "Can": ["Tuna", "Wall"], - "GPS": ["Boat", "Satellite"], - "Map": ["Maple", "Paper"], - "Funnier": ["Ego", "Funner"], - "Experience": ["Loss", "Time"], - "Baptism": ["Sinner", "Water"], - "Goodbye": ["Cannonball", "Farewell"], - "Energy": ["Fire", "Power"], - "Justice": ["Judge", "Statue"], - "Sandal": ["Sandstorm", "Wood"], - "Media": ["Headline", "Mass"], - "Jumping": ["Ash", "Skipping"], - "Own": ["Loan", "Not"], - "Fail": ["Loss", "Pass"], - "French Revolution": ["Avalanche", "France"], - "Scalpel": ["Knife", "Mountain"], - "Feed": ["Duck", "Seeds"], - "Hole": ["Black Hole", "Earth"], - "Curtain": ["Wind", "Window"], - "Us": ["Resistance", "Them"], - "Difficult": ["Adjusted", "Hard"], - "Salary": ["Labor", "Sodium"], - "Hearing": ["Bone", "Ear"], - "Reporter": ["Farmer", "Newspaper"], - "Cattle": ["Ash", "Herd"], - "Advice": ["Help", "Newspaper"], - "Chaos": ["Destruction", "Explosion"], - "Apocalypse": ["Eclipse", "Tsunami"], - "Top": ["Brick", "Spin"], - "Expensive": ["Car", "Diamond"], - "Hippie": ["Clean Air", "Vegan"], - "Wrong": ["Me", "Prediction"], - "Secret": ["Night", "Whisper"], - "Canceling": ["Can", "Retiring"], - "Lost": ["Ghost", "GPS"], - "Compass": ["Map", "Wind"], - "Wiser": ["Experience", "Funnier"], - "Wrinkle": ["Clean", "Iron"], - "Rust": ["Iron", "Rain"], - "Acid": ["Pollution", "Water"], - "Baptismal Wave": ["Baptism", "Tsunami"], - "Hello": ["Energy", "Goodbye"], - "Karma": ["Justice", "Time"], - "Sock": ["Clean", "Sandal"], - "Immigrant": ["Ship", "Statue of Liberty"], - "Social": ["Jumping", "Media"], - "Meat": ["Animal", "Harvest"], - "Owned": ["One", "Own"], - "Lesson": ["Fail", "Time"], - "Guillotine": ["Earth", "French Revolution"], - "Graduate": ["Earth", "University"], - "Surgeon": ["Scalpel", "Smoke"], - "Eat": ["Feed", "Food"], - "Pocket": ["Hole", "Kite"], - "UFO": ["Cloud", "Flying Cow"], - "Blind": ["Curtain", "Window"], - "Difficulty": ["Difficult", "Us"], - "Listening": ["Hearing", "Salary"], - "Journalist": ["Cattle", "Reporter"], - "Critic": ["Advice", "Destroy"], - "Order": ["Apocalypse", "Chaos"], - "Pause": ["Stop", "Time"], - "Bottom": ["Low", "Top"], - "Marijuana": ["Expensive", "Weed"], - "Joint": ["Hippie", "Smoke"], - "Grain": ["Harvest", "Stone"], - "Battle": ["Fire", "War"], - "Right": ["One", "Wrong"], - "Reveal": ["Canceling", "Secret"], - "Found": ["Compass", "Lost"], - "Older": ["Time", "Wiser"], - "Sandpaper": ["Paper", "Sand"], - "Age": ["Rust", "Wrinkle"], - "Battery": ["Acid", "Engine"], - "Holy Spirit": ["Baptismal Wave", "Wind"], - "Slingshot": ["Pilot", "Stone"], - "Truck": ["Engine", "Monster"], - "Hi": ["Hello", "Human"], - "Punishment": ["Karma", "Sentence"], - "Pneumatic": ["Engine", "Lung"], - "Stock": ["Immigrant", "Sock"], - "Meet": ["Meat", "Social"], - "Learned": ["Lesson", "Owned"], - "Head": ["Crash", "Guillotine"], - "Graduation": ["Cake", "Graduate"], - "Operation": ["Eat", "Surgeon"], - "Empty": ["Not", "Pocket"], - "Nun": ["Curtain", "Priest"], - "Pitch": ["Rain", "Tar"], - "Alien": ["Cloud", "UFO"], - "See": ["Blind", "Not"], - "Ease": ["Canceling", "Difficulty"], - "Ignoring": ["Listening", "Not"], - "Editor": ["Critic", "Journalist"], - "Property": ["Order", "Own"], - "Butt": ["Bottom", "Pause"], - "Blunt": ["Joint", "Marijuana"], - "Socks": ["Grain", "Sock"], - "Fight": ["Battle", "War"], - "Left": ["Right", "Spin"], - "Discover": ["Found", "Reveal"], - "Younger": ["Never", "Older"], - "Rough": ["Pain", "Sandpaper"], - "Yesterday": ["Age", "Tomorrow"], - "Remote": ["Battery", "Brick"], - "Cash": ["Ash", "Bank"], - "Toxic": ["Crash", "Poison"], - "Sad": ["Ash", "Dad"], - "Pentecost": ["Hangover", "Holy Spirit"], - "David": ["Slingshot", "Stone"], - "Hit": ["Hi", "Truck"], - "Discipline": ["Advice", "Punishment"], - "Tire": ["Earth", "Pneumatic"], - "Company": ["Joint", "Stock"], - "Gather": ["Learned", "Meet"], - "Cap": ["Graduation", "Head"], - "Opposition": ["Not", "Operation"], - "Unity": ["One", "Rose"], - "Nobody": ["Anonymous", "Empty"], - "None": ["Latin", "Nun"], - "Tent": ["Alien", "Pitch"], - "Seas": ["Ease", "See"], - "Acknowledging": ["Acknowledge", "Ignoring"], - "Essay": ["Editor", "Lesson"], - "Asset": ["Butt", "Property"], - "Sharp": ["Blunt", "Blunt"], - "Pets": ["Animal", "Socks"], - "Lily": ["Flower", "Water"], - "Try": ["Fail", "Fight"], - "Port": ["Village", "Water"], - "Explore": ["Discover", "Left"], - "Rougher": ["Rough", "Younger"], - "Previous": ["Remote", "Yesterday"], - "Capitalism": ["Cash", "System"], - "Waste": ["Swamp", "Toxic"], - "Mad": ["Mass", "Sad"], - "Tongues": ["Pentecost", "Wind"], - "Sails": ["David", "Sail"], - "Punish": ["Discipline", "Hit"], - "Drill": ["Battery", "Diamond"], - "Mud Bowl": ["Dust Bowl", "Mud"], - "Skid": ["Fog", "Tire"], - "Incorporated": ["Company", "Latin"], - "Collect": ["Cap", "Gather"], - "No": ["Latin", "Opposition"], - "Division": ["Not", "Unity"], - "Somebody": ["Nobody", "Time"], - "Everything": ["Always", "None"], - "Out": ["Not", "Tent"], - "Oceans": ["Acknowledging", "Seas"], - "Emptier": ["Empty", "Wiser"], - "Assess": ["Asset", "Essay"], - "Knives": ["Pets", "Sharp"], - "Eden": ["Garden", "Lily"], - "Attempt": ["Latin", "Try"], - "Export": ["Explore", "Port"], - "Tougher": ["Previous", "Rougher"], - "Ending": ["Capitalism", "Never"], - "Want": ["Not", "Waste"], - "Angry": ["Latin", "Mad"], - "Flags": ["Sails", "Tongues"], - "Consequence": ["Outcome", "Punish"], - "Periscope": ["Drill", "Mirror"], - "Danger": ["Dust", "Warning"], - "Super Bowl": ["Dust Bowl", "Mud Bowl"], - "Football": ["Mud", "Mud Bowl"], - "Slide": ["Plant", "Skid"], - "Collected": ["Collect", "Incorporated"], - "Yes": ["Division", "No"], - "Something": ["Everything", "Somebody"], - "Islands": ["Oceans", "Out"], - "Assessment": ["Assess", "Emptier"], - "Knifes": ["Knives", "Retiring"], - "Heaven": ["Cloud", "Eden"], - "Attempted": ["Attempt", "Done"], - "Import": ["Admit", "Export"], - "Enduring": ["Ending", "Tougher"], - "Demand": ["Angry", "Want"], - "Consequences": ["Consequence", "Flags"], - "Engagement": ["Diamond", "Ring"], - "Scope": ["Arrow", "Periscope"], - "Risk": ["Danger", "Danger"], - "Stranger": ["Not", "Ranger"], - "Received": ["Message", "Never"], - "Touchdown": ["Football", "Super Bowl"], - "Mist": ["Fog", "Lawn"], - "Filter": ["Drain", "Paper"], - "Decline": ["Latin", "Slide"], - "Hats": ["Cap", "Collected"], - "Agree": ["Something", "Yes"], - "Tests": ["Assessment", "Islands"], - "Angels": ["Heaven", "Knifes"], - "Failed": ["Attempted", "Mask"], - "Endure": ["Enduring", "Import"], - "Require": ["Consequences", "Demand"], - "Proposal": ["Beach", "Engagement"], - "Project": ["Risk", "Scope"], - "Strange": ["Physics", "Stranger"], - "Acknowledged": ["Acknowledge", "Received"], - "Stuck": ["Crash", "Flypaper"], - "Safety": ["Danger", "Touchdown"], - "Pottery": ["Clay", "Mist"], - "Reject": ["Decline", "Filter"], - "Caps": ["Agree", "Hats"], - "Saints": ["Angels", "Tests"], - "Ended": ["Endure", "Failed"], - "Recommend": ["Advice", "Require"], - "Grant": ["Project", "Proposal"], - "Recognized": ["Acknowledged", "Strange"], - "Belt": ["Safety", "Stuck"], - "Vase": ["Marsh", "Pottery"], - "Together": ["Date", "Salt"], - "Tourist": ["Shadow", "Tour"], - "Elder": ["Dragon", "Time"], - "Rejects": ["Caps", "Reject"], - "Ends": ["Ended", "Saints"], - "Recommendation": ["Grant", "Recommend"], - "Noticed": ["Belt", "Recognized"], - "Evidence": ["Magnifying Glass", "Vase"], - "Alone": ["Not", "Together"], - "Local": ["Not", "Tourist"], - "Ancient": ["Elder", "Elder"], - "Sends": ["Ends", "Rejects"], - "Notice": ["Noticed", "Recommendation"], - "Suspect": ["Alone", "Evidence"], - "Native": ["Ancient", "Local"], - "Notices": ["Notice", "Sends"], - "Consist": ["Persist", "Suspect"], - "Reservation": ["Native", "Prison"], - "Posters": ["Consist", "Notices"], - "Indian": ["Can", "Reservation"], - "Bollywood": ["Indian", "Posters"], - "Jury": ["Flower", "Judge"], - "Tuxedo": ["Marsh", "Penguin"], - "Trial": ["Acid", "Jury"], - "Healthy": ["Damn", "Health"], - "Gentleman": ["Monkey", "Tuxedo"], - "Diet": ["Healthy", "Trial"], - "Lottery": ["Money", "Mud"], - "Diet Coke": ["Coke", "Explosion"], - "Politics": ["Gentleman", "System"], - "Dietician": ["Diet", "Latin"], - "Diet Lotto": ["Diet Coke", "Lottery"], - "Anorexia": ["Dietician", "Politics"], - "Anorexic": ["Anorexia", "Diet Lotto"], - "Google Sky": ["Google", "Telescope"], - "Hula": ["Flypaper", "Hawaii"], - "Fire Dance": ["Fire", "Hula"], - "Flamenco": ["Continent", "Fire Dance"], - "Flamingo": ["Flamenco", "Water"], - "Pink": ["Flamingo", "Water"], - "Dress": ["Fabric", "Pink"], - "Sandbox": ["Engine", "Sand"], - "Minecraft": ["Planet", "Sandbox"] + "1": ["number", "red"], + "2": ["1", "double"], + "69": ["golden", "six"], + "420": ["fireworks", "weed"], + "dust": ["earth", "wind"], + "plant": ["earth", "water"], + "steam": ["fire", "water"], + "planet": ["dust", "earth"], + "lake": ["water", "water"], + "dandelion": ["plant", "wind"], + "steampunk": ["planet", "steam"], + "ocean": ["lake", "water"], + "dandelion patch": ["dandelion", "dandelion"], + "steampunk pirate": ["ocean", "steampunk"], + "tea": ["plant", "steam"], + "mud": ["dust", "lake"], + "sea": ["lake", "ocean"], + "lava": ["earth", "fire"], + "duck": ["dandelion patch", "lake"], + "airship": ["steampunk pirate", "wind"], + "teapot": ["earth", "tea"], + "swamp": ["mud", "water"], + "stone": ["lava", "sea"], + "steampunk pirate ship": ["steam", "steampunk pirate"], + "duckling": ["duck", "water"], + "dragon": ["airship", "lava"], + "witch": ["swamp", "teapot"], + "stonehenge": ["steampunk pirate ship", "stone"], + "storm": ["planet", "wind"], + "tree": ["plant", "plant"], + "family": ["duck", "duckling"], + "dragonfly": ["dandelion", "dragon"], + "witch hut": ["witch", "witch"], + "time": ["steam", "stonehenge"], + "tempest": ["storm", "tea"], + "ash": ["fire", "tree"], + "farm": ["earth", "family"], + "fairy": ["dragonfly", "dust"], + "wizard": ["time", "witch hut"], + "smoke": ["fire", "wind"], + "sand": ["dust", "ocean"], + "typhoon": ["tea", "tempest"], + "cinder": ["ash", "dust"], + "field": ["earth", "farm"], + "flower": ["fairy", "plant"], + "genie": ["smoke", "wizard"], + "wood": ["dust", "tree"], + "cactus": ["plant", "sand"], + "venus flytrap": ["plant", "swamp"], + "cloud": ["steam", "typhoon"], + "glass": ["cinder", "stone"], + "fog": ["field", "steam"], + "garden": ["flower", "plant"], + "lamp": ["dust", "genie"], + "furniture": ["cactus", "wood"], + "cloud trap": ["cloud", "venus flytrap"], + "lens": ["fog", "glass"], + "marsh": ["garden", "swamp"], + "coral": ["plant", "sea"], + "tsunami": ["ocean", "tempest"], + "light": ["furniture", "lamp"], + "fish": ["cloud trap", "sea"], + "wave": ["water", "wind"], + "microscope": ["lens", "swamp"], + "reef": ["coral", "marsh"], + "lighthouse": ["light", "tsunami"], + "crash": ["airship", "fire"], + "fishing": ["fish", "lake"], + "radio": ["microscope", "wave"], + "surf": ["reef", "wave"], + "shipwreck": ["crash", "lighthouse"], + "kite": ["fishing", "wind"], + "sos": ["ocean", "radio"], + "survivor": ["shipwreck", "surf"], + "island": ["ocean", "stone"], + "paper": ["kite", "stone"], + "sausage": ["fire", "sos"], + "tom hanks": ["island", "survivor"], + "book": ["paper", "plant"], + "meatball": ["sausage", "stone"], + "da vinci code": ["book", "tom hanks"], + "spaghetti": ["da vinci code", "meatball"], + "tornado": ["tempest", "wind"], + "funnel cake": ["tornado", "venus flytrap"], + "maple": ["funnel cake", "tree"], + "maple leaf": ["maple", "tornado"], + "maple syrup": ["maple leaf", "water"], + "pancake": ["maple syrup", "stone"], + "cake": ["earth", "pancake"], + "smoked duck": ["duckling", "smoke"], + "smoked salmon": ["lake", "smoked duck"], + "bagel": ["dust", "smoked salmon"], + "bread": ["bagel", "stone"], + "weed": ["dandelion", "plant"], + "pudding": ["maple syrup", "mud"], + "brownies": ["pudding", "weed"], + "cookies": ["brownies", "fire"], + "pollen": ["dust", "plant"], + "broom": ["dust", "witch"], + "bee": ["pollen", "smoke"], + "clean": ["broom", "dust"], + "breeze": ["bee", "wind"], + "fresh": ["breeze", "clean"], + "fruit": ["fresh", "time"], + "peach": ["fruit", "lava"], + "pie": ["mud", "peach"], + "pizza": ["pie", "stone"], + "magnifying glass": ["fire", "lens"], + "seed": ["magnifying glass", "plant"], + "soap": ["clean", "seed"], + "bubble": ["fog", "soap"], + "boba": ["bubble", "tea"], + "universe": ["planet", "time"], + "clay": ["dust", "mud"], + "engine": ["fire", "steam"], + "adam": ["clay", "universe"], + "pot": ["clay", "pollen"], + "android": ["adam", "engine"], + "coffee": ["android", "pot"], + "campfire": ["fire", "wood"], + "charcoal": ["campfire", "earth"], + "gnome": ["earth", "fairy"], + "coal": ["charcoal", "charcoal"], + "goblin": ["coal", "gnome"], + "hobbit": ["goblin", "wind"], + "pipe": ["hobbit", "plant"], + "mountain": ["earth", "earth"], + "tobacco": ["earth", "pipe"], + "mountain dew": ["dandelion", "mountain"], + "mountain dew baja blast": ["mountain dew", "tobacco"], + "harvest": ["farm", "time"], + "rice": ["harvest", "tsunami"], + "rice pudding": ["dust", "rice"], + "steamed rice pudding": ["rice pudding", "steam"], + "radio waves": ["fog", "radio"], + "surfer": ["steamed rice pudding", "wave"], + "satellite": ["earth", "radio waves"], + "wi-fi": ["satellite", "surfer"], + "internet": ["water", "wi-fi"], + "avalanche": ["mountain", "wind"], + "sandstorm": ["dust", "sand"], + "disaster": ["avalanche", "tsunami"], + "dust bowl": ["disaster", "sandstorm"], + "dust storm": ["dust bowl", "wind"], + "star": ["planet", "planet"], + "dust trap": ["dust storm", "venus flytrap"], + "incense": ["harvest", "smoke"], + "moon": ["earth", "star"], + "flypaper": ["dust trap", "venus flytrap"], + "prayer": ["dust", "incense"], + "canada": ["maple", "moon"], + "spider": ["dust trap", "flypaper"], + "monk": ["mountain", "prayer"], + "c": ["canada", "sea"], + "web": ["marsh", "spider"], + "cpp": ["c", "monk"], + "node.js": ["cpp", "web"], + "poison": ["plant", "witch"], + "snake": ["poison", "stone"], + "python": ["crash", "snake"], + "cyclone": ["swamp", "tornado"], + "fire tornado": ["cyclone", "fire"], + "fire truck": ["engine", "fire tornado"], + "brick": ["fire", "mud"], + "fireplace": ["brick", "fire truck"], + "oven": ["fireplace", "stone"], + "fjord": ["lake", "mountain"], + "toast": ["crash", "oven"], + "rain": ["cloud", "microscope"], + "land": ["earth", "fjord"], + "grass": ["field", "field"], + "cereal": ["rain", "toast"], + "train": ["snake", "steam"], + "continent": ["earth", "land"], + "lawn": ["grass", "stone"], + "corn": ["cereal", "rain"], + "transcontinental railroad": ["continent", "train"], + "cornhole": ["corn", "lawn"], + "america": ["cornhole", "transcontinental railroad"], + "hourglass": ["time", "tornado"], + "science": ["hourglass", "microscope"], + "technology": ["science", "science"], + "computer": ["technology", "technology"], + "mountain dew code red": ["engine", "mountain dew"], + "red bull": ["engine", "mountain dew code red"], + "energy drink": ["mountain dew", "red bull"], + "mirror": ["glass", "lake"], + "potato": ["mirror", "pot"], + "potato chip": ["kite", "potato"], + "salt": ["ocean", "potato chip"], + "volcano": ["fire", "typhoon"], + "saltwater": ["engine", "salt"], + "soda": ["saltwater", "volcano"], + "diamond": ["charcoal", "dust"], + "coke": ["diamond", "soda"], + "destruction": ["tornado", "tsunami"], + "earthquake": ["destruction", "tsunami"], + "california": ["america", "earthquake"], + "boat": ["ocean", "wood"], + "prison": ["brick", "island"], + "whole": ["clean", "pie"], + "raft": ["boat", "plant"], + "sea star": ["ocean", "star"], + "prisoner": ["dust", "prison"], + "wreck": ["crash", "whole"], + "shatter": ["glass", "tornado"], + "sail": ["raft", "wind"], + "starfish": ["sea star", "wave"], + "slave": ["dust", "prisoner"], + "destroy": ["shatter", "wreck"], + "sailor": ["sail", "time"], + "flying starfish": ["starfish", "wind"], + "freedom": ["destroy", "slave"], + "sailor moon": ["flying starfish", "sailor"], + "anarchy": ["freedom", "tsunami"], + "sailor anarchy": ["anarchy", "sailor moon"], + "loch ness monster": ["dragon", "lake"], + "monocle": ["glass", "loch ness monster"], + "professor": ["maple", "monocle"], + "einstein": ["professor", "time"], + "steampunk plant": ["plant", "steampunk pirate"], + "steampunk tree": ["smoke", "steampunk plant"], + "aeon": ["lake", "time"], + "tree of life": ["steampunk tree", "swamp"], + "food": ["farm", "plant"], + "emerald": ["crash", "diamond"], + "eternity": ["aeon", "time"], + "evolution": ["steam", "tree of life"], + "fishbowl": ["fish", "water"], + "sun": ["plant", "star"], + "fuel": ["engine", "food"], + "perfume": ["flower", "steam"], + "green": ["crash", "emerald"], + "forever": ["aeon", "eternity"], + "human": ["evolution", "time"], + "goldfish": ["fire", "fishbowl"], + "meal": ["food", "food"], + "history": ["disaster", "time"], + "sunset": ["lake", "sun"], + "gasoline": ["fuel", "water"], + "mushroom": ["fog", "plant"], + "geysir": ["steam", "stone"], + "slavery": ["crash", "slave"], + "scent": ["perfume", "water"], + "money": ["forever", "green"], + "mummy": ["dust", "human"], + "piranha": ["goldfish", "swamp"], + "thanksgiving": ["history", "meal"], + "beach": ["ocean", "sunset"], + "smog": ["fog", "gasoline"], + "mushroom cloud": ["geysir", "mushroom"], + "pyramid": ["aeon", "brick"], + "traffic": ["crash", "slavery"], + "skunk": ["scent", "swamp"], + "forest": ["plant", "tree"], + "rich": ["genie", "money"], + "wrap": ["mummy", "paper"], + "vampire": ["piranha", "smoke"], + "turkey": ["beach", "thanksgiving"], + "air pollution": ["smog", "venus flytrap"], + "nuclear winter": ["earth", "mushroom cloud"], + "sphinx": ["pyramid", "stone"], + "jam": ["cloud", "traffic"], + "smell": ["cloud", "skunk"], + "jungle": ["forest", "forest"], + "richer": ["money", "rich"], + "blanket": ["wrap", "wrap"], + "count": ["turkey", "vampire"], + "global warming": ["air pollution", "tsunami"], + "acid rain": ["fog", "nuclear winter"], + "riddle": ["jam", "sphinx"], + "fireworks": ["dandelion", "volcano"], + "stench": ["smell", "smell"], + "tiger": ["jungle", "tsunami"], + "landslide": ["avalanche", "earth"], + "warmer": ["blanket", "richer"], + "number": ["count", "count"], + "climate change": ["acid rain", "global warming"], + "answer": ["riddle", "wind"], + "tea party": ["fireworks", "tea"], + "fart": ["stench", "wind"], + "tiger woods": ["tiger", "tree"], + "sticky situation": ["flypaper", "landslide"], + "hotter": ["number", "warmer"], + "denial": ["answer", "climate change"], + "tax": ["money", "tea party"], + "silent": ["fart", "prayer"], + "ring": ["diamond", "mud"], + "divorce": ["sticky situation", "tiger woods"], + "not": ["denial", "hotter"], + "income": ["silent", "tax"], + "single": ["divorce", "ring"], + "drink": ["clean", "water"], + "park": ["garden", "garden"], + "outcome": ["income", "not"], + "one": ["number", "single"], + "solar": ["fire", "sun"], + "hangover": ["crash", "drink"], + "zoo": ["garden", "park"], + "university": ["professor", "professor"], + "sum": ["one", "outcome"], + "system": ["planet", "solar"], + "allergy": ["pollen", "tornado"], + "regret": ["beach", "hangover"], + "animal": ["earth", "zoo"], + "math": ["sum", "university"], + "immune": ["allergy", "system"], + "guilt": ["animal", "regret"], + "physics": ["crash", "math"], + "innocent": ["guilt", "immune"], + "bose-einstein condensate": ["innocent", "physics"], + "carnivore": ["tree", "venus flytrap"], + "dinosaur": ["carnivore", "earth"], + "egg": ["dinosaur", "dinosaur"], + "bird": ["egg", "egg"], + "flock": ["bird", "bird"], + "druid": ["fire", "stonehenge"], + "coconut": ["fruit", "wave"], + "shepherd": ["druid", "flock"], + "coconut milk": ["coconut", "marsh"], + "riddle of the sphinx": ["riddle", "shepherd"], + "coconut tsunami": ["coconut milk", "tsunami"], + "the answer to life, the universe, and everything": ["coconut tsunami", "riddle of the sphinx"], + "morning": ["glass", "hangover"], + "cough": ["ash", "pollen"], + "frost": ["diamond", "fog"], + "muddy": ["morning", "mud"], + "medicine": ["cough", "plant"], + "ice": ["frost", "frost"], + "pig": ["dust", "muddy"], + "moonflower": ["moon", "venus flytrap"], + "potion": ["medicine", "water"], + "ice cube": ["diamond", "ice"], + "piggy bank": ["moonflower", "pig"], + "rocket": ["engine", "potion"], + "dragon egg": ["dragon", "dragon"], + "iceberg": ["ice cube", "tsunami"], + "pluto": ["piggy bank", "planet"], + "space farm": ["farm", "rocket"], + "crocodile": ["carnivore", "swamp"], + "dustbuster": ["duck", "dust"], + "sea serpent": ["dragon egg", "ocean"], + "penguin": ["iceberg", "marsh"], + "underworld": ["pluto", "volcano"], + "space whale": ["space farm", "water"], + "lotus": ["crocodile", "flower"], + "ghost ship": ["boat", "fog"], + "whale": ["dustbuster", "ocean"], + "penguin serpent": ["penguin", "sea serpent"], + "cthulhu": ["space whale", "underworld"], + "kali": ["lotus", "storm"], + "pirate ship": ["ghost ship", "smoke"], + "train station": ["train", "train"], + "jonah": ["fishing", "whale"], + "cthulhu penguin": ["cthulhu", "penguin serpent"], + "avocado": ["kali", "seed"], + "jade": ["emerald", "stone"], + "pirateosaurus": ["dinosaur", "pirate ship"], + "jonah hex": ["jonah", "train station"], + "guacamole": ["avocado", "cthulhu penguin"], + "buddha": ["jade", "smoke"], + "jonah hexasaurus": ["jonah hex", "pirateosaurus"], + "buddha bowl": ["buddha", "guacamole"], + "buddha hexasaurus": ["buddha bowl", "jonah hexasaurus"], + "atlantis": ["ocean", "stonehenge"], + "orc": ["goblin", "mud"], + "loch ness": ["atlantis", "swamp"], + "troll": ["fog", "orc"], + "monster": ["loch ness", "volcano"], + "ogre": ["monster", "troll"], + "shinkansen": ["ogre", "train"], + "duck and cover": ["dandelion patch", "duck"], + "glue": ["flypaper", "fuel"], + "fallout": ["ash", "duck and cover"], + "vine": ["glue", "plant"], + "vault": ["duck and cover", "fallout"], + "wine": ["fog", "vine"], + "bank": ["crash", "vault"], + "comet": ["smoke", "star"], + "credit": ["bank", "wine"], + "black hole": ["tsunami", "universe"], + "meteor": ["comet", "volcano"], + "interest": ["credit", "time"], + "sentence": ["prison", "time"], + "singularity": ["black hole", "tornado"], + "seasoning": ["meteor", "salt"], + "throat": ["cough", "tea"], + "passion": ["fire", "interest"], + "paragraph": ["sentence", "sentence"], + "spice": ["seasoning", "singularity"], + "mouth": ["earth", "throat"], + "poem": ["paragraph", "passion"], + "chili": ["rain", "spice"], + "tongue": ["animal", "mouth"], + "poetry": ["poem", "poem"], + "hot": ["chili", "fire"], + "narcissus": ["lake", "mirror"], + "language": ["poetry", "tongue"], + "college": ["hot", "university"], + "narcissism": ["dust", "narcissus"], + "latin": ["college", "language"], + "celebrity": ["dust", "narcissism"], + "spanish": ["celebrity", "latin"], + "english": ["not", "spanish"], + "ghost": ["campfire", "dust"], + "halloween": ["ghost", "witch"], + "pumpkin": ["halloween", "time"], + "soup": ["pumpkin", "water"], + "drain": ["black hole", "water"], + "stew": ["soup", "steam"], + "flying fish": ["fish", "wind"], + "pump": ["drain", "engine"], + "focus": ["lens", "stew"], + "jet": ["flying fish", "steam"], + "ship": ["ocean", "sail"], + "well": ["earth", "pump"], + "time machine": ["pirate ship", "time"], + "laser": ["fire", "focus"], + "jetpack": ["jet", "jet"], + "spaceship": ["rocket", "ship"], + "alice": ["mirror", "well"], + "time laser": ["laser", "time machine"], + "pilot": ["jet", "jetpack"], + "space alice": ["alice", "spaceship"], + "hawaii": ["beach", "volcano"], + "time pilot": ["pilot", "time laser"], + "space hawaii": ["hawaii", "space alice"], + "space time pilot": ["space hawaii", "time pilot"], + "google": ["android", "cloud"], + "transistor": ["engine", "radio"], + "debt": ["credit", "credit"], + "walkman": ["radio", "transistor"], + "bottle": ["earth", "glass"], + "deja vu": ["fog", "time"], + "done": ["debt", "one"], + "static": ["ash", "radio"], + "cd": ["fire", "walkman"], + "lung": ["cough", "water"], + "message": ["beach", "bottle"], + "memory": ["deja vu", "water"], + "prison break": ["prison", "tsunami"], + "finished": ["done", "latin"], + "cat": ["animal", "static"], + "music": ["cd", "fire"], + "pneumonia": ["cough", "lung"], + "help": ["message", "sos"], + "forget": ["memory", "wind"], + "escape": ["prison break", "wind"], + "satisfied": ["cat", "finished"], + "quicksand": ["cloud trap", "mud"], + "slate": ["clean", "stone"], + "dance": ["earth", "music"], + "sick": ["pneumonia", "water"], + "hurt": ["forget", "help"], + "survive": ["escape", "tsunami"], + "content": ["latin", "satisfied"], + "slow": ["quicksand", "steam"], + "tablet": ["slate", "stone"], + "sing": ["dance", "mouth"], + "injured": ["hurt", "sick"], + "thrive": ["content", "survive"], + "stop": ["fire", "slow"], + "ten": ["one", "tablet"], + "singer": ["injured", "sing"], + "strive": ["stop", "thrive"], + "decade": ["singer", "ten"], + "translation": ["language", "language"], + "effort": ["decade", "strive"], + "google translate": ["effort", "translation"], + "piece": ["lake", "pie"], + "refrigerator": ["engine", "ice"], + "sculpture": ["piece", "piece"], + "salad": ["plant", "refrigerator"], + "virus": ["fire", "microscope"], + "statue of liberty": ["sculpture", "tsunami"], + "monkey": ["dust", "jungle"], + "salsa": ["fire", "salad"], + "bacteria": ["virus", "virus"], + "new york": ["sea", "statue of liberty"], + "see no evil": ["mirror", "monkey"], + "taco": ["earth", "salsa"], + "cheese": ["bacteria", "smoke"], + "empire state": ["america", "new york"], + "shark": ["fish", "see no evil"], + "quesadilla": ["cheese", "taco"], + "empire state building": ["empire state", "engine"], + "sharknado": ["ocean", "shark"], + "empire state quesadilla": ["empire state building", "quesadilla"], + "sharknado 2: the second one": ["empire state quesadilla", "sharknado"], + "sharknado 3: oh hell no!": ["salt", "sharknado 2: the second one"], + "oil spill": ["funnel cake", "lake"], + "happiness": ["buddha", "whale"], + "aspirin": ["hangover", "plant"], + "black friday": ["thanksgiving", "time"], + "fishing rod": ["engine", "fishing"], + "pollution": ["earth", "oil spill"], + "health": ["aspirin", "happiness"], + "cyber monday": ["black friday", "surf"], + "telescope": ["engine", "lens"], + "frog": ["fishing rod", "swamp"], + "norway": ["fjord", "mountain"], + "roast": ["duck", "oven"], + "sweatshop": ["pollution", "slavery"], + "alcohol": ["drink", "stone"], + "cybernetics": ["cyber monday", "health"], + "astronomy": ["telescope", "wine"], + "ice cream": ["ice", "volcano"], + "prince": ["frog", "smoke"], + "viking": ["fire", "norway"], + "window": ["glass", "rain"], + "sandwich": ["roast", "wind"], + "tequila": ["alcohol", "sweatshop"], + "astrocybernetics": ["astronomy", "cybernetics"], + "stinky": ["ice cream", "skunk"], + "hay": ["allergy", "farm"], + "tarzan": ["jungle", "prince"], + "berserker": ["fog", "viking"], + "sandwich board": ["sandwich", "window"], + "sharknado 2": ["norway", "sharknado"], + "cybernetic tequila": ["astrocybernetics", "tequila"], + "manure": ["hay", "stinky"], + "greenpeace": ["pollution", "tarzan"], + "rage": ["berserker", "mountain dew"], + "advertising": ["fish", "sandwich board"], + "sharknado 3": ["cybernetic tequila", "sharknado 2"], + "protest": ["greenpeace", "manure"], + "marketing": ["advertising", "rage"], + "sharknado 4": ["protest", "sharknado 3"], + "greenwashing": ["climate change", "marketing"], + "sharknado 4: the 4th awakens": ["greenwashing", "sharknado 4"], + "pun": ["sentence", "underworld"], + "night": ["flower", "moon"], + "punain": ["pun", "rain"], + "sleep": ["night", "rain"], + "punainen": ["punain", "roast"], + "bed": ["earth", "sleep"], + "red": ["bed", "punainen"], + "double": ["mirror", "single"], + "glacier": ["fjord", "fjord"], + "gator": ["food", "swamp"], + "dragon flower": ["dragon egg", "pollen"], + "ice age": ["aeon", "glacier"], + "foghorn": ["duck", "fog"], + "mosquito": ["incense", "swamp"], + "mountain range": ["mountain", "mountain"], + "pirate": ["ghost ship", "plant"], + "rainbow trout": ["cloud", "fish"], + "lizard": ["dragon flower", "gator"], + "money tree": ["diamond", "tree"], + "mammoth": ["ice age", "plant"], + "foghorn leghorn": ["flying fish", "foghorn"], + "swarm": ["mosquito", "mosquito"], + "great wall of china": ["brick", "mountain range"], + "toadstool": ["mushroom", "storm"], + "eye patch": ["glass", "pirate"], + "salamander": ["lizard", "rainbow trout"], + "story": ["campfire", "time"], + "casino": ["ghost", "money tree"], + "rainforest": ["jungle", "rain"], + "tank": ["engine", "mammoth"], + "chicken": ["fire", "foghorn leghorn"], + "army": ["great wall of china", "swarm"], + "mario": ["eye patch", "toadstool"], + "choo-choo": ["salamander", "train"], + "tale": ["story", "wind"], + "panel": ["clean", "solar"], + "gambler": ["animal", "casino"], + "amazon": ["rainforest", "tsunami"], + "war": ["jet", "tank"], + "colonel": ["army", "chicken"], + "thomas": ["choo-choo", "mario"], + "comic": ["panel", "tale"], + "shopper": ["amazon", "gambler"], + "general": ["colonel", "war"], + "iron": ["clean", "steam"], + "carnival": ["flower", "funnel cake"], + "vulture": ["carnivore", "wind"], + "tomorrow": ["thomas", "time"], + "serious": ["comic", "not"], + "consumer": ["general", "shopper"], + "metal": ["earth", "iron"], + "parade": ["carnival", "plant"], + "dust mite": ["dust storm", "microscope"], + "hyena": ["carnivore", "vulture"], + "someday": ["serious", "tomorrow"], + "producer": ["consumer", "not"], + "coin": ["metal", "mud"], + "carnivorous plant": ["plant", "venus flytrap"], + "peat": ["charcoal", "swamp"], + "pride": ["dust mite", "parade"], + "laughter": ["hyena", "steam"], + "never": ["dragon", "someday"], + "director": ["lens", "producer"], + "pigweed": ["dandelion", "pig"], + "economy": ["bread", "coin"], + "horse": ["hay", "plant"], + "flying cow": ["carnivorous plant", "tornado"], + "scotch": ["fog", "peat"], + "sunrise": ["land", "sunset"], + "satisfaction": ["laughter", "pride"], + "always": ["director", "never"], + "cotton": ["pigweed", "plant"], + "market": ["animal", "economy"], + "pegasus": ["horse", "wind"], + "boulder": ["stone", "stone"], + "flying pig": ["flying cow", "mud"], + "whiskey": ["lava", "scotch"], + "day": ["earth", "sunrise"], + "guarantee": ["always", "satisfaction"], + "fabric": ["cotton", "flower"], + "shop": ["market", "mirror"], + "rocking horse": ["boulder", "pegasus"], + "muddy pig": ["flying pig", "mud"], + "irish coffee": ["fog", "whiskey"], + "week": ["day", "time"], + "quality": ["fabric", "guarantee"], + "closed": ["shop", "time"], + "toy": ["dust", "rocking horse"], + "triffid": ["muddy pig", "plant"], + "irish smoke": ["irish coffee", "smoke"], + "weak": ["not", "week"], + "quantity": ["closed", "quality"], + "balloon": ["cloud", "toy"], + "tumbleweed": ["triffid", "wind"], + "leprechaun": ["fog", "irish smoke"], + "unicorn": ["rocking horse", "smoke"], + "few": ["quantity", "weak"], + "ego": ["balloon", "narcissus"], + "lucky": ["leprechaun", "tumbleweed"], + "magic": ["tea", "unicorn"], + "fewer": ["ego", "few"], + "paradox": ["freedom", "slavery"], + "noise": ["crash", "static"], + "wealth": ["dandelion", "money"], + "seven": ["lucky", "one"], + "less": ["fewer", "magic"], + "silence": ["noise", "paradox"], + "bankruptcy": ["crash", "wealth"], + "six": ["less", "seven"], + "golden": ["bankruptcy", "silence"], + "honey": ["bee", "water"], + "squito": ["mosquito", "ocean"], + "meade": ["honey", "water"], + "ant": ["earth", "squito"], + "robin hood": ["forest", "meade"], + "aunt": ["ant", "kite"], + "archer": ["robin hood", "water"], + "newspaper": ["aunt", "paper"], + "arrow": ["archer", "dust"], + "sniper": ["arrow", "newspaper"], + "bitcoin": ["comet", "money"], + "hodl": ["bitcoin", "sniper"], + "inflation": ["economy", "fire"], + "headache": ["hangover", "stone"], + "pain": ["headache", "inflation"], + "fame": ["money", "star"], + "value": ["money", "time"], + "shame": ["fame", "pain"], + "honor": ["shame", "value"], + "shadow": ["orc", "smoke"], + "stealth": ["engine", "shadow"], + "ranger": ["park", "time"], + "ninja": ["ranger", "stealth"], + "hurricane": ["dragon", "storm"], + "shuriken": ["hurricane", "ninja"], + "sale": ["fire", "market"], + "throw": ["ninja", "shuriken"], + "recognize": ["not", "wreck"], + "regular": ["not", "sale"], + "acknowledge": ["recognize", "throw"], + "cognizant": ["acknowledge", "regular"], + "mouse trap": ["cheese", "engine"], + "mousetrap": ["mouse trap", "rocket"], + "ironman": ["iron", "marsh"], + "ironmouse": ["ironman", "mousetrap"], + "wall": ["stop", "tsunami"], + "river": ["tree", "water"], + "desert": ["cactus", "tsunami"], + "dam": ["river", "wall"], + "mirage": ["desert", "ocean"], + "village": ["farm", "farm"], + "plane": ["pilot", "swamp"], + "damn": ["dam", "dust"], + "cheese wheel": ["cheese", "cheese"], + "galaxy": ["star", "star"], + "landship": ["airship", "earth"], + "oasis": ["mirage", "mirage"], + "piggyback": ["ocean", "pig"], + "airport": ["plane", "village"], + "airplane": ["cloud trap", "engine"], + "orient express": ["rich", "train"], + "damnation": ["damn", "plant"], + "cheeseburger": ["cheese wheel", "mosquito"], + "signal": ["galaxy", "radio"], + "titan": ["landship", "volcano"], + "date": ["harvest", "oasis"], + "piggyback rider": ["engine", "piggyback"], + "flight": ["airplane", "airport"], + "murder on the orient express": ["damnation", "orient express"], + "double cheeseburger": ["cheeseburger", "cheeseburger"], + "warning": ["signal", "tsunami"], + "antelope": ["ant", "wind"], + "cyclops": ["swamp", "titan"], + "parking": ["earth", "traffic"], + "impossible": ["internet", "satisfaction"], + "richest": ["richer", "richer"], + "table": ["tea", "wood"], + "clock": ["steam", "time"], + "dating": ["date", "water"], + "surfing": ["piggyback rider", "tsunami"], + "glider": ["flight", "slow"], + "agatha christie": ["double cheeseburger", "murder on the orient express"], + "alarm": ["engine", "warning"], + "mars": ["dust storm", "planet"], + "gazelle": ["antelope", "plant"], + "eye": ["cyclops", "kite"], + "coalition": ["coal", "window"], + "ticket": ["parking", "time"], + "possible": ["impossible", "latin"], + "poorest": ["not", "richest"], + "desk": ["clock", "table"], + "pressure": ["diamond", "time"], + "love": ["dating", "fire"], + "yoga": ["incense", "surfing"], + "murder mystery": ["agatha christie", "glider"], + "car": ["alarm", "crash"], + "rover": ["engine", "mars"], + "racecar": ["engine", "gazelle"], + "face": ["eye", "eye"], + "down": ["crash", "internet"], + "alliance": ["coalition", "coalition"], + "admit": ["latin", "ticket"], + "latest": ["latin", "possible"], + "desperate": ["desk", "poorest"], + "stress": ["pressure", "pressure"], + "sigh": ["love", "lung"], + "murderer": ["murder mystery", "yoga"], + "traffic ticket": ["car", "paper"], + "curiosity": ["mars", "rover"], + "rally": ["mud", "racecar"], + "mask": ["clay", "face"], + "up": ["down", "not"], + "trust": ["alliance", "credit"], + "resist": ["admit", "stop"], + "last": ["desperate", "latest"], + "success": ["stress", "time"], + "dad": ["family", "radio"], + "sighs": ["murderer", "sigh"], + "revenue": ["car", "traffic ticket"], + "question": ["curiosity", "curiosity"], + "anonymous": ["mask", "rally"], + "reliable": ["trust", "up"], + "persist": ["last", "resist"], + "bong": ["420", "fire"], + "proud": ["dad", "success"], + "profits": ["revenue", "sighs"], + "when": ["question", "time"], + "known": ["anonymous", "not"], + "consistent": ["persist", "reliable"], + "vacuum": ["dustbuster", "lawn"], + "high": ["bong", "smoke"], + "profound": ["profits", "proud"], + "now": ["time", "when"], + "constant": ["consistent", "known"], + "low": ["high", "vacuum"], + "shallow": ["never", "profound"], + "continuous": ["constant", "now"], + "allow": ["admit", "low"], + "clone": ["animal", "science"], + "stream": ["continuous", "shallow"], + "permission": ["allow", "message"], + "unique": ["clone", "not"], + "streaming": ["permission", "stream"], + "twitch": ["streaming", "unique"], + "tube": ["pipe", "pipe"], + "venus": ["salamander", "venus flytrap"], + "television": ["dust", "radio waves"], + "illusion": ["engine", "mirage"], + "tunnel": ["brick", "tube"], + "venus de milo": ["time machine", "venus"], + "reality": ["illusion", "television"], + "cave": ["swamp", "tunnel"], + "art": ["stew", "venus de milo"], + "virtual reality": ["cave", "reality"], + "artist": ["art", "ash"], + "temple": ["prayer", "prayer"], + "vr artist": ["artist", "virtual reality"], + "idol": ["stone", "temple"], + "vr idol": ["idol", "vr artist"], + "streamer": ["stream", "twitch"], + "vtuber": ["streamer", "vr idol"], + "pumpkin pie": ["pig", "pumpkin"], + "apple": ["fire", "fruit"], + "apple pie": ["apple", "ocean"], + "burger": ["fire", "flying cow"], + "chocolate": ["brownies", "cloud"], + "chocolate cake": ["chocolate", "time"], + "chocolate milk": ["chocolate cake", "water"], + "hot chocolate": ["chocolate milk", "lava"], + "nail": ["iron", "wood"], + "juice": ["fruit", "water"], + "orange": ["juice", "nail"], + "orange juice": ["orange", "tax"], + "rose": ["flower", "mountain"], + "cherry": ["rose", "tree"], + "banana": ["fruit", "mirror"], + "sake": ["lake", "rice"], + "drunk": ["engine", "sake"], + "sex": ["date", "drunk"], + "milk": ["flying cow", "water"], + "jewel": ["diamond", "stone"], + "pearl": ["jewel", "ocean"], + "pearl harbor": ["pearl", "tsunami"], + "japan": ["earth", "pearl harbor"], + "rice krispies": ["rice", "tornado"], + "snap": ["rice krispies", "water"], + "mud dragon": ["dragon egg", "mud"], + "camera": ["snap", "wind"], + "space ship": ["engine", "galaxy"], + "sea dragon": ["mud dragon", "ocean"], + "eclipse": ["crash", "sun"], + "voting": ["landslide", "system"], + "worker": ["fire", "slave"], + "paparazzi": ["camera", "weed"], + "space station": ["space ship", "space ship"], + "leviathan": ["eclipse", "sea dragon"], + "election": ["animal", "voting"], + "fisherman": ["water", "worker"], + "tacopazzi": ["paparazzi", "taco"], + "space leviathan": ["leviathan", "space station"], + "president": ["election", "history"], + "fisherman’s wife": ["fisherman", "ghost"], + "space tacopazzi": ["space leviathan", "tacopazzi"], + "first lady": ["fisherman’s wife", "president"], + "michelle obama": ["first lady", "space tacopazzi"], + "giant venus flytrap": ["venus flytrap", "venus flytrap"], + "bricktrap": ["brick", "giant venus flytrap"], + "steel": ["fog", "metal"], + "sword": ["steel", "stone"], + "thorn": ["plant", "sword"], + "priest": ["fog", "prayer"], + "crown": ["priest", "thorn"], + "flytrap": ["earth", "flypaper"], + "pope": ["crown", "priest"], + "helicopter": ["engine", "flytrap"], + "helipope": ["helicopter", "pope"], + "thunder": ["smoke", "storm"], + "thunderstorm": ["steam", "thunder"], + "lightning": ["fire", "thunderstorm"], + "thor": ["lightning", "surfer"], + "surf thor": ["surfing", "thor"], + "surfing thor": ["surf thor", "surfing"], + "rake": ["dust", "lawn"], + "souped-up": ["engine", "soup"], + "stink": ["skunk", "smoke"], + "gravel": ["rake", "stone"], + "steamroller": ["souped-up", "steam"], + "lawnmower": ["crash", "grass"], + "stinky volcano": ["stink", "volcano"], + "house": ["brick", "fireworks"], + "road": ["engine", "gravel"], + "flat earth": ["planet", "steamroller"], + "tractor": ["lawnmower", "lawnmower"], + "smelly volcano": ["smoke", "stinky volcano"], + "mansion": ["house", "swamp"], + "green dragon": ["emerald", "volcano"], + "superstar": ["salad", "star"], + "road trip": ["flat earth", "road"], + "bulldozer": ["mountain", "tractor"], + "carrot": ["engine", "seed"], + "rescue": ["helicopter", "mountain"], + "yellowstone": ["mountain range", "volcano"], + "sulfuric acid": ["smelly volcano", "water"], + "swimming pool": ["mansion", "water"], + "red dragon": ["fire", "green dragon"], + "tar": ["fuel", "mud"], + "dirty": ["black hole", "clean"], + "bridge": ["troll", "water"], + "straw": ["hay", "hay"], + "tour": ["road trip", "superstar"], + "street": ["bulldozer", "road"], + "bugs": ["carrot", "crash"], + "abandon": ["not", "rescue"], + "gatorade": ["funnel cake", "gator"], + "geysers": ["fog", "yellowstone"], + "vinegar": ["plant", "sulfuric acid"], + "coughing": ["cough", "stone"], + "water park": ["ocean", "swimming pool"], + "red sea": ["red dragon", "water"], + "asphalt": ["fire", "tar"], + "hell": ["fire", "forever"], + "moses": ["smoke", "tablet"], + "fence": ["earth", "wall"], + "bath": ["dirty", "time"], + "obsidian": ["emerald", "lava"], + "nuclear": ["engine", "fallout"], + "gap": ["bridge", "not"], + "average": ["not", "superstar"], + "apple juice": ["apple", "straw"], + "bus": ["street", "tour"], + "cable": ["bugs", "television"], + "adopt": ["abandon", "not"], + "sweat": ["gatorade", "steam"], + "sunflower": ["sun", "wind"], + "selfie": ["mirror", "narcissus"], + "cigar": ["smoke", "time"], + "hot springs": ["geysers", "lake"], + "big bang": ["fire", "universe"], + "balsamic vinegar": ["vinegar", "wine"], + "larynx": ["coughing", "stone"], + "sushi": ["lava", "rice"], + "fun": ["steam", "water park"], + "profit": ["hurricane", "money"], + "crossing": ["asphalt", "red sea"], + "satan": ["hell", "volcano"], + "parting": ["moses", "ocean"], + "cannon": ["fire", "pirate ship"], + "monument": ["history", "stone"], + "laundry": ["clean", "time"], + "criminal": ["prisoner", "time"], + "skimming": ["stone", "surfing"], + "gate": ["engine", "fence"], + "europe": ["bath", "continent"], + "blade": ["obsidian", "stone"], + "then": ["crash", "when"], + "power": ["nuclear", "steam"], + "normal": ["average", "gap"], + "cider": ["apple juice", "steam"], + "schedule": ["bus", "time"], + "adopted": ["adopt", "cable"], + "work": ["farm", "sweat"], + "van gogh": ["selfie", "sunflower"], + "engineer": ["choo-choo", "cigar"], + "spa": ["hot springs", "plant"], + "life": ["big bang", "swamp"], + "crystal ball": ["glass", "witch"], + "balsamic vinegar of modena": ["balsamic vinegar", "wine"], + "voice": ["larynx", "wind"], + "aging": ["rice", "time"], + "tuna": ["crash", "sushi"], + "funner": ["fun", "fun"], + "loss": ["crossing", "profit"], + "sinner": ["prayer", "satan"], + "farewell": ["parting", "perfume"], + "cannonball": ["cannon", "fire"], + "statue": ["laundry", "monument"], + "judge": ["count", "criminal"], + "mass": ["prayer", "wine"], + "headline": ["newspaper", "wine"], + "skipping": ["skimming", "stone"], + "loan": ["bank", "lake"], + "pass": ["gate", "mountain"], + "france": ["earth", "europe"], + "knife": ["blade", "obsidian"], + "seeds": ["dandelion patch", "wind"], + "them": ["dust", "then"], + "resistance": ["power", "resist"], + "hard": ["cider", "normal"], + "adjusted": ["adopted", "schedule"], + "sodium": ["mirror", "salt"], + "labor": ["eye", "work"], + "ear": ["not", "van gogh"], + "bone": ["animal", "shatter"], + "farmer": ["earth", "engineer"], + "herd": ["flock", "flock"], + "explosion": ["destruction", "steam"], + "spin": ["spa", "wind"], + "vegan": ["life", "salad"], + "clean air": ["smog", "vacuum"], + "prediction": ["crystal ball", "tsunami"], + "me": ["balsamic vinegar of modena", "drunk"], + "whisper": ["voice", "water"], + "retiring": ["aging", "high"], + "can": ["tuna", "wall"], + "gps": ["boat", "satellite"], + "map": ["maple", "paper"], + "funnier": ["ego", "funner"], + "experience": ["loss", "time"], + "baptism": ["sinner", "water"], + "goodbye": ["cannonball", "farewell"], + "energy": ["fire", "power"], + "justice": ["judge", "statue"], + "sandal": ["sandstorm", "wood"], + "media": ["headline", "mass"], + "jumping": ["ash", "skipping"], + "own": ["loan", "not"], + "fail": ["loss", "pass"], + "french revolution": ["avalanche", "france"], + "scalpel": ["knife", "mountain"], + "feed": ["duck", "seeds"], + "hole": ["black hole", "earth"], + "curtain": ["wind", "window"], + "us": ["resistance", "them"], + "difficult": ["adjusted", "hard"], + "salary": ["labor", "sodium"], + "hearing": ["bone", "ear"], + "reporter": ["farmer", "newspaper"], + "cattle": ["ash", "herd"], + "advice": ["help", "newspaper"], + "chaos": ["destruction", "explosion"], + "apocalypse": ["eclipse", "tsunami"], + "top": ["brick", "spin"], + "expensive": ["car", "diamond"], + "hippie": ["clean air", "vegan"], + "wrong": ["me", "prediction"], + "secret": ["night", "whisper"], + "canceling": ["can", "retiring"], + "lost": ["ghost", "gps"], + "compass": ["map", "wind"], + "wiser": ["experience", "funnier"], + "wrinkle": ["clean", "iron"], + "rust": ["iron", "rain"], + "acid": ["pollution", "water"], + "baptismal wave": ["baptism", "tsunami"], + "hello": ["energy", "goodbye"], + "karma": ["justice", "time"], + "sock": ["clean", "sandal"], + "immigrant": ["ship", "statue of liberty"], + "social": ["jumping", "media"], + "meat": ["animal", "harvest"], + "owned": ["one", "own"], + "lesson": ["fail", "time"], + "guillotine": ["earth", "french revolution"], + "graduate": ["earth", "university"], + "surgeon": ["scalpel", "smoke"], + "eat": ["feed", "food"], + "pocket": ["hole", "kite"], + "ufo": ["cloud", "flying cow"], + "blind": ["curtain", "window"], + "difficulty": ["difficult", "us"], + "listening": ["hearing", "salary"], + "journalist": ["cattle", "reporter"], + "critic": ["advice", "destroy"], + "order": ["apocalypse", "chaos"], + "pause": ["stop", "time"], + "bottom": ["low", "top"], + "marijuana": ["expensive", "weed"], + "joint": ["hippie", "smoke"], + "grain": ["harvest", "stone"], + "battle": ["fire", "war"], + "right": ["one", "wrong"], + "reveal": ["canceling", "secret"], + "found": ["compass", "lost"], + "older": ["time", "wiser"], + "sandpaper": ["paper", "sand"], + "age": ["rust", "wrinkle"], + "battery": ["acid", "engine"], + "holy spirit": ["baptismal wave", "wind"], + "slingshot": ["pilot", "stone"], + "truck": ["engine", "monster"], + "hi": ["hello", "human"], + "punishment": ["karma", "sentence"], + "pneumatic": ["engine", "lung"], + "stock": ["immigrant", "sock"], + "meet": ["meat", "social"], + "learned": ["lesson", "owned"], + "head": ["crash", "guillotine"], + "graduation": ["cake", "graduate"], + "operation": ["eat", "surgeon"], + "empty": ["not", "pocket"], + "nun": ["curtain", "priest"], + "pitch": ["rain", "tar"], + "alien": ["cloud", "ufo"], + "see": ["blind", "not"], + "ease": ["canceling", "difficulty"], + "ignoring": ["listening", "not"], + "editor": ["critic", "journalist"], + "property": ["order", "own"], + "butt": ["bottom", "pause"], + "blunt": ["joint", "marijuana"], + "socks": ["grain", "sock"], + "fight": ["battle", "war"], + "left": ["right", "spin"], + "discover": ["found", "reveal"], + "younger": ["never", "older"], + "rough": ["pain", "sandpaper"], + "yesterday": ["age", "tomorrow"], + "remote": ["battery", "brick"], + "cash": ["ash", "bank"], + "toxic": ["crash", "poison"], + "sad": ["ash", "dad"], + "pentecost": ["hangover", "holy spirit"], + "david": ["slingshot", "stone"], + "hit": ["hi", "truck"], + "discipline": ["advice", "punishment"], + "tire": ["earth", "pneumatic"], + "company": ["joint", "stock"], + "gather": ["learned", "meet"], + "cap": ["graduation", "head"], + "opposition": ["not", "operation"], + "unity": ["one", "rose"], + "nobody": ["anonymous", "empty"], + "none": ["latin", "nun"], + "tent": ["alien", "pitch"], + "seas": ["ease", "see"], + "acknowledging": ["acknowledge", "ignoring"], + "essay": ["editor", "lesson"], + "asset": ["butt", "property"], + "sharp": ["blunt", "blunt"], + "pets": ["animal", "socks"], + "lily": ["flower", "water"], + "try": ["fail", "fight"], + "port": ["village", "water"], + "explore": ["discover", "left"], + "rougher": ["rough", "younger"], + "previous": ["remote", "yesterday"], + "capitalism": ["cash", "system"], + "waste": ["swamp", "toxic"], + "mad": ["mass", "sad"], + "tongues": ["pentecost", "wind"], + "sails": ["david", "sail"], + "punish": ["discipline", "hit"], + "drill": ["battery", "diamond"], + "mud bowl": ["dust bowl", "mud"], + "skid": ["fog", "tire"], + "incorporated": ["company", "latin"], + "collect": ["cap", "gather"], + "no": ["latin", "opposition"], + "division": ["not", "unity"], + "somebody": ["nobody", "time"], + "everything": ["always", "none"], + "out": ["not", "tent"], + "oceans": ["acknowledging", "seas"], + "emptier": ["empty", "wiser"], + "assess": ["asset", "essay"], + "knives": ["pets", "sharp"], + "eden": ["garden", "lily"], + "attempt": ["latin", "try"], + "export": ["explore", "port"], + "tougher": ["previous", "rougher"], + "ending": ["capitalism", "never"], + "want": ["not", "waste"], + "angry": ["latin", "mad"], + "flags": ["sails", "tongues"], + "consequence": ["outcome", "punish"], + "periscope": ["drill", "mirror"], + "danger": ["dust", "warning"], + "super bowl": ["dust bowl", "mud bowl"], + "football": ["mud", "mud bowl"], + "slide": ["plant", "skid"], + "collected": ["collect", "incorporated"], + "yes": ["division", "no"], + "something": ["everything", "somebody"], + "islands": ["oceans", "out"], + "assessment": ["assess", "emptier"], + "knifes": ["knives", "retiring"], + "heaven": ["cloud", "eden"], + "attempted": ["attempt", "done"], + "import": ["admit", "export"], + "enduring": ["ending", "tougher"], + "demand": ["angry", "want"], + "consequences": ["consequence", "flags"], + "engagement": ["diamond", "ring"], + "scope": ["arrow", "periscope"], + "risk": ["danger", "danger"], + "stranger": ["not", "ranger"], + "received": ["message", "never"], + "touchdown": ["football", "super bowl"], + "mist": ["fog", "lawn"], + "filter": ["drain", "paper"], + "decline": ["latin", "slide"], + "hats": ["cap", "collected"], + "agree": ["something", "yes"], + "tests": ["assessment", "islands"], + "angels": ["heaven", "knifes"], + "failed": ["attempted", "mask"], + "endure": ["enduring", "import"], + "require": ["consequences", "demand"], + "proposal": ["beach", "engagement"], + "project": ["risk", "scope"], + "strange": ["physics", "stranger"], + "acknowledged": ["acknowledge", "received"], + "stuck": ["crash", "flypaper"], + "safety": ["danger", "touchdown"], + "pottery": ["clay", "mist"], + "reject": ["decline", "filter"], + "caps": ["agree", "hats"], + "saints": ["angels", "tests"], + "ended": ["endure", "failed"], + "recommend": ["advice", "require"], + "grant": ["project", "proposal"], + "recognized": ["acknowledged", "strange"], + "belt": ["safety", "stuck"], + "vase": ["marsh", "pottery"], + "together": ["date", "salt"], + "tourist": ["shadow", "tour"], + "elder": ["dragon", "time"], + "rejects": ["caps", "reject"], + "ends": ["ended", "saints"], + "recommendation": ["grant", "recommend"], + "noticed": ["belt", "recognized"], + "evidence": ["magnifying glass", "vase"], + "alone": ["not", "together"], + "local": ["not", "tourist"], + "ancient": ["elder", "elder"], + "sends": ["ends", "rejects"], + "notice": ["noticed", "recommendation"], + "suspect": ["alone", "evidence"], + "native": ["ancient", "local"], + "notices": ["notice", "sends"], + "consist": ["persist", "suspect"], + "reservation": ["native", "prison"], + "posters": ["consist", "notices"], + "indian": ["can", "reservation"], + "bollywood": ["indian", "posters"], + "jury": ["flower", "judge"], + "tuxedo": ["marsh", "penguin"], + "trial": ["acid", "jury"], + "healthy": ["damn", "health"], + "gentleman": ["monkey", "tuxedo"], + "diet": ["healthy", "trial"], + "lottery": ["money", "mud"], + "diet coke": ["coke", "explosion"], + "politics": ["gentleman", "system"], + "dietician": ["diet", "latin"], + "diet lotto": ["diet coke", "lottery"], + "anorexia": ["dietician", "politics"], + "anorexic": ["anorexia", "diet lotto"], + "google sky": ["google", "telescope"], + "hula": ["flypaper", "hawaii"], + "fire dance": ["fire", "hula"], + "flamenco": ["continent", "fire dance"], + "flamingo": ["flamenco", "water"], + "pink": ["flamingo", "water"], + "dress": ["fabric", "pink"], + "sandbox": ["engine", "sand"], + "minecraft": ["planet", "sandbox"] }