Puma Mass Renamer + RNG Namer

Manual rename, random rename, prefix/suffix text, remove filter text, persistent settings, sticky panel, auto-open, dark mode

// ==UserScript==
// @name         Puma Mass Renamer + RNG Namer
// @namespace    http://tampermonkey.net/
// @version      6.2
// @description  Manual rename, random rename, prefix/suffix text, remove filter text, persistent settings, sticky panel, auto-open, dark mode
// @match        *://pocketpumapets.com/pride.php*
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';

    const STORAGE_KEY = "pumaRenamerSettings";
    function loadSettings() { return JSON.parse(localStorage.getItem(STORAGE_KEY) || "{}"); }
    function saveSettings() { localStorage.setItem(STORAGE_KEY, JSON.stringify(settings)); }
    let settings = loadSettings();

    // --- Manual rename ---
    function renamePuma(customName) {
        document.querySelectorAll("input.puma_multiselect_rename").forEach(el => {
            el.value = customName;
            el.dispatchEvent(new Event('input', { bubbles: true }));
        });
    }

    // --- Buttons ---
    const manualButton = document.createElement("button");
    manualButton.textContent = "Rename Puma";
    Object.assign(manualButton.style, {
        position: "fixed", top: "10px", right: "10px", zIndex: 10000,
        padding: "8px 12px", backgroundColor: "#ff9800", color: "#fff",
        border: "none", borderRadius: "5px", cursor: "pointer",
        boxShadow: "0 2px 6px rgba(0,0,0,0.2)", marginBottom: "4px"
    });
    manualButton.addEventListener("click", () => {
        const customName = prompt("Enter the new Puma name:");
        if (customName) renamePuma(customName);
    });
    document.body.appendChild(manualButton);

    const randomButton = document.createElement("button");
    randomButton.textContent = "Randomize Pumas";
    Object.assign(randomButton.style, {
        position: "fixed", top: "50px", right: "10px", zIndex: 10000,
        padding: "8px 12px", backgroundColor: "#4caf50", color: "#fff",
        border: "none", borderRadius: "5px", cursor: "pointer",
        boxShadow: "0 2px 6px rgba(0,0,0,0.2)"
    });
    document.body.appendChild(randomButton);

    // --- Control panel ---
    const container = document.createElement("div");
    Object.assign(container.style, {
        position: "fixed", zIndex: 10000,
        backgroundColor: "#fff", padding: "8px", border: "1px solid #ccc",
        borderRadius: "5px", boxShadow: "0 2px 6px rgba(0,0,0,0.2)",
        fontFamily: "sans-serif", maxWidth: "270px", overflow: "visible"
    });

    const header = document.createElement("div");
    header.textContent = "Random Puma Renamer";
    Object.assign(header.style, {
        backgroundColor: "#4caf50", color: "#fff", padding: "4px",
        cursor: "move", borderRadius: "3px", marginBottom: "6px"
    });
    container.appendChild(header);

    // --- Panel position ---
    function setPanelOrigin() {
        const rect = randomButton.getBoundingClientRect();
        container.style.left = rect.left + "px";
        container.style.top = (rect.bottom + 4) + "px";
    }

    if (settings.panelPosition) {
        container.style.left = settings.panelPosition.left;
        container.style.top = settings.panelPosition.top;
    } else {
        setPanelOrigin();
    }

    let offsetX, offsetY, isDragging = false;
    header.addEventListener("mousedown", e => {
        isDragging = true;
        offsetX = e.clientX - container.offsetLeft;
        offsetY = e.clientY - container.offsetTop;
    });
    document.addEventListener("mousemove", e => {
        if (!isDragging) return;
        container.style.left = (e.clientX - offsetX) + "px";
        container.style.top = (e.clientY - offsetY) + "px";
    });
    document.addEventListener("mouseup", () => {
        if (isDragging) {
            settings.panelPosition = {
                left: container.style.left,
                top: container.style.top
            };
            saveSettings();
        }
        isDragging = false;
    });

    // --- UI elements ---
    const wordCountInput = document.createElement("input");
    wordCountInput.type = "number"; wordCountInput.min = 1; wordCountInput.max = 10;
    wordCountInput.value = settings.wordCount || 2;
    wordCountInput.style.width = "40px"; wordCountInput.style.marginRight = "4px";
    const wordCountLabel = document.createElement("span"); wordCountLabel.textContent = "Max words per name: ";

    const randomCheck = document.createElement("input"); randomCheck.type = "checkbox"; randomCheck.checked = settings.randomCheck || false;
    const randomLabel = document.createElement("span"); randomLabel.textContent = "Random word count";

    const filterInput = document.createElement("input");
    filterInput.type = "text"; filterInput.placeholder = "Filter text"; filterInput.value = settings.filterInput || " x ";
    filterInput.style.width = "120px"; filterInput.style.marginRight = "4px";

    const filterCheck = document.createElement("input"); filterCheck.type = "checkbox"; filterCheck.checked = settings.filterCheck || false;
    const filterLabel = document.createElement("span"); filterLabel.textContent = "Use filter";

    const addWordInput = document.createElement("input"); addWordInput.type = "text";
    addWordInput.placeholder = "Add words (word:type|type,...)"; addWordInput.style.width = "200px"; addWordInput.style.marginRight = "4px";
    const addWordButton = document.createElement("button"); addWordButton.textContent = "Add Words";

    const typeContainer = document.createElement("div");
    typeContainer.textContent = "Include types:";
    Object.assign(typeContainer.style, { maxHeight: "120px", overflowY: "auto", border: "1px solid #ccc", padding: "4px", marginBottom: "4px" });

    const selectAllBtn = document.createElement("button"); selectAllBtn.textContent = "Select All";
    const deselectAllBtn = document.createElement("button"); deselectAllBtn.textContent = "Deselect All";
    typeContainer.appendChild(selectAllBtn); typeContainer.appendChild(deselectAllBtn);

    const randomizeButton = document.createElement("button"); randomizeButton.textContent = "Generate Names"; randomizeButton.style.marginTop = "4px";

    // --- Prefix / Suffix / Remove Filter / Dark Mode --- (all intact)
    const prefixInput = document.createElement("input"); prefixInput.type = "text"; prefixInput.placeholder = "Prefix text…"; prefixInput.value = settings.prefixText || ""; prefixInput.style.width = "150px"; prefixInput.style.marginRight = "4px";
    const prefixBtn = document.createElement("button"); prefixBtn.textContent = "Add Prefix";
    prefixBtn.addEventListener("click", () => {
        const txt = prefixInput.value; if(!txt) return;
        document.querySelectorAll("input.puma_multiselect_rename").forEach(el => { el.value = txt + el.value; el.dispatchEvent(new Event('input',{bubbles:true})); });
        settings.prefixText = txt; saveSettings();
    });

    const appendInput = document.createElement("input"); appendInput.type = "text"; appendInput.placeholder = "Suffix text…"; appendInput.value = settings.appendText || ""; appendInput.style.width = "150px"; appendInput.style.marginRight = "4px";
    const appendBtn = document.createElement("button"); appendBtn.textContent = "Add Suffix";
    appendBtn.addEventListener("click", () => {
        const txt = appendInput.value; if(!txt) return;
        document.querySelectorAll("input.puma_multiselect_rename").forEach(el => { el.value += " " + txt; el.dispatchEvent(new Event('input',{bubbles:true})); });
        settings.appendText = txt; saveSettings();
    });

    const removeFilterInput = document.createElement("input"); removeFilterInput.type = "text"; removeFilterInput.placeholder = "Filter to remove…"; removeFilterInput.value = settings.removeFilterText || ""; removeFilterInput.style.width = "150px"; removeFilterInput.style.marginRight = "4px";
    const removeFilterBtn = document.createElement("button"); removeFilterBtn.textContent = "Remove Filter";
    removeFilterBtn.addEventListener("click", () => {
        const filterText = removeFilterInput.value; if(!filterText) return;
        document.querySelectorAll("input.puma_multiselect_rename").forEach(el => {
            const index = el.value.indexOf(filterText); if(index !== -1) el.value = el.value.substring(0,index);
            el.dispatchEvent(new Event('input',{bubbles:true}));
        });
        settings.removeFilterText = filterText; saveSettings();
    });

    const darkModeCheck = document.createElement("input"); darkModeCheck.type = "checkbox"; darkModeCheck.checked = settings.darkMode || false;
    const darkModeLabel = document.createElement("span"); darkModeLabel.textContent = "Dark mode";
    darkModeCheck.addEventListener("change", () => { settings.darkMode = darkModeCheck.checked; saveSettings(); applyDarkMode(); });
    function applyDarkMode() {
        if(settings.darkMode) {
            container.style.backgroundColor="#000"; container.style.color="#fff";
            container.querySelectorAll("input").forEach(inp=>{ inp.style.backgroundColor="#fff"; inp.style.color="#000"; });
        } else {
            container.style.backgroundColor="#fff"; container.style.color="#000";
            container.querySelectorAll("input").forEach(inp=>{ inp.style.backgroundColor="#fff"; inp.style.color="#000"; });
        }
    }

    // --- Close, Reset, Clear Cache ---
    const closeBtn = document.createElement("button"); closeBtn.textContent = "Close";
    closeBtn.addEventListener("click",()=>{ container.style.display="none"; settings.panelOpen=false; saveSettings(); });
    const resetBtn = document.createElement("button"); resetBtn.textContent = "Reset Position";
    resetBtn.addEventListener("click",()=>{ setPanelOrigin(); settings.panelPosition={left:container.style.left, top:container.style.top}; saveSettings(); });
    const clearCacheBtn = document.createElement("button"); clearCacheBtn.textContent="Clear Cache";
    clearCacheBtn.addEventListener("click",()=>{ localStorage.clear(); alert("Local storage cleared!"); });

    // --- Build UI ---
    container.appendChild(wordCountLabel); container.appendChild(wordCountInput); container.appendChild(document.createElement("br"));
    container.appendChild(randomCheck); container.appendChild(randomLabel); container.appendChild(document.createElement("br"));
    container.appendChild(filterCheck); container.appendChild(filterLabel); container.appendChild(filterInput); container.appendChild(document.createElement("br"));
    container.appendChild(addWordInput); container.appendChild(addWordButton);
    container.appendChild(typeContainer);
    container.appendChild(randomizeButton);
    container.appendChild(document.createElement("hr"));
    container.appendChild(prefixInput); container.appendChild(prefixBtn); container.appendChild(document.createElement("br"));
    container.appendChild(appendInput); container.appendChild(appendBtn); container.appendChild(document.createElement("br"));
    container.appendChild(removeFilterInput); container.appendChild(removeFilterBtn); container.appendChild(document.createElement("br"));
    container.appendChild(darkModeCheck); container.appendChild(darkModeLabel); container.appendChild(document.createElement("br"));
    container.appendChild(closeBtn); container.appendChild(resetBtn); container.appendChild(clearCacheBtn);

    document.body.appendChild(container);
    applyDarkMode();

    // --- Persistence for inputs ---
    [wordCountInput, randomCheck, filterInput, filterCheck, appendInput, prefixInput, removeFilterInput, darkModeCheck].forEach(el=>{
        el.addEventListener("input",()=>{
            settings.wordCount=parseInt(wordCountInput.value)||2;
            settings.randomCheck=randomCheck.checked;
            settings.filterInput=filterInput.value;
            settings.filterCheck=filterCheck.checked;
            settings.appendText=appendInput.value;
            settings.prefixText=prefixInput.value;
            settings.removeFilterText=removeFilterInput.value;
            settings.darkMode=darkModeCheck.checked;
            saveSettings();
        });
    });

    // --- Word list (example) ---
    let words = [


        { word: "Agile", type: ["adjectives"] },         { word: "Alert", type: ["adjectives"] },         { word: "Aloof", type: ["adjectives"] },         { word: "Amusing", type: ["adjectives"] },         { word: "Ancient", type: ["adjectives"] },         { word: "Angelic", type: ["adjectives"] },         { word: "Animated", type: ["adjectives"] },         { word: "Anxious", type: ["adjectives"] },         { word: "Apprehensive", type: ["adjectives"] },         { word: "Artistic", type: ["adjectives"] },         { word: "Attentive", type: ["adjectives"] },         { word: "Audacious", type: ["adjectives"] },         { word: "Beautiful", type: ["adjectives"] },         { word: "Beaming", type: ["adjectives"] },         { word: "Bewitching", type: ["adjectives"] },         { word: "Blazing", type: ["adjectives"] },         { word: "Blithe", type: ["adjectives"] },         { word: "Bold", type: ["adjectives"] },         { word: "Bouncy", type: ["adjectives"] },         { word: "Brave", type: ["adjectives"] },         { word: "Breezy", type: ["adjectives"] },         { word: "Bright", type: ["adjectives"] },         { word: "Brisk", type: ["adjectives"] },         { word: "Brooding", type: ["adjectives"] },         { word: "Buoyant", type: ["adjectives"] },         { word: "Busy", type: ["adjectives"] },         { word: "Calm", type: ["adjectives"] },         { word: "Canny", type: ["adjectives"] },         { word: "Capricious", type: ["adjectives"] },         { word: "Caring", type: ["adjectives"] },         { word: "Charming", type: ["adjectives"] },         { word: "Cheerful", type: ["adjectives"] },         { word: "Chic", type: ["adjectives"] },         { word: "Chipper", type: ["adjectives"] },         { word: "Chivalrous", type: ["adjectives"] },         { word: "Clever", type: ["adjectives"] },         { word: "Clumsy", type: ["adjectives"] },         { word: "Coaxing", type: ["adjectives"] },         { word: "Colorful", type: ["adjectives"] },         { word: "Comical", type: ["adjectives"] },         { word: "Confident", type: ["adjectives"] },         { word: "Conniving", type: ["adjectives"] },         { word: "Conscious", type: ["adjectives"] },         { word: "Cool", type: ["adjectives"] },         { word: "Cozy", type: ["adjectives"] },         { word: "Crafty", type: ["adjectives"] },         { word: "Curious", type: ["adjectives"] },         { word: "Cunning", type: ["adjectives"] },         { word: "Dainty", type: ["adjectives"] },         { word: "Dapper", type: ["adjectives"] },         { word: "Daring", type: ["adjectives"] },         { word: "Dazzling", type: ["adjectives"] },         { word: "Dear", type: ["adjectives"] },         { word: "Debonair", type: ["adjectives"] },         { word: "Decisive", type: ["adjectives"] },         { word: "Delightful", type: ["adjectives"] },         { word: "Demure", type: ["adjectives"] },         { word: "Dependable", type: ["adjectives"] },         { word: "Determined", type: ["adjectives"] },         { word: "Devoted", type: ["adjectives"] },         { word: "Dexterous", type: ["adjectives"] },         { word: "Dignified", type: ["adjectives"] },         { word: "Diligent", type: ["adjectives"] },         { word: "Diplomatic", type: ["adjectives"] },         { word: "Distinctive", type: ["adjectives"] },         { word: "Dreamy", type: ["adjectives"] },         { word: "Droll", type: ["adjectives"] },         { word: "Dynamic", type: ["adjectives"] },         { word: "Eager", type: ["adjectives"] },         { word: "Earnest", type: ["adjectives"] },         { word: "Easygoing", type: ["adjectives"] },         { word: "Elegant", type: ["adjectives"] },         { word: "Elfish", type: ["adjectives"] },         { word: "Enchanting", type: ["adjectives"] },         { word: "Energetic", type: ["adjectives"] },         { word: "Entertaining", type: ["adjectives"] },         { word: "Enthusiastic", type: ["adjectives"] },         { word: "Epic", type: ["adjectives"] },         { word: "Erudite", type: ["adjectives"] },         { word: "Exotic", type: ["adjectives"] },         { word: "Expressive", type: ["adjectives"] },         { word: "Extraordinary", type: ["adjectives"] },         { word: "Fabulous", type: ["adjectives"] },         { word: "Fanciful", type: ["adjectives"] },         { word: "Fascinating", type: ["adjectives"] },         { word: "Fast", type: ["adjectives"] },         { word: "Fearless", type: ["adjectives"] },         { word: "Feisty", type: ["adjectives"] },         { word: "Fierce", type: ["adjectives"] },         { word: "Fiery", type: ["adjectives"] },         { word: "Flamboyant", type: ["adjectives"] },         { word: "Flashy", type: ["adjectives"] },         { word: "Flawless", type: ["adjectives"] },         { word: "Flexible", type: ["adjectives"] },         { word: "Fluttering", type: ["adjectives"] },         { word: "Focussed", type: ["adjectives"] },         { word: "Fond", type: ["adjectives"] },         { word: "Forceful", type: ["adjectives"] },         { word: "Forgetful", type: ["adjectives"] },         { word: "Friendly", type: ["adjectives"] },         { word: "Frisky", type: ["adjectives"] },         { word: "Fun", type: ["adjectives"] },         { word: "Funny", type: ["adjectives"] },         { word: "Furry", type: ["adjectives"] },         { word: "Furtive", type: ["adjectives"] },         { word: "Gentle", type: ["adjectives"] },         { word: "Gifted", type: ["adjectives"] },         { word: "Glamorous", type: ["adjectives"] },         { word: "Gleaming", type: ["adjectives"] },         { word: "Gleeful", type: ["adjectives"] },         { word: "Glistening", type: ["adjectives"] },         { word: "Glorious", type: ["adjectives"] },         { word: "Glowing", type: ["adjectives"] },         { word: "Graceful", type: ["adjectives"] },         { word: "Gracious", type: ["adjectives"] },         { word: "Grand", type: ["adjectives"] },         { word: "Gregarious", type: ["adjectives"] },         { word: "Groovy", type: ["adjectives"] },         { word: "Grumpy", type: ["adjectives"] },         { word: "Gullible", type: ["adjectives"] },         { word: "Hardy", type: ["adjectives"] },         { word: "Harmonious", type: ["adjectives"] },         { word: "Hasty", type: ["adjectives"] },         { word: "Heavenly", type: ["adjectives"] },         { word: "Helpful", type: ["adjectives"] },         { word: "Heroic", type: ["adjectives"] },         { word: "Hilarious", type: ["adjectives"] },         { word: "Honorable", type: ["adjectives"] },         { word: "Hopeful", type: ["adjectives"] },         { word: "Humble", type: ["adjectives"] },         { word: "Humorous", type: ["adjectives"] },         { word: "Hungry", type: ["adjectives"] },         { word: "Hyper", type: ["adjectives"] },         { word: "Iconic", type: ["adjectives"] },         { word: "Imaginative", type: ["adjectives"] },         { word: "Imposing", type: ["adjectives"] },         { word: "Independent", type: ["adjectives"] },         { word: "Indignant", type: ["adjectives"] },         { word: "Industrious", type: ["adjectives"] },         { word: "Innocent", type: ["adjectives"] },         { word: "Innovative", type: ["adjectives"] },         { word: "Insightful", type: ["adjectives"] },         { word: "Inspiring", type: ["adjectives"] },         { word: "Intelligent", type: ["adjectives"] },         { word: "Intense", type: ["adjectives"] },         { word: "Interesting", type: ["adjectives"] },         { word: "Intrepid", type: ["adjectives"] },         { word: "Intriguing", type: ["adjectives"] },         { word: "Inventive", type: ["adjectives"] },         { word: "Iridescent", type: ["adjectives"] },         { word: "Irresistible", type: ["adjectives"] },         { word: "Jolly", type: ["adjectives"] },         { word: "Joyful", type: ["adjectives"] },         { word: "Jubilant", type: ["adjectives"] },         { word: "Judicious", type: ["adjectives"] },         { word: "Keen", type: ["adjectives"] },         { word: "Kind", type: ["adjectives"] },         { word: "Klutzy", type: ["adjectives"] },         { word: "Lanky", type: ["adjectives"] },         { word: "Lively", type: ["adjectives"] },         { word: "Lofty", type: ["adjectives"] },         { word: "Lonely", type: ["adjectives"] },         { word: "Loving", type: ["adjectives"] },         { word: "Lucky", type: ["adjectives"] },         { word: "Luminous", type: ["adjectives"] },         { word: "Luxurious", type: ["adjectives"] },         { word: "Magical", type: ["adjectives"] },         { word: "Majestic", type: ["adjectives"] },         { word: "Malleable", type: ["adjectives"] },         { word: "Marvelous", type: ["adjectives"] },         { word: "Mellow", type: ["adjectives"] },         { word: "Mischievous", type: ["adjectives"] },         { word: "Mighty", type: ["adjectives"] },         { word: "Miniature", type: ["adjectives"] },         { word: "Modest", type: ["adjectives"] },         { word: "Motivated", type: ["adjectives"] },         { word: "Mysterious", type: ["adjectives"] },         { word: "Naive", type: ["adjectives"] },         { word: "Nasty", type: ["adjectives"] },         { word: "Naughty", type: ["adjectives"] },         { word: "Neat", type: ["adjectives"] },         { word: "Nifty", type: ["adjectives"] },         { word: "Noble", type: ["adjectives"] },         { word: "Nosy", type: ["adjectives"] },         { word: "Nutty", type: ["adjectives"] },         { word: "Obedient", type: ["adjectives"] },         { word: "Observant", type: ["adjectives"] },         { word: "Odd", type: ["adjectives"] },         { word: "Opulent", type: ["adjectives"] },         { word: "Optimistic", type: ["adjectives"] },         { word: "Ornate", type: ["adjectives"] },         { word: "Outgoing", type: ["adjectives"] },         { word: "Outstanding", type: ["adjectives"] },         { word: "Overconfident", type: ["adjectives"] },         { word: "Passionate", type: ["adjectives"] },         { word: "Patient", type: ["adjectives"] },         { word: "Peaceful", type: ["adjectives"] },         { word: "Perceptive", type: ["adjectives"] },         { word: "Perky", type: ["adjectives"] },         { word: "Persuasive", type: ["adjectives"] },         { word: "Playful", type: ["adjectives"] },         { word: "Pleasant", type: ["adjectives"] },         { word: "Plucky", type: ["adjectives"] },         { word: "Poised", type: ["adjectives"] },         { word: "Polished", type: ["adjectives"] },         { word: "Powerful", type: ["adjectives"] },         { word: "Precious", type: ["adjectives"] },         { word: "Proud", type: ["adjectives"] },         { word: "Prudent", type: ["adjectives"] },         { word: "Punctual", type: ["adjectives"] },         { word: "Quaint", type: ["adjectives"] },         { word: "Quick", type: ["adjectives"] },         { word: "Quiet", type: ["adjectives"] },         { word: "Radiant", type: ["adjectives"] },         { word: "Rambunctious", type: ["adjectives"] },         { word: "Rare", type: ["adjectives"] },         { word: "Rebellious", type: ["adjectives"] },         { word: "Reflective", type: ["adjectives"] },         { word: "Regal", type: ["adjectives"] },         { word: "Relaxed", type: ["adjectives"] },         { word: "Reliable", type: ["adjectives"] },         { word: "Remarkable", type: ["adjectives"] },         { word: "Reserved", type: ["adjectives"] },         { word: "Resilient", type: ["adjectives"] },         { word: "Resourceful", type: ["adjectives"] },         { word: "Respectful", type: ["adjectives"] },         { word: "Responsible", type: ["adjectives"] },         { word: "Rich", type: ["adjectives"] },         { word: "Robust", type: ["adjectives"] },         { word: "Romantic", type: ["adjectives"] },         { word: "Rough", type: ["adjectives"] },         { word: "Rowdy", type: ["adjectives"] },         { word: "Royal", type: ["adjectives"] },         { word: "Rugged", type: ["adjectives"] },         { word: "Rusty", type: ["adjectives"] },         { word: "Sassy", type: ["adjectives"] },         { word: "Saucy", type: ["adjectives"] },         { word: "Savvy", type: ["adjectives"] },         { word: "Scaly", type: ["adjectives"] },         { word: "Scared", type: ["adjectives"] },         { word: "Scrappy", type: ["adjectives"] },         { word: "Scruffy", type: ["adjectives"] },         { word: "Secretive", type: ["adjectives"] },         { word: "Sedate", type: ["adjectives"] },         { word: "Seductive", type: ["adjectives"] },         { word: "Selfish", type: ["adjectives"] },         { word: "Sensational", type: ["adjectives"] },         { word: "Sensitive", type: ["adjectives"] },         { word: "Serene", type: ["adjectives"] },         { word: "Shaggy", type: ["adjectives"] },         { word: "Shimmering", type: ["adjectives"] },         { word: "Shiny", type: ["adjectives"] },         { word: "Short", type: ["adjectives"] },         { word: "Shy", type: ["adjectives"] },         { word: "Silky", type: ["adjectives"] },         { word: "Silvery", type: ["adjectives"] },         { word: "Sincere", type: ["adjectives"] },         { word: "Sleek", type: ["adjectives"] },         { word: "Slick", type: ["adjectives"] },         { word: "Slim", type: ["adjectives"] },         { word: "Slumberous", type: ["adjectives"] },         { word: "Smart", type: ["adjectives"] },         { word: "Smiley", type: ["adjectives"] },         { word: "Snappy", type: ["adjectives"] },         { word: "Snazzy", type: ["adjectives"] },         { word: "Snuggly", type: ["adjectives"] },         { word: "Soft", type: ["adjectives"] },         { word: "Solid", type: ["adjectives"] },         { word: "Sophisticated", type: ["adjectives"] },         { word: "Spunky", type: ["adjectives"] },         { word: "Spotted", type: ["adjectives"] },         { word: "Sprightly", type: ["adjectives"] },         { word: "Spry", type: ["adjectives"] },         { word: "Squirmy", type: ["adjectives"] },         { word: "Stealthy", type: ["adjectives"] },         { word: "Stellar", type: ["adjectives"] },         { word: "Stern", type: ["adjectives"] },         { word: "Sticky", type: ["adjectives"] },         { word: "Striking", type: ["adjectives"] },         { word: "Strong", type: ["adjectives"] },         { word: "Stubborn", type: ["adjectives"] },         { word: "Stunning", type: ["adjectives"] },         { word: "Stylish", type: ["adjectives"] },         { word: "Sublime", type: ["adjectives"] },         { word: "Sultry", type: ["adjectives"] },         { word: "Sunny", type: ["adjectives"] },         { word: "Super", type: ["adjectives"] },         { word: "Sweet", type: ["adjectives"] },         { word: "Swift", type: ["adjectives"] },         { word: "Sympathetic", type: ["adjectives"] },         { word: "Tactful", type: ["adjectives"] },         { word: "Tender", type: ["adjectives"] },         { word: "Tenacious", type: ["adjectives"] },         { word: "Thoughtful", type: ["adjectives"] },         { word: "Thrifty", type: ["adjectives"] },         { word: "Tiny", type: ["adjectives"] },         { word: "Timid", type: ["adjectives"] },         { word: "Tireless", type: ["adjectives"] },         { word: "Tolerant", type: ["adjectives"] },         { word: "Tranquil", type: ["adjectives"] },         { word: "Tremendous", type: ["adjectives"] },         { word: "Tricksy", type: ["adjectives"] },         { word: "Trusting", type: ["adjectives"] },         { word: "Trustworthy", type: ["adjectives"] },         { word: "Twinkling", type: ["adjectives"] },         { word: "Unassuming", type: ["adjectives"] },         { word: "Unique", type: ["adjectives"] },         { word: "Untamed", type: ["adjectives"] },         { word: "Upright", type: ["adjectives"] },         { word: "Valiant", type: ["adjectives"] },         { word: "Vast", type: ["adjectives"] },         { word: "Vibrant", type: ["adjectives"] },         { word: "Vigilant", type: ["adjectives"] },         { word: "Vigorous", type: ["adjectives"] },         { word: "Vile", type: ["adjectives"] },         { word: "Virtuous", type: ["adjectives"] },         { word: "Vivacious", type: ["adjectives"] },         { word: "Warm", type: ["adjectives"] },         { word: "Watchful", type: ["adjectives"] },         { word: "Wavy", type: ["adjectives"] },         { word: "Wealthy", type: ["adjectives"] },         { word: "Whimsical", type: ["adjectives"] },         { word: "Whiskered", type: ["adjectives"] },         { word: "Whopping", type: ["adjectives"] },         { word: "Wild", type: ["adjectives"] },         { word: "Willful", type: ["adjectives"] },         { word: "Wily", type: ["adjectives"] },         { word: "Winsome", type: ["adjectives"] },         { word: "Witty", type: ["adjectives"] },         { word: "Wonderful", type: ["adjectives"] },         { word: "Wondrous", type: ["adjectives"] },         { word: "Wrathful", type: ["adjectives"] },         { word: "Young", type: ["adjectives"] },         { word: "Youthful", type: ["adjectives"] },         { word: "Zealous", type: ["adjectives"] },         { word: "Zesty", type: ["adjectives"] },         { word: "Zippy", type: ["adjectives"] },         { word: "Adorable", type: ["adjectives"] },         { word: "Adventurous", type: ["adjectives"] },         { word: "Aromatic", type: ["adjectives"] },         { word: "Athletic", type: ["adjectives"] },         { word: "Authoritative", type: ["adjectives"] },         { word: "Awkward", type: ["adjectives"] },         { word: "Bashful", type: ["adjectives"] },         { word: "Bewildered", type: ["adjectives"] },         { word: "Blunt", type: ["adjectives"] },         { word: "Boisterous", type: ["adjectives"] },         { word: "Bossy", type: ["adjectives"] },         { word: "Brainy", type: ["adjectives"] },         { word: "Bubbly", type: ["adjectives"] },         { word: "Busybody", type: ["adjectives"] },         { word: "Calmhearted", type: ["adjectives"] },         { word: "Captivating", type: ["adjectives"] },         { word: "Carefree", type: ["adjectives"] },         { word: "Catlike", type: ["adjectives"] },         { word: "Celestial", type: ["adjectives"] },         { word: "Commanding", type: ["adjectives"] },         { word: "Composed", type: ["adjectives"] },         { word: "Compassionate", type: ["adjectives"] },         { word: "Compelling", type: ["adjectives"] },         { word: "Conceited", type: ["adjectives"] },         { word: "Considerate", type: ["adjectives"] },         { word: "Convivial", type: ["adjectives"] },         { word: "Courageous", type: ["adjectives"] },         { word: "Creative", type: ["adjectives"] },         { word: "Cuddly", type: ["adjectives"] },         { word: "Deceptive", type: ["adjectives"] },         { word: "Dominant", type: ["adjectives"] },         { word: "Eccentric", type: ["adjectives"] },         { word: "Eerie", type: ["adjectives"] },         { word: "Eloquent", type: ["adjectives"] },         { word: "Emphatic", type: ["adjectives"] },         { word: "Endearing", type: ["adjectives"] },         { word: "Envious", type: ["adjectives"] },         { word: "Fastfooted", type: ["adjectives"] },         { word: "Funloving", type: ["adjectives"] },         { word: "Gallant", type: ["adjectives"] },         { word: "Generous", type: ["adjectives"] },         { word: "Abaddon", type: ["angel"] },         { word: "Abiel", type: ["angel"] },         { word: "Abinadiel", type: ["angel"] },         { word: "Adnachiel", type: ["angel"] },         { word: "Adriel", type: ["angel"] },         { word: "Aela", type: ["angel"] },         { word: "Aeliana", type: ["angel"] },         { word: "Aeliel", type: ["angel"] },         { word: "Aethon", type: ["angel"] },         { word: "Agares", type: ["angel"] },         { word: "Akriel", type: ["angel"] },         { word: "Aladiah", type: ["angel"] },         { word: "Alariel", type: ["angel"] },         { word: "Alastor", type: ["angel"] },         { word: "Alathiel", type: ["angel"] },         { word: "Albeon", type: ["angel"] },         { word: "Alchemiel", type: ["angel"] },         { word: "Alephiel", type: ["angel"] },         { word: "Aleron", type: ["angel"] },         { word: "Aliel", type: ["angel"] },         { word: "Alkon", type: ["angel"] },         { word: "Almiel", type: ["angel"] },         { word: "Alphaniel", type: ["angel"] },         { word: "Amadiel", type: ["angel"] },         { word: "Amariah", type: ["angel"] },         { word: "Ambriel", type: ["angel"] },         { word: "Ametiel", type: ["angel"] },         { word: "Amiel", type: ["angel"] },         { word: "Anael", type: ["angel"] },         { word: "Anahiel", type: ["angel"] },         { word: "Ananiah", type: ["angel"] },         { word: "Ananiel", type: ["angel"] },         { word: "Anaphiel", type: ["angel"] },         { word: "Aniel", type: ["angel"] },         { word: "Anio", type: ["angel"] },         { word: "Anoniel", type: ["angel"] },         { word: "Ansiel", type: ["angel"] },         { word: "Antiel", type: ["angel"] },         { word: "Apollyon", type: ["angel"] },         { word: "Araciel", type: ["angel"] },         { word: "Aradiel", type: ["angel"] },         { word: "Aranel", type: ["angel"] },         { word: "Arcadiel", type: ["angel"] },         { word: "Archiel", type: ["angel"] },         { word: "Ardamiel", type: ["angel"] },         { word: "Ardon", type: ["angel"] },         { word: "Areli", type: ["angel"] },         { word: "Arelium", type: ["angel"] },         { word: "Arethiel", type: ["angel"] },         { word: "Ariel", type: ["angel"] },         { word: "Arimiel", type: ["angel"] },         { word: "Arion", type: ["angel"] },         { word: "Aristael", type: ["angel"] },         { word: "Arithiel", type: ["angel"] },         { word: "Arkiel", type: ["angel"] },         { word: "Armiel", type: ["angel"] },         { word: "Arphiel", type: ["angel"] },         { word: "Arsal", type: ["angel"] },         { word: "Asadiel", type: ["angel"] },         { word: "Asariel", type: ["angel"] },         { word: "Asiel", type: ["angel"] },         { word: "Asmodel", type: ["angel"] },         { word: "Astiel", type: ["angel"] },         { word: "Atariel", type: ["angel"] },         { word: "Athiel", type: ["angel"] },         { word: "Atriel", type: ["angel"] },         { word: "Audriel", type: ["angel"] },         { word: "Auriel", type: ["angel"] },         { word: "Azrael", type: ["angel"] },         { word: "Azuriel", type: ["angel"] },         { word: "Baaliel", type: ["angel"] },         { word: "Barchiel", type: ["angel"] },         { word: "Bariel", type: ["angel"] },         { word: "Batiel", type: ["angel"] },         { word: "Cassiel", type: ["angel"] },         { word: "Camael", type: ["angel"] },         { word: "Chamuel", type: ["angel"] },         { word: "Chariel", type: ["angel"] },         { word: "Chaviel", type: ["angel"] },         { word: "Chesediel", type: ["angel"] },         { word: "Cherniel", type: ["angel"] },         { word: "Ciel", type: ["angel"] },         { word: "Cioniel", type: ["angel"] },         { word: "Coriel", type: ["angel"] },         { word: "Dabria", type: ["angel"] },         { word: "Danel", type: ["angel"] },         { word: "Daniel", type: ["angel"] },         { word: "Dariel", type: ["angel"] },         { word: "Dathaniel", type: ["angel"] },         { word: "Deliel", type: ["angel"] },         { word: "Demiel", type: ["angel"] },         { word: "Denael", type: ["angel"] },         { word: "Deriel", type: ["angel"] },         { word: "Devriel", type: ["angel"] },         { word: "Diniel", type: ["angel"] },         { word: "Diviel", type: ["angel"] },         { word: "Edraniel", type: ["angel"] },         { word: "Eeliel", type: ["angel"] },         { word: "Efrael", type: ["angel"] },         { word: "Ehudiel", type: ["angel"] },         { word: "Eithaniel", type: ["angel"] },         { word: "Elais", type: ["angel"] },         { word: "Eladiel", type: ["angel"] },         { word: "Elahiel", type: ["angel"] },         { word: "Elamiel", type: ["angel"] },         { word: "Elaniel", type: ["angel"] },         { word: "Elariel", type: ["angel"] },         { word: "Elathiel", type: ["angel"] },         { word: "Elediel", type: ["angel"] },         { word: "Eleiel", type: ["angel"] },         { word: "Eleniel", type: ["angel"] },         { word: "Eleriel", type: ["angel"] },         { word: "Eliel", type: ["angel"] },         { word: "Elimiel", type: ["angel"] },         { word: "Elion", type: ["angel"] },         { word: "Elisiel", type: ["angel"] },         { word: "Elithiel", type: ["angel"] },         { word: "Eliziel", type: ["angel"] },         { word: "Elliel", type: ["angel"] },         { word: "Elriel", type: ["angel"] },         { word: "Eltiel", type: ["angel"] },         { word: "Eluniel", type: ["angel"] },         { word: "Elyon", type: ["angel"] },         { word: "Elyriel", type: ["angel"] },         { word: "Emiel", type: ["angel"] },         { word: "Emmaniel", type: ["angel"] },         { word: "Eniel", type: ["angel"] },         { word: "Enosiel", type: ["angel"] },         { word: "Ephiel", type: ["angel"] },         { word: "Eremiel", type: ["angel"] },         { word: "Erthiel", type: ["angel"] },         { word: "Esdrael", type: ["angel"] },         { word: "Eshiel", type: ["angel"] },         { word: "Esiel", type: ["angel"] },         { word: "Estiel", type: ["angel"] },         { word: "Eteriel", type: ["angel"] },         { word: "Etiel", type: ["angel"] },         { word: "Evariel", type: ["angel"] },         { word: "Evriel", type: ["angel"] },         { word: "Ezrael", type: ["angel"] },         { word: "Fabianiel", type: ["angel"] },         { word: "Fadriel", type: ["angel"] },         { word: "Faniel", type: ["angel"] },         { word: "Fariel", type: ["angel"] },         { word: "Faroniel", type: ["angel"] },         { word: "Fathiel", type: ["angel"] },         { word: "Febriel", type: ["angel"] },         { word: "Feliel", type: ["angel"] },         { word: "Feniel", type: ["angel"] },         { word: "Fenririel", type: ["angel"] },         { word: "Ferial", type: ["angel"] },         { word: "Fiel", type: ["angel"] },         { word: "Filiel", type: ["angel"] },         { word: "Firiel", type: ["angel"] },         { word: "Flaviel", type: ["angel"] },         { word: "Foriel", type: ["angel"] },         { word: "Galadiel", type: ["angel"] },         { word: "Gabrial", type: ["angel"] },         { word: "Gabriel", type: ["angel"] },         { word: "Gadriel", type: ["angel"] },         { word: "Gamiel", type: ["angel"] },         { word: "Gariel", type: ["angel"] },         { word: "Gavriel", type: ["angel"] },         { word: "Gethiel", type: ["angel"] },         { word: "Giliel", type: ["angel"] },         { word: "Gimiel", type: ["angel"] },         { word: "Griel", type: ["angel"] },         { word: "Hadraniel", type: ["angel"] },         { word: "Hadriel", type: ["angel"] },         { word: "Hamiel", type: ["angel"] },         { word: "Haniel", type: ["angel"] },         { word: "Hariel", type: ["angel"] },         { word: "Hashiel", type: ["angel"] },         { word: "Haziel", type: ["angel"] },         { word: "Helel", type: ["angel"] },         { word: "Hemaniel", type: ["angel"] },         { word: "Hesperiel", type: ["angel"] },         { word: "Hiramiel", type: ["angel"] },         { word: "Hodiel", type: ["angel"] },         { word: "Hosiel", type: ["angel"] },         { word: "Hurel", type: ["angel"] },         { word: "Huriel", type: ["angel"] },         { word: "Iadiel", type: ["angel"] },         { word: "Iahiel", type: ["angel"] },         { word: "Iarael", type: ["angel"] },         { word: "Icariel", type: ["angel"] },         { word: "Iddiel", type: ["angel"] },         { word: "Iehael", type: ["angel"] },         { word: "Ieliel", type: ["angel"] },         { word: "Ieriel", type: ["angel"] },         { word: "Ihiel", type: ["angel"] },         { word: "Imiel", type: ["angel"] },         { word: "Iniel", type: ["angel"] },         { word: "Ioel", type: ["angel"] },         { word: "Iriel", type: ["angel"] },         { word: "Israfel", type: ["angel"] },         { word: "Ithiel", type: ["angel"] },         { word: "Ivriel", type: ["angel"] },         { word: "Izeliel", type: ["angel"] },         { word: "Jahael", type: ["angel"] },         { word: "Jahziel", type: ["angel"] },         { word: "Janiel", type: ["angel"] },         { word: "Jarel", type: ["angel"] },         { word: "Jashiel", type: ["angel"] },         { word: "Jathiel", type: ["angel"] },         { word: "Jeziel", type: ["angel"] },         { word: "Jophiel", type: ["angel"] },         { word: "Josiel", type: ["angel"] },         { word: "Jubiel", type: ["angel"] },         { word: "Jurel", type: ["angel"] },         { word: "Kadiel", type: ["angel"] },         { word: "Kafziel", type: ["angel"] },         { word: "Kamiel", type: ["angel"] },         { word: "Kariel", type: ["angel"] },         { word: "Kassiel", type: ["angel"] },         { word: "Katriel", type: ["angel"] },         { word: "Kephiel", type: ["angel"] },         { word: "Keriel", type: ["angel"] },         { word: "Keturiel", type: ["angel"] },         { word: "Kiriel", type: ["angel"] },         { word: "Koziel", type: ["angel"] },         { word: "Lahael", type: ["angel"] },         { word: "Lahashiel", type: ["angel"] },         { word: "Lamiel", type: ["angel"] },         { word: "Laniiel", type: ["angel"] },         { word: "Lariel", type: ["angel"] },         { word: "Lasiel", type: ["angel"] },         { word: "Lathiel", type: ["angel"] },         { word: "Lauriel", type: ["angel"] },         { word: "Laviel", type: ["angel"] },         { word: "Lehadiel", type: ["angel"] },         { word: "Lehiel", type: ["angel"] },         { word: "Lemiel", type: ["angel"] },         { word: "Leoniel", type: ["angel"] },         { word: "Leriel", type: ["angel"] },         { word: "Letiel", type: ["angel"] },         { word: "Liel", type: ["angel"] },         { word: "Ligiel", type: ["angel"] },         { word: "Liliel", type: ["angel"] },         { word: "Liriel", type: ["angel"] },         { word: "Lisiel", type: ["angel"] },         { word: "Litiel", type: ["angel"] },         { word: "Lothiel", type: ["angel"] },         { word: "Luciel", type: ["angel"] },         { word: "Lucifer", type: ["angel"] },         { word: "Ludiel", type: ["angel"] },         { word: "Lumiel", type: ["angel"] },         { word: "Lyriel", type: ["angel"] },         { word: "Mael", type: ["angel"] },         { word: "Maeliel", type: ["angel"] },         { word: "Mahiel", type: ["angel"] },         { word: "Malachiel", type: ["angel"] },         { word: "Maliel", type: ["angel"] },         { word: "Malthiel", type: ["angel"] },         { word: "Maniel", type: ["angel"] },         { word: "Mariel", type: ["angel"] },         { word: "Matiel", type: ["angel"] },         { word: "Meleiel", type: ["angel"] },         { word: "Meliel", type: ["angel"] },         { word: "Menadel", type: ["angel"] },         { word: "Meriel", type: ["angel"] },         { word: "Metatron", type: ["angel"] },         { word: "Micael", type: ["angel"] },         { word: "Michael", type: ["angel"] },         { word: "Mikael", type: ["angel"] },         { word: "Mikiel", type: ["angel"] },         { word: "Miniel", type: ["angel"] },         { word: "Miriel", type: ["angel"] },         { word: "Misael", type: ["angel"] },         { word: "Mizrael", type: ["angel"] },         { word: "Nael", type: ["angel"] },         { word: "Nadiriel", type: ["angel"] },         { word: "Nahumiel", type: ["angel"] },         { word: "Naiel", type: ["angel"] },         { word: "Naliel", type: ["angel"] },         { word: "Nariel", type: ["angel"] },         { word: "Nathanael", type: ["angel"] },         { word: "Nemamiah", type: ["angel"] },         { word: "Neriel", type: ["angel"] },         { word: "Neshiel", type: ["angel"] },         { word: "Nethiel", type: ["angel"] },         { word: "Neziel", type: ["angel"] },         { word: "Niel", type: ["angel"] },         { word: "Nisiel", type: ["angel"] },         { word: "Nithiel", type: ["angel"] },         { word: "Noamiel", type: ["angel"] },         { word: "Noel", type: ["angel"] },         { word: "Nophiel", type: ["angel"] },         { word: "Nuriel", type: ["angel"] },         { word: "Obadiel", type: ["angel"] },         { word: "Odraniel", type: ["angel"] },         { word: "Oel", type: ["angel"] },         { word: "Ofaniel", type: ["angel"] },         { word: "Oriel", type: ["angel"] },         { word: "Oriphiel", type: ["angel"] },         { word: "Ornel", type: ["angel"] },         { word: "Othniel", type: ["angel"] },         { word: "Oziel", type: ["angel"] },         { word: "Pahiel", type: ["angel"] },         { word: "Paniel", type: ["angel"] },         { word: "Pariel", type: ["angel"] },         { word: "Pasiel", type: ["angel"] },         { word: "Patriel", type: ["angel"] },         { word: "Peniel", type: ["angel"] },         { word: "Periel", type: ["angel"] },         { word: "Phanuel", type: ["angel"] },         { word: "Pharel", type: ["angel"] },         { word: "Phiel", type: ["angel"] },         { word: "Priel", type: ["angel"] },         { word: "Puriel", type: ["angel"] },         { word: "Qadiel", type: ["angel"] },         { word: "Qaphiel", type: ["angel"] },         { word: "Rafael", type: ["angel"] },         { word: "Raguel", type: ["angel"] },         { word: "Rahmiel", type: ["angel"] },         { word: "Ramiel", type: ["angel"] },         { word: "Raphaiel", type: ["angel"] },         { word: "Raziel", type: ["angel"] },         { word: "Remiel", type: ["angel"] },         { word: "Reuel", type: ["angel"] },         { word: "Riel", type: ["angel"] },         { word: "Rufael", type: ["angel"] },         { word: "Sachiel", type: ["angel"] },         { word: "Sabriel", type: ["angel"] },         { word: "Sahael", type: ["angel"] },         { word: "Sahiel", type: ["angel"] },         { word: "Samiel", type: ["angel"] },         { word: "Samuel", type: ["angel"] },         { word: "Sariel", type: ["angel"] },         { word: "Sassiel", type: ["angel"] },         { word: "Satiel", type: ["angel"] },         { word: "Saviel", type: ["angel"] },         { word: "Sealtiel", type: ["angel"] },         { word: "Seliel", type: ["angel"] },         { word: "Seraphiel", type: ["angel"] },         { word: "Shadiel", type: ["angel"] },         { word: "Shaltiel", type: ["angel"] },         { word: "Shaphiel", type: ["angel"] },         { word: "Shaviel", type: ["angel"] },         { word: "Shealtiel", type: ["angel"] },         { word: "Shemiel", type: ["angel"] },         { word: "Shimiel", type: ["angel"] },         { word: "Shomiel", type: ["angel"] },         { word: "Shuriel", type: ["angel"] },         { word: "Simiel", type: ["angel"] },         { word: "Sitael", type: ["angel"] },         { word: "Sofiel", type: ["angel"] },         { word: "Sophiiel", type: ["angel"] },         { word: "Suriel", type: ["angel"] },         { word: "Taboriel", type: ["angel"] },         { word: "Tahliel", type: ["angel"] },         { word: "Tahmiel", type: ["angel"] },         { word: "Tanael", type: ["angel"] },         { word: "Taphiel", type: ["angel"] },         { word: "Tariel", type: ["angel"] },         { word: "Tehiel", type: ["angel"] },         { word: "Temiel", type: ["angel"] },         { word: "Teriel", type: ["angel"] },         { word: "Thariel", type: ["angel"] },         { word: "Thoniel", type: ["angel"] },         { word: "Tzadkiel", type: ["angel"] },         { word: "Uriel", type: ["angel"] },         { word: "Uzziel", type: ["angel"] },         { word: "Vachel", type: ["angel"] },         { word: "Vahriel", type: ["angel"] },         { word: "Valiel", type: ["angel"] },         { word: "Vardiel", type: ["angel"] },         { word: "Variel", type: ["angel"] },         { word: "Vehuiah", type: ["angel"] },         { word: "Verchiel", type: ["angel"] },         { word: "Vihuel", type: ["angel"] },         { word: "Vrael", type: ["angel"] },         { word: "Vurel", type: ["angel"] },         { word: "Xabriel", type: ["angel"] },         { word: "Xadiel", type: ["angel"] },         { word: "Xaphiel", type: ["angel"] },         { word: "Xeriel", type: ["angel"] },         { word: "Yael", type: ["angel"] },         { word: "Yahoel", type: ["angel"] },         { word: "Yakiel", type: ["angel"] },         { word: "Yarel", type: ["angel"] },         { word: "Yezriel", type: ["angel"] },         { word: "Yohiel", type: ["angel"] },         { word: "Yofiel", type: ["angel"] },         { word: "Zachariel", type: ["angel"] },         { word: "Zadkiel", type: ["angel"] },         { word: "Zafkiel", type: ["angel"] },         { word: "Zahariel", type: ["angel"] },         { word: "Zaliel", type: ["angel"] },         { word: "Zaphiel", type: ["angel"] },         { word: "Zariel", type: ["angel"] },         { word: "Zephaniel", type: ["angel"] },         { word: "Zerachiel", type: ["angel"] },         { word: "Zeriel", type: ["angel"] },         { word: "Zophiel", type: ["angel"] },         { word: "Zuriel", type: ["angel"] },         { word: "Abariel", type: ["angel"] },         { word: "Abiriel", type: ["angel"] },         { word: "Achiel", type: ["angel"] },         { word: "Adariel", type: ["angel"] },         { word: "Adoniel", type: ["angel"] },         { word: "Aelion", type: ["angel"] },         { word: "Agiel", type: ["angel"] },         { word: "Ahadiel", type: ["angel"] },         { word: "Ahariel", type: ["angel"] },         { word: "Ahaziel", type: ["angel"] },         { word: "Ahiel", type: ["angel"] },         { word: "Ahiuel", type: ["angel"] },         { word: "Ahrimaniel", type: ["angel"] },         { word: "Akabiel", type: ["angel"] },         { word: "Akramiel", type: ["angel"] },         { word: "Aladiel", type: ["angel"] },         { word: "Alamiel", type: ["angel"] },         { word: "Alarion", type: ["angel"] },         { word: "Alephion", type: ["angel"] },         { word: "Alerion", type: ["angel"] },         { word: "Alhaniel", type: ["angel"] },         { word: "Alielion", type: ["angel"] },         { word: "Alkahiel", type: ["angel"] },         { word: "Alomiel", type: ["angel"] }, 	        { word: "Althiel", type: ["angel"] },         { word: "Amadion", type: ["angel"] },         { word: "Amariiel", type: ["angel"] },         { word: "Amathiel", type: ["angel"] },         { word: "Ambrielion", type: ["angel"] },         { word: "Amielion", type: ["angel"] },         { word: "Anabiel", type: ["angel"] },         { word: "Anachel", type: ["angel"] },         { word: "Anadel", type: ["angel"] },         { word: "Anagiel", type: ["angel"] },         { word: "Ananion", type: ["angel"] },         { word: "Anaphel", type: ["angel"] },         { word: "Anaphion", type: ["angel"] },         { word: "Anariel", type: ["angel"] },         { word: "Anathiel", type: ["angel"] },         { word: "Anaviel", type: ["angel"] },         { word: "Andiel", type: ["angel"] },         { word: "Anelion", type: ["angel"] },         { word: "Anielion", type: ["angel"] },         { word: "Anisiel", type: ["angel"] },         { word: "Anonion", type: ["angel"] },         { word: "Ansielion", type: ["angel"] },         { word: "Anthoniel", type: ["angel"] },         { word: "Anviel", type: ["angel"] },         { word: "Anziel", type: ["angel"] },         { word: "Aphielion", type: ["angel"] },         { word: "Apollion", type: ["angel"] },         { word: "Arachel", type: ["angel"] },         { word: "Aradion", type: ["angel"] },         { word: "Aradioniel", type: ["angel"] },         { word: "Araliel", type: ["angel"] },         { word: "Aranielion", type: ["angel"] },         { word: "Arariel", type: ["angel"] },         { word: "Arathiel", type: ["angel"] },         { word: "Arbiel", type: ["angel"] },         { word: "Archaniel", type: ["angel"] },         { word: "Archelion", type: ["angel"] },         { word: "Archielion", type: ["angel"] },         { word: "Ardiel", type: ["angel"] },         { word: "Arebiel", type: ["angel"] },         { word: "Arelion", type: ["angel"] },         { word: "Arethion", type: ["angel"] },         { word: "Argiel", type: ["angel"] },         { word: "Arhaniel", type: ["angel"] },         { word: "Arioniel", type: ["angel"] },         { word: "Aristiel", type: ["angel"] },         { word: "Arithion", type: ["angel"] },         { word: "Ariziel", type: ["angel"] },         { word: "Arkielion", type: ["angel"] },         { word: "Arliel", type: ["angel"] },         { word: "Armielion", type: ["angel"] },         { word: "Arniel", type: ["angel"] },         { word: "Arphielion", type: ["angel"] },         { word: "Arthaliel", type: ["angel"] },         { word: "Arthaniel", type: ["angel"] },         { word: "Artielion", type: ["angel"] },         { word: "Arumiel", type: ["angel"] },         { word: "Arviel", type: ["angel"] },         { word: "Aryel", type: ["angel"] },         { word: "Asadion", type: ["angel"] },         { word: "Asadielion", type: ["angel"] },         { word: "Asarion", type: ["angel"] },         { word: "Asarielion", type: ["angel"] },         { word: "Aschiel", type: ["angel"] },         { word: "Ashielion", type: ["angel"] },         { word: "Asielion", type: ["angel"] },         { word: "Asmodelion", type: ["angel"] },         { word: "Astelion", type: ["angel"] },         { word: "Asthiel", type: ["angel"] },         { word: "Asuriel", type: ["angel"] },         { word: "Atarion", type: ["angel"] },         { word: "Athariel", type: ["angel"] },         { word: "Athion", type: ["angel"] },         { word: "Athrielion", type: ["angel"] },         { word: "Atrielion", type: ["angel"] },         { word: "Audrielion", type: ["angel"] },         { word: "Aurelion", type: ["angel"] },         { word: "Aurielion", type: ["angel"] },         { word: "Azadiel", type: ["angel"] },         { word: "Azariel", type: ["angel"] },         { word: "Bacael", type: ["angel"] },         { word: "Bacriel", type: ["angel"] },         { word: "Badrion", type: ["angel"] },         { word: "Bahariel", type: ["angel"] },         { word: "Barachiel", type: ["angel"] },         { word: "Baraqiel", type: ["angel"] },         { word: "Basiel", type: ["angel"] },         { word: "Bayriel", type: ["angel"] },         { word: "Behael", type: ["angel"] },         { word: "Beliel", type: ["angel"] },         { word: "Beniel", type: ["angel"] },         { word: "Beriel", type: ["angel"] },         { word: "Bethiel", type: ["angel"] },         { word: "Biadel", type: ["angel"] },         { word: "Briel", type: ["angel"] },         { word: "Brioniel", type: ["angel"] },         { word: "Broel", type: ["angel"] },         { word: "Bryiel", type: ["angel"] },         { word: "Cabriel", type: ["angel"] },         { word: "Cadiel", type: ["angel"] },         { word: "Caeliel", type: ["angel"] },         { word: "Cahliel", type: ["angel"] },         { word: "Caliel", type: ["angel"] },         { word: "Camiel", type: ["angel"] },         { word: "Caniel", type: ["angel"] },         { word: "Capriel", type: ["angel"] },         { word: "Cariel", type: ["angel"] },         { word: "Caziel", type: ["angel"] },         { word: "Cedriel", type: ["angel"] },         { word: "Celiel", type: ["angel"] },         { word: "Charael", type: ["angel"] },         { word: "Chesiel", type: ["angel"] },         { word: "Cieliel", type: ["angel"] },         { word: "Dabrion", type: ["angel"] },         { word: "Daciel", type: ["angel"] },         { word: "Dadariel", type: ["angel"] },         { word: "Dagael", type: ["angel"] },         { word: "Dahriel", type: ["angel"] },         { word: "Dakael", type: ["angel"] },         { word: "Daliel", type: ["angel"] },         { word: "Damiel", type: ["angel"] },         { word: "Daphiel", type: ["angel"] },         { word: "Dauriel", type: ["angel"] },         { word: "Daviel", type: ["angel"] },         { word: "Dayriel", type: ["angel"] },         { word: "Deniel", type: ["angel"] },         { word: "Deviel", type: ["angel"] },         { word: "Dhael", type: ["angel"] },         { word: "Dieliel", type: ["angel"] },         { word: "Dobiel", type: ["angel"] },         { word: "Doriel", type: ["angel"] },         { word: "Drael", type: ["angel"] },         { word: "Drakiel", type: ["angel"] },         { word: "Drianiel", type: ["angel"] },         { word: "Duliel", type: ["angel"] },         { word: "Dvriel", type: ["angel"] },         { word: "Eadriel", type: ["angel"] },         { word: "Ealiel", type: ["angel"] },         { word: "Ebaniel", type: ["angel"] },         { word: "Eberiel", type: ["angel"] },         { word: "Echel", type: ["angel"] },         { word: "Edriel", type: ["angel"] },         { word: "Efriel", type: ["angel"] },         { word: "Ehiel", type: ["angel"] },         { word: "Eiel", type: ["angel"] },         { word: "Eiliel", type: ["angel"] },         { word: "Eiraniel", type: ["angel"] },         { word: "Eitriel", type: ["angel"] },         { word: "Emadiel", type: ["angel"] },         { word: "Enadiel", type: ["angel"] },         { word: "Baeliel", type: ["angel"] },         { word: "Alura", type: ["angel"] },         { word: "Anara", type: ["angel"] },         { word: "Arisiel", type: ["angel"] },         { word: "Asriel", type: ["angel"] },         { word: "Azara", type: ["angel"] },         { word: "Baelith", type: ["angel"] },         { word: "Caelith", type: ["angel"] },         { word: "Calira", type: ["angel"] },         { word: "Cielia", type: ["angel"] },         { word: "Daelith", type: ["angel"] },         { word: "Delara", type: ["angel"] },         { word: "Elara", type: ["angel"] },         { word: "Elethiel", type: ["angel"] },         { word: "Elithia", type: ["angel"] },         { word: "Elyra", type: ["angel"] },         { word: "Emriel", type: ["angel"] },         { word: "Enara", type: ["angel"] },         { word: "Erelia", type: ["angel"] },         { word: "Erion", type: ["angel"] },         { word: "Eryndel", type: ["angel"] },         { word: "Faelith", type: ["angel"] },         { word: "Falora", type: ["angel"] },         { word: "Faria", type: ["angel"] },         { word: "Galiel", type: ["angel"] },         { word: "Galora", type: ["angel"] },         { word: "Isara", type: ["angel"] },         { word: "Ishiel", type: ["angel"] },         { word: "Irielle", type: ["angel"] },         { word: "Irion", type: ["angel"] },         { word: "Ivara", type: ["angel"] },         { word: "Jaelith", type: ["angel"] },         { word: "Jariel", type: ["angel"] },         { word: "Joriel", type: ["angel"] },         { word: "Kaelith", type: ["angel"] },         { word: "Kalira", type: ["angel"] },         { word: "Keiriel", type: ["angel"] },         { word: "Kyriel", type: ["angel"] },         { word: "Laeriel", type: ["angel"] },         { word: "Laira", type: ["angel"] },         { word: "Lania", type: ["angel"] },         { word: "Lareth", type: ["angel"] },         { word: "Leiriel", type: ["angel"] },         { word: "Lenora", type: ["angel"] },         { word: "Lioriel", type: ["angel"] },         { word: "Lisara", type: ["angel"] },         { word: "Lorian", type: ["angel"] },         { word: "Maelith", type: ["angel"] },         { word: "Malira", type: ["angel"] },         { word: "Mavia", type: ["angel"] },         { word: "Meiriel", type: ["angel"] },         { word: "Miara", type: ["angel"] },         { word: "Mielith", type: ["angel"] },         { word: "Myriel", type: ["angel"] },         { word: "Naelith", type: ["angel"] },         { word: "Naria", type: ["angel"] },         { word: "Nathiel", type: ["angel"] },         { word: "Niara", type: ["angel"] },         { word: "Noelith", type: ["angel"] },         { word: "Noriel", type: ["angel"] },         { word: "Nyriel", type: ["angel"] },         { word: "Orael", type: ["angel"] },         { word: "Osriel", type: ["angel"] },         { word: "Paelith", type: ["angel"] },         { word: "Phaelia", type: ["angel"] },         { word: "Phariel", type: ["angel"] },         { word: "Quariel", type: ["angel"] },         { word: "Quelira", type: ["angel"] },         { word: "Raelith", type: ["angel"] },         { word: "Rania", type: ["angel"] },         { word: "Rariel", type: ["angel"] },         { word: "Rayel", type: ["angel"] },         { word: "Saelith", type: ["angel"] },         { word: "Selira", type: ["angel"] },         { word: "Seriel", type: ["angel"] },         { word: "Sharia", type: ["angel"] },         { word: "Shielith", type: ["angel"] },         { word: "Sirael", type: ["angel"] },         { word: "Syrial", type: ["angel"] },         { word: "Taelith", type: ["angel"] },         { word: "Taria", type: ["angel"] },         { word: "Tauriel", type: ["angel"] },         { word: "Thyriel", type: ["angel"] },         { word: "Valira", type: ["angel"] },         { word: "Varel", type: ["angel"] },         { word: "Veiriel", type: ["angel"] },         { word: "Velora", type: ["angel"] },         { word: "Veriel", type: ["angel"] },         { word: "Veyra", type: ["angel"] },         { word: "Vionel", type: ["angel"] },         { word: "Vyriel", type: ["angel"] },         { word: "Waelith", type: ["angel"] },         { word: "Waria", type: ["angel"] },         { word: "Xaria", type: ["angel"] },         { word: "Xeliel", type: ["angel"] },         { word: "Xyriel", type: ["angel"] },         { word: "Yaelith", type: ["angel"] },         { word: "Yariel", type: ["angel"] },         { word: "Yriel", type: ["angel"] },         { word: "Zaelith", type: ["angel"] },         { word: "Zaria", type: ["angel"] },         { word: "Zoriel", type: ["angel"] },         { word: "Abriel", type: ["angel"] },         { word: "Aciel", type: ["angel"] },         { word: "Aeriel", type: ["angel"] },         { word: "Amriel", type: ["angel"] },         { word: "Andriel", type: ["angel"] },         { word: "Arciel", type: ["angel"] },         { word: "Ardelia", type: ["angel"] },         { word: "Arthea", type: ["angel"] },         { word: "Aseliel", type: ["angel"] },         { word: "Avaliel", type: ["angel"] },         { word: "Belariel", type: ["angel"] },         { word: "Camariel", type: ["angel"] },         { word: "Casiel", type: ["angel"] },         { word: "Celariel", type: ["angel"] },         { word: "Ciriell", type: ["angel"] },         { word: "Dalariel", type: ["angel"] },         { word: "Damriel", type: ["angel"] },         { word: "Delariel", type: ["angel"] },         { word: "Deyriel", type: ["angel"] },         { word: "Eliriel", type: ["angel"] },         { word: "Emariel", type: ["angel"] },         { word: "Enariel", type: ["angel"] },         { word: "Eraliel", type: ["angel"] },         { word: "Erriel", type: ["angel"] },         { word: "Esariel", type: ["angel"] },         { word: "Etheliel", type: ["angel"] },         { word: "Faeliel", type: ["angel"] },         { word: "Farial", type: ["angel"] },         { word: "Fieliel", type: ["angel"] },         { word: "Galariel", type: ["angel"] },         { word: "Gemriel", type: ["angel"] },         { word: "Isariel", type: ["angel"] },         { word: "Ishariel", type: ["angel"] },         { word: "Irmaiel", type: ["angel"] },         { word: "Ivrial", type: ["angel"] },         { word: "Jaeliel", type: ["angel"] },         { word: "Janariel", type: ["angel"] },         { word: "Jashariel", type: ["angel"] },         { word: "Kaeliel", type: ["angel"] },         { word: "Kaliel", type: ["angel"] },         { word: "Kiariel", type: ["angel"] },         { word: "Lailiel", type: ["angel"] },         { word: "Laria", type: ["angel"] },         { word: "Larethiel", type: ["angel"] },         { word: "Larial", type: ["angel"] },         { word: "Lavriel", type: ["angel"] },         { word: "Lenariel", type: ["angel"] },         { word: "Lerial", type: ["angel"] },         { word: "Lisariel", type: ["angel"] },         { word: "Loriel", type: ["angel"] },         { word: "Maeriel", type: ["angel"] },         { word: "Merariel", type: ["angel"] },         { word: "Miariel", type: ["angel"] },         { word: "Naeriel", type: ["angel"] },         { word: "Nathariel", type: ["angel"] },         { word: "Nieliel", type: ["angel"] },         { word: "Nirael", type: ["angel"] },         { word: "Oariel", type: ["angel"] },         { word: "Osariel", type: ["angel"] },         { word: "Paeriel", type: ["angel"] },         { word: "Queliel", type: ["angel"] },         { word: "Raeliel", type: ["angel"] },         { word: "Rayiel", type: ["angel"] },         { word: "Saeriel", type: ["angel"] },         { word: "Selariel", type: ["angel"] },         { word: "Shieliel", type: ["angel"] },         { word: "Taeriel", type: ["angel"] },         { word: "Valariel", type: ["angel"] },         { word: "Velariel", type: ["angel"] },         { word: "Veyriel", type: ["angel"] },         { word: "Vioniel", type: ["angel"] },         { word: "Waeriel", type: ["angel"] },         { word: "Wariel", type: ["angel"] },         { word: "Yaeliel", type: ["angel"] },         { word: "Zaeliel", type: ["angel"] },         { word: "Arinya", type: ["angel"] },         { word: "Elvion", type: ["angel"] },         { word: "Luviel", type: ["angel"] },         { word: "Maranya", type: ["angel"] },         { word: "Selvion", type: ["angel"] },         { word: "Thalyra", type: ["angel"] },         { word: "Caelira", type: ["angel"] },         { word: "Evryna", type: ["angel"] },         { word: "Lyvion", type: ["angel"] },         { word: "Myriala", type: ["angel"] },         { word: "Nyvion", type: ["angel"] },         { word: "Raelya", type: ["angel"] },         { word: "Sarinya", type: ["angel"] },         { word: "Vaelira", type: ["angel"] },         { word: "Xalinya", type: ["angel"] },         { word: "Zaryna", type: ["angel"] },         { word: "Aluvia", type: ["angel"] },         { word: "Brayana", type: ["angel"] },         { word: "Celvion", type: ["angel"] },         { word: "Darinya", type: ["angel"] },         { word: "Elmyra", type: ["angel"] },         { word: "Faelina", type: ["angel"] },         { word: "Galyra", type: ["angel"] },         { word: "Helyra", type: ["angel"] },         { word: "Ilyana", type: ["angel"] },         { word: "Jalyra", type: ["angel"] },         { word: "Kalvion", type: ["angel"] },         { word: "Laryna", type: ["angel"] },         { word: "Melyra", type: ["angel"] },         { word: "Nayvion", type: ["angel"] },         { word: "Olyra", type: ["angel"] },         { word: "Palyra", type: ["angel"] },         { word: "Qalyra", type: ["angel"] },         { word: "Ralyra", type: ["angel"] },         { word: "Salyra", type: ["angel"] },         { word: "Talyra", type: ["angel"] },         { word: "Ulyra", type: ["angel"] },         { word: "Valyra", type: ["angel"] },         { word: "Walyra", type: ["angel"] },         { word: "Xalyra", type: ["angel"] },         { word: "Yalyra", type: ["angel"] },         { word: "Zalyra", type: ["angel"] },         { word: "Aveniel", type: ["angel"] },         { word: "Briviel", type: ["angel"] },         { word: "Carviel", type: ["angel"] },         { word: "Duviel", type: ["angel"] },         { word: "Eryviel", type: ["angel"] },         { word: "Fyniel", type: ["angel"] },         { word: "Gaviel", type: ["angel"] },         { word: "Haviiel", type: ["angel"] },         { word: "Juviel", type: ["angel"] },         { word: "Kiviel", type: ["angel"] },         { word: "Miviel", type: ["angel"] },         { word: "Nuviel", type: ["angel"] },         { word: "Oviel", type: ["angel"] },         { word: "Piviel", type: ["angel"] },         { word: "Quiviel", type: ["angel"] },         { word: "Riviel", type: ["angel"] },         { word: "Siviel", type: ["angel"] },         { word: "Tiviel", type: ["angel"] },         { word: "Uvriel", type: ["angel"] },         { word: "Vaviel", type: ["angel"] },         { word: "Wiviel", type: ["angel"] },         { word: "Xiviel", type: ["angel"] },         { word: "Yvriel", type: ["angel"] },         { word: "Ziviel", type: ["angel"] },         { word: "Aelyra", type: ["angel"] },         { word: "Myvion", type: ["angel"] },         { word: "Black", type: ["color: black"] },         { word: "Jet", type: ["color: black"] },         { word: "Onyx", type: ["color: black"] },         { word: "Obsidian", type: ["color: black"] },         { word: "Coal", type: ["color: black"] },         { word: "Raven", type: ["color: black"] },         { word: "Sable", type: ["color: black"] },         { word: "Pitch", type: ["color: black"] },         { word: "Char", type: ["color: black"] },         { word: "Ebony", type: ["color: black"] },         { word: "Azure", type: ["color: blue"] },         { word: "Cobalt", type: ["color: blue"] },         { word: "Cerulean", type: ["color: blue"] },         { word: "Sapphire", type: ["color: blue"] },         { word: "Indigo", type: ["color: blue"] },         { word: "Navy", type: ["color: blue"] },         { word: "Sky", type: ["color: blue"] },         { word: "Teal", type: ["color: blue"] },         { word: "Turquoise", type: ["color: blue"] },         { word: "Ultramarine", type: ["color: blue"] },         { word: "Babyblue", type: ["color: blue"] },         { word: "Periwinkle", type: ["color: blue"] },         { word: "Prussian", type: ["color: blue"] },         { word: "Steel", type: ["color: blue"] },         { word: "Midnight", type: ["color: blue"] },         { word: "Cornflower", type: ["color: blue"] },         { word: "Capri", type: ["color: blue"] },         { word: "Ice", type: ["color: blue"] },         { word: "Bluebell", type: ["color: blue"] },         { word: "Robin", type: ["color: blue"] },         { word: "Delft", type: ["color: blue"] },         { word: "Cyan", type: ["color: blue"] },         { word: "Electric", type: ["color: blue"] },         { word: "Blueberry", type: ["color: blue"] },         { word: "Denim", type: ["color: blue"] },         { word: "Ocean", type: ["color: blue"] },         { word: "Lagoon", type: ["color: blue"] },         { word: "Pacific", type: ["color: blue"] },         { word: "Royal", type: ["color: blue"] },         { word: "Powder", type: ["color: blue"] },         { word: "Airforce", type: ["color: blue"] },         { word: "Peacock", type: ["color: blue"] },         { word: "Slate", type: ["color: blue"] },         { word: "Tiffany", type: ["color: blue"] },         { word: "Yale", type: ["color: blue"] },         { word: "Celeste", type: ["color: blue"] },         { word: "Bluejay", type: ["color: blue"] },         { word: "Maya", type: ["color: blue"] },         { word: "Bluebonnet", type: ["color: blue"] },         { word: "Zaffre", type: ["color: blue"] },         { word: "Beryl", type: ["color: blue"] },         { word: "Lapis", type: ["color: blue"] },         { word: "Heliotrope", type: ["color: blue"] },         { word: "Azurette", type: ["color: blue"] },         { word: "Ultramarina", type: ["color: blue"] },         { word: "Cobaltic", type: ["color: blue"] },         { word: "Cyanine", type: ["color: blue"] },         { word: "Cerulea", type: ["color: blue"] },         { word: "Prussianic", type: ["color: blue"] },         { word: "Indigoid", type: ["color: blue"] },         { word: "Skyish", type: ["color: blue"] },         { word: "Navyish", type: ["color: blue"] },         { word: "Turquoise", type: ["color: blue"] },         { word: "Aquamarine", type: ["color: blue"] },         { word: "Bluestone", type: ["color: blue"] },         { word: "Bluish", type: ["color: blue"] },         { word: "Blueish", type: ["color: blue"] },         { word: "Electric", type: ["color: blue"] },         { word: "Bluebellish", type: ["color: blue"] },         { word: "Cornflower", type: ["color: blue"] },         { word: "Delftish", type: ["color: blue"] },         { word: "Robinish", type: ["color: blue"] },         { word: "Caprine", type: ["color: blue"] },         { word: "Airblue", type: ["color: blue"] },         { word: "Bluejay", type: ["color: blue"] },         { word: "Peacockish", type: ["color: blue"] },         { word: "Steelblue", type: ["color: blue"] },         { word: "Midnight", type: ["color: blue"] },         { word: "Sapphire", type: ["color: blue"] },         { word: "Lapis", type: ["color: blue"] },         { word: "Oceanic", type: ["color: blue"] },         { word: "Pacifica", type: ["color: blue"] },         { word: "Lagoonic", type: ["color: blue"] },         { word: "Celestea", type: ["color: blue"] },         { word: "Tiffany", type: ["color: blue"] },         { word: "Royalish", type: ["color: blue"] },         { word: "Zaffreish", type: ["color: blue"] },         { word: "Berylic", type: ["color: blue"] },         { word: "Mayaish", type: ["color: blue"] },         { word: "Blue Bonnet", type: ["color: blue"] },         { word: "Azurean", type: ["color: blue"] },         { word: "Cobaltic", type: ["color: blue"] },         { word: "Cerulean", type: ["color: blue"] },         { word: "Indigocean", type: ["color: blue"] },         { word: "Navy", type: ["color: blue"] },         { word: "Sky", type: ["color: blue"] },         { word: "Powder", type: ["color: blue"] },         { word: "Tealish", type: ["color: blue"] },         { word: "Cyanic", type: ["color: blue"] },         { word: "Heliotropic", type: ["color: blue"] },         { word: "Ultramarine", type: ["color: blue"] },         { word: "Capri", type: ["color: blue"] },         { word: "Delft", type: ["color: blue"] },         { word: "Robins Egg", type: ["color: blue"] },         { word: "Blueberry", type: ["color: blue"] },         { word: "Blueglow", type: ["color: blue"] },         { word: "Midnightglow", type: ["color: blue"] },         { word: "Ocean", type: ["color: blue"] },         { word: "Sapphiric", type: ["color: blue"] },         { word: "Steelish", type: ["color: blue"] },         { word: "Hazy Blue", type: ["color: blue"] },         { word: "Skyhaze", type: ["color: blue"] },         { word: "Lapisish", type: ["color: blue"] },         { word: "Azureglow", type: ["color: blue"] },         { word: "Tealglow", type: ["color: blue"] },         { word: "Beige", type: ["color: brown"] },         { word: "Brown", type: ["color: brown"] },         { word: "Tan", type: ["color: brown"] },         { word: "Taupe", type: ["color: brown"] },         { word: "Chocolate", type: ["color: brown"] },         { word: "Coffee", type: ["color: brown"] },         { word: "Walnut", type: ["color: brown"] },         { word: "Umber", type: ["color: brown"] },         { word: "Mahogany", type: ["color: brown"] },         { word: "Chestnut", type: ["color: brown"] },         { word: "Mocha", type: ["color: brown"] },         { word: "Caramel", type: ["color: brown"] },         { word: "Cinnamon", type: ["color: brown"] },         { word: "Sand", type: ["color: brown"] },         { word: "Fawn", type: ["color: brown"] },         { word: "Hickory", type: ["color: brown"] },         { word: "Maple", type: ["color: brown"] },         { word: "Copper", type: ["color: brown"] },         { word: "Bronze", type: ["color: brown"] },         { word: "Sepia", type: ["color: brown"] },         { word: "Emerald", type: ["color: green"] },         { word: "Jade", type: ["color: green"] },         { word: "Olive", type: ["color: green"] },         { word: "Mint", type: ["color: green"] },         { word: "Lime", type: ["color: green"] },         { word: "Forest", type: ["color: green"] },         { word: "Moss", type: ["color: green"] },         { word: "Sage", type: ["color: green"] },         { word: "Chartreuse", type: ["color: green"] },         { word: "Shamrock", type: ["color: green"] },         { word: "Fern", type: ["color: green"] },         { word: "Avocado", type: ["color: green"] },         { word: "Pistachio", type: ["color: green"] },         { word: "Seafoam", type: ["color: green"] },         { word: "Kelly", type: ["color: green"] },         { word: "Viridian", type: ["color: green"] },         { word: "Tea", type: ["color: green"] },         { word: "Celadon", type: ["color: green"] },         { word: "Spinach", type: ["color: green"] },         { word: "Pea", type: ["color: green"] },         { word: "Laurel", type: ["color: green"] },         { word: "Beryl", type: ["color: green"] },         { word: "Asparagus", type: ["color: green"] },         { word: "Bamboo", type: ["color: green"] },         { word: "Hunter", type: ["color: green"] },         { word: "Willow", type: ["color: green"] },         { word: "Pine", type: ["color: green"] },         { word: "Grass", type: ["color: green"] },         { word: "Meadow", type: ["color: green"] },         { word: "Spring", type: ["color: green"] },         { word: "Clover", type: ["color: green"] },         { word: "Lichen", type: ["color: green"] },         { word: "Olivewood", type: ["color: green"] },         { word: "Malachite", type: ["color: green"] },         { word: "Peridot", type: ["color: green"] },         { word: "Juniper", type: ["color: green"] },         { word: "Basil", type: ["color: green"] },         { word: "Bay", type: ["color: green"] },         { word: "Myrtle", type: ["color: green"] },         { word: "Aloe", type: ["color: green"] },         { word: "Aloe Verda", type: ["color: green"] },         { word: "Shamrocky", type: ["color: green"] },         { word: "Sagebrush", type: ["color: green"] },         { word: "Fern", type: ["color: green"] },         { word: "Limeade", type: ["color: green"] },         { word: "Lime", type: ["color: green"] },         { word: "Minty", type: ["color: green"] },         { word: "Pistachio", type: ["color: green"] },         { word: "Avocado", type: ["color: green"] },         { word: "Hunterish", type: ["color: green"] },         { word: "Mossy", type: ["color: green"] },         { word: "Forest", type: ["color: green"] },         { word: "Springy", type: ["color: green"] },         { word: "Meadow", type: ["color: green"] },         { word: "Grassland", type: ["color: green"] },         { word: "Cloverish", type: ["color: green"] },         { word: "Lichenic", type: ["color: green"] },         { word: "Oliveish", type: ["color: green"] },         { word: "Emeraldine", type: ["color: green"] },         { word: "Viridianic", type: ["color: green"] },         { word: "Kellyish", type: ["color: green"] },         { word: "Peridotic", type: ["color: green"] },         { word: "Bambooish", type: ["color: green"] },         { word: "Juniperish", type: ["color: green"] },         { word: "Basilic", type: ["color: green"] },         { word: "Bayish", type: ["color: green"] },         { word: "Myrtlean", type: ["color: green"] },         { word: "Piney", type: ["color: green"] },         { word: "Spinachy", type: ["color: green"] },         { word: "Teaish", type: ["color: green"] },         { word: "Celadonic", type: ["color: green"] },         { word: "Malachitic", type: ["color: green"] },         { word: "Asparagusic", type: ["color: green"] },         { word: "Willowish", type: ["color: green"] },         { word: "Aloeish", type: ["color: green"] },         { word: "Fernleaf", type: ["color: green"] },         { word: "Leafy", type: ["color: green"] },         { word: "Greenish", type: ["color: green"] },         { word: "Springleaf", type: ["color: green"] },         { word: "Forestleaf", type: ["color: green"] },         { word: "Meadowleaf", type: ["color: green"] },         { word: "Cloverleaf", type: ["color: green"] },         { word: "Mossleaf", type: ["color: green"] },         { word: "Laurelish", type: ["color: green"] },         { word: "Pistache", type: ["color: green"] },         { word: "Basilicgreen", type: ["color: green"] },         { word: "Olivewooden", type: ["color: green"] },         { word: "Junipery", type: ["color: green"] },         { word: "Shamrockyish", type: ["color: green"] },         { word: "Limeleaf", type: ["color: green"] },         { word: "Mintleaf", type: ["color: green"] },         { word: "Grassish", type: ["color: green"] },         { word: "Verdant", type: ["color: green"] },         { word: "Viridescent", type: ["color: green"] },         { word: "Chlorophyll", type: ["color: green"] },         { word: "Leafgreen", type: ["color: green"] },         { word: "Herbaceous", type: ["color: green"] },         { word: "Palegreen", type: ["color: green"] },         { word: "Darkgreen", type: ["color: green"] },         { word: "Brightgreen", type: ["color: green"] },         { word: "Softgreen", type: ["color: green"] },         { word: "Freshgreen", type: ["color: green"] },         { word: "Vibrantgreen", type: ["color: green"] },         { word: "Coolgreen", type: ["color: green"] },         { word: "Deepgreen", type: ["color: green"] },         { word: "Ash", type: ["color: grey"] },         { word: "Slate", type: ["color: grey"] },         { word: "Charcoal", type: ["color: grey"] },         { word: "Silver", type: ["color: grey"] },         { word: "Lead", type: ["color: grey"] },         { word: "Smoke", type: ["color: grey"] },         { word: "Pewter", type: ["color: grey"] },         { word: "Graphite", type: ["color: grey"] },         { word: "Flint", type: ["color: grey"] },         { word: "Stone", type: ["color: grey"] },         { word: "Dove", type: ["color: grey"] },         { word: "Iron", type: ["color: grey"] },         { word: "Platinum", type: ["color: grey"] },         { word: "Mist", type: ["color: grey"] },         { word: "Cloud", type: ["color: grey"] },         { word: "Granite", type: ["color: grey"] },         { word: "Earl", type: ["color: grey"] },         { word: "Battleship", type: ["color: grey"] },         { word: "Fossil", type: ["color: grey"] },         { word: "Nickel", type: ["color: grey"] },         { word: "Amber", type: ["color: orange"] },         { word: "Apricot", type: ["color: orange"] },         { word: "Bronze", type: ["color: orange"] },         { word: "Carrot", type: ["color: orange"] },         { word: "Coral", type: ["color: orange"] },         { word: "Flame", type: ["color: orange"] },         { word: "Ginger", type: ["color: orange"] },         { word: "Marigold", type: ["color: orange"] },         { word: "Ochre", type: ["color: orange"] },         { word: "Peach", type: ["color: orange"] },         { word: "Persimmon", type: ["color: orange"] },         { word: "Pumpkin", type: ["color: orange"] },         { word: "Rust", type: ["color: orange"] },         { word: "Saffron", type: ["color: orange"] },         { word: "Tangerine", type: ["color: orange"] },         { word: "Terracotta", type: ["color: orange"] },         { word: "Topaz", type: ["color: orange"] },         { word: "Vermilion", type: ["color: orange"] },         { word: "Copper", type: ["color: orange"] },         { word: "Papaya", type: ["color: orange"] },         { word: "Clay", type: ["color: orange"] },         { word: "Melon", type: ["color: orange"] },         { word: "Sunset", type: ["color: orange"] },         { word: "Honey", type: ["color: orange"] },         { word: "Butterscotch", type: ["color: orange"] },         { word: "Blush", type: ["color: pink"] },         { word: "Bubblegum", type: ["color: pink"] },         { word: "Carnation", type: ["color: pink"] },         { word: "Cerise", type: ["color: pink"] },         { word: "Cherry", type: ["color: pink"] },         { word: "Coral", type: ["color: pink"] },         { word: "Fuchsia", type: ["color: pink"] },         { word: "Flamingo", type: ["color: pink"] },         { word: "Hibiscus", type: ["color: pink"] },         { word: "Hotpink", type: ["color: pink"] },         { word: "Magenta", type: ["color: pink"] },         { word: "Peony", type: ["color: pink"] },         { word: "Pink", type: ["color: pink"] },         { word: "Rose", type: ["color: pink"] },         { word: "Roseate", type: ["color: pink"] },         { word: "Salmon", type: ["color: pink"] },         { word: "Strawberry", type: ["color: pink"] },         { word: "Watermelon", type: ["color: pink"] },         { word: "Amaranth", type: ["color: pink"] },         { word: "Azalea", type: ["color: pink"] },         { word: "Begonia", type: ["color: pink"] },         { word: "Camellia", type: ["color: pink"] },         { word: "Carnelian", type: ["color: pink"] },         { word: "Cherrish", type: ["color: pink"] },         { word: "Cotton", type: ["color: pink"] },         { word: "Dahlia", type: ["color: pink"] },         { word: "Flaming", type: ["color: pink"] },         { word: "Geranium", type: ["color: pink"] },         { word: "Hibiscous", type: ["color: pink"] },         { word: "Heliotrope", type: ["color: pink"] },         { word: "Heliotric", type: ["color: pink"] },         { word: "Hotpinkish", type: ["color: pink"] },         { word: "Magentish", type: ["color: pink"] },         { word: "Orchid", type: ["color: pink"] },         { word: "Peon", type: ["color: pink"] },         { word: "Pinkish", type: ["color: pink"] },         { word: "Rosewood", type: ["color: pink"] },         { word: "Rosette", type: ["color: pink"] },         { word: "Ruddy", type: ["color: pink"] },         { word: "Rosebud", type: ["color: pink"] },         { word: "Waterrose", type: ["color: pink"] },         { word: "Bubble", type: ["color: pink"] },         { word: "Blushful", type: ["color: pink"] },         { word: "Petal", type: ["color: pink"] },         { word: "Coraline", type: ["color: pink"] },         { word: "Fuchsiac", type: ["color: pink"] },         { word: "Magentae", type: ["color: pink"] },         { word: "Azalean", type: ["color: pink"] },         { word: "Begonian", type: ["color: pink"] },         { word: "Camellian", type: ["color: pink"] },         { word: "Dahliane", type: ["color: pink"] },         { word: "Geraniume", type: ["color: pink"] },         { word: "Heliopic", type: ["color: pink"] },         { word: "Orchidaceous", type: ["color: pink"] },         { word: "Peonial", type: ["color: pink"] },         { word: "Pinkette", type: ["color: pink"] },         { word: "Rosalia", type: ["color: pink"] },         { word: "Roseum", type: ["color: pink"] },         { word: "Rosaliae", type: ["color: pink"] },         { word: "Rosaline", type: ["color: pink"] },         { word: "Ruddyish", type: ["color: pink"] },         { word: "Rosarian", type: ["color: pink"] },         { word: "Watermelon", type: ["color: pink"] },         { word: "Strawberrian", type: ["color: pink"] },         { word: "Cerisean", type: ["color: pink"] },         { word: "Cherrise", type: ["color: pink"] },         { word: "Blushine", type: ["color: pink"] },         { word: "Blush", type: ["color: pink"] },         { word: "Bubble", type: ["color: pink"] },         { word: "Carnal", type: ["color: pink"] },         { word: "Carnelian", type: ["color: pink"] },         { word: "Coralish", type: ["color: pink"] },         { word: "Cherry", type: ["color: pink"] },         { word: "Camelian", type: ["color: pink"] },         { word: "Azaleous", type: ["color: pink"] },         { word: "Fuchsiine", type: ["color: pink"] },         { word: "Peonish", type: ["color: pink"] },         { word: "Petaline", type: ["color: pink"] },         { word: "Rosaceous", type: ["color: pink"] },         { word: "Roseish", type: ["color: pink"] },         { word: "Ruddyrose", type: ["color: pink"] },         { word: "Rosehip", type: ["color: pink"] },         { word: "Roseleaf", type: ["color: pink"] },         { word: "Rosewine", type: ["color: pink"] },         { word: "Rosetteful", type: ["color: pink"] },         { word: "Coralette", type: ["color: pink"] },         { word: "Magentaish", type: ["color: pink"] },         { word: "Magentella", type: ["color: pink"] },         { word: "Carnationish", type: ["color: pink"] },         { word: "Blushberry", type: ["color: pink"] },         { word: "Blushrose", type: ["color: pink"] },         { word: "Pinkberry", type: ["color: pink"] },         { word: "Pinklet", type: ["color: pink"] },         { word: "Pinkalicious", type: ["color: pink"] },         { word: "Pinkishness", type: ["color: pink"] },         { word: "Rosebudish", type: ["color: pink"] },         { word: "Rosapetal", type: ["color: pink"] },         { word: "Roseglow", type: ["color: pink"] },         { word: "Pinkglow", type: ["color: pink"] },         { word: "Waterpetal", type: ["color: pink"] },         { word: "Strawberryish", type: ["color: pink"] },         { word: "Bubbleblush", type: ["color: pink"] },         { word: "Amethyst", type: ["color: purple"] },         { word: "Aubergine", type: ["color: purple"] },         { word: "Byzantium", type: ["color: purple"] },         { word: "Cadmium", type: ["color: purple"] },         { word: "Caput", type: ["color: purple"] },         { word: "Eggplant", type: ["color: purple"] },         { word: "Grape", type: ["color: purple"] },         { word: "Heliotrope", type: ["color: purple"] },         { word: "Imperial", type: ["color: purple"] },         { word: "Indigo", type: ["color: purple"] },         { word: "Iris", type: ["color: purple"] },         { word: "Lavender", type: ["color: purple"] },         { word: "Lilac", type: ["color: purple"] },         { word: "Liseran", type: ["color: purple"] },         { word: "Magenta", type: ["color: purple"] },         { word: "Mulberry", type: ["color: purple"] },         { word: "Orchid", type: ["color: purple"] },         { word: "Pansy", type: ["color: purple"] }, 	        { word: "Thistle", type: ["color: purple"] },         { word: "Tyrian", type: ["color: purple"] },         { word: "Ultra", type: ["color: purple"] },         { word: "Vivid", type: ["color: purple"] },         { word: "Wisteria", type: ["color: purple"] },         { word: "Shadow", type: ["color: purple"] },         { word: "Mauve", type: ["color: purple"] },         { word: "Plum", type: ["color: purple"] },         { word: "Violet", type: ["color: purple"] },         { word: "Heather", type: ["color: purple"] },         { word: "Mystic", type: ["color: purple"] },         { word: "Bloom", type: ["color: purple"] },         { word: "Dusk", type: ["color: purple"] },         { word: "Frost", type: ["color: purple"] },         { word: "Ice", type: ["color: purple"] },         { word: "Dust", type: ["color: purple"] },         { word: "Glimmer", type: ["color: purple"] },         { word: "Shine", type: ["color: purple"] },         { word: "Twilight", type: ["color: purple"] },         { word: "Whisper", type: ["color: purple"] },         { word: "Petal", type: ["color: purple"] },         { word: "Fog", type: ["color: purple"] },         { word: "Glaze", type: ["color: purple"] },         { word: "Dream", type: ["color: purple"] },         { word: "Moon", type: ["color: purple"] },         { word: "Night", type: ["color: purple"] },         { word: "Glow", type: ["color: purple"] },         { word: "Smoke", type: ["color: purple"] },         { word: "Heart", type: ["color: purple"] },         { word: "Sage", type: ["color: purple"] },         { word: "Opal", type: ["color: purple"] },         { word: "Haze", type: ["color: purple"] },         { word: "Berry", type: ["color: purple"] },         { word: "Orchidaceous", type: ["color: purple"] },         { word: "Fuchsia", type: ["color: purple"] },         { word: "Lavendula", type: ["color: purple"] },         { word: "Periwinkle", type: ["color: purple"] },         { word: "Lilaceous", type: ["color: purple"] },         { word: "Hyacinth", type: ["color: purple"] },         { word: "Plumeria", type: ["color: purple"] },         { word: "Lila", type: ["color: purple"] },         { word: "Viola", type: ["color: purple"] },         { word: "Magentae", type: ["color: purple"] },         { word: "Amaranth", type: ["color: purple"] },         { word: "Damson", type: ["color: purple"] },         { word: "Heliotric", type: ["color: purple"] },         { word: "Auberginia", type: ["color: purple"] },         { word: "Mulberrye", type: ["color: purple"] },         { word: "Cineraria", type: ["color: purple"] },         { word: "Campanula", type: ["color: purple"] },         { word: "Violetta", type: ["color: purple"] },         { word: "Malva", type: ["color: purple"] },         { word: "Clematis", type: ["color: purple"] },         { word: "Lavanda", type: ["color: purple"] },         { word: "Petunia", type: ["color: purple"] },         { word: "Orchidia", type: ["color: purple"] },         { word: "Wistaria", type: ["color: purple"] },         { word: "Hyacinthe", type: ["color: purple"] },         { word: "Verbena", type: ["color: purple"] },         { word: "Cyclamen", type: ["color: purple"] },         { word: "Salvia", type: ["color: purple"] },         { word: "Melanzane", type: ["color: purple"] },         { word: "Lavendine", type: ["color: purple"] },         { word: "Lavanite", type: ["color: purple"] },         { word: "Irisine", type: ["color: purple"] },         { word: "Morado", type: ["color: purple"] },         { word: "Aubergineous", type: ["color: purple"] },         { word: "Violae", type: ["color: purple"] },         { word: "Violette", type: ["color: purple"] },         { word: "Magentaish", type: ["color: purple"] },         { word: "Amaranthine", type: ["color: purple"] },         { word: "Prune", type: ["color: purple"] },         { word: "Lilacine", type: ["color: purple"] },         { word: "Damascene", type: ["color: purple"] },         { word: "Thystle", type: ["color: purple"] },         { word: "Cactusberry", type: ["color: purple"] },         { word: "Lilacette", type: ["color: purple"] },         { word: "Mauvine", type: ["color: purple"] },         { word: "Purpurea", type: ["color: purple"] },         { word: "Plumbago", type: ["color: purple"] },         { word: "Fuchsiac", type: ["color: purple"] },         { word: "Heliotopic", type: ["color: purple"] },         { word: "Mulberryish", type: ["color: purple"] },         { word: "Orchidian", type: ["color: purple"] },         { word: "Viole", type: ["color: purple"] },         { word: "Lavish", type: ["color: purple"] },         { word: "Purpureus", type: ["color: purple"] },         { word: "Prisma", type: ["color: rainbow"] },         { word: "Chromatic", type: ["color: rainbow"] },         { word: "Spectrum", type: ["color: rainbow"] },         { word: "Hue", type: ["color: rainbow"] },         { word: "Arc", type: ["color: rainbow"] },         { word: "Tint", type: ["color: rainbow"] },         { word: "Shade", type: ["color: rainbow"] },         { word: "Glow", type: ["color: rainbow"] },         { word: "Radiance", type: ["color: rainbow"] },         { word: "Luster", type: ["color: rainbow"] },         { word: "Aurora", type: ["color: rainbow"] },         { word: "Iridescence", type: ["color: rainbow"] },         { word: "Vivid", type: ["color: rainbow"] },         { word: "Opalescence", type: ["color: rainbow"] },         { word: "Refraction", type: ["color: rainbow"] },         { word: "Diffraction", type: ["color: rainbow"] },         { word: "Refract", type: ["color: rainbow"] },         { word: "Glimmer", type: ["color: rainbow"] },         { word: "Shimmer", type: ["color: rainbow"] },         { word: "Dazzle", type: ["color: rainbow"] },         { word: "Flicker", type: ["color: rainbow"] },         { word: "Glint", type: ["color: rainbow"] },         { word: "Sparkle", type: ["color: rainbow"] },         { word: "Twinkle", type: ["color: rainbow"] },         { word: "Radiant", type: ["color: rainbow"] },         { word: "Flash", type: ["color: rainbow"] },         { word: "Glowstone", type: ["color: rainbow"] },         { word: "Prism", type: ["color: rainbow"] },         { word: "Luminance", type: ["color: rainbow"] },         { word: "Illuminance", type: ["color: rainbow"] },         { word: "Halo", type: ["color: rainbow"] },         { word: "Ember", type: ["color: rainbow"] },         { word: "Sunflare", type: ["color: rainbow"] },         { word: "Starburst", type: ["color: rainbow"] },         { word: "Sunbeam", type: ["color: rainbow"] },         { word: "Nebula", type: ["color: rainbow"] },         { word: "Celestial", type: ["color: rainbow"] },         { word: "Phosphorescence", type: ["color: rainbow"] },         { word: "Luminosity", type: ["color: rainbow"] },         { word: "Fluorescence", type: ["color: rainbow"] },         { word: "Crystal", type: ["color: rainbow"] },         { word: "Reflection", type: ["color: rainbow"] },         { word: "Glistening", type: ["color: rainbow"] },         { word: "Glowworm", type: ["color: rainbow"] },         { word: "Incandescence", type: ["color: rainbow"] },         { word: "Opal", type: ["color: rainbow"] },         { word: "Mirage", type: ["color: rainbow"] },         { word: "Clarity", type: ["color: rainbow"] },         { word: "Echo", type: ["color: rainbow"] },         { word: "Haloes", type: ["color: rainbow"] },         { word: "Lightwave", type: ["color: rainbow"] },         { word: "Coruscation", type: ["color: rainbow"] },         { word: "Aura", type: ["color: rainbow"] },         { word: "Shining", type: ["color: rainbow"] },         { word: "Stardust", type: ["color: rainbow"] },         { word: "Tracer", type: ["color: rainbow"] },         { word: "Cascade", type: ["color: rainbow"] },         { word: "Fulgor", type: ["color: rainbow"] },         { word: "Prismatic", type: ["color: rainbow"] },         { word: "Chromosphere", type: ["color: rainbow"] },         { word: "Chromatism", type: ["color: rainbow"] },         { word: "Gleam", type: ["color: rainbow"] },         { word: "Illumine", type: ["color: rainbow"] },         { word: "Fluorite", type: ["color: rainbow"] },         { word: "Polarization", type: ["color: rainbow"] },         { word: "Dapple", type: ["color: rainbow"] },         { word: "Flashpoint", type: ["color: rainbow"] },         { word: "Diffusion", type: ["color: rainbow"] },         { word: "Transparency", type: ["color: rainbow"] },         { word: "Lightness", type: ["color: rainbow"] },         { word: "Crystalize", type: ["color: rainbow"] },         { word: "Lightstream", type: ["color: rainbow"] },         { word: "Reflective", type: ["color: rainbow"] },         { word: "Ray", type: ["color: rainbow"] },         { word: "Diffuse", type: ["color: rainbow"] },         { word: "Gleaming", type: ["color: rainbow"] },         { word: "Glist", type: ["color: rainbow"] },         { word: "Scintillation", type: ["color: rainbow"] },         { word: "Glowforge", type: ["color: rainbow"] },         { word: "Haloed", type: ["color: rainbow"] },         { word: "Whiteout", type: ["color: rainbow"] },         { word: "Gemstone", type: ["color: rainbow"] },         { word: "Shard", type: ["color: rainbow"] },         { word: "Emberlight", type: ["color: rainbow"] },         { word: "Prismify", type: ["color: rainbow"] },         { word: "Lightcast", type: ["color: rainbow"] },         { word: "Moonstone", type: ["color: rainbow"] },         { word: "Glowing", type: ["color: rainbow"] },         { word: "Flamestone", type: ["color: rainbow"] },         { word: "Sunlit", type: ["color: rainbow"] },         { word: "Lightspill", type: ["color: rainbow"] },         { word: "Neon", type: ["color: rainbow"] },         { word: "Radiograph", type: ["color: rainbow"] },         { word: "Ghostlight", type: ["color: rainbow"] },         { word: "Twilight", type: ["color: rainbow"] },         { word: "Polychrome", type: ["color: rainbow"] },         { word: "Caustic", type: ["color: rainbow"] },         { word: "Spectrumite", type: ["color: rainbow"] },         { word: "Scintilla", type: ["color: rainbow"] },         { word: "Vibrance", type: ["color: rainbow"] },         { word: "Sparkling", type: ["color: rainbow"] },         { word: "Glintstone", type: ["color: rainbow"] },         { word: "Glister", type: ["color: rainbow"] },         { word: "Solstice", type: ["color: rainbow"] },         { word: "Eventide", type: ["color: rainbow"] },         { word: "Ghostflare", type: ["color: rainbow"] },         { word: "Vortex", type: ["color: rainbow"] },         { word: "Skylight", type: ["color: rainbow"] },         { word: "Phantasm", type: ["color: rainbow"] },         { word: "Lusterite", type: ["color: rainbow"] },         { word: "Refractance", type: ["color: rainbow"] },         { word: "Dazzleflare", type: ["color: rainbow"] },         { word: "Haloium", type: ["color: rainbow"] },         { word: "Chroma", type: ["color: rainbow"] },         { word: "Prismate", type: ["color: rainbow"] },         { word: "Lightfall", type: ["color: rainbow"] },         { word: "Crystallized", type: ["color: rainbow"] },         { word: "Illuminary", type: ["color: rainbow"] },         { word: "Glintsheen", type: ["color: rainbow"] },         { word: "Spectrogram", type: ["color: rainbow"] },         { word: "Glittering", type: ["color: rainbow"] },         { word: "Darklight", type: ["color: rainbow"] },         { word: "Candescence", type: ["color: rainbow"] },         { word: "Polychromic", type: ["color: rainbow"] },         { word: "Moondust", type: ["color: rainbow"] },         { word: "Luminist", type: ["color: rainbow"] },         { word: "Darkshine", type: ["color: rainbow"] },         { word: "Starblaze", type: ["color: rainbow"] },         { word: "Moonflare", type: ["color: rainbow"] },         { word: "Candlelight", type: ["color: rainbow"] },         { word: "Darkfire", type: ["color: rainbow"] },         { word: "Flameburst", type: ["color: rainbow"] },         { word: "Lustrum", type: ["color: rainbow"] },         { word: "Celestia", type: ["color: rainbow"] },         { word: "Glimstream", type: ["color: rainbow"] },         { word: "Flickerlight", type: ["color: rainbow"] },         { word: "Vibraflux", type: ["color: rainbow"] },         { word: "Shardlight", type: ["color: rainbow"] },         { word: "Prismancy", type: ["color: rainbow"] },         { word: "Glistvault", type: ["color: rainbow"] },         { word: "Luxolite", type: ["color: rainbow"] },         { word: "Polarize", type: ["color: rainbow"] },         { word: "Dreamglow", type: ["color: rainbow"] },         { word: "Daydream", type: ["color: rainbow"] },         { word: "Fulgurite", type: ["color: rainbow"] },         { word: "Starlume", type: ["color: rainbow"] },         { word: "Skydrift", type: ["color: rainbow"] },         { word: "Fireshine", type: ["color: rainbow"] },         { word: "Starflare", type: ["color: rainbow"] },         { word: "Flarespray", type: ["color: rainbow"] },         { word: "Lumenology", type: ["color: rainbow"] },         { word: "Refractionist", type: ["color: rainbow"] },         { word: "Opalite", type: ["color: rainbow"] },         { word: "Luxura", type: ["color: rainbow"] },         { word: "Dayglow", type: ["color: rainbow"] },         { word: "Dyeshine", type: ["color: rainbow"] },         { word: "Glintspace", type: ["color: rainbow"] },         { word: "Sparkflare", type: ["color: rainbow"] },         { word: "Twiluster", type: ["color: rainbow"] },         { word: "Scintille", type: ["color: rainbow"] },         { word: "Chromist", type: ["color: rainbow"] },         { word: "Nightradiance", type: ["color: rainbow"] },         { word: "Solarflare", type: ["color: rainbow"] },         { word: "Haze", type: ["color: rainbow"] },         { word: "Glimmerstone", type: ["color: rainbow"] },         { word: "Luxflare", type: ["color: rainbow"] },         { word: "Spectralite", type: ["color: rainbow"] },         { word: "Beamlight", type: ["color: rainbow"] },         { word: "Softshine", type: ["color: rainbow"] },         { word: "Shimmerwave", type: ["color: rainbow"] },         { word: "Prismatic", type: ["color: rainbow"] },         { word: "Chromaform", type: ["color: rainbow"] },         { word: "Solglow", type: ["color: rainbow"] },         { word: "Dazzlesphere", type: ["color: rainbow"] },         { word: "Glimmertide", type: ["color: rainbow"] },         { word: "Lightflux", type: ["color: rainbow"] },         { word: "Radiate", type: ["color: rainbow"] },         { word: "Skylance", type: ["color: rainbow"] },         { word: "Shinepath", type: ["color: rainbow"] },         { word: "Chromorph", type: ["color: rainbow"] },         { word: "Lustrite", type: ["color: rainbow"] },         { word: "Glowspire", type: ["color: rainbow"] },         { word: "Prismshield", type: ["color: rainbow"] },         { word: "Spectrumflare", type: ["color: rainbow"] },         { word: "Incandescent", type: ["color: rainbow"] },         { word: "Starshade", type: ["color: rainbow"] },         { word: "Glower", type: ["color: rainbow"] },         { word: "Ghostshine", type: ["color: rainbow"] },         { word: "Chromelume", type: ["color: rainbow"] },         { word: "Radiotide", type: ["color: rainbow"] },         { word: "Dawnflare", type: ["color: rainbow"] },         { word: "Burnglow", type: ["color: rainbow"] },         { word: "Chromashine", type: ["color: rainbow"] },         { word: "Lightwoven", type: ["color: rainbow"] },         { word: "Glistwin", type: ["color: rainbow"] },         { word: "Sparkdusk", type: ["color: rainbow"] },         { word: "Glowcore", type: ["color: rainbow"] },         { word: "Spectraflare", type: ["color: rainbow"] },         { word: "Embercore", type: ["color: rainbow"] },         { word: "Glimmershade", type: ["color: rainbow"] },         { word: "Lightburn", type: ["color: rainbow"] },         { word: "Lightflame", type: ["color: rainbow"] },         { word: "Radioburst", type: ["color: rainbow"] },         { word: "Dayglo", type: ["color: rainbow"] },         { word: "Emberdust", type: ["color: rainbow"] },         { word: "Glowarc", type: ["color: rainbow"] },         { word: "Dune", type: ["color: rainbow"] },         { word: "Lightcrush", type: ["color: rainbow"] },         { word: "Flaresun", type: ["color: rainbow"] },         { word: "Shimmerdance", type: ["color: rainbow"] },         { word: "Refractum", type: ["color: rainbow"] },         { word: "Starveil", type: ["color: rainbow"] },         { word: "Lunarite", type: ["color: rainbow"] },         { word: "Sunsphere", type: ["color: rainbow"] },         { word: "Twilightshine", type: ["color: rainbow"] },         { word: "Glareflare", type: ["color: rainbow"] },         { word: "Starbloom", type: ["color: rainbow"] },         { word: "Glowspectrum", type: ["color: rainbow"] },         { word: "Moonvein", type: ["color: rainbow"] },         { word: "Radiocascade", type: ["color: rainbow"] },         { word: "Phasmaglow", type: ["color: rainbow"] },         { word: "Nightflare", type: ["color: rainbow"] },         { word: "Spanglow", type: ["color: rainbow"] },         { word: "Brightfall", type: ["color: rainbow"] },         { word: "Emberlume", type: ["color: rainbow"] },         { word: "Fireblaze", type: ["color: rainbow"] },         { word: "Lightflare", type: ["color: rainbow"] },         { word: "Neonflare", type: ["color: rainbow"] },         { word: "Prismglow", type: ["color: rainbow"] },         { word: "Lunarflare", type: ["color: rainbow"] },         { word: "Gemglow", type: ["color: rainbow"] },         { word: "Lustra", type: ["color: rainbow"] },         { word: "Glimmershine", type: ["color: rainbow"] },         { word: "Polychromate", type: ["color: rainbow"] },         { word: "Dreamstone", type: ["color: rainbow"] },         { word: "Luminex", type: ["color: rainbow"] },         { word: "Twilume", type: ["color: rainbow"] },         { word: "Duskstone", type: ["color: rainbow"] },         { word: "Dawnshard", type: ["color: rainbow"] },         { word: "Glimmerfall", type: ["color: rainbow"] },         { word: "Lumisphere", type: ["color: rainbow"] },         { word: "Starglow", type: ["color: rainbow"] },         { word: "Hyperlume", type: ["color: rainbow"] },         { word: "Dreamflare", type: ["color: rainbow"] },         { word: "Lightrise", type: ["color: rainbow"] },         { word: "Glowlume", type: ["color: rainbow"] },         { word: "Colorfire", type: ["color: rainbow"] },         { word: "Glowslice", type: ["color: rainbow"] },         { word: "Aurorae", type: ["color: rainbow"] },         { word: "Dreamglimmer", type: ["color: rainbow"] },         { word: "Nightglow", type: ["color: rainbow"] },         { word: "Flarestone", type: ["color: rainbow"] },         { word: "Emberfall", type: ["color: rainbow"] },         { word: "Luridglow", type: ["color: rainbow"] },         { word: "Flashflare", type: ["color: rainbow"] },         { word: "Scintillex", type: ["color: rainbow"] },         { word: "Embershade", type: ["color: rainbow"] },         { word: "Glowmist", type: ["color: rainbow"] },         { word: "Crystallume", type: ["color: rainbow"] },         { word: "Flameshine", type: ["color: rainbow"] },         { word: "Lightblaze", type: ["color: rainbow"] },         { word: "Prismfall", type: ["color: rainbow"] },         { word: "Starshard", type: ["color: rainbow"] },         { word: "Radiantfall", type: ["color: rainbow"] },         { word: "Dreamgleam", type: ["color: rainbow"] },         { word: "Glimmerlight", type: ["color: rainbow"] },         { word: "Emberglow", type: ["color: rainbow"] },         { word: "Nightlume", type: ["color: rainbow"] },         { word: "Chromarise", type: ["color: rainbow"] },         { word: "Lightburst", type: ["color: rainbow"] },         { word: "Glareglint", type: ["color: rainbow"] },         { word: "Amberlume", type: ["color: rainbow"] },         { word: "Moonlight", type: ["color: rainbow"] },         { word: "Radiotint", type: ["color: rainbow"] },         { word: "Solglint", type: ["color: rainbow"] },         { word: "Shinemist", type: ["color: rainbow"] },         { word: "Glowdawn", type: ["color: rainbow"] },         { word: "Beamflare", type: ["color: rainbow"] },         { word: "Chromisphere", type: ["color: rainbow"] },         { word: "Spectraflash", type: ["color: rainbow"] },         { word: "Polarlume", type: ["color: rainbow"] },         { word: "Glintsun", type: ["color: rainbow"] },         { word: "Rayflare", type: ["color: rainbow"] },         { word: "Glowripple", type: ["color: rainbow"] },         { word: "Haloform", type: ["color: rainbow"] },         { word: "Twilightflare", type: ["color: rainbow"] },         { word: "Chromatide", type: ["color: rainbow"] },         { word: "Glimmerpath", type: ["color: rainbow"] },         { word: "Rayshade", type: ["color: rainbow"] },         { word: "Chromashadow", type: ["color: rainbow"] },         { word: "Shimmerspark", type: ["color: rainbow"] },         { word: "Glowrealm", type: ["color: rainbow"] },         { word: "Polaroid", type: ["color: rainbow"] },         { word: "Lustrasphere", type: ["color: rainbow"] },         { word: "Flashlight", type: ["color: rainbow"] },         { word: "Prismalux", type: ["color: rainbow"] },         { word: "Dewspark", type: ["color: rainbow"] },         { word: "Embershine", type: ["color: rainbow"] },         { word: "Shimmergaze", type: ["color: rainbow"] },         { word: "Twilightbeam", type: ["color: rainbow"] },         { word: "Starry", type: ["color: rainbow"] },         { word: "Spectraglow", type: ["color: rainbow"] },         { word: "Radiantbeam", type: ["color: rainbow"] },         { word: "Mistflare", type: ["color: rainbow"] },         { word: "Flashlume", type: ["color: rainbow"] },         { word: "Prismcrystal", type: ["color: rainbow"] },         { word: "Spectrasun", type: ["color: rainbow"] },         { word: "Lucent", type: ["color: rainbow"] },         { word: "Flarestar", type: ["color: rainbow"] },         { word: "Flareform", type: ["color: rainbow"] },         { word: "Sparkcaster", type: ["color: rainbow"] },         { word: "Rayshine", type: ["color: rainbow"] },         { word: "Chromaglow", type: ["color: rainbow"] },         { word: "Starslume", type: ["color: rainbow"] },         { word: "Dayblaze", type: ["color: rainbow"] },         { word: "Raydrop", type: ["color: rainbow"] },         { word: "Chromalight", type: ["color: rainbow"] },         { word: "Luminspace", type: ["color: rainbow"] },         { word: "Lightform", type: ["color: rainbow"] },         { word: "Emberpath", type: ["color: rainbow"] },         { word: "Chromastar", type: ["color: rainbow"] },         { word: "Spectradream", type: ["color: rainbow"] },         { word: "Skydream", type: ["color: rainbow"] },         { word: "Twilucent", type: ["color: rainbow"] },         { word: "Starwave", type: ["color: rainbow"] },         { word: "Lumesphere", type: ["color: rainbow"] },         { word: "Celestialray", type: ["color: rainbow"] },         { word: "Glimmerdust", type: ["color: rainbow"] },         { word: "Dreamcast", type: ["color: rainbow"] },         { word: "Daylightfall", type: ["color: rainbow"] },         { word: "Polychromium", type: ["color: rainbow"] },         { word: "Sunsetflare", type: ["color: rainbow"] },         { word: "Radiancewave", type: ["color: rainbow"] },         { word: "Glowfiend", type: ["color: rainbow"] },         { word: "Colorfade", type: ["color: rainbow"] },         { word: "Shimmerlight", type: ["color: rainbow"] },         { word: "Radiantedge", type: ["color: rainbow"] },         { word: "Chromalume", type: ["color: rainbow"] },         { word: "Reflectshade", type: ["color: rainbow"] },         { word: "Amberbeam", type: ["color: rainbow"] },         { word: "Emberflare", type: ["color: rainbow"] },         { word: "Dreamlight", type: ["color: rainbow"] },         { word: "Glowpulse", type: ["color: rainbow"] },         { word: "Radiantwave", type: ["color: rainbow"] },         { word: "Eclipseflare", type: ["color: rainbow"] },         { word: "Twilightblaze", type: ["color: rainbow"] },         { word: "Lusterglow", type: ["color: rainbow"] },         { word: "Flamepath", type: ["color: rainbow"] },         { word: "Spectralflare", type: ["color: rainbow"] },         { word: "Twilightcore", type: ["color: rainbow"] },         { word: "Emberglimmer", type: ["color: rainbow"] },         { word: "Chromahalo", type: ["color: rainbow"] },         { word: "Chromasurge", type: ["color: rainbow"] },         { word: "Lightglint", type: ["color: rainbow"] },         { word: "Lusterflare", type: ["color: rainbow"] },         { word: "Luminary", type: ["color: rainbow"] },         { word: "Twilightsun", type: ["color: rainbow"] },         { word: "Glimmerdream", type: ["color: rainbow"] },         { word: "Beamdawn", type: ["color: rainbow"] },         { word: "Luminouswave", type: ["color: rainbow"] },         { word: "Chromadawn", type: ["color: rainbow"] },         { word: "Starflash", type: ["color: rainbow"] },         { word: "Emberburst", type: ["color: rainbow"] },         { word: "Dreampulse", type: ["color: rainbow"] },         { word: "Rayfall", type: ["color: rainbow"] },         { word: "Glimmerchase", type: ["color: rainbow"] },         { word: "Radiantcloud", type: ["color: rainbow"] },         { word: "Skyglimmer", type: ["color: rainbow"] },         { word: "Luminstar", type: ["color: rainbow"] },         { word: "Rayshimmer", type: ["color: rainbow"] },         { word: "Starbright", type: ["color: rainbow"] },         { word: "Dreamcrystal", type: ["color: rainbow"] },         { word: "Chromelight", type: ["color: rainbow"] },         { word: "Prismwave", type: ["color: rainbow"] },         { word: "Dayglint", type: ["color: rainbow"] },         { word: "Starcloud", type: ["color: rainbow"] },         { word: "Chromadream", type: ["color: rainbow"] },         { word: "Duskflare", type: ["color: rainbow"] },         { word: "Moonlume", type: ["color: rainbow"] },         { word: "Spectrafall", type: ["color: rainbow"] },         { word: "Chromaflare", type: ["color: rainbow"] },         { word: "Twilum", type: ["color: rainbow"] },         { word: "Glowsurge", type: ["color: rainbow"] },         { word: "Flamehue", type: ["color: rainbow"] },         { word: "Skyflare", type: ["color: rainbow"] },         { word: "Solarshine", type: ["color: rainbow"] },         { word: "Lumeclash", type: ["color: rainbow"] },         { word: "Glimmerstar", type: ["color: rainbow"] },         { word: "Daylight", type: ["color: rainbow"] },         { word: "Glowfall", type: ["color: rainbow"] },         { word: "Alizarin", type: ["color: red"] },         { word: "Amaranth", type: ["color: red"] },         { word: "Burgundy", type: ["color: red"] },         { word: "Carmine", type: ["color: red"] },         { word: "Cerise", type: ["color: red"] },         { word: "Cherry", type: ["color: red"] },         { word: "Claret", type: ["color: red"] },         { word: "Coral", type: ["color: red"] },         { word: "Crimson", type: ["color: red"] },         { word: "Falu", type: ["color: red"] },         { word: "Garnet", type: ["color: red"] },         { word: "Geranium", type: ["color: red"] },         { word: "Indian", type: ["color: red"] },         { word: "Madder", type: ["color: red"] },         { word: "Mahogany", type: ["color: red"] },         { word: "Marsala", type: ["color: red"] },         { word: "Poppy", type: ["color: red"] },         { word: "Rose", type: ["color: red"] },         { word: "Ruby", type: ["color: red"] },         { word: "Rust", type: ["color: red"] },         { word: "Salmon", type: ["color: red"] },         { word: "Sangria", type: ["color: red"] },         { word: "Scarlet", type: ["color: red"] },         { word: "Vermilion", type: ["color: red"] },         { word: "Wine", type: ["color: red"] },         { word: "White", type: ["color: white"] },         { word: "Ivory", type: ["color: white"] },         { word: "Cream", type: ["color: white"] },         { word: "Pearl", type: ["color: white"] },         { word: "Alabaster", type: ["color: white"] },         { word: "Snow", type: ["color: white"] },         { word: "Linen", type: ["color: white"] },         { word: "Bone", type: ["color: white"] },         { word: "Chalk", type: ["color: white"] },         { word: "Frost", type: ["color: white"] },         { word: "Amber", type: ["color: yellow"] },         { word: "Aureolin", type: ["color: yellow"] },         { word: "Banana", type: ["color: yellow"] },         { word: "Blond", type: ["color: yellow"] },         { word: "Butter", type: ["color: yellow"] },         { word: "Canary", type: ["color: yellow"] },         { word: "Citrine", type: ["color: yellow"] },         { word: "Gold", type: ["color: yellow"] },         { word: "Goldenrod", type: ["color: yellow"] },         { word: "Honey", type: ["color: yellow"] },         { word: "Lemon", type: ["color: yellow"] },         { word: "Lightgold", type: ["color: yellow"] },         { word: "Mellow", type: ["color: yellow"] },         { word: "Mustard", type: ["color: yellow"] },         { word: "Ochre", type: ["color: yellow"] },         { word: "Saffron", type: ["color: yellow"] },         { word: "Sunflower", type: ["color: yellow"] },         { word: "Topaz", type: ["color: yellow"] },         { word: "Flax", type: ["color: yellow"] },         { word: "Cream", type: ["color: yellow"] },         { word: "Buff", type: ["color: yellow"] },         { word: "Yellow", type: ["color: yellow"] },         { word: "Dandelion", type: ["color: yellow"] },         { word: "Corn", type: ["color: yellow"] },         { word: "Primrose", type: ["color: yellow"] },         { word: "Allosaurus", type: ["dinosaur"] },         { word: "Ankylosaurus", type: ["dinosaur"] },         { word: "Apatosaurus", type: ["dinosaur"] },         { word: "Argentinosaurus", type: ["dinosaur"] },         { word: "Archaeopteryx", type: ["dinosaur"] },         { word: "Brachiosaurus", type: ["dinosaur"] },         { word: "Brontosaurus", type: ["dinosaur"] },         { word: "Ceratosaurus", type: ["dinosaur"] },         { word: "Coelophysis", type: ["dinosaur"] },         { word: "Compsognathus", type: ["dinosaur"] },         { word: "Corythosaurus", type: ["dinosaur"] },         { word: "Daspletosaurus", type: ["dinosaur"] },         { word: "Deinonychus", type: ["dinosaur"] },         { word: "Dilophosaurus", type: ["dinosaur"] },         { word: "Diplodocus", type: ["dinosaur"] },         { word: "Dromaeosaurus", type: ["dinosaur"] },         { word: "Edmontosaurus", type: ["dinosaur"] },         { word: "Euoplocephalus", type: ["dinosaur"] },         { word: "Giganotosaurus", type: ["dinosaur"] },         { word: "Gallimimus", type: ["dinosaur"] },         { word: "Iguanodon", type: ["dinosaur"] },         { word: "Kentrosaurus", type: ["dinosaur"] },         { word: "Lambeosaurus", type: ["dinosaur"] },         { word: "Maiasaura", type: ["dinosaur"] },         { word: "Megalosaurus", type: ["dinosaur"] },         { word: "Microraptor", type: ["dinosaur"] },         { word: "Monolophosaurus", type: ["dinosaur"] },         { word: "Oviraptor", type: ["dinosaur"] },         { word: "Pachycephalosaurus", type: ["dinosaur"] },         { word: "Parasaurolophus", type: ["dinosaur"] },         { word: "Plateosaurus", type: ["dinosaur"] },         { word: "Protoceratops", type: ["dinosaur"] },         { word: "Pteranodon", type: ["dinosaur"] },         { word: "Quetzalcoatlus", type: ["dinosaur"] },         { word: "Spinosaurus", type: ["dinosaur"] },         { word: "Stegosaurus", type: ["dinosaur"] },         { word: "Styracosaurus", type: ["dinosaur"] },         { word: "Suchomimus", type: ["dinosaur"] },         { word: "Therizinosaurus", type: ["dinosaur"] },         { word: "Torosaurus", type: ["dinosaur"] },         { word: "Triceratops", type: ["dinosaur"] },         { word: "Troodon", type: ["dinosaur"] },         { word: "Tyrannosaurus", type: ["dinosaur"] },         { word: "Velociraptor", type: ["dinosaur"] },         { word: "Xenoceratops", type: ["dinosaur"] },         { word: "Zuniceratops", type: ["dinosaur"] },         { word: "Fossil", type: ["dinosaur"] },         { word: "Skeleton", type: ["dinosaur"] },         { word: "Claw", type: ["dinosaur"] },         { word: "Talon", type: ["dinosaur"] },         { word: "Skull", type: ["dinosaur"] },         { word: "Tooth", type: ["dinosaur"] },         { word: "Bone", type: ["dinosaur"] },         { word: "Vertebra", type: ["dinosaur"] },         { word: "Rib", type: ["dinosaur"] },         { word: "Femur", type: ["dinosaur"] },         { word: "Tibia", type: ["dinosaur"] },         { word: "Fibula", type: ["dinosaur"] },         { word: "Humerus", type: ["dinosaur"] },         { word: "Jaw", type: ["dinosaur"] },         { word: "Crest", type: ["dinosaur"] },         { word: "Horn", type: ["dinosaur"] },         { word: "Spine", type: ["dinosaur"] },         { word: "Tail", type: ["dinosaur"] },         { word: "Arm", type: ["dinosaur"] },         { word: "Leg", type: ["dinosaur"] },         { word: "Foot", type: ["dinosaur"] },         { word: "Hand", type: ["dinosaur"] },         { word: "Digit", type: ["dinosaur"] },         { word: "Clutch", type: ["dinosaur"] },         { word: "Egg", type: ["dinosaur"] },         { word: "Nest", type: ["dinosaur"] },         { word: "Hatchling", type: ["dinosaur"] },         { word: "Juvenile", type: ["dinosaur"] },         { word: "Adult", type: ["dinosaur"] },         { word: "Predator", type: ["dinosaur"] },         { word: "Carnivore", type: ["dinosaur"] },         { word: "Herbivore", type: ["dinosaur"] },         { word: "Omnivore", type: ["dinosaur"] },         { word: "Apex", type: ["dinosaur"] },         { word: "Predator", type: ["dinosaur"] },         { word: "Gizzard", type: ["dinosaur"] },         { word: "Gastrolith", type: ["dinosaur"] },         { word: "Fossilized", type: ["dinosaur"] },         { word: "Track", type: ["dinosaur"] },         { word: "Footprint", type: ["dinosaur"] },         { word: "Trace", type: ["dinosaur"] },         { word: "Coprolite", type: ["dinosaur"] },         { word: "Amber", type: ["dinosaur"] },         { word: "Paleontology", type: ["dinosaur"] },         { word: "Excavation", type: ["dinosaur"] },         { word: "Quarry", type: ["dinosaur"] },         { word: "Dig", type: ["dinosaur"] },         { word: "Museum", type: ["dinosaur"] },         { word: "Exhibit", type: ["dinosaur"] },         { word: "Skeletonized", type: ["dinosaur"] },         { word: "Jurassic", type: ["dinosaur"] },         { word: "Cretaceous", type: ["dinosaur"] },         { word: "Triassic", type: ["dinosaur"] },         { word: "Mesozoic", type: ["dinosaur"] },         { word: "Paleozoic", type: ["dinosaur"] },         { word: "Fossiliferous", type: ["dinosaur"] },         { word: "Sediment", type: ["dinosaur"] },         { word: "Rock", type: ["dinosaur"] },         { word: "Strata", type: ["dinosaur"] },         { word: "Fossilized Bone", type: ["dinosaur"] },         { word: "Mite", type: ["dinosaur"] },         { word: "Extinct", type: ["dinosaur"] },         { word: "Prehistoric", type: ["dinosaur"] },         { word: "Ancient", type: ["dinosaur"] },         { word: "Reptile", type: ["dinosaur"] },         { word: "Archosaur", type: ["dinosaur"] },         { word: "Theropod", type: ["dinosaur"] },         { word: "Sauropod", type: ["dinosaur"] },         { word: "Ornithopod", type: ["dinosaur"] },         { word: "Ceratopsian", type: ["dinosaur"] },         { word: "Ankylosaurid", type: ["dinosaur"] },         { word: "Stegosaurid", type: ["dinosaur"] },         { word: "Plesiosaur", type: ["dinosaur"] },         { word: "Mosasaur", type: ["dinosaur"] },         { word: "Ichthyosaur", type: ["dinosaur"] },         { word: "Dimetrodon", type: ["dinosaur"] },         { word: "Sauropteryx", type: ["dinosaur"] },         { word: "Paleobotany", type: ["dinosaur"] },         { word: "Paleoecology", type: ["dinosaur"] },         { word: "Stratigraphy", type: ["dinosaur"] },         { word: "Sedimentary", type: ["dinosaur"] },         { word: "Excavator", type: ["dinosaur"] },         { word: "Paleontologist", type: ["dinosaur"] },         { word: "Fossil Hunter", type: ["dinosaur"] },         { word: "land", type: ["dinosaur"] },         { word: "saurEgg", type: ["dinosaur"] },         { word: "Hatchling", type: ["dinosaur"] },         { word: "ClawMark", type: ["dinosaur"] },         { word: "BoneBed", type: ["dinosaur"] },         { word: "ToothMark", type: ["dinosaur"] },         { word: "Skull Crest", type: ["dinosaur"] },         { word: "Tail Club", type: ["dinosaur"] },         { word: "Spike", type: ["dinosaur"] },         { word: "Plate", type: ["dinosaur"] },         { word: "Armor", type: ["dinosaur"] },         { word: "Jawbone", type: ["dinosaur"] },         { word: "Toothless", type: ["dinosaur"] },         { word: "Brokentooth", type: ["dinosaur"] },         { word: "Quarry", type: ["dinosaur"] },         { word: "Paleosol", type: ["dinosaur"] },         { word: "Trackway", type: ["dinosaur"] },         { word: "Footprint", type: ["dinosaur"] },         { word: "AmberFossil", type: ["dinosaur"] },         { word: "Gastrolith Stone", type: ["dinosaur"] },         { word: "Petrified", type: ["dinosaur"] },         { word: "Trail", type: ["dinosaur"] },         { word: "Fossillite", type: ["dinosaur"] },         { word: "Juvenile", type: ["dinosaur"] },         { word: "Nest", type: ["dinosaur"] },         { word: "Plate Armor", type: ["dinosaur"] },         { word: "Tyrannosaur", type: ["dinosaur"] },         { word: "Allosaur", type: ["dinosaur"] },         { word: "Ceratops", type: ["dinosaur"] },         { word: "Pachycephalosaur", type: ["dinosaur"] },         { word: "Spinosaur", type: ["dinosaur"] },         { word: "Dromaeosaur", type: ["dinosaur"] },         { word: "Troodontid", type: ["dinosaur"] },         { word: "Therizinosaur", type: ["dinosaur"] },         { word: "Ornithomimid", type: ["dinosaur"] },         { word: "Sauropodomorph", type: ["dinosaur"] },         { word: "Abelisaur", type: ["dinosaur"] },         { word: "Alvarezsaur", type: ["dinosaur"] },         { word: "Carcharodontosaur", type: ["dinosaur"] },         { word: "Deinocheirus", type: ["dinosaur"] },         { word: "Herrerasaur", type: ["dinosaur"] },         { word: "Megalosaur", type: ["dinosaur"] },         { word: "Plateosaur", type: ["dinosaur"] },         { word: "Rugops", type: ["dinosaur"] },         { word: "Shunosaur", type: ["dinosaur"] },         { word: "Titanosaur", type: ["dinosaur"] },         { word: "Torvosaur", type: ["dinosaur"] },         { word: "Baryonyx", type: ["dinosaur"] },         { word: "Mononykus", type: ["dinosaur"] },         { word: "Falcarius", type: ["dinosaur"] },         { word: "Iguanacolossus", type: ["dinosaur"] },         { word: "Eotrachodon", type: ["dinosaur"] },         { word: "Nodosaur", type: ["dinosaur"] },         { word: "Europasaurus", type: ["dinosaur"] },         { word: "Hypsilophodon", type: ["dinosaur"] },         { word: "Leaellynasaura", type: ["dinosaur"] },         { word: "Microceratus", type: ["dinosaur"] },         { word: "Orodromeus", type: ["dinosaur"] },         { word: "Ouranosaurus", type: ["dinosaur"] },         { word: "Rhabdodon", type: ["dinosaur"] },         { word: "Scelidosaurus", type: ["dinosaur"] },         { word: "Stegouros", type: ["dinosaur"] },         { word: "Tarchia", type: ["dinosaur"] },         { word: "Tsintaosaurus", type: ["dinosaur"] },         { word: "Ankylosaur", type: ["dinosaur"] },         { word: "Pachyrhinosaurus", type: ["dinosaur"] },         { word: "Centrosaurus", type: ["dinosaur"] },         { word: "Chasmosaurus", type: ["dinosaur"] },         { word: "Leptoceratops", type: ["dinosaur"] },         { word: "Psittacosaurus", type: ["dinosaur"] },         { word: "Saurolophus", type: ["dinosaur"] },         { word: "Hypacrosaurus", type: ["dinosaur"] },         { word: "Shantungosaurus", type: ["dinosaur"] },         { word: "Gryposaurus", type: ["dinosaur"] },         { word: "Kritosaurus", type: ["dinosaur"] },         { word: "Brachylophosaurus", type: ["dinosaur"] },         { word: "Velafrons", type: ["dinosaur"] },         { word: "Fagesia", type: ["dinosaur"] },         { word: "Alamosaurus", type: ["dinosaur"] },         { word: "Barosaurus", type: ["dinosaur"] },         { word: "Camarasaurus", type: ["dinosaur"] },         { word: "Chubutisaurus", type: ["dinosaur"] },         { word: "Dreadnoughtus", type: ["dinosaur"] },         { word: "Futalognkosaurus", type: ["dinosaur"] },         { word: "Giraffatitan", type: ["dinosaur"] },         { word: "Jobaria", type: ["dinosaur"] },         { word: "Mamenchisaurus", type: ["dinosaur"] },         { word: "Patagosaurus", type: ["dinosaur"] },         { word: "Sauroposeidon", type: ["dinosaur"] },         { word: "Shunosaurus", type: ["dinosaur"] },         { word: "Suuwassea", type: ["dinosaur"] },         { word: "Tastavinsaurus", type: ["dinosaur"] },         { word: "Turiasaurus", type: ["dinosaur"] },         { word: "Ultrasaurus", type: ["dinosaur"] },         { word: "Vulcanodon", type: ["dinosaur"] },         { word: "Amargasaurus", type: ["dinosaur"] },         { word: "Nigersaurus", type: ["dinosaur"] },         { word: "Rebbachisaurus", type: ["dinosaur"] },         { word: "Supersaurus", type: ["dinosaur"] },         { word: "Ankylosauria", type: ["dinosaur"] },         { word: "Stegosauria", type: ["dinosaur"] },         { word: "Ceratopsia", type: ["dinosaur"] },         { word: "Sauropoda", type: ["dinosaur"] },         { word: "Theropoda", type: ["dinosaur"] },         { word: "Ornithopoda", type: ["dinosaur"] },         { word: "Pachycephalosauria", type: ["dinosaur"] },         { word: "Dromaeosauridae", type: ["dinosaur"] },         { word: "Tyrannosauridae", type: ["dinosaur"] },         { word: "Spinosauridae", type: ["dinosaur"] },         { word: "Ornithischia", type: ["dinosaur"] },         { word: "Saurischia", type: ["dinosaur"] },         { word: "sauria", type: ["dinosaur"] },         { word: "Fossilia", type: ["dinosaur"] },         { word: "Paleontologia", type: ["dinosaur"] },         { word: "Mesozoica", type: ["dinosaur"] },         { word: "Pangea", type: ["dinosaur"] },         { word: "Gondwana", type: ["dinosaur"] },         { word: "Laurasia", type: ["dinosaur"] },         { word: "Fossilization", type: ["dinosaur"] },         { word: "Teeth", type: ["dinosaur"] },         { word: "Limb", type: ["dinosaur"] },         { word: "Phalanx", type: ["dinosaur"] },         { word: "Swamp", type: ["dinosaur"] },         { word: "Forest", type: ["dinosaur"] },         { word: "River", type: ["dinosaur"] },         { word: "Mountain", type: ["dinosaur"] },         { word: "Plains", type: ["dinosaur"] },         { word: "Valley", type: ["dinosaur"] },         { word: "Desert", type: ["dinosaur"] },         { word: "Cave", type: ["dinosaur"] },         { word: "Cliff", type: ["dinosaur"] },         { word: "Volcano", type: ["dinosaur"] },         { word: "FossilBed", type: ["dinosaur"] }, 	        { word: "Display", type: ["dinosaur"] },         { word: "TraceFossil", type: ["dinosaur"] },         { word: "BodyFossil", type: ["dinosaur"] },         { word: "ArmorPlate", type: ["dinosaur"] },         { word: "Jawbone", type: ["dinosaur"] },         { word: "Abby", type: ["domestic cat name"] },         { word: "Ace", type: ["domestic cat name"] },         { word: "Ada", type: ["domestic cat name"] },         { word: "Aero", type: ["domestic cat name"] },         { word: "Ajax", type: ["domestic cat name"] },         { word: "Alba", type: ["domestic cat name"] },         { word: "Alfie", type: ["domestic cat name"] },         { word: "Alice", type: ["domestic cat name"] },         { word: "Almond", type: ["domestic cat name"] },         { word: "Amber", type: ["domestic cat name"] },         { word: "Amigo", type: ["domestic cat name"] },         { word: "Angel", type: ["domestic cat name"] },         { word: "Annie", type: ["domestic cat name"] },         { word: "Apollo", type: ["domestic cat name"] },         { word: "Apple", type: ["domestic cat name"] },         { word: "Aqua", type: ["domestic cat name"] },         { word: "Archie", type: ["domestic cat name"] },         { word: "Ariel", type: ["domestic cat name"] },         { word: "Ash", type: ["domestic cat name"] },         { word: "Aspen", type: ["domestic cat name"] },         { word: "Astra", type: ["domestic cat name"] },         { word: "Atom", type: ["domestic cat name"] },         { word: "Atticus", type: ["domestic cat name"] },         { word: "Aura", type: ["domestic cat name"] },         { word: "Autumn", type: ["domestic cat name"] },         { word: "Baby", type: ["domestic cat name"] },         { word: "Bambi", type: ["domestic cat name"] },         { word: "Bandit", type: ["domestic cat name"] },         { word: "Banjo", type: ["domestic cat name"] },         { word: "Barkley", type: ["domestic cat name"] },         { word: "Basil", type: ["domestic cat name"] },         { word: "Bean", type: ["domestic cat name"] },         { word: "Bear", type: ["domestic cat name"] },         { word: "Beauty", type: ["domestic cat name"] },         { word: "Bella", type: ["domestic cat name"] },         { word: "Benji", type: ["domestic cat name"] },         { word: "Benny", type: ["domestic cat name"] },         { word: "Berry", type: ["domestic cat name"] },         { word: "Biscuit", type: ["domestic cat name"] },         { word: "Blaze", type: ["domestic cat name"] },         { word: "Blondie", type: ["domestic cat name"] },         { word: "Blue", type: ["domestic cat name"] },         { word: "Boots", type: ["domestic cat name"] },         { word: "Boris", type: ["domestic cat name"] },         { word: "Bowser", type: ["domestic cat name"] },         { word: "Brandy", type: ["domestic cat name"] },         { word: "Breezy", type: ["domestic cat name"] },         { word: "Bruno", type: ["domestic cat name"] },         { word: "Bubba", type: ["domestic cat name"] },         { word: "Buffy", type: ["domestic cat name"] },         { word: "Cactus", type: ["domestic cat name"] },         { word: "Caesar", type: ["domestic cat name"] },         { word: "Callie", type: ["domestic cat name"] },         { word: "Calypso", type: ["domestic cat name"] },         { word: "Candy", type: ["domestic cat name"] },         { word: "Casper", type: ["domestic cat name"] },         { word: "Catnip", type: ["domestic cat name"] },         { word: "Charlie", type: ["domestic cat name"] },         { word: "Chase", type: ["domestic cat name"] },         { word: "Cheddar", type: ["domestic cat name"] },         { word: "Chester", type: ["domestic cat name"] },         { word: "Chica", type: ["domestic cat name"] },         { word: "Chloe", type: ["domestic cat name"] },         { word: "Cinnamon", type: ["domestic cat name"] },         { word: "Clover", type: ["domestic cat name"] },         { word: "Coco", type: ["domestic cat name"] },         { word: "Cookie", type: ["domestic cat name"] },         { word: "Copper", type: ["domestic cat name"] },         { word: "Cosmo", type: ["domestic cat name"] },         { word: "Cotton", type: ["domestic cat name"] },         { word: "Cricket", type: ["domestic cat name"] },         { word: "Crunch", type: ["domestic cat name"] },         { word: "Crystal", type: ["domestic cat name"] },         { word: "Cubby", type: ["domestic cat name"] },         { word: "Cupid", type: ["domestic cat name"] },         { word: "Daisy", type: ["domestic cat name"] },         { word: "Dakota", type: ["domestic cat name"] },         { word: "Dandelion", type: ["domestic cat name"] },         { word: "Dante", type: ["domestic cat name"] },         { word: "Daphne", type: ["domestic cat name"] },         { word: "Dash", type: ["domestic cat name"] },         { word: "Dazzle", type: ["domestic cat name"] },         { word: "Delilah", type: ["domestic cat name"] },         { word: "Demi", type: ["domestic cat name"] },         { word: "Dexter", type: ["domestic cat name"] },         { word: "Diablo", type: ["domestic cat name"] },         { word: "Dingo", type: ["domestic cat name"] },         { word: "Diva", type: ["domestic cat name"] },         { word: "Dixie", type: ["domestic cat name"] },         { word: "Dodger", type: ["domestic cat name"] },         { word: "Dolly", type: ["domestic cat name"] },         { word: "Domino", type: ["domestic cat name"] },         { word: "Donut", type: ["domestic cat name"] },         { word: "Dora", type: ["domestic cat name"] },         { word: "Dragon", type: ["domestic cat name"] },         { word: "Drew", type: ["domestic cat name"] },         { word: "Duke", type: ["domestic cat name"] },         { word: "Dusty", type: ["domestic cat name"] },         { word: "Dylan", type: ["domestic cat name"] },         { word: "Dynamo", type: ["domestic cat name"] },         { word: "Echo", type: ["domestic cat name"] },         { word: "Eden", type: ["domestic cat name"] },         { word: "Edgar", type: ["domestic cat name"] },         { word: "Einstein", type: ["domestic cat name"] },         { word: "Electra", type: ["domestic cat name"] },         { word: "Elfie", type: ["domestic cat name"] },         { word: "Ember", type: ["domestic cat name"] },         { word: "Emmie", type: ["domestic cat name"] },         { word: "Enzo", type: ["domestic cat name"] },         { word: "Ernie", type: ["domestic cat name"] },         { word: "Esme", type: ["domestic cat name"] },         { word: "Etna", type: ["domestic cat name"] },         { word: "Eva", type: ["domestic cat name"] },         { word: "Evie", type: ["domestic cat name"] },         { word: "Felix", type: ["domestic cat name"] },         { word: "Fennec", type: ["domestic cat name"] },         { word: "Fern", type: ["domestic cat name"] },         { word: "Fidget", type: ["domestic cat name"] },         { word: "Figaro", type: ["domestic cat name"] },         { word: "Finn", type: ["domestic cat name"] },         { word: "Fiona", type: ["domestic cat name"] },         { word: "Flame", type: ["domestic cat name"] },         { word: "Flash", type: ["domestic cat name"] },         { word: "Flora", type: ["domestic cat name"] },         { word: "Fluffy", type: ["domestic cat name"] },         { word: "Fozzie", type: ["domestic cat name"] },         { word: "Fox", type: ["domestic cat name"] },         { word: "Freckles", type: ["domestic cat name"] },         { word: "Freya", type: ["domestic cat name"] },         { word: "Frost", type: ["domestic cat name"] },         { word: "Fudge", type: ["domestic cat name"] },         { word: "Fuzzy", type: ["domestic cat name"] },         { word: "Gadget", type: ["domestic cat name"] },         { word: "Galaxy", type: ["domestic cat name"] },         { word: "Gato", type: ["domestic cat name"] },         { word: "Gem", type: ["domestic cat name"] },         { word: "George", type: ["domestic cat name"] },         { word: "Ginger", type: ["domestic cat name"] },         { word: "Gizmo", type: ["domestic cat name"] },         { word: "Goldie", type: ["domestic cat name"] },         { word: "Goofy", type: ["domestic cat name"] },         { word: "Gracie", type: ["domestic cat name"] },         { word: "Groot", type: ["domestic cat name"] },         { word: "Guapo", type: ["domestic cat name"] },         { word: "Guinness", type: ["domestic cat name"] },         { word: "Gumdrop", type: ["domestic cat name"] },         { word: "Hades", type: ["domestic cat name"] },         { word: "Halo", type: ["domestic cat name"] },         { word: "Hamlet", type: ["domestic cat name"] },         { word: "Harley", type: ["domestic cat name"] },         { word: "Harper", type: ["domestic cat name"] },         { word: "Hazel", type: ["domestic cat name"] },         { word: "Heath", type: ["domestic cat name"] },         { word: "Henry", type: ["domestic cat name"] },         { word: "Hershey", type: ["domestic cat name"] },         { word: "Hobbes", type: ["domestic cat name"] },         { word: "Holly", type: ["domestic cat name"] },         { word: "Honey", type: ["domestic cat name"] },         { word: "Houdini", type: ["domestic cat name"] },         { word: "Hunter", type: ["domestic cat name"] },         { word: "Iggy", type: ["domestic cat name"] },         { word: "Ikarus", type: ["domestic cat name"] },         { word: "Indigo", type: ["domestic cat name"] },         { word: "Inky", type: ["domestic cat name"] },         { word: "Iris", type: ["domestic cat name"] },         { word: "Isabella", type: ["domestic cat name"] },         { word: "Ivy", type: ["domestic cat name"] },         { word: "Izzy", type: ["domestic cat name"] },         { word: "Jack", type: ["domestic cat name"] },         { word: "Jackson", type: ["domestic cat name"] },         { word: "Jade", type: ["domestic cat name"] },         { word: "Jagger", type: ["domestic cat name"] },         { word: "Jake", type: ["domestic cat name"] },         { word: "Jasper", type: ["domestic cat name"] },         { word: "Jax", type: ["domestic cat name"] },         { word: "Jellybean", type: ["domestic cat name"] },         { word: "Jinx", type: ["domestic cat name"] },         { word: "Joey", type: ["domestic cat name"] },         { word: "Jordan", type: ["domestic cat name"] },         { word: "Joy", type: ["domestic cat name"] },         { word: "Jude", type: ["domestic cat name"] },         { word: "Jules", type: ["domestic cat name"] },         { word: "Juniper", type: ["domestic cat name"] },         { word: "Jupiter", type: ["domestic cat name"] },         { word: "Kahlua", type: ["domestic cat name"] },         { word: "Kai", type: ["domestic cat name"] },         { word: "Karma", type: ["domestic cat name"] },         { word: "Kash", type: ["domestic cat name"] },         { word: "Katie", type: ["domestic cat name"] },         { word: "Kiki", type: ["domestic cat name"] },         { word: "King", type: ["domestic cat name"] },         { word: "Kit", type: ["domestic cat name"] },         { word: "Kitkat", type: ["domestic cat name"] },         { word: "Kitty", type: ["domestic cat name"] },         { word: "Klaus", type: ["domestic cat name"] },         { word: "Kona", type: ["domestic cat name"] },         { word: "Krypto", type: ["domestic cat name"] },         { word: "Kylie", type: ["domestic cat name"] },         { word: "Lacey", type: ["domestic cat name"] },         { word: "Lady", type: ["domestic cat name"] },         { word: "Lancelot", type: ["domestic cat name"] },         { word: "Latte", type: ["domestic cat name"] },         { word: "Lava", type: ["domestic cat name"] },         { word: "Leo", type: ["domestic cat name"] },         { word: "Leroy", type: ["domestic cat name"] },         { word: "Lexi", type: ["domestic cat name"] },         { word: "Liberty", type: ["domestic cat name"] },         { word: "Lightning", type: ["domestic cat name"] },         { word: "Lily", type: ["domestic cat name"] },         { word: "Linus", type: ["domestic cat name"] },         { word: "Loki", type: ["domestic cat name"] },         { word: "Lola", type: ["domestic cat name"] },         { word: "London", type: ["domestic cat name"] },         { word: "Louie", type: ["domestic cat name"] },         { word: "Lucky", type: ["domestic cat name"] },         { word: "Lucy", type: ["domestic cat name"] },         { word: "Lulu", type: ["domestic cat name"] },         { word: "Luna", type: ["domestic cat name"] },         { word: "Lux", type: ["domestic cat name"] },         { word: "Lyra", type: ["domestic cat name"] },         { word: "Mac", type: ["domestic cat name"] },         { word: "Macy", type: ["domestic cat name"] },         { word: "Maddie", type: ["domestic cat name"] },         { word: "Maggie", type: ["domestic cat name"] },         { word: "Maisie", type: ["domestic cat name"] },         { word: "Major", type: ["domestic cat name"] },         { word: "Mango", type: ["domestic cat name"] },         { word: "Maple", type: ["domestic cat name"] },         { word: "Marble", type: ["domestic cat name"] },         { word: "Marshmallow", type: ["domestic cat name"] },         { word: "Maverick", type: ["domestic cat name"] },         { word: "Max", type: ["domestic cat name"] },         { word: "Maxie", type: ["domestic cat name"] },         { word: "Maya", type: ["domestic cat name"] },         { word: "Merlin", type: ["domestic cat name"] },         { word: "Mia", type: ["domestic cat name"] },         { word: "Midnight", type: ["domestic cat name"] },         { word: "Mika", type: ["domestic cat name"] },         { word: "Milo", type: ["domestic cat name"] },         { word: "Mimi", type: ["domestic cat name"] },         { word: "Minerva", type: ["domestic cat name"] },         { word: "Minnie", type: ["domestic cat name"] },         { word: "Misty", type: ["domestic cat name"] },         { word: "Mocha", type: ["domestic cat name"] },         { word: "Mochi", type: ["domestic cat name"] },         { word: "Mojo", type: ["domestic cat name"] },         { word: "Molly", type: ["domestic cat name"] },         { word: "Momo", type: ["domestic cat name"] },         { word: "Monroe", type: ["domestic cat name"] },         { word: "Monty", type: ["domestic cat name"] },         { word: "Moon", type: ["domestic cat name"] },         { word: "Muffin", type: ["domestic cat name"] },         { word: "Munchkin", type: ["domestic cat name"] },         { word: "Murphy", type: ["domestic cat name"] },         { word: "Murray", type: ["domestic cat name"] },         { word: "Mystic", type: ["domestic cat name"] },         { word: "Nala", type: ["domestic cat name"] },         { word: "Napoleon", type: ["domestic cat name"] },         { word: "Nash", type: ["domestic cat name"] },         { word: "Neko", type: ["domestic cat name"] },         { word: "Nibbles", type: ["domestic cat name"] },         { word: "Nico", type: ["domestic cat name"] },         { word: "Nigel", type: ["domestic cat name"] },         { word: "Nimbus", type: ["domestic cat name"] },         { word: "Ninja", type: ["domestic cat name"] },         { word: "Noah", type: ["domestic cat name"] },         { word: "Noel", type: ["domestic cat name"] },         { word: "Nola", type: ["domestic cat name"] },         { word: "Nugget", type: ["domestic cat name"] },         { word: "Olive", type: ["domestic cat name"] },         { word: "Ollie", type: ["domestic cat name"] },         { word: "Opal", type: ["domestic cat name"] },         { word: "Oreo", type: ["domestic cat name"] },         { word: "Orpheus", type: ["domestic cat name"] },         { word: "Oscar", type: ["domestic cat name"] },         { word: "Otis", type: ["domestic cat name"] },         { word: "Ozzie", type: ["domestic cat name"] },         { word: "Paddington", type: ["domestic cat name"] },         { word: "Panda", type: ["domestic cat name"] },         { word: "Pansy", type: ["domestic cat name"] },         { word: "Paprika", type: ["domestic cat name"] },         { word: "Patch", type: ["domestic cat name"] },         { word: "Patchy", type: ["domestic cat name"] },         { word: "Peanut", type: ["domestic cat name"] },         { word: "Pearl", type: ["domestic cat name"] },         { word: "Pebbles", type: ["domestic cat name"] },         { word: "Penny", type: ["domestic cat name"] },         { word: "Pepper", type: ["domestic cat name"] },         { word: "Percy", type: ["domestic cat name"] },         { word: "Perry", type: ["domestic cat name"] },         { word: "Petal", type: ["domestic cat name"] },         { word: "Phantom", type: ["domestic cat name"] },         { word: "Phoenix", type: ["domestic cat name"] },         { word: "Pickles", type: ["domestic cat name"] },         { word: "Pippin", type: ["domestic cat name"] },         { word: "Pixie", type: ["domestic cat name"] },         { word: "Pluto", type: ["domestic cat name"] },         { word: "Pogo", type: ["domestic cat name"] },         { word: "Polly", type: ["domestic cat name"] },         { word: "Poppy", type: ["domestic cat name"] },         { word: "Pumpkin", type: ["domestic cat name"] },         { word: "Pudding", type: ["domestic cat name"] },         { word: "Puff", type: ["domestic cat name"] },         { word: "Puffin", type: ["domestic cat name"] },         { word: "Quincy", type: ["domestic cat name"] },         { word: "Quill", type: ["domestic cat name"] },         { word: "Radar", type: ["domestic cat name"] },         { word: "Rain", type: ["domestic cat name"] },         { word: "Rainbow", type: ["domestic cat name"] },         { word: "Rambo", type: ["domestic cat name"] },         { word: "Rascal", type: ["domestic cat name"] },         { word: "Raven", type: ["domestic cat name"] },         { word: "Reggie", type: ["domestic cat name"] },         { word: "Remy", type: ["domestic cat name"] },         { word: "Rex", type: ["domestic cat name"] },         { word: "Rhea", type: ["domestic cat name"] },         { word: "Rhiannon", type: ["domestic cat name"] },         { word: "Riley", type: ["domestic cat name"] },         { word: "Rio", type: ["domestic cat name"] },         { word: "Ripley", type: ["domestic cat name"] },         { word: "River", type: ["domestic cat name"] },         { word: "Robin", type: ["domestic cat name"] },         { word: "Rocky", type: ["domestic cat name"] },         { word: "Romeo", type: ["domestic cat name"] },         { word: "Roscoe", type: ["domestic cat name"] },         { word: "Rose", type: ["domestic cat name"] },         { word: "Rosie", type: ["domestic cat name"] },         { word: "Roxy", type: ["domestic cat name"] },         { word: "Ruby", type: ["domestic cat name"] },         { word: "Rufus", type: ["domestic cat name"] },         { word: "Rusty", type: ["domestic cat name"] },         { word: "Sable", type: ["domestic cat name"] },         { word: "Sage", type: ["domestic cat name"] },         { word: "Salem", type: ["domestic cat name"] },         { word: "Sassy", type: ["domestic cat name"] },         { word: "Sasha", type: ["domestic cat name"] },         { word: "Satchmo", type: ["domestic cat name"] },         { word: "Saturn", type: ["domestic cat name"] },         { word: "Savvy", type: ["domestic cat name"] },         { word: "Scamper", type: ["domestic cat name"] },         { word: "Scout", type: ["domestic cat name"] },         { word: "Shadow", type: ["domestic cat name"] },         { word: "Shamrock", type: ["domestic cat name"] },         { word: "Sheldon", type: ["domestic cat name"] },         { word: "Shelby", type: ["domestic cat name"] },         { word: "Shiloh", type: ["domestic cat name"] },         { word: "Simba", type: ["domestic cat name"] },         { word: "Simon", type: ["domestic cat name"] },         { word: "Siren", type: ["domestic cat name"] },         { word: "Skittles", type: ["domestic cat name"] },         { word: "Sky", type: ["domestic cat name"] },         { word: "Skylar", type: ["domestic cat name"] },         { word: "Smokey", type: ["domestic cat name"] },         { word: "Snickers", type: ["domestic cat name"] },         { word: "Snow", type: ["domestic cat name"] },         { word: "Snowball", type: ["domestic cat name"] },         { word: "Snowflake", type: ["domestic cat name"] },         { word: "Socks", type: ["domestic cat name"] },         { word: "Sonic", type: ["domestic cat name"] },         { word: "Sophie", type: ["domestic cat name"] },         { word: "Sparky", type: ["domestic cat name"] },         { word: "Spike", type: ["domestic cat name"] },         { word: "Spirit", type: ["domestic cat name"] },         { word: "Sprinkles", type: ["domestic cat name"] },         { word: "Squash", type: ["domestic cat name"] },         { word: "Squiggles", type: ["domestic cat name"] },         { word: "Stanley", type: ["domestic cat name"] },         { word: "Stella", type: ["domestic cat name"] },         { word: "Storm", type: ["domestic cat name"] },         { word: "Sunny", type: ["domestic cat name"] },         { word: "Sweetie", type: ["domestic cat name"] },         { word: "Sylvester", type: ["domestic cat name"] },         { word: "Taffy", type: ["domestic cat name"] },         { word: "Tango", type: ["domestic cat name"] },         { word: "Tansy", type: ["domestic cat name"] },         { word: "Tara", type: ["domestic cat name"] },         { word: "Tasha", type: ["domestic cat name"] },         { word: "Tater", type: ["domestic cat name"] },         { word: "Teddy", type: ["domestic cat name"] },         { word: "Thalia", type: ["domestic cat name"] },         { word: "Theo", type: ["domestic cat name"] },         { word: "Thor", type: ["domestic cat name"] },         { word: "Thunder", type: ["domestic cat name"] },         { word: "Tia", type: ["domestic cat name"] },         { word: "Tiger", type: ["domestic cat name"] },         { word: "Tigger", type: ["domestic cat name"] },         { word: "Tiki", type: ["domestic cat name"] },         { word: "Tilly", type: ["domestic cat name"] },         { word: "Toby", type: ["domestic cat name"] },         { word: "Toffee", type: ["domestic cat name"] },         { word: "Tonka", type: ["domestic cat name"] },         { word: "Topaz", type: ["domestic cat name"] },         { word: "Tori", type: ["domestic cat name"] },         { word: "Toto", type: ["domestic cat name"] },         { word: "Travis", type: ["domestic cat name"] },         { word: "Treasure", type: ["domestic cat name"] },         { word: "Truffle", type: ["domestic cat name"] },         { word: "Tulip", type: ["domestic cat name"] },         { word: "Tux", type: ["domestic cat name"] },         { word: "Twinkle", type: ["domestic cat name"] },         { word: "Tyson", type: ["domestic cat name"] },         { word: "Uma", type: ["domestic cat name"] },         { word: "Ursula", type: ["domestic cat name"] },         { word: "Valentino", type: ["domestic cat name"] },         { word: "Vanilla", type: ["domestic cat name"] },         { word: "Vanya", type: ["domestic cat name"] },         { word: "Venus", type: ["domestic cat name"] },         { word: "Vera", type: ["domestic cat name"] },         { word: "Vesper", type: ["domestic cat name"] },         { word: "Vinnie", type: ["domestic cat name"] },         { word: "Violet", type: ["domestic cat name"] },         { word: "Waffle", type: ["domestic cat name"] },         { word: "Walnut", type: ["domestic cat name"] },         { word: "Wanda", type: ["domestic cat name"] },         { word: "Watson", type: ["domestic cat name"] },         { word: "Whisper", type: ["domestic cat name"] },         { word: "Widget", type: ["domestic cat name"] },         { word: "Willow", type: ["domestic cat name"] },         { word: "Winnie", type: ["domestic cat name"] },         { word: "Winston", type: ["domestic cat name"] },         { word: "Winter", type: ["domestic cat name"] },         { word: "Wrigley", type: ["domestic cat name"] },         { word: "Xander", type: ["domestic cat name"] },         { word: "Xerxes", type: ["domestic cat name"] },         { word: "Yara", type: ["domestic cat name"] },         { word: "Yoshi", type: ["domestic cat name"] },         { word: "Yuki", type: ["domestic cat name"] },         { word: "Yumi", type: ["domestic cat name"] },         { word: "Yuri", type: ["domestic cat name"] },         { word: "Zeus", type: ["domestic cat name"] },         { word: "Ziggy", type: ["domestic cat name"] },         { word: "Zinnia", type: ["domestic cat name"] },         { word: "Ziva", type: ["domestic cat name"] },         { word: "Zola", type: ["domestic cat name"] },         { word: "Zorro", type: ["domestic cat name"] },         { word: "Abby-May", type: ["domestic cat name"] },         { word: "Acey", type: ["domestic cat name"] },         { word: "Adagio", type: ["domestic cat name"] },         { word: "Albus", type: ["domestic cat name"] },         { word: "Alfalfa", type: ["domestic cat name"] },         { word: "Algie", type: ["domestic cat name"] },         { word: "Alice-May", type: ["domestic cat name"] },         { word: "Allie", type: ["domestic cat name"] },         { word: "Almondine", type: ["domestic cat name"] },         { word: "Ambrosia", type: ["domestic cat name"] },         { word: "Amulet", type: ["domestic cat name"] },         { word: "Anansi", type: ["domestic cat name"] },         { word: "Angelica", type: ["domestic cat name"] },         { word: "Angus", type: ["domestic cat name"] },         { word: "Annabelle", type: ["domestic cat name"] },         { word: "Apollo-Jet", type: ["domestic cat name"] },         { word: "Aria", type: ["domestic cat name"] },         { word: "Ariel-May", type: ["domestic cat name"] },         { word: "Arrow", type: ["domestic cat name"] },         { word: "Artemis", type: ["domestic cat name"] },         { word: "Ashby", type: ["domestic cat name"] },         { word: "Aspen-Lee", type: ["domestic cat name"] },         { word: "Astrid", type: ["domestic cat name"] },         { word: "Atomica", type: ["domestic cat name"] },         { word: "Atticus-Lee", type: ["domestic cat name"] },         { word: "Aura-May", type: ["domestic cat name"] },         { word: "Autumn-Lee", type: ["domestic cat name"] },         { word: "Avalon", type: ["domestic cat name"] },         { word: "Axl", type: ["domestic cat name"] },         { word: "Azura", type: ["domestic cat name"] },         { word: "Babar", type: ["domestic cat name"] },         { word: "Baguette", type: ["domestic cat name"] },         { word: "Bagel", type: ["domestic cat name"] },         { word: "Bailey", type: ["domestic cat name"] },         { word: "Baloo", type: ["domestic cat name"] },         { word: "Bandito", type: ["domestic cat name"] },         { word: "Banoffee", type: ["domestic cat name"] },         { word: "Banshee", type: ["domestic cat name"] },         { word: "Bao", type: ["domestic cat name"] },         { word: "Barbie", type: ["domestic cat name"] },         { word: "Barkley-May", type: ["domestic cat name"] },         { word: "Bartholomew", type: ["domestic cat name"] },         { word: "Basilica", type: ["domestic cat name"] },         { word: "Bastian", type: ["domestic cat name"] },         { word: "Batty", type: ["domestic cat name"] },         { word: "Baxter", type: ["domestic cat name"] },         { word: "Beanie", type: ["domestic cat name"] },         { word: "Bearclaw", type: ["domestic cat name"] },         { word: "Beatrix", type: ["domestic cat name"] },         { word: "Beignet", type: ["domestic cat name"] },         { word: "Bella-Rose", type: ["domestic cat name"] },         { word: "Bellatrix", type: ["domestic cat name"] },         { word: "Benihana", type: ["domestic cat name"] },         { word: "Benny-May", type: ["domestic cat name"] },         { word: "Bento", type: ["domestic cat name"] },         { word: "Berkeley", type: ["domestic cat name"] },         { word: "Berry-May", type: ["domestic cat name"] },         { word: "Bertie", type: ["domestic cat name"] },         { word: "Beryl", type: ["domestic cat name"] },         { word: "Bessie", type: ["domestic cat name"] },         { word: "Betsy", type: ["domestic cat name"] },         { word: "Biggles", type: ["domestic cat name"] },         { word: "Bilbo", type: ["domestic cat name"] },         { word: "Billy", type: ["domestic cat name"] },         { word: "Biscotti", type: ["domestic cat name"] },         { word: "Blizzard", type: ["domestic cat name"] },         { word: "Bluebell", type: ["domestic cat name"] },         { word: "Bluestone", type: ["domestic cat name"] },         { word: "Bo", type: ["domestic cat name"] },         { word: "Bodhi", type: ["domestic cat name"] },         { word: "Bolt", type: ["domestic cat name"] },         { word: "Bonbon", type: ["domestic cat name"] },         { word: "Bonkers", type: ["domestic cat name"] },         { word: "Bonnie", type: ["domestic cat name"] },         { word: "Boo", type: ["domestic cat name"] },         { word: "Bootsie", type: ["domestic cat name"] },         { word: "Bosco", type: ["domestic cat name"] },         { word: "Boston", type: ["domestic cat name"] },         { word: "Bowie", type: ["domestic cat name"] },         { word: "Bramble", type: ["domestic cat name"] },         { word: "Bran", type: ["domestic cat name"] },         { word: "Bravo", type: ["domestic cat name"] },         { word: "Bree", type: ["domestic cat name"] },         { word: "Breeze", type: ["domestic cat name"] },         { word: "Briar", type: ["domestic cat name"] },         { word: "Bridget", type: ["domestic cat name"] },         { word: "Brindle", type: ["domestic cat name"] },         { word: "Brisket", type: ["domestic cat name"] },         { word: "Brody", type: ["domestic cat name"] },         { word: "Bronco", type: ["domestic cat name"] },         { word: "Brooklyn", type: ["domestic cat name"] },         { word: "Brutus", type: ["domestic cat name"] },         { word: "Bubbles", type: ["domestic cat name"] },         { word: "Buck", type: ["domestic cat name"] },         { word: "Buddy", type: ["domestic cat name"] },         { word: "Bugsy", type: ["domestic cat name"] },         { word: "Buster", type: ["domestic cat name"] },         { word: "Butters", type: ["domestic cat name"] },         { word: "Buttercup", type: ["domestic cat name"] },         { word: "Buttons", type: ["domestic cat name"] },         { word: "Buzz", type: ["domestic cat name"] },         { word: "Caden", type: ["domestic cat name"] },         { word: "Cagney", type: ["domestic cat name"] },         { word: "Cairo", type: ["domestic cat name"] },         { word: "Calico", type: ["domestic cat name"] },         { word: "Callisto", type: ["domestic cat name"] },         { word: "Calvin", type: ["domestic cat name"] },         { word: "Camellia", type: ["domestic cat name"] },         { word: "Camilla", type: ["domestic cat name"] },         { word: "Captain", type: ["domestic cat name"] },         { word: "Capri", type: ["domestic cat name"] },         { word: "Caramel", type: ["domestic cat name"] },         { word: "Carbon", type: ["domestic cat name"] },         { word: "Carina", type: ["domestic cat name"] },         { word: "Carl", type: ["domestic cat name"] },         { word: "Carmen", type: ["domestic cat name"] },         { word: "Carol", type: ["domestic cat name"] },         { word: "Cassidy", type: ["domestic cat name"] },         { word: "Castor", type: ["domestic cat name"] },         { word: "Catalina", type: ["domestic cat name"] },         { word: "Catrina", type: ["domestic cat name"] },         { word: "Catsby", type: ["domestic cat name"] },         { word: "Cedar", type: ["domestic cat name"] },         { word: "Celeste", type: ["domestic cat name"] },         { word: "Celestia", type: ["domestic cat name"] },         { word: "Cesare", type: ["domestic cat name"] },         { word: "Chai", type: ["domestic cat name"] },         { word: "Chaka", type: ["domestic cat name"] },         { word: "Chance", type: ["domestic cat name"] },         { word: "Chandra", type: ["domestic cat name"] },         { word: "Chanel", type: ["domestic cat name"] },         { word: "Chanterelle", type: ["domestic cat name"] },         { word: "Charlotte", type: ["domestic cat name"] },         { word: "Charm", type: ["domestic cat name"] },         { word: "Cherry", type: ["domestic cat name"] },         { word: "Chessie", type: ["domestic cat name"] },         { word: "Cheyenne", type: ["domestic cat name"] },         { word: "Chico", type: ["domestic cat name"] },         { word: "Chief", type: ["domestic cat name"] },         { word: "Chilly", type: ["domestic cat name"] },         { word: "Chip", type: ["domestic cat name"] },         { word: "Chiquita", type: ["domestic cat name"] },         { word: "Chocolate", type: ["domestic cat name"] },         { word: "Chomper", type: ["domestic cat name"] },         { word: "Claire", type: ["domestic cat name"] },         { word: "Clancy", type: ["domestic cat name"] },         { word: "Cleo", type: ["domestic cat name"] },         { word: "Clementine", type: ["domestic cat name"] },         { word: "Clifford", type: ["domestic cat name"] },         { word: "Cocoa", type: ["domestic cat name"] },         { word: "Cody", type: ["domestic cat name"] },         { word: "Coffee", type: ["domestic cat name"] },         { word: "Colby", type: ["domestic cat name"] },         { word: "Cole", type: ["domestic cat name"] },         { word: "Comet", type: ["domestic cat name"] },         { word: "Cooper", type: ["domestic cat name"] },         { word: "Cottonball", type: ["domestic cat name"] },         { word: "Crispin", type: ["domestic cat name"] },         { word: "Crunchy", type: ["domestic cat name"] },         { word: "Cupcake", type: ["domestic cat name"] },         { word: "Curly", type: ["domestic cat name"] },         { word: "Daffodil", type: ["domestic cat name"] },         { word: "Foxy", type: ["domestic cat name"] },         { word: "Frosty", type: ["domestic cat name"] },         { word: "Flame", type: ["elemental"] },         { word: "Mossheart", type: ["elemental"] },         { word: "Blaze", type: ["elemental"] },         { word: "Ember", type: ["elemental"] },         { word: "Spark", type: ["elemental"] },         { word: "Inferno", type: ["elemental"] },         { word: "Torch", type: ["elemental"] },         { word: "Fire", type: ["elemental"] },         { word: "Bonfire", type: ["elemental"] },         { word: "Scorch", type: ["elemental"] },         { word: "Kindle", type: ["elemental"] },         { word: "Ash", type: ["elemental"] },         { word: "Burn", type: ["elemental"] },         { word: "Cinder", type: ["elemental"] },         { word: "Glow", type: ["elemental"] },         { word: "Heat", type: ["elemental"] },         { word: "Flicker", type: ["elemental"] },         { word: "Radiance", type: ["elemental"] },         { word: "Pyre", type: ["elemental"] },         { word: "Sear", type: ["elemental"] },         { word: "Torchlight", type: ["elemental"] },         { word: "Firelight", type: ["elemental"] },         { word: "Smolder", type: ["elemental"] },         { word: "Firestorm", type: ["elemental"] },         { word: "Wildfire", type: ["elemental"] },         { word: "Ignis", type: ["elemental"] },         { word: "Incendiary", type: ["elemental"] },         { word: "Flare", type: ["elemental"] },         { word: "Pyro", type: ["elemental"] },         { word: "Scald", type: ["elemental"] },         { word: "Lava", type: ["elemental"] },         { word: "Magma", type: ["elemental"] },         { word: "Volcanic", type: ["elemental"] },         { word: "Pyromancer", type: ["elemental"] },         { word: "Char", type: ["elemental"] },         { word: "Smoldering", type: ["elemental"] },         { word: "Glowworm", type: ["elemental"] },         { word: "Fume", type: ["elemental"] },         { word: "Combust", type: ["elemental"] },         { word: "Combustion", type: ["elemental"] },         { word: "Flashfire", type: ["elemental"] },         { word: "Fireball", type: ["elemental"] },         { word: "Heatwave", type: ["elemental"] },         { word: "Firebrand", type: ["elemental"] },         { word: "Hotspot", type: ["elemental"] },         { word: "Kindlefire", type: ["elemental"] },         { word: "Emberglow", type: ["elemental"] },         { word: "Redhot", type: ["elemental"] },         { word: "Sparkle", type: ["elemental"] },         { word: "Glimmer", type: ["elemental"] },         { word: "Torchbearer", type: ["elemental"] },         { word: "Flameheart", type: ["elemental"] },         { word: "Flameshadow", type: ["elemental"] },         { word: "Emberstorm", type: ["elemental"] },         { word: "Fireclaw", type: ["elemental"] },         { word: "Pyrofury", type: ["elemental"] },         { word: "Blazeheart", type: ["elemental"] },         { word: "Firefang", type: ["elemental"] },         { word: "Burnt", type: ["elemental"] },         { word: "Heatclaw", type: ["elemental"] },         { word: "Incendio", type: ["elemental"] },         { word: "Fireburst", type: ["elemental"] },         { word: "Pyreflame", type: ["elemental"] },         { word: "Infernal", type: ["elemental"] },         { word: "Flameburst", type: ["elemental"] },         { word: "Flamepaw", type: ["elemental"] },         { word: "Firesoul", type: ["elemental"] },         { word: "Scorched", type: ["elemental"] },         { word: "Searing", type: ["elemental"] },         { word: "Flamelight", type: ["elemental"] },         { word: "Firewing", type: ["elemental"] },         { word: "Sparksoul", type: ["elemental"] },         { word: "Emberpaw", type: ["elemental"] },         { word: "Ignition", type: ["elemental"] },         { word: "Wildblaze", type: ["elemental"] },         { word: "Fireflare", type: ["elemental"] },         { word: "Firebloom", type: ["elemental"] },         { word: "Pyreborn", type: ["elemental"] },         { word: "Glowfire", type: ["elemental"] },         { word: "Firestormer", type: ["elemental"] },         { word: "Firelash", type: ["elemental"] },         { word: "Torchpaw", type: ["elemental"] },         { word: "Blazeclaw", type: ["elemental"] },         { word: "Emberfang", type: ["elemental"] },         { word: "Magmaborn", type: ["elemental"] },         { word: "Firefury", type: ["elemental"] },         { word: "Flamespark", type: ["elemental"] },         { word: "Torchflare", type: ["elemental"] },         { word: "Heatfang", type: ["elemental"] },         { word: "Flamefang", type: ["elemental"] },         { word: "Firewhisker", type: ["elemental"] },         { word: "Searclaw", type: ["elemental"] },         { word: "Firepelt", type: ["elemental"] },         { word: "Firestripe", type: ["elemental"] },         { word: "Flametail", type: ["elemental"] },         { word: "Firemane", type: ["elemental"] },         { word: "Firebolt", type: ["elemental"] },         { word: "Firestrike", type: ["elemental"] },         { word: "Pyrosoul", type: ["elemental"] },         { word: "Flamewhisper", type: ["elemental"] },         { word: "Burnpaw", type: ["elemental"] },         { word: "Pyrofang", type: ["elemental"] },         { word: "Scorchtail", type: ["elemental"] },         { word: "Blazetail", type: ["elemental"] },         { word: "Firepaw", type: ["elemental"] },         { word: "Embermane", type: ["elemental"] },         { word: "Sparkpaw", type: ["elemental"] },         { word: "Firebreath", type: ["elemental"] },         { word: "Flamebreath", type: ["elemental"] },         { word: "Fireheart", type: ["elemental"] },         { word: "Magmafang", type: ["elemental"] },         { word: "Pyreclaw", type: ["elemental"] },         { word: "Pyreheart", type: ["elemental"] },         { word: "Firestormpaw", type: ["elemental"] },         { word: "Fireblaze", type: ["elemental"] },         { word: "Pyroclaw", type: ["elemental"] },         { word: "Fireflicker", type: ["elemental"] },         { word: "Flameflash", type: ["elemental"] },         { word: "Flarepaw", type: ["elemental"] },         { word: "Blazeburst", type: ["elemental"] },         { word: "Emberburst", type: ["elemental"] },         { word: "Heatburst", type: ["elemental"] },         { word: "Searburst", type: ["elemental"] },         { word: "Firesurge", type: ["elemental"] },         { word: "Flamesurge", type: ["elemental"] },         { word: "Pyrosurge", type: ["elemental"] },         { word: "Burnflare", type: ["elemental"] },         { word: "Flameflare", type: ["elemental"] },         { word: "Scorchflare", type: ["elemental"] },         { word: "Fireflarepaw", type: ["elemental"] },         { word: "Pyropaw", type: ["elemental"] },         { word: "Magmapaw", type: ["elemental"] },         { word: "Heatpaw", type: ["elemental"] },         { word: "Searpaw", type: ["elemental"] },         { word: "Water", type: ["elemental"] },         { word: "Aqua", type: ["elemental"] },         { word: "Stream", type: ["elemental"] },         { word: "River", type: ["elemental"] },         { word: "Brook", type: ["elemental"] },         { word: "Creek", type: ["elemental"] },         { word: "Pond", type: ["elemental"] },         { word: "Lake", type: ["elemental"] },         { word: "Ocean", type: ["elemental"] },         { word: "Sea", type: ["elemental"] },         { word: "Tide", type: ["elemental"] },         { word: "Wave", type: ["elemental"] },         { word: "Surf", type: ["elemental"] },         { word: "Current", type: ["elemental"] },         { word: "Whirlpool", type: ["elemental"] },         { word: "Splash", type: ["elemental"] },         { word: "Drop", type: ["elemental"] },         { word: "Dew", type: ["elemental"] },         { word: "Rain", type: ["elemental"] },         { word: "Raindrop", type: ["elemental"] },         { word: "Drizzle", type: ["elemental"] },         { word: "Storm", type: ["elemental"] },         { word: "Cascade", type: ["elemental"] },         { word: "Flow", type: ["elemental"] },         { word: "Flood", type: ["elemental"] },         { word: "Torrent", type: ["elemental"] },         { word: "Deluge", type: ["elemental"] },         { word: "Spray", type: ["elemental"] },         { word: "Mist", type: ["elemental"] },         { word: "Fog", type: ["elemental"] },         { word: "Vapor", type: ["elemental"] },         { word: "Steam", type: ["elemental"] },         { word: "Ice", type: ["elemental"] },         { word: "Frost", type: ["elemental"] },         { word: "Snow", type: ["elemental"] },         { word: "Snowflake", type: ["elemental"] },         { word: "Blizzard", type: ["elemental"] },         { word: "Hail", type: ["elemental"] },         { word: "Glacier", type: ["elemental"] },         { word: "Icicle", type: ["elemental"] },         { word: "Freeze", type: ["elemental"] },         { word: "Cold", type: ["elemental"] },         { word: "Chill", type: ["elemental"] },         { word: "Frostbite", type: ["elemental"] },         { word: "Snowstorm", type: ["elemental"] },         { word: "Iceberg", type: ["elemental"] },         { word: "Icecap", type: ["elemental"] },         { word: "Icefall", type: ["elemental"] },         { word: "Icewind", type: ["elemental"] },         { word: "Iceclaw", type: ["elemental"] },         { word: "Snowpaw", type: ["elemental"] },         { word: "Frostpaw", type: ["elemental"] },         { word: "Snowflakepaw", type: ["elemental"] },         { word: "Icepaw", type: ["elemental"] },         { word: "Blizzardpaw", type: ["elemental"] },         { word: "Frostbitepaw", type: ["elemental"] },         { word: "Iciclepaw", type: ["elemental"] },         { word: "Glacial", type: ["elemental"] },         { word: "Glaciarpaw", type: ["elemental"] },         { word: "Icefang", type: ["elemental"] },         { word: "Frostfang", type: ["elemental"] },         { word: "Snowfang", type: ["elemental"] }, 	        { word: "Frostclaw", type: ["elemental"] },         { word: "Snowclaw", type: ["elemental"] },         { word: "Waterpaw", type: ["elemental"] },         { word: "Wavepaw", type: ["elemental"] },         { word: "Tidepaw", type: ["elemental"] },         { word: "Currentsoul", type: ["elemental"] },         { word: "Streampaw", type: ["elemental"] },         { word: "Riverpaw", type: ["elemental"] },         { word: "Oceanpaw", type: ["elemental"] },         { word: "Seapaw", type: ["elemental"] },         { word: "Splashpaw", type: ["elemental"] },         { word: "Dewpaw", type: ["elemental"] },         { word: "Raindropaw", type: ["elemental"] },         { word: "Mistpaw", type: ["elemental"] },         { word: "Fogpaw", type: ["elemental"] },         { word: "Steamclaw", type: ["elemental"] },         { word: "Iceflare", type: ["elemental"] },         { word: "Snowflare", type: ["elemental"] },         { word: "Frostflare", type: ["elemental"] },         { word: "Blizzardflare", type: ["elemental"] },         { word: "Iceburst", type: ["elemental"] },         { word: "Snowburst", type: ["elemental"] },         { word: "Frostburst", type: ["elemental"] },         { word: "Blizzardburst", type: ["elemental"] },         { word: "Icesurge", type: ["elemental"] },         { word: "Snowstormer", type: ["elemental"] },         { word: "Froststorm", type: ["elemental"] },         { word: "Glacierfang", type: ["elemental"] },         { word: "Icefangpaw", type: ["elemental"] },         { word: "Snowfangpaw", type: ["elemental"] },         { word: "Frostfangpaw", type: ["elemental"] },         { word: "Iciclefang", type: ["elemental"] },         { word: "Glacialfang", type: ["elemental"] },         { word: "Wavefang", type: ["elemental"] },         { word: "Tidefang", type: ["elemental"] },         { word: "Oceanfang", type: ["elemental"] },         { word: "Surfclaw", type: ["elemental"] },         { word: "Streamclaw", type: ["elemental"] },         { word: "Riverclaw", type: ["elemental"] },         { word: "Snowtail", type: ["elemental"] },         { word: "Icetail", type: ["elemental"] },         { word: "Frostatail", type: ["elemental"] },         { word: "Blizzardtail", type: ["elemental"] },         { word: "Icewhisker", type: ["elemental"] },         { word: "Frostwhisker", type: ["elemental"] },         { word: "Snowwhisker", type: ["elemental"] },         { word: "Blizzardwhisker", type: ["elemental"] },         { word: "Wavewhisker", type: ["elemental"] },         { word: "Surfwhisker", type: ["elemental"] },         { word: "Tidewhisker", type: ["elemental"] },         { word: "Oceanwhisker", type: ["elemental"] },         { word: "Streamwhisker", type: ["elemental"] },         { word: "Riverwhisker", type: ["elemental"] },         { word: "Dewwhisker", type: ["elemental"] },         { word: "Mistwhisker", type: ["elemental"] },         { word: "Fogwhisker", type: ["elemental"] },         { word: "Icewing", type: ["elemental"] },         { word: "Frostwing", type: ["elemental"] },         { word: "Snowwing", type: ["elemental"] },         { word: "Blizzardwing", type: ["elemental"] },         { word: "Glacialwing", type: ["elemental"] },         { word: "Wavewing", type: ["elemental"] },         { word: "Surfwing", type: ["elemental"] },         { word: "Tidewing", type: ["elemental"] },         { word: "Oceanwing", type: ["elemental"] },         { word: "Steamwing", type: ["elemental"] },         { word: "Frostbitewing", type: ["elemental"] },         { word: "Iciclewing", type: ["elemental"] },         { word: "Snowfall", type: ["elemental"] },         { word: "Icefallpaw", type: ["elemental"] },         { word: "Frostfall", type: ["elemental"] },         { word: "Blizzardfall", type: ["elemental"] },         { word: "Snowstormpaw", type: ["elemental"] },         { word: "Icebergpaw", type: ["elemental"] },         { word: "Glacierpaw", type: ["elemental"] },         { word: "Snowcap", type: ["elemental"] },         { word: "Frostcap", type: ["elemental"] },         { word: "Icesoul", type: ["elemental"] },         { word: "Snowsoul", type: ["elemental"] },         { word: "Frostsoul", type: ["elemental"] },         { word: "Iceheart", type: ["elemental"] },         { word: "Frostheart", type: ["elemental"] },         { word: "Snowheart", type: ["elemental"] },         { word: "Blizzardheart", type: ["elemental"] },         { word: "Air", type: ["elemental"] },         { word: "Wind", type: ["elemental"] },         { word: "Breeze", type: ["elemental"] },         { word: "Gust", type: ["elemental"] },         { word: "Gale", type: ["elemental"] },         { word: "Stormwind", type: ["elemental"] },         { word: "Tornado", type: ["elemental"] },         { word: "Cyclone", type: ["elemental"] },         { word: "Twister", type: ["elemental"] },         { word: "Whirlwind", type: ["elemental"] },         { word: "Zephyr", type: ["elemental"] },         { word: "Draft", type: ["elemental"] },         { word: "Puff", type: ["elemental"] },         { word: "Updraft", type: ["elemental"] },         { word: "Downdraft", type: ["elemental"] },         { word: "Squall", type: ["elemental"] },         { word: "Tempest", type: ["elemental"] },         { word: "Windstorm", type: ["elemental"] },         { word: "Windblast", type: ["elemental"] },         { word: "Windwhisper", type: ["elemental"] },         { word: "Whiff", type: ["elemental"] },         { word: "Whisk", type: ["elemental"] },         { word: "Flurry", type: ["elemental"] },         { word: "Fluster", type: ["elemental"] },         { word: "Blast", type: ["elemental"] },         { word: "Blow", type: ["elemental"] },         { word: "Blowstorm", type: ["elemental"] },         { word: "Hurricanepaw", type: ["elemental"] },         { word: "Cyclonepaw", type: ["elemental"] },         { word: "Tornadopaw", type: ["elemental"] },         { word: "Gustpaw", type: ["elemental"] },         { word: "Zephyrapaw", type: ["elemental"] },         { word: "Breezeclaw", type: ["elemental"] },         { word: "Windclaw", type: ["elemental"] },         { word: "Galeclaw", type: ["elemental"] },         { word: "Tornadoclaw", type: ["elemental"] },         { word: "Cycloneclaw", type: ["elemental"] },         { word: "Whirlpaw", type: ["elemental"] },         { word: "Whirlclaw", type: ["elemental"] },         { word: "Puffpaw", type: ["elemental"] },         { word: "Flurypaw", type: ["elemental"] },         { word: "Updraftpaw", type: ["elemental"] },         { word: "Downdraftpaw", type: ["elemental"] },         { word: "Squallpaw", type: ["elemental"] },         { word: "Tempestpaw", type: ["elemental"] },         { word: "Windwhisker", type: ["elemental"] },         { word: "Gustwhisker", type: ["elemental"] },         { word: "Cyclonewhisker", type: ["elemental"] },         { word: "Tornadowhisker", type: ["elemental"] },         { word: "Zephyrwing", type: ["elemental"] },         { word: "Windwing", type: ["elemental"] },         { word: "Galeewing", type: ["elemental"] },         { word: "Tornadowing", type: ["elemental"] },         { word: "Cyclonewing", type: ["elemental"] },         { word: "Whirlwing", type: ["elemental"] },         { word: "Flurrywing", type: ["elemental"] },         { word: "Draftwing", type: ["elemental"] },         { word: "Breezetail", type: ["elemental"] },         { word: "Gusttail", type: ["elemental"] },         { word: "Zephyrtail", type: ["elemental"] },         { word: "Tornadotail", type: ["elemental"] },         { word: "Cyclonetail", type: ["elemental"] },         { word: "Pufftail", type: ["elemental"] },         { word: "Blasttail", type: ["elemental"] },         { word: "Whispertail", type: ["elemental"] },         { word: "Flufftail", type: ["elemental"] },         { word: "Breezeheart", type: ["elemental"] },         { word: "Windheart", type: ["elemental"] },         { word: "Galeheart", type: ["elemental"] },         { word: "Tornadoheart", type: ["elemental"] },         { word: "Cycloneheart", type: ["elemental"] },         { word: "Tempestheart", type: ["elemental"] },         { word: "Zephyrheart", type: ["elemental"] },         { word: "Whirlheart", type: ["elemental"] },         { word: "Updraftheart", type: ["elemental"] },         { word: "Downdraftheart", type: ["elemental"] },         { word: "Squallheart", type: ["elemental"] },         { word: "Hurricanetail", type: ["elemental"] },         { word: "Breezepaw", type: ["elemental"] },         { word: "Windpaw", type: ["elemental"] },         { word: "Earth", type: ["elemental"] },         { word: "Stone", type: ["elemental"] },         { word: "Rock", type: ["elemental"] },         { word: "Boulder", type: ["elemental"] },         { word: "Pebble", type: ["elemental"] },         { word: "Gravel", type: ["elemental"] },         { word: "Sand", type: ["elemental"] },         { word: "Soil", type: ["elemental"] },         { word: "Clay", type: ["elemental"] },         { word: "Mud", type: ["elemental"] },         { word: "Dirt", type: ["elemental"] },         { word: "Dust", type: ["elemental"] },         { word: "Terrain", type: ["elemental"] },         { word: "Crag", type: ["elemental"] },         { word: "Cliff", type: ["elemental"] },         { word: "Mountain", type: ["elemental"] },         { word: "Hill", type: ["elemental"] },         { word: "Valley", type: ["elemental"] },         { word: "Cavern", type: ["elemental"] },         { word: "Cave", type: ["elemental"] },         { word: "Crust", type: ["elemental"] },         { word: "Mantle", type: ["elemental"] },         { word: "Core", type: ["elemental"] },         { word: "Terra", type: ["elemental"] },         { word: "Geode", type: ["elemental"] },         { word: "Crystal", type: ["elemental"] },         { word: "Quartz", type: ["elemental"] },         { word: "Flint", type: ["elemental"] },         { word: "Gem", type: ["elemental"] },         { word: "Ore", type: ["elemental"] },         { word: "Mineral", type: ["elemental"] },         { word: "Coal", type: ["elemental"] },         { word: "Iron", type: ["elemental"] },         { word: "Silver", type: ["elemental"] },         { word: "Gold", type: ["elemental"] },         { word: "Copper", type: ["elemental"] },         { word: "Bronze", type: ["elemental"] },         { word: "Rockpaw", type: ["elemental"] },         { word: "Stonepaw", type: ["elemental"] },         { word: "Claypaw", type: ["elemental"] },         { word: "Mudpaw", type: ["elemental"] },         { word: "Pebblepaw", type: ["elemental"] },         { word: "Dustpaw", type: ["elemental"] },         { word: "Boulderpaw", type: ["elemental"] },         { word: "Cragpaw", type: ["elemental"] },         { word: "Cliffpaw", type: ["elemental"] },         { word: "Hillpaw", type: ["elemental"] },         { word: "Valleyclaw", type: ["elemental"] },         { word: "Cavernclaw", type: ["elemental"] },         { word: "Cavepaw", type: ["elemental"] },         { word: "Crustpaw", type: ["elemental"] },         { word: "Mantlepaw", type: ["elemental"] },         { word: "Corepaw", type: ["elemental"] },         { word: "Terrapaw", type: ["elemental"] },         { word: "Geodepaw", type: ["elemental"] },         { word: "Crystalpaw", type: ["elemental"] },         { word: "Quartzpaw", type: ["elemental"] },         { word: "Flintpaw", type: ["elemental"] },         { word: "Gempaw", type: ["elemental"] },         { word: "Orepaw", type: ["elemental"] },         { word: "Mineralpaw", type: ["elemental"] },         { word: "Coalpaw", type: ["elemental"] },         { word: "Ironpaw", type: ["elemental"] },         { word: "Silverpaw", type: ["elemental"] },         { word: "Goldpaw", type: ["elemental"] },         { word: "Copperpaw", type: ["elemental"] },         { word: "Bronzepaw", type: ["elemental"] },         { word: "Rockclaw", type: ["elemental"] },         { word: "Stoneclaw", type: ["elemental"] },         { word: "Clayclaw", type: ["elemental"] },         { word: "Mudclaw", type: ["elemental"] },         { word: "Pebbleclaw", type: ["elemental"] },         { word: "Dustclaw", type: ["elemental"] },         { word: "Boulderclaw", type: ["elemental"] },         { word: "Cragclaw", type: ["elemental"] },         { word: "Cliffclaw", type: ["elemental"] },         { word: "Hillclaw", type: ["elemental"] },         { word: "Caveclaw", type: ["elemental"] },         { word: "Crustclaw", type: ["elemental"] },         { word: "Mantleclaw", type: ["elemental"] },         { word: "Coreclaw", type: ["elemental"] },         { word: "Terraclaw", type: ["elemental"] },         { word: "Geodeclaw", type: ["elemental"] },         { word: "Crystalclaw", type: ["elemental"] },         { word: "Quartzclaw", type: ["elemental"] },         { word: "Flintclaw", type: ["elemental"] },         { word: "Gemclaw", type: ["elemental"] },         { word: "Oreclaw", type: ["elemental"] },         { word: "Mineralclaw", type: ["elemental"] },         { word: "Coalclaw", type: ["elemental"] },         { word: "Ironclaw", type: ["elemental"] },         { word: "Silverclaw", type: ["elemental"] },         { word: "Goldclaw", type: ["elemental"] },         { word: "Copperclaw", type: ["elemental"] },         { word: "Bronzeclaw", type: ["elemental"] },         { word: "Earthpaw", type: ["elemental"] },         { word: "Stoneheart", type: ["elemental"] },         { word: "Rockheart", type: ["elemental"] },         { word: "Mudheart", type: ["elemental"] },         { word: "Clayheart", type: ["elemental"] },         { word: "Pebbleheart", type: ["elemental"] },         { word: "Dustheart", type: ["elemental"] },         { word: "Boulderheart", type: ["elemental"] },         { word: "Cragheart", type: ["elemental"] },         { word: "Cliffheart", type: ["elemental"] },         { word: "Hillheart", type: ["elemental"] },         { word: "Valleyheart", type: ["elemental"] },         { word: "Cavernheart", type: ["elemental"] },         { word: "Caveheart", type: ["elemental"] },         { word: "Crystalheart", type: ["elemental"] },         { word: "Quartzheart", type: ["elemental"] },         { word: "Flintheart", type: ["elemental"] },         { word: "Gemheart", type: ["elemental"] },         { word: "Oreheart", type: ["elemental"] },         { word: "Mineralheart", type: ["elemental"] },         { word: "Coalheart", type: ["elemental"] },         { word: "Ironheart", type: ["elemental"] },         { word: "Silverheart", type: ["elemental"] },         { word: "Goldheart", type: ["elemental"] },         { word: "Copperheart", type: ["elemental"] },         { word: "Bronzeheart", type: ["elemental"] },         { word: "Earthwhisker", type: ["elemental"] },         { word: "Stonewhisker", type: ["elemental"] },         { word: "Rockwhisker", type: ["elemental"] },         { word: "Mudwhisker", type: ["elemental"] },         { word: "Claywhisker", type: ["elemental"] },         { word: "Pebblewhisker", type: ["elemental"] },         { word: "Dustwhisker", type: ["elemental"] },         { word: "Boulderwhisker", type: ["elemental"] },         { word: "Cragwhisker", type: ["elemental"] },         { word: "Cliffwhisker", type: ["elemental"] },         { word: "Hillwhisker", type: ["elemental"] },         { word: "Valleywhisker", type: ["elemental"] },         { word: "Cavernwhisker", type: ["elemental"] },         { word: "Cavewhisker", type: ["elemental"] },         { word: "Crystalwhisker", type: ["elemental"] },         { word: "Quartzwhisker", type: ["elemental"] },         { word: "Flintwhisker", type: ["elemental"] },         { word: "Gemwhisker", type: ["elemental"] },         { word: "Orewhisker", type: ["elemental"] },         { word: "Mineralwhisker", type: ["elemental"] },         { word: "Coalwhisker", type: ["elemental"] },         { word: "Ironwhisker", type: ["elemental"] },         { word: "Silverwhisker", type: ["elemental"] },         { word: "Goldwhisker", type: ["elemental"] },         { word: "Copperwhisker", type: ["elemental"] },         { word: "Bronzewhisker", type: ["elemental"] },         { word: "Earthwing", type: ["elemental"] },         { word: "Stonewing", type: ["elemental"] },         { word: "Rockwing", type: ["elemental"] },         { word: "Mudwing", type: ["elemental"] },         { word: "Claywing", type: ["elemental"] },         { word: "Pebblewing", type: ["elemental"] },         { word: "Dustwing", type: ["elemental"] },         { word: "Boulderwing", type: ["elemental"] },         { word: "Cragwing", type: ["elemental"] },         { word: "Cliffwing", type: ["elemental"] },         { word: "Hillwing", type: ["elemental"] },         { word: "Valleywing", type: ["elemental"] },         { word: "Cavernwing", type: ["elemental"] },         { word: "Cavewing", type: ["elemental"] },         { word: "Crystalwing", type: ["elemental"] },         { word: "Quartzwing", type: ["elemental"] },         { word: "Flintwing", type: ["elemental"] },         { word: "Gemwing", type: ["elemental"] },         { word: "Orewing", type: ["elemental"] },         { word: "Mineralwing", type: ["elemental"] },         { word: "Coalwing", type: ["elemental"] },         { word: "Ironwing", type: ["elemental"] },         { word: "Silverwing", type: ["elemental"] },         { word: "Goldwing", type: ["elemental"] },         { word: "Copperwing", type: ["elemental"] },         { word: "Bronzewing", type: ["elemental"] },         { word: "Earthtail", type: ["elemental"] },         { word: "Stonetail", type: ["elemental"] },         { word: "Rocktail", type: ["elemental"] },         { word: "Mudtail", type: ["elemental"] },         { word: "Claytail", type: ["elemental"] },         { word: "Pebbletail", type: ["elemental"] },         { word: "Dusttail", type: ["elemental"] },         { word: "Bouldertail", type: ["elemental"] },         { word: "Cragtail", type: ["elemental"] },         { word: "Clifftail", type: ["elemental"] },         { word: "Hilltail", type: ["elemental"] },         { word: "Valleytail", type: ["elemental"] },         { word: "Caverntail", type: ["elemental"] },         { word: "Cawetail", type: ["elemental"] },         { word: "CrystalTail", type: ["elemental"] },         { word: "Quartztail", type: ["elemental"] },         { word: "Flinttail", type: ["elemental"] },         { word: "Gemtail", type: ["elemental"] },         { word: "Oretail", type: ["elemental"] },         { word: "Mineraltail", type: ["elemental"] },         { word: "Coaltail", type: ["elemental"] },         { word: "Irontail", type: ["elemental"] },         { word: "Silvertail", type: ["elemental"] },         { word: "Goldtail", type: ["elemental"] },         { word: "Coppertail", type: ["elemental"] },         { word: "Lightning", type: ["elemental"] },         { word: "Thunder", type: ["elemental"] },         { word: "Bolt", type: ["elemental"] },         { word: "Shock", type: ["elemental"] },         { word: "Zap", type: ["elemental"] },         { word: "Flash", type: ["elemental"] },         { word: "Thunderclap", type: ["elemental"] },         { word: "Thunderbolt", type: ["elemental"] },         { word: "Electra", type: ["elemental"] },         { word: "Electric", type: ["elemental"] },         { word: "Static", type: ["elemental"] },         { word: "Voltage", type: ["elemental"] },         { word: "Surge", type: ["elemental"] },         { word: "Arc", type: ["elemental"] },         { word: "Charge", type: ["elemental"] },         { word: "Electropaw", type: ["elemental"] },         { word: "Boltclaw", type: ["elemental"] },         { word: "Zapclaw", type: ["elemental"] },         { word: "Flashclaw", type: ["elemental"] },         { word: "Thunderpaw", type: ["elemental"] },         { word: "Lightningpaw", type: ["elemental"] },         { word: "Shockpaw", type: ["elemental"] },         { word: "Electrapaw", type: ["elemental"] },         { word: "Stormpaw", type: ["elemental"] },         { word: "Arcclaw", type: ["elemental"] },         { word: "Voltpaw", type: ["elemental"] },         { word: "Surgepaw", type: ["elemental"] },         { word: "Zapfang", type: ["elemental"] },         { word: "Shockfang", type: ["elemental"] },         { word: "Lightningfang", type: ["elemental"] },         { word: "Thunderfang", type: ["elemental"] },         { word: "Flashfang", type: ["elemental"] },         { word: "Electrafang", type: ["elemental"] },         { word: "Boltfang", type: ["elemental"] },         { word: "Stormfang", type: ["elemental"] },         { word: "Tempestfang", type: ["elemental"] },         { word: "Stormheart", type: ["elemental"] },         { word: "Thunderheart", type: ["elemental"] },         { word: "Lightningheart", type: ["elemental"] },         { word: "Flashheart", type: ["elemental"] },         { word: "Electraheart", type: ["elemental"] },         { word: "Shockheart", type: ["elemental"] },         { word: "Voltheart", type: ["elemental"] },         { word: "Surgeheart", type: ["elemental"] },         { word: "Arcpaw", type: ["elemental"] },         { word: "Zapheart", type: ["elemental"] },         { word: "Sparkclaw", type: ["elemental"] },         { word: "Sparkfang", type: ["elemental"] },         { word: "Sparkheart", type: ["elemental"] },         { word: "Thunderclaw", type: ["elemental"] },         { word: "Thunderboltpaw", type: ["elemental"] },         { word: "Lightningclaw", type: ["elemental"] },         { word: "Flashpaw", type: ["elemental"] },         { word: "Arcfang", type: ["elemental"] },         { word: "Archeart", type: ["elemental"] },         { word: "Stormclaw", type: ["elemental"] },         { word: "Stormtail", type: ["elemental"] },         { word: "Tempestclaw", type: ["elemental"] },         { word: "Tempesttail", type: ["elemental"] },         { word: "Electrapawpaw", type: ["elemental"] },         { word: "Shocktail", type: ["elemental"] },         { word: "Boltpaw", type: ["elemental"] },         { word: "Surgeclaw", type: ["elemental"] },         { word: "Zaptail", type: ["elemental"] },         { word: "Flashtail", type: ["elemental"] },         { word: "Lightningtail", type: ["elemental"] },         { word: "Thunderpawpaw", type: ["elemental"] },         { word: "Sparkwhisker", type: ["elemental"] },         { word: "Shockwhisker", type: ["elemental"] },         { word: "Boltwhisker", type: ["elemental"] },         { word: "Thunderwhisker", type: ["elemental"] },         { word: "Lightningwhisker", type: ["elemental"] },         { word: "Flashwhisker", type: ["elemental"] },         { word: "Stormwhisker", type: ["elemental"] },         { word: "Tempestwhisker", type: ["elemental"] },         { word: "Electrawhisker", type: ["elemental"] },         { word: "Zappaw", type: ["elemental"] },         { word: "Voltclaw", type: ["elemental"] },         { word: "Voltfang", type: ["elemental"] },         { word: "Surgefear", type: ["elemental"] },         { word: "Thunderflash", type: ["elemental"] },         { word: "Lightningflash", type: ["elemental"] },         { word: "Stormflash", type: ["elemental"] },         { word: "Tempestflash", type: ["elemental"] },         { word: "Shockflash", type: ["elemental"] },         { word: "Arclight", type: ["elemental"] },         { word: "Boltflash", type: ["elemental"] },         { word: "Sparkflash", type: ["elemental"] },         { word: "Thunderstrike", type: ["elemental"] },         { word: "Lightningstrike", type: ["elemental"] },         { word: "Stormstrike", type: ["elemental"] },         { word: "Tempeststrike", type: ["elemental"] },         { word: "Shockstrike", type: ["elemental"] },         { word: "Voltstrike", type: ["elemental"] },         { word: "Surgestrike", type: ["elemental"] },         { word: "Flashstrike", type: ["elemental"] },         { word: "Arcpounce", type: ["elemental"] },         { word: "Boltstrike", type: ["elemental"] },         { word: "Sparkstrike", type: ["elemental"] },         { word: "Shockclaw", type: ["elemental"] },         { word: "Electraclaw", type: ["elemental"] },         { word: "Tree", type: ["elemental"] },         { word: "Leaf", type: ["elemental"] },         { word: "Branch", type: ["elemental"] },         { word: "Twig", type: ["elemental"] },         { word: "Root", type: ["elemental"] },         { word: "Bark", type: ["elemental"] },         { word: "Forest", type: ["elemental"] },         { word: "Woods", type: ["elemental"] },         { word: "Grove", type: ["elemental"] },         { word: "Meadow", type: ["elemental"] },         { word: "Field", type: ["elemental"] },         { word: "Grass", type: ["elemental"] },         { word: "Moss", type: ["elemental"] },         { word: "Fern", type: ["elemental"] },         { word: "Vine", type: ["elemental"] },         { word: "Ivy", type: ["elemental"] },         { word: "Blossom", type: ["elemental"] },         { word: "Bloom", type: ["elemental"] },         { word: "Petal", type: ["elemental"] },         { word: "Flower", type: ["elemental"] },         { word: "Seed", type: ["elemental"] },         { word: "Sprout", type: ["elemental"] },         { word: "Shoot", type: ["elemental"] },         { word: "Bud", type: ["elemental"] },         { word: "Sapling", type: ["elemental"] },         { word: "Thorn", type: ["elemental"] },         { word: "Bramble", type: ["elemental"] },         { word: "Bush", type: ["elemental"] },         { word: "Shrub", type: ["elemental"] },         { word: "Canopy", type: ["elemental"] },         { word: "Pine", type: ["elemental"] },         { word: "Oak", type: ["elemental"] },         { word: "Maple", type: ["elemental"] },         { word: "Willow", type: ["elemental"] },         { word: "Birch", type: ["elemental"] },         { word: "Cedar", type: ["elemental"] },         { word: "Redwood", type: ["elemental"] },         { word: "Spruce", type: ["elemental"] },         { word: "Elm", type: ["elemental"] },         { word: "Fir", type: ["elemental"] },         { word: "Cypress", type: ["elemental"] },         { word: "Alder", type: ["elemental"] },         { word: "Hawthorn", type: ["elemental"] },         { word: "Rowan", type: ["elemental"] },         { word: "Hazel", type: ["elemental"] },         { word: "Chestnut", type: ["elemental"] },         { word: "Acorn", type: ["elemental"] },         { word: "Berry", type: ["elemental"] },         { word: "Juniper", type: ["elemental"] },         { word: "Fernpaw", type: ["elemental"] },         { word: "Leafpaw", type: ["elemental"] },         { word: "Twigpaw", type: ["elemental"] },         { word: "Rootpaw", type: ["elemental"] },         { word: "Barkpaw", type: ["elemental"] },         { word: "Forestpaw", type: ["elemental"] },         { word: "Woodpaw", type: ["elemental"] },         { word: "Meadowpaw", type: ["elemental"] },         { word: "Grasspaw", type: ["elemental"] },         { word: "Mossypaw", type: ["elemental"] },         { word: "Vinepaw", type: ["elemental"] },         { word: "Ivyspaw", type: ["elemental"] },         { word: "Blossompaw", type: ["elemental"] },         { word: "Bloompaw", type: ["elemental"] },         { word: "Petalpaw", type: ["elemental"] },         { word: "Flowerpaw", type: ["elemental"] },         { word: "Seedpaw", type: ["elemental"] },         { word: "Sproutpaw", type: ["elemental"] },         { word: "Shootpaw", type: ["elemental"] },         { word: "Budpaw", type: ["elemental"] },         { word: "Saplingpaw", type: ["elemental"] },         { word: "Thornpaw", type: ["elemental"] },         { word: "Bramblepaw", type: ["elemental"] },         { word: "Bushpaw", type: ["elemental"] },         { word: "Shrubpaw", type: ["elemental"] },         { word: "Canopypaw", type: ["elemental"] },         { word: "Pinepaw", type: ["elemental"] },         { word: "Oakpaw", type: ["elemental"] },         { word: "Maplepaw", type: ["elemental"] },         { word: "Willowpaw", type: ["elemental"] },         { word: "Birchpaw", type: ["elemental"] },         { word: "Cedarpaw", type: ["elemental"] },         { word: "Redwoodpaw", type: ["elemental"] },         { word: "Sprucepaw", type: ["elemental"] },         { word: "Elmpaw", type: ["elemental"] },         { word: "Firpaw", type: ["elemental"] },         { word: "Cypresspaw", type: ["elemental"] },         { word: "Alderpaw", type: ["elemental"] },         { word: "Ashpaw", type: ["elemental"] },         { word: "Hawthornpaw", type: ["elemental"] },         { word: "Rowanpaw", type: ["elemental"] },         { word: "Hazelpaw", type: ["elemental"] },         { word: "Chestnutpaw", type: ["elemental"] },         { word: "Acornpaw", type: ["elemental"] },         { word: "Berrypaw", type: ["elemental"] },         { word: "Fernclaw", type: ["elemental"] },         { word: "Leafclaw", type: ["elemental"] },         { word: "Twigclaw", type: ["elemental"] },         { word: "Rootclaw", type: ["elemental"] },         { word: "Barkclaw", type: ["elemental"] },         { word: "Forestclaw", type: ["elemental"] },         { word: "Woodclaw", type: ["elemental"] },         { word: "Meadowclaw", type: ["elemental"] },         { word: "Grassclaw", type: ["elemental"] },         { word: "Mossyclaw", type: ["elemental"] },         { word: "Vineclaw", type: ["elemental"] },         { word: "Ivyclaw", type: ["elemental"] },         { word: "Blossomclaw", type: ["elemental"] },         { word: "Bloomclaw", type: ["elemental"] },         { word: "Petalclaw", type: ["elemental"] },         { word: "Flowerclaw", type: ["elemental"] },         { word: "Seedclaw", type: ["elemental"] },         { word: "Sproutclaw", type: ["elemental"] },         { word: "Shootclaw", type: ["elemental"] },         { word: "Budclaw", type: ["elemental"] },         { word: "Saplingclaw", type: ["elemental"] },         { word: "Thornclaw", type: ["elemental"] },         { word: "Brambleclaw", type: ["elemental"] },         { word: "Bushclaw", type: ["elemental"] },         { word: "Shrubclaw", type: ["elemental"] },         { word: "Canopyclaw", type: ["elemental"] },         { word: "Pineclaw", type: ["elemental"] },         { word: "Oakclaw", type: ["elemental"] },         { word: "Mapleclaw", type: ["elemental"] },         { word: "Willowclaw", type: ["elemental"] },         { word: "Birchclaw", type: ["elemental"] },         { word: "Cedarclaw", type: ["elemental"] },         { word: "Redwoodclaw", type: ["elemental"] },         { word: "Spruceclaw", type: ["elemental"] },         { word: "Elmclaw", type: ["elemental"] },         { word: "Firclaw", type: ["elemental"] },         { word: "Cypressclaw", type: ["elemental"] },         { word: "Alderclaw", type: ["elemental"] },         { word: "Ashclaw", type: ["elemental"] },         { word: "Hawthornclaw", type: ["elemental"] },         { word: "Rowanclaw", type: ["elemental"] },         { word: "Hazelclaw", type: ["elemental"] },         { word: "Chestnutclaw", type: ["elemental"] },         { word: "Acornclaw", type: ["elemental"] },         { word: "Berryclaw", type: ["elemental"] },         { word: "Fernheart", type: ["elemental"] },         { word: "Leafheart", type: ["elemental"] },         { word: "Twigheart", type: ["elemental"] },         { word: "Rootheart", type: ["elemental"] },         { word: "Barkheart", type: ["elemental"] },         { word: "Forestheart", type: ["elemental"] },         { word: "Woodheart", type: ["elemental"] },         { word: "Meadowheart", type: ["elemental"] },         { word: "Grassheart", type: ["elemental"] },         { word: "Abyss", type: ["evil"] },         { word: "Agony", type: ["evil"] },         { word: "Alucard", type: ["evil"] },         { word: "Anubis", type: ["evil"] },         { word: "Ashes", type: ["evil"] },         { word: "Banshee", type: ["evil"] },         { word: "Barftholomew", type: ["evil"] },         { word: "Batnip", type: ["evil"] },         { word: "Beelzebub", type: ["evil"] },         { word: "Beetlejuice", type: ["evil"] },         { word: "Blackpaw", type: ["evil"] },         { word: "Blight", type: ["evil"] },         { word: "Bloodfang", type: ["evil"] },         { word: "Boogey", type: ["evil"] },         { word: "Boo", type: ["evil"] },         { word: "Bone", type: ["evil"] },         { word: "Bonesnap", type: ["evil"] },         { word: "Booful", type: ["evil"] },         { word: "Boohoo", type: ["evil"] },         { word: "Boopocalypse", type: ["evil"] },         { word: "Brimstone", type: ["evil"] },         { word: "Cadaver", type: ["evil"] },         { word: "Cauldron", type: ["evil"] },         { word: "Chiller", type: ["evil"] },         { word: "Chompers", type: ["evil"] },         { word: "Clawdia", type: ["evil"] },         { word: "Clawsome", type: ["evil"] },         { word: "Coffin", type: ["evil"] },         { word: "Crypt", type: ["evil"] },         { word: "Creep", type: ["evil"] },         { word: "Creepy", type: ["evil"] },         { word: "Croak", type: ["evil"] },         { word: "Cruella", type: ["evil"] },         { word: "Cthulhu", type: ["evil"] },         { word: "Cutpaw", type: ["evil"] },         { word: "Darkpaw", type: ["evil"] },         { word: "Darkness", type: ["evil"] },         { word: "Deadeye", type: ["evil"] },         { word: "Deathclaw", type: ["evil"] },         { word: "Deathpaw", type: ["evil"] },         { word: "Demon", type: ["evil"] },         { word: "Diablo", type: ["evil"] },         { word: "Dread", type: ["evil"] },         { word: "Dreadful", type: ["evil"] },         { word: "Draculapurr", type: ["evil"] },         { word: "Dracula", type: ["evil"] },         { word: "Drippy", type: ["evil"] },         { word: "Fang", type: ["evil"] },         { word: "Fangula", type: ["evil"] },         { word: "Fearpaw", type: ["evil"] },         { word: "Fiend", type: ["evil"] },         { word: "Fright", type: ["evil"] },         { word: "Frightfur", type: ["evil"] },         { word: "Furrtune", type: ["evil"] },         { word: "Furrypocalypse", type: ["evil"] },         { word: "Ghast", type: ["evil"] },         { word: "Ghost", type: ["evil"] },         { word: "Ghostpaw", type: ["evil"] },         { word: "Ghoul", type: ["evil"] },         { word: "Gory", type: ["evil"] },         { word: "Gremlin", type: ["evil"] },         { word: "Grim", type: ["evil"] },         { word: "Grimalkin", type: ["evil"] },         { word: "Grimmy", type: ["evil"] },         { word: "Grimtail", type: ["evil"] },         { word: "Hallow", type: ["evil"] },         { word: "Hallowpaw", type: ["evil"] },         { word: "Haunt", type: ["evil"] },         { word: "Haunter", type: ["evil"] },         { word: "Hex", type: ["evil"] },         { word: "Hexpaw", type: ["evil"] },         { word: "Horror", type: ["evil"] },         { word: "Hiss-teria", type: ["evil"] },         { word: "Howl", type: ["evil"] },         { word: "Hiss", type: ["evil"] },         { word: "Hissy", type: ["evil"] },         { word: "Hiss-terical", type: ["evil"] },         { word: "Ick", type: ["evil"] },         { word: "Inferno", type: ["evil"] },         { word: "Jack (as in Jack O’Lantern)", type: ["evil"] },         { word: "Jinx", type: ["evil"] },         { word: "Jitters", type: ["evil"] },         { word: "Khaos", type: ["evil"] },         { word: "Killer", type: ["evil"] },         { word: "Kraven", type: ["evil"] },         { word: "Lich", type: ["evil"] },         { word: "Lurker", type: ["evil"] },         { word: "Lycan", type: ["evil"] },         { word: "Macabre", type: ["evil"] },         { word: "Maggot", type: ["evil"] },         { word: "Malice", type: ["evil"] },         { word: "Malicepaw", type: ["evil"] },         { word: "Mausoleum", type: ["evil"] },         { word: "Meatball (evil pun)", type: ["evil"] },         { word: "Menace", type: ["evil"] },         { word: "Midnight", type: ["evil"] },         { word: "Monster", type: ["evil"] },         { word: "Morte", type: ["evil"] },         { word: "Mummy", type: ["evil"] },         { word: "Murk", type: ["evil"] },         { word: "Nefarious", type: ["evil"] },         { word: "Nightmare", type: ["evil"] },         { word: "Nosferatu", type: ["evil"] },         { word: "Oddity", type: ["evil"] },         { word: "Ogre", type: ["evil"] },         { word: "Ooze", type: ["evil"] },         { word: "Pawsident Evil", type: ["evil"] },         { word: "Pawtrick (pun)", type: ["evil"] },         { word: "Pawltergeist", type: ["evil"] },         { word: "Phantom", type: ["evil"] },         { word: "Phantasm", type: ["evil"] },         { word: "Poe", type: ["evil"] },         { word: "Polterpaw", type: ["evil"] },         { word: "Purranormal", type: ["evil"] },         { word: "Purrlock (pun)", type: ["evil"] },         { word: "Purrminator", type: ["evil"] },         { word: "Purrsephone", type: ["evil"] },         { word: "Purrsula (pun)", type: ["evil"] },         { word: "Purrvana", type: ["evil"] },         { word: "Putrid", type: ["evil"] },         { word: "Raggedy", type: ["evil"] },         { word: "Raven", type: ["evil"] },         { word: "Reaper", type: ["evil"] },         { word: "Rotpaw", type: ["evil"] },         { word: "Rotten", type: ["evil"] },         { word: "Rust", type: ["evil"] },         { word: "Salem", type: ["evil"] },         { word: "Scream", type: ["evil"] },         { word: "Screech", type: ["evil"] },         { word: "Scythe", type: ["evil"] },         { word: "Shadow", type: ["evil"] },         { word: "Shivers", type: ["evil"] },         { word: "Shriek", type: ["evil"] },         { word: "Sinister", type: ["evil"] },         { word: "Skellington", type: ["evil"] },         { word: "Skulk", type: ["evil"] },         { word: "Slasher", type: ["evil"] },         { word: "Slime", type: ["evil"] },         { word: "Slither", type: ["evil"] },         { word: "Smog", type: ["evil"] },         { word: "Spook", type: ["evil"] },         { word: "Spooky", type: ["evil"] },         { word: "Spookums", type: ["evil"] },         { word: "Spurt", type: ["evil"] },         { word: "Stalker", type: ["evil"] },         { word: "Sting", type: ["evil"] },         { word: "Stinkpaw", type: ["evil"] },         { word: "Styx", type: ["evil"] },         { word: "Tabboo", type: ["evil"] },         { word: "Talon", type: ["evil"] },         { word: "Terror", type: ["evil"] },         { word: "Thorn", type: ["evil"] },         { word: "Thrasher", type: ["evil"] },         { word: "Tomb", type: ["evil"] },         { word: "Tombpaw", type: ["evil"] },         { word: "Toxic", type: ["evil"] },         { word: "Trickster", type: ["evil"] },         { word: "Twisted", type: ["evil"] },         { word: "Umber", type: ["evil"] },         { word: "Undead", type: ["evil"] },         { word: "Vex", type: ["evil"] },         { word: "Vile", type: ["evil"] },         { word: "Voodoo", type: ["evil"] },         { word: "Vortex", type: ["evil"] },         { word: "Wail", type: ["evil"] },         { word: "Wraith", type: ["evil"] },         { word: "Wicked", type: ["evil"] },         { word: "Widow", type: ["evil"] },         { word: "Wolfpaw", type: ["evil"] },         { word: "Wrath", type: ["evil"] },         { word: "Zom-paw", type: ["evil"] },         { word: "Zombie", type: ["evil"] },         { word: "Ashpaw", type: ["evil"] },         { word: "Batty", type: ["evil"] },         { word: "Bites", type: ["evil"] },         { word: "Blackfang", type: ["evil"] },         { word: "Blister", type: ["evil"] },         { word: "Boogie", type: ["evil"] },         { word: "Bonepaw", type: ["evil"] },         { word: "Boneclaw", type: ["evil"] },         { word: "Borkula (pun)", type: ["evil"] },         { word: "Boozilla", type: ["evil"] },         { word: "Brimclaw", type: ["evil"] },         { word: "Carrion", type: ["evil"] },         { word: "Catacomb", type: ["evil"] },         { word: "Catastrophe (pun)", type: ["evil"] },         { word: "Chaos", type: ["evil"] },         { word: "Clawrence (pun)", type: ["evil"] },         { word: "Clawzilla", type: ["evil"] }, 	        { word: "Corpse", type: ["evil"] },         { word: "Corpsepaw", type: ["evil"] },         { word: "Creeper", type: ["evil"] },         { word: "Croakpaw", type: ["evil"] },         { word: "Cryptpaw", type: ["evil"] },         { word: "Cuddles (evil ironic pun)", type: ["evil"] },         { word: "Dagger", type: ["evil"] },         { word: "Darkfur", type: ["evil"] },         { word: "Deathfur", type: ["evil"] },         { word: "Doom", type: ["evil"] },         { word: "Drip", type: ["evil"] },         { word: "Drool", type: ["evil"] },         { word: "Fangpaw", type: ["evil"] },         { word: "Fangster", type: ["evil"] },         { word: "Feral", type: ["evil"] },         { word: "Fester", type: ["evil"] },         { word: "Fiendpaw", type: ["evil"] },         { word: "Fizzgig", type: ["evil"] },         { word: "Frightpaw", type: ["evil"] },         { word: "Gash", type: ["evil"] },         { word: "Ghastpaw", type: ["evil"] },         { word: "Ghoulish", type: ["evil"] },         { word: "Gloom", type: ["evil"] },         { word: "Gnarls", type: ["evil"] },         { word: "Grimfur", type: ["evil"] },         { word: "Grizzly", type: ["evil"] },         { word: "Haunterpaw", type: ["evil"] },         { word: "Hellcat", type: ["evil"] },         { word: "Hexfur", type: ["evil"] },         { word: "Horrorclaw", type: ["evil"] },         { word: "Hisspaw", type: ["evil"] },         { word: "Hissling", type: ["evil"] },         { word: "Hocus", type: ["evil"] },         { word: "Hogwart (pun)", type: ["evil"] },         { word: "Hovel", type: ["evil"] },         { word: "Hound", type: ["evil"] },         { word: "Ickypaw", type: ["evil"] },         { word: "Imp", type: ["evil"] },         { word: "Jacko", type: ["evil"] },         { word: "Jitterspaw", type: ["evil"] },         { word: "Jinxpaw", type: ["evil"] },         { word: "Khaospaw", type: ["evil"] },         { word: "Killerpaw", type: ["evil"] },         { word: "Knave", type: ["evil"] },         { word: "Lament", type: ["evil"] },         { word: "Lurkpaw", type: ["evil"] },         { word: "Lycanpaw", type: ["evil"] },         { word: "Malefur", type: ["evil"] },         { word: "Malevolence", type: ["evil"] },         { word: "Malicious", type: ["evil"] },         { word: "Mausolpaw", type: ["evil"] },         { word: "Meowgic (pun)", type: ["evil"] },         { word: "Menacing", type: ["evil"] },         { word: "Midnightpaw", type: ["evil"] },         { word: "Monsterpaw", type: ["evil"] },         { word: "Morbid", type: ["evil"] },         { word: "Morsel (dark pun)", type: ["evil"] },         { word: "Mummypaw", type: ["evil"] },         { word: "Murkpaw", type: ["evil"] },         { word: "Nefarpaw", type: ["evil"] },         { word: "Nightmarepaw", type: ["evil"] },         { word: "Nosferapaw", type: ["evil"] },         { word: "Oddpaw", type: ["evil"] },         { word: "Ogrepaw", type: ["evil"] },         { word: "Oozeclaw", type: ["evil"] },         { word: "Pawseidon (pun)", type: ["evil"] },         { word: "Pawspicious", type: ["evil"] },         { word: "Pawsassin", type: ["evil"] },         { word: "Pawthulhu", type: ["evil"] },         { word: "Pawtrick", type: ["evil"] },         { word: "Pawtrified", type: ["evil"] },         { word: "Purranic", type: ["evil"] },         { word: "Purrlock", type: ["evil"] },         { word: "Purrsilla", type: ["evil"] },         { word: "Putridity", type: ["evil"] },         { word: "Quiver", type: ["evil"] },         { word: "Ragpaw", type: ["evil"] },         { word: "Ravenclaw", type: ["evil"] },         { word: "Reapurr", type: ["evil"] },         { word: "Rotclaw", type: ["evil"] },         { word: "Rottenpaw", type: ["evil"] },         { word: "Rustclaw", type: ["evil"] },         { word: "Salempaw", type: ["evil"] },         { word: "Scar", type: ["evil"] },         { word: "Scarface", type: ["evil"] },         { word: "Scareclaw", type: ["evil"] },         { word: "Screamclaw", type: ["evil"] },         { word: "Screechpaw", type: ["evil"] },         { word: "Scythepaw", type: ["evil"] },         { word: "Shadowpaw", type: ["evil"] },         { word: "Shiverclaw", type: ["evil"] },         { word: "Shriekpaw", type: ["evil"] },         { word: "Sinistpaw", type: ["evil"] },         { word: "Skelter", type: ["evil"] },         { word: "Skully", type: ["evil"] },         { word: "Slasherpaw", type: ["evil"] },         { word: "Slimepaw", type: ["evil"] },         { word: "Slitherpaw", type: ["evil"] },         { word: "Smogpaw", type: ["evil"] },         { word: "Spookpaw", type: ["evil"] },         { word: "Spurtpaw", type: ["evil"] },         { word: "Stalkerpaw", type: ["evil"] },         { word: "Stingpaw", type: ["evil"] },         { word: "Stinkclaw", type: ["evil"] },         { word: "Styxpaw", type: ["evil"] },         { word: "Tabboop", type: ["evil"] },         { word: "Talonpaw", type: ["evil"] },         { word: "Terrorpaw", type: ["evil"] },         { word: "Thornpaw", type: ["evil"] },         { word: "Thrasherpaw", type: ["evil"] },         { word: "Toxicpaw", type: ["evil"] },         { word: "Trickpaw", type: ["evil"] },         { word: "Twistedpaw", type: ["evil"] },         { word: "Umberpaw", type: ["evil"] },         { word: "Undeadpaw", type: ["evil"] },         { word: "Vexpaw", type: ["evil"] },         { word: "Vilepaw", type: ["evil"] },         { word: "Voodoopaw", type: ["evil"] },         { word: "Vortexpaw", type: ["evil"] },         { word: "Wailpaw", type: ["evil"] },         { word: "Wraithpaw", type: ["evil"] },         { word: "Wickedpaw", type: ["evil"] },         { word: "Widowpaw", type: ["evil"] },         { word: "Wolfclaw", type: ["evil"] },         { word: "Wrathpaw", type: ["evil"] },         { word: "Zompaw", type: ["evil"] },         { word: "Zombietail", type: ["evil"] },         { word: "Ashclaw", type: ["evil"] },         { word: "Batclaw", type: ["evil"] },         { word: "Bitepaw", type: ["evil"] },         { word: "Blackclaw", type: ["evil"] },         { word: "Blisterpaw", type: ["evil"] },         { word: "Boogiepaw", type: ["evil"] },         { word: "Borkpaw", type: ["evil"] },         { word: "Carrionpaw", type: ["evil"] },         { word: "Cataclaw", type: ["evil"] },         { word: "Catastropaw", type: ["evil"] },         { word: "Chaosclaw", type: ["evil"] },         { word: "Clawrence", type: ["evil"] },         { word: "Creeperpaw", type: ["evil"] },         { word: "Croakclaw", type: ["evil"] },         { word: "Cuddlepain (funny evil pun)", type: ["evil"] },         { word: "Daggerpaw", type: ["evil"] },         { word: "Darkclaw", type: ["evil"] },         { word: "Doomclaw", type: ["evil"] },         { word: "Drippaw", type: ["evil"] },         { word: "Droolpaw", type: ["evil"] },         { word: "Fangclaw", type: ["evil"] },         { word: "Feralpaw", type: ["evil"] },         { word: "Festerpaw", type: ["evil"] },         { word: "Fiendclaw", type: ["evil"] },         { word: "Fizzpaw", type: ["evil"] },         { word: "Frightclaw", type: ["evil"] },         { word: "Gashpaw", type: ["evil"] },         { word: "Ghastclaw", type: ["evil"] },         { word: "Gloompaw", type: ["evil"] },         { word: "Gnarlsclaw", type: ["evil"] },         { word: "Grimclaw", type: ["evil"] },         { word: "Grizzlypaw", type: ["evil"] },         { word: "Hauntpaw", type: ["evil"] },         { word: "Hellpaw", type: ["evil"] },         { word: "Hexclaw", type: ["evil"] },         { word: "Hissclaw", type: ["evil"] },         { word: "Hisslingpaw", type: ["evil"] },         { word: "Hocuspaw", type: ["evil"] },         { word: "Hogwartpaw", type: ["evil"] },         { word: "Hovelpaw", type: ["evil"] },         { word: "Houndpaw", type: ["evil"] },         { word: "Imppaw", type: ["evil"] },         { word: "Jackopaw", type: ["evil"] },         { word: "Jitterpaw", type: ["evil"] },         { word: "Jinxclaw", type: ["evil"] },         { word: "Killerclaw", type: ["evil"] },         { word: "Knavepaw", type: ["evil"] },         { word: "Lamentpaw", type: ["evil"] },         { word: "Lurkclaw", type: ["evil"] },         { word: "Lycanclaw", type: ["evil"] },         { word: "Malevolpaw", type: ["evil"] },         { word: "Maliciouspaw", type: ["evil"] },         { word: "Mausoleumpaw", type: ["evil"] },         { word: "Meowgicpaw", type: ["evil"] },         { word: "Menacingpaw", type: ["evil"] },         { word: "Midnightclaw", type: ["evil"] },         { word: "Morbidpaw", type: ["evil"] },         { word: "Morselpaw", type: ["evil"] },         { word: "Mummyclaw", type: ["evil"] },         { word: "Murkclaw", type: ["evil"] },         { word: "Nightmareclaw", type: ["evil"] },         { word: "Oddclaw", type: ["evil"] },         { word: "Ogreclaw", type: ["evil"] },         { word: "Pawseidon", type: ["evil"] },         { word: "Putridpaw", type: ["evil"] },         { word: "Quiverpaw", type: ["evil"] },         { word: "Ravenpaw", type: ["evil"] },         { word: "Rustpaw", type: ["evil"] },         { word: "Salemclaw", type: ["evil"] },         { word: "Scarclaw", type: ["evil"] },         { word: "Scarepaw", type: ["evil"] },         { word: "Screechclaw", type: ["evil"] },         { word: "Scytheclaw", type: ["evil"] },         { word: "Shadowclaw", type: ["evil"] },         { word: "Shriekclaw", type: ["evil"] },         { word: "Sinistclaw", type: ["evil"] },         { word: "Skelterpaw", type: ["evil"] },         { word: "Skullypaw", type: ["evil"] },         { word: "Slasherclaw", type: ["evil"] },         { word: "Slimeclaw", type: ["evil"] },         { word: "Slitherclaw", type: ["evil"] },         { word: "Smogclaw", type: ["evil"] },         { word: "Spookclaw", type: ["evil"] },         { word: "Spurtclaw", type: ["evil"] },         { word: "Stalkerclaw", type: ["evil"] },         { word: "Stingclaw", type: ["evil"] },         { word: "Styxclaw", type: ["evil"] },         { word: "Talonclaw", type: ["evil"] },         { word: "Terrorclaw", type: ["evil"] },         { word: "Thornclaw", type: ["evil"] },         { word: "Thrasherclaw", type: ["evil"] },         { word: "Tombclaw", type: ["evil"] },         { word: "Toxicclaw", type: ["evil"] },         { word: "Trickclaw", type: ["evil"] },         { word: "Twistedclaw", type: ["evil"] },         { word: "Umberclaw", type: ["evil"] },         { word: "Undeadclaw", type: ["evil"] },         { word: "Vexclaw", type: ["evil"] },         { word: "Vileclaw", type: ["evil"] },         { word: "Voodooclaws", type: ["evil"] },         { word: "Vortexclaw", type: ["evil"] },         { word: "Wailclaw", type: ["evil"] },         { word: "Wraithclaw", type: ["evil"] },         { word: "Wickedclaw", type: ["evil"] },         { word: "Widowclaw", type: ["evil"] },         { word: "Wrathclaw", type: ["evil"] },         { word: "Creeptail", type: ["evil"] },         { word: "Fangtail", type: ["evil"] },         { word: "Clawpocalypse", type: ["evil"] },         { word: "Pawhemoth", type: ["evil"] },         { word: "Scaremeow", type: ["evil"] },         { word: "Meowzilla", type: ["evil"] },         { word: "Purrge", type: ["evil"] },         { word: "Purrgatory", type: ["evil"] },         { word: "Meownster", type: ["evil"] },         { word: "Catrina (pun on Katrina + cat)", type: ["evil"] },         { word: "Catastrophe", type: ["evil"] },         { word: "Clawdius", type: ["evil"] },         { word: "Furrlock Holmes", type: ["evil"] },         { word: "Hisscula (Dracula pun)", type: ["evil"] },         { word: "Vladicat", type: ["evil"] },         { word: "Hairon (pun on Heron/Horror)", type: ["evil"] },         { word: "Meowgician", type: ["evil"] },         { word: "Clawtastrophe", type: ["evil"] },         { word: "Pawmageddon", type: ["evil"] },         { word: "Mewmortal", type: ["evil"] },         { word: "Scratchula", type: ["evil"] },         { word: "Meowpocalypse", type: ["evil"] },         { word: "Fangtastic", type: ["evil"] },         { word: "Pawcifer", type: ["evil"] },         { word: "Clawrence of Darkness", type: ["evil"] },         { word: "Pawtrick Swayze", type: ["evil"] },         { word: "Catnibal", type: ["evil"] },         { word: "Meowlius Caesar", type: ["evil"] },         { word: "Count Meowcula", type: ["evil"] },         { word: "Scratchy McScare", type: ["evil"] },         { word: "Enchanted", type: ["fantasy"] },         { word: "Eldritch", type: ["fantasy"] },         { word: "Fae", type: ["fantasy"] },         { word: "Runestone", type: ["fantasy"] },         { word: "Sorcery", type: ["fantasy"] },         { word: "Spellbound", type: ["fantasy"] },         { word: "Valkyrie", type: ["fantasy"] },         { word: "Thalassian", type: ["fantasy"] },         { word: "Astral", type: ["fantasy"] },         { word: "Gloomshade", type: ["fantasy"] },         { word: "Wyvern", type: ["fantasy"] },         { word: "Feywild", type: ["fantasy"] },         { word: "Mythril", type: ["fantasy"] },         { word: "Netherrealm", type: ["fantasy"] },         { word: "Celestial", type: ["fantasy"] },         { word: "Draegon", type: ["fantasy"] },         { word: "Twilight", type: ["fantasy"] },         { word: "Sylvan", type: ["fantasy"] },         { word: "Eclipsed", type: ["fantasy"] },         { word: "Amethyst", type: ["fantasy"] },         { word: "Chimera", type: ["fantasy"] },         { word: "Enigma", type: ["fantasy"] },         { word: "Aether", type: ["fantasy"] },         { word: "Seraphim", type: ["fantasy"] },         { word: "Basilisk", type: ["fantasy"] },         { word: "Manticore", type: ["fantasy"] },         { word: "Vortex", type: ["fantasy"] },         { word: "Runeweaver", type: ["fantasy"] },         { word: "Faun", type: ["fantasy"] },         { word: "Cursed", type: ["fantasy"] },         { word: "Obsidian", type: ["fantasy"] },         { word: "Leviathan", type: ["fantasy"] },         { word: "Nightshade", type: ["fantasy"] },         { word: "Empyrean", type: ["fantasy"] },         { word: "Arcanist", type: ["fantasy"] },         { word: "Grimoire", type: ["fantasy"] },         { word: "Moonstone", type: ["fantasy"] },         { word: "Wyrm", type: ["fantasy"] },         { word: "Lich", type: ["fantasy"] },         { word: "Void", type: ["fantasy"] },         { word: "Golem", type: ["fantasy"] },         { word: "Bloodmoon", type: ["fantasy"] },         { word: "Phoenix", type: ["fantasy"] },         { word: "Shade", type: ["fantasy"] },         { word: "Spire", type: ["fantasy"] },         { word: "Celestia", type: ["fantasy"] },         { word: "Mysteria", type: ["fantasy"] },         { word: "Druidic", type: ["fantasy"] },         { word: "Summoner", type: ["fantasy"] },         { word: "Ember", type: ["fantasy"] },         { word: "Illusion", type: ["fantasy"] },         { word: "Frostbite", type: ["fantasy"] },         { word: "Dragonkin", type: ["fantasy"] },         { word: "Elvish", type: ["fantasy"] },         { word: "Arcana", type: ["fantasy"] },         { word: "Spellforge", type: ["fantasy"] },         { word: "Silverwood", type: ["fantasy"] },         { word: "Crystalheart", type: ["fantasy"] },         { word: "Stormbringer", type: ["fantasy"] },         { word: "Wraith", type: ["fantasy"] },         { word: "Grendel", type: ["fantasy"] },         { word: "Aegis", type: ["fantasy"] },         { word: "Berserker", type: ["fantasy"] },         { word: "Runeheart", type: ["fantasy"] },         { word: "Emberstone", type: ["fantasy"] },         { word: "Enchanter", type: ["fantasy"] },         { word: "Frostveil", type: ["fantasy"] },         { word: "Wyldwood", type: ["fantasy"] },         { word: "Onyx", type: ["fantasy"] },         { word: "Shadowmancer", type: ["fantasy"] },         { word: "Scaldstone", type: ["fantasy"] },         { word: "Faeblight", type: ["fantasy"] },         { word: "Grimdark", type: ["fantasy"] },         { word: "Sunflare", type: ["fantasy"] },         { word: "Dreamweaver", type: ["fantasy"] },         { word: "Phantom", type: ["fantasy"] },         { word: "Titanscale", type: ["fantasy"] },         { word: "Seer", type: ["fantasy"] },         { word: "Bloodstone", type: ["fantasy"] },         { word: "Eonblade", type: ["fantasy"] },         { word: "Nightfall", type: ["fantasy"] },         { word: "Frostwhisper", type: ["fantasy"] },         { word: "Wyverntide", type: ["fantasy"] },         { word: "Ashenborn", type: ["fantasy"] },         { word: "Stormcaller", type: ["fantasy"] },         { word: "Sunfire", type: ["fantasy"] },         { word: "Ironwood", type: ["fantasy"] },         { word: "Veilwalker", type: ["fantasy"] },         { word: "Omen", type: ["fantasy"] },         { word: "Grimhold", type: ["fantasy"] },         { word: "Specter", type: ["fantasy"] },         { word: "Riftwalk", type: ["fantasy"] },         { word: "Moonlit", type: ["fantasy"] },         { word: "Verdant", type: ["fantasy"] },         { word: "Forgefire", type: ["fantasy"] },         { word: "Obscura", type: ["fantasy"] },         { word: "Dawnbringer", type: ["fantasy"] },         { word: "Arcane", type: ["fantasy"] },         { word: "Amber", type: ["seasonal: autumn"] },         { word: "Acorn", type: ["seasonal: autumn"] },         { word: "Auburn", type: ["seasonal: autumn"] },         { word: "Bark", type: ["seasonal: autumn"] },         { word: "Blaze", type: ["seasonal: autumn"] },         { word: "Bonfire", type: ["seasonal: autumn"] },         { word: "Bramble", type: ["seasonal: autumn"] },         { word: "Brisk", type: ["seasonal: autumn"] },         { word: "Chestnut", type: ["seasonal: autumn"] },         { word: "Chilly", type: ["seasonal: autumn"] },         { word: "Cinnamon", type: ["seasonal: autumn"] },         { word: "Cloud", type: ["seasonal: autumn"] },         { word: "Copper", type: ["seasonal: autumn"] },         { word: "Cranberry", type: ["seasonal: autumn"] },         { word: "Crisp", type: ["seasonal: autumn"] },         { word: "Crunch", type: ["seasonal: autumn"] },         { word: "Drift", type: ["seasonal: autumn"] },         { word: "Ember", type: ["seasonal: autumn"] },         { word: "Fallow", type: ["seasonal: autumn"] },         { word: "Fallen", type: ["seasonal: autumn"] },         { word: "Fall", type: ["seasonal: autumn"] },         { word: "Fern", type: ["seasonal: autumn"] },         { word: "Fire", type: ["seasonal: autumn"] },         { word: "Flame", type: ["seasonal: autumn"] },         { word: "Flare", type: ["seasonal: autumn"] },         { word: "Fog", type: ["seasonal: autumn"] },         { word: "Frost", type: ["seasonal: autumn"] },         { word: "Golden", type: ["seasonal: autumn"] },         { word: "Harvest", type: ["seasonal: autumn"] },         { word: "Hay", type: ["seasonal: autumn"] },         { word: "Husk", type: ["seasonal: autumn"] },         { word: "Leaf", type: ["seasonal: autumn"] },         { word: "Maple", type: ["seasonal: autumn"] },         { word: "Maroon", type: ["seasonal: autumn"] },         { word: "Mist", type: ["seasonal: autumn"] },         { word: "Nutmeg", type: ["seasonal: autumn"] },         { word: "Ochre", type: ["seasonal: autumn"] },         { word: "Orange", type: ["seasonal: autumn"] },         { word: "Orchard", type: ["seasonal: autumn"] },         { word: "Pinecone", type: ["seasonal: autumn"] },         { word: "Pumpkin", type: ["seasonal: autumn"] },         { word: "Quince", type: ["seasonal: autumn"] },         { word: "Rust", type: ["seasonal: autumn"] },         { word: "Saffron", type: ["seasonal: autumn"] },         { word: "Scarecrow", type: ["seasonal: autumn"] },         { word: "Season", type: ["seasonal: autumn"] },         { word: "Seed", type: ["seasonal: autumn"] },         { word: "Sepia", type: ["seasonal: autumn"] },         { word: "Shade", type: ["seasonal: autumn"] },         { word: "Shiver", type: ["seasonal: autumn"] },         { word: "Sienna", type: ["seasonal: autumn"] },         { word: "Smoky", type: ["seasonal: autumn"] },         { word: "Spice", type: ["seasonal: autumn"] },         { word: "Spindle", type: ["seasonal: autumn"] },         { word: "Squash", type: ["seasonal: autumn"] },         { word: "Sunburst", type: ["seasonal: autumn"] },         { word: "Sunray", type: ["seasonal: autumn"] },         { word: "Tawny", type: ["seasonal: autumn"] },         { word: "Thatch", type: ["seasonal: autumn"] },         { word: "Thistle", type: ["seasonal: autumn"] },         { word: "Timber", type: ["seasonal: autumn"] },         { word: "Topaz", type: ["seasonal: autumn"] },         { word: "Twilight", type: ["seasonal: autumn"] },         { word: "Vine", type: ["seasonal: autumn"] },         { word: "Walnut", type: ["seasonal: autumn"] },         { word: "Wind", type: ["seasonal: autumn"] },         { word: "Woodland", type: ["seasonal: autumn"] },         { word: "Yellow", type: ["seasonal: autumn"] },         { word: "Apple", type: ["seasonal: autumn"] },         { word: "Barkley", type: ["seasonal: autumn"] },         { word: "Blazeheart", type: ["seasonal: autumn"] },         { word: "Bramblethorn", type: ["seasonal: autumn"] },         { word: "Burnish", type: ["seasonal: autumn"] },         { word: "Chestnutty", type: ["seasonal: autumn"] },         { word: "Cinnamonbark", type: ["seasonal: autumn"] },         { word: "Cloudfall", type: ["seasonal: autumn"] },         { word: "Copperleaf", type: ["seasonal: autumn"] },         { word: "Cranberrypie", type: ["seasonal: autumn"] },         { word: "Crispleaf", type: ["seasonal: autumn"] },         { word: "Driftwood", type: ["seasonal: autumn"] },         { word: "Emberglow", type: ["seasonal: autumn"] },         { word: "Fallowfield", type: ["seasonal: autumn"] },         { word: "Fallenleaf", type: ["seasonal: autumn"] },         { word: "Fallcrest", type: ["seasonal: autumn"] },         { word: "Fernshade", type: ["seasonal: autumn"] },         { word: "Firefly", type: ["seasonal: autumn"] },         { word: "Flameleaf", type: ["seasonal: autumn"] },         { word: "Flarelight", type: ["seasonal: autumn"] },         { word: "Foggy", type: ["seasonal: autumn"] },         { word: "Frostleaf", type: ["seasonal: autumn"] },         { word: "Goldleaf", type: ["seasonal: autumn"] },         { word: "Goldenrod", type: ["seasonal: autumn"] },         { word: "Harvestmoon", type: ["seasonal: autumn"] },         { word: "Haystack", type: ["seasonal: autumn"] },         { word: "Huskie", type: ["seasonal: autumn"] },         { word: "Leafdust", type: ["seasonal: autumn"] },         { word: "Leafstorm", type: ["seasonal: autumn"] },         { word: "Mapleleaf", type: ["seasonal: autumn"] },         { word: "Marigoldsun", type: ["seasonal: autumn"] },         { word: "Maroony", type: ["seasonal: autumn"] },         { word: "Misty", type: ["seasonal: autumn"] },         { word: "Pine", type: ["seasonal: autumn"] },         { word: "Shadow", type: ["seasonal: autumn"] },         { word: "Sun", type: ["seasonal: autumn"] },         { word: "Sunbeam", type: ["seasonal: autumn"] },         { word: "Sunlight", type: ["seasonal: autumn"] },         { word: "Acornfall", type: ["seasonal: autumn"] },         { word: "Alder", type: ["seasonal: autumn"] },         { word: "Autumn", type: ["seasonal: autumn"] },         { word: "Barkwood", type: ["seasonal: autumn"] },         { word: "Blazecliff", type: ["seasonal: autumn"] },         { word: "Bramblebush", type: ["seasonal: autumn"] },         { word: "Bronze", type: ["seasonal: autumn"] },         { word: "Burnt", type: ["seasonal: autumn"] },         { word: "Chest", type: ["seasonal: autumn"] },         { word: "Chestwood", type: ["seasonal: autumn"] },         { word: "Cider", type: ["seasonal: autumn"] },         { word: "Cinnamonstick", type: ["seasonal: autumn"] },         { word: "Cloudveil", type: ["seasonal: autumn"] },         { word: "Copperfield", type: ["seasonal: autumn"] },         { word: "Crumble", type: ["seasonal: autumn"] },         { word: "Crunchleaf", type: ["seasonal: autumn"] },         { word: "Emberlight", type: ["seasonal: autumn"] },         { word: "Fallwind", type: ["seasonal: autumn"] },         { word: "Fallenwood", type: ["seasonal: autumn"] },         { word: "Fernwood", type: ["seasonal: autumn"] },         { word: "Fireside", type: ["seasonal: autumn"] },         { word: "Flamewood", type: ["seasonal: autumn"] },         { word: "Fogfall", type: ["seasonal: autumn"] },         { word: "Frostfall", type: ["seasonal: autumn"] },         { word: "Goldenleaf", type: ["seasonal: autumn"] },         { word: "Harvestfall", type: ["seasonal: autumn"] },         { word: "Hayfield", type: ["seasonal: autumn"] },         { word: "Huskwood", type: ["seasonal: autumn"] },         { word: "Leaffall", type: ["seasonal: autumn"] },         { word: "Maplewood", type: ["seasonal: autumn"] },         { word: "Maroonleaf", type: ["seasonal: autumn"] },         { word: "Mistfall", type: ["seasonal: autumn"] },         { word: "Nutwood", type: ["seasonal: autumn"] },         { word: "Oak", type: ["seasonal: autumn"] }, 	        { word: "Oakleaf", type: ["seasonal: autumn"] },         { word: "Orchardfield", type: ["seasonal: autumn"] },         { word: "Pinewood", type: ["seasonal: autumn"] },         { word: "Pineleaf", type: ["seasonal: autumn"] },         { word: "Pumpkinpatch", type: ["seasonal: autumn"] },         { word: "Quill", type: ["seasonal: autumn"] },         { word: "Quillleaf", type: ["seasonal: autumn"] },         { word: "Rustwood", type: ["seasonal: autumn"] },         { word: "Rustleaf", type: ["seasonal: autumn"] },         { word: "Saffronleaf", type: ["seasonal: autumn"] },         { word: "Scare", type: ["seasonal: autumn"] },         { word: "Seedling", type: ["seasonal: autumn"] },         { word: "Sepialight", type: ["seasonal: autumn"] },         { word: "Shadewood", type: ["seasonal: autumn"] },         { word: "Shiverleaf", type: ["seasonal: autumn"] },         { word: "Siennaleaf", type: ["seasonal: autumn"] },         { word: "Smokewood", type: ["seasonal: autumn"] },         { word: "Spicewood", type: ["seasonal: autumn"] },         { word: "Spindlewood", type: ["seasonal: autumn"] },         { word: "Squashleaf", type: ["seasonal: autumn"] },         { word: "Tawnyleaf", type: ["seasonal: autumn"] },         { word: "Thatchwood", type: ["seasonal: autumn"] },         { word: "Thistlewood", type: ["seasonal: autumn"] },         { word: "Timberwood", type: ["seasonal: autumn"] },         { word: "Topazleaf", type: ["seasonal: autumn"] },         { word: "Twilightwood", type: ["seasonal: autumn"] },         { word: "Vineleaf", type: ["seasonal: autumn"] },         { word: "April", type: ["seasonal: spring"] },         { word: "Breeze", type: ["seasonal: spring"] },         { word: "Bud", type: ["seasonal: spring"] },         { word: "Budding", type: ["seasonal: spring"] },         { word: "Chirp", type: ["seasonal: spring"] },         { word: "Chirpy", type: ["seasonal: spring"] },         { word: "Cloud", type: ["seasonal: spring"] },         { word: "Cloudy", type: ["seasonal: spring"] },         { word: "Dawn", type: ["seasonal: spring"] },         { word: "Dew", type: ["seasonal: spring"] },         { word: "Drizzle", type: ["seasonal: spring"] },         { word: "Early", type: ["seasonal: spring"] },         { word: "Fresh", type: ["seasonal: spring"] },         { word: "Green", type: ["seasonal: spring"] },         { word: "Growth", type: ["seasonal: spring"] },         { word: "Hatch", type: ["seasonal: spring"] },         { word: "Hatchling", type: ["seasonal: spring"] },         { word: "Horizon", type: ["seasonal: spring"] },         { word: "Lamb", type: ["seasonal: spring"] },         { word: "Leaf", type: ["seasonal: spring"] },         { word: "Light", type: ["seasonal: spring"] },         { word: "Morning", type: ["seasonal: spring"] },         { word: "New", type: ["seasonal: spring"] },         { word: "Nest", type: ["seasonal: spring"] },         { word: "Puddle", type: ["seasonal: spring"] },         { word: "Rain", type: ["seasonal: spring"] },         { word: "Rainfall", type: ["seasonal: spring"] },         { word: "Raindrop", type: ["seasonal: spring"] },         { word: "Renewal", type: ["seasonal: spring"] },         { word: "Season", type: ["seasonal: spring"] },         { word: "Seed", type: ["seasonal: spring"] },         { word: "Shoot", type: ["seasonal: spring"] },         { word: "Sky", type: ["seasonal: spring"] },         { word: "Sprout", type: ["seasonal: spring"] },         { word: "Spring", type: ["seasonal: spring"] },         { word: "Sunshine", type: ["seasonal: spring"] },         { word: "Sunray", type: ["seasonal: spring"] },         { word: "Sweet", type: ["seasonal: spring"] },         { word: "Thaw", type: ["seasonal: spring"] },         { word: "Warmth", type: ["seasonal: spring"] },         { word: "Wind", type: ["seasonal: spring"] },         { word: "Zephyr", type: ["seasonal: spring"] },         { word: "Awakening", type: ["seasonal: spring"] },         { word: "Bright", type: ["seasonal: spring"] },         { word: "Burgeon", type: ["seasonal: spring"] },         { word: "Calm", type: ["seasonal: spring"] },         { word: "Clear", type: ["seasonal: spring"] },         { word: "Crisp", type: ["seasonal: spring"] },         { word: "Earlybird", type: ["seasonal: spring"] },         { word: "Gentle", type: ["seasonal: spring"] },         { word: "Hatching", type: ["seasonal: spring"] },         { word: "Lively", type: ["seasonal: spring"] },         { word: "Meadow", type: ["seasonal: spring"] },         { word: "Mist", type: ["seasonal: spring"] },         { word: "Morningdew", type: ["seasonal: spring"] },         { word: "Newborn", type: ["seasonal: spring"] },         { word: "Nurture", type: ["seasonal: spring"] },         { word: "Pastel", type: ["seasonal: spring"] },         { word: "Perky", type: ["seasonal: spring"] },         { word: "Playful", type: ["seasonal: spring"] },         { word: "Raindance", type: ["seasonal: spring"] },         { word: "Refresh", type: ["seasonal: spring"] },         { word: "Rivulet", type: ["seasonal: spring"] },         { word: "Shimmer", type: ["seasonal: spring"] },         { word: "Soft", type: ["seasonal: spring"] },         { word: "Sprig", type: ["seasonal: spring"] },         { word: "Stream", type: ["seasonal: spring"] },         { word: "Tender", type: ["seasonal: spring"] },         { word: "Trickle", type: ["seasonal: spring"] },         { word: "Updraft", type: ["seasonal: spring"] },         { word: "Verdant", type: ["seasonal: spring"] },         { word: "Vital", type: ["seasonal: spring"] },         { word: "Budlet", type: ["seasonal: spring"] },         { word: "Dewdrop", type: ["seasonal: spring"] },         { word: "Misty", type: ["seasonal: spring"] },         { word: "Breezeway", type: ["seasonal: spring"] },         { word: "Freshair", type: ["seasonal: spring"] },         { word: "Frolic", type: ["seasonal: spring"] },         { word: "Greenleaf", type: ["seasonal: spring"] },         { word: "Lightbreeze", type: ["seasonal: spring"] },         { word: "Morninglight", type: ["seasonal: spring"] },         { word: "Newday", type: ["seasonal: spring"] },         { word: "Newleaf", type: ["seasonal: spring"] },         { word: "Newlife", type: ["seasonal: spring"] },         { word: "Pasture", type: ["seasonal: spring"] },         { word: "Puddlejumper", type: ["seasonal: spring"] },         { word: "Raincloud", type: ["seasonal: spring"] },         { word: "Rainglow", type: ["seasonal: spring"] },         { word: "Renew", type: ["seasonal: spring"] },         { word: "Rippling", type: ["seasonal: spring"] },         { word: "Seedling", type: ["seasonal: spring"] },         { word: "Shoots", type: ["seasonal: spring"] },         { word: "Skyblue", type: ["seasonal: spring"] },         { word: "Springair", type: ["seasonal: spring"] },         { word: "Springtide", type: ["seasonal: spring"] },         { word: "Springleaf", type: ["seasonal: spring"] },         { word: "Spright", type: ["seasonal: spring"] },         { word: "Streamlet", type: ["seasonal: spring"] },         { word: "Sunbeam", type: ["seasonal: spring"] },         { word: "Sunbright", type: ["seasonal: spring"] },         { word: "Sunlit", type: ["seasonal: spring"] },         { word: "Sunshower", type: ["seasonal: spring"] },         { word: "Tenderleaf", type: ["seasonal: spring"] },         { word: "Thawlight", type: ["seasonal: spring"] },         { word: "Upwind", type: ["seasonal: spring"] },         { word: "Verdancy", type: ["seasonal: spring"] },         { word: "Vitality", type: ["seasonal: spring"] },         { word: "Wake", type: ["seasonal: spring"] },         { word: "Warming", type: ["seasonal: spring"] },         { word: "Windchime", type: ["seasonal: spring"] },         { word: "Youth", type: ["seasonal: spring"] },         { word: "Zephyrian", type: ["seasonal: spring"] },         { word: "Anew", type: ["seasonal: spring"] },         { word: "Budburst", type: ["seasonal: spring"] },         { word: "Burgeoning", type: ["seasonal: spring"] },         { word: "Canopy", type: ["seasonal: spring"] },         { word: "Clearview", type: ["seasonal: spring"] },         { word: "Cloudburst", type: ["seasonal: spring"] },         { word: "Daybreak", type: ["seasonal: spring"] },         { word: "Dewshine", type: ["seasonal: spring"] },         { word: "Earlyspring", type: ["seasonal: spring"] },         { word: "Emerging", type: ["seasonal: spring"] },         { word: "Freshstart", type: ["seasonal: spring"] },         { word: "Greenway", type: ["seasonal: spring"] },         { word: "Hatchingtime", type: ["seasonal: spring"] },         { word: "Horizonlight", type: ["seasonal: spring"] },         { word: "Lambkin", type: ["seasonal: spring"] },         { word: "Leafling", type: ["seasonal: spring"] },         { word: "Livelyair", type: ["seasonal: spring"] },         { word: "Meadowlark", type: ["seasonal: spring"] },         { word: "Mistfall", type: ["seasonal: spring"] },         { word: "Morningglow", type: ["seasonal: spring"] },         { word: "Morningtide", type: ["seasonal: spring"] },         { word: "Newdawn", type: ["seasonal: spring"] },         { word: "Newgrowth", type: ["seasonal: spring"] },         { word: "Newlight", type: ["seasonal: spring"] },         { word: "Newmorning", type: ["seasonal: spring"] },         { word: "Nurturing", type: ["seasonal: spring"] },         { word: "Pasturelight", type: ["seasonal: spring"] },         { word: "Playtime", type: ["seasonal: spring"] },         { word: "Puddlelight", type: ["seasonal: spring"] },         { word: "Rainfalling", type: ["seasonal: spring"] },         { word: "Rainlight", type: ["seasonal: spring"] },         { word: "Rainswept", type: ["seasonal: spring"] },         { word: "Rainwave", type: ["seasonal: spring"] },         { word: "Refreshing", type: ["seasonal: spring"] },         { word: "Renewing", type: ["seasonal: spring"] },         { word: "Revive", type: ["seasonal: spring"] },         { word: "River", type: ["seasonal: spring"] },         { word: "Riverflow", type: ["seasonal: spring"] },         { word: "Riverview", type: ["seasonal: spring"] },         { word: "Shootspring", type: ["seasonal: spring"] },         { word: "Skyward", type: ["seasonal: spring"] },         { word: "Softbreeze", type: ["seasonal: spring"] },         { word: "Softlight", type: ["seasonal: spring"] },         { word: "Springborn", type: ["seasonal: spring"] },         { word: "Springbreeze", type: ["seasonal: spring"] },         { word: "Springfresh", type: ["seasonal: spring"] },         { word: "Spry", type: ["seasonal: spring"] },         { word: "Streamflow", type: ["seasonal: spring"] },         { word: "Streamsong", type: ["seasonal: spring"] },         { word: "Sunbreeze", type: ["seasonal: spring"] },         { word: "Sunflare", type: ["seasonal: spring"] },         { word: "Sunraylight", type: ["seasonal: spring"] },         { word: "Sunshineair", type: ["seasonal: spring"] },         { word: "Sunshiner", type: ["seasonal: spring"] },         { word: "Tenderbud", type: ["seasonal: spring"] },         { word: "Tendergreen", type: ["seasonal: spring"] },         { word: "Thawinglight", type: ["seasonal: spring"] },         { word: "Thawtime", type: ["seasonal: spring"] },         { word: "Tranquil", type: ["seasonal: spring"] },         { word: "Tranquility", type: ["seasonal: spring"] },         { word: "Trickleflow", type: ["seasonal: spring"] },         { word: "Upbreeze", type: ["seasonal: spring"] },         { word: "Upstream", type: ["seasonal: spring"] },         { word: "Verdantair", type: ["seasonal: spring"] },         { word: "Verdantfield", type: ["seasonal: spring"] },         { word: "Verdantway", type: ["seasonal: spring"] },         { word: "Vitalair", type: ["seasonal: spring"] },         { word: "Vitalgreen", type: ["seasonal: spring"] },         { word: "Vitalsky", type: ["seasonal: spring"] },         { word: "Wakeup", type: ["seasonal: spring"] },         { word: "Waking", type: ["seasonal: spring"] },         { word: "Warmbreeze", type: ["seasonal: spring"] },         { word: "Warmbeam", type: ["seasonal: spring"] },         { word: "Warmlight", type: ["seasonal: spring"] },         { word: "Windbreeze", type: ["seasonal: spring"] },         { word: "Windchill", type: ["seasonal: spring"] },         { word: "Windfall", type: ["seasonal: spring"] },         { word: "Windgale", type: ["seasonal: spring"] },         { word: "Windlight", type: ["seasonal: spring"] },         { word: "Windstream", type: ["seasonal: spring"] },         { word: "Windyday", type: ["seasonal: spring"] },         { word: "Youthful", type: ["seasonal: spring"] },         { word: "Zephyrbreeze", type: ["seasonal: spring"] },         { word: "Zephyrlight", type: ["seasonal: spring"] },         { word: "Zephyrwind", type: ["seasonal: spring"] },         { word: "Aglow", type: ["seasonal: spring"] },         { word: "Clearwind", type: ["seasonal: spring"] },         { word: "Dayglow", type: ["seasonal: spring"] },         { word: "Freshglow", type: ["seasonal: spring"] },         { word: "Lightbloom", type: ["seasonal: spring"] },         { word: "Springglow", type: ["seasonal: spring"] },         { word: "Spriglet", type: ["seasonal: spring"] },         { word: "Sunspot", type: ["seasonal: spring"] },         { word: "Sunup", type: ["seasonal: spring"] },         { word: "Breezy", type: ["seasonal: spring"] },         { word: "Shady", type: ["seasonal: spring"] },         { word: "Sprightly", type: ["seasonal: spring"] },         { word: "Sunny", type: ["seasonal: spring"] },         { word: "Sproutling", type: ["seasonal: spring"] },         { word: "Softwind", type: ["seasonal: spring"] },         { word: "Freshwind", type: ["seasonal: spring"] },         { word: "Daylight", type: ["seasonal: spring"] },         { word: "Leafy", type: ["seasonal: spring"] },         { word: "Frostmelt", type: ["seasonal: spring"] },         { word: "Greenfield", type: ["seasonal: spring"] },         { word: "Sun", type: ["seasonal: summer"] },         { word: "Sunshine", type: ["seasonal: summer"] },         { word: "Sunbeam", type: ["seasonal: summer"] },         { word: "Sunray", type: ["seasonal: summer"] },         { word: "Sunlight", type: ["seasonal: summer"] },         { word: "Sol", type: ["seasonal: summer"] },         { word: "Blaze", type: ["seasonal: summer"] },         { word: "Heat", type: ["seasonal: summer"] },         { word: "Warmth", type: ["seasonal: summer"] },         { word: "Glow", type: ["seasonal: summer"] },         { word: "Golden", type: ["seasonal: summer"] },         { word: "Bright", type: ["seasonal: summer"] },         { word: "Radiance", type: ["seasonal: summer"] },         { word: "Dune", type: ["seasonal: summer"] },         { word: "Sand", type: ["seasonal: summer"] },         { word: "Beach", type: ["seasonal: summer"] },         { word: "Shore", type: ["seasonal: summer"] },         { word: "Tide", type: ["seasonal: summer"] },         { word: "Wave", type: ["seasonal: summer"] },         { word: "Surf", type: ["seasonal: summer"] },         { word: "Ocean", type: ["seasonal: summer"] },         { word: "Sea", type: ["seasonal: summer"] },         { word: "Coral", type: ["seasonal: summer"] },         { word: "Lagoon", type: ["seasonal: summer"] },         { word: "Palm", type: ["seasonal: summer"] },         { word: "Coconut", type: ["seasonal: summer"] },         { word: "Island", type: ["seasonal: summer"] },         { word: "Tropic", type: ["seasonal: summer"] },         { word: "Tropics", type: ["seasonal: summer"] },         { word: "Breeze", type: ["seasonal: summer"] },         { word: "Wind", type: ["seasonal: summer"] },         { word: "Zephyr", type: ["seasonal: summer"] },         { word: "Sky", type: ["seasonal: summer"] },         { word: "Blue", type: ["seasonal: summer"] },         { word: "Cloud", type: ["seasonal: summer"] },         { word: "Cloudless", type: ["seasonal: summer"] },         { word: "Horizon", type: ["seasonal: summer"] },         { word: "Daylight", type: ["seasonal: summer"] },         { word: "Noon", type: ["seasonal: summer"] },         { word: "Noonlight", type: ["seasonal: summer"] },         { word: "Warm", type: ["seasonal: summer"] },         { word: "Sunup", type: ["seasonal: summer"] },         { word: "Sunset", type: ["seasonal: summer"] },         { word: "Sundown", type: ["seasonal: summer"] },         { word: "Dusk", type: ["seasonal: summer"] },         { word: "Dawn", type: ["seasonal: summer"] },         { word: "Morning", type: ["seasonal: summer"] },         { word: "Summer", type: ["seasonal: summer"] },         { word: "Solstice", type: ["seasonal: summer"] },         { word: "Heatwave", type: ["seasonal: summer"] },         { word: "Glowfly", type: ["seasonal: summer"] },         { word: "Radiant", type: ["seasonal: summer"] },         { word: "Firefly", type: ["seasonal: summer"] },         { word: "Lantern", type: ["seasonal: summer"] },         { word: "Torch", type: ["seasonal: summer"] },         { word: "Ember", type: ["seasonal: summer"] },         { word: "Flare", type: ["seasonal: summer"] },         { word: "Flicker", type: ["seasonal: summer"] },         { word: "Glowworm", type: ["seasonal: summer"] },         { word: "Brightleaf", type: ["seasonal: summer"] },         { word: "Goldleaf", type: ["seasonal: summer"] },         { word: "Palmshade", type: ["seasonal: summer"] },         { word: "Sandbar", type: ["seasonal: summer"] },         { word: "Seashell", type: ["seasonal: summer"] },         { word: "Pebble", type: ["seasonal: summer"] },         { word: "Driftwood", type: ["seasonal: summer"] },         { word: "Seagrass", type: ["seasonal: summer"] },         { word: "Reef", type: ["seasonal: summer"] },         { word: "Coralbay", type: ["seasonal: summer"] },         { word: "Beachcomber", type: ["seasonal: summer"] },         { word: "Surfer", type: ["seasonal: summer"] },         { word: "Sail", type: ["seasonal: summer"] },         { word: "Sailor", type: ["seasonal: summer"] },         { word: "Skimmer", type: ["seasonal: summer"] },         { word: "Wavelet", type: ["seasonal: summer"] },         { word: "Tidal", type: ["seasonal: summer"] },         { word: "Stream", type: ["seasonal: summer"] },         { word: "Brook", type: ["seasonal: summer"] },         { word: "Fountain", type: ["seasonal: summer"] },         { word: "River", type: ["seasonal: summer"] },         { word: "Dew", type: ["seasonal: summer"] },         { word: "Rain", type: ["seasonal: summer"] },         { word: "Raindrop", type: ["seasonal: summer"] },         { word: "Sprinkle", type: ["seasonal: summer"] },         { word: "Splash", type: ["seasonal: summer"] },         { word: "Mist", type: ["seasonal: summer"] },         { word: "Shimmer", type: ["seasonal: summer"] },         { word: "Ripple", type: ["seasonal: summer"] },         { word: "Sparkle", type: ["seasonal: summer"] },         { word: "Fire", type: ["seasonal: summer"] },         { word: "Flame", type: ["seasonal: summer"] },         { word: "Heatlight", type: ["seasonal: summer"] },         { word: "Bonfire", type: ["seasonal: summer"] },         { word: "Torchlight", type: ["seasonal: summer"] },         { word: "Glowstick", type: ["seasonal: summer"] },         { word: "Daystar", type: ["seasonal: summer"] },         { word: "Sunspot", type: ["seasonal: summer"] },         { word: "Sunburst", type: ["seasonal: summer"] },         { word: "Brightstar", type: ["seasonal: summer"] },         { word: "Starshine", type: ["seasonal: summer"] },         { word: "Stardust", type: ["seasonal: summer"] },         { word: "Skyfire", type: ["seasonal: summer"] },         { word: "Solfire", type: ["seasonal: summer"] },         { word: "Sunfire", type: ["seasonal: summer"] },         { word: "Morninglight", type: ["seasonal: summer"] },         { word: "Sunbright", type: ["seasonal: summer"] },         { word: "Goldenrod", type: ["seasonal: summer"] },         { word: "Sunflower", type: ["seasonal: summer"] },         { word: "Meadow", type: ["seasonal: summer"] },         { word: "Grass", type: ["seasonal: summer"] },         { word: "Green", type: ["seasonal: summer"] },         { word: "Vine", type: ["seasonal: summer"] },         { word: "Leaf", type: ["seasonal: summer"] },         { word: "Tree", type: ["seasonal: summer"] },         { word: "Oak", type: ["seasonal: summer"] },         { word: "Willow", type: ["seasonal: summer"] },         { word: "Pine", type: ["seasonal: summer"] },         { word: "Cedar", type: ["seasonal: summer"] },         { word: "Palmleaf", type: ["seasonal: summer"] },         { word: "Fern", type: ["seasonal: summer"] },         { word: "Bush", type: ["seasonal: summer"] },         { word: "Bloom", type: ["seasonal: summer"] },         { word: "Petal", type: ["seasonal: summer"] },         { word: "Seed", type: ["seasonal: summer"] },         { word: "Sprout", type: ["seasonal: summer"] },         { word: "Bud", type: ["seasonal: summer"] },         { word: "Growing", type: ["seasonal: summer"] },         { word: "Sprig", type: ["seasonal: summer"] },         { word: "Thorn", type: ["seasonal: summer"] },         { word: "Bramble", type: ["seasonal: summer"] },         { word: "Vineleaf", type: ["seasonal: summer"] },         { word: "Berry", type: ["seasonal: summer"] },         { word: "Raspberry", type: ["seasonal: summer"] },         { word: "Blueberry", type: ["seasonal: summer"] },         { word: "Strawberry", type: ["seasonal: summer"] },         { word: "Blackberry", type: ["seasonal: summer"] },         { word: "Fruit", type: ["seasonal: summer"] },         { word: "Orange", type: ["seasonal: summer"] },         { word: "Lemon", type: ["seasonal: summer"] },         { word: "Lime", type: ["seasonal: summer"] },         { word: "Mango", type: ["seasonal: summer"] },         { word: "Peach", type: ["seasonal: summer"] },         { word: "Pineapple", type: ["seasonal: summer"] },         { word: "Banana", type: ["seasonal: summer"] },         { word: "Kiwi", type: ["seasonal: summer"] },         { word: "Papaya", type: ["seasonal: summer"] },         { word: "Nectar", type: ["seasonal: summer"] },         { word: "Sweet", type: ["seasonal: summer"] },         { word: "Honey", type: ["seasonal: summer"] },         { word: "Sugar", type: ["seasonal: summer"] },         { word: "Syrup", type: ["seasonal: summer"] },         { word: "Melon", type: ["seasonal: summer"] },         { word: "Watermelon", type: ["seasonal: summer"] },         { word: "Cantaloupe", type: ["seasonal: summer"] },         { word: "Sunfruit", type: ["seasonal: summer"] },         { word: "Tropicfruit", type: ["seasonal: summer"] },         { word: "Clam", type: ["seasonal: summer"] },         { word: "Oyster", type: ["seasonal: summer"] },         { word: "Sandstone", type: ["seasonal: summer"] },         { word: "Drift", type: ["seasonal: summer"] },         { word: "Coast", type: ["seasonal: summer"] },         { word: "Bay", type: ["seasonal: summer"] },         { word: "Cove", type: ["seasonal: summer"] },         { word: "Skim", type: ["seasonal: summer"] },         { word: "Shower", type: ["seasonal: summer"] },         { word: "Summerbreeze", type: ["seasonal: summer"] },         { word: "Warmwind", type: ["seasonal: summer"] },         { word: "Sunflare", type: ["seasonal: summer"] },         { word: "Avalanche", type: ["seasonal: winter"] },         { word: "Blizzard", type: ["seasonal: winter"] },         { word: "Borealis", type: ["seasonal: winter"] },         { word: "Brumal", type: ["seasonal: winter"] },         { word: "Chill", type: ["seasonal: winter"] },         { word: "Chilling", type: ["seasonal: winter"] },         { word: "Cold", type: ["seasonal: winter"] },         { word: "Crystals", type: ["seasonal: winter"] },         { word: "Drifts", type: ["seasonal: winter"] },         { word: "Flurry", type: ["seasonal: winter"] },         { word: "Frost", type: ["seasonal: winter"] },         { word: "Frostbite", type: ["seasonal: winter"] },         { word: "Frosted", type: ["seasonal: winter"] },         { word: "Frostfall", type: ["seasonal: winter"] },         { word: "Frostfire", type: ["seasonal: winter"] },         { word: "Frostine", type: ["seasonal: winter"] },         { word: "Frostling", type: ["seasonal: winter"] },         { word: "Glacier", type: ["seasonal: winter"] },         { word: "Glacial", type: ["seasonal: winter"] },         { word: "Hail", type: ["seasonal: winter"] },         { word: "Hoarfrost", type: ["seasonal: winter"] },         { word: "Ice", type: ["seasonal: winter"] },         { word: "Icicle", type: ["seasonal: winter"] },         { word: "Icy", type: ["seasonal: winter"] },         { word: "Melt", type: ["seasonal: winter"] },         { word: "Nival", type: ["seasonal: winter"] },         { word: "North", type: ["seasonal: winter"] },         { word: "Pole", type: ["seasonal: winter"] },         { word: "Powder", type: ["seasonal: winter"] },         { word: "Rime", type: ["seasonal: winter"] },         { word: "Sleet", type: ["seasonal: winter"] },         { word: "Shiver", type: ["seasonal: winter"] },         { word: "Snow", type: ["seasonal: winter"] },         { word: "Snowbell", type: ["seasonal: winter"] },         { word: "Snowdrop", type: ["seasonal: winter"] },         { word: "Snowfall", type: ["seasonal: winter"] },         { word: "Snowflake", type: ["seasonal: winter"] },         { word: "Snowy", type: ["seasonal: winter"] },         { word: "Solstice", type: ["seasonal: winter"] },         { word: "Storm", type: ["seasonal: winter"] },         { word: "Stormy", type: ["seasonal: winter"] },         { word: "Subzero", type: ["seasonal: winter"] },         { word: "Tundra", type: ["seasonal: winter"] },         { word: "Vinter", type: ["seasonal: winter"] },         { word: "Winter", type: ["seasonal: winter"] },         { word: "Winters", type: ["seasonal: winter"] },         { word: "Yule", type: ["seasonal: winter"] },         { word: "Zephyr", type: ["seasonal: winter"] },         { word: "Alpenglow", type: ["seasonal: winter"] },         { word: "Boreas", type: ["seasonal: winter"] },         { word: "Bruma", type: ["seasonal: winter"] },         { word: "Chion", type: ["seasonal: winter"] },         { word: "Cirrus", type: ["seasonal: winter"] },         { word: "Coldsnap", type: ["seasonal: winter"] },         { word: "Drift", type: ["seasonal: winter"] },         { word: "Driftwood", type: ["seasonal: winter"] },         { word: "Eis", type: ["seasonal: winter"] },         { word: "Flake", type: ["seasonal: winter"] },         { word: "Frostwind", type: ["seasonal: winter"] },         { word: "Gelid", type: ["seasonal: winter"] },         { word: "Glace", type: ["seasonal: winter"] },         { word: "Glimmer", type: ["seasonal: winter"] },         { word: "Hiemal", type: ["seasonal: winter"] },         { word: "Hiemis", type: ["seasonal: winter"] },         { word: "Icefall", type: ["seasonal: winter"] },         { word: "Icefield", type: ["seasonal: winter"] },         { word: "Icestorm", type: ["seasonal: winter"] },         { word: "Nivea", type: ["seasonal: winter"] },         { word: "Northwind", type: ["seasonal: winter"] },         { word: "Polar", type: ["seasonal: winter"] },         { word: "Snowcap", type: ["seasonal: winter"] },         { word: "Snowfield", type: ["seasonal: winter"] },         { word: "Snowstorm", type: ["seasonal: winter"] },         { word: "Snowveil", type: ["seasonal: winter"] },         { word: "Sol", type: ["seasonal: winter"] },         { word: "Tindr", type: ["seasonal: winter"] },         { word: "Tindra", type: ["seasonal: winter"] },         { word: "Tinsel", type: ["seasonal: winter"] },         { word: "Tundrel", type: ["seasonal: winter"] },         { word: "Wintergreen", type: ["seasonal: winter"] },         { word: "Winterlight", type: ["seasonal: winter"] },         { word: "Wintermute", type: ["seasonal: winter"] },         { word: "Wintertide", type: ["seasonal: winter"] },         { word: "Winterveil", type: ["seasonal: winter"] },         { word: "Yuki", type: ["seasonal: winter"] },         { word: "Zephyrus", type: ["seasonal: winter"] },         { word: "Aspen", type: ["seasonal: winter"] },         { word: "Birch", type: ["seasonal: winter"] },         { word: "Cedar", type: ["seasonal: winter"] },         { word: "Cypress", type: ["seasonal: winter"] },         { word: "Fir", type: ["seasonal: winter"] },         { word: "Holly", type: ["seasonal: winter"] },         { word: "Larch", type: ["seasonal: winter"] },         { word: "Pine", type: ["seasonal: winter"] },         { word: "Spruce", type: ["seasonal: winter"] },         { word: "Willow", type: ["seasonal: winter"] },         { word: "Frostfern", type: ["seasonal: winter"] },         { word: "Snowfern", type: ["seasonal: winter"] },         { word: "Icefern", type: ["seasonal: winter"] },         { word: "Frostflower", type: ["seasonal: winter"] },         { word: "Snowflower", type: ["seasonal: winter"] },         { word: "Iceflower", type: ["seasonal: winter"] },         { word: "Snowpetal", type: ["seasonal: winter"] },         { word: "Frostpetal", type: ["seasonal: winter"] },         { word: "Icicleleaf", type: ["seasonal: winter"] },         { word: "Frostleaf", type: ["seasonal: winter"] },         { word: "Snowleaf", type: ["seasonal: winter"] },         { word: "Chillwind", type: ["seasonal: winter"] },         { word: "Coldwind", type: ["seasonal: winter"] },         { word: "Icewind", type: ["seasonal: winter"] },         { word: "Snowdrift", type: ["seasonal: winter"] },         { word: "Frostdrift", type: ["seasonal: winter"] },         { word: "Icecap", type: ["seasonal: winter"] },         { word: "Icepeak", type: ["seasonal: winter"] },         { word: "Frostpeak", type: ["seasonal: winter"] },         { word: "Snowpeak", type: ["seasonal: winter"] },         { word: "Frostveil", type: ["seasonal: winter"] },         { word: "Iceveil", type: ["seasonal: winter"] },         { word: "Frostglow", type: ["seasonal: winter"] },         { word: "Snowglow", type: ["seasonal: winter"] },         { word: "Iceglow", type: ["seasonal: winter"] },         { word: "Winterglow", type: ["seasonal: winter"] },         { word: "Snowchill", type: ["seasonal: winter"] },         { word: "Frostchill", type: ["seasonal: winter"] },         { word: "Icechill", type: ["seasonal: winter"] },         { word: "Coldveil", type: ["seasonal: winter"] },         { word: "Snowmelt", type: ["seasonal: winter"] },         { word: "Icecrystal", type: ["seasonal: winter"] },         { word: "Frostcrystal", type: ["seasonal: winter"] },         { word: "Snowcrystal", type: ["seasonal: winter"] },         { word: "Hailstorm", type: ["seasonal: winter"] },         { word: "Iceberg", type: ["seasonal: winter"] },         { word: "Snowberg", type: ["seasonal: winter"] },         { word: "Frostberg", type: ["seasonal: winter"] },         { word: "Iciclefall", type: ["seasonal: winter"] },         { word: "Snowfrost", type: ["seasonal: winter"] },         { word: "Icefrost", type: ["seasonal: winter"] },         { word: "Frostshine", type: ["seasonal: winter"] },         { word: "Snowshine", type: ["seasonal: winter"] },         { word: "Iceglint", type: ["seasonal: winter"] },         { word: "Frostglint", type: ["seasonal: winter"] },         { word: "Snowglint", type: ["seasonal: winter"] },         { word: "Snowhush", type: ["seasonal: winter"] },         { word: "Frosthush", type: ["seasonal: winter"] },         { word: "Icehush", type: ["seasonal: winter"] },         { word: "Coldfire", type: ["seasonal: winter"] },         { word: "Snowfire", type: ["seasonal: winter"] },         { word: "Frostspark", type: ["seasonal: winter"] },         { word: "Snowspark", type: ["seasonal: winter"] },         { word: "Icespark", type: ["seasonal: winter"] },         { word: "Snowgale", type: ["seasonal: winter"] },         { word: "Frostgale", type: ["seasonal: winter"] },         { word: "Icegale", type: ["seasonal: winter"] },         { word: "Froststorm", type: ["seasonal: winter"] },         { word: "Winterstorm", type: ["seasonal: winter"] },         { word: "Snowwind", type: ["seasonal: winter"] },         { word: "Winterwind", type: ["seasonal: winter"] },         { word: "Coldfall", type: ["seasonal: winter"] },         { word: "Icyfall", type: ["seasonal: winter"] },         { word: "Coldpeak", type: ["seasonal: winter"] },         { word: "Frostcap", type: ["seasonal: winter"] },         { word: "Wintercap", type: ["seasonal: winter"] },         { word: "Snowbranch", type: ["seasonal: winter"] },         { word: "Frostbranch", type: ["seasonal: winter"] },         { word: "Icebranch", type: ["seasonal: winter"] },         { word: "Coldbranch", type: ["seasonal: winter"] },         { word: "Snowbloom", type: ["seasonal: winter"] },         { word: "Frostbloom", type: ["seasonal: winter"] },         { word: "Icebloom", type: ["seasonal: winter"] },         { word: "Winterbloom", type: ["seasonal: winter"] },         { word: "Icepetal", type: ["seasonal: winter"] },         { word: "Coldpetal", type: ["seasonal: winter"] },         { word: "Frostflake", type: ["seasonal: winter"] },         { word: "Iceflake", type: ["seasonal: winter"] },         { word: "Coldcrystal", type: ["seasonal: winter"] },         { word: "Winterhush", type: ["seasonal: winter"] },         { word: "Iceshine", type: ["seasonal: winter"] },         { word: "Winterspark", type: ["seasonal: winter"] },         { word: "Snowglisten", type: ["seasonal: winter"] },         { word: "Frostglisten", type: ["seasonal: winter"] },         { word: "Iceglisten", type: ["seasonal: winter"] },         { word: "Wintersparkle", type: ["seasonal: winter"] },         { word: "Icedrift", type: ["seasonal: winter"] },         { word: "Coldrift", type: ["seasonal: winter"] },         { word: "Winterbranch", type: ["seasonal: winter"] },         { word: "Snowdusk", type: ["seasonal: winter"] },         { word: "Frostdusk", type: ["seasonal: winter"] },         { word: "Icedusk", type: ["seasonal: winter"] },         { word: "Winterdusk", type: ["seasonal: winter"] },         { word: "Snowshade", type: ["seasonal: winter"] },         { word: "Frostshade", type: ["seasonal: winter"] },         { word: "Iceshade", type: ["seasonal: winter"] },         { word: "Wintershade", type: ["seasonal: winter"] },         { word: "Snowlight", type: ["seasonal: winter"] },         { word: "Frostlight", type: ["seasonal: winter"] },         { word: "Icelight", type: ["seasonal: winter"] },         { word: "Aberration", type: ["space"] },         { word: "Accretion", type: ["space"] },         { word: "Aerospace", type: ["space"] },         { word: "Astral", type: ["space"] },         { word: "Astronomy", type: ["space"] },         { word: "Astrophysics", type: ["space"] },         { word: "Astrology", type: ["space"] },         { word: "Atmosphere", type: ["space"] },         { word: "Aurora", type: ["space"] },         { word: "Borealis", type: ["space"] },         { word: "Australis", type: ["space"] },         { word: "Axis", type: ["space"] },         { word: "Barycenter", type: ["space"] },         { word: "Baryon", type: ["space"] },         { word: "Blackhole", type: ["space"] },         { word: "Blue", type: ["space"] },         { word: "Giant", type: ["space"] },         { word: "Brown", type: ["space"] },         { word: "Dwarf", type: ["space"] },         { word: "Caldera", type: ["space"] },         { word: "Celestial", type: ["space"] },         { word: "Body", type: ["space"] },         { word: "Circumpolar", type: ["space"] },         { word: "Coma", type: ["space"] },         { word: "Comet", type: ["space"] },         { word: "Tail", type: ["space"] },         { word: "Constellation", type: ["space"] },         { word: "Corona", type: ["space"] },         { word: "Cosmic", type: ["space"] },         { word: "Dust", type: ["space"] },         { word: "Ray", type: ["space"] },         { word: "Cosmos", type: ["space"] },         { word: "Crater", type: ["space"] },         { word: "Crescent", type: ["space"] },         { word: "Dark", type: ["space"] },         { word: "Energy", type: ["space"] },         { word: "Matter", type: ["space"] },         { word: "Density", type: ["space"] },         { word: "Direction", type: ["space"] },         { word: "Distance", type: ["space"] },         { word: "Planet", type: ["space"] },         { word: "Eccentricity", type: ["space"] },         { word: "Eclipse", type: ["space"] },         { word: "Electromagnetism", type: ["space"] },         { word: "Emission", type: ["space"] },         { word: "Equinox", type: ["space"] },         { word: "Exoplanet", type: ["space"] },         { word: "Exosphere", type: ["space"] },         { word: "Fusion", type: ["space"] },         { word: "Galaxy", type: ["space"] },         { word: "Galactic", type: ["space"] },         { word: "Gas", type: ["space"] },         { word: "Gravity", type: ["space"] },         { word: "Heliocentric", type: ["space"] },         { word: "Heliosphere", type: ["space"] },         { word: "Helium", type: ["space"] },         { word: "Hydrogen", type: ["space"] },         { word: "Ion", type: ["space"] },         { word: "Ionosphere", type: ["space"] },         { word: "Interstellar", type: ["space"] },         { word: "Medium", type: ["space"] },         { word: "Nebula", type: ["space"] },         { word: "Intergalactic", type: ["space"] },         { word: "Irradiance", type: ["space"] },         { word: "Jet", type: ["space"] },         { word: "Lagging", type: ["space"] },         { word: "Lightyear", type: ["space"] },         { word: "Luminosity", type: ["space"] },         { word: "Lunar", type: ["space"] },         { word: "Magnetic", type: ["space"] },         { word: "Field", type: ["space"] },         { word: "Magnetosphere", type: ["space"] },         { word: "Main", type: ["space"] },         { word: "Sequence", type: ["space"] },         { word: "Mass", type: ["space"] },         { word: "Meteor", type: ["space"] },         { word: "Meteorite", type: ["space"] },         { word: "Meteoroid", type: ["space"] },         { word: "Micro", type: ["space"] },         { word: "Microwave", type: ["space"] },         { word: "Milky", type: ["space"] },         { word: "Way", type: ["space"] },         { word: "Moon", type: ["space"] },         { word: "Moonlight", type: ["space"] },         { word: "Moonphase", type: ["space"] },         { word: "Nebular", type: ["space"] },         { word: "Neutrino", type: ["space"] },         { word: "Neutron", type: ["space"] },         { word: "Star", type: ["space"] },         { word: "Nova", type: ["space"] },         { word: "Light", type: ["space"] },         { word: "Nucleus", type: ["space"] },         { word: "Nuclear", type: ["space"] },         { word: "Occultation", type: ["space"] },         { word: "Oort", type: ["space"] },         { word: "Cloud", type: ["space"] },         { word: "Orbit", type: ["space"] },         { word: "Orbital", type: ["space"] },         { word: "Particle", type: ["space"] },         { word: "Accelerator", type: ["space"] },         { word: "Phase", type: ["space"] },         { word: "Photosphere", type: ["space"] },         { word: "Planetary", type: ["space"] },         { word: "Plasma", type: ["space"] },         { word: "Wave", type: ["space"] },         { word: "Pole", type: ["space"] },         { word: "Protoplanet", type: ["space"] },         { word: "Pulsar", type: ["space"] },         { word: "Quasar", type: ["space"] },         { word: "Radiation", type: ["space"] },         { word: "Radiant", type: ["space"] },         { word: "Redshift", type: ["space"] },         { word: "Refraction", type: ["space"] },         { word: "Relativity", type: ["space"] },         { word: "Revolution", type: ["space"] },         { word: "Rotation", type: ["space"] },         { word: "Satellite", type: ["space"] },         { word: "Scintillation", type: ["space"] },         { word: "Spectrum", type: ["space"] },         { word: "Solar", type: ["space"] },         { word: "System", type: ["space"] },         { word: "Wind", type: ["space"] },         { word: "Spacetime", type: ["space"] },         { word: "Spiral", type: ["space"] },         { word: "Arm", type: ["space"] },         { word: "Stability", type: ["space"] },         { word: "Cluster", type: ["space"] },         { word: "Shine", type: ["space"] },         { word: "Stellar", type: ["space"] },         { word: "Nursery", type: ["space"] },         { word: "Winds", type: ["space"] },         { word: "Stellation", type: ["space"] },         { word: "Supernova", type: ["space"] },         { word: "Supermassive", type: ["space"] },         { word: "Super", type: ["space"] },         { word: "Tidal", type: ["space"] },         { word: "Force", type: ["space"] },         { word: "Lock", type: ["space"] },         { word: "Torque", type: ["space"] },         { word: "Trajectory", type: ["space"] },         { word: "Transit", type: ["space"] },         { word: "Turbulence", type: ["space"] }, 	        { word: "Vacuum", type: ["space"] },         { word: "Velocity", type: ["space"] },         { word: "Visible", type: ["space"] },         { word: "Void", type: ["space"] },         { word: "Warp", type: ["space"] },         { word: "Wormhole", type: ["space"] },         { word: "X-ray", type: ["space"] },         { word: "Young", type: ["space"] },         { word: "Zodiac", type: ["space"] },         { word: "Acceleration", type: ["space"] },         { word: "Atmospheric", type: ["space"] },         { word: "Astronautics", type: ["space"] },         { word: "Astrogeology", type: ["space"] },         { word: "Astronomical", type: ["space"] },         { word: "Auroralight", type: ["space"] },         { word: "Blackbody", type: ["space"] },         { word: "Boundary", type: ["space"] },         { word: "Candidate", type: ["space"] },         { word: "Sphere", type: ["space"] },         { word: "Centrifugal", type: ["space"] },         { word: "Centripetal", type: ["space"] },         { word: "Chromosphere", type: ["space"] },         { word: "Collapse", type: ["space"] },         { word: "Conjunction", type: ["space"] },         { word: "Convection", type: ["space"] },         { word: "Web", type: ["space"] },         { word: "Cycle", type: ["space"] },         { word: "Distant", type: ["space"] },         { word: "Doppler", type: ["space"] },         { word: "Dynamics", type: ["space"] },         { word: "Ejecta", type: ["space"] },         { word: "Element", type: ["space"] },         { word: "Line", type: ["space"] },         { word: "Ephemeris", type: ["space"] },         { word: "Equator", type: ["space"] },         { word: "Evolution", type: ["space"] },         { word: "Exhaust", type: ["space"] },         { word: "Expansion", type: ["space"] },         { word: "Extrasolar", type: ["space"] },         { word: "Flare", type: ["space"] },         { word: "Flux", type: ["space"] },         { word: "Formation", type: ["space"] },         { word: "Reaction", type: ["space"] },         { word: "Globular", type: ["space"] },         { word: "Gravitational", type: ["space"] },         { word: "Lens", type: ["space"] },         { word: "Heliolatitude", type: ["space"] },         { word: "Heliolongitude", type: ["space"] },         { word: "Heliomagnetic", type: ["space"] },         { word: "Heliopause", type: ["space"] },         { word: "Heliophysics", type: ["space"] },         { word: "Horizon", type: ["space"] },         { word: "Hydrostatic", type: ["space"] },         { word: "Illumination", type: ["space"] },         { word: "Impact", type: ["space"] },         { word: "Inclination", type: ["space"] },         { word: "Infrared", type: ["space"] },         { word: "Interaction", type: ["space"] },         { word: "Interferometry", type: ["space"] },         { word: "Space", type: ["space"] },         { word: "Jetstream", type: ["space"] },         { word: "Jupiter", type: ["space"] },         { word: "Like", type: ["space"] },         { word: "Kinetic", type: ["space"] },         { word: "Lagrangian", type: ["space"] },         { word: "Late", type: ["space"] },         { word: "Heavy", type: ["space"] },         { word: "Bombardment", type: ["space"] },         { word: "Intensity", type: ["space"] },         { word: "Luminescence", type: ["space"] },         { word: "Maria", type: ["space"] },         { word: "Night", type: ["space"] },         { word: "Surface", type: ["space"] },         { word: "Branch", type: ["space"] },         { word: "Loss", type: ["space"] },         { word: "Shower", type: ["space"] },         { word: "Migration", type: ["space"] },         { word: "Multi", type: ["space"] },         { word: "Disc", type: ["space"] },         { word: "Structure", type: ["space"] },         { word: "Neutral", type: ["space"] },         { word: "Atom", type: ["space"] },         { word: "New", type: ["space"] },         { word: "Nodal", type: ["space"] },         { word: "Event", type: ["space"] },         { word: "Period", type: ["space"] },         { word: "Radius", type: ["space"] },         { word: "Oscillation", type: ["space"] },         { word: "Mode", type: ["space"] },         { word: "Outflow", type: ["space"] },         { word: "Beam", type: ["space"] },         { word: "Trap", type: ["space"] },         { word: "Path", type: ["space"] },         { word: "Length", type: ["space"] },         { word: "Angle", type: ["space"] },         { word: "Photon", type: ["space"] },         { word: "Photometry", type: ["space"] },         { word: "Measurement", type: ["space"] },         { word: "Flow", type: ["space"] },         { word: "Polar", type: ["space"] },         { word: "Region", type: ["space"] },         { word: "Precession", type: ["space"] },         { word: "Rate", type: ["space"] },         { word: "Pressure", type: ["space"] },         { word: "Gradient", type: ["space"] },         { word: "Protoplanetary", type: ["space"] },         { word: "Disk", type: ["space"] },         { word: "Pulse", type: ["space"] },         { word: "Radial", type: ["space"] },         { word: "Radiance", type: ["space"] },         { word: "Radiative", type: ["space"] },         { word: "Refracted", type: ["space"] },         { word: "Regolith", type: ["space"] },         { word: "Layer", type: ["space"] },         { word: "Relativistic", type: ["space"] },         { word: "Effect", type: ["space"] },         { word: "Pattern", type: ["space"] },         { word: "Seismic", type: ["space"] },         { word: "Spectral", type: ["space"] },         { word: "Band", type: ["space"] },         { word: "Analysis", type: ["space"] },         { word: "Spin", type: ["space"] },         { word: "Burst", type: ["space"] },         { word: "Core", type: ["space"] },         { word: "Metallicity", type: ["space"] },         { word: "Explosion", type: ["space"] },         { word: "Shock", type: ["space"] },         { word: "Universal", type: ["space"] },         { word: "Constant", type: ["space"] },         { word: "Variable", type: ["space"] },         { word: "Dispersion", type: ["space"] },         { word: "Virial", type: ["space"] },         { word: "Volumetric", type: ["space"] },         { word: "Zombpaw", type: ["zombie"] },         { word: "Zombitten", type: ["zombie"] },         { word: "Zombuddy", type: ["zombie"] },         { word: "Zomkitty", type: ["zombie"] },         { word: "Zomclaw", type: ["zombie"] },         { word: "Brainy", type: ["zombie"] },         { word: "Brains", type: ["zombie"] },         { word: "Brainsy", type: ["zombie"] },         { word: "Zed", type: ["zombie"] },         { word: "Zedpaw", type: ["zombie"] },         { word: "Zompurr", type: ["zombie"] },         { word: "Meowbie", type: ["zombie"] },         { word: "Meowmbie", type: ["zombie"] },         { word: "Zomball", type: ["zombie"] },         { word: "Zompaw", type: ["zombie"] },         { word: "Deadpaw", type: ["zombie"] },         { word: "Deadclaw", type: ["zombie"] },         { word: "Undy", type: ["zombie"] },         { word: "Undeadpaw", type: ["zombie"] },         { word: "Rotpaw", type: ["zombie"] },         { word: "Rotclaw", type: ["zombie"] },         { word: "Molder", type: ["zombie"] },         { word: "Moldypaw", type: ["zombie"] },         { word: "Rotfur", type: ["zombie"] },         { word: "Rotface", type: ["zombie"] },         { word: "Corpsepaw", type: ["zombie"] },         { word: "Corpseclaw", type: ["zombie"] },         { word: "Putripaw", type: ["zombie"] },         { word: "Putrefy", type: ["zombie"] },         { word: "Festerpaw", type: ["zombie"] },         { word: "Festerclaw", type: ["zombie"] },         { word: "Crawler", type: ["zombie"] },         { word: "Creepypaw", type: ["zombie"] },         { word: "Groaner", type: ["zombie"] },         { word: "Moaner", type: ["zombie"] },         { word: "Wailer", type: ["zombie"] },         { word: "Shambler", type: ["zombie"] },         { word: "Shamblepaw", type: ["zombie"] },         { word: "Gnaw", type: ["zombie"] },         { word: "Gnawpaw", type: ["zombie"] },         { word: "Gnawclaw", type: ["zombie"] },         { word: "Chewer", type: ["zombie"] },         { word: "Chewpaw", type: ["zombie"] },         { word: "Bitey", type: ["zombie"] },         { word: "Biter", type: ["zombie"] },         { word: "Fangz", type: ["zombie"] },         { word: "Fangpaw", type: ["zombie"] },         { word: "Nibbles", type: ["zombie"] },         { word: "Gnawbles", type: ["zombie"] },         { word: "Lurch", type: ["zombie"] },         { word: "Lurchpaw", type: ["zombie"] },         { word: "Snaggle", type: ["zombie"] },         { word: "Snaggles", type: ["zombie"] },         { word: "Snagpaw", type: ["zombie"] },         { word: "Gruesome", type: ["zombie"] },         { word: "Grubpaw", type: ["zombie"] },         { word: "Grumble", type: ["zombie"] },         { word: "Grumpaw", type: ["zombie"] },         { word: "Grimace", type: ["zombie"] },         { word: "Grimpaw", type: ["zombie"] },         { word: "Slobber", type: ["zombie"] },         { word: "Slobberpaw", type: ["zombie"] },         { word: "Slime", type: ["zombie"] },         { word: "Slimy", type: ["zombie"] },         { word: "Slimepaw", type: ["zombie"] },         { word: "Oozy", type: ["zombie"] },         { word: "Oozeclaw", type: ["zombie"] },         { word: "Slasher", type: ["zombie"] },         { word: "Slashpaw", type: ["zombie"] },         { word: "Scratchpaw", type: ["zombie"] },         { word: "Scarface", type: ["zombie"] },         { word: "Scarpaw", type: ["zombie"] },         { word: "Scarclaw", type: ["zombie"] },         { word: "Fanged", type: ["zombie"] },         { word: "Fangfur", type: ["zombie"] },         { word: "Fangface", type: ["zombie"] },         { word: "Biteclaw", type: ["zombie"] },         { word: "Bitepaw", type: ["zombie"] },         { word: "Jaw", type: ["zombie"] },         { word: "Jawpaw", type: ["zombie"] },         { word: "Mandible", type: ["zombie"] },         { word: "Mandipaw", type: ["zombie"] },         { word: "Chomp", type: ["zombie"] },         { word: "Chomper", type: ["zombie"] },         { word: "Chomppaw", type: ["zombie"] },         { word: "Chompy", type: ["zombie"] },         { word: "Snarl", type: ["zombie"] },         { word: "Snarlpaw", type: ["zombie"] },         { word: "Snarly", type: ["zombie"] },         { word: "Growl", type: ["zombie"] },         { word: "Growlpaw", type: ["zombie"] },         { word: "Growly", type: ["zombie"] },         { word: "Rott", type: ["zombie"] },         { word: "Rotty", type: ["zombie"] },         { word: "Decay", type: ["zombie"] },         { word: "Decaypaw", type: ["zombie"] },         { word: "Decayclaw", type: ["zombie"] },         { word: "Cadaver", type: ["zombie"] },         { word: "Cadapaw", type: ["zombie"] },         { word: "Corpse", type: ["zombie"] },         { word: "Zombieface", type: ["zombie"] },         { word: "Zombiefur", type: ["zombie"] },         { word: "Zombiekins", type: ["zombie"] },         { word: "Zombini", type: ["zombie"] },         { word: "Zombert", type: ["zombie"] },         { word: "Zombino", type: ["zombie"] },         { word: "Zombaloo", type: ["zombie"] },         { word: "Zombito", type: ["zombie"] },         { word: "Zombinoid", type: ["zombie"] },         { word: "Zombopaw", type: ["zombie"] },         { word: "Undiepaw", type: ["zombie"] },         { word: "Undiefur", type: ["zombie"] },         { word: "Undyclaw", type: ["zombie"] },         { word: "Rothead", type: ["zombie"] },         { word: "Rottfur", type: ["zombie"] },         { word: "Rottclaw", type: ["zombie"] },         { word: "Pustule", type: ["zombie"] },         { word: "Pustlepaw", type: ["zombie"] },         { word: "Pusty", type: ["zombie"] },         { word: "Infection", type: ["zombie"] },         { word: "Infecpaw", type: ["zombie"] },         { word: "Pestilence", type: ["zombie"] },         { word: "Pestipaw", type: ["zombie"] },         { word: "Virus", type: ["zombie"] },         { word: "Viruspaw", type: ["zombie"] },         { word: "Pandemic", type: ["zombie"] },         { word: "Plague", type: ["zombie"] },         { word: "Plaguepaw", type: ["zombie"] },         { word: "Pestpaw", type: ["zombie"] },         { word: "Necro", type: ["zombie"] },         { word: "Necropaw", type: ["zombie"] },         { word: "Necroclaw", type: ["zombie"] },         { word: "Deathpaw", type: ["zombie"] },         { word: "Deathclaw", type: ["zombie"] },         { word: "Deady", type: ["zombie"] },         { word: "Ghoul", type: ["zombie"] },         { word: "Ghoulpaw", type: ["zombie"] },         { word: "Ghoulie", type: ["zombie"] },         { word: "Ghouly", type: ["zombie"] },         { word: "Ghoulish", type: ["zombie"] },         { word: "Muncher", type: ["zombie"] },         { word: "Munchpaw", type: ["zombie"] },         { word: "Munchie", type: ["zombie"] },         { word: "Snackpaw", type: ["zombie"] },         { word: "Snacky", type: ["zombie"] },         { word: "Fleshpaw", type: ["zombie"] },         { word: "Fleshclaw", type: ["zombie"] },         { word: "Corpsepurr", type: ["zombie"] },         { word: "Catastrophe (pun)", type: ["zombie"] },         { word: "Crawly", type: ["zombie"] },         { word: "Crawlpaw", type: ["zombie"] },         { word: "Crawlclaw", type: ["zombie"] },         { word: "Sludgy", type: ["zombie"] },         { word: "Sludgepaw", type: ["zombie"] },         { word: "Sludgeclaw", type: ["zombie"] },         { word: "Oozer", type: ["zombie"] },         { word: "Oozerpaw", type: ["zombie"] },         { word: "Slimypaw", type: ["zombie"] },         { word: "Vomity", type: ["zombie"] },         { word: "Vomipaw", type: ["zombie"] },         { word: "Spew", type: ["zombie"] },         { word: "Spewpaw", type: ["zombie"] },         { word: "Gagpaw", type: ["zombie"] },         { word: "Hork", type: ["zombie"] },         { word: "Horkpaw", type: ["zombie"] },         { word: "Sickly", type: ["zombie"] },         { word: "Sickpaw", type: ["zombie"] },         { word: "Sickclaw", type: ["zombie"] },         { word: "Decaying", type: ["zombie"] },         { word: "Decayfur", type: ["zombie"] },         { word: "Moldyfur", type: ["zombie"] },         { word: "Fungus", type: ["zombie"] },         { word: "Funguspaw", type: ["zombie"] },         { word: "Spoil", type: ["zombie"] },         { word: "Spoilpaw", type: ["zombie"] },         { word: "Moldpaw", type: ["zombie"] },         { word: "Plaguefur", type: ["zombie"] },         { word: "Pestiferous", type: ["zombie"] },         { word: "Pestfur", type: ["zombie"] },         { word: "Infecto", type: ["zombie"] },         { word: "Infectopaw", type: ["zombie"] },         { word: "Zomferatu", type: ["zombie"] },         { word: "Vladpaw", type: ["zombie"] },         { word: "Count Meowcula (pun)", type: ["zombie"] },         { word: "Mewmbie (pun)", type: ["zombie"] },         { word: "Furry Dead", type: ["zombie"] },         { word: "Pawculus", type: ["zombie"] },         { word: "Furassic", type: ["zombie"] },         { word: "Zompawzilla", type: ["zombie"] },         { word: "Bitezilla", type: ["zombie"] },         { word: "Jawzilla", type: ["zombie"] },         { word: "Chompzilla", type: ["zombie"] },         { word: "Rotzilla", type: ["zombie"] },         { word: "Undyzilla", type: ["zombie"] },         { word: "Ghoulzilla", type: ["zombie"] },         { word: "Fangzilla", type: ["zombie"] },         { word: "Scratchzilla", type: ["zombie"] },         { word: "Clawmbie", type: ["zombie"] },         { word: "Catmbie", type: ["zombie"] },         { word: "Mewmbie", type: ["zombie"] },         { word: "Purrmbie", type: ["zombie"] },         { word: "Fangpurr", type: ["zombie"] },         { word: "Chomppurr", type: ["zombie"] },         { word: "Clawpurr", type: ["zombie"] },         { word: "Zompurrzilla", type: ["zombie"] },         { word: "Meowmbie II", type: ["zombie"] },         { word: "Zedzilla", type: ["zombie"] },         { word: "Undeadzilla", type: ["zombie"] },         { word: "Rotpurr", type: ["zombie"] },         { word: "Decaypurr", type: ["zombie"] },         { word: "Ghoulpurr", type: ["zombie"] },         { word: "Zombiepaws", type: ["zombie"] },         { word: "Ghoulie Paw", type: ["zombie"] },         { word: "Zombieclaw", type: ["zombie"] },         { word: "Pawmbie", type: ["zombie"] },         { word: "Gnawzilla", type: ["zombie"] },         { word: "Meowmbiezilla", type: ["zombie"] },         { word: "Rotpawzilla", type: ["zombie"] },         { word: "Decaypawzilla", type: ["zombie"] },         { word: "Gnawpawzilla", type: ["zombie"] },         { word: "Bitepawzilla", type: ["zombie"] },         { word: "Chomppawzilla", type: ["zombie"] },         { word: "Scratchpawzilla", type: ["zombie"] },         { word: "Fangpawzilla", type: ["zombie"] },         { word: "Zombieclawzilla", type: ["zombie"] },         { word: "Gnawpurr", type: ["zombie"] },         { word: "Bitepurr", type: ["zombie"] },         { word: "Meowster", type: ["zombie"] },         { word: "Purrfect Undead", type: ["zombie"] },         { word: "Scratchmancer", type: ["zombie"] },         { word: "Meowmbiefang", type: ["zombie"] },         { word: "Zomnom", type: ["zombie"] },         { word: "Cataclysm", type: ["zombie"] },         { word: "Rotmancer", type: ["zombie"] },         { word: "Undiepurr", type: ["zombie"] },         { word: "Fangpocalypse", type: ["zombie"] },         { word: "Meowmbie King", type: ["zombie"] },         { word: "", type: [""] }, 



    ];

    const typeCheckboxes = {};
    function refreshTypeCheckboxes() {
        const allTypes = [...new Set(words.flatMap(w=>Array.isArray(w.type)?w.type:[w.type]))];
        allTypes.forEach(t => {
            if(typeCheckboxes[t]) return;
            const wrapper = document.createElement("div");
            const cb = document.createElement("input"); cb.type="checkbox"; cb.value=t; cb.id=`type-${t}`;
            cb.checked = settings.typeStates ? settings.typeStates[t] !== false : true;
            cb.addEventListener("change", ()=>{ settings.typeStates=settings.typeStates||{}; settings.typeStates[t]=cb.checked; saveSettings(); });
            const label = document.createElement("label"); label.textContent=t; label.htmlFor=cb.id;
            wrapper.appendChild(cb); wrapper.appendChild(label);
            typeContainer.appendChild(wrapper); typeCheckboxes[t]=cb;
        });
    }

    selectAllBtn.addEventListener("click",()=>{ Object.entries(typeCheckboxes).forEach(([t,cb])=>{ cb.checked=true; settings.typeStates[t]=true; }); saveSettings(); });
    deselectAllBtn.addEventListener("click",()=>{ Object.entries(typeCheckboxes).forEach(([t,cb])=>{ cb.checked=false; settings.typeStates[t]=false; }); saveSettings(); });

    function getWordsBySelectedTypes() { 
        const selectedTypes=Object.keys(typeCheckboxes).filter(t=>typeCheckboxes[t].checked); 
        return words.filter(w=> (Array.isArray(w.type)?w.type:[w.type]).some(t=>selectedTypes.includes(t))); 
    }

    function getRandomName(existingNames) {
        const availableWords = getWordsBySelectedTypes();
        if (availableWords.length===0) return "No words!";
        const maxWords = Math.max(parseInt(wordCountInput.value),1);
        const wordCount = randomCheck.checked?Math.floor(Math.random()*maxWords)+1:maxWords;
        let name, attempts=0;
        do {
            const selectedWords=[];
            for(let i=0;i<wordCount;i++) selectedWords.push(availableWords[Math.floor(Math.random()*availableWords.length)].word);
            name = selectedWords.join(" ");
            attempts++;
            if(attempts>50) break;
        } while(existingNames.has(name));
        return name;
    }

    function fillUniqueNames() {
        const inputs = document.querySelectorAll("input.puma_multiselect_rename");
        const usedNames = new Set();
        const filterText = filterInput.value.trim();
        inputs.forEach(el=>{
            if(filterCheck.checked && filterText && !el.value.includes(filterText)) return;
            const newName = getRandomName(usedNames);
            el.value = newName;
            el.dispatchEvent(new Event('input',{bubbles:true}));
            usedNames.add(newName);
        });
    }

    randomizeButton.addEventListener("click", fillUniqueNames);

    // --- Panel state ---
    if(settings.panelOpen) { container.style.display="block"; refreshTypeCheckboxes(); }
    else container.style.display="none";

    randomButton.addEventListener("click",()=>{
        if(container.style.display==="block"){ container.style.display="none"; settings.panelOpen=false; }
        else{ container.style.display="block"; refreshTypeCheckboxes(); settings.panelOpen=true; }
        saveSettings();
    });

})();