diff --git a/.agents/skills/icon-descriptions/SKILL.md b/.agents/skills/icon-descriptions/SKILL.md new file mode 100644 index 00000000000000..8e1012ee01209f --- /dev/null +++ b/.agents/skills/icon-descriptions/SKILL.md @@ -0,0 +1,83 @@ +--- +name: icon-descriptions +description: 'Generate search keywords and visual descriptions for Material icons that are missing from docs/data/material/components/material-icons/iconDescriptions.json, for example after new icons are added to @mui/icons-material. Use when the user asks to update, fill in or regenerate icon descriptions or icon search keywords, or runs /icon-descriptions. Pass --all to regenerate every icon, or --icons=A,B for specific ones.' +--- + +# Icon descriptions + +`docs/data/material/components/material-icons/iconDescriptions.json` holds, for every base icon name (no `Outlined`/`Rounded`/`TwoTone`/`Sharp` suffix): + +- `keywords`: search words that are not already in the icon name or in `synonyms.js` +- `visual`: one sentence describing what the icon looks like + +`pnpm docs:mdicons:synonyms` merges both into `synonyms.js`, the same way it merges the tags from Google's Material Symbols metadata, and the icon search on the docs site indexes `synonyms.js`. The JSON is generated by looking at rendered icons, in two passes run by subagents, with `docs/scripts/iconDescriptions.mjs` doing everything around them. + +Argument hint: `[--all | --icons=A,B]`. Without arguments, only icons missing from the JSON are processed. + +## Workflow + +Use a work directory outside the repository, for example `$TMPDIR/mui-icon-descriptions`. Start from an empty directory. + +### 1. Render sheets + +```bash +pnpm docs:mdicons:descriptions prepare [--all | --icons=A,B] +``` + +This renders the icons into 4×4 labeled sheets (`/sheets/sheet_XXX.png`), writes `/manifest.json`, and writes the icons' existing synonyms to `/synonyms.json` for the keyword pass. If it reports 0 icons, there is nothing to do: tell the user and stop. + +View one sheet yourself to confirm the icons render correctly before continuing. + +### 2. Visual pass + +Split the sheet ids into batches of about 14 sheets. For each batch, launch a subagent (model: Sonnet) whose prompt is the contents of [prompts/visual.md](prompts/visual.md) with `{{WORK_DIR}}` replaced by the absolute work directory and `{{SHEETS}}` by the batch's sheet ids. Run the batches in parallel and wait for all of them. + +The visual pass must not see the existing synonyms: they describe meaning, and in testing they made the descriptions vaguer. + +### 3. Check and clean up the descriptions + +```bash +pnpm docs:mdicons:descriptions check visual +``` + +- Missing or invalid files: rerun the visual pass for those sheets only. +- Descriptions using style or filler words ("outline", "filled", ...): subagents use these in roughly 1 in 8 descriptions despite the instructions. Edit those sentences directly in `/out/visual_XXX.json` with a minimal change: drop the style word ("house outline with a badge" becomes "house with a badge"), or rephrase when it carries meaning ("one dashed and one solid line" becomes "one dashed and one continuous line"). + +Run the check again. It must pass before continuing. + +### 4. Keyword pass + +Launch subagents (Sonnet) in the same batches with [prompts/keywords.md](prompts/keywords.md), placeholders replaced as in step 2, and wait for all of them. They read the existing synonyms and the checked visual descriptions from the work directory. + +```bash +pnpm docs:mdicons:descriptions check keywords +``` + +Rerun the keyword pass for any sheet that fails. + +### 5. Merge + +```bash +pnpm docs:mdicons:descriptions merge +pnpm docs:mdicons:synonyms +``` + +`merge` adds or replaces the processed icons in `iconDescriptions.json`, drops keywords that are filler or repeat the name or synonyms, removes icons that no longer exist in `@mui/icons-material`, and sorts the file. `docs:mdicons:synonyms` then merges the new words into `synonyms.js` and formats the changed files with Prettier. + +`docs:mdicons:synonyms` also fetches the latest tags from Google's Material Symbols metadata, so the diff can include changes that are not from this workflow. Mention them when reporting. + +Then rebuild the semantic search index, which embeds the icon texts: + +```bash +pnpm docs:mdicons:search-index +``` + +### 6. Review + +- Pick two or three sheets and compare the new entries against the images. Look for invented details (parts that are not drawn) and keywords that belong to a neighboring icon. +- Report to the user: how many icons were added or updated, how many descriptions needed the cleanup pass, and anything that looked wrong. + +## Notes + +- Why sheets of 16 with names: tested against one icon per image and against unlabeled grids. Labeled 4×4 sheets at this size were as specific as single images and more accurate, because the name tells the model what an ambiguous shape represents. +- Do not edit `synonyms.js` by hand from this workflow. It only ever gains words: `docs:mdicons:synonyms` keeps existing words, so removing a keyword from the JSON does not remove it from `synonyms.js`. diff --git a/.agents/skills/icon-descriptions/prompts/keywords.md b/.agents/skills/icon-descriptions/prompts/keywords.md new file mode 100644 index 00000000000000..8f375d65dde9e5 --- /dev/null +++ b/.agents/skills/icon-descriptions/prompts/keywords.md @@ -0,0 +1,42 @@ +# Search keywords + +You are writing search keywords for Material UI icons, shown on an icon search page. People type short queries (1–3 words) to find an icon, either by what it means ("delete", "settings", "log out") or by what it looks like ("trash can", "three dots", "eye with slash"). + +## Input + +- Sheet images in `{{WORK_DIR}}/sheets/`: each `sheet_XXX.png` is a 4×4 grid of up to 16 icons, each cell labeled `. `. The exact icon names per sheet are in `{{WORK_DIR}}/manifest.json` (array of `{ id, file, names }`). +- `{{WORK_DIR}}/synonyms.json` maps each icon name to the search keywords that already exist for it (chosen by people, may be empty or noisy). +- For each sheet, `{{WORK_DIR}}/out/visual_XXX.json` maps each icon name to a short description of what the icon looks like, written earlier. + +Read the manifest and `synonyms.json` once. Then, for each sheet, read its visual descriptions and view the sheet image with the Read tool. Do not crop, zoom or otherwise process the images, and do not open icon source files. Only use Read and Write. + +Your sheets: {{SHEETS}} + +## What to write for every icon + +An array of 8–15 lowercase strings, single words or short phrases (at most 3 words), that someone might type to find this icon and that are NOT already covered by the icon name or the existing synonyms. Add what is missing: + +- Synonyms for the concept (delete → erase, discard). +- Everyday and informal names for the drawn object (gear → cog; three vertical dots → kebab menu; trash can → bin, dustbin; three horizontal lines → hamburger menu). +- Short appearance phrases people might type, based on the drawing and the visual description ("eye with slash", "arrow in circle", "house with chimney"). +- British and American variants where they differ (trash / rubbish, elevator / lift). +- What the icon is typically used for in an app UI (settings page, upload file, log out, mark as favorite). +- The expansion of abbreviations in the name (Hdr → high dynamic range, Sip → session initiation protocol, Mp → megapixel). +- For brand logos, the brand and company name. + +Do not include: + +- Words already in the icon name or the existing synonyms (plurals and small spelling variants of them count as already covered). +- Generic filler: icon, symbol, button, sign, shape, graphic, image, filled, outlined, solid, black, simple, material. +- Style words: filled, outlined, rounded, sharp, two tone. +- Keywords that belong to a different icon on the sheet: neighboring icons are often variants (Mic, MicOff, MicNone). Keywords must fit this specific icon, for example "mute" for MicOff, not for Mic. + +If the name and synonyms already cover an icon well, it is fine to return fewer (at least 5), but never pad with weak words. + +## Output + +For each of your sheets, write `{{WORK_DIR}}/out/kw_XXX.json` (same `XXX` as the sheet) with the Write tool: one JSON object mapping each exact icon name to its keyword array, for example `{"Mail": ["envelope", "..."], "MailLock": ["..."]}`. Every icon on the sheet must appear exactly once. The file must be valid JSON. + +Work through your sheets one at a time. Do not write anywhere else. + +When done, reply with one line only: the sheet ids you completed and the total number of icons written. diff --git a/.agents/skills/icon-descriptions/prompts/visual.md b/.agents/skills/icon-descriptions/prompts/visual.md new file mode 100644 index 00000000000000..6f0b62276044fa --- /dev/null +++ b/.agents/skills/icon-descriptions/prompts/visual.md @@ -0,0 +1,38 @@ +# Visual descriptions + +You are writing short visual descriptions of UI icons for an icon search page. People sometimes search by what an icon looks like ("eye with slash", "three dots", "person with backpack"), so each description must say what is drawn. + +## Input + +Sheet images are in `{{WORK_DIR}}/sheets/`. Each `sheet_XXX.png` is a 4×4 grid of up to 16 icons, each cell labeled `. `. The exact icon names per sheet are in `{{WORK_DIR}}/manifest.json` (array of `{ id, file, names }`). Read the manifest once, then view each of your sheets with the Read tool. + +Look at the sheet images as they are. Do not crop, zoom, re-render or otherwise process them, and do not open icon source files or `{{WORK_DIR}}/synonyms.json`. Only use Read and Write. + +Your sheets: {{SHEETS}} + +## What to write for every icon + +One sentence, 8–20 words: + +- Start with what the drawing represents when you can recognize it: say "door", "face", "person", "hand", "house", "speech bubble", not "rectangle with a circle". Use the icon name to understand what it represents. +- Then add the details that set it apart from similar icons: modifiers (diagonal slash through it, small plus badge, circle around it), arrow direction, position of parts, and any text or letters shown. Neighboring icons are often variants of each other (Man, Man2, Man3); make sure each sentence captures what is specific to that icon. +- Only mention parts you can actually see. Do not add parts that are not drawn (a doorknob, window, face or person that isn't there). +- Give counts only when they are small and obvious at a glance ("three dots", "two arrows"). Otherwise say "several" or leave the count out. +- Do not say "filled", "outline", "outlined", "solid", "hollow" or "black": the same description is used for the filled, outlined, rounded, sharp and two-tone versions of the icon. +- The sentence must stand on its own. Do not compare with other icons ("like the previous one", "same as Man but"). +- No filler: icon, depicting, image of, showing, simple. +- Lowercase start, no trailing period. + +Examples of the style: + +- "gear with rounded teeth around the rim and a round hole in the center" +- "three dots stacked vertically in a single column" +- "microphone on a stand with a diagonal slash through it" + +## Output + +For each of your sheets, write `{{WORK_DIR}}/out/visual_XXX.json` (same `XXX` as the sheet) with the Write tool: one JSON object mapping each exact icon name from the manifest to its sentence, for example `{"Mail": "...", "MailLock": "..."}`. Every icon on the sheet must appear exactly once. The file must be valid JSON. + +Work through your sheets one at a time: view the sheet, write its file, then move to the next. Do not write anywhere else. + +When done, reply with one line only: the sheet ids you completed and the total number of icons written. diff --git a/.claude/skills/icon-descriptions/SKILL.md b/.claude/skills/icon-descriptions/SKILL.md new file mode 100644 index 00000000000000..d0e379a91bac08 --- /dev/null +++ b/.claude/skills/icon-descriptions/SKILL.md @@ -0,0 +1,10 @@ +--- +name: icon-descriptions +description: 'Generate search keywords and visual descriptions for Material icons that are missing from docs/data/material/components/material-icons/iconDescriptions.json, for example after new icons are added to @mui/icons-material. Use when the user asks to update, fill in or regenerate icon descriptions or icon search keywords, or runs /icon-descriptions. Pass --all to regenerate every icon, or --icons=A,B for specific ones.' +--- + +# Icon descriptions + +This is the Claude Code entrypoint for the shared repo skill. + +Read `.agents/skills/icon-descriptions/SKILL.md` completely and follow that workflow. Pass through any user arguments such as `--all` or `--icons=A,B`. diff --git a/.lintignore b/.lintignore index 4bdaa23bf1bd7b..4388a7f8c7ec62 100644 --- a/.lintignore +++ b/.lintignore @@ -1,6 +1,8 @@ /.git /coverage /docs/export +# Generated by docs/scripts/buildIconSearchIndex.mjs +/docs/public/static/material-icons /docs/pages/playground/ /examples/material-ui-cra*/src/serviceWorker.js /examples/material-ui-gatsby/public/ diff --git a/docs/data/material/components/material-icons/SearchIcons.js b/docs/data/material/components/material-icons/SearchIcons.js index 4ca49ff8aacf35..4c2ce8ac5881f7 100644 --- a/docs/data/material/components/material-icons/SearchIcons.js +++ b/docs/data/material/components/material-icons/SearchIcons.js @@ -49,6 +49,7 @@ import useQueryParameterState from 'docs/src/modules/utils/useQueryParameterStat // import DeleteForeverSharp from '@mui/icons-material/DeleteForeverSharp'; import { HighlightedCode } from '@mui/internal-core-docs/HighlightedCode'; import synonyms from './synonyms'; +import { loadSemanticIndex, rankIcons } from './semanticSearch'; const FlexSearchIndex = flexsearch.Index; @@ -565,6 +566,12 @@ const allIcons = Object.keys(mui) return icon; }); +const allIconsByTheme = {}; +for (const icon of allIcons) { + allIconsByTheme[icon.theme] ??= {}; + allIconsByTheme[icon.theme][icon.name] = icon; +} + /** * Returns the last defined value that has been passed in [value] */ @@ -594,12 +601,29 @@ export default function SearchIcons() { setSelectedIcon(''); }, [setSelectedIcon]); + const [semanticIndex, setSemanticIndex] = React.useState(null); + React.useEffect(() => { + if (query !== '' && !semanticIndex) { + // Keyword search keeps working if the index fails to load. + loadSemanticIndex().then(setSemanticIndex, () => {}); + } + }, [query, semanticIndex]); + const icons = React.useMemo(() => { - const keys = query === '' ? null : searchIndex.search(query, { limit: 3000 }); - return (keys === null ? allIcons : keys.map((key) => allIconsMap[key])).filter( - (icon) => theme === icon.theme, - ); - }, [query, theme]); + if (query === '') { + return allIcons.filter((icon) => theme === icon.theme); + } + const keywordMatches = [ + ...new Set( + searchIndex + .search(query, { limit: 3000 }) + .map((key) => allIconsMap[key].name), + ), + ]; + return rankIcons(query, keywordMatches, semanticIndex) + .map((name) => allIconsByTheme[theme][name]) + .filter(Boolean); + }, [query, theme, semanticIndex]); const deferredIcons = React.useDeferredValue(icons); diff --git a/docs/data/material/components/material-icons/iconDescriptions.json b/docs/data/material/components/material-icons/iconDescriptions.json new file mode 100644 index 00000000000000..baa79997c9dfa2 --- /dev/null +++ b/docs/data/material/components/material-icons/iconDescriptions.json @@ -0,0 +1,14222 @@ +{ + "Abc": { + "keywords": [ + "typography", + "text style", + "type sample", + "font preview", + "spelling", + "literacy", + "word", + "abcs" + ], + "visual": "letters A, B and C in blocky sans-serif capitals" + }, + "AcUnit": { + "keywords": [ + "hvac", + "climate control", + "frost", + "chilly", + "ice", + "refrigeration", + "cool air", + "thermostat" + ], + "visual": "snowflake with six pointed arms radiating from a center point" + }, + "AccessAlarm": { + "keywords": [ + "wake up", + "bell", + "ringing", + "timer", + "morning", + "deadline", + "reminder", + "snooze" + ], + "visual": "round alarm clock with two bells on top, hands pointing to roughly ten and two" + }, + "AccessAlarms": { + "keywords": [ + "wake up", + "bell", + "ringing", + "timer", + "morning", + "deadline", + "reminder", + "snooze" + ], + "visual": "round alarm clock with two bells on top, hands pointing to roughly nine and one" + }, + "AccessTime": { + "keywords": [ + "watch", + "schedule", + "duration", + "hour", + "wait", + "timestamp", + "pending", + "history" + ], + "visual": "round clock face with hour and minute hands pointing to roughly ten and two, no bells" + }, + "AccessTimeFilled": { + "keywords": ["clock", "watch", "schedule", "duration", "hour", "wait", "timestamp", "pending"], + "visual": "circle clock face with hour and minute hands pointing to roughly ten and two" + }, + "Accessibility": { + "keywords": [ + "ada", + "disability", + "inclusive", + "special needs", + "universal design", + "diversity", + "t-pose", + "assistive" + ], + "visual": "person standing with arms stretched straight out to the sides and a round head" + }, + "AccessibilityNew": { + "keywords": [ + "ada", + "disability", + "inclusive", + "active pose", + "running", + "special needs", + "universal design", + "dynamic" + ], + "visual": "person with a round head, arms angled outward and slightly up, legs apart" + }, + "Accessible": { + "keywords": [ + "ada", + "disability", + "mobility", + "disabled", + "wheelchair access", + "special needs", + "ramp", + "inclusive" + ], + "visual": "person seated in a wheelchair shown from the side with one large wheel" + }, + "AccessibleForward": { + "keywords": [ + "ada", + "disability", + "mobility", + "disabled", + "wheelchair access", + "moving forward", + "active", + "racing" + ], + "visual": "person in a wheelchair leaning forward with an arm reaching ahead, as if moving" + }, + "AccountBalance": { + "keywords": [ + "courthouse", + "museum", + "capitol", + "treasury", + "institution", + "savings", + "balance sheet", + "federal reserve" + ], + "visual": "building with a triangular pediment roof, a row of columns, and a base ledge" + }, + "AccountBalanceWallet": { + "keywords": ["purse", "billfold", "budget", "spending", "checkout", "savings"], + "visual": "wallet shape with a flap and a round button or coin on its front" + }, + "AccountBox": { + "keywords": ["id card", "badge", "contact card", "login", "sign in", "identity", "member"], + "visual": "rounded square frame containing a person's head and shoulders silhouette" + }, + "AccountCircle": { + "keywords": ["login", "sign in", "identity", "contact", "member", "default avatar"], + "visual": "circle containing a person's head and shoulders silhouette" + }, + "AccountTree": { + "keywords": [ + "hierarchy", + "org chart", + "flowchart", + "family tree", + "decision tree", + "network", + "nodes", + "branches" + ], + "visual": "small boxes connected by branching lines in a hierarchical tree layout" + }, + "AdUnits": { + "keywords": [ + "advertisement", + "marketing", + "banner ad", + "app promo", + "push notification", + "mobile ad", + "commercial" + ], + "visual": "phone-shaped rectangle with a horizontal bar near the top and text lines below" + }, + "Adb": { + "keywords": ["robot", "terminal", "command line", "developer tools", "sdk", "shell", "droid"], + "visual": "robot head with two antennae and round eyes, rounded body below" + }, + "Add": { + "keywords": ["addition", "insert", "append", "math", "sum", "increment"], + "visual": "plus sign" + }, + "AddAPhoto": { + "keywords": ["upload photo", "capture", "snapshot", "take picture", "new image", "add image"], + "visual": "camera body with a round lens and a small plus sign at the top left corner" + }, + "AddAlarm": { + "keywords": [ + "set alarm", + "new alarm", + "wake up", + "schedule reminder", + "bell", + "create reminder" + ], + "visual": "round alarm clock with two bells on top and a plus sign in the center" + }, + "AddAlert": { + "keywords": [ + "create alert", + "subscribe", + "enable notifications", + "new warning", + "turn on notifications" + ], + "visual": "bell with a plus sign in the center" + }, + "AddBox": { + "keywords": ["add item", "new entry", "insert", "checkbox", "add field"], + "visual": "rounded square with a plus sign in the center" + }, + "AddBusiness": { + "keywords": [ + "new store", + "register business", + "add company", + "open shop", + "new listing", + "add vendor" + ], + "visual": "small storefront building with an awning and a plus sign at the bottom right" + }, + "AddCall": { + "keywords": ["phone", "dial", "add contact", "new call", "conference call", "merge call"], + "visual": "telephone handset with a plus sign beside it" + }, + "AddCard": { + "keywords": ["add credit card", "new payment method", "link card", "register card", "wallet"], + "visual": "card shape with a horizontal stripe near the top and a plus sign at the bottom right" + }, + "AddCircle": { + "keywords": ["add button", "increase", "expand", "positive", "insert row"], + "visual": "circle with a plus sign in the center" + }, + "AddComment": { + "keywords": ["reply", "annotate", "new note", "add feedback", "discuss"], + "visual": "speech bubble with a pointed tail and a plus sign in the center" + }, + "AddHome": { + "keywords": ["house", "new address", "add property", "set as home", "save location", "move in"], + "visual": "house with a circular badge containing a plus sign at the bottom right" + }, + "AddHomeWork": { + "keywords": [ + "office", + "work address", + "add workplace", + "commute", + "set work location", + "house and office" + ], + "visual": "house with a small square window and a circular badge with a plus sign at the bottom right" + }, + "AddIcCall": { + "keywords": [ + "dial", + "add contact", + "new call", + "conference call", + "merge call", + "incoming call" + ], + "visual": "telephone handset with a plus sign beside it" + }, + "AddLink": { + "keywords": ["hyperlink", "url", "connect", "insert link", "chain", "attachment"], + "visual": "two chain links joined together with a small plus sign at the bottom right" + }, + "AddLocation": { + "keywords": [ + "drop pin", + "new address", + "save place", + "mark location", + "add marker", + "waypoint" + ], + "visual": "teardrop-shaped location pin with a plus sign in the center" + }, + "AddLocationAlt": { + "keywords": [ + "drop pin", + "new address", + "save place", + "mark location", + "favorite place", + "waypoint" + ], + "visual": "teardrop-shaped location pin with a hole in the middle and a plus sign badge at the top right" + }, + "AddModerator": { + "keywords": ["add admin", "promote", "grant permission", "trust", "safety", "protect"], + "visual": "shield shape with a plus sign badge at the bottom right" + }, + "AddPhotoAlternate": { + "keywords": ["upload photo", "add image", "gallery", "insert picture", "attach photo"], + "visual": "picture frame with a mountain landscape inside and a plus sign at the top right" + }, + "AddReaction": { + "keywords": ["add emoji", "react", "insert emoji", "add sticker", "express"], + "visual": "smiling face with a plus sign badge at the top right" + }, + "AddRoad": { + "keywords": ["new route", "add street", "construction", "highway planning", "lane", "pavement"], + "visual": "vertical road with dashed lane markings and a plus sign at the bottom right" + }, + "AddShoppingCart": { + "keywords": ["buy", "purchase", "basket", "add to bag", "order", "ecommerce"], + "visual": "shopping cart with two wheels and a plus sign above the basket" + }, + "AddTask": { + "keywords": ["new task", "checklist", "to-do", "approve item", "assign task", "done"], + "visual": "circular checkmark with a plus sign overlapping at the bottom right" + }, + "AddToDrive": { + "keywords": ["save to drive", "upload", "cloud storage", "backup file", "import"], + "visual": "triangular drive logo with a plus sign at the bottom right" + }, + "AddToHomeScreen": { + "keywords": ["install app", "pwa", "shortcut", "bookmark app", "pin to home", "launch icon"], + "visual": "rounded rectangle phone with a diagonal arrow pointing to the upper left inside it" + }, + "AddToPhotos": { + "keywords": ["save to gallery", "add to album", "import photo", "stack", "photo library"], + "visual": "stack of square photo frames with a plus sign on the front one" + }, + "AddToQueue": { + "keywords": ["add to playlist", "watch later", "add to list", "schedule playback", "stream"], + "visual": "monitor screen with a plus sign in the center" + }, + "Addchart": { + "keywords": ["new graph", "insert chart", "bar graph", "growth", "trend", "report"], + "visual": "bar chart with rising bars and a plus sign at the top right" + }, + "AdfScanner": { + "keywords": [ + "automatic document feeder", + "printer", + "copier", + "fax", + "scan documents", + "multifunction" + ], + "visual": "printer or scanner shape with a paper tray on top and a round dot" + }, + "Adjust": { + "keywords": ["calibrate", "configure", "preferences", "dial", "knob", "bullseye"], + "visual": "circle with a smaller dot centered inside, like a target" + }, + "AdminPanelSettings": { + "keywords": [ + "administrator", + "permissions", + "access control", + "moderator", + "superuser", + "role management" + ], + "visual": "shield shape with a small person badge at the bottom right" + }, + "AdsClick": { + "keywords": [ + "ad campaign", + "marketing", + "ppc", + "pay per click", + "advertisement", + "conversion", + "engagement" + ], + "visual": "concentric target rings with a cursor arrow pointing into the center" + }, + "Agriculture": { + "keywords": ["farming", "agrarian", "farmland", "plow", "field", "crop", "rural"], + "visual": "tractor with a large rear wheel, small front wheel, and seat, shown from the side" + }, + "Air": { + "keywords": ["gust", "ventilation", "airflow", "draft", "atmosphere", "gale"], + "visual": "curved swirling lines like gusts of wind blowing horizontally" + }, + "AirlineSeatFlat": { + "keywords": ["lie down", "airplane seat", "in-flight", "nap", "horizontal", "pod seat"], + "visual": "person lying flat on a horizontal bed or seat, viewed from the side" + }, + "AirlineSeatFlatAngled": { + "keywords": [ + "recline", + "airplane seat", + "in-flight", + "tilted seat", + "business class bed", + "lie back" + ], + "visual": "person lying on a bed or seat that is tilted at an angle" + }, + "AirlineSeatIndividualSuite": { + "keywords": [ + "private pod", + "sleeping pod", + "enclosed cabin", + "privacy", + "first class cabin", + "capsule" + ], + "visual": "person lying inside an enclosed rectangular suite or pod" + }, + "AirlineSeatLegroomExtra": { + "keywords": ["stretch legs", "comfort seat", "premium economy", "more space", "spacious seat"], + "visual": "side view of a seat with the leg stretched forward with extra space" + }, + "AirlineSeatLegroomNormal": { + "keywords": [ + "standard seat", + "economy seat", + "coach class", + "regular seating", + "typical space" + ], + "visual": "side view of a seat with the leg bent at a normal angle" + }, + "AirlineSeatLegroomReduced": { + "keywords": [ + "cramped seat", + "tight space", + "basic economy", + "restricted seat", + "limited space" + ], + "visual": "side view of a seat with the leg bent close in, cramped for space" + }, + "AirlineSeatReclineExtra": { + "keywords": ["lounge seat", "lean back", "business class seat", "full recline", "relax"], + "visual": "person sitting reclined far back with a round head, side view seat" + }, + "AirlineSeatReclineNormal": { + "keywords": [ + "upright seat", + "sitting position", + "economy seat", + "standard seating", + "regular posture" + ], + "visual": "person sitting upright with a round head, side view seat" + }, + "AirlineStops": { + "keywords": [ + "connecting flight", + "stopover", + "transfer", + "itinerary", + "layover route", + "detour" + ], + "visual": "curved arrow that branches off and continues onward, indicating a stopover route" + }, + "Airlines": { + "keywords": ["carrier", "tail fin", "aviation", "flight company", "boarding"], + "visual": "triangular airplane tail fin with a round window" + }, + "AirplaneTicket": { + "keywords": ["boarding pass", "e-ticket", "travel document", "book flight", "reservation"], + "visual": "rounded rectangle ticket shape with an airplane silhouette inside" + }, + "AirplanemodeActive": { + "keywords": ["flight mode", "offline mode", "no signal", "disconnect", "cellular off"], + "visual": "airplane silhouette pointing upward" + }, + "AirplanemodeInactive": { + "keywords": ["flight mode off", "connected", "signal on", "wifi enabled", "cellular on"], + "visual": "airplane silhouette with a diagonal slash through it" + }, + "Airplay": { + "keywords": [ + "screen mirroring", + "stream to tv", + "wireless display", + "apple tv", + "mirror screen" + ], + "visual": "rectangular screen with a triangle pointing up below it" + }, + "AirportShuttle": { + "keywords": ["minibus", "taxi service", "transfer", "passenger van", "hotel shuttle", "ride"], + "visual": "van with windows across the top and two wheels, shown from the side" + }, + "Alarm": { + "keywords": ["wake up", "ring", "timer", "morning", "snooze", "buzzer"], + "visual": "round alarm clock with two bells on top and hands pointing to a time" + }, + "AlarmAdd": { + "keywords": ["set alarm", "new alarm", "create reminder", "schedule wake up", "add timer"], + "visual": "round alarm clock with two bells on top and a plus sign in the center" + }, + "AlarmOff": { + "keywords": ["mute alarm", "silence", "cancel alarm", "dismiss", "no ringing"], + "visual": "round alarm clock with two bells on top and a diagonal slash through a circle over it" + }, + "AlarmOn": { + "keywords": ["alarm set", "enable alarm", "active alarm", "armed", "confirmed"], + "visual": "round alarm clock with two bells on top and a checkmark in the center" + }, + "Album": { + "keywords": ["lp", "discography", "playlist", "songs collection", "gallery", "photo album"], + "visual": "circle with a small dot in the center, like a vinyl record" + }, + "AlignHorizontalCenter": { + "keywords": [ + "center horizontally", + "distribute center", + "midpoint align", + "centering objects", + "align middle" + ], + "visual": "vertical line through the middle with two horizontal bars of different lengths crossing it" + }, + "AlignHorizontalLeft": { + "keywords": ["left align", "flush left", "align objects left", "left edge", "left justify"], + "visual": "vertical line on the left edge with two horizontal bars of different lengths extending right from it" + }, + "AlignHorizontalRight": { + "keywords": [ + "right align", + "flush right", + "align objects right", + "right edge", + "right justify" + ], + "visual": "vertical line on the right edge with two horizontal bars of different lengths extending left from it" + }, + "AlignVerticalBottom": { + "keywords": [ + "bottom align", + "align objects bottom", + "baseline align", + "flush bottom", + "sit on bottom" + ], + "visual": "horizontal line along the bottom with two vertical bars of different heights standing above it" + }, + "AlignVerticalCenter": { + "keywords": [ + "middle align", + "vertical center", + "distribute middle", + "center objects vertically", + "midline" + ], + "visual": "horizontal line through the middle with two vertical bars of different heights crossing it" + }, + "AlignVerticalTop": { + "keywords": ["top align", "align objects top", "flush top", "ceiling align", "hang from top"], + "visual": "horizontal line along the top with two vertical bars of different heights hanging below it" + }, + "AllInbox": { + "keywords": ["mailbox", "tray", "archive", "unified inbox", "all messages", "mail tray"], + "visual": "inbox tray with two stacked drawers and a downward notch in the middle" + }, + "AllInclusive": { + "keywords": ["unlimited", "recycle", "continuous", "eternity", "figure eight", "all in one"], + "visual": "infinity symbol made of two looping curves" + }, + "AllOut": { + "keywords": ["fullscreen", "maximize", "expand all", "corner brackets", "zoom to fit"], + "visual": "circle with four right-angle corner brackets surrounding it" + }, + "AltRoute": { + "keywords": [ + "detour", + "fork in road", + "reroute", + "waypoint choice", + "gps alternative", + "diverge" + ], + "visual": "two arrows branching upward from a single point, one dashed and one continuous, forming a Y" + }, + "AlternateEmail": { + "keywords": ["at sign", "mention", "username", "handle", "social tag"], + "visual": "at symbol" + }, + "Analytics": { + "keywords": ["dashboard", "insights", "kpi", "reporting", "performance", "bar graph"], + "visual": "rounded square containing bar chart columns of increasing height" + }, + "Anchor": { + "keywords": ["nautical", "ship", "marine", "dock", "mooring", "boating", "sailor"], + "visual": "anchor shape with a ring at the top and curved flukes at the bottom" + }, + "Android": { + "keywords": ["google os", "bugdroid", "mobile os", "robot", "droid"], + "visual": "dome-shaped robot head with two antennae and two round eyes" + }, + "Animation": { + "keywords": ["keyframe", "motion graphics", "gif", "transition", "animate", "rings"], + "visual": "three overlapping ring outlines stacked diagonally" + }, + "Announcement": { + "keywords": [ + "broadcast", + "proclamation", + "public notice", + "press release", + "heads up", + "bulletin" + ], + "visual": "speech bubble with a pointed tail and an exclamation mark inside" + }, + "Aod": { + "keywords": ["always on display", "lock screen", "standby", "ambient display", "idle screen"], + "visual": "rounded phone with two short horizontal lines in the center" + }, + "Apartment": { + "keywords": ["condo", "high rise", "tenement", "complex", "block of flats", "skyscraper"], + "visual": "multi-story building with a grid of small square windows" + }, + "Api": { + "keywords": [ + "application programming interface", + "integration", + "endpoint", + "webhook", + "sdk", + "interface" + ], + "visual": "four diamond shapes arranged around a small central diamond like a cross" + }, + "AppBlocking": { + "keywords": [ + "restrict app", + "parental control", + "disable app", + "block access", + "forbidden", + "banned" + ], + "visual": "phone with a circular no-entry slash badge at the top right" + }, + "AppRegistration": { + "keywords": ["sign up", "enroll", "create account", "edit form", "survey"], + "visual": "grid of small squares with a pencil writing diagonally across it" + }, + "AppSettingsAlt": { + "keywords": ["app preferences", "configure app", "mobile settings", "app config"], + "visual": "phone with a gear badge on its right edge" + }, + "AppShortcut": { + "keywords": ["quick launch", "pinned app", "widget", "sparkle", "home screen icon"], + "visual": "phone with sparkle star shapes beside it" + }, + "Apple": { + "keywords": ["mac", "ios", "iphone", "macos", "fruit", "tech company", "cupertino"], + "visual": "apple silhouette with a small leaf at the top" + }, + "Approval": { + "keywords": ["sign off", "endorsement", "authorize", "verified badge", "confirm", "license"], + "visual": "teardrop-shaped pin above a rectangle containing a horizontal bar, like a badge" + }, + "Apps": { + "keywords": ["menu grid", "launcher", "app drawer", "waffle menu", "grid menu"], + "visual": "grid of nine small squares arranged three by three" + }, + "AppsOutage": { + "keywords": ["service down", "system failure", "error alert", "down status", "malfunction"], + "visual": "grid of small squares with one replaced by a circle containing an exclamation mark" + }, + "Architecture": { + "keywords": ["blueprint", "drafting", "construction", "building design", "caliper"], + "visual": "drafting compass tool with two pointed legs joined at a round hinge" + }, + "Archive": { + "keywords": ["box", "storage", "save for later", "file away", "backup", "compress"], + "visual": "box with a downward arrow on its front face" + }, + "AreaChart": { + "keywords": ["trend line", "graph", "stock chart", "sales chart", "growth chart"], + "visual": "jagged rising and falling line with the area beneath it shaded" + }, + "ArrowBack": { + "keywords": ["return", "undo", "prior page", "backward"], + "visual": "thick arrow pointing left" + }, + "ArrowBackIos": { + "keywords": ["navigate back", "less than", "carat"], + "visual": "thin chevron pointing left" + }, + "ArrowBackIosNew": { + "keywords": ["navigate back", "less than", "go back"], + "visual": "thin chevron pointing left" + }, + "ArrowCircleDown": { + "keywords": ["download", "decrease", "scroll down", "collapse", "move down"], + "visual": "circle with a downward arrow inside" + }, + "ArrowCircleLeft": { + "keywords": ["previous", "rewind", "go left", "backward", "prior"], + "visual": "circle with a left-pointing arrow inside" + }, + "ArrowCircleRight": { + "keywords": ["next", "proceed", "advance", "continue", "forward"], + "visual": "circle with a right-pointing arrow inside" + }, + "ArrowCircleUp": { + "keywords": ["upload", "increase", "scroll up", "expand", "move up"], + "visual": "circle with an upward arrow inside" + }, + "ArrowDownward": { + "keywords": ["descend", "drop", "decrease", "south", "plunge"], + "visual": "thick arrow pointing straight down" + }, + "ArrowDropDown": { + "keywords": ["expand menu", "more options", "caret", "show menu", "triangle down"], + "visual": "small triangle pointing straight down" + }, + "ArrowDropDownCircle": { + "keywords": [ + "dropdown button", + "expand options", + "select menu", + "caret button", + "reveal choices" + ], + "visual": "circle with a triangle pointing down inside" + }, + "ArrowDropUp": { + "keywords": ["collapse menu", "less options", "caret", "hide menu", "triangle up"], + "visual": "small triangle pointing straight up" + }, + "ArrowForward": { + "keywords": ["next", "proceed", "continue", "advance", "east"], + "visual": "thick arrow pointing right" + }, + "ArrowForwardIos": { + "keywords": ["greater than", "proceed", "carat"], + "visual": "thin chevron pointing right" + }, + "ArrowLeft": { + "keywords": ["west", "triangle", "prior", "backward triangle"], + "visual": "triangle shape pointing to the left" + }, + "ArrowOutward": { + "keywords": ["external link", "open in new tab", "northeast", "leave page", "diagonal"], + "visual": "arrow pointing diagonally to the upper right" + }, + "ArrowRight": { + "keywords": ["next", "east", "triangle", "proceed", "play"], + "visual": "triangle shape pointing to the right" + }, + "ArrowRightAlt": { + "keywords": ["long arrow", "straight arrow", "next", "forward", "line arrow"], + "visual": "thick horizontal line ending in an arrowhead pointing right" + }, + "ArrowUpward": { + "keywords": ["ascend", "north", "increase", "rise", "upload"], + "visual": "thick arrow pointing straight up" + }, + "ArtTrack": { + "keywords": ["album art", "now playing", "media info", "track listing", "song details"], + "visual": "small landscape thumbnail beside three horizontal lines, like a list entry" + }, + "Article": { + "keywords": ["blog post", "story", "content", "journal", "read more", "press"], + "visual": "rounded rectangle document with horizontal lines of text" + }, + "AspectRatio": { + "keywords": [ + "crop ratio", + "frame size", + "dimensions", + "widescreen", + "proportions", + "fit to screen" + ], + "visual": "rectangle with corner brackets at the top left and bottom right" + }, + "Assessment": { + "keywords": ["evaluation", "review", "exam", "report card", "audit", "survey results"], + "visual": "rounded square containing bar chart columns of varying height" + }, + "Assignment": { + "keywords": ["homework", "form", "report", "worksheet", "notes", "checklist"], + "visual": "clipboard with a small tab at the top and horizontal lines of text" + }, + "AssignmentAdd": { + "keywords": ["new task", "create form", "new report", "add note", "new homework"], + "visual": "clipboard with a small tab at the top and a plus sign badge at the bottom right" + }, + "AssignmentInd": { + "keywords": [ + "id badge", + "employee record", + "personnel file", + "hr", + "individual profile", + "staff" + ], + "visual": "clipboard with a small tab at the top and a person's head and shoulders inside" + }, + "AssignmentLate": { + "keywords": ["overdue", "missed deadline", "pending task", "past due", "urgent"], + "visual": "clipboard with a small tab at the top and an exclamation mark inside" + }, + "AssignmentReturn": { + "keywords": ["submit back", "send back", "hand back", "give back", "return item"], + "visual": "clipboard with a small tab at the top and a left-pointing arrow inside" + }, + "AssignmentReturned": { + "keywords": ["received", "incoming", "turned in", "task submitted", "download report"], + "visual": "clipboard with a small tab at the top and a downward arrow inside" + }, + "AssignmentTurnedIn": { + "keywords": ["submitted", "accepted", "graded", "task complete", "homework done"], + "visual": "clipboard with a small tab at the top and a checkmark inside" + }, + "AssistWalker": { + "keywords": ["walking frame", "elderly", "senior", "rehab", "physical therapy", "zimmer frame"], + "visual": "person bent forward using a four-legged walker frame" + }, + "Assistant": { + "keywords": ["chatbot", "virtual assistant", "copilot", "ai helper", "voice assistant"], + "visual": "four-pointed sparkle star inside a rounded teardrop shape" + }, + "AssistantDirection": { + "keywords": ["turn right", "gps direction", "route guidance", "next turn", "wayfinding"], + "visual": "circle containing a diamond with a right-turning arrow inside" + }, + "AssistantNavigation": { + "keywords": ["compass", "gps", "current heading", "direction pointer", "wayfinding", "north"], + "visual": "circle with a triangular compass needle pointing up inside" + }, + "AssistantPhoto": { + "keywords": ["bookmark", "tag", "marker flag", "pennant", "highlight"], + "visual": "flag shape with a notch cut into its bottom edge" + }, + "AssuredWorkload": { + "keywords": [ + "compliance workload", + "secure cloud", + "data sovereignty", + "trusted infrastructure", + "regulated", + "protected data" + ], + "visual": "building with columns and a triangular roof beside a shield with a checkmark" + }, + "Atm": { + "keywords": [ + "automated teller machine", + "cash machine", + "cash withdrawal", + "bank machine", + "cashpoint" + ], + "visual": "letters A, T and M in a blocky font" + }, + "AttachEmail": { + "keywords": [ + "forward attachment", + "mail with file", + "send document", + "linked email", + "email with clip" + ], + "visual": "envelope with a paperclip badge at the bottom right corner" + }, + "AttachFile": { + "keywords": ["clip", "upload file", "insert file", "join document", "attach document"], + "visual": "long paperclip shape curving into a loop at one end" + }, + "AttachMoney": { + "keywords": ["dollar sign", "currency symbol", "usd", "price tag"], + "visual": "dollar sign" + }, + "Attachment": { + "keywords": ["clip", "fastener", "join", "enclosure", "bent clip"], + "visual": "paperclip bent at an angle" + }, + "Attractions": { + "keywords": ["theme park", "carnival", "fairground", "tourist spot", "sightseeing"], + "visual": "ferris wheel with spokes and small circles around a central hub" + }, + "Attribution": { + "keywords": ["credit", "byline", "source citation", "license badge", "author credit"], + "visual": "circle containing a person's head and shoulders silhouette" + }, + "AudioFile": { + "keywords": ["mp3", "song file", "sound clip", "media file", "wav"], + "visual": "document page with a folded corner and a music note inside" + }, + "Audiotrack": { + "keywords": ["song", "tune", "melody", "soundtrack", "musical note"], + "visual": "single music note" + }, + "AutoAwesome": { + "keywords": ["ai generate", "twinkle", "enhance photo", "magic effect", "brilliance", "shine"], + "visual": "large four-pointed sparkle star with two smaller sparkles beside it" + }, + "AutoAwesomeMosaic": { + "keywords": ["photo grid", "collage layout", "tile layout", "gallery grid", "panel layout"], + "visual": "two tall rectangles and two smaller stacked rectangles in a mosaic grid" + }, + "AutoAwesomeMotion": { + "keywords": ["burst mode", "live photo", "animated stack", "gif effect", "stacked frames"], + "visual": "two overlapping rounded squares offset diagonally with a trailing shape behind them" + }, + "AutoDelete": { + "keywords": [ + "self destruct", + "expire", + "disappearing messages", + "scheduled deletion", + "auto purge" + ], + "visual": "trash can with a lid and a clock badge at the bottom right" + }, + "AutoFixHigh": { + "keywords": ["magic wand", "auto enhance", "retouch", "ai fix", "spell effect"], + "visual": "magic wand at an angle with several star sparkles around its tip" + }, + "AutoFixNormal": { + "keywords": ["magic wand", "quick fix", "touch up", "enhance", "minor edit"], + "visual": "magic wand at an angle with a single star sparkle at its tip" + }, + "AutoFixOff": { + "keywords": [ + "disable enhancement", + "no auto fix", + "cancel edit", + "wand crossed out", + "turn off retouch" + ], + "visual": "magic wand with a diagonal slash through it and a small star sparkle" + }, + "AutoGraph": { + "keywords": ["sparkline", "trending up", "ai analytics", "smart insights", "growth trend"], + "visual": "jagged rising line graph with star sparkles above it" + }, + "AutoMode": { + "keywords": ["auto pilot", "automatic setting", "smart mode", "self driving", "sync"], + "visual": "dashed circular arrow surrounding a sparkle star" + }, + "AutoStories": { + "keywords": ["ebook", "novel", "open book", "chapter", "library", "bookmark"], + "visual": "open book with pages fanned on the right side" + }, + "AutofpsSelect": { + "keywords": ["frame rate", "fps setting", "video speed", "camera setting", "refresh rate"], + "visual": "circle containing the letter A above a row of short vertical bars" + }, + "Autorenew": { + "keywords": ["sync", "subscription renewal", "update", "cycle", "reload"], + "visual": "two curved arrows forming a circular loop" + }, + "AvTimer": { + "keywords": ["interval timer", "video timer", "recording timer", "elapsed time", "lap timer"], + "visual": "clock face with dots around the rim and hour and minute hands" + }, + "BabyChangingStation": { + "keywords": ["nursery", "diaper station", "changing table", "family restroom", "parent room"], + "visual": "person standing beside a changing table with a baby shape on it" + }, + "BackHand": { + "keywords": ["stop", "halt", "high five", "wait", "talk to the hand", "palm"], + "visual": "open hand facing forward with fingers spread and palm visible" + }, + "Backpack": { + "keywords": ["rucksack", "school bag", "hiking pack", "satchel", "gear bag"], + "visual": "backpack shape with two straps and a front pocket flap" + }, + "Backspace": { + "keywords": ["delete character", "keyboard key", "del key", "clear text", "rubout"], + "visual": "wide arrow shape pointing left with an X mark inside" + }, + "Backup": { + "keywords": ["save copy", "sync data", "restore point", "cloud sync", "export"], + "visual": "cloud shape with an upward arrow inside it" + }, + "BackupTable": { + "keywords": [ + "duplicate table", + "spreadsheet copy", + "clone sheet", + "save table", + "table snapshot" + ], + "visual": "grid table layout with a duplicate page shape behind it" + }, + "Badge": { + "keywords": ["name tag", "credential", "staff pass", "security clearance", "lanyard"], + "visual": "ID badge with a clip at the top, a person silhouette and lines of text" + }, + "BakeryDining": { + "keywords": ["pastry", "patisserie", "baked goods", "cafe", "bun"], + "visual": "croissant shape with curved ridges" + }, + "Balance": { + "keywords": ["scale", "weigh", "comparison", "law", "libra", "fairness"], + "visual": "balance scale with two pans hanging from a horizontal bar on a stand" + }, + "Balcony": { + "keywords": ["patio", "veranda", "apartment facade", "juliet balcony", "outdoor ledge"], + "visual": "building facade with an arched window above a railed balcony ledge" + }, + "Ballot": { + "keywords": ["voting form", "referendum", "survey", "election form", "polling"], + "visual": "square containing small checkbox squares and short text lines" + }, + "BarChart": { + "keywords": ["bar graph", "histogram", "column chart", "comparison chart", "data bars"], + "visual": "three vertical bars of different heights side by side" + }, + "BarcodeReader": { + "keywords": [ + "scanner gun", + "upc scanner", + "price scanner", + "inventory scan", + "checkout scanner", + "point of sale" + ], + "visual": "handheld scanner gun shape with small scan lines beside it" + }, + "BatchPrediction": { + "keywords": ["machine learning", "ai prediction", "forecast", "insight", "data model"], + "visual": "rounded rectangle with a lightbulb inside and short lines across the top" + }, + "Bathroom": { + "keywords": ["restroom", "toilet", "lavatory", "washroom", "loo"], + "visual": "square containing a domed shower head with droplets falling below" + }, + "Bathtub": { + "keywords": ["bath", "soak", "tub", "spa", "relax"], + "visual": "person sitting inside a bathtub with a curved faucet above" + }, + "Battery0Bar": { + "keywords": [ + "empty battery", + "dead battery", + "no charge", + "battery level", + "battery indicator" + ], + "visual": "tall empty battery with a small terminal knob on top" + }, + "Battery1Bar": { + "keywords": ["low battery", "battery indicator", "almost dead", "power level", "weak charge"], + "visual": "tall empty battery with a small terminal knob on top" + }, + "Battery20": { + "keywords": ["20 percent", "low battery", "battery percentage", "power low", "recharge soon"], + "visual": "tall battery with a small terminal knob on top and a thin dark fill near the bottom" + }, + "Battery2Bar": { + "keywords": ["low charge", "weak power", "running low", "almost empty", "needs charging"], + "visual": "tall battery shape with a small terminal knob on top and a large pale area filling most of the body, appearing nearly empty" + }, + "Battery30": { + "keywords": ["30 percent", "low charge", "charge level", "needs charging", "power status"], + "visual": "tall battery shape with a small terminal knob on top, a small dark portion near the bottom and pale above it" + }, + "Battery3Bar": { + "keywords": ["strong charge", "mostly full", "high level", "good power", "charge level"], + "visual": "tall battery shape with a small terminal knob on top, mostly dark with a small pale square near the top" + }, + "Battery4Bar": { + "keywords": ["strong charge", "high level", "mostly full", "good power", "charge level"], + "visual": "tall battery shape with a small terminal knob on top, mostly dark with a small pale square near the top" + }, + "Battery50": { + "keywords": ["half charged", "medium level", "50 percent", "midway charge", "power status"], + "visual": "tall battery shape with a small terminal knob on top, dark in the bottom half and pale in the top half" + }, + "Battery5Bar": { + "keywords": ["strong charge", "nearly full", "high level", "good power", "well charged"], + "visual": "tall battery shape with a small terminal knob on top, mostly dark with a small pale square near the top" + }, + "Battery60": { + "keywords": ["60 percent", "above half", "good charge", "power status", "charge level"], + "visual": "tall battery shape with a small terminal knob on top, dark filling more than half the body with a pale strip at the top" + }, + "Battery6Bar": { + "keywords": ["nearly full", "high level", "strong charge", "almost charged", "well charged"], + "visual": "tall battery shape with a small terminal knob on top, mostly dark with a thin pale line near the top" + }, + "Battery80": { + "keywords": ["80 percent", "high charge", "nearly full", "power status", "charge level"], + "visual": "tall battery shape with a small terminal knob on top, dark filling most of the body with a thin pale strip at the top" + }, + "Battery90": { + "keywords": ["90 percent", "almost full", "high charge", "power status", "charge level"], + "visual": "tall battery shape with a small terminal knob on top, dark filling nearly all of the body with a very thin pale strip at the top" + }, + "BatteryAlert": { + "keywords": [ + "low power warning", + "critical charge", + "power error", + "needs charging", + "urgent charge" + ], + "visual": "tall battery shape with a small terminal knob on top and a pale exclamation mark in the center" + }, + "BatteryCharging20": { + "keywords": ["plugged in", "power up", "recharging", "connected to power", "juicing up"], + "visual": "tall battery shape mostly pale with a small dark portion at the bottom and a pale lightning bolt across the center" + }, + "BatteryCharging30": { + "keywords": ["plugged in", "power up", "recharging", "connected to power", "30 percent"], + "visual": "tall battery shape mostly pale with a dark portion near the bottom and a pale lightning bolt across the center" + }, + "BatteryCharging50": { + "keywords": ["plugged in", "power up", "half charge", "connected to power", "recharging"], + "visual": "tall battery shape with a pale top half and a dark bottom half, a pale lightning bolt across the center" + }, + "BatteryCharging60": { + "keywords": [ + "plugged in", + "power up", + "recharging", + "connected to power", + "60 percent charging" + ], + "visual": "tall battery shape with dark filling more than half the body and a pale lightning bolt across the center" + }, + "BatteryCharging80": { + "keywords": ["plugged in", "nearly charged", "power up", "connected to power", "recharging"], + "visual": "tall battery shape with dark filling most of the body and a pale lightning bolt across the center" + }, + "BatteryCharging90": { + "keywords": [ + "plugged in", + "power up", + "connected to power", + "almost fully charged", + "recharging" + ], + "visual": "tall battery shape with a small terminal knob on top, dark filling nearly all of the body with a pale lightning bolt across the center" + }, + "BatteryChargingFull": { + "keywords": [ + "plugged in", + "fully powered", + "complete charge", + "connected to power", + "topped up" + ], + "visual": "tall battery shape with a small terminal knob on top, entirely dark with a pale lightning bolt across the center" + }, + "BatteryFull": { + "keywords": ["fully charged", "100 percent", "max charge", "topped up", "full power"], + "visual": "tall battery shape with a small terminal knob on top, entirely dark with no symbol inside" + }, + "BatterySaver": { + "keywords": [ + "low power mode", + "energy saving", + "power saving mode", + "extend battery life", + "efficiency mode" + ], + "visual": "tall battery shape with a small terminal knob on top and a pale plus sign in the center" + }, + "BatteryStd": { + "keywords": ["full charge", "default level", "topped up", "complete charge", "regular battery"], + "visual": "tall battery shape with a small terminal knob on top, entirely dark with no symbol inside" + }, + "BatteryUnknown": { + "keywords": ["unknown charge", "not detected", "missing info", "status unavailable", "no data"], + "visual": "tall battery shape with a small terminal knob on top and a pale question mark in the center" + }, + "BeachAccess": { + "keywords": ["sunshade", "seaside", "vacation", "resort", "coastal", "holiday"], + "visual": "open beach umbrella tilted to the side with its pole extending down" + }, + "Bed": { + "keywords": ["mattress", "sleeping", "nap", "hotel room", "headboard"], + "visual": "bed with two pillows against a headboard, resting on a frame with legs" + }, + "BedroomBaby": { + "keywords": ["nursery", "crib", "rocking horse", "kids room", "playroom"], + "visual": "rounded square containing a rocking horse silhouette" + }, + "BedroomChild": { + "keywords": ["kids room", "single bed", "twin bed", "teen room", "youth bedroom"], + "visual": "rounded square containing a bed with a single pillow against a headboard" + }, + "BedroomParent": { + "keywords": ["master bedroom", "double bed", "king bed", "queen bed", "main bedroom"], + "visual": "rounded square containing a bed with two pillows against a headboard" + }, + "Bedtime": { + "keywords": ["nighttime mode", "do not disturb", "sleep mode", "night shift", "dark mode"], + "visual": "crescent moon shape" + }, + "BedtimeOff": { + "keywords": ["wake mode", "daytime", "disable night mode", "awake", "turn off sleep mode"], + "visual": "crescent moon shape with a diagonal slash through it" + }, + "Beenhere": { + "keywords": ["visited", "checked in", "verified location", "stamp of approval", "past visit"], + "visual": "shield shape with a checkmark inside" + }, + "Bento": { + "keywords": ["japanese food", "lunchbox", "meal prep", "compartments", "sushi box"], + "visual": "rounded square divided into sections, one containing a dot, like a lunch box" + }, + "BikeScooter": { + "keywords": ["micromobility", "e-scooter", "moped", "bike share", "last mile transport"], + "visual": "bicycle and scooter shapes overlapping, with wheels and handlebars visible" + }, + "Biotech": { + "keywords": ["biotechnology", "life sciences", "lab equipment", "genomics", "medical research"], + "visual": "microscope with an angled eyepiece tube and a round stage on a stand" + }, + "Blender": { + "keywords": ["smoothie maker", "mixer", "food processor", "puree", "kitchen gadget"], + "visual": "blender jug with a lid handle sitting on a round base" + }, + "Blind": { + "keywords": ["visually impaired", "low vision", "sight loss", "white cane", "guide cane"], + "visual": "person walking while holding a cane out in front" + }, + "Blinds": { + "keywords": ["window covering", "venetian blinds", "slats", "shades", "drapes"], + "visual": "window blinds made of horizontal slats with a pull cord hanging on one side" + }, + "BlindsClosed": { + "keywords": ["privacy mode", "darken room", "closed shutters", "blackout", "shut"], + "visual": "window blinds made of tightly closed horizontal slats with a pull cord and knob at the bottom" + }, + "Block": { + "keywords": ["restrict", "forbid", "no entry sign", "blacklist", "mute user"], + "visual": "circle with a diagonal slash through it, like a no-entry sign" + }, + "BlockFlipped": { + "keywords": ["no entry", "forbidden", "restrict", "blacklist", "prohibited sign"], + "visual": "circle with a diagonal slash through it running the opposite direction" + }, + "Bloodtype": { + "keywords": ["blood donation", "blood group", "rh factor", "transfusion", "medical id"], + "visual": "droplet shape with a plus and minus sign stacked inside" + }, + "Bluetooth": { + "keywords": [ + "pair device", + "headphones connection", + "wireless audio", + "short range wireless", + "earbuds" + ], + "visual": "angular rune symbol made of crossing triangular strokes" + }, + "BluetoothAudio": { + "keywords": [ + "wireless headphones", + "speaker pairing", + "sound waves", + "wireless speaker", + "audio streaming" + ], + "visual": "bluetooth rune symbol with curved sound wave lines beside it" + }, + "BluetoothConnected": { + "keywords": [ + "paired device", + "linked device", + "connected accessory", + "active pairing", + "in sync" + ], + "visual": "bluetooth rune symbol flanked by a small diamond on each side" + }, + "BluetoothDisabled": { + "keywords": [ + "unpaired", + "disconnected device", + "no wireless", + "turned off wireless", + "wireless off" + ], + "visual": "bluetooth rune symbol with a diagonal slash cutting across it" + }, + "BluetoothDrive": { + "keywords": [ + "car pairing", + "hands free", + "in-car audio", + "vehicle connectivity", + "connected car" + ], + "visual": "car shown from the front with a bluetooth rune symbol above it" + }, + "BluetoothSearching": { + "keywords": [ + "scanning for devices", + "discoverable mode", + "pairing mode", + "looking for devices", + "connecting" + ], + "visual": "bluetooth rune symbol with curved sound wave lines beside it" + }, + "BlurCircular": { + "keywords": ["bokeh", "out of focus", "soft focus", "depth of field", "tilt shift"], + "visual": "circle containing scattered dots of varying sizes" + }, + "BlurLinear": { + "keywords": ["gradient blur", "motion blur", "gaussian blur", "fade effect", "soft edge"], + "visual": "two horizontal bars with rows of scattered dots of varying sizes between them" + }, + "BlurOff": { + "keywords": [ + "unblur", + "sharpen", + "focus", + "clarity", + "soft focus off", + "gaussian blur off", + "crisp image" + ], + "visual": "dots arranged in a diamond-shaped grid with a diagonal slash through it" + }, + "BlurOn": { + "keywords": [ + "fuzzy", + "soft focus", + "gaussian blur", + "unfocused", + "diffuse", + "bokeh", + "hazy", + "smudge effect" + ], + "visual": "dots arranged in a diamond-shaped grid, denser and larger toward the center" + }, + "Bolt": { + "keywords": ["zap", "charge", "voltage", "storm", "weather", "quick", "boost", "electricity"], + "visual": "jagged lightning bolt shape" + }, + "Book": { + "keywords": [ + "novel", + "textbook", + "read", + "literature", + "story", + "manual", + "guide", + "education", + "learn" + ], + "visual": "closed book with a bookmark ribbon on its cover" + }, + "BookOnline": { + "keywords": [ + "booking", + "reserve", + "buy ticket", + "e-ticket", + "boarding pass", + "schedule", + "order tickets" + ], + "visual": "smartphone with a ticket symbol on its screen" + }, + "Bookmark": { + "keywords": ["save for later", "flag", "pin", "watch list", "reading list", "tab marker"], + "visual": "ribbon-shaped tag with a notched V-shaped bottom edge" + }, + "BookmarkAdd": { + "keywords": ["add bookmark", "new bookmark", "add to favorites", "follow", "flag item"], + "visual": "bookmark ribbon with a small plus sign badge in the upper right corner" + }, + "BookmarkAdded": { + "keywords": ["saved", "bookmarked", "added to favorites", "confirmed save", "already saved"], + "visual": "bookmark ribbon with a small checkmark badge in the upper right corner" + }, + "BookmarkBorder": { + "keywords": [ + "unsaved", + "save outline", + "add to favorites", + "not saved yet", + "empty bookmark", + "tap to save" + ], + "visual": "bookmark ribbon shape with an open center" + }, + "BookmarkRemove": { + "keywords": ["unsave", "remove from favorites", "unflag", "unfollow", "take off reading list"], + "visual": "bookmark ribbon with a small minus sign badge in the upper right corner" + }, + "Bookmarks": { + "keywords": ["saved items", "reading list", "collection", "watch list", "my bookmarks"], + "visual": "two bookmark ribbons overlapping and stacked behind each other" + }, + "BorderAll": { + "keywords": ["table", "grid lines", "cell borders", "all borders", "table grid", "cells"], + "visual": "square divided into four equal cells by a plus-shaped grid of lines" + }, + "BorderBottom": { + "keywords": [ + "bottom border", + "underline cell", + "table bottom edge", + "bottom line", + "bottom edge" + ], + "visual": "square with small dashes on three sides and a thick continuous line along the bottom" + }, + "BorderClear": { + "keywords": ["no border", "remove border", "clear border", "no lines", "delete borders"], + "visual": "square made entirely of small evenly spaced dashes" + }, + "BorderColor": { + "keywords": [ + "border color picker", + "line color", + "highlight border", + "paint border", + "format border" + ], + "visual": "pencil at an angle drawing a line above a thick horizontal bar" + }, + "BorderHorizontal": { + "keywords": [ + "horizontal line", + "middle row border", + "split row", + "row divider", + "horizontal divider" + ], + "visual": "square with small dashes and a thick horizontal line through the middle" + }, + "BorderInner": { + "keywords": [ + "inner border", + "inside lines", + "cross divider", + "middle grid lines", + "inside grid" + ], + "visual": "square with small dashes and a plus-shaped cross through the middle" + }, + "BorderLeft": { + "keywords": ["left border", "left edge", "left line", "side border", "left column border"], + "visual": "square with small dashes and a thick line along the left edge" + }, + "BorderOuter": { + "keywords": ["outer border", "outside edge", "frame border", "perimeter", "outline only"], + "visual": "square with a continuous edge and a small dashed plus pattern inside" + }, + "BorderRight": { + "keywords": ["right border", "right edge", "right line", "side border", "right column border"], + "visual": "square with small dashes and a thick line along the right edge" + }, + "BorderStyle": { + "keywords": ["line style", "border type", "format border", "mixed border", "stroke style"], + "visual": "square with a continuous line on the top and left edges, dashed on the bottom and right" + }, + "BorderTop": { + "keywords": ["top border", "top edge", "top line", "header border", "top row border"], + "visual": "square with small dashes and a thick line along the top edge" + }, + "BorderVertical": { + "keywords": [ + "vertical line", + "middle column border", + "split column", + "column divider", + "center column line" + ], + "visual": "square with small dashes and a thick vertical line through the middle" + }, + "Boy": { + "keywords": ["child", "kid", "son", "male figure", "stick figure", "avatar"], + "visual": "simple person figure with a round head and rectangular body, standing upright" + }, + "BrandingWatermark": { + "keywords": ["brand mark", "logo overlay", "trademark", "corner logo", "watermark tag"], + "visual": "rectangle with a small rectangular notch cut out near the bottom right corner" + }, + "BreakfastDining": { + "keywords": ["sandwich", "slice", "brunch", "morning meal"], + "visual": "slice of bread with a rounded top and a small square cut out in the center" + }, + "Brightness1": { + "keywords": ["full moon", "dot", "solid circle", "brightness dot", "dark mode"], + "visual": "plain circle with no markings" + }, + "Brightness2": { + "keywords": ["crescent moon", "half moon", "dim", "night mode", "thin crescent"], + "visual": "thin crescent moon curving open to the right" + }, + "Brightness3": { + "keywords": ["crescent moon", "waning moon", "dimmer", "night mode", "thick crescent"], + "visual": "thick crescent moon curving open to the right, more than half covered" + }, + "Brightness4": { + "keywords": [ + "dark mode", + "night theme", + "star burst", + "eclipse", + "dim display", + "auto brightness dark" + ], + "visual": "eight-pointed star shape with a crescent moon cut into its center" + }, + "Brightness5": { + "keywords": ["light mode", "day theme", "sunburst", "medium brightness"], + "visual": "eight-pointed star shape with a plain empty circle in its center" + }, + "Brightness6": { + "keywords": ["half shaded", "day theme", "medium light", "star burst"], + "visual": "eight-pointed star shape with its center circle shaded on the left half only" + }, + "Brightness7": { + "keywords": ["full brightness", "max light", "bright ring", "daylight", "sun ring"], + "visual": "eight-pointed star shape with a ring in its center" + }, + "BrightnessAuto": { + "keywords": [ + "auto brightness", + "adaptive brightness", + "automatic light", + "letter a", + "auto adjust" + ], + "visual": "eight-pointed star shape with the letter A in its center" + }, + "BrightnessHigh": { + "keywords": ["full brightness", "max brightness", "bright light", "sun ring", "strong light"], + "visual": "eight-pointed star shape with a thick ring in its center" + }, + "BrightnessLow": { + "keywords": ["dim", "low light", "soft brightness", "night mode", "weak light"], + "visual": "eight-pointed star shape with a plain empty circle filling its center" + }, + "BrightnessMedium": { + "keywords": [ + "half brightness", + "medium light", + "mid level", + "moderate light", + "50 percent brightness" + ], + "visual": "eight-pointed star shape with its center circle split into a dark left half and light right half" + }, + "BroadcastOnHome": { + "keywords": [ + "live stream", + "on air", + "transmit", + "tablet signal", + "device broadcast", + "streaming device", + "go live" + ], + "visual": "tablet-like rectangle beside broadcast signal arcs radiating from a small dot" + }, + "BroadcastOnPersonal": { + "keywords": [ + "home streaming", + "broadcast from home", + "house signal", + "live at home", + "home network", + "smart home broadcast" + ], + "visual": "house shape beside broadcast signal arcs radiating from a small dot" + }, + "BrokenImage": { + "keywords": [ + "missing image", + "image error", + "404 image", + "damaged photo", + "placeholder image", + "cracked picture", + "load failed" + ], + "visual": "rounded square picture frame with a jagged zigzag line through its middle" + }, + "BrowseGallery": { + "keywords": [ + "recent photos", + "timeline", + "history view", + "time-based gallery", + "photo history", + "browse history" + ], + "visual": "clock face with hands, overlapping a partial ring segment behind it" + }, + "BrowserNotSupported": { + "keywords": [ + "incompatible browser", + "unsupported browser", + "blocked website", + "browser error", + "not compatible", + "update required" + ], + "visual": "rounded square browser window with a diagonal slash through it" + }, + "BrowserUpdated": { + "keywords": [ + "browser update available", + "refresh browser", + "new version", + "update available", + "download update" + ], + "visual": "browser window on a stand with a downward arrow in its center" + }, + "BrunchDining": { + "keywords": ["restaurant", "fork and glass", "mimosa", "cafe", "eating out"], + "visual": "fork on one side and a stemmed glass on the other, both resting on a table surface" + }, + "Brush": { + "keywords": ["paintbrush", "artist tool", "drawing tool", "styling", "theme", "format painter"], + "visual": "paintbrush at an angle with a rounded bristle tip" + }, + "BubbleChart": { + "keywords": [ + "circles chart", + "scatter plot", + "data visualization", + "bubble graph", + "cluster chart" + ], + "visual": "three circles of different sizes clustered together" + }, + "BugReport": { + "keywords": ["error report", "debug", "glitch", "software bug", "beetle", "report issue", "qa"], + "visual": "insect shape with antennae and horizontal legs on both sides of its body" + }, + "Build": { + "keywords": ["settings", "maintenance", "hardware", "construct", "assemble"], + "visual": "wrench angled diagonally like a hand tool" + }, + "BuildCircle": { + "keywords": ["settings", "maintenance", "tools menu", "configure", "wrench in circle"], + "visual": "wrench shape inside a circle" + }, + "Bungalow": { + "keywords": [ + "single story house", + "small house", + "vacation rental", + "airbnb", + "real estate listing" + ], + "visual": "house with a tall peaked roof and a small door" + }, + "BurstMode": { + "keywords": [ + "continuous shooting", + "rapid fire photo", + "multiple shots", + "sequence photo", + "photo burst" + ], + "visual": "two vertical bars beside a picture frame containing a mountain landscape" + }, + "BusAlert": { + "keywords": [ + "bus delay", + "transit alert", + "bus warning", + "public transport alert", + "service disruption" + ], + "visual": "bus with an exclamation mark inside a circular badge above it" + }, + "Business": { + "keywords": [ + "office building", + "skyscraper", + "corporate", + "headquarters", + "workplace", + "enterprise" + ], + "visual": "tall building with a grid of small square windows" + }, + "BusinessCenter": { + "keywords": ["work bag", "office", "job", "corporate travel", "portfolio case"], + "visual": "briefcase with a handle on top and a small square latch in the middle" + }, + "Cabin": { + "keywords": ["log cabin", "chalet", "vacation home", "rustic house", "woodland retreat"], + "visual": "house with a peaked roof, horizontal plank lines on the walls, and a smoke wisp above the chimney" + }, + "Cable": { + "keywords": ["cord", "charger cable", "plug", "wire connector", "adapter"], + "visual": "looping cord with a plug connector at each end" + }, + "Cached": { + "keywords": ["sync", "update", "circular arrows", "reload page", "refresh data"], + "visual": "two curved arrows forming a circular loop" + }, + "Cake": { + "keywords": ["cupcake", "anniversary", "birthday cake", "confetti", "celebrate"], + "visual": "layered cake with a wavy frosting line and a lit candle on top" + }, + "Calculate": { + "keywords": ["math tool", "arithmetic", "compute", "numbers", "accounting"], + "visual": "calculator with minus, multiply, plus and equals symbols on its face" + }, + "CalendarMonth": { + "keywords": ["monthly view", "planner", "diary", "appointment book", "agenda"], + "visual": "calendar page with two hangers on top and a grid of small date squares below" + }, + "CalendarToday": { + "keywords": ["today's date", "daily view", "agenda", "appointment", "diary"], + "visual": "calendar page with two hangers on top and a single large empty square below" + }, + "CalendarViewDay": { + "keywords": ["day view", "daily schedule", "timeline layout", "day planner", "stacked bars"], + "visual": "three horizontal bars of different thickness stacked one above another" + }, + "CalendarViewMonth": { + "keywords": ["month view", "grid calendar", "monthly grid", "planner grid", "six week grid"], + "visual": "grid of six squares arranged in three columns and two rows" + }, + "CalendarViewWeek": { + "keywords": [ + "week view", + "weekly schedule", + "columns layout", + "week planner", + "weekly columns" + ], + "visual": "several narrow vertical bars standing side by side" + }, + "Call": { + "keywords": ["phone call", "dial", "ring", "answer", "contact someone", "voice call"], + "visual": "telephone handset" + }, + "CallEnd": { + "keywords": ["hang up", "end call", "disconnect", "decline call", "reject call"], + "visual": "telephone handset shown lying on its side, hung up" + }, + "CallMade": { + "keywords": ["outgoing call", "dialed call", "sent call", "up right arrow", "export"], + "visual": "straight diagonal arrow pointing up and to the right" + }, + "CallMerge": { + "keywords": ["conference call", "join calls", "combine calls", "merge lines", "3-way call"], + "visual": "vertical arrow pointing up with a diagonal line joining it from the lower right, like two paths merging" + }, + "CallMissed": { + "keywords": [ + "missed call", + "unanswered call", + "incoming missed", + "call alert", + "declined call" + ], + "visual": "bent arrow with its elbow near the top and the arrowhead pointing down and to the left" + }, + "CallMissedOutgoing": { + "keywords": [ + "missed outgoing call", + "cancelled call", + "unanswered dial", + "failed call", + "call not connected" + ], + "visual": "bent arrow with its elbow near the bottom and the arrowhead pointing up and to the right" + }, + "CallReceived": { + "keywords": [ + "incoming call", + "answered call", + "down left arrow", + "received call", + "inbound call" + ], + "visual": "straight diagonal arrow pointing down and to the left" + }, + "CallSplit": { + "keywords": ["transfer call", "fork call", "split line", "divert call", "route call"], + "visual": "single stem splitting into two diagonal arrows, one pointing up-left and one up-right" + }, + "CallToAction": { + "keywords": ["cta button", "banner", "promo bar", "click here", "conversion"], + "visual": "rounded rectangle with a thick horizontal bar near its bottom edge" + }, + "Camera": { + "keywords": ["aperture blades", "take photo", "snap picture", "lens iris"], + "visual": "circular aperture made of angled pinwheel blades" + }, + "CameraAlt": { + "keywords": ["take photo", "snap picture", "photo capture", "dslr", "camera body"], + "visual": "camera body with a round lens in the center" + }, + "CameraEnhance": { + "keywords": [ + "auto enhance", + "ai photo", + "improve photo", + "magic wand", + "photo filter", + "sparkle lens" + ], + "visual": "camera body with a four-pointed sparkle shape inside the lens" + }, + "CameraFront": { + "keywords": [ + "front camera", + "selfie camera", + "switch camera front", + "user facing camera", + "self-facing camera" + ], + "visual": "rounded rectangle with a person's head and shoulders silhouette, an arrow pointing right below" + }, + "CameraIndoor": { + "keywords": ["security camera", "indoor surveillance", "cctv", "home monitoring", "nanny cam"], + "visual": "house shape with a video camera cut out inside it" + }, + "CameraOutdoor": { + "keywords": [ + "security camera", + "outdoor surveillance", + "cctv", + "doorbell camera", + "exterior monitoring" + ], + "visual": "house with a video camera shape attached near its bottom" + }, + "CameraRear": { + "keywords": [ + "rear camera", + "back camera", + "switch camera back", + "main camera", + "back-facing camera" + ], + "visual": "rounded rectangle with a small round lens dot near the top, an arrow pointing right below" + }, + "CameraRoll": { + "keywords": ["photo reel", "film strip", "negatives", "photo library", "camera film"], + "visual": "film roll strip with a row of small square holes along the top" + }, + "Cameraswitch": { + "keywords": [ + "flip camera", + "switch camera", + "toggle camera", + "front back camera", + "rotate camera" + ], + "visual": "camera body encircled by two curved arrows forming a loop" + }, + "Campaign": { + "keywords": ["marketing", "promotion", "broadcast message", "bullhorn", "advertise"], + "visual": "megaphone with sound wave lines beside its bell" + }, + "Cancel": { + "keywords": ["x in circle", "dismiss", "decline", "error status", "void", "invalid"], + "visual": "circle with an X in the center" + }, + "CancelPresentation": { + "keywords": [ + "stop presenting", + "end screen share", + "cancel slideshow", + "close presentation", + "presentation error" + ], + "visual": "rectangular screen with an X in the center" + }, + "CancelScheduleSend": { + "keywords": [ + "unschedule email", + "cancel send", + "stop scheduled email", + "undo send", + "abort send" + ], + "visual": "paper airplane with a circular badge containing an X overlapping it" + }, + "CandlestickChart": { + "keywords": ["stock chart", "trading chart", "ohlc chart", "market data", "forex chart"], + "visual": "two vertical candlestick bars of different lengths side by side" + }, + "CarCrash": { + "keywords": [ + "accident alert", + "collision warning", + "fender bender", + "insurance claim", + "road accident" + ], + "visual": "car viewed from the front with an exclamation mark inside a speech bubble above it" + }, + "CarRental": { + "keywords": ["rent a car", "hire car", "car keys", "vehicle rental", "car hire"], + "visual": "key above a car viewed from the front" + }, + "CarRepair": { + "keywords": ["mechanic", "auto shop", "garage", "car service", "car lift", "maintenance"], + "visual": "car viewed from the front resting on a raised lift stand" + }, + "CardGiftcard": { + "keywords": ["gift card", "voucher", "coupon", "redeem"], + "visual": "rectangular card with a ribbon bow on top and a horizontal stripe across it" + }, + "CardMembership": { + "keywords": ["membership card", "loyalty card", "subscription card", "id card", "club card"], + "visual": "rectangular card with a horizontal stripe and a bookmark ribbon tag at the bottom" + }, + "CardTravel": { + "keywords": ["travel card", "luggage pass", "frequent flyer", "boarding pass", "travel wallet"], + "visual": "suitcase with a handle on top and a horizontal stripe across it" + }, + "Carpenter": { + "keywords": ["hand plane", "woodwork", "diy", "craftsman"], + "visual": "hand plane tool shown at a diagonal angle" + }, + "Cases": { + "keywords": ["luggage", "portfolio", "work case", "carrying case", "travel bag"], + "visual": "briefcase with a handle, resting on a flat horizontal base" + }, + "Casino": { + "keywords": ["betting", "roll", "las vegas", "board game"], + "visual": "die with five dots arranged in a cross pattern" + }, + "Cast": { + "keywords": [ + "mirror screen", + "project screen", + "send to tv", + "wireless display", + "broadcast to screen" + ], + "visual": "rectangular screen with broadcast signal arcs in its bottom left corner" + }, + "CastConnected": { + "keywords": [ + "casting active", + "connected to tv", + "screen mirrored", + "streaming now", + "device linked" + ], + "visual": "rectangular screen with broadcast signal arcs and a rectangle inside it" + }, + "CastForEducation": { + "keywords": [ + "classroom", + "google classroom", + "share to class", + "teacher screen", + "distance learning" + ], + "visual": "rectangular screen with broadcast signal arcs and a graduation cap above them" + }, + "Castle": { + "keywords": ["medieval", "turret", "royal", "chess rook", "kingdom", "stronghold"], + "visual": "castle building with crenellated towers and an arched doorway" + }, + "CatchingPokemon": { + "keywords": ["pokeball", "pokemon go", "catch monster", "game", "augmented reality game"], + "visual": "circle split into a dark top half and light bottom half with a small circle in the center" + }, + "Category": { + "keywords": ["group", "classification", "tags", "organize", "types"], + "visual": "triangle, square and circle grouped together" + }, + "Celebration": { + "keywords": ["confetti", "party popper", "festive", "congrats", "achievement"], + "visual": "triangle shape with sparkle lines and curling swirls beside it" + }, + "CellTower": { + "keywords": ["antenna", "5g", "mobile network", "signal tower", "radio tower"], + "visual": "tower with a dot on top and signal waves radiating from both sides" + }, + "CellWifi": { + "keywords": ["mobile data", "wifi calling", "cellular signal", "hotspot", "signal strength"], + "visual": "triangle split diagonally with wifi signal arcs in the upper left corner" + }, + "CenterFocusStrong": { + "keywords": ["autofocus", "focal point", "target", "viewfinder", "focus lock"], + "visual": "four corner brackets framing a circle in the center" + }, + "CenterFocusWeak": { + "keywords": ["autofocus off", "unfocused target", "viewfinder", "weak focus", "focus ring"], + "visual": "four corner brackets framing a ring circle in the center" + }, + "Chair": { + "keywords": ["armchair", "recliner", "seat", "living room", "furniture store"], + "visual": "armchair with a cushioned back and armrests" + }, + "ChairAlt": { + "keywords": ["stool", "dining chair", "bar stool", "office chair", "kitchen stool"], + "visual": "stool with a ladder-style back made of horizontal bars" + }, + "Chalet": { + "keywords": ["ski lodge", "mountain house", "winter cabin", "alpine house", "snow home"], + "visual": "house shape with a peaked roof and a snowflake beside it" + }, + "ChangeCircle": { + "keywords": ["swap", "replace", "toggle", "update status", "exchange"], + "visual": "circle containing two curved arrows forming a refresh loop" + }, + "ChangeHistory": { + "keywords": ["revision history", "undo", "redo", "hollow triangle", "play shape"], + "visual": "triangle shape with an open center" + }, + "ChargingStation": { + "keywords": ["ev charging", "charging point", "power station", "fast charge", "phone charging"], + "visual": "smartphone with a lightning bolt on its screen" + }, + "Chat": { + "keywords": ["messaging", "sms", "conversation", "instant message", "chat app"], + "visual": "speech bubble with horizontal text lines inside it" + }, + "ChatBubble": { + "keywords": ["speech bubble", "messaging", "dialogue", "quote bubble", "conversation icon"], + "visual": "plain empty speech bubble" + }, + "Check": { + "keywords": ["approve", "confirmed", "valid", "agree"], + "visual": "checkmark" + }, + "CheckBox": { + "keywords": [ + "checked box", + "ticked box", + "selected checkbox", + "form field checked", + "agree checkbox" + ], + "visual": "rounded square containing a checkmark" + }, + "CheckBoxOutlineBlank": { + "keywords": ["unchecked box", "empty checkbox", "blank checkbox", "untoggled", "select option"], + "visual": "empty square shape with no marks inside" + }, + "CheckCircle": { + "keywords": ["success icon", "completed task", "status ok", "verified badge", "green check"], + "visual": "circle containing a checkmark" + }, + "Checklist": { + "keywords": ["to-do list", "task list", "checklist items", "done list", "task tracker"], + "visual": "two checkmarks paired with two horizontal lines, stacked in two rows with checkmarks on the left" + }, + "ChecklistRtl": { + "keywords": [ + "to-do list rtl", + "right to left list", + "task list arabic", + "hebrew checklist", + "mirrored checklist" + ], + "visual": "two horizontal lines paired with two checkmarks, stacked in two rows with checkmarks on the right" + }, + "Checkroom": { + "keywords": ["wardrobe", "clothing rack", "fitting room", "dry cleaning", "laundry"], + "visual": "clothes hanger" + }, + "ChevronLeft": { + "keywords": ["previous", "back arrow", "collapse left", "go back", "left caret"], + "visual": "chevron arrow pointing left" + }, + "ChevronRight": { + "keywords": ["next", "forward arrow", "expand right", "go forward", "right caret"], + "visual": "chevron arrow pointing right" + }, + "ChildCare": { + "keywords": ["daycare", "nursery", "childminding", "babysitting", "preschool"], + "visual": "round face with two dot eyes, a smiling mouth and rounded ears on the sides" + }, + "ChildFriendly": { + "keywords": ["pram", "pushchair", "baby carriage", "stroller access", "family friendly"], + "visual": "baby stroller with a curved canopy and small wheels" + }, + "ChromeReaderMode": { + "keywords": [ + "reading mode", + "article view", + "simplified page", + "distraction free", + "reader view" + ], + "visual": "rectangle split into a plain left panel and a right panel with horizontal text lines" + }, + "Church": { + "keywords": ["chapel", "cathedral", "place of worship", "cross", "religious building"], + "visual": "church building with a cross on top, a round window and an arched doorway" + }, + "Circle": { + "keywords": ["round shape", "filled circle", "status dot", "bullet point"], + "visual": "plain circle with no markings" + }, + "CircleNotifications": { + "keywords": [ + "notification bell", + "alert badge", + "new notification", + "bell in circle", + "notification center" + ], + "visual": "circle with a bell shape inside it" + }, + "Class": { + "keywords": ["course", "lesson", "subject", "textbook", "education category"], + "visual": "closed book with a bookmark ribbon on its cover" + }, + "CleanHands": { + "keywords": ["hand washing", "hygiene", "sanitize", "wash hands", "soap"], + "visual": "hand under a running faucet with water drops and sparkle marks" + }, + "CleaningServices": { + "keywords": ["housekeeping", "maid service", "scrub brush", "janitorial", "chores"], + "visual": "cleaning brush with bristles at the bottom" + }, + "Clear": { + "keywords": ["x mark", "remove text", "clear field", "dismiss", "close small"], + "visual": "thin X shape" + }, + "ClearAll": { + "keywords": [ + "clear notifications", + "dismiss all", + "clear list", + "remove all items", + "empty tray" + ], + "visual": "three horizontal lines of decreasing length stacked with the shortest on top" + }, + "Close": { + "keywords": ["x button", "dismiss dialog", "shut window", "close tab"], + "visual": "bold thick X shape" + }, + "CloseFullscreen": { + "keywords": [ + "exit fullscreen", + "shrink window", + "restore down", + "windowed mode", + "collapse screen" + ], + "visual": "two diagonal arrows pointing toward each other from opposite corners" + }, + "ClosedCaption": { + "keywords": ["cc", "captions on", "subtitles on", "accessibility text", "tv subtitles"], + "visual": "rounded square containing the letters CC" + }, + "ClosedCaptionDisabled": { + "keywords": ["captions off", "subtitles disabled", "cc off", "no subtitles", "mute subtitles"], + "visual": "rounded square with the letters CC and a diagonal slash through it" + }, + "ClosedCaptionOff": { + "keywords": [ + "captions unavailable", + "cc outline", + "subtitles off", + "no captions available", + "subtitle option" + ], + "visual": "square containing the letters CC" + }, + "Cloud": { + "keywords": ["cloud storage", "online backup", "saas", "cloud computing", "weather cloud"], + "visual": "cloud shape" + }, + "CloudCircle": { + "keywords": [ + "cloud service", + "cloud icon badge", + "cloud account", + "cloud status", + "cloud app icon" + ], + "visual": "circle with a cloud shape inside it" + }, + "CloudDone": { + "keywords": ["synced", "backup complete", "upload finished", "cloud saved", "all synced"], + "visual": "cloud shape with a checkmark inside it" + }, + "CloudDownload": { + "keywords": ["download from cloud", "fetch file", "import data", "save to device", "get file"], + "visual": "cloud shape with a downward arrow inside it" + }, + "CloudOff": { + "keywords": [ + "no connection", + "cloud disconnected", + "sync disabled", + "no internet", + "offline mode" + ], + "visual": "cloud with a diagonal slash through it" + }, + "CloudQueue": { + "keywords": ["cloud outline", "weather cloud", "cloud pending", "waiting sync", "idle cloud"], + "visual": "plain cloud shape with no markings inside" + }, + "CloudSync": { + "keywords": ["syncing", "auto backup", "sync in progress", "cloud refresh", "two-way sync"], + "visual": "two curved arrows forming a loop beneath a small cloud shape" + }, + "CloudUpload": { + "keywords": [ + "upload file", + "backup to cloud", + "send to cloud", + "publish file", + "export to cloud" + ], + "visual": "cloud shape with an upward arrow inside it" + }, + "CloudySnowing": { + "keywords": [ + "snow forecast", + "winter weather", + "snowfall", + "flurries", + "snowy cloud", + "cold weather" + ], + "visual": "cloud shape with several dots falling below it" + }, + "Co2": { + "keywords": ["carbon footprint", "emissions", "greenhouse gas", "climate", "pollution"], + "visual": "letters CO with a smaller 2 as a subscript" + }, + "CoPresent": { + "keywords": ["presenter", "co-host", "present to", "screen sharing person", "give control"], + "visual": "person silhouette standing beside an easel or presentation board" + }, + "Code": { + "keywords": ["source code", "programming", "angle brackets", "dev mode", "script"], + "visual": "two angle bracket marks facing each other, one open left and one open right" + }, + "CodeOff": { + "keywords": [ + "no code", + "code disabled", + "programming off", + "view source disabled", + "developer mode off" + ], + "visual": "two angle bracket marks with a diagonal slash through them" + }, + "Coffee": { + "keywords": ["espresso", "cafe", "hot drink", "latte", "coffee cup"], + "visual": "coffee cup with a handle sitting above a horizontal base line" + }, + "CoffeeMaker": { + "keywords": ["espresso machine", "brewer", "coffee pot", "kitchen appliance", "percolator"], + "visual": "coffee maker machine with a small button dot and a carafe below" + }, + "Collections": { + "keywords": [ + "photo album", + "image gallery", + "photo stack", + "media library", + "picture stack view" + ], + "visual": "two overlapping square frames, the front one containing a mountain landscape image" + }, + "CollectionsBookmark": { + "keywords": [ + "saved album", + "favorite gallery", + "bookmarked photos", + "curated collection", + "saved photo set" + ], + "visual": "two overlapping square frames, the front one containing a bookmark ribbon" + }, + "ColorLens": { + "keywords": ["palette", "color picker", "theme colors", "paint swatches", "customize colors"], + "visual": "paint palette shape with several round color dots on it" + }, + "Colorize": { + "keywords": ["eyedropper", "sample color", "pick color", "color matching", "color tool"], + "visual": "eyedropper tool tilted at a diagonal angle" + }, + "Comment": { + "keywords": ["reply", "annotation", "leave a note", "feedback bubble", "discuss"], + "visual": "speech bubble with horizontal text lines and a pointed tail" + }, + "CommentBank": { + "keywords": [ + "saved reply", + "quick response", + "comment template", + "grading comment", + "canned feedback", + "feedback library" + ], + "visual": "speech bubble with a bookmark ribbon inside it" + }, + "CommentsDisabled": { + "keywords": [ + "comments off", + "replies disabled", + "feedback disabled", + "no comments allowed", + "discussion closed" + ], + "visual": "rectangle with horizontal text lines and a diagonal slash through it" + }, + "Commit": { + "keywords": ["git commit", "save changes", "version control", "checkpoint", "record change"], + "visual": "horizontal line passing through a small ring in the middle" + }, + "Commute": { + "keywords": ["travel to work", "daily commute", "transit", "vehicles overlapping", "journey"], + "visual": "truck and car overlapping, both viewed at an angle" + }, + "Compare": { + "keywords": [ + "before and after", + "side by side", + "split view", + "comparison slider", + "photo comparison" + ], + "visual": "rectangle split vertically into two halves, one plain and one containing a triangle" + }, + "CompareArrows": { + "keywords": ["swap", "exchange", "versus", "convert", "bidirectional arrows"], + "visual": "two horizontal arrows pointing toward each other from opposite sides" + }, + "CompassCalibration": { + "keywords": [ + "calibrate compass", + "gps calibration", + "navigation setup", + "orientation reset", + "sensor calibration" + ], + "visual": "wedge-shaped fan pointing upward above a small dot" + }, + "Compost": { + "keywords": ["food waste", "organic waste", "recycling bin", "eco friendly", "garden waste"], + "visual": "circular arrow looping around a small plant sprout" + }, + "Compress": { + "keywords": ["zip file", "shrink", "reduce size", "minimize data", "squeeze"], + "visual": "downward arrow and upward arrow pointing toward each other with two horizontal lines between them" + }, + "Computer": { + "keywords": ["workstation", "notebook computer", "desktop device"], + "visual": "laptop with a rectangular screen and a base" + }, + "ConfirmationNumber": { + "keywords": [ + "ticket number", + "booking confirmation", + "event ticket", + "order confirmation", + "boarding pass" + ], + "visual": "ticket shape with notched sides and three dots in a vertical line" + }, + "ConnectWithoutContact": { + "keywords": [ + "social distancing", + "remote connection", + "virtual meetup", + "contactless socializing", + "video meetup" + ], + "visual": "two person silhouettes facing each other with wifi signal arcs between them" + }, + "ConnectedTv": { + "keywords": ["smart tv", "cast to tv", "streaming device", "tv wifi", "screen mirroring tv"], + "visual": "television screen on a stand with wifi signal arcs in its corner" + }, + "ConnectingAirports": { + "keywords": [ + "layover", + "flight connection", + "transfer flight", + "travel itinerary", + "connecting flights" + ], + "visual": "two airplane silhouettes overlapping, both angled upward" + }, + "Construction": { + "keywords": [ + "under construction", + "building site", + "renovation", + "maintenance mode", + "work in progress" + ], + "visual": "crossed wrench and hammer" + }, + "ContactEmergency": { + "keywords": ["emergency contact", "ice contact", "medical id", "sos contact", "next of kin"], + "visual": "rounded rectangle card with a person silhouette and an asterisk symbol" + }, + "ContactMail": { + "keywords": [ + "email contact", + "address card", + "mail someone", + "contact info card", + "reach by email" + ], + "visual": "rectangular card with a person silhouette and an envelope" + }, + "ContactPage": { + "keywords": ["business card", "vcard", "contact info sheet", "profile document", "resume card"], + "visual": "document with a folded corner containing a person silhouette" + }, + "ContactPhone": { + "keywords": [ + "phone contact", + "call someone", + "contact number card", + "dial contact", + "phone number card" + ], + "visual": "rectangular card with a person silhouette and a phone receiver" + }, + "ContactSupport": { + "keywords": ["help center", "faq", "customer service", "get help", "ask a question"], + "visual": "speech bubble with a question mark inside it" + }, + "Contactless": { + "keywords": ["tap to pay", "nfc payment", "apple pay", "google pay", "tap payment"], + "visual": "circle with curved signal wave lines like a contactless payment symbol" + }, + "Contacts": { + "keywords": ["address book", "phone book", "contact list", "people directory", "rolodex"], + "visual": "rectangle containing a person silhouette with a horizontal bar above and below" + }, + "ContentCopy": { + "keywords": ["clone", "duplicate file", "ctrl c", "copy to clipboard"], + "visual": "two overlapping rectangular page outlines" + }, + "ContentCut": { + "keywords": ["clip", "scissors tool", "ctrl x", "remove and copy"], + "visual": "pair of scissors" + }, + "ContentPaste": { + "keywords": ["ctrl v", "insert copied text", "paste document"], + "visual": "clipboard with a small clip circle at the top and an empty body" + }, + "ContentPasteGo": { + "keywords": [ + "paste and send", + "paste forward", + "quick paste", + "paste action", + "paste and submit" + ], + "visual": "clipboard with a clip at the top and an arrow pointing right" + }, + "ContentPasteOff": { + "keywords": [ + "paste disabled", + "clipboard blocked", + "cannot paste", + "paste unavailable", + "pasting blocked" + ], + "visual": "clipboard shape with a diagonal slash through it" + }, + "ContentPasteSearch": { + "keywords": [ + "search clipboard", + "find in document", + "paste and search", + "audit", + "inspect clipboard" + ], + "visual": "clipboard with a clip at the top and a magnifying glass over it" + }, + "Contrast": { + "keywords": [ + "light dark mode", + "contrast adjustment", + "half tone", + "color balance", + "exposure control" + ], + "visual": "circle split into a dark left half and light right half" + }, + "ControlCamera": { + "keywords": [ + "pan camera", + "move camera", + "joystick control", + "camera controls", + "directional pad" + ], + "visual": "four diamond arrows pointing up, down, left and right around a central dot" + }, + "ControlPoint": { + "keywords": ["add point", "new item circle", "plus circle", "insert", "circle plus button"], + "visual": "circle with a plus sign inside it" + }, + "ControlPointDuplicate": { + "keywords": ["duplicate point", "copy item", "clone circle", "add copy", "duplicate marker"], + "visual": "two overlapping circles, the front one containing a plus sign" + }, + "ConveyorBelt": { + "keywords": [ + "factory line", + "assembly line", + "production line", + "manufacturing", + "warehouse belt", + "industrial machine" + ], + "visual": "machine with small rectangle and dash marks on top, resting on an oval belt base" + }, + "Cookie": { + "keywords": ["snack", "gdpr", "tracking consent", "privacy cookies", "chocolate chip"], + "visual": "round cookie with a bite taken out of one edge and small dots on its surface" + }, + "CopyAll": { + "keywords": [ + "copy all", + "select all copy", + "duplicate files", + "clone all", + "copy multiple files" + ], + "visual": "rounded rectangle layered in front of a dashed rectangle" + }, + "Copyright": { + "keywords": [ + "copyright symbol", + "intellectual property", + "all rights reserved", + "license", + "protected work" + ], + "visual": "circle containing the letter C" + }, + "Coronavirus": { + "keywords": ["covid-19", "virus", "pandemic", "infection", "pathogen"], + "visual": "round shape with spikes around its edge and small dots inside" + }, + "CorporateFare": { + "keywords": ["company", "enterprise", "office complex", "corporate campus", "headquarters"], + "visual": "two buildings of different heights with grids of small windows" + }, + "Cottage": { + "keywords": ["small house", "vacation home", "cabin", "countryside house", "airbnb"], + "visual": "house shape with a peaked roof, a door and a smoke wisp above the chimney" + }, + "Countertops": { + "keywords": ["kitchen counter", "cabinet", "worktop", "renovation", "home improvement"], + "visual": "cabinet shape with an open padlock above it" + }, + "Create": { + "keywords": ["edit", "new document", "draft", "compose message", "write note"], + "visual": "pencil tilted at an angle" + }, + "CreateNewFolder": { + "keywords": [ + "new folder", + "add folder", + "make directory", + "create directory", + "new project folder" + ], + "visual": "folder shape with a plus sign in the center" + }, + "CreditCard": { + "keywords": ["debit card", "payment card", "bank card", "checkout", "visa mastercard"], + "visual": "rectangular card with a horizontal stripe across it" + }, + "CreditCardOff": { + "keywords": [ + "payment declined", + "card disabled", + "no payment", + "card blocked", + "payment unavailable" + ], + "visual": "rectangular card with a horizontal stripe and a diagonal slash through it" + }, + "CreditScore": { + "keywords": ["credit rating", "fico score", "loan approval", "good credit", "credit health"], + "visual": "rectangular card with a horizontal stripe and a checkmark overlapping its corner" + }, + "Crib": { + "keywords": ["baby bed", "nursery furniture", "cot", "rocking cradle"], + "visual": "baby crib with curved rocker legs at the bottom" + }, + "CrisisAlert": { + "keywords": [ + "emergency alert", + "disaster warning", + "target warning", + "urgent notice", + "red alert" + ], + "visual": "circular target shape with an exclamation mark in the center" + }, + "Crop": { + "keywords": [ + "trim image", + "resize photo", + "cut photo edges", + "crop tool", + "adjust image bounds" + ], + "visual": "two right-angle brackets facing each other like opposite corners of a frame" + }, + "Crop169": { + "keywords": [ + "16:9 aspect ratio", + "widescreen crop", + "cinema ratio", + "video aspect", + "movie ratio" + ], + "visual": "rectangle that is very wide and short" + }, + "Crop32": { + "keywords": [ + "3:2 aspect ratio", + "photo aspect ratio", + "standard crop", + "classic ratio", + "camera ratio" + ], + "visual": "rectangle that is noticeably wider than it is tall" + }, + "Crop54": { + "keywords": [ + "5:4 aspect ratio", + "print ratio", + "near square crop", + "photo frame ratio", + "portrait print ratio" + ], + "visual": "rectangle that is nearly square, only slightly wider than tall" + }, + "Crop75": { + "keywords": [ + "7:5 aspect ratio", + "photo print size", + "wide crop", + "5x7 ratio", + "landscape print ratio" + ], + "visual": "rectangle that is wider than it is tall" + }, + "CropDin": { + "keywords": [ + "din aspect ratio", + "iso paper ratio", + "a4 ratio crop", + "european paper ratio", + "document ratio" + ], + "visual": "rectangle that is nearly square, only slightly taller than wide" + }, + "CropFree": { + "keywords": ["free crop", "scan frame", "viewfinder corners", "custom crop", "corner markers"], + "visual": "four separate corner brackets forming an open frame with no connecting sides" + }, + "CropLandscape": { + "keywords": [ + "landscape orientation", + "horizontal crop", + "wide photo", + "wide frame", + "horizontal photo frame" + ], + "visual": "rectangle in a horizontal orientation, wider than it is tall" + }, + "CropOriginal": { + "keywords": [ + "original size", + "full image", + "uncropped photo", + "source image", + "default photo size" + ], + "visual": "square picture frame containing a mountain landscape image" + }, + "CropPortrait": { + "keywords": [ + "portrait orientation", + "vertical crop", + "tall photo", + "tall frame", + "vertical photo frame" + ], + "visual": "narrow rectangle in a vertical orientation, taller than it is wide" + }, + "CropRotate": { + "keywords": ["rotate and crop", "straighten photo", "adjust angle", "rotate frame", "fix tilt"], + "visual": "crop frame corner marks surrounded by curved rotation arrows" + }, + "CropSquare": { + "keywords": ["square crop", "1:1 ratio", "instagram crop", "equal sides", "even crop"], + "visual": "plain square with no markings inside" + }, + "CrueltyFree": { + "keywords": [ + "not tested on animals", + "vegan", + "leaping bunny", + "ethical product", + "vegan certified" + ], + "visual": "rabbit face with long upright ears and two dot eyes" + }, + "Css": { + "keywords": [ + "stylesheet", + "cascading style sheets", + "web styling", + "frontend code", + "style rules" + ], + "visual": "letters CSS in a bold blocky font" + }, + "CurrencyBitcoin": { + "keywords": ["btc", "cryptocurrency", "crypto payment", "digital currency", "bitcoin symbol"], + "visual": "letter B with a vertical line through it and small strokes at top and bottom, like the bitcoin symbol" + }, + "CurrencyExchange": { + "keywords": ["forex", "convert currency", "money exchange", "exchange rate", "swap currency"], + "visual": "circular loop of two arrows with a dollar sign in the center" + }, + "CurrencyFranc": { + "keywords": ["swiss franc", "chf", "french franc", "currency symbol", "franc symbol"], + "visual": "letter F with two short horizontal strikethrough lines" + }, + "CurrencyLira": { + "keywords": [ + "turkish lira", + "turkey", + "lira sign", + "forex", + "foreign exchange", + "exchange rate", + "banking", + "wallet" + ], + "visual": "vertical stroke with two diagonal lines crossing through its upper part, like a script letter L" + }, + "CurrencyPound": { + "keywords": [ + "british pound", + "pound sterling", + "sterling", + "uk", + "britain", + "gbp", + "quid", + "forex", + "exchange rate" + ], + "visual": "curled script letter with a horizontal line struck through its vertical stem, the pound sterling symbol" + }, + "CurrencyRuble": { + "keywords": ["russian ruble", "russia", "rub", "forex", "exchange rate", "banking", "wallet"], + "visual": "letter P shape with a horizontal line crossing through the stem below the loop" + }, + "CurrencyRupee": { + "keywords": ["indian rupee", "india", "inr", "forex", "exchange rate", "banking", "wallet"], + "visual": "letter R shape with two horizontal lines crossing through it and a diagonal leg" + }, + "CurrencyYen": { + "keywords": ["japanese yen", "japan", "jpy", "forex", "exchange rate", "banking", "wallet"], + "visual": "letter Y with two horizontal lines crossing through its vertical stem" + }, + "CurrencyYuan": { + "keywords": [ + "chinese yuan", + "china", + "cny", + "renminbi", + "rmb", + "forex", + "exchange rate", + "banking", + "wallet" + ], + "visual": "letter Y with two horizontal lines crossing through its vertical stem" + }, + "Curtains": { + "keywords": [ + "drape", + "drapery", + "window covering", + "window treatment", + "privacy", + "stage curtain", + "theater curtain", + "fabric", + "interior design" + ], + "visual": "single draped curtain panel with a diamond-shaped gap near the top and a scalloped bottom edge" + }, + "CurtainsClosed": { + "keywords": [ + "drapes", + "drapery", + "window covering", + "window treatment", + "privacy", + "blackout", + "shut", + "darken room", + "interior design" + ], + "visual": "two curtain panels meeting at a center seam with a thin vertical gap between them and scalloped bottom edges" + }, + "Cyclone": { + "keywords": [ + "hurricane", + "tornado", + "typhoon", + "twister", + "whirlwind", + "vortex", + "spiral", + "swirl", + "wind alert" + ], + "visual": "spiral swirl with a small ring at the center and a tail curling outward like a storm" + }, + "Dangerous": { + "keywords": [ + "hazard", + "caution", + "unsafe", + "blocked", + "prohibited", + "alert", + "octagon", + "stop sign", + "x mark", + "cancel" + ], + "visual": "octagon with an X mark in the center" + }, + "DarkMode": { + "keywords": [ + "sleep", + "lights off", + "dim", + "low light", + "bedtime", + "crescent", + "dusk", + "evening" + ], + "visual": "crescent moon shape" + }, + "Dashboard": { + "keywords": [ + "control panel", + "admin panel", + "overview", + "home screen", + "analytics", + "widgets", + "tiles", + "console" + ], + "visual": "four rectangles arranged in a grid, two tall ones on the left and two wide ones on the right" + }, + "DashboardCustomize": { + "keywords": [ + "add widget", + "edit layout", + "personalize", + "configure", + "add tile", + "rearrange", + "control panel" + ], + "visual": "grid of four squares with a plus sign in place of the bottom right square" + }, + "DataArray": { + "keywords": [ + "square brackets", + "list", + "json array", + "index", + "programming", + "syntax", + "developer" + ], + "visual": "two square brackets facing each other with empty space between them" + }, + "DataExploration": { + "keywords": [ + "trend", + "insight", + "discovery", + "growth", + "upward trend", + "research", + "data science", + "report" + ], + "visual": "circle with an upward zigzag arrow inside and a small dot near the bottom edge" + }, + "DataObject": { + "keywords": [ + "curly braces", + "json object", + "key value", + "programming", + "syntax", + "developer", + "dictionary" + ], + "visual": "two curly braces facing each other with empty space between them" + }, + "DataSaverOff": { + "keywords": [ + "mobile data", + "bandwidth", + "cellular data", + "network settings", + "restrict data", + "wifi", + "settings toggle" + ], + "visual": "ring shape with a small gap segment, like a partial circular progress indicator" + }, + "DataSaverOn": { + "keywords": [ + "mobile data", + "bandwidth", + "cellular data", + "network settings", + "restrict data", + "wifi", + "enable saving" + ], + "visual": "ring shape with a small gap segment and a plus sign in the center" + }, + "DataThresholding": { + "keywords": [ + "image processing", + "binary image", + "filter", + "mask", + "cutoff", + "sensitivity", + "trend line", + "censor" + ], + "visual": "rounded square containing a zigzag line graph above diagonal hatched stripes" + }, + "DataUsage": { + "keywords": [ + "pie chart", + "storage usage", + "consumption", + "bandwidth", + "cellular data", + "mobile data", + "capacity" + ], + "visual": "ring shape with a wedge segment cut out, like a pie chart" + }, + "Dataset": { + "keywords": [ + "database", + "data table", + "spreadsheet", + "grid view", + "collection", + "records", + "data source", + "data collection" + ], + "visual": "rounded square containing four small squares arranged in a two-by-two grid" + }, + "DatasetLinked": { + "keywords": [ + "database", + "linked data", + "connected data", + "chain link", + "integration", + "connection", + "relational data", + "data link" + ], + "visual": "rounded square with small squares partly covered by a chain link badge at the bottom right" + }, + "DateRange": { + "keywords": [ + "date picker", + "start and end date", + "span", + "duration", + "timeframe", + "booking dates", + "select dates" + ], + "visual": "calendar shape with two tabs on top and a row of three dots below the header" + }, + "Deblur": { + "keywords": [ + "focus", + "clarity", + "unblur", + "crisp", + "clear up", + "camera focus", + "gradient dots" + ], + "visual": "vertical row of dots fading from small to large next to a half circle on the right" + }, + "Deck": { + "keywords": [ + "gazebo", + "pergola", + "awning", + "backyard", + "relax", + "lounge", + "veranda", + "balcony" + ], + "visual": "peaked canopy shape above two chairs facing each other" + }, + "Dehaze": { + "keywords": [ + "haze removal", + "fog removal", + "contrast", + "clarity", + "atmosphere", + "clear sky", + "photo filter" + ], + "visual": "three thick horizontal bars stacked evenly" + }, + "Delete": { + "keywords": [ + "erase", + "discard", + "trash", + "dustbin", + "dispose", + "clear", + "throw away", + "wastebasket" + ], + "visual": "trash can with a lid and handle" + }, + "DeleteForever": { + "keywords": [ + "erase", + "discard", + "dustbin", + "dispose", + "throw away", + "permanently delete", + "wipe", + "purge" + ], + "visual": "trash can with an X mark on the front" + }, + "DeleteSweep": { + "keywords": [ + "bulk delete", + "clear list", + "erase multiple", + "clean up", + "dustbin", + "dispose", + "clear all" + ], + "visual": "trash can beside three short horizontal lines of decreasing length" + }, + "DeliveryDining": { + "keywords": [ + "moped", + "motorbike", + "courier", + "food delivery", + "delivery box", + "rider", + "order delivery" + ], + "visual": "moped with a delivery box mounted on the back" + }, + "DensityLarge": { + "keywords": [ + "spacing", + "row height", + "comfortable view", + "list spacing", + "table density", + "loose spacing", + "wide spacing" + ], + "visual": "thin horizontal line at the top and a thick horizontal bar at the bottom, widely spaced apart" + }, + "DensityMedium": { + "keywords": [ + "spacing", + "row height", + "medium spacing", + "list spacing", + "table density", + "standard view", + "compact view" + ], + "visual": "thick horizontal bar at the top and bottom with a thin line between them, closely spaced" + }, + "DensitySmall": { + "keywords": [ + "spacing", + "row height", + "compact view", + "tight spacing", + "list spacing", + "table density", + "condensed" + ], + "visual": "four thick horizontal bars stacked closely together" + }, + "DepartureBoard": { + "keywords": [ + "departures", + "arrivals", + "transit", + "bus stop", + "timetable", + "public transport", + "commute" + ], + "visual": "front view of a bus with a clock badge at the top right corner" + }, + "Description": { + "keywords": ["summary", "details", "report", "memo", "read", "content"], + "visual": "document page with a folded corner and two horizontal lines of text" + }, + "Deselect": { + "keywords": [ + "unselect", + "clear selection", + "cancel selection", + "remove selection", + "marquee", + "crop tool" + ], + "visual": "dashed square selection with a diagonal slash through it" + }, + "DesignServices": { + "keywords": [ + "graphic design", + "crossed pencils", + "drafting", + "sketch", + "art tools", + "creative", + "illustration" + ], + "visual": "two pencils crossed over each other diagonally" + }, + "Desk": { + "keywords": [ + "table", + "workstation", + "office furniture", + "drawers", + "study desk", + "workspace", + "furniture" + ], + "visual": "desk viewed from the front with drawers on the right side" + }, + "DesktopAccessDisabled": { + "keywords": ["computer", "access denied", "blocked", "restricted", "no access", "disconnected"], + "visual": "desktop monitor on a stand with a diagonal slash through it" + }, + "DesktopMac": { + "keywords": ["computer", "imac", "macintosh", "workstation", "cpu"], + "visual": "desktop monitor on a thin narrow stand" + }, + "DesktopWindows": { + "keywords": ["computer", "microsoft windows", "workstation", "cpu", "all in one pc"], + "visual": "desktop monitor on a wide flat base" + }, + "Details": { + "keywords": ["contrast", "clarity", "exposure", "tone", "image adjustment"], + "visual": "triangle split in half by a vertical line down the middle" + }, + "DeveloperBoard": { + "keywords": [ + "circuit board", + "pcb", + "motherboard", + "electronics", + "arduino", + "raspberry pi", + "chip" + ], + "visual": "rectangular circuit board with a grid of small squares and pins along the right edge" + }, + "DeveloperBoardOff": { + "keywords": [ + "circuit board", + "pcb", + "motherboard", + "electronics", + "disconnected", + "unavailable" + ], + "visual": "circuit board with pins along the edge and a diagonal slash through it" + }, + "DeveloperMode": { + "keywords": [ + "coding", + "programming", + "debug mode", + "source code", + "angle brackets", + "developer options" + ], + "visual": "phone shape with angle-bracket code symbols inside it" + }, + "DeviceHub": { + "keywords": [ + "network", + "connected devices", + "sync", + "hierarchy", + "node", + "ecosystem", + "cross platform" + ], + "visual": "central circle branching down into two square nodes below it" + }, + "DeviceThermostat": { + "keywords": ["climate control", "heating", "cooling", "hvac", "weather", "smart thermostat"], + "visual": "thermometer with a round bulb at the bottom" + }, + "DeviceUnknown": { + "keywords": ["unrecognized device", "mystery", "faq", "unidentified", "unsupported"], + "visual": "phone shape with a question mark inside it" + }, + "Devices": { + "keywords": ["multi device", "cross platform", "sync", "connectivity", "gadgets", "ecosystem"], + "visual": "laptop computer next to a small smartphone beside it" + }, + "DevicesFold": { + "keywords": ["flip phone", "bendable screen", "hinge", "folding screen", "fold out"], + "visual": "dashed vertical line next to a folded phone shape, representing a foldable device" + }, + "DevicesOther": { + "keywords": ["multi device", "cross platform", "ecosystem", "connected devices", "gadgets"], + "visual": "tablet with a round watch face overlapping it and a phone beside them" + }, + "DewPoint": { + "keywords": [ + "humidity", + "moisture", + "weather", + "temperature", + "condensation", + "forecast", + "climate" + ], + "visual": "thermometer with water droplets falling beside it" + }, + "DialerSip": { + "keywords": [ + "voip", + "internet telephony", + "make a call", + "answer call", + "sip trunk", + "handset" + ], + "visual": "phone handset receiver with the letters SIP above it" + }, + "Dialpad": { + "keywords": ["keypad", "number pad", "dial numbers", "telephone keypad", "enter number"], + "visual": "grid of nine dots in three rows with one extra dot centered below, like a phone dial pad" + }, + "Diamond": { + "keywords": ["gemstone", "precious stone", "engagement ring", "luxury", "sparkle", "premium"], + "visual": "faceted diamond gem shape with a pointed bottom" + }, + "Difference": { + "keywords": ["diff", "version compare", "changes", "delta", "plus minus", "git diff"], + "visual": "stack of document pages with a badge containing a plus sign above a minus sign" + }, + "Dining": { + "keywords": ["restaurant", "food", "meal", "utensils", "table setting", "eatery"], + "visual": "fork and spoon side by side on a rounded square background" + }, + "DinnerDining": { + "keywords": ["noodles", "pasta", "chopsticks", "asian food", "bowl", "ramen", "takeout"], + "visual": "bowl of noodles on a plate with chopsticks resting above it" + }, + "Directions": { + "keywords": ["turn right", "road sign", "navigation", "gps", "wayfinding"], + "visual": "diamond-shaped road sign with a right-turning arrow inside" + }, + "DirectionsBike": { + "keywords": ["cycling", "biking", "cyclist", "bike lane", "pedal", "exercise"], + "visual": "person riding a bicycle, leaning forward over the handlebars" + }, + "DirectionsBoat": { + "keywords": ["ship", "sailing", "cruise", "yacht", "sea travel", "nautical"], + "visual": "front view of a boat with a pennant on its mast and wavy water lines below" + }, + "DirectionsBoatFilled": { + "keywords": ["ship", "sailing", "cruise", "yacht", "sea travel", "nautical"], + "visual": "front view of a boat with a pennant on its mast and wavy water lines below" + }, + "DirectionsBus": { + "keywords": ["coach", "shuttle", "bus route", "bus stop", "commute", "transit"], + "visual": "front view of a bus with a single windshield and two round headlights" + }, + "DirectionsBusFilled": { + "keywords": ["coach", "shuttle", "bus route", "bus stop", "commute", "transit"], + "visual": "front view of a bus with a wide windshield and two round headlights below it" + }, + "DirectionsCar": { + "keywords": ["driving", "drive", "ride", "taxi", "road trip", "sedan"], + "visual": "front view of a car with a wide windshield and two round headlights" + }, + "DirectionsCarFilled": { + "keywords": ["driving", "drive", "ride", "taxi", "road trip", "sedan"], + "visual": "front view of a car with a wide windshield and two round headlights" + }, + "DirectionsOff": { + "keywords": ["navigation off", "gps disabled", "no route", "location off", "unavailable route"], + "visual": "two overlapping folded ribbon shapes with a diagonal slash through them" + }, + "DirectionsRailway": { + "keywords": ["locomotive", "rail", "railroad", "commuter train", "light rail"], + "visual": "front view of a train car with a single window and one round light below" + }, + "DirectionsRailwayFilled": { + "keywords": ["locomotive", "rail", "railroad", "commuter train", "light rail"], + "visual": "front view of a train car with a single window and one round light below" + }, + "DirectionsRun": { + "keywords": ["sprint", "exercise", "fitness", "athlete", "hurry", "dash"], + "visual": "person running with arms and legs stretched in mid stride" + }, + "DirectionsSubway": { + "keywords": ["metro", "underground", "tube", "commuter rail", "rapid transit"], + "visual": "front view of a train car with two square windows and two round lights below" + }, + "DirectionsSubwayFilled": { + "keywords": ["metro", "underground", "tube", "commuter rail", "rapid transit"], + "visual": "front view of a train car with two square windows and two round lights below" + }, + "DirectionsTransit": { + "keywords": ["underground", "tube", "commuter rail", "rapid transit", "light rail"], + "visual": "front view of a train car with two square windows and two round lights below" + }, + "DirectionsTransitFilled": { + "keywords": ["metro", "underground", "tube", "commuter rail", "rapid transit"], + "visual": "front view of a train car with two square windows and two round lights below" + }, + "DirectionsWalk": { + "keywords": ["pedestrian", "stroll", "walking", "hike", "foot traffic"], + "visual": "person walking with one arm swung forward and legs mid step" + }, + "DirtyLens": { + "keywords": ["smudge", "dirty camera", "stain", "blemish", "dust", "grime"], + "visual": "square photo frame with a splatter blob and small dots scattered across it" + }, + "DisabledByDefault": { + "keywords": ["unavailable", "inactive", "off by default", "toggle off", "deactivated"], + "visual": "square with an X mark in the center" + }, + "DisabledVisible": { + "keywords": ["password visibility", "grey out", "inactive toggle", "view disabled", "peek"], + "visual": "eye shape with a circular arc above it and a diagonal slash through it" + }, + "DiscFull": { + "keywords": ["disk full", "storage full", "out of space", "low storage", "memory full"], + "visual": "circular disc next to an exclamation mark" + }, + "Discount": { + "keywords": ["sale", "coupon", "promo", "price tag", "deal", "offer", "percent off", "voucher"], + "visual": "two stacked price tag shapes with a notch cut into one corner" + }, + "DisplaySettings": { + "keywords": [ + "display preferences", + "screen settings", + "brightness settings", + "resolution", + "sliders", + "configure display" + ], + "visual": "monitor screen with horizontal slider controls inside" + }, + "Diversity1": { + "keywords": ["inclusion", "community", "unity", "belonging", "care", "support group"], + "visual": "group of three people standing together beneath an arch shape" + }, + "Diversity2": { + "keywords": [ + "inclusion", + "community", + "unity", + "collaboration", + "connection", + "abstract cluster" + ], + "visual": "abstract cluster of overlapping rounded blob shapes" + }, + "Diversity3": { + "keywords": [ + "inclusion", + "community", + "unity", + "belonging", + "teamwork", + "holding hands", + "collaboration" + ], + "visual": "three people standing side by side holding hands" + }, + "Dns": { + "keywords": ["domain name system", "toggle switches", "router", "hosting", "web server"], + "visual": "two horizontal bar toggles stacked, each with a circle on the left end" + }, + "DoDisturb": { + "keywords": [ + "no entry", + "prohibited", + "mute notifications", + "block", + "not allowed", + "forbidden" + ], + "visual": "thin circle with a diagonal line through it, a no-entry sign" + }, + "DoDisturbAlt": { + "keywords": [ + "no entry", + "prohibited", + "mute notifications", + "block", + "not allowed", + "forbidden" + ], + "visual": "thick circle with a diagonal line through it, a no-entry sign" + }, + "DoDisturbOff": { + "keywords": [ + "notifications on", + "unmute", + "allow notifications", + "resume alerts", + "turn off dnd" + ], + "visual": "circle with a horizontal bar and a diagonal slash cutting through it" + }, + "DoDisturbOn": { + "keywords": [ + "silence alerts", + "quiet mode", + "turn on dnd", + "no entry", + "minus circle", + "block" + ], + "visual": "circle with a horizontal bar across the center" + }, + "DoNotDisturb": { + "keywords": [ + "no entry", + "prohibited", + "mute notifications", + "block", + "not allowed", + "forbidden" + ], + "visual": "thin circle with a diagonal line through it, a no-entry sign" + }, + "DoNotDisturbAlt": { + "keywords": [ + "no entry", + "prohibited", + "mute notifications", + "block", + "not allowed", + "forbidden" + ], + "visual": "thick circle with a diagonal line through it, a no-entry sign" + }, + "DoNotDisturbOff": { + "keywords": [ + "notifications on", + "unmute", + "allow notifications", + "resume alerts", + "turn off dnd" + ], + "visual": "circle with a horizontal bar and a diagonal slash cutting through it" + }, + "DoNotDisturbOn": { + "keywords": [ + "silence alerts", + "quiet mode", + "turn on dnd", + "no entry", + "minus circle", + "block" + ], + "visual": "circle with a horizontal bar across the center" + }, + "DoNotDisturbOnTotalSilence": { + "keywords": ["silence all", "complete silence", "no interruptions", "focus mode", "block all"], + "visual": "circle surrounding a smaller circle with a horizontal bar inside" + }, + "DoNotStep": { + "keywords": ["no walking", "keep off", "floor sign", "restricted area", "footprint prohibited"], + "visual": "shoe print shape with a diagonal slash through it" + }, + "DoNotTouch": { + "keywords": ["hands off", "no touching", "keep away", "fragile", "museum sign"], + "visual": "open hand with spread fingers and a diagonal slash through it" + }, + "Dock": { + "keywords": ["charging stand", "cradle", "base station", "docking station", "stand"], + "visual": "phone standing upright on a small dock base with a bar beneath it" + }, + "DocumentScanner": { + "keywords": [ + "scan document", + "viewfinder", + "ocr", + "capture text", + "camera scan", + "corner brackets" + ], + "visual": "document with lines of text framed by four corner brackets, like a scan viewfinder" + }, + "Domain": { + "keywords": [ + "office building", + "company", + "corporate", + "headquarters", + "website domain", + "hosting" + ], + "visual": "building with a grid of small windows and a stepped rooftop" + }, + "DomainAdd": { + "keywords": [ + "office building", + "company", + "corporate", + "headquarters", + "add property", + "new listing" + ], + "visual": "building with a grid of small windows and a plus sign badge at the bottom right" + }, + "DomainDisabled": { + "keywords": ["unavailable", "blocked", "inactive", "no access", "disconnected"], + "visual": "building with a grid of small windows and a diagonal slash through it" + }, + "DomainVerification": { + "keywords": ["verified domain", "confirmed", "approval", "ssl verified", "trust badge"], + "visual": "rounded square frame with a checkmark inside" + }, + "Done": { + "keywords": ["task complete", "submit", "confirm", "agree", "correct", "accept"], + "visual": "checkmark" + }, + "DoneAll": { + "keywords": [ + "read receipt", + "message seen", + "delivered", + "double check", + "all complete", + "whatsapp" + ], + "visual": "two overlapping checkmarks side by side" + }, + "DonutLarge": { + "keywords": ["progress ring", "loading", "percentage", "progress indicator", "completion"], + "visual": "ring shape divided into segments with a gap, like a partial donut" + }, + "DonutSmall": { + "keywords": ["progress ring", "loading", "percentage", "progress indicator", "quadrants"], + "visual": "circle divided into four quadrant segments around a small hole in the center" + }, + "DoorBack": { + "keywords": ["back door", "rear entrance", "doorknob", "room exit", "exit door"], + "visual": "door shape with a small square doorknob, standing on a floor line" + }, + "DoorFront": { + "keywords": ["front door", "main entrance", "doorknob", "entryway", "welcome"], + "visual": "wider door shape with a small square doorknob on the right side, standing on a floor line" + }, + "DoorSliding": { + "keywords": [ + "automatic door", + "glass door", + "double doors", + "elevator door", + "retail entrance" + ], + "visual": "two door panels side by side, each with a small square handle" + }, + "Doorbell": { + "keywords": ["chime", "buzzer", "ring bell", "visitor", "smart doorbell"], + "visual": "house shape with a bell inside it" + }, + "DoubleArrow": { + "keywords": ["fast forward", "next", "skip", "forward arrows", "advance"], + "visual": "two chevron arrows pointing to the right, stacked one behind the other" + }, + "DownhillSkiing": { + "keywords": ["skier", "alpine skiing", "slalom", "snow sports", "winter olympics", "mountain"], + "visual": "person skiing downhill, leaning forward with poles and skis" + }, + "Download": { + "keywords": ["save file", "get file", "import", "fetch", "receive", "save to device"], + "visual": "downward arrow above a horizontal tray bar" + }, + "DownloadDone": { + "keywords": ["download complete", "finished download", "saved", "success", "verified"], + "visual": "checkmark above a horizontal tray bar" + }, + "DownloadForOffline": { + "keywords": ["save for later", "offline access", "cache", "available offline", "no internet"], + "visual": "circle containing a downward arrow above a tray bar" + }, + "Downloading": { + "keywords": ["in progress", "loading", "fetching", "please wait", "sync in progress"], + "visual": "dashed circular ring with a downward arrow inside it" + }, + "Drafts": { + "keywords": ["unsent", "saved message", "mail draft", "pending email", "unfinished"], + "visual": "open envelope shape with the flap folded open" + }, + "DragHandle": { + "keywords": ["reorder", "sort handle", "grip", "equals sign", "drag to reorder"], + "visual": "two thick horizontal bars stacked like an equals sign" + }, + "DragIndicator": { + "keywords": ["reorder", "grip dots", "six dots", "move handle", "sortable list"], + "visual": "grid of six dots arranged in two columns and three rows" + }, + "Draw": { + "keywords": ["sketch", "doodle", "signature", "scribble", "handwriting", "annotate"], + "visual": "pencil with a curved squiggle trailing off its tip" + }, + "DriveEta": { + "keywords": ["arrival time", "driving time", "commute time", "navigation"], + "visual": "front view of a car with two round headlights" + }, + "DriveFileMove": { + "keywords": ["move file", "relocate", "transfer file", "move to folder", "cut and paste"], + "visual": "folder with a right-pointing arrow inside it" + }, + "DriveFileMoveRtl": { + "keywords": ["move file", "relocate", "right to left", "transfer file", "move to folder"], + "visual": "folder with a left-pointing arrow inside it" + }, + "DriveFileRenameOutline": { + "keywords": ["edit filename", "change name", "edit document", "modify"], + "visual": "diagonal pencil above a short horizontal line" + }, + "DriveFolderUpload": { + "keywords": ["upload to folder", "backup", "cloud upload", "add files", "sync up"], + "visual": "folder with an upward arrow inside it" + }, + "Dry": { + "keywords": ["hand dryer", "blow dry", "heat", "warm air", "restroom", "dry hands"], + "visual": "hand with wavy heat lines rising above it" + }, + "DryCleaning": { + "keywords": ["garment care", "wardrobe", "clothes", "clothing service", "closet"], + "visual": "clothes hanger with a garment draped over the bar" + }, + "Duo": { + "keywords": ["google duo", "video chat", "facetime", "video call app", "webcam"], + "visual": "rounded shield badge with a video camera shape inside" + }, + "Dvr": { + "keywords": [ + "digital video recorder", + "recorded shows", + "tv recording", + "playlist", + "recording device" + ], + "visual": "monitor on a stand with rows of a bulleted list inside" + }, + "DynamicFeed": { + "keywords": ["news feed", "content stream", "social feed", "card stack", "timeline"], + "visual": "stack of rounded rectangular cards offset behind one another" + }, + "DynamicForm": { + "keywords": ["toggle switches", "survey", "auto form", "quick settings", "form builder"], + "visual": "two toggle switches stacked vertically beside a lightning bolt" + }, + "EMobiledata": { + "keywords": [ + "edge network", + "2g network", + "network signal", + "mobile network", + "cellular signal" + ], + "visual": "letter E" + }, + "Earbuds": { + "keywords": ["airpods", "wireless earbuds", "in ear headphones", "bluetooth earbuds", "pods"], + "visual": "pair of wireless earbuds joined by an S-curved cord" + }, + "EarbudsBattery": { + "keywords": ["airpods", "battery level", "charge status", "power level", "battery indicator"], + "visual": "earbud cord shape next to a battery" + }, + "East": { + "keywords": [ + "compass direction", + "forward", + "orientation", + "right arrow", + "cardinal direction" + ], + "visual": "arrow pointing right" + }, + "EdgesensorHigh": { + "keywords": [ + "squeeze phone", + "side pressure", + "grip sensor", + "active edge", + "edge sensitivity high" + ], + "visual": "phone with short signal marks near the top on both sides" + }, + "EdgesensorLow": { + "keywords": [ + "squeeze phone", + "side pressure", + "grip sensor", + "active edge", + "edge sensitivity low" + ], + "visual": "phone with short signal marks near the bottom on both sides" + }, + "Edit": { + "keywords": ["modify", "change", "update", "revise", "annotate"], + "visual": "pencil tilted diagonally as if writing" + }, + "EditAttributes": { + "keywords": ["metadata", "properties", "confirm attribute", "tag settings", "toggle confirmed"], + "visual": "rounded pill shape with a checkmark inside it" + }, + "EditCalendar": { + "keywords": [ + "reschedule", + "modify event", + "edit appointment", + "change date", + "update schedule" + ], + "visual": "calendar shape with a pencil overlapping its bottom right corner" + }, + "EditDocument": { + "keywords": [ + "edit file", + "modify document", + "annotate document", + "revise text", + "update file", + "write on document" + ], + "visual": "document page with a folded corner and a pencil overlapping its bottom right corner" + }, + "EditLocation": { + "keywords": ["change address", "update pin", "modify location", "edit address", "move pin"], + "visual": "map pin teardrop shape with a pencil inside it" + }, + "EditLocationAlt": { + "keywords": [ + "change address", + "update pin", + "modify location", + "edit address", + "gps", + "map marker", + "destination", + "place" + ], + "visual": "map pin teardrop shape with a pencil crossing diagonally over its top edge" + }, + "EditNote": { + "keywords": ["edit text", "modify note", "annotate", "revise notes", "memo"], + "visual": "three horizontal lines of text with a pencil overlapping the bottom right corner" + }, + "EditNotifications": { + "keywords": [ + "manage alerts", + "notification settings", + "customize alerts", + "modify reminders", + "change alarm" + ], + "visual": "bell shape with a pencil writing near its top right" + }, + "EditOff": { + "keywords": ["read only", "locked", "cannot edit", "view only", "edit disabled"], + "visual": "two pencils crossed diagonally forming an X" + }, + "EditRoad": { + "keywords": ["road construction", "edit route", "lane markings", "modify road", "roadwork"], + "visual": "vertical dashed and continuous lane-marking lines next to a pencil" + }, + "EditSquare": { + "keywords": ["compose", "modify", "write", "annotate", "edit box", "new post"], + "visual": "rounded square with a pencil writing near the top right corner" + }, + "Egg": { + "keywords": ["boiled egg", "protein", "chicken egg", "ingredient", "easter", "cooking"], + "visual": "egg shape with a small curved highlight mark on it" + }, + "EggAlt": { + "keywords": ["fried egg", "sunny side up", "omelet", "protein", "cooking", "ingredient"], + "visual": "fried egg shape, an oval with a round yolk off to one side" + }, + "EightK": { + "keywords": ["ultra hd", "high resolution", "8000p", "screen quality", "video format"], + "visual": "rounded square badge with the text 8K" + }, + "EightKPlus": { + "keywords": [ + "ultra hd", + "high resolution", + "enhanced 8k", + "video format", + "premium resolution" + ], + "visual": "rounded square badge with the text 8K+" + }, + "EightMp": { + "keywords": ["photo quality", "camera specs", "image sensor", "camera resolution"], + "visual": "rounded square badge with 8 stacked above the letters MP" + }, + "EighteenMp": { + "keywords": ["photo quality", "camera specs", "image sensor", "camera resolution"], + "visual": "rounded square badge with 18 stacked above the letters MP" + }, + "EighteenUpRating": { + "keywords": ["age restriction", "adult content", "mature rating", "age limit", "restricted"], + "visual": "rounded square badge with the number 18" + }, + "EightteenMp": { + "keywords": ["photo quality", "camera specs", "image sensor", "camera resolution"], + "visual": "rounded square badge with 18 stacked above the letters MP" + }, + "Eject": { + "keywords": ["remove disk", "safely remove", "pop out", "unmount", "take out media"], + "visual": "upward-pointing triangle above a horizontal bar" + }, + "Elderly": { + "keywords": ["accessibility", "aging", "grandparent", "walking stick", "pensioner"], + "visual": "person walking hunched over with a cane" + }, + "ElderlyWoman": { + "keywords": ["grandmother", "accessibility", "aging", "walking stick", "pensioner"], + "visual": "woman in a skirt walking hunched over with a cane" + }, + "ElectricBike": { + "keywords": ["battery powered bike", "pedal assist", "electric cycle", "green transport"], + "visual": "bicycle with a lightning bolt beneath it" + }, + "ElectricBolt": { + "keywords": ["power", "voltage", "flash", "electricity", "zap", "speed boost"], + "visual": "lightning bolt" + }, + "ElectricCar": { + "keywords": ["ev", "electric vehicle", "battery powered car", "charging car", "green car"], + "visual": "front view of a car with a small lightning bolt beneath it" + }, + "ElectricMeter": { + "keywords": ["power meter", "utility meter", "energy usage", "watt meter", "smart meter"], + "visual": "circle with a horizontal bar and a lightning bolt inside, two prongs at the bottom" + }, + "ElectricMoped": { + "keywords": ["e-moped", "battery powered moped", "electric bike", "green transport"], + "visual": "moped with a small lightning bolt beneath it" + }, + "ElectricRickshaw": { + "keywords": ["tuk tuk", "auto rickshaw", "e-rickshaw", "three wheeler"], + "visual": "three-wheeled rickshaw with a small lightning bolt beneath it" + }, + "ElectricScooter": { + "keywords": ["e-scooter", "kick scooter", "battery powered scooter", "micromobility"], + "visual": "kick scooter with a small lightning bolt beneath it" + }, + "ElectricalServices": { + "keywords": ["electrician", "power outlet", "plug in", "socket", "wiring"], + "visual": "wavy cable plugging into an electrical outlet" + }, + "Elevator": { + "keywords": ["lift", "floor button", "ascend descend", "up down arrows"], + "visual": "rounded square with a person silhouette and up and down triangle arrows" + }, + "ElevenMp": { + "keywords": ["photo quality", "camera specs", "image sensor", "camera resolution"], + "visual": "rounded square badge with 11 stacked above the letters MP" + }, + "Email": { + "keywords": ["e-mail", "inbox", "gmail", "contact", "compose message", "mail app"], + "visual": "envelope with a V-shaped flap" + }, + "Emergency": { + "keywords": ["sos", "first aid", "ambulance", "urgent care", "help"], + "visual": "asterisk-like burst shape with six pointed segments" + }, + "EmergencyRecording": { + "keywords": ["dash cam", "security footage", "emergency video", "record incident"], + "visual": "square containing the six-pointed burst shape with a video camera lens attached to the side" + }, + "EmergencyShare": { + "keywords": [ + "share location", + "sos alert", + "emergency contact", + "live location", + "safety check" + ], + "visual": "map pin teardrop shape with signal arcs curving above it" + }, + "EmojiEmotions": { + "keywords": ["reactions", "feedback", "rating", "cheerful", "joy"], + "visual": "round smiling face with two dot eyes and a curved open smile" + }, + "EmojiEvents": { + "keywords": ["leaderboard", "victory", "competition", "milestone", "best performance"], + "visual": "trophy cup with two side handles" + }, + "EmojiFlags": { + "keywords": [ + "country flag", + "nationality", + "checkpoint", + "milestone", + "banner", + "mark location" + ], + "visual": "flag on a pole with a small circle at the top of the pole" + }, + "EmojiFoodBeverage": { + "keywords": ["teacup", "hot drink", "cafe", "refreshment"], + "visual": "teacup with a tea bag tag hanging over the rim, sitting on a base line" + }, + "EmojiNature": { + "keywords": ["pollen", "garden", "botanical", "outdoors", "wildlife"], + "visual": "swirled seed pod shape beside a small flower blossom" + }, + "EmojiObjects": { + "keywords": ["innovation", "brainstorm", "insight", "inspiration", "eureka"], + "visual": "lightbulb with a Y-shaped filament and horizontal lines inside" + }, + "EmojiPeople": { + "keywords": ["hello", "hi", "greet", "welcome", "raise hand"], + "visual": "person standing with one arm raised and waving" + }, + "EmojiSymbols": { + "keywords": ["special characters", "punctuation", "text symbols", "glyphs", "typography"], + "visual": "cluster of symbols including a musical note, an ampersand, and a percent sign" + }, + "EmojiTransportation": { + "keywords": ["parking", "commercial building", "office parking", "garage"], + "visual": "building with a car parked in front of it" + }, + "EnergySavingsLeaf": { + "keywords": [ + "green energy", + "energy efficient", + "sustainability", + "renewable", + "eco-friendly power" + ], + "visual": "leaf shape with a lightning bolt inside it" + }, + "Engineering": { + "keywords": ["technician", "hard hat", "contractor", "repair", "mechanic", "industrial"], + "visual": "person silhouette wearing a hard hat with two gear shapes beside the head" + }, + "EnhancedEncryption": { + "keywords": ["add security", "extra protection", "encrypted data", "strong password"], + "visual": "padlock with a plus sign on its body" + }, + "Equalizer": { + "keywords": ["audio mixer", "bar chart", "sound levels", "frequency bars"], + "visual": "three vertical bars of different heights, like an audio equalizer" + }, + "Error": { + "keywords": ["exception", "bug", "failure", "issue", "invalid"], + "visual": "circle with an exclamation mark inside" + }, + "Escalator": { + "keywords": ["moving stairs", "mall", "airport", "shopping center"], + "visual": "rounded square with a diagonal line and a small circle, an escalator symbol" + }, + "EscalatorWarning": { + "keywords": [ + "hold hands", + "caution children", + "supervise child", + "parental guidance", + "safety sign" + ], + "visual": "adult figure holding the hand of a smaller child figure" + }, + "Euro": { + "keywords": ["eu", "eurozone", "european union", "exchange rate"], + "visual": "euro currency symbol" + }, + "EuroSymbol": { + "keywords": ["euro currency", "eurozone", "european union", "exchange rate"], + "visual": "euro currency symbol" + }, + "EvStation": { + "keywords": ["ev charging", "charging point", "plug in station", "recharge"], + "visual": "charging pump shape with a lightning bolt and a cable hanging from the side" + }, + "Event": { + "keywords": ["appointment", "meeting", "occasion", "booking", "calendar entry"], + "visual": "calendar with two top tabs and a small square in the center" + }, + "EventAvailable": { + "keywords": ["free slot", "confirmed appointment", "open date", "booking confirmed"], + "visual": "calendar with a checkmark in the center" + }, + "EventBusy": { + "keywords": ["booked", "no availability", "conflict", "blocked date", "cancelled appointment"], + "visual": "calendar with an X mark in the center" + }, + "EventNote": { + "keywords": ["meeting notes", "appointment details", "calendar notes", "event details"], + "visual": "calendar with horizontal lines of text inside it" + }, + "EventRepeat": { + "keywords": ["recurring event", "repeat appointment", "reschedule", "weekly repeat"], + "visual": "calendar with a circular refresh arrow in the center" + }, + "EventSeat": { + "keywords": [ + "theater seat", + "ticket booking", + "cinema seat", + "seat selection", + "venue seating" + ], + "visual": "armchair viewed from the front with armrests on both sides" + }, + "ExitToApp": { + "keywords": ["enter app", "open app", "launch app", "go to app"], + "visual": "square with an arrow pointing right through an opening in its side" + }, + "Expand": { + "keywords": ["resize", "stretch", "adjust height", "vertical resize", "drag to resize"], + "visual": "double-headed vertical arrow between a horizontal bar at the top and bottom" + }, + "ExpandCircleDown": { + "keywords": ["show more", "dropdown", "expand section", "see more", "reveal content"], + "visual": "circle with a downward chevron inside" + }, + "ExpandLess": { + "keywords": ["show less", "scroll up", "minimize section"], + "visual": "upward-pointing chevron" + }, + "ExpandMore": { + "keywords": ["show more", "dropdown", "expand section", "scroll down", "see more"], + "visual": "downward-pointing chevron" + }, + "Explicit": { + "keywords": ["parental advisory", "mature content", "warning label", "restricted content"], + "visual": "rounded square badge with the letter E" + }, + "Explore": { + "keywords": ["discover", "wander", "adventure", "find places", "browse"], + "visual": "compass circle with a diamond-shaped needle pointing diagonally" + }, + "ExploreOff": { + "keywords": ["exploration disabled", "discovery off", "no browsing", "compass disabled"], + "visual": "compass circle with a diamond-shaped needle and a diagonal slash through it" + }, + "Exposure": { + "keywords": [ + "ev compensation", + "light adjustment", + "camera settings", + "overexposed", + "underexposed" + ], + "visual": "square split diagonally with a minus sign in one corner and a plus sign in the other" + }, + "Extension": { + "keywords": ["browser extension", "module", "integration", "add feature"], + "visual": "puzzle piece with a rounded knob on top and a notch cut into the bottom" + }, + "ExtensionOff": { + "keywords": ["extension disabled", "plugin removed", "uninstall", "blocked add-on"], + "visual": "puzzle piece with a diagonal slash through it" + }, + "Face": { + "keywords": ["face id", "biometric", "portrait", "identity"], + "visual": "round face with short hair and two dot eyes, no mouth" + }, + "Face2": { + "keywords": ["face id", "biometric", "portrait", "curly hair"], + "visual": "round face with curly voluminous hair and two dot eyes" + }, + "Face3": { + "keywords": ["face id", "biometric", "portrait", "long hair"], + "visual": "face with long straight hair framing both sides" + }, + "Face4": { + "keywords": ["face id", "biometric", "portrait", "hair bun"], + "visual": "face with hair pulled up into a bun and two dot eyes" + }, + "Face5": { + "keywords": ["face id", "biometric", "portrait", "textured hair"], + "visual": "round face with dotted textured hair covering the top" + }, + "Face6": { + "keywords": ["face id", "biometric", "portrait", "side part"], + "visual": "round face with short side-swept hair and two dot eyes" + }, + "FaceRetouchingNatural": { + "keywords": ["beauty filter", "ai enhance", "smart retouch", "photo enhancement", "glow up"], + "visual": "face with hair and a small sparkle badge beside it" + }, + "FaceRetouchingOff": { + "keywords": ["beauty filter off", "disable retouch", "no filter", "unedited photo"], + "visual": "face with hair and a diagonal slash through it" + }, + "Facebook": { + "keywords": ["meta", "fb", "social media", "social network"], + "visual": "rounded square with a lowercase f logo" + }, + "FactCheck": { + "keywords": ["verify facts", "checklist", "audit", "review", "confirm accuracy"], + "visual": "rounded square with rows of list lines and a checkmark" + }, + "Factory": { + "keywords": ["plant", "mill", "production", "industrial building", "smokestack"], + "visual": "factory building with a tall chimney and small window slits" + }, + "FamilyRestroom": { + "keywords": ["baby changing", "restroom sign", "toilet", "nursing room"], + "visual": "three people standing together, a smaller child figure between two adults" + }, + "FastForward": { + "keywords": ["skip ahead", "next track", "speed up", "forward playback"], + "visual": "two right-pointing triangles side by side" + }, + "FastRewind": { + "keywords": ["skip back", "previous track", "rewind playback", "go backward"], + "visual": "two left-pointing triangles side by side" + }, + "Fastfood": { + "keywords": ["burger", "junk food", "takeout", "quick service", "soda"], + "visual": "burger with a drink cup beside it" + }, + "Favorite": { + "keywords": [ + "bookmark", + "wishlist", + "cherish", + "adore", + "valentine", + "like button", + "add to favorites", + "pin" + ], + "visual": "heart shape" + }, + "FavoriteBorder": { + "keywords": [ + "bookmark", + "wishlist", + "cherish", + "adore", + "valentine", + "add to favorites", + "unliked", + "empty heart" + ], + "visual": "heart shape drawn only as its outer edge, with an empty center" + }, + "Fax": { + "keywords": [ + "telecopier", + "facsimile", + "scanner", + "document", + "transmit", + "telephone", + "printer" + ], + "visual": "phone handset beside a machine with a small screen and a grid of dots" + }, + "FeaturedPlayList": { + "keywords": ["bookmark", "tag", "label", "star", "curated", "top picks", "queue"], + "visual": "rounded rectangle with a small ribbon-like marker in the top-left corner and two horizontal lines" + }, + "FeaturedVideo": { + "keywords": ["promo", "sponsored", "movie", "film", "clip", "media", "thumbnail"], + "visual": "rounded rectangle with a small square window near the top-left corner" + }, + "Feed": { + "keywords": ["document", "page", "news", "blog", "stream", "updates", "rss", "content"], + "visual": "sheet of paper with a folded top corner and several horizontal lines of text" + }, + "Feedback": { + "keywords": [ + "review", + "survey", + "opinion", + "suggestion", + "complaint", + "report problem", + "help" + ], + "visual": "speech bubble with an exclamation mark inside" + }, + "Female": { + "keywords": ["venus", "restroom", "bathroom", "sex", "toilet sign", "ladies", "mars and venus"], + "visual": "circle with a small cross hanging below it" + }, + "Fence": { + "keywords": [ + "picket fence", + "yard", + "property line", + "wood", + "enclosure", + "privacy", + "fencing" + ], + "visual": "row of pointed pickets connected by two horizontal rails" + }, + "Festival": { + "keywords": ["carnival", "fair", "camping", "marquee", "celebration", "concert", "campsite"], + "visual": "small tent with a triangular flag on top and an arched entrance" + }, + "FiberDvr": { + "keywords": ["digital video recorder", "record", "television", "cable box", "badge"], + "visual": "rounded rectangle containing the letters DVR" + }, + "FiberManualRecord": { + "keywords": ["record button", "live", "status indicator", "bullet", "radio button", "online"], + "visual": "single small round dot with no markings" + }, + "FiberNew": { + "keywords": ["badge", "label", "tag", "recent", "just added", "fresh"], + "visual": "rounded rectangle containing the word NEW" + }, + "FiberPin": { + "keywords": [ + "badge", + "label", + "tag", + "password", + "passcode", + "security code", + "personal identification number" + ], + "visual": "rounded rectangle containing the letters PIN" + }, + "FiberSmartRecord": { + "keywords": ["smart record", "eclipse", "moon", "auto record", "motion detection", "ai record"], + "visual": "circle with a crescent arc overlapping its right edge" + }, + "FifteenMp": { + "keywords": ["15 megapixel", "photo resolution", "camera setting", "badge"], + "visual": "rounded rectangle containing the number 15 above the letters MP" + }, + "FileCopy": { + "keywords": ["replicate", "attachments", "paperwork", "layered documents", "ctrl c", "files"], + "visual": "two overlapping sheets of paper with folded corners, stacked diagonally" + }, + "FileDownload": { + "keywords": ["save file", "get", "receive", "retrieve", "import", "save to device"], + "visual": "downward arrow above a horizontal bar" + }, + "FileDownloadDone": { + "keywords": ["complete", "success", "finished", "saved", "confirmed", "verified"], + "visual": "checkmark above a horizontal bar" + }, + "FileDownloadOff": { + "keywords": [ + "blocked", + "unavailable", + "cannot download", + "no download", + "restricted", + "prevent" + ], + "visual": "downward arrow above a horizontal bar with a diagonal slash through it" + }, + "FileOpen": { + "keywords": ["import file", "load file", "access document", "browse files", "open document"], + "visual": "sheet of paper with a folded corner and a small arrow pointing into its lower edge" + }, + "FilePresent": { + "keywords": ["attachment", "attach file", "paperclip", "email attachment", "clipped document"], + "visual": "sheet of paper with a folded corner and a paperclip shape in the center" + }, + "FileUpload": { + "keywords": ["send", "submit", "publish", "share file", "add file", "backup"], + "visual": "upward arrow above a horizontal bar" + }, + "FileUploadOff": { + "keywords": [ + "blocked", + "disabled", + "cannot upload", + "no upload", + "restricted", + "prevent", + "unavailable", + "upload disabled", + "upload blocked" + ], + "visual": "upward arrow above a horizontal bar with a diagonal slash through it" + }, + "Filter": { + "keywords": [ + "photo filter", + "adjust", + "tune", + "mountain photo", + "gallery", + "camera effect", + "sort", + "refine" + ], + "visual": "two overlapping square frames, the front one containing a small mountain landscape shape" + }, + "Filter1": { + "keywords": ["preset", "badge", "level", "option", "choice", "step", "layer number", "count"], + "visual": "two overlapping squares, the front one containing the number 1" + }, + "Filter2": { + "keywords": ["preset", "badge", "level", "option", "choice", "step", "layer number", "count"], + "visual": "two overlapping squares, the front one containing the number 2" + }, + "Filter3": { + "keywords": ["preset", "badge", "level", "option", "choice", "step", "layer number", "count"], + "visual": "two overlapping squares, the front one containing the number 3" + }, + "Filter4": { + "keywords": ["preset", "badge", "level", "option", "choice", "step", "layer number", "count"], + "visual": "two overlapping squares, the front one containing the number 4" + }, + "Filter5": { + "keywords": ["preset", "badge", "level", "option", "choice", "step", "layer number", "count"], + "visual": "two overlapping squares, the front one containing the number 5" + }, + "Filter6": { + "keywords": ["preset", "badge", "level", "option", "choice", "step", "layer number", "count"], + "visual": "two overlapping squares, the front one containing the number 6" + }, + "Filter7": { + "keywords": ["preset", "badge", "level", "option", "choice", "step", "layer number", "count"], + "visual": "two overlapping squares, the front one containing the number 7" + }, + "Filter8": { + "keywords": ["preset", "badge", "level", "option", "choice", "step", "layer number", "count"], + "visual": "two overlapping squares, the front one containing the number 8" + }, + "Filter9": { + "keywords": ["preset", "badge", "level", "option", "choice", "step", "layer number", "count"], + "visual": "two overlapping squares, the front one containing the number 9" + }, + "Filter9Plus": { + "keywords": [ + "unread count", + "notification badge", + "more than nine", + "overflow count", + "badge", + "preset", + "level" + ], + "visual": "two overlapping squares, the front one containing 9+" + }, + "FilterAlt": { + "keywords": ["strain", "sort", "narrow down", "tune", "adjust", "search filter"], + "visual": "funnel shape with a wide top and narrow spout" + }, + "FilterAltOff": { + "keywords": ["clear filters", "remove filter", "no filter", "reset", "disabled funnel"], + "visual": "funnel shape with a diagonal slash through it" + }, + "FilterBAndW": { + "keywords": ["monochrome", "desaturate", "black and white photo", "greyscale", "photo effect"], + "visual": "square split diagonally into a plain half and a half with a sun-like ray shape" + }, + "FilterCenterFocus": { + "keywords": ["autofocus", "viewfinder", "target", "crosshair", "focus point", "camera frame"], + "visual": "four corner brackets surrounding a dot in the center" + }, + "FilterDrama": { + "keywords": ["weather", "cloudy", "overcast", "cloud effect", "partly cloudy"], + "visual": "two overlapping cloud shapes" + }, + "FilterFrames": { + "keywords": ["photo frame", "picture frame", "gallery", "thumbnail", "house frame", "artwork"], + "visual": "square picture frame with a small peak on top and a rectangle inside" + }, + "FilterHdr": { + "keywords": ["high dynamic range", "landscape", "peaks", "terrain", "scenery"], + "visual": "two overlapping triangular mountain peaks" + }, + "FilterList": { + "keywords": [ + "sort options", + "funnel lines", + "refine list", + "narrow results", + "filter bars", + "sort by" + ], + "visual": "three horizontal bars of decreasing width, stacked with gaps between them" + }, + "FilterListAlt": { + "keywords": [ + "funnel", + "sift", + "strain", + "narrow down", + "refine list", + "sort options", + "search filter", + "tune" + ], + "visual": "funnel shape with a wide flat top and narrow spout" + }, + "FilterListOff": { + "keywords": ["clear filters", "remove filter", "no sorting", "disabled list", "reset filters"], + "visual": "three horizontal bars of decreasing width with a diagonal slash through them" + }, + "FilterNone": { + "keywords": ["no filter", "original", "unfiltered", "duplicate", "copy", "layers", "windows"], + "visual": "two overlapping square outlines" + }, + "FilterTiltShift": { + "keywords": [ + "miniature effect", + "depth of field", + "lens blur", + "selective focus", + "tilt-shift lens" + ], + "visual": "circle made of dashed arcs with a dot in the center" + }, + "FilterVintage": { + "keywords": ["retro", "old-fashioned", "sepia", "nature", "blossom", "daisy", "floral"], + "visual": "flower with several rounded petals around a small circle center" + }, + "FindInPage": { + "keywords": ["locate", "find text", "lookup", "zoom", "inspect", "ctrl f"], + "visual": "sheet of paper with a folded corner and a magnifying glass over it" + }, + "FindReplace": { + "keywords": ["substitute", "swap", "find and replace", "edit text", "update", "sync"], + "visual": "circular arrows with a magnifying glass overlapping them" + }, + "Fingerprint": { + "keywords": ["security", "unlock", "login", "authentication", "scan", "password", "print"], + "visual": "fingerprint pattern of curved concentric ridges" + }, + "FireExtinguisher": { + "keywords": [ + "safety", + "put out fire", + "flame", + "extinguish", + "foam", + "firefighting", + "safety equipment" + ], + "visual": "fire extinguisher cylinder with a nozzle and trigger handle on top" + }, + "FireHydrantAlt": { + "keywords": [ + "water supply", + "firefighting", + "emergency", + "street", + "water main", + "fire safety" + ], + "visual": "fire hydrant with two side nozzles and a round cap on top" + }, + "FireTruck": { + "keywords": [ + "fire engine", + "emergency vehicle", + "ladder truck", + "firefighter", + "rescue vehicle", + "siren" + ], + "visual": "fire truck with a ladder on top and two wheels" + }, + "Fireplace": { + "keywords": ["hearth", "cozy", "log fire", "mantel", "campfire"], + "visual": "square frame containing a flame shape sitting on a small hearth ledge" + }, + "FirstPage": { + "keywords": ["beginning", "start", "skip to start", "go to first", "jump to top"], + "visual": "vertical bar beside a left-pointing arrow" + }, + "FitScreen": { + "keywords": ["resize", "fit to screen", "zoom to fit", "aspect ratio", "full screen"], + "visual": "four corner brackets surrounding a rectangle" + }, + "Fitbit": { + "keywords": ["brand", "company", "wearable", "tracker", "smartwatch"], + "visual": "diamond-shaped cluster of dots, larger at the top and bottom" + }, + "FitnessCenter": { + "keywords": ["barbell", "strength training", "lifting", "muscle"], + "visual": "barbell with weights on each end, shown at a diagonal angle" + }, + "FiveG": { + "keywords": ["fifth generation", "cell signal", "internet speed", "connectivity"], + "visual": "text reading 5G" + }, + "FiveK": { + "keywords": ["five thousand", "race distance", "running", "video resolution"], + "visual": "rounded rectangle containing the text 5K" + }, + "FiveKPlus": { + "keywords": ["five thousand plus", "badge", "video quality", "race distance"], + "visual": "rounded rectangle containing the text 5K+" + }, + "FiveMp": { + "keywords": ["5 megapixel", "photo resolution", "camera setting"], + "visual": "rounded rectangle containing the number 5 above the letters MP" + }, + "FivteenMp": { + "keywords": ["15 megapixel", "photo resolution", "camera setting", "badge"], + "visual": "rounded rectangle containing the number 15 above the letters MP" + }, + "Flag": { + "keywords": ["bookmark", "mark", "checkpoint", "nation", "pennant", "banner", "warning"], + "visual": "flag on a pole, waving with a notch cut into the trailing edge" + }, + "FlagCircle": { + "keywords": ["pennant", "banner", "checkpoint", "badge", "location marker"], + "visual": "flag shape inside a circle" + }, + "Flaky": { + "keywords": [ + "flaky test", + "unreliable", + "inconsistent", + "pass or fail", + "review status", + "toggle" + ], + "visual": "circle split diagonally with an X on one side and a checkmark on the other" + }, + "Flare": { + "keywords": ["glow", "sunburst", "radiance", "camera effect", "brightness"], + "visual": "sun with rays radiating outward, one ray shown as a dash above" + }, + "FlashAuto": { + "keywords": ["auto flash", "camera setting", "bolt with letter a", "automatic"], + "visual": "lightning bolt beside the letter A" + }, + "FlashOff": { + "keywords": ["no flash", "flash disabled", "mute flash", "turn off flash", "camera setting"], + "visual": "lightning bolt with a diagonal slash through it" + }, + "FlashOn": { + "keywords": ["flash enabled", "bolt", "power", "boost", "turn on flash", "strobe"], + "visual": "lightning bolt" + }, + "FlashlightOff": { + "keywords": ["torch off", "light off", "no torch", "turn off light", "lamp off"], + "visual": "flashlight shape with a diagonal slash through it" + }, + "FlashlightOn": { + "keywords": ["torch", "torch light", "hand torch", "turn on light", "lamp"], + "visual": "flashlight with a lens dot near its head and a band across the body" + }, + "Flatware": { + "keywords": ["silverware", "tableware", "place setting", "kitchen"], + "visual": "fork, spoon and knife standing side by side" + }, + "Flight": { + "keywords": ["plane", "aeroplane", "jet", "vacation", "holiday", "airline"], + "visual": "airplane seen from above, nose pointing up" + }, + "FlightClass": { + "keywords": ["airplane seat", "cabin", "economy", "reservation", "boarding"], + "visual": "airplane seat seen from the side with a headrest and armrest" + }, + "FlightLand": { + "keywords": ["touchdown", "runway", "incoming flight", "plane landing"], + "visual": "airplane tilted downward above a horizontal line" + }, + "FlightTakeoff": { + "keywords": ["runway", "plane taking off", "ascend"], + "visual": "airplane tilted upward above a horizontal line" + }, + "Flip": { + "keywords": ["mirror", "reflect", "flip horizontal", "invert", "swap sides"], + "visual": "vertical line between a plain rectangle bracket on one side and a dashed rectangle on the other" + }, + "FlipCameraAndroid": { + "keywords": ["switch camera", "front and back camera", "selfie camera", "rotate camera"], + "visual": "circular arrows around a dot in the center" + }, + "FlipCameraIos": { + "keywords": ["switch camera", "front and back camera", "selfie camera", "iphone"], + "visual": "camera body with circular arrows on the front" + }, + "FlipToBack": { + "keywords": ["send backward", "z-index", "stacking order", "behind", "layer order"], + "visual": "square with a dashed edge layered behind a square with plain corners" + }, + "FlipToFront": { + "keywords": ["bring forward", "z-index", "stacking order", "layer order", "on top"], + "visual": "square layered in front of a dashed square" + }, + "Flood": { + "keywords": ["water damage", "deluge", "overflow", "insurance", "disaster relief"], + "visual": "house tilted above wavy lines representing water" + }, + "Fluorescent": { + "keywords": ["tube light", "sparkle", "glow", "ceiling light", "led"], + "visual": "rectangle bar surrounded by small radiating dashes and diamonds" + }, + "FlutterDash": { + "keywords": ["dart", "google", "sdk", "cross-platform", "brand"], + "visual": "cartoon bird face with large round eyes and headphone-like ear shapes" + }, + "FmdBad": { + "keywords": ["broken location", "error pin", "invalid address", "missing location"], + "visual": "map location pin with an exclamation mark inside" + }, + "FmdGood": { + "keywords": ["gps", "address", "drop pin", "map marker", "current location"], + "visual": "map location pin with a circle hole inside" + }, + "Foggy": { + "keywords": ["fog", "mist", "haze", "weather", "overcast", "low visibility"], + "visual": "cloud shape above two wavy horizontal lines" + }, + "Folder": { + "keywords": ["files", "organize", "category", "group", "project folder"], + "visual": "folder with a tab at the top" + }, + "FolderCopy": { + "keywords": ["replicate", "clone folder", "backup", "duplicate folder"], + "visual": "two overlapping folders with tabs, stacked" + }, + "FolderDelete": { + "keywords": ["delete folder", "erase", "discard", "remove folder"], + "visual": "folder with a trash can shape inside" + }, + "FolderOff": { + "keywords": ["no access", "unavailable", "restricted folder", "blocked"], + "visual": "folder shape with a diagonal slash through it" + }, + "FolderOpen": { + "keywords": ["browse", "open folder", "view contents", "expand"], + "visual": "folder with a large rectangular window cut out of the front" + }, + "FolderShared": { + "keywords": ["shared folder", "permissions", "network drive", "team folder"], + "visual": "folder with a person silhouette inside" + }, + "FolderSpecial": { + "keywords": ["pinned folder", "priority", "vip"], + "visual": "folder with a star inside" + }, + "FolderZip": { + "keywords": ["archive", "zip file", "compressed folder", "winzip", "extract"], + "visual": "folder with a checkered zipper strip down the front" + }, + "FollowTheSigns": { + "keywords": [ + "directions", + "wayfinding", + "guidance", + "instructions", + "walking", + "hiking trail", + "signpost" + ], + "visual": "person walking beside a signpost with an arrow pointing right" + }, + "FontDownload": { + "keywords": ["install font", "add font", "typography", "get font"], + "visual": "square containing a large letter A" + }, + "FontDownloadOff": { + "keywords": ["remove font", "font unavailable", "no font", "cannot install font"], + "visual": "square containing a large letter A with a diagonal slash through it" + }, + "FoodBank": { + "keywords": ["soup kitchen", "donation", "pantry", "nonprofit", "community"], + "visual": "house shape containing a fork and knife" + }, + "Forest": { + "keywords": ["park", "wilderness", "camping", "evergreen", "pine trees", "deforestation"], + "visual": "two overlapping triangular tree shapes with trunks, one split by a jagged line" + }, + "ForkLeft": { + "keywords": ["road split", "turn left", "y junction", "gps direction", "intersection"], + "visual": "vertical arrow splitting into an upward arrow and a left-pointing arrow" + }, + "ForkRight": { + "keywords": ["road split", "turn right", "y junction", "gps direction", "intersection"], + "visual": "vertical arrow splitting into an upward arrow and a right-pointing arrow" + }, + "Forklift": { + "keywords": ["warehouse", "lift truck", "cargo", "industrial", "pallet", "logistics"], + "visual": "forklift truck with raised forks beside the letter L" + }, + "FormatAlignCenter": { + "keywords": ["center text", "word processor", "paragraph", "center justify"], + "visual": "several horizontal bars of varying length, centered above one another" + }, + "FormatAlignJustify": { + "keywords": ["justify text", "word processor", "paragraph", "full justify"], + "visual": "several horizontal bars all the same length, stacked" + }, + "FormatAlignLeft": { + "keywords": ["left align text", "word processor", "paragraph"], + "visual": "several horizontal bars of varying length, aligned to the left" + }, + "FormatAlignRight": { + "keywords": ["right align text", "word processor", "paragraph"], + "visual": "several horizontal bars of varying length, aligned to the right" + }, + "FormatBold": { + "keywords": ["bold text", "strong", "emphasis", "thick font", "word processor"], + "visual": "large bold letter B" + }, + "FormatClear": { + "keywords": [ + "clear formatting", + "remove styles", + "plain text", + "reset format", + "strip formatting" + ], + "visual": "letter T with a diagonal slash through it" + }, + "FormatColorFill": { + "keywords": ["fill color", "paint bucket", "background color", "highlight color"], + "visual": "paint bucket tilted and pouring a drop above a horizontal bar" + }, + "FormatColorReset": { + "keywords": ["no fill", "remove color", "default color", "clear color", "transparent"], + "visual": "paint bucket shape with a diagonal slash through it" + }, + "FormatColorText": { + "keywords": ["font color", "text color", "change color"], + "visual": "large letter A above a horizontal bar" + }, + "FormatIndentDecrease": { + "keywords": ["outdent", "decrease indent", "reduce margin", "shift left", "tab left"], + "visual": "left-pointing arrow beside several horizontal lines of text" + }, + "FormatIndentIncrease": { + "keywords": ["increase indent", "add margin", "shift right", "tab right"], + "visual": "right-pointing arrow beside several horizontal lines of text" + }, + "FormatItalic": { + "keywords": ["italics", "slanted text", "emphasis", "oblique"], + "visual": "large slanted letter I" + }, + "FormatLineSpacing": { + "keywords": ["line height", "leading", "paragraph spacing"], + "visual": "double-headed vertical arrow beside several horizontal lines of text" + }, + "FormatListBulleted": { + "keywords": ["bullet points", "unordered list", "dot list", "checklist"], + "visual": "three dots each beside a horizontal line, stacked as a bulleted list" + }, + "FormatListBulletedAdd": { + "keywords": ["add item", "new bullet", "insert list item", "add to list", "bullet list plus"], + "visual": "bulleted list of lines with a plus badge in a circle at the bottom right" + }, + "FormatListNumbered": { + "keywords": ["ordered list", "numbered list", "sequence list", "outline"], + "visual": "numbers 1, 2 and 3 each beside a horizontal line, stacked" + }, + "FormatListNumberedRtl": { + "keywords": ["ordered list", "right to left", "numbered list", "arabic", "hebrew"], + "visual": "horizontal lines of text each followed by a number, stacked" + }, + "FormatOverline": { + "keywords": ["overline text", "line above letter", "top border text"], + "visual": "circle letter O with a horizontal bar above it" + }, + "FormatPaint": { + "keywords": ["format painter", "copy formatting", "paint roller", "style brush"], + "visual": "paint roller with a handle" + }, + "FormatQuote": { + "keywords": ["blockquote", "citation", "quotation marks", "speech marks"], + "visual": "two large quotation marks" + }, + "FormatShapes": { + "keywords": ["text box", "vector shape", "design tool", "resize handles"], + "visual": "square frame with corner handles containing a letter A" + }, + "FormatSize": { + "keywords": ["font size", "text size", "increase size"], + "visual": "two letters T of different sizes side by side" + }, + "FormatStrikethrough": { + "keywords": ["strike text", "cross out", "delete line", "cancel text"], + "visual": "letter T with a horizontal line struck through its middle" + }, + "FormatTextdirectionLToR": { + "keywords": ["left to right", "text direction", "paragraph direction", "western text"], + "visual": "paragraph mark above a right-pointing arrow" + }, + "FormatTextdirectionRToL": { + "keywords": ["right to left", "arabic text", "hebrew text", "text direction"], + "visual": "paragraph mark above a left-pointing arrow" + }, + "FormatUnderlined": { + "keywords": ["underline text", "emphasis", "style text"], + "visual": "letter U with a horizontal line beneath it" + }, + "Fort": { + "keywords": ["stronghold", "battlement", "military", "medieval", "tower", "keep"], + "visual": "castle wall with two crenellated towers and an arched gate" + }, + "Forum": { + "keywords": ["discussion board", "thread", "community chat", "message board"], + "visual": "two overlapping speech bubbles" + }, + "Forward": { + "keywords": ["next", "redirect", "share", "resend", "continue"], + "visual": "right-pointing arrow" + }, + "Forward10": { + "keywords": ["skip ahead", "fast forward 10", "jump ahead", "media control"], + "visual": "circular arrow with the number 10 in the center" + }, + "Forward30": { + "keywords": ["skip ahead", "fast forward 30", "jump ahead", "media control"], + "visual": "circular arrow with the number 30 in the center" + }, + "Forward5": { + "keywords": ["skip ahead", "fast forward 5", "jump ahead", "media control"], + "visual": "circular arrow with the number 5 in the center" + }, + "ForwardToInbox": { + "keywords": ["forward email", "redirect message", "share email"], + "visual": "envelope with a right-pointing arrow beside it" + }, + "Foundation": { + "keywords": ["framework", "groundwork", "footing", "structural base"], + "visual": "house-shaped frame with vertical support beams inside" + }, + "FourGMobiledata": { + "keywords": [ + "fourth generation", + "cell signal", + "internet speed", + "mobile network", + "connectivity" + ], + "visual": "text reading 4G" + }, + "FourGPlusMobiledata": { + "keywords": ["fourth generation plus", "enhanced 4g", "cell signal", "internet speed"], + "visual": "text reading 4G+" + }, + "FourK": { + "keywords": ["four thousand", "video resolution", "ultra hd", "display quality"], + "visual": "rounded rectangle containing the text 4K" + }, + "FourKPlus": { + "keywords": ["four thousand plus", "ultra hd", "resolution badge", "display quality"], + "visual": "rounded rectangle containing the text 4K+" + }, + "FourMp": { + "keywords": ["4 megapixel", "photo resolution", "camera setting"], + "visual": "rounded rectangle containing the number 4 above the letters MP" + }, + "FourteenMp": { + "keywords": ["14 megapixel", "photo resolution", "camera setting"], + "visual": "rounded rectangle containing the number 14 above the letters MP" + }, + "FreeBreakfast": { + "keywords": ["complimentary", "hotel amenity", "morning meal", "continental breakfast"], + "visual": "cup with a handle sitting above a small saucer line" + }, + "FreeCancellation": { + "keywords": ["refundable", "flexible booking", "no fee", "cancel policy"], + "visual": "calendar with a hanging tab, with an X and a checkmark" + }, + "FrontHand": { + "keywords": ["high five", "wave", "halt", "block", "raise hand", "stop sign gesture"], + "visual": "raised open hand, palm facing forward" + }, + "FrontLoader": { + "keywords": [ + "bulldozer", + "construction vehicle", + "excavator", + "heavy machinery", + "bucket loader", + "tractor" + ], + "visual": "front loader vehicle with a raised bucket scoop and two wheels" + }, + "Fullscreen": { + "keywords": ["expand", "maximize", "full screen mode", "enlarge window"], + "visual": "four corner brackets pointing outward" + }, + "FullscreenExit": { + "keywords": ["minimize", "collapse", "exit full screen", "shrink window", "restore"], + "visual": "four corner brackets pointing inward" + }, + "Functions": { + "keywords": ["formula", "summation", "mathematics", "aggregate"], + "visual": "large sigma summation symbol" + }, + "GMobiledata": { + "keywords": ["2g", "gprs", "mobile data", "cell signal", "first generation"], + "visual": "letter G with a square-cornered shape" + }, + "GTranslate": { + "keywords": ["google translate", "brand", "foreign language", "localization"], + "visual": "letter G on a card overlapping a card with foreign characters and a small pencil-like mark" + }, + "Gamepad": { + "keywords": ["joystick", "d-pad", "xbox", "nintendo", "video game controller"], + "visual": "four flat-edged triangles arranged in a cross forming a d-pad shape" + }, + "Games": { + "keywords": ["joystick", "video game", "controller buttons", "play"], + "visual": "four triangular points arranged around a center, forming a star-like cross shape" + }, + "Garage": { + "keywords": ["parking", "carport", "car park", "home garage"], + "visual": "square frame containing the front view of a car" + }, + "GasMeter": { + "keywords": ["utility meter", "propane", "gas tank", "fuel gauge", "consumption"], + "visual": "canister with two prongs on top and a droplet shape in the middle" + }, + "Gavel": { + "keywords": ["auction", "judgment", "verdict", "legal", "justice"], + "visual": "gavel mallet striking down at an angle above a small base line" + }, + "GeneratingTokens": { + "keywords": ["ai generation", "chatgpt", "llm", "loading", "processing", "magic wand"], + "visual": "circle containing the letter T beside two sparkle shapes" + }, + "Gesture": { + "keywords": ["swipe", "squiggle", "touch input", "handwriting", "signature"], + "visual": "wavy S-shaped line ending in a small tick" + }, + "GetApp": { + "keywords": ["install app", "download app", "app store", "save"], + "visual": "downward arrow above a horizontal bar" + }, + "Gif": { + "keywords": ["meme", "animated image", "moving picture"], + "visual": "text reading GIF" + }, + "GifBox": { + "keywords": ["meme", "animated image", "moving picture", "badge"], + "visual": "rounded rectangle containing the text GIF" + }, + "Girl": { + "keywords": ["child", "kid", "daughter", "restroom sign", "female figure"], + "visual": "person figure in a triangular dress with a round head" + }, + "GitHub": { + "keywords": ["octocat", "version control", "repository", "developer", "open source"], + "visual": "circle containing a cat-like face with pointed ears and a curled tail" + }, + "Gite": { + "keywords": ["cottage", "cabin", "vacation rental", "lodging", "airbnb"], + "visual": "house shape with a chimney and a triangular roof peak" + }, + "GolfCourse": { + "keywords": ["putting green", "tee", "country club", "sport venue"], + "visual": "flag on a pole planted in a small mound, with a ball beside it" + }, + "Google": { + "keywords": ["search engine", "gmail", "android", "company", "alphabet inc"], + "visual": "large letter G" + }, + "GppBad": { + "keywords": ["threat detected", "compromised", "unsafe", "security alert", "virus"], + "visual": "shield with an X inside" + }, + "GppGood": { + "keywords": ["protected", "safe", "verified secure", "antivirus"], + "visual": "shield with a checkmark inside" + }, + "GppMaybe": { + "keywords": ["potential threat", "security warning", "uncertain", "unverified"], + "visual": "shield with an exclamation mark inside" + }, + "GpsFixed": { + "keywords": ["locate me", "current position", "target", "satellite", "geolocation"], + "visual": "circle with a dot in the center and short lines extending from each side" + }, + "GpsNotFixed": { + "keywords": ["searching location", "acquiring signal", "locating", "weak signal"], + "visual": "circle with short lines extending from each side, empty in the center" + }, + "GpsOff": { + "keywords": ["location disabled", "no signal", "location services off", "tracking off"], + "visual": "circle with short lines extending from each side, crossed by a diagonal slash" + }, + "Grade": { + "keywords": ["excellence", "honor", "top pick", "review score", "class rank"], + "visual": "five-pointed star" + }, + "Gradient": { + "keywords": ["checkered", "blend", "transparency", "ombre", "fade"], + "visual": "rounded rectangle covered with a checkered pattern" + }, + "Grading": { + "keywords": [ + "assessment", + "evaluation", + "scoring", + "homework", + "exam", + "report card", + "checklist" + ], + "visual": "several horizontal lines of text with a checkmark beside the bottom line" + }, + "Grain": { + "keywords": ["noise", "texture", "speckle", "film grain"], + "visual": "cluster of small dots arranged loosely" + }, + "GraphicEq": { + "keywords": ["sound bars", "waveform", "volume levels", "spectrum", "frequency"], + "visual": "several vertical bars of varying height, like an audio equalizer" + }, + "Grass": { + "keywords": ["yard", "field", "meadow", "greenery", "nature"], + "visual": "tufts of grass blades sprouting from a curved ground line" + }, + "Grid3x3": { + "keywords": ["hashtag", "tic tac toe", "pound sign", "table", "spreadsheet grid"], + "visual": "grid of thick lines forming a 3 by 3 pattern, like a hash symbol" + }, + "Grid4x4": { + "keywords": ["table", "waffle grid", "checkerboard", "matrix"], + "visual": "grid of thick lines forming a 4 by 4 pattern" + }, + "GridGoldenratio": { + "keywords": ["rule of thirds", "composition guide", "photo grid", "crop guide"], + "visual": "cross of thick horizontal and vertical lines with an extra pair of lines near the center" + }, + "GridOff": { + "keywords": ["hide grid", "no grid", "disable gridlines", "remove grid"], + "visual": "grid of squares with a diagonal slash through it" + }, + "GridOn": { + "keywords": ["show grid", "gridlines", "table view", "spreadsheet cells"], + "visual": "grid of evenly spaced squares" + }, + "GridView": { + "keywords": ["thumbnail view", "module view", "card layout", "icons view"], + "visual": "four small squares arranged in a 2 by 2 pattern" + }, + "Group": { + "keywords": ["contacts", "community", "crowd", "organization"], + "visual": "two person silhouettes overlapping, one behind the other" + }, + "GroupAdd": { + "keywords": ["invite", "add member", "add contact", "new team member"], + "visual": "person silhouette beside a partial second figure and a plus sign" + }, + "GroupOff": { + "keywords": ["disband", "ungroup", "remove team", "no group", "disabled group"], + "visual": "two overlapping person silhouettes with a diagonal slash through them" + }, + "GroupRemove": { + "keywords": ["remove member", "kick", "delete contact", "unfriend"], + "visual": "person silhouette beside a partial second figure and a minus sign" + }, + "GroupWork": { + "keywords": ["film reel", "cluster", "project team", "cooperation"], + "visual": "circle containing three small circles arranged in a triangle" + }, + "Groups": { + "keywords": ["contacts", "community", "three people", "attendees"], + "visual": "three person silhouettes side by side, one taller in the middle" + }, + "Groups2": { + "keywords": ["contacts", "community", "three people", "attendees", "curly hair"], + "visual": "three person silhouettes side by side, the two outer ones with textured hair" + }, + "Groups3": { + "keywords": ["contacts", "community", "avatars", "diverse team"], + "visual": "three person silhouettes with a diamond and triangle shape beside the outer two" + }, + "HMobiledata": { + "keywords": ["hspa", "mobile network", "cell signal", "connectivity", "3.5g"], + "visual": "large letter H" + }, + "HPlusMobiledata": { + "keywords": ["hspa plus", "enhanced network", "mobile data", "cell signal"], + "visual": "letter H beside a plus sign" + }, + "Hail": { + "keywords": ["hail a cab", "flag down", "uber", "rideshare", "wave for taxi"], + "visual": "person waving one arm up, standing beside a small box" + }, + "Handshake": { + "keywords": ["deal", "greeting", "business deal", "cooperation", "trust", "welcome"], + "visual": "two hands clasping each other with fingers interlocking" + }, + "Handyman": { + "keywords": ["diy", "maintenance", "toolkit", "contractor", "home repair"], + "visual": "crossed screwdriver and hammer" + }, + "Hardware": { + "keywords": ["toolbox", "diy", "maintenance", "equipment", "mechanical"], + "visual": "hammer combined with a wrench shape" + }, + "Hd": { + "keywords": ["high definition", "video quality", "1080p", "crisp"], + "visual": "rounded rectangle containing the letters HD" + }, + "HdrAuto": { + "keywords": ["auto hdr", "camera mode", "automatic exposure"], + "visual": "circle containing the letter A" + }, + "HdrAutoSelect": { + "keywords": ["auto hdr selected", "camera mode", "chosen setting"], + "visual": "circle containing the letter A above the text HDR+" + }, + "HdrEnhancedSelect": { + "keywords": ["enhanced hdr", "boosted", "camera setting", "selected mode"], + "visual": "circle with a plus sign above the text HDR+" + }, + "HdrOff": { + "keywords": ["hdr disabled", "no hdr", "turn off hdr", "camera setting"], + "visual": "text reading HDR with a diagonal slash through it" + }, + "HdrOffSelect": { + "keywords": ["hdr off selected", "disabled camera mode"], + "visual": "circle with a diagonal slash through it above the text HDR+" + }, + "HdrOn": { + "keywords": ["high dynamic range", "enabled", "camera setting", "enhanced photo"], + "visual": "text reading HDR" + }, + "HdrOnSelect": { + "keywords": ["high dynamic range selected", "camera mode", "chosen", "enabled setting"], + "visual": "circle above the text HDR+" + }, + "HdrPlus": { + "keywords": ["enhanced hdr", "boosted photo", "camera mode", "badge"], + "visual": "circle containing the text HDR+" + }, + "HdrStrong": { + "keywords": ["strong hdr", "high intensity", "camera setting", "two circles"], + "visual": "small circle beside a larger circle" + }, + "HdrWeak": { + "keywords": ["weak hdr", "low intensity", "camera setting", "two dots"], + "visual": "small dot beside a larger circle" + }, + "Headphones": { + "keywords": ["cans", "over-ear", "audio jack"], + "visual": "headphone band with a rounded ear cup on each end" + }, + "HeadphonesBattery": { + "keywords": ["battery level", "power", "charge status"], + "visual": "headphones beside a small battery shape" + }, + "Headset": { + "keywords": ["gaming headset", "cans", "call center"], + "visual": "headphone band with rounded ear cups, no mic" + }, + "HeadsetMic": { + "keywords": ["microphone headset", "gaming headset", "customer support", "call center"], + "visual": "headphone band with rounded ear cups and a small microphone boom extending from one side" + }, + "HeadsetOff": { + "keywords": ["no headset", "disconnect headset", "remove headset"], + "visual": "headphones with a diagonal slash through them" + }, + "Healing": { + "keywords": ["first aid", "recovery", "wound care", "plaster", "patch", "treatment"], + "visual": "two crossed adhesive bandage strips with dots on one" + }, + "HealthAndSafety": { + "keywords": ["medical protection", "insurance", "wellbeing", "first aid shield"], + "visual": "shield with a cross in the center" + }, + "Hearing": { + "keywords": ["hearing aid", "ear", "audio accessibility", "deaf assist"], + "visual": "ear shape with curved sound waves radiating beside it" + }, + "HearingDisabled": { + "keywords": ["deaf", "no sound", "mute audio", "hearing aid off"], + "visual": "ear shape with sound waves and a diagonal slash through it" + }, + "HeartBroken": { + "keywords": ["breakup", "heartbreak", "sad", "grief", "split up"], + "visual": "heart shape split by a jagged crack down the middle" + }, + "HeatPump": { + "keywords": ["hvac", "climate control", "thermostat", "fan", "ventilation"], + "visual": "rounded square containing a spoked fan or snowflake-like shape" + }, + "Height": { + "keywords": ["vertical size", "row height", "tall", "measurement", "elevation"], + "visual": "vertical double-headed arrow" + }, + "Help": { + "keywords": [ + "faq", + "hint", + "tooltip", + "ask", + "unknown", + "customer service", + "live chat", + "guidance", + "need help", + "what is this" + ], + "visual": "question mark inside a circle" + }, + "HelpCenter": { + "keywords": [ + "faq", + "help desk", + "support center", + "service desk", + "hint", + "ask", + "customer service", + "tooltip" + ], + "visual": "question mark inside a rounded square" + }, + "Hevc": { + "keywords": [ + "h265", + "h.265", + "codec", + "compression", + "video format", + "high efficiency video coding" + ], + "visual": "letters HEVC in blocky text" + }, + "Hexagon": { + "keywords": ["honeycomb", "nut", "polygon", "geometric shape", "six-sided"], + "visual": "six-sided hexagon shape" + }, + "HideImage": { + "keywords": [ + "broken image", + "no photo", + "image unavailable", + "hide photo", + "no preview", + "missing image", + "photo blocked" + ], + "visual": "picture frame with a mountain landscape and a diagonal slash through it" + }, + "HideSource": { + "keywords": ["no entry", "not allowed", "forbidden", "banned", "block", "restricted", "do not"], + "visual": "circle with a diagonal slash through it, like a prohibition sign" + }, + "HighQuality": { + "keywords": [ + "high resolution", + "best quality", + "premium", + "crisp", + "sharp image", + "premium quality" + ], + "visual": "letters HQ inside a rounded square" + }, + "Highlight": { + "keywords": [ + "torch", + "lamp", + "spotlight", + "beam", + "glow", + "shine", + "funnel", + "highlighter tool" + ], + "visual": "funnel-shaped spotlight with small light rays radiating above it" + }, + "HighlightAlt": { + "keywords": [ + "crop", + "resize", + "drag corner", + "select area", + "marquee", + "snip", + "screenshot area" + ], + "visual": "dashed square with an arrow pointing into its bottom right corner" + }, + "HighlightOff": { + "keywords": ["error", "invalid", "reject", "wrong", "x mark", "cross", "deny"], + "visual": "circle with an X in the center" + }, + "Hiking": { + "keywords": [ + "trekking", + "outdoor", + "camping", + "adventure", + "nature walk", + "walking stick", + "cane", + "explorer" + ], + "visual": "person walking with a backpack and a hiking pole" + }, + "History": { + "keywords": [ + "recent activity", + "timeline", + "past", + "log", + "record", + "browser history", + "rewind" + ], + "visual": "clock face with a counterclockwise arrow circling around it" + }, + "HistoryEdu": { + "keywords": [ + "history class", + "calligraphy", + "essay", + "manuscript", + "parchment", + "signature", + "homework" + ], + "visual": "scroll of paper with a feather quill writing on it" + }, + "HistoryToggleOff": { + "keywords": [ + "pending", + "in progress", + "timer", + "countdown", + "waiting", + "elapsed time", + "stopwatch", + "loading" + ], + "visual": "clock face with a dashed circular edge instead of a plain rim" + }, + "Hive": { + "keywords": [ + "beehive", + "apiary", + "network", + "cluster", + "cells", + "bees", + "mesh", + "connected nodes" + ], + "visual": "cluster of seven hexagons arranged in a honeycomb pattern" + }, + "Hls": { + "keywords": [ + "http live streaming", + "streaming protocol", + "video streaming", + "apple streaming", + "streaming media" + ], + "visual": "letters HLS in blocky text" + }, + "HlsOff": { + "keywords": [ + "http live streaming off", + "codec off", + "streaming disabled", + "no streaming", + "streaming unavailable" + ], + "visual": "letters H and S with a diagonal slash through them" + }, + "HolidayVillage": { + "keywords": ["resort", "cabins", "bungalow", "holiday park", "cottages", "chalet"], + "visual": "house with an A-frame roof beside three slanted lines suggesting rows of cabins" + }, + "Home": { + "keywords": [ + "main page", + "dashboard", + "front door", + "doorway", + "start page", + "landing page", + "front page" + ], + "visual": "house shape with a triangular roof and a rectangular door cutout" + }, + "HomeFilled": { + "keywords": [ + "house", + "homepage", + "main screen", + "dashboard", + "front door", + "doorway", + "roof", + "front page", + "start page", + "residence", + "building", + "return home", + "landing page" + ], + "visual": "house shape with a triangular roof and a rectangular door cutout" + }, + "HomeMax": { + "keywords": [ + "smart speaker", + "google home", + "google nest", + "voice assistant", + "speaker device", + "wifi speaker", + "bluetooth speaker" + ], + "visual": "rounded rectangle speaker shape sitting on a small base" + }, + "HomeMini": { + "keywords": [ + "google home mini", + "small speaker", + "voice assistant", + "tabletop speaker", + "mini speaker", + "puck" + ], + "visual": "oval speaker shape viewed from above with a horizontal line across its middle" + }, + "HomeRepairService": { + "keywords": [ + "handyman", + "plumber", + "contractor", + "maintenance", + "fix it", + "toolkit", + "repairman", + "service call" + ], + "visual": "briefcase with a handle on top and two small rivets on the front" + }, + "HomeWork": { + "keywords": [ + "work from home", + "remote work", + "telecommute", + "office building", + "commercial building", + "real estate", + "mixed use", + "business" + ], + "visual": "house next to a taller building with a window, overlapping each other" + }, + "HorizontalRule": { + "keywords": ["divider", "separator", "dash", "minus sign", "hr tag", "spacer"], + "visual": "single short horizontal line" + }, + "HorizontalSplit": { + "keywords": [ + "split view", + "panels", + "rows", + "divide screen", + "layout view", + "stacked panels", + "table rows" + ], + "visual": "rectangle divided by lines into stacked horizontal bars" + }, + "HotTub": { + "keywords": ["spa bath", "whirlpool", "relaxation", "wellness", "resort amenity", "sauna"], + "visual": "person sitting in a tub with vertical jet lines and wavy steam rising above" + }, + "Hotel": { + "keywords": [ + "accommodation", + "lodging", + "inn", + "motel", + "guest room", + "booking", + "reservation", + "check in" + ], + "visual": "bed with a round pillow on the left and a headboard on the right" + }, + "HotelClass": { + "keywords": [ + "star rating", + "luxury", + "five star", + "quality rating", + "review score", + "sparkle star" + ], + "visual": "star with a smaller sparkle mark beside its point" + }, + "HourglassBottom": { + "keywords": ["sand timer", "egg timer", "running low", "almost done", "time running out"], + "visual": "hourglass shape with sand in the bottom half" + }, + "HourglassDisabled": { + "keywords": [ + "no timer", + "timer off", + "paused timer", + "disabled countdown", + "countdown unavailable" + ], + "visual": "hourglass shape with a diagonal slash through it" + }, + "HourglassEmpty": { + "keywords": [ + "sand timer", + "egg timer", + "time is up", + "no time left", + "start countdown", + "empty timer" + ], + "visual": "hourglass shape with no sand inside" + }, + "HourglassFull": { + "keywords": ["sand timer", "egg timer", "both halves full", "wait indicator", "timer icon"], + "visual": "hourglass silhouette pinched in the middle, both halves full" + }, + "HourglassTop": { + "keywords": ["sand timer", "egg timer", "starting timer", "half full", "timer icon"], + "visual": "hourglass shape with sand in the top half only" + }, + "House": { + "keywords": ["home", "front door", "arched doorway", "real estate listing", "property"], + "visual": "house shape with a triangular roof and an arched doorway" + }, + "HouseSiding": { + "keywords": ["siding panels", "garage", "clapboard", "exterior wall", "weatherboard"], + "visual": "house shape with horizontal siding lines across its front" + }, + "Houseboat": { + "keywords": ["floating house", "boat home", "live aboard", "marina", "canal boat"], + "visual": "house sitting above wavy horizontal lines representing water" + }, + "HowToReg": { + "keywords": [ + "sign up", + "voter registration", + "verified id", + "confirm identity", + "enroll", + "id check" + ], + "visual": "person's bust with a checkmark beside it" + }, + "HowToVote": { + "keywords": [ + "cast vote", + "voting box", + "ballot box", + "election box", + "polling place", + "submit ballot" + ], + "visual": "diamond-shaped ballot dropping into a slot in a box" + }, + "Html": { + "keywords": [ + "hypertext markup language", + "web page", + "markup", + "web development", + "coding language" + ], + "visual": "letters HTML in blocky text" + }, + "Http": { + "keywords": [ + "hypertext transfer protocol", + "web address", + "url scheme", + "unsecured connection", + "web protocol" + ], + "visual": "letters HTTP in blocky text" + }, + "Https": { + "keywords": [ + "padlock", + "keyhole", + "hypertext transfer protocol secure", + "secure site", + "trust badge" + ], + "visual": "closed padlock with a round keyhole" + }, + "Hub": { + "keywords": [ + "network hub", + "router", + "wifi hub", + "smart home hub", + "distribution point", + "spokes" + ], + "visual": "central circle connected by short lines to five smaller circles around it" + }, + "Hvac": { + "keywords": [ + "thermostat", + "climate control", + "furnace", + "air vents", + "temperature control", + "cooling system", + "heater" + ], + "visual": "rounded square containing a circle with horizontal stripes" + }, + "IceSkating": { + "keywords": ["figure skating", "hockey skate", "ice rink", "winter sport", "skate blade"], + "visual": "ice skate boot with a blade underneath" + }, + "Icecream": { + "keywords": ["gelato", "sundae", "cone", "sweet treat", "soft serve", "scoop", "summer treat"], + "visual": "ice cream cone with a round scoop on top" + }, + "Image": { + "keywords": ["photo", "picture frame", "gallery", "jpg", "placeholder image", "thumbnail"], + "visual": "rounded square containing two triangular mountain peaks" + }, + "ImageAspectRatio": { + "keywords": [ + "crop ratio", + "resize image", + "dimensions", + "frame size", + "photo dimensions", + "scale ratio" + ], + "visual": "rectangle with corner brackets and a small cluster of dots inside" + }, + "ImageNotSupported": { + "keywords": [ + "broken image", + "missing image", + "image unavailable", + "no preview", + "unsupported format" + ], + "visual": "picture frame with mountain peaks and a diagonal slash through it" + }, + "ImageSearch": { + "keywords": [ + "reverse image search", + "find photo", + "search picture", + "visual search", + "google lens" + ], + "visual": "picture frame with mountain peaks and a magnifying glass over its corner" + }, + "ImagesearchRoller": { + "keywords": ["paint roller", "painting tool", "redecorate", "wall paint", "roller brush"], + "visual": "paint roller with a handle and a wide roller head" + }, + "ImportContacts": { + "keywords": ["contact book", "phonebook", "read book", "library", "reading", "textbook"], + "visual": "open book with pages spread on both sides" + }, + "ImportExport": { + "keywords": ["sort", "reorder", "transfer data", "sync", "swap", "up and down arrows"], + "visual": "an upward arrow and a downward arrow stacked and offset from each other" + }, + "ImportantDevices": { + "keywords": [ + "cross device", + "responsive design", + "featured device", + "multi device", + "devices sync" + ], + "visual": "monitor with a star on its screen next to a small smartphone" + }, + "Inbox": { + "keywords": ["mailbox", "incoming mail", "tray", "mail tray", "new messages"], + "visual": "rounded tray shape with a curved notch cut into its bottom edge" + }, + "IncompleteCircle": { + "keywords": [ + "pie chart", + "loading progress", + "pac-man", + "partial circle", + "progress indicator" + ], + "visual": "circle with a wedge-shaped slice missing, like Pac-Man" + }, + "IndeterminateCheckBox": { + "keywords": ["partial selection", "mixed state", "some selected", "dash checkbox", "subtract"], + "visual": "rounded square with a horizontal line through its center" + }, + "Info": { + "keywords": ["info button", "learn more", "details icon", "i icon", "more information"], + "visual": "circle containing the letter i" + }, + "Input": { + "keywords": ["import", "enter", "sign in", "log in arrow", "insert data", "text field entry"], + "visual": "rectangular bracket with an arrow pointing into it from the left" + }, + "InsertChart": { + "keywords": ["bar chart", "graph", "analytics chart", "add chart", "dashboard chart"], + "visual": "rounded square containing three vertical bars of different heights" + }, + "InsertComment": { + "keywords": ["add comment", "leave feedback", "note", "annotate", "speech bubble text"], + "visual": "speech bubble with horizontal lines of text inside it" + }, + "InsertDriveFile": { + "keywords": ["file icon", "document icon", "attach file", "page icon", "generic file"], + "visual": "document page with its top corner folded down" + }, + "InsertEmoticon": { + "keywords": ["smiley face", "emoji picker", "insert emoji", "happy face", "add reaction"], + "visual": "circular face with two dot eyes and a curved smiling mouth" + }, + "InsertInvitation": { + "keywords": ["save the date", "add event", "schedule event", "appointment", "rsvp"], + "visual": "calendar shape with two tabs on top and a small square marked on its grid" + }, + "InsertLink": { + "keywords": ["hyperlink", "url link", "chain link", "connect link", "add url"], + "visual": "two oval chain links interlocked with each other" + }, + "InsertPageBreak": { + "keywords": ["page divider", "section break", "print break", "split page", "new page"], + "visual": "document page with a folded corner and a dashed line across its middle" + }, + "InsertPhoto": { + "keywords": [ + "add photo", + "upload picture", + "image placeholder", + "photo library", + "insert image" + ], + "visual": "rounded square containing two triangular mountain peaks" + }, + "Insights": { + "keywords": [ + "trends", + "growth chart", + "ai insights", + "smart analytics", + "performance trend", + "forecast" + ], + "visual": "zigzag line graph with dots at each point and small sparkle stars above" + }, + "Instagram": { + "keywords": ["ig", "camera app", "social media", "photo sharing app", "meta"], + "visual": "rounded square with a circle in the center and a small dot near the top corner" + }, + "InstallDesktop": { + "keywords": [ + "download app", + "pwa install", + "add to desktop", + "download to computer", + "save to computer" + ], + "visual": "monitor screen with a downward arrow pointing into it" + }, + "InstallMobile": { + "keywords": [ + "download app", + "add to home screen", + "install app", + "download to phone", + "get the app" + ], + "visual": "smartphone shape with a downward arrow pointing into it" + }, + "IntegrationInstructions": { + "keywords": ["api docs", "code snippet", "dev guide", "setup guide", "sdk instructions"], + "visual": "clipboard with a ring at the top and a code chevron symbol on its face" + }, + "Interests": { + "keywords": ["categories", "hobbies", "preferences", "topics", "tags"], + "visual": "triangle, heart, circle and square arranged in a two by two grid" + }, + "InterpreterMode": { + "keywords": [ + "translation", + "live translate", + "language interpreter", + "speech translation", + "voice translate" + ], + "visual": "two overlapping person busts with a microphone in front of them" + }, + "Inventory": { + "keywords": ["warehouse", "storage box", "package box", "crate", "goods"], + "visual": "box with a lid line near the top and a short horizontal handle in the middle" + }, + "Inventory2": { + "keywords": ["warehouse", "storage box", "package box", "crate", "goods"], + "visual": "squat box with a lid line near the top and a short horizontal handle in the middle" + }, + "InvertColors": { + "keywords": [ + "color swap", + "negative colors", + "dark mode toggle", + "color inversion", + "half filled drop" + ], + "visual": "water droplet split down the middle, shaded on one side and open on the other" + }, + "InvertColorsOff": { + "keywords": [ + "color swap off", + "negative colors off", + "no inversion", + "disable dark mode", + "invert disabled" + ], + "visual": "water droplet with a diagonal slash through it" + }, + "IosShare": { + "keywords": ["share sheet", "apple share", "upload icon", "export data", "send file"], + "visual": "square bracket shape with an upward arrow rising out of its open top" + }, + "Iron": { + "keywords": [ + "flatiron", + "pressing", + "laundry", + "steam iron", + "clothing care", + "wrinkle removal" + ], + "visual": "clothes iron with a cord curling up from its back" + }, + "Iso": { + "keywords": [ + "camera setting", + "exposure", + "iso setting", + "light sensitivity", + "international standards organization" + ], + "visual": "rectangle split diagonally with a plus sign in one corner and a minus sign in the other" + }, + "Javascript": { + "keywords": ["js", "scripting language", "ecmascript", "node", "web programming"], + "visual": "letters JS in blocky text" + }, + "JoinFull": { + "keywords": ["full outer join", "sql join", "union", "venn diagram", "database join"], + "visual": "two overlapping circles both fully shaded, forming a union shape" + }, + "JoinInner": { + "keywords": ["inner join", "intersection", "venn diagram", "matching records", "database join"], + "visual": "two overlapping circles with only the overlapping middle area shaded" + }, + "JoinLeft": { + "keywords": ["left join", "left outer join", "venn diagram", "database join", "sql left join"], + "visual": "left circle fully shaded and overlapping an open right circle" + }, + "JoinRight": { + "keywords": [ + "right join", + "right outer join", + "venn diagram", + "database join", + "sql right join" + ], + "visual": "right circle fully shaded and overlapping an open left circle" + }, + "Kayaking": { + "keywords": ["canoeing", "water sport", "paddle boat", "river sport", "whitewater"], + "visual": "person sitting in a kayak paddling over wavy water lines" + }, + "KebabDining": { + "keywords": ["shish kebab", "skewers", "grilled meat", "barbecue", "souvlaki", "satay"], + "visual": "two skewers each threaded with three stacked pieces of food" + }, + "Key": { + "keywords": ["password key", "security key", "key icon", "license key"], + "visual": "key with a round bow and notched teeth along its blade" + }, + "KeyOff": { + "keywords": ["no access", "revoked key", "disabled key", "locked out", "access denied"], + "visual": "key shape with a diagonal slash through it" + }, + "Keyboard": { + "keywords": ["typing", "computer input", "qwerty", "on screen keyboard"], + "visual": "rectangular keyboard with rows of small square keys and a wide spacebar" + }, + "KeyboardAlt": { + "keywords": ["typing", "computer input", "qwerty", "virtual keyboard"], + "visual": "rounded rectangular keyboard with rows of small square keys and a wide bar" + }, + "KeyboardArrowDown": { + "keywords": ["expand", "dropdown", "scroll down", "down chevron", "collapse"], + "visual": "chevron pointing downward" + }, + "KeyboardArrowLeft": { + "keywords": ["back", "previous", "scroll left", "left chevron", "navigate left"], + "visual": "chevron pointing left" + }, + "KeyboardArrowRight": { + "keywords": ["forward", "next", "scroll right", "right chevron", "navigate right", "continue"], + "visual": "chevron pointing right" + }, + "KeyboardArrowUp": { + "keywords": ["scroll up", "up chevron", "back to top", "expand up", "collapse up"], + "visual": "chevron pointing upward" + }, + "KeyboardBackspace": { + "keywords": ["delete", "erase", "undo", "back arrow", "previous", "go back"], + "visual": "thick arrow pointing left" + }, + "KeyboardCapslock": { + "keywords": ["uppercase", "caps toggle", "shift lock", "all caps", "lock letters"], + "visual": "chevron pointing up above a short horizontal line" + }, + "KeyboardCommandKey": { + "keywords": ["cmd key", "mac key", "apple key", "macos modifier", "meta key"], + "visual": "command key symbol made of four looped corners" + }, + "KeyboardControlKey": { + "keywords": ["ctrl key", "modifier key", "windows control", "ctrl", "keyboard modifier"], + "visual": "thin chevron pointing up" + }, + "KeyboardDoubleArrowDown": { + "keywords": [ + "fast forward down", + "skip down", + "expand all", + "jump down", + "chevron down double" + ], + "visual": "two chevrons stacked pointing downward" + }, + "KeyboardDoubleArrowLeft": { + "keywords": ["rewind", "skip back", "fast backward", "previous track", "jump left"], + "visual": "two chevrons stacked pointing left" + }, + "KeyboardDoubleArrowRight": { + "keywords": ["fast forward", "skip ahead", "next track", "jump right", "chevron right double"], + "visual": "two chevrons stacked pointing right" + }, + "KeyboardDoubleArrowUp": { + "keywords": ["skip up", "jump up", "scroll to top fast", "expand all up", "chevron up double"], + "visual": "two chevrons stacked pointing upward" + }, + "KeyboardHide": { + "keywords": [ + "dismiss keyboard", + "close keyboard", + "minimize keyboard", + "hide virtual keyboard", + "collapse keyboard" + ], + "visual": "keyboard shape with a downward pointing triangle beneath it" + }, + "KeyboardOptionKey": { + "keywords": ["alt key", "mac option key", "modifier symbol", "option symbol", "mac modifier"], + "visual": "zigzag line with a diagonal segment and a right-angle bend, like the option key symbol" + }, + "KeyboardReturn": { + "keywords": ["enter key", "newline", "carriage return", "submit", "line break"], + "visual": "arrow bending left and down, like a return key symbol" + }, + "KeyboardTab": { + "keywords": ["tab key", "next field", "indent", "cycle focus", "next input"], + "visual": "arrow pointing right into a vertical bar" + }, + "KeyboardVoice": { + "keywords": ["voice input", "speech to text", "voice search", "talk to type", "dictate"], + "visual": "microphone on a stand" + }, + "KingBed": { + "keywords": [ + "bedroom furniture", + "hotel room", + "double bed", + "master bedroom", + "sleeping arrangement" + ], + "visual": "bed shape with two square pillows side by side" + }, + "Kitchen": { + "keywords": ["cooking", "cooling appliance", "kitchen appliance"], + "visual": "refrigerator shape with a small handle line and a square panel" + }, + "Kitesurfing": { + "keywords": ["kiteboarding", "water sport", "extreme sport", "wind sport", "beach sport"], + "visual": "person leaning back holding a kite line while riding a board over waves" + }, + "Label": { + "keywords": [ + "gmail label", + "category tag", + "price tag", + "keyword tag", + "categorize", + "bookmark" + ], + "visual": "rounded rectangle tag shape with a pointed right end" + }, + "LabelImportant": { + "keywords": ["priority tag", "urgent", "important tag", "pennant", "bookmark tag"], + "visual": "tag shape pointed on both the left and right ends" + }, + "LabelOff": { + "keywords": ["untag", "remove label", "no tag", "unlabeled", "remove tag"], + "visual": "tag shape with a diagonal slash through it" + }, + "Lan": { + "keywords": [ + "local area network", + "ethernet", + "network diagram", + "wired network", + "server hierarchy", + "org chart" + ], + "visual": "one square connected downward to two smaller squares, like a network diagram" + }, + "Landscape": { + "keywords": ["rotate screen", "horizontal orientation", "scenery", "wide view", "panorama"], + "visual": "two overlapping triangular mountain peaks" + }, + "Landslide": { + "keywords": [ + "rockslide", + "mudslide", + "avalanche", + "erosion", + "natural hazard", + "geological hazard" + ], + "visual": "hexagon rocks tumbling down a sloped hillside with layered ground lines" + }, + "Language": { + "keywords": [ + "translate", + "multilingual", + "locale", + "international", + "language settings", + "country selector" + ], + "visual": "globe with grid lines of longitude and latitude" + }, + "Laptop": { + "keywords": [ + "notebook computer", + "portable computer", + "computer screen", + "work laptop", + "computer device" + ], + "visual": "open laptop with a screen above a wide flat base" + }, + "LaptopChromebook": { + "keywords": [ + "chrome os", + "google laptop", + "notebook computer", + "school laptop", + "chromebook computer" + ], + "visual": "open laptop with a screen above a thin flat base" + }, + "LaptopMac": { + "keywords": ["macbook", "apple laptop", "notebook computer", "apple computer", "mac laptop"], + "visual": "open laptop with a screen above a rounded base and a small notch at its front center" + }, + "LaptopWindows": { + "keywords": [ + "windows pc", + "notebook computer", + "pc laptop", + "windows laptop", + "microsoft laptop" + ], + "visual": "open laptop with a screen above a base tapering outward at the bottom" + }, + "LastPage": { + "keywords": ["skip to end", "jump to last", "end of list", "final page", "navigate to end"], + "visual": "chevron pointing right into a vertical bar" + }, + "Launch": { + "keywords": ["open in new tab", "external link", "new window", "open link", "pop out"], + "visual": "square bracket shape with a diagonal arrow breaking out of its top right corner" + }, + "Layers": { + "keywords": ["maps layers", "overlay panels", "layer panel", "map overlays"], + "visual": "two diamond shapes stacked and overlapping vertically" + }, + "LayersClear": { + "keywords": ["remove layers", "no overlay", "clear stack", "hide layers", "flatten layers"], + "visual": "stack of overlapping diamond shapes with a diagonal slash through it" + }, + "Leaderboard": { + "keywords": ["ranking chart", "scoreboard", "top performers", "standings", "bar graph"], + "visual": "three vertical bars of varying heights, like a bar chart" + }, + "LeakAdd": { + "keywords": ["wifi symbol", "signal strength", "broadcast", "radio waves", "hotspot"], + "visual": "signal arcs radiating outward from a corner point, like a wifi symbol" + }, + "LeakRemove": { + "keywords": ["no signal", "wifi off", "no connection", "disconnect", "lost signal"], + "visual": "signal arcs radiating from a corner point with a diagonal slash through them" + }, + "LegendToggle": { + "keywords": ["chart legend", "key", "show legend", "graph key", "data legend"], + "visual": "zigzag line graph sitting above two horizontal legend bars" + }, + "Lens": { + "keywords": ["dot", "circle shape", "aperture", "camera lens", "orb", "sphere"], + "visual": "plain circle with no markings" + }, + "LensBlur": { + "keywords": ["bokeh", "depth of field", "gaussian blur", "dotted gradient", "defocus"], + "visual": "grid of dots that are larger and denser toward the center" + }, + "LibraryAdd": { + "keywords": [ + "add to collection", + "add to playlist", + "new folder", + "save to library", + "bookmark collection" + ], + "visual": "stack of two square pages with a plus sign on the front one" + }, + "LibraryAddCheck": { + "keywords": ["added to library", "saved", "in collection", "confirm add", "checked off"], + "visual": "stack of two square pages with a checkmark on the front one" + }, + "LibraryBooks": { + "keywords": ["bookshelf", "reading list", "catalog", "document collection", "articles"], + "visual": "stack of two square pages with horizontal text lines on the front one" + }, + "LibraryMusic": { + "keywords": [ + "playlist", + "album collection", + "song library", + "music collection", + "audio collection" + ], + "visual": "stack of two square pages with a musical note on the front one" + }, + "Light": { + "keywords": ["pendant light", "chandelier", "ceiling lamp", "light fixture", "hanging light"], + "visual": "dome-shaped hanging lamp shade with a small knob underneath" + }, + "LightMode": { + "keywords": ["daylight", "brightness up", "sun icon", "day theme"], + "visual": "sun shape with short rays radiating around a central circle" + }, + "Lightbulb": { + "keywords": ["innovation", "bright idea", "insight", "eureka"], + "visual": "lightbulb with a rounded top and a base at the bottom" + }, + "LightbulbCircle": { + "keywords": ["innovation", "hint", "suggestion"], + "visual": "circle containing a lightbulb silhouette" + }, + "LineAxis": { + "keywords": ["waveform", "graph line", "trend line", "data line", "signal line"], + "visual": "jagged zigzag line crossing over a straight diagonal line" + }, + "LineStyle": { + "keywords": ["border style", "stroke style", "line pattern", "ruler lines", "dash dot pattern"], + "visual": "stacked rows with a continuous bar, dashed lines and a dotted line" + }, + "LineWeight": { + "keywords": ["stroke width", "line thickness", "pen weight", "border thickness", "bold line"], + "visual": "four horizontal bars stacked, each a different thickness" + }, + "LinearScale": { + "keywords": [ + "number line", + "dots on line", + "range slider", + "progress dots", + "measurement scale" + ], + "visual": "horizontal line with three dots plotted along it" + }, + "Link": { + "keywords": ["connect", "attach link"], + "visual": "two oval chain links interlocked with each other" + }, + "LinkOff": { + "keywords": ["broken link", "disconnect", "remove hyperlink", "detach link"], + "visual": "two interlocked chain links with a diagonal slash through them" + }, + "LinkedCamera": { + "keywords": [ + "connected camera", + "camera sync", + "wireless camera", + "wifi camera", + "smart camera" + ], + "visual": "camera body with signal arcs radiating from its top right corner" + }, + "LinkedIn": { + "keywords": ["professional network", "career", "jobs", "resume", "networking site"], + "visual": "rounded square with the letters in and a dot, the LinkedIn logo" + }, + "Liquor": { + "keywords": ["spirits", "alcohol store", "booze", "liquor store", "hard liquor"], + "visual": "wine glass standing beside a bottle" + }, + "List": { + "keywords": ["bullet list", "checklist", "menu list", "itemized list", "agenda"], + "visual": "three horizontal lines each preceded by a bullet dot" + }, + "ListAlt": { + "keywords": ["itemized list box", "framed list", "summary list", "detailed list", "boxed list"], + "visual": "square frame containing rows of short bullet lines" + }, + "LiveHelp": { + "keywords": [ + "live chat support", + "help chat", + "ask a question", + "customer support chat", + "support bubble" + ], + "visual": "speech bubble with a question mark inside" + }, + "LiveTv": { + "keywords": ["streaming tv", "watch live", "broadcast", "channel", "live stream"], + "visual": "television screen with two antennas and a play triangle inside" + }, + "Living": { + "keywords": ["living room", "lounge", "sitting room", "family room"], + "visual": "rounded square containing a couch silhouette" + }, + "LocalActivity": { + "keywords": ["things to do", "event ticket", "attraction", "entertainment ticket", "admission"], + "visual": "ticket shape with notched sides and a star in the center" + }, + "LocalAirport": { + "keywords": ["plane", "terminal", "air travel"], + "visual": "airplane silhouette" + }, + "LocalAtm": { + "keywords": ["cash machine", "bank machine", "withdraw cash", "money machine", "bank kiosk"], + "visual": "rectangle card or machine shape with a dollar sign" + }, + "LocalBar": { + "keywords": ["cocktail bar", "nightclub", "mixed drink", "happy hour", "pub"], + "visual": "martini glass shape" + }, + "LocalCafe": { + "keywords": ["coffee shop", "hot drink", "espresso", "latte"], + "visual": "coffee cup with a handle sitting above a small saucer line" + }, + "LocalCarWash": { + "keywords": ["car wash station", "auto detailing", "wash bay", "auto wash", "vehicle cleaning"], + "visual": "front view of a car with three water drops falling above it" + }, + "LocalConvenienceStore": { + "keywords": ["corner shop", "24 hour store", "mini mart", "bodega", "corner store"], + "visual": "building front with the number 24 on it" + }, + "LocalDining": { + "keywords": ["eat out", "restaurant listing", "dinner", "fine dining", "utensils"], + "visual": "crossed knife and spoon" + }, + "LocalDrink": { + "keywords": ["beverage", "water glass", "refreshment", "tap water", "glass of water"], + "visual": "glass cup with a water drop shape inside it" + }, + "LocalFireDepartment": { + "keywords": [ + "fire station", + "fire brigade", + "emergency services", + "firefighting", + "fire truck" + ], + "visual": "flame shape with a water drop inside it" + }, + "LocalFlorist": { + "keywords": ["flower shop", "florist store", "bouquet", "blossom", "petal"], + "visual": "flower with round petals and two leaves below" + }, + "LocalGasStation": { + "keywords": ["petrol station", "fuel pump", "filling station", "gas pump", "refuel"], + "visual": "gas pump with a nozzle and hose" + }, + "LocalGroceryStore": { + "keywords": ["supermarket", "shopping cart", "trolley", "grocery shopping", "food shopping"], + "visual": "shopping cart" + }, + "LocalHospital": { + "keywords": ["medical center", "er", "emergency room", "clinic", "healthcare", "first aid"], + "visual": "rounded square with a cross in the center" + }, + "LocalHotel": { + "keywords": ["sleeping accommodation", "inn", "lodging", "guest bed", "overnight stay"], + "visual": "bed with a round pillow and a person's head resting on it" + }, + "LocalLaundryService": { + "keywords": [ + "laundromat", + "dry cleaning", + "washing machine", + "laundry room", + "washer and dryer" + ], + "visual": "washing machine front with two buttons and a circular window with a diagonal swirl" + }, + "LocalLibrary": { + "keywords": ["public library", "reading room", "bookmobile", "study", "borrow books"], + "visual": "open book with a person's bust rising above its pages" + }, + "LocalMall": { + "keywords": ["shopping mall", "retail", "department store", "shopping bag", "shopping center"], + "visual": "shopping bag with handles forming a ring at the top" + }, + "LocalMovies": { + "keywords": ["cinema", "film reel", "movie theater", "theater", "filmstrip", "showtimes"], + "visual": "film reel strip with perforated edges" + }, + "LocalOffer": { + "keywords": ["coupon", "sale", "promotion", "special offer", "discount tag"], + "visual": "price tag shape with a small circular hole near its top" + }, + "LocalParking": { + "keywords": ["parking garage", "parking lot", "parking sign", "car park", "parking area"], + "visual": "letter P" + }, + "LocalPharmacy": { + "keywords": ["drug store", "chemist", "prescription", "apothecary", "medication"], + "visual": "mortar and pestle with a cross marked on the mortar" + }, + "LocalPhone": { + "keywords": ["landline", "telephone number", "handset", "dial"], + "visual": "telephone handset shape" + }, + "LocalPizza": { + "keywords": ["pizza slice", "pepperoni", "italian food", "takeout", "pizzeria"], + "visual": "triangular pizza slice with two round pepperoni dots" + }, + "LocalPlay": { + "keywords": [ + "ticket", + "movie ticket", + "cinema ticket", + "show ticket", + "admission", + "entertainment", + "event pass" + ], + "visual": "ticket shape with notched sides and a star in the center" + }, + "LocalPolice": { + "keywords": ["police station", "law enforcement", "cop", "sheriff", "security badge"], + "visual": "shield shape with a star in the center" + }, + "LocalPostOffice": { + "keywords": ["mail", "envelope", "mailing", "send letter"], + "visual": "envelope shape" + }, + "LocalPrintshop": { + "keywords": ["print shop", "copy shop", "printing service", "photocopy", "document printing"], + "visual": "printer with a paper tray and output slot" + }, + "LocalSee": { + "keywords": [ + "sightseeing", + "tourist attraction", + "landmark", + "photo spot", + "point of interest" + ], + "visual": "camera body with a round lens in the center" + }, + "LocalShipping": { + "keywords": ["delivery truck", "freight", "courier", "logistics", "cargo truck"], + "visual": "delivery truck with a cab and cargo box" + }, + "LocalTaxi": { + "keywords": ["ride hailing", "taxi cab", "hail a cab", "cab service", "taxi stand"], + "visual": "front view of a taxi car with a roof light" + }, + "LocationCity": { + "keywords": ["skyline", "downtown", "urban area", "metropolis", "cityscape"], + "visual": "building with a stepped skyline and a grid of small windows" + }, + "LocationDisabled": { + "keywords": [ + "gps off", + "location off", + "no tracking", + "disable location", + "stop sharing location" + ], + "visual": "crosshair target circle with a diagonal slash through it" + }, + "LocationOff": { + "keywords": [ + "gps disabled", + "no location", + "location unavailable", + "stop location sharing", + "turn off gps" + ], + "visual": "map pin teardrop shape with a diagonal slash through it" + }, + "LocationOn": { + "keywords": ["current location", "map pin", "drop pin", "address marker", "gps pin"], + "visual": "map pin teardrop shape with a round hole near its top" + }, + "LocationPin": { + "keywords": [ + "map marker", + "pin drop", + "address pin", + "waypoint", + "place marker", + "destination marker" + ], + "visual": "slender map pin teardrop shape with a round hole near its top" + }, + "LocationSearching": { + "keywords": [ + "finding location", + "gps searching", + "locating", + "acquiring signal", + "target lock" + ], + "visual": "circle target shape with short crosshair ticks around it" + }, + "Lock": { + "keywords": ["closed", "encrypted", "restricted access", "secured"], + "visual": "closed padlock with a round keyhole" + }, + "LockClock": { + "keywords": ["temporary lock", "timed lock", "auto lock", "lock expiry", "scheduled lock"], + "visual": "closed padlock beside a small clock face" + }, + "LockOpen": { + "keywords": ["accessible", "open padlock", "granted access", "unsecured"], + "visual": "padlock with its shackle open, unlocked" + }, + "LockPerson": { + "keywords": [ + "account security", + "user access", + "personal lock", + "profile security", + "account protection", + "identity protection" + ], + "visual": "padlock with its shackle open and a person bust badge attached" + }, + "LockReset": { + "keywords": [ + "forgot password", + "reset password", + "change password", + "password recovery", + "password renewal" + ], + "visual": "padlock with a counterclockwise circular arrow around it" + }, + "Login": { + "keywords": ["sign in", "log in", "authenticate", "access account"], + "visual": "arrow pointing right into an open door bracket" + }, + "LogoDev": { + "keywords": [ + "dev.to logo", + "developer community", + "brand logo", + "coding platform logo", + "software community" + ], + "visual": "rounded square with the letters DEV" + }, + "Logout": { + "keywords": ["sign out", "log off", "exit account", "end session", "log out of account"], + "visual": "arrow pointing right out of an open door bracket" + }, + "Looks": { + "keywords": ["photo filter", "color filter", "camera effect", "arc filter"], + "visual": "two stacked curved arcs, like a rainbow" + }, + "Looks3": { + "keywords": ["number three", "step 3", "third step", "third", "3rd"], + "visual": "number 3 inside a rounded square" + }, + "Looks4": { + "keywords": ["number four", "step 4", "fourth step", "fourth", "4th"], + "visual": "number 4 inside a rounded square" + }, + "Looks5": { + "keywords": ["number five", "step 5", "fifth step", "fifth", "5th"], + "visual": "number 5 inside a rounded square" + }, + "Looks6": { + "keywords": ["number six", "step 6", "sixth step", "sixth", "6th"], + "visual": "number 6 inside a rounded square" + }, + "LooksOne": { + "keywords": ["step 1", "first step", "number one", "1st", "first"], + "visual": "number 1 inside a rounded square" + }, + "LooksTwo": { + "keywords": ["number two", "step 2", "second step", "2nd", "second"], + "visual": "number 2 inside a rounded square" + }, + "Loop": { + "keywords": ["repeat playback", "replay", "cycle", "infinite loop", "sync", "refresh cycle"], + "visual": "two curved arrows forming a circular loop" + }, + "Loupe": { + "keywords": ["zoom in", "magnifier plus", "jeweler's loupe", "close up view", "inspect detail"], + "visual": "circle with a plus sign inside and a flat cut corner, like a magnifier loupe" + }, + "LowPriority": { + "keywords": ["deprioritize", "defer", "move to bottom", "backlog", "snooze task"], + "visual": "curved arrow pointing down beside three stacked horizontal lines" + }, + "Loyalty": { + "keywords": [ + "rewards program", + "membership card", + "loyalty points", + "favorite tag", + "frequent flyer" + ], + "visual": "price tag shape with a heart cut out of it" + }, + "LteMobiledata": { + "keywords": [ + "long term evolution", + "mobile network", + "cellular data", + "4g", + "cellular network" + ], + "visual": "letters LTE in blocky text" + }, + "LtePlusMobiledata": { + "keywords": [ + "long term evolution plus", + "enhanced lte", + "faster mobile data", + "4g plus", + "faster cellular" + ], + "visual": "letters LTE followed by a plus sign in blocky text" + }, + "Luggage": { + "keywords": ["baggage claim", "carry-on", "packing", "travel bag"], + "visual": "suitcase with a handle on top, vertical stripes on the front and wheels at the bottom" + }, + "LunchDining": { + "keywords": ["burger", "fast food", "midday meal", "sandwich"], + "visual": "hamburger shape with a domed bun top, wavy fillings and a bun bottom" + }, + "Lyrics": { + "keywords": ["song lyrics", "karaoke", "sing along", "music notes text", "closed captions"], + "visual": "speech bubble document with text lines and a musical note beside it" + }, + "MacroOff": { + "keywords": [ + "macro photography disabled", + "close-up mode off", + "flower photography off", + "no close-up", + "macro mode disabled" + ], + "visual": "flower shape with a diagonal slash through it" + }, + "Mail": { + "keywords": ["correspondence", "compose email", "letter"], + "visual": "envelope shape" + }, + "MailLock": { + "keywords": [ + "encrypted email", + "secure email", + "confidential message", + "protected mail", + "private email" + ], + "visual": "envelope shape with a small padlock at its bottom right corner" + }, + "Male": { + "keywords": ["man symbol", "mars symbol", "gender male sign", "man icon", "boy symbol"], + "visual": "circle with an arrow pointing diagonally outward from its top right, the male gender symbol" + }, + "Man": { + "keywords": ["male figure", "person", "stick figure", "restroom sign", "pedestrian"], + "visual": "person figure with a round head and legs shown as two separate limbs" + }, + "Man2": { + "keywords": ["male figure", "person silhouette", "restroom sign", "man icon", "person figure"], + "visual": "person figure with a round head and a narrow rectangular body" + }, + "Man3": { + "keywords": [ + "abstract person", + "robot figure", + "avatar", + "diamond head figure", + "geometric person" + ], + "visual": "person figure with a diamond-shaped head instead of a round one" + }, + "Man4": { + "keywords": ["male silhouette", "person outline", "solid figure", "man symbol", "person icon"], + "visual": "person figure with a round head and a rounded body with no gap between the legs" + }, + "ManageAccounts": { + "keywords": [ + "admin", + "account management", + "user management", + "team members", + "edit user", + "permissions", + "staff", + "human resources" + ], + "visual": "person with a gear badge next to the shoulder" + }, + "ManageHistory": { + "keywords": [ + "history log", + "activity log", + "undo", + "restore", + "audit log", + "version history", + "sync", + "update history" + ], + "visual": "circular arrow forming a clock face with a gear badge at the bottom" + }, + "ManageSearch": { + "keywords": [ + "search list", + "filter", + "find in list", + "query", + "look up", + "search records", + "search settings", + "browse" + ], + "visual": "magnifying glass over several horizontal list lines" + }, + "Map": { + "keywords": [ + "navigation", + "gps", + "atlas", + "road map", + "folded map", + "cartography", + "wayfinding", + "tourist map" + ], + "visual": "folded map panel with one section shaded lighter" + }, + "MapsHomeWork": { + "keywords": [ + "work from home", + "commute", + "home and office", + "real estate", + "workplace", + "residence", + "business address" + ], + "visual": "house with a building partly behind it" + }, + "MapsUgc": { + "keywords": [ + "user generated content", + "add review", + "write review", + "post comment", + "create post", + "add feedback", + "rate", + "testimonial" + ], + "visual": "speech bubble with a plus sign in the center" + }, + "Margin": { + "keywords": [ + "spacing", + "css margin", + "whitespace", + "box model", + "dot grid", + "border spacing", + "indentation", + "page setup" + ], + "visual": "square with a grid of small dots inside" + }, + "MarkAsUnread": { + "keywords": [ + "inbox", + "correspondence", + "new mail", + "stack of letters", + "multiple emails", + "messages" + ], + "visual": "two overlapping envelopes stacked diagonally" + }, + "MarkChatRead": { + "keywords": [ + "read receipt", + "seen", + "message read", + "chat confirmed", + "conversation complete", + "acknowledge" + ], + "visual": "speech bubble with a checkmark in a circle at the corner" + }, + "MarkChatUnread": { + "keywords": ["unread message", "badge", "notification dot", "new chat", "ping", "unseen"], + "visual": "speech bubble with a dot at the corner" + }, + "MarkEmailRead": { + "keywords": [ + "read receipt", + "email confirmed", + "seen", + "inbox zero", + "mail verified", + "opened email" + ], + "visual": "envelope with a checkmark in a circle overlapping its edge" + }, + "MarkEmailUnread": { + "keywords": ["new email", "badge", "inbox alert", "unopened mail"], + "visual": "envelope with a dot at the corner" + }, + "MarkUnreadChatAlt": { + "keywords": [ + "unread message", + "text message", + "sms", + "chat notification", + "message preview", + "conversation alert", + "badge" + ], + "visual": "speech bubble with horizontal text lines and a dot at the corner" + }, + "Markunread": { + "keywords": [ + "inbox", + "unread mail", + "new message", + "correspondence", + "letter", + "snail mail", + "write email" + ], + "visual": "closed envelope" + }, + "MarkunreadMailbox": { + "keywords": [ + "mailbox flag", + "you've got mail", + "rural mailbox", + "letterbox", + "mail delivered", + "postal service", + "curbside mailbox" + ], + "visual": "mailbox with its flag raised" + }, + "Masks": { + "keywords": [ + "ppe", + "surgical mask", + "n95", + "face covering", + "quarantine", + "virus", + "coronavirus", + "health safety" + ], + "visual": "protective face mask with straps looping around the sides" + }, + "Maximize": { + "keywords": [ + "full screen", + "expand window", + "resize window", + "window control", + "enlarge", + "underscore", + "dash", + "horizontal line" + ], + "visual": "single thick horizontal bar" + }, + "MediaBluetoothOff": { + "keywords": [ + "audio streaming", + "disconnect", + "bluetooth disabled", + "no bluetooth audio", + "mute", + "turn off", + "unpaired", + "speaker off" + ], + "visual": "musical note with a diagonal slash and a small bluetooth symbol nearby" + }, + "MediaBluetoothOn": { + "keywords": [ + "audio streaming", + "connected", + "bluetooth speaker", + "paired", + "wireless audio", + "stream music", + "headphones" + ], + "visual": "musical note next to a bluetooth symbol" + }, + "Mediation": { + "keywords": [ + "workflow", + "process flow", + "decision tree", + "funnel", + "converge", + "resolution", + "merge paths", + "flowchart" + ], + "visual": "branching pipe with three round nodes on the left merging into an arrow pointing right" + }, + "MedicalInformation": { + "keywords": [ + "medical id", + "health records", + "patient information", + "first aid kit", + "health card", + "emergency info", + "medical history" + ], + "visual": "briefcase with a plus sign and a horizontal line on its front" + }, + "MedicalServices": { + "keywords": [ + "doctor bag", + "healthcare", + "hospital", + "clinic", + "health services", + "first responder", + "red cross" + ], + "visual": "briefcase with a cross on its front" + }, + "Medication": { + "keywords": [ + "pill bottle", + "medical supplies", + "ointment jar", + "first aid", + "treatment", + "medicine cabinet" + ], + "visual": "jar with a cross on its front and a lid on top" + }, + "MedicationLiquid": { + "keywords": [ + "cough syrup", + "liquid medicine", + "dosage spoon", + "tablespoon", + "elixir", + "first aid", + "syrup bottle" + ], + "visual": "jar with a cross on its front and a spoon beside it" + }, + "MeetingRoom": { + "keywords": [ + "conference room", + "exit door", + "room booking", + "availability", + "sign out", + "log out", + "boardroom", + "huddle room" + ], + "visual": "open door with a doorknob beside a door frame" + }, + "Memory": { + "keywords": [ + "ram", + "cpu", + "motherboard", + "circuit board", + "hardware", + "integrated circuit", + "computing", + "tech specs" + ], + "visual": "computer chip with a small square in the center and pins on each side" + }, + "Menu": { + "keywords": [ + "navigation menu", + "sidebar", + "options", + "toggle menu", + "drawer", + "list view", + "main menu" + ], + "visual": "three stacked horizontal bars" + }, + "MenuBook": { + "keywords": [ + "recipe book", + "cookbook", + "catalog", + "reading", + "library", + "food menu", + "menu card", + "culinary" + ], + "visual": "open book with wavy lines of text on the right page" + }, + "MenuOpen": { + "keywords": [ + "expand menu", + "collapse sidebar", + "close drawer", + "navigation toggle", + "open sidebar", + "back", + "previous" + ], + "visual": "three horizontal bars with an arrow pointing left overlapping them" + }, + "Merge": { + "keywords": [ + "lane merge", + "combine", + "converge", + "highway sign", + "join paths", + "git merge", + "road merge" + ], + "visual": "arrow pointing straight up atop two legs that splay symmetrically downward like an inverted Y" + }, + "MergeType": { + "keywords": [ + "git merge", + "version control", + "branch merge", + "combine files", + "join", + "diff", + "pull request" + ], + "visual": "arrow pointing up-left with a short diagonal stroke joining it from the lower right" + }, + "Message": { + "keywords": ["sms", "dm", "direct message", "conversation", "notification", "texting", "inbox"], + "visual": "speech bubble with horizontal text lines inside" + }, + "Mic": { + "keywords": [ + "podcast", + "singing", + "karaoke", + "unmute", + "talk", + "voice input", + "record audio", + "on air" + ], + "visual": "microphone on a stand" + }, + "MicExternalOff": { + "keywords": [ + "external microphone", + "wired mic", + "disconnected", + "mute", + "unplugged", + "studio mic", + "xlr" + ], + "visual": "microphone with a looping cable and a diagonal slash through it" + }, + "MicExternalOn": { + "keywords": [ + "external microphone", + "wired mic", + "podcast mic", + "studio microphone", + "plugged in", + "unmuted", + "xlr" + ], + "visual": "microphone with a winding cable extending below it" + }, + "MicNone": { + "keywords": [ + "voice input", + "talk", + "standby", + "idle mic", + "audio input", + "record audio", + "talk button" + ], + "visual": "microphone shape on a stand" + }, + "MicOff": { + "keywords": [ + "silence", + "muted call", + "disable microphone", + "turn off mic", + "quiet", + "do not disturb" + ], + "visual": "microphone on a stand with a diagonal slash through it" + }, + "Microsoft": { + "keywords": [ + "microsoft logo", + "windows logo", + "ms office", + "tech company", + "brand", + "four squares", + "windows tiles", + "software company" + ], + "visual": "four small squares arranged in a two by two grid" + }, + "Microwave": { + "keywords": [ + "reheat", + "defrost", + "popcorn", + "oven", + "radiation waves", + "nuke food", + "kitchen appliance" + ], + "visual": "microwave oven with wavy lines on the door and buttons on the side" + }, + "MilitaryTech": { + "keywords": [ + "achievement", + "veteran", + "decoration", + "distinction", + "gamification", + "certificate", + "recognition" + ], + "visual": "medal with a star at the bottom hanging from a ribbon" + }, + "Minimize": { + "keywords": [ + "collapse window", + "shrink window", + "hide window", + "window control", + "dash", + "underscore", + "taskbar" + ], + "visual": "single thick horizontal bar" + }, + "MinorCrash": { + "keywords": [ + "fender bender", + "bump", + "insurance claim", + "traffic incident", + "car accident", + "dent", + "impact" + ], + "visual": "car with jagged impact marks above it" + }, + "MiscellaneousServices": { + "keywords": [ + "settings", + "mechanic", + "repair services", + "configuration", + "tools", + "maintenance", + "cogs", + "gears" + ], + "visual": "two overlapping gears of different sizes" + }, + "MissedVideoCall": { + "keywords": [ + "missed call", + "call history", + "call log", + "facetime", + "declined call", + "video chat", + "notification" + ], + "visual": "video camera shape with an arrow pointing to the upper left and a checkmark" + }, + "Mms": { + "keywords": [ + "multimedia messaging", + "picture message", + "media message", + "photo text", + "send photo", + "attachment" + ], + "visual": "speech bubble containing a mountain landscape image" + }, + "MobileFriendly": { + "keywords": [ + "responsive design", + "mobile optimized", + "compatible", + "mobile ready", + "cross platform", + "tested device" + ], + "visual": "phone shape with a checkmark beside it" + }, + "MobileOff": { + "keywords": [ + "airplane mode", + "no signal", + "powered off", + "do not disturb", + "flight mode", + "switched off" + ], + "visual": "phone with a diagonal slash through it" + }, + "MobileScreenShare": { + "keywords": [ + "cast", + "screen mirroring", + "present", + "broadcast", + "airplay", + "share screen", + "export display" + ], + "visual": "phone with an arrow curving up and to the right on its screen" + }, + "MobiledataOff": { + "keywords": [ + "mobile data", + "cellular data", + "no internet", + "turn off data", + "4g", + "5g", + "data saver" + ], + "visual": "up and down arrows between two vertical bars with a diagonal slash through them" + }, + "Mode": { + "keywords": ["rename", "modify", "update", "annotate", "revise", "style"], + "visual": "pencil drawn diagonally" + }, + "ModeComment": { + "keywords": ["note", "annotation", "reply", "add comment", "callout", "discussion"], + "visual": "speech bubble with a pointed tail at the bottom left" + }, + "ModeEdit": { + "keywords": ["rename", "modify", "update", "annotate", "revise", "edit text", "customize"], + "visual": "pencil drawn diagonally with a pointed tip" + }, + "ModeFanOff": { + "keywords": [ + "ventilation off", + "hvac", + "turn off fan", + "ceiling fan", + "climate control", + "thermostat", + "cooling disabled" + ], + "visual": "three-bladed fan shape with a diagonal slash through it" + }, + "ModeNight": { + "keywords": [ + "night mode", + "dark mode", + "bedtime", + "evening", + "do not disturb", + "crescent", + "nighttime" + ], + "visual": "crescent moon" + }, + "ModeOfTravel": { + "keywords": [ + "route", + "journey", + "itinerary", + "gps", + "navigation", + "waypoint", + "transit directions" + ], + "visual": "teardrop location pin with a curved arrow wrapping around it and a small dot" + }, + "ModeStandby": { + "keywords": [ + "power saving", + "sleep mode", + "idle", + "record button", + "bullseye", + "low power", + "screensaver" + ], + "visual": "circle with a smaller dot in the center" + }, + "ModelTraining": { + "keywords": [ + "machine learning", + "ai training", + "neural network", + "iteration", + "retrain", + "algorithm" + ], + "visual": "light bulb with a curved arrow looping around it" + }, + "MonetizationOn": { + "keywords": ["revenue", "earnings", "monetize", "ad revenue", "income", "cash flow"], + "visual": "dollar sign inside a circle" + }, + "Money": { + "keywords": [ + "banknote", + "wealth", + "hundred dollar bill", + "currency note", + "paper money", + "salary" + ], + "visual": "rectangular bill shape with the number 100 on it" + }, + "MoneyOff": { + "keywords": ["free", "no cost", "no charge", "discount", "refund", "broke", "unpaid"], + "visual": "dollar sign with a diagonal slash through it" + }, + "MoneyOffCsred": { + "keywords": ["free", "no cost", "no charge", "discount", "refund", "unpaid", "price drop"], + "visual": "dollar sign with a diagonal slash through it" + }, + "Monitor": { + "keywords": [ + "computer screen", + "desktop pc", + "external display", + "workstation", + "tv screen", + "display screen" + ], + "visual": "desktop computer screen on a stand" + }, + "MonitorHeart": { + "keywords": [ + "heart rate monitor", + "vital signs", + "pulse", + "cardiac monitor", + "hospital monitor", + "ekg" + ], + "visual": "rectangular screen with a heartbeat pulse line across it" + }, + "MonitorWeight": { + "keywords": [ + "bathroom scale", + "weighing scale", + "bmi", + "fitness tracker", + "weight tracking", + "digital scale" + ], + "visual": "rounded square with three dots inside a circle" + }, + "MonochromePhotos": { + "keywords": [ + "black and white", + "grayscale", + "photo filter", + "contrast", + "bw photo", + "monochrome mode" + ], + "visual": "camera with a half-shaded circular lens" + }, + "Mood": { + "keywords": ["rating", "satisfaction", "positive feedback", "good mood", "cheerful", "content"], + "visual": "smiling face inside a circle" + }, + "MoodBad": { + "keywords": [ + "negative feedback", + "sad", + "upset", + "bad rating", + "dissatisfied", + "poor experience" + ], + "visual": "frowning face inside a circle" + }, + "Moped": { + "keywords": ["delivery", "food delivery", "motorbike", "motorcycle", "two wheeler", "courier"], + "visual": "moped with a storage box on the back" + }, + "More": { + "keywords": ["more options", "additional", "expand", "overflow menu", "see more", "extra"], + "visual": "arrow-shaped tag with three dots inside it" + }, + "MoreHoriz": { + "keywords": [ + "overflow menu", + "ellipsis", + "more options", + "context menu", + "meatballs menu", + "show more" + ], + "visual": "three dots in a horizontal row" + }, + "MoreTime": { + "keywords": [ + "extend time", + "add time", + "snooze", + "extension", + "overtime", + "deadline extension", + "extra time" + ], + "visual": "clock face with a plus sign at the top right" + }, + "MoreVert": { + "keywords": [ + "kebab menu", + "overflow menu", + "context menu", + "more options", + "settings menu", + "options menu" + ], + "visual": "three dots stacked vertically in a single column" + }, + "Mosque": { + "keywords": [ + "minaret", + "dome", + "place of worship", + "prayer", + "ramadan", + "islam", + "place of interest" + ], + "visual": "mosque building with a dome and two flanking minarets" + }, + "MotionPhotosAuto": { + "keywords": [ + "live photo", + "auto mode", + "motion capture", + "apple live photo", + "loop video", + "camera setting" + ], + "visual": "letter A inside a circle with a curved arrow and a small dot" + }, + "MotionPhotosOff": { + "keywords": [ + "live photo off", + "disable motion", + "turn off live photo", + "still photo", + "no animation", + "not allowed" + ], + "visual": "circle with a diagonal slash through it" + }, + "Mouse": { + "keywords": [ + "peripheral", + "scroll wheel", + "pointer device", + "right click", + "left click", + "pc accessory" + ], + "visual": "computer mouse divided into two top buttons and a rounded bottom half" + }, + "MoveDown": { + "keywords": [ + "reorder down", + "move item down", + "sort down", + "demote", + "rearrange", + "send backward" + ], + "visual": "curved arrow pointing down beside two stacked squares, the lower one shaded" + }, + "MoveToInbox": { + "keywords": ["import", "receive", "download", "deliver", "archive item", "save to inbox"], + "visual": "square with a downward arrow pointing into an open flap at the bottom" + }, + "MoveUp": { + "keywords": ["reorder up", "move item up", "sort up", "promote", "bring forward", "rearrange"], + "visual": "curved arrow pointing up beside two stacked squares, the upper one shaded" + }, + "Movie": { + "keywords": [ + "film production", + "action", + "hollywood", + "entertainment", + "clapperboard", + "director" + ], + "visual": "rectangular clapperboard with diagonal stripes across the top" + }, + "MovieCreation": { + "keywords": [ + "video production", + "filmmaking", + "director", + "action", + "produce video", + "new movie" + ], + "visual": "rectangular clapperboard with diagonal stripes across the top" + }, + "MovieEdit": { + "keywords": [ + "video editing", + "edit film", + "trim video", + "film editor", + "clip editing", + "rename video" + ], + "visual": "rectangular clapperboard with diagonal stripes and a pencil at the bottom right" + }, + "MovieFilter": { + "keywords": ["special effects", "vfx", "enhance video", "ai video editor", "video enhancement"], + "visual": "rectangular clapperboard with diagonal stripes and two sparkle shapes" + }, + "Moving": { + "keywords": [ + "growth", + "trend up", + "progress", + "stock chart", + "increase", + "uptrend", + "improvement" + ], + "visual": "zigzag line rising to an arrow pointing up and to the right" + }, + "Mp": { + "keywords": [ + "camera resolution", + "image quality", + "megapixels count", + "photo specs", + "camera spec" + ], + "visual": "rounded square containing the letters mp" + }, + "MultilineChart": { + "keywords": [ + "comparison chart", + "trend lines", + "stock chart", + "performance graph", + "dashboard", + "line graph" + ], + "visual": "zigzag line chart crossed by another rising diagonal line" + }, + "MultipleStop": { + "keywords": [ + "waypoints", + "multiple destinations", + "itinerary stops", + "route planning", + "transfer", + "multi-stop trip" + ], + "visual": "two dots and an arrow pointing right on top, two dots and an arrow pointing left below" + }, + "Museum": { + "keywords": ["gallery", "landmark", "history", "art gallery", "cultural site", "exhibit"], + "visual": "building with a triangular roof and a large letter M on the front" + }, + "MusicNote": { + "keywords": ["song", "tune", "melody", "audio track", "playlist", "singing", "tone"], + "visual": "single musical note with a circular head" + }, + "MusicOff": { + "keywords": ["mute music", "silence", "no audio", "turn off sound", "stop playback", "quiet"], + "visual": "musical note with a small flag and a diagonal slash through it" + }, + "MusicVideo": { + "keywords": [ + "music player", + "video clip", + "streaming", + "audio visualizer", + "karaoke video", + "media player" + ], + "visual": "rectangular frame containing a musical note" + }, + "MyLocation": { + "keywords": ["gps", "current location", "locate me", "target", "find me", "geolocation"], + "visual": "circular crosshair target with a dot in the center" + }, + "Nat": { + "keywords": [ + "network address translation", + "routing", + "gateway", + "ip translation", + "telecom", + "network diagram", + "signal" + ], + "visual": "circle with a dot in the center and an arrow extending to the right" + }, + "Nature": { + "keywords": ["plant", "greenery", "environment", "eco", "landscape", "botanical", "garden"], + "visual": "tree with a round canopy on a short trunk" + }, + "NaturePeople": { + "keywords": [ + "hiking", + "camping", + "outdoor recreation", + "nature walk", + "ecotourism", + "park visitor" + ], + "visual": "person standing beside a tree with a round canopy" + }, + "NavigateBefore": { + "keywords": ["previous", "back", "go back", "prior", "carousel arrow", "pagination", "rewind"], + "visual": "chevron arrow pointing left" + }, + "NavigateNext": { + "keywords": ["forward", "go forward", "carousel arrow", "pagination", "continue", "skip"], + "visual": "chevron arrow pointing right" + }, + "Navigation": { + "keywords": ["compass", "gps arrow", "cursor", "heading", "maps app", "orientation"], + "visual": "narrow triangular arrow pointing straight up" + }, + "NearMe": { + "keywords": [ + "send location", + "share location", + "current position", + "locate", + "cursor arrow", + "gps pointer" + ], + "visual": "triangular arrow pointing to the upper left with a curved tail" + }, + "NearMeDisabled": { + "keywords": [ + "location off", + "disable location", + "gps off", + "no location sharing", + "location denied" + ], + "visual": "triangular arrow with a curved tail and a diagonal slash through it" + }, + "NearbyError": { + "keywords": [ + "location error", + "nearby unavailable", + "connection error", + "proximity alert", + "problem nearby" + ], + "visual": "diamond shape with a smaller diamond inside and an exclamation mark beside it" + }, + "NearbyOff": { + "keywords": [ + "nearby sharing off", + "proximity off", + "disconnect", + "unlink", + "turn off nearby share", + "airdrop off" + ], + "visual": "two interlocking rounded links with a diagonal slash through them" + }, + "NestCamWiredStand": { + "keywords": [ + "security camera", + "home camera", + "nest cam", + "surveillance", + "webcam", + "smart camera", + "cctv" + ], + "visual": "rounded camera head on a narrow stand" + }, + "NetworkCell": { + "keywords": [ + "signal bars", + "reception", + "carrier signal", + "cell tower", + "mobile network", + "phone signal" + ], + "visual": "triangle with a narrow vertical white stripe near the right edge" + }, + "NetworkCheck": { + "keywords": [ + "connection verified", + "network test", + "speed test", + "diagnostics", + "connectivity check", + "connected" + ], + "visual": "wifi signal arcs with a checkmark line crossing through them" + }, + "NetworkLocked": { + "keywords": [ + "secured network", + "password protected wifi", + "vpn", + "private network", + "encrypted connection" + ], + "visual": "triangular signal shape with a padlock at the bottom right corner" + }, + "NetworkPing": { + "keywords": [ + "latency", + "ping test", + "network diagnostics", + "response time", + "packet", + "round trip time" + ], + "visual": "two lines meeting at a downward point with a circle at one end" + }, + "NetworkWifi": { + "keywords": [ + "full signal", + "wireless internet", + "hotspot", + "router", + "strong signal", + "connected wifi" + ], + "visual": "wifi signal cone with a curved white gap arcing near the top" + }, + "NetworkWifi1Bar": { + "keywords": ["weak signal", "low signal", "poor connection", "one bar", "faint signal"], + "visual": "wifi signal cone with only the small bottom arc shaded and the rest left plain" + }, + "NetworkWifi2Bar": { + "keywords": [ + "medium signal", + "moderate connection", + "two bars", + "fair signal", + "partial signal" + ], + "visual": "wifi signal cone with the bottom two arcs shaded and the outer arc left plain" + }, + "NetworkWifi3Bar": { + "keywords": [ + "strong signal", + "good connection", + "three bars", + "near full signal", + "high signal" + ], + "visual": "wifi signal cone mostly shaded with a thin gap near the top" + }, + "NewLabel": { + "keywords": ["create tag", "new tag", "add label", "new category", "price tag", "add bookmark"], + "visual": "tag shape with a plus sign on it" + }, + "NewReleases": { + "keywords": ["new arrival", "featured", "promo badge", "sale badge", "hot deal", "spotlight"], + "visual": "exclamation mark inside a many-pointed starburst badge" + }, + "Newspaper": { + "keywords": [ + "news", + "press", + "journalism", + "headlines", + "current events", + "gazette", + "publication" + ], + "visual": "folded paper with a jagged top edge and rows of text blocks" + }, + "NextPlan": { + "keywords": ["refresh", "redo", "next step", "retry", "proceed", "continue", "forward"], + "visual": "circular arrow curving clockwise ending in an arrowhead" + }, + "NextWeek": { + "keywords": [ + "upcoming", + "calendar", + "schedule", + "work trip", + "later", + "future plans", + "travel for work" + ], + "visual": "briefcase with a chevron arrow pointing right on its front" + }, + "Nfc": { + "keywords": [ + "contactless payment", + "tap to pay", + "near field communication", + "wireless transfer", + "tap and go" + ], + "visual": "square frame containing a maze-like path with a dot at one end" + }, + "NightShelter": { + "keywords": ["hostel", "dormitory", "refuge", "accommodation", "homeless shelter", "bunk"], + "visual": "house shape containing a bed with a person lying on it" + }, + "Nightlife": { + "keywords": ["party", "entertainment", "clubbing", "lounge", "evening out", "happy hour"], + "visual": "martini glass beside a musical note" + }, + "Nightlight": { + "keywords": [ + "night mode", + "dark mode", + "bedtime", + "evening", + "lunar phase", + "crescent", + "nighttime" + ], + "visual": "crescent moon" + }, + "NightlightRound": { + "keywords": ["night mode", "dark mode", "bedtime", "sleep mode", "half moon", "lunar"], + "visual": "crescent moon with rounded tips" + }, + "NightsStay": { + "keywords": [ + "overnight stay", + "hotel booking", + "sleep tracker", + "partly cloudy", + "night weather", + "weather forecast" + ], + "visual": "crescent moon with a small cloud overlapping its lower point" + }, + "NineK": { + "keywords": [ + "video resolution", + "ultra high definition", + "tv resolution", + "streaming quality", + "display quality" + ], + "visual": "rounded square containing the text 9K" + }, + "NineKPlus": { + "keywords": [ + "video resolution", + "enhanced resolution", + "streaming quality", + "premium quality", + "upscaled" + ], + "visual": "rounded square containing the text 9K+" + }, + "NineMp": { + "keywords": [ + "camera resolution", + "photo quality", + "image sensor", + "pixel count", + "camera spec" + ], + "visual": "rounded square containing the text 9 MP stacked" + }, + "NineteenMp": { + "keywords": [ + "camera resolution", + "photo quality", + "image sensor", + "pixel count", + "high resolution camera" + ], + "visual": "rounded square containing the text 19 MP stacked" + }, + "NoAccounts": { + "keywords": [ + "blocked user", + "remove account", + "guest mode", + "anonymous", + "banned", + "deactivated", + "sign out disabled" + ], + "visual": "person's head and shoulders inside a circle with a diagonal slash through it" + }, + "NoAdultContent": { + "keywords": [ + "restricted content", + "parental control", + "age restriction", + "explicit content blocked", + "content filter", + "nsfw blocked", + "mature content off" + ], + "visual": "circle containing the letters XXX with a diagonal slash through it" + }, + "NoBackpack": { + "keywords": [ + "no bags allowed", + "bag check", + "luggage restriction", + "prohibited", + "bags not permitted" + ], + "visual": "backpack with a diagonal slash through it" + }, + "NoCell": { + "keywords": [ + "no phones allowed", + "silence phone", + "phone free zone", + "prohibited", + "quiet zone" + ], + "visual": "phone with a diagonal slash through it" + }, + "NoCrash": { + "keywords": [ + "safe driving", + "collision avoidance", + "verified safe", + "no accident", + "safety check", + "accident free" + ], + "visual": "car with a checkmark above it" + }, + "NoDrinks": { + "keywords": [ + "no alcohol", + "alcohol free", + "sober", + "prohibited drinking", + "dry zone", + "no beverages allowed" + ], + "visual": "martini glass with a diagonal slash through it" + }, + "NoEncryption": { + "keywords": [ + "unencrypted", + "unprotected", + "insecure connection", + "unlocked", + "vulnerability", + "not secure" + ], + "visual": "padlock with a diagonal slash through it" + }, + "NoEncryptionGmailerrorred": { + "keywords": [ + "unencrypted email", + "insecure email", + "gmail warning", + "email security error", + "not secure connection" + ], + "visual": "padlock with a small circle near the shackle and a diagonal slash through it" + }, + "NoFlash": { + "keywords": ["flash off", "disable flash", "camera setting", "dark mode photo", "no strobe"], + "visual": "camera with a lightning bolt beside it and a diagonal slash through it" + }, + "NoFood": { + "keywords": [ + "no eating", + "food prohibited", + "fasting", + "no snacks", + "food not allowed", + "dietary restriction" + ], + "visual": "burger with a drink cup beside it and a diagonal slash through them" + }, + "NoLuggage": { + "keywords": [ + "no baggage allowed", + "luggage restriction", + "bag check prohibited", + "travel light", + "baggage not permitted" + ], + "visual": "rolling suitcase with a diagonal slash through it" + }, + "NoMeals": { + "keywords": [ + "no dining", + "fasting", + "meal not included", + "food service unavailable", + "no cutlery" + ], + "visual": "fork and a straight-bladed knife side by side with a diagonal slash through them" + }, + "NoMealsOuline": { + "keywords": [ + "no dining", + "fasting", + "meal not included", + "food service unavailable", + "no cutlery", + "dining unavailable" + ], + "visual": "fork and a curved wide-bladed knife side by side with a diagonal slash through them" + }, + "NoMeetingRoom": { + "keywords": [ + "room unavailable", + "room occupied", + "no entry", + "booking unavailable", + "closed door", + "do not enter" + ], + "visual": "door with a window pane and a diagonal slash through it" + }, + "NoPhotography": { + "keywords": [ + "no cameras allowed", + "photography prohibited", + "no pictures", + "camera restricted", + "do not photograph" + ], + "visual": "camera with a circular lens and a diagonal slash through it" + }, + "NoSim": { + "keywords": ["no sim card", "sim not detected", "missing sim", "no service", "sim error"], + "visual": "sim card with a diagonal slash through it" + }, + "NoStroller": { + "keywords": [ + "no strollers allowed", + "pram prohibited", + "buggy restricted", + "prohibited", + "not stroller accessible" + ], + "visual": "baby stroller with a diagonal slash through it" + }, + "NoTransfer": { + "keywords": [ + "no transfers", + "direct route", + "no connections", + "transit restriction", + "non-stop" + ], + "visual": "bus with a diagonal slash through it" + }, + "NoiseAware": { + "keywords": [ + "noise cancellation", + "ambient sound", + "hearing", + "transparency mode", + "listening mode", + "headphone setting" + ], + "visual": "ear with a dot inside a ring of dashed marks radiating outward" + }, + "NoiseControlOff": { + "keywords": [ + "noise control off", + "ambient sound off", + "disable noise cancellation", + "headphone setting", + "hearing off" + ], + "visual": "ear with a dot surrounded by two broken curved arcs" + }, + "NordicWalking": { + "keywords": [ + "trekking poles", + "power walking", + "fitness walk", + "cross country", + "walking sticks" + ], + "visual": "person walking with two poles planted at their sides" + }, + "North": { + "keywords": [ + "compass direction", + "heading north", + "upward direction", + "true north", + "up arrow" + ], + "visual": "arrow pointing straight up" + }, + "NorthEast": { + "keywords": [ + "diagonal direction", + "compass bearing", + "upper right", + "45 degrees", + "diagonal arrow" + ], + "visual": "arrow pointing to the upper right" + }, + "NorthWest": { + "keywords": [ + "diagonal direction", + "compass bearing", + "upper left", + "45 degrees", + "diagonal arrow" + ], + "visual": "arrow pointing to the upper left" + }, + "NotAccessible": { + "keywords": [ + "not wheelchair accessible", + "disabled access unavailable", + "no ramp", + "inaccessible", + "ada non-compliant" + ], + "visual": "person in a wheelchair with a diagonal slash through it" + }, + "NotInterested": { + "keywords": [ + "block", + "no entry sign", + "restricted", + "forbidden", + "do not enter", + "unavailable" + ], + "visual": "circle with a diagonal slash through it" + }, + "NotListedLocation": { + "keywords": [ + "unknown location", + "address not found", + "missing pin", + "location unavailable", + "mystery place" + ], + "visual": "teardrop location pin with a question mark inside" + }, + "NotStarted": { + "keywords": ["play next", "skip", "media control", "playback", "start video", "step forward"], + "visual": "circle containing a pause bar on the left and a play triangle on the right" + }, + "Note": { + "keywords": ["sticky note", "memo", "reminder note", "post-it", "notepad"], + "visual": "rectangular sticky note with a folded corner" + }, + "NoteAdd": { + "keywords": ["new note", "create document", "add file", "new memo", "insert page"], + "visual": "page with a folded corner and a plus sign in the center" + }, + "NoteAlt": { + "keywords": ["edit note", "take notes", "checklist", "survey", "report", "memo pad"], + "visual": "clipboard with a ring hole at the top and a pencil across it" + }, + "Notes": { + "keywords": ["text lines", "bullet list", "outline", "summary", "list view", "paragraph"], + "visual": "three horizontal lines of decreasing length stacked together" + }, + "NotificationAdd": { + "keywords": ["subscribe", "turn on notifications", "follow", "enable alerts", "new alert"], + "visual": "bell with a plus sign beside it" + }, + "NotificationImportant": { + "keywords": [ + "urgent alert", + "priority notification", + "critical alert", + "high priority", + "alarm bell" + ], + "visual": "bell with an exclamation mark on its body" + }, + "Notifications": { + "keywords": ["push notification", "alerts on", "bell icon", "updates", "ping"], + "visual": "bell shape with a clapper at the bottom" + }, + "NotificationsActive": { + "keywords": ["ringing bell", "buzzing", "notification on", "alert enabled", "chiming"], + "visual": "bell with small curved sound waves on either side" + }, + "NotificationsNone": { + "keywords": [ + "no new notifications", + "empty inbox", + "no alerts", + "clear notifications", + "bell outline" + ], + "visual": "bell shape with a clapper at the bottom" + }, + "NotificationsOff": { + "keywords": [ + "mute notifications", + "silence alerts", + "do not disturb", + "disable alerts", + "snooze" + ], + "visual": "bell with a diagonal slash through it" + }, + "NotificationsPaused": { + "keywords": ["sleeping", "do not disturb", "muted temporarily", "resting", "nap"], + "visual": "bell with the letter Z on its body" + }, + "Numbers": { + "keywords": ["hashtag", "pound sign", "number sign", "tag", "social media tag"], + "visual": "hash symbol with crossing horizontal and vertical strokes" + }, + "OfflineBolt": { + "keywords": ["offline mode", "cached", "quick action", "power", "boost", "available offline"], + "visual": "lightning bolt inside a circle" + }, + "OfflinePin": { + "keywords": [ + "saved for offline", + "downloaded", + "available offline", + "sync complete", + "offline access", + "cached content" + ], + "visual": "checkmark above a horizontal bar inside a circle" + }, + "OfflineShare": { + "keywords": [ + "nearby share", + "offline transfer", + "peer to peer", + "bluetooth share", + "device to device", + "airdrop" + ], + "visual": "phone with an arrow pointing right and a second phone layered behind it" + }, + "OilBarrel": { + "keywords": ["petroleum", "crude oil", "fuel storage", "drum", "energy industry", "oil drum"], + "visual": "barrel with a droplet shape on its front" + }, + "OnDeviceTraining": { + "keywords": [ + "machine learning", + "local ai", + "edge computing", + "on-device ai", + "federated learning" + ], + "visual": "phone with a light bulb and curved arrow inside a frame on its screen" + }, + "OndemandVideo": { + "keywords": ["streaming", "video on demand", "watch now", "vod", "media player", "catch up tv"], + "visual": "screen on a stand with a play triangle in the center" + }, + "OneK": { + "keywords": [ + "video resolution", + "followers count", + "thousand", + "social media metric", + "view count" + ], + "visual": "rounded square containing the text 1K" + }, + "OneKPlus": { + "keywords": [ + "video resolution", + "over a thousand", + "followers count", + "social media metric", + "engagement metric" + ], + "visual": "rounded square containing the text 1K+" + }, + "OneKk": { + "keywords": [ + "video resolution", + "ten thousand", + "followers count", + "social media metric", + "engagement metric" + ], + "visual": "rounded square containing the text 10K" + }, + "OnlinePrediction": { + "keywords": [ + "ai prediction", + "forecasting", + "smart insight", + "machine learning", + "cloud intelligence", + "broadcasting idea" + ], + "visual": "light bulb with curved signal arcs radiating on both sides" + }, + "Opacity": { + "keywords": [ + "transparency", + "alpha channel", + "fill opacity", + "gradient", + "translucent", + "image editing" + ], + "visual": "teardrop shape half shaded at the bottom" + }, + "OpenInBrowser": { + "keywords": ["launch", "open link", "view in browser", "external link", "load page"], + "visual": "rectangular window frame with an upward arrow entering from the bottom" + }, + "OpenInFull": { + "keywords": ["fullscreen", "maximize", "expand window", "zoom out", "enlarge view", "resize"], + "visual": "two diagonal arrows pointing away from each other toward opposite corners" + }, + "OpenInNew": { + "keywords": ["new tab", "external link", "launch", "open externally", "hyperlink", "pop out"], + "visual": "square bracket frame with a diagonal arrow breaking out of the top right corner" + }, + "OpenInNewOff": { + "keywords": [ + "disable external link", + "link disabled", + "no popup", + "cannot open", + "open blocked" + ], + "visual": "square bracket frame with a diagonal arrow and a slash through it" + }, + "OpenWith": { + "keywords": ["drag", "pan", "reposition", "move object", "choose app", "share menu"], + "visual": "four arrows pointing outward from a central diamond in up, down, left and right directions" + }, + "OtherHouses": { + "keywords": [ + "more properties", + "additional listings", + "house options", + "real estate listing", + "other listings" + ], + "visual": "house shape with three dots inside" + }, + "Outbound": { + "keywords": ["outgoing", "export", "exit", "departing", "send out", "external"], + "visual": "diagonal arrow pointing to the upper right inside a circle" + }, + "Outbox": { + "keywords": ["sent items", "pending mail", "outgoing messages", "upload queue", "mail queue"], + "visual": "square frame with an upward arrow entering a curved tray at the bottom" + }, + "OutdoorGrill": { + "keywords": ["patio", "backyard", "picnic", "grilling", "summer cookout", "smoker"], + "visual": "barbecue grill on wheels with steam wavy lines rising above it" + }, + "OutgoingMail": { + "keywords": ["send email", "sent mail", "forward", "outbox", "dispatch", "mail out"], + "visual": "envelope with an arrow pointing right beside it" + }, + "Outlet": { + "keywords": ["wall socket", "power point", "plug in", "charging point", "mains socket"], + "visual": "electrical socket face with two vertical slots and a round hole inside a circle" + }, + "OutlinedFlag": { + "keywords": [ + "milestone", + "bookmark location", + "checkpoint", + "race flag", + "pennant", + "flagged item" + ], + "visual": "flag on a pole with a notch cut into the flag" + }, + "Output": { + "keywords": ["export data", "log out", "exit", "send out", "result", "data export"], + "visual": "square bracket frame with an arrow pointing right breaking out of it" + }, + "Padding": { + "keywords": [ + "css padding", + "spacing", + "whitespace", + "box model", + "inner spacing", + "layout spacing" + ], + "visual": "square frame with three dots along the top edge" + }, + "Pages": { + "keywords": [ + "google pages", + "blogging", + "publishing platform", + "content", + "website builder", + "pinwheel" + ], + "visual": "four triangular shapes pointing inward toward a star-shaped gap in the center" + }, + "Pageview": { + "keywords": [ + "page views", + "analytics", + "preview", + "inspect page", + "site traffic", + "view count" + ], + "visual": "magnifying glass over a rectangular frame" + }, + "Paid": { + "keywords": [ + "payment received", + "purchased", + "transaction complete", + "subscription active", + "invoice paid" + ], + "visual": "dollar sign inside a circle" + }, + "Palette": { + "keywords": ["color picker", "theme", "design tool", "swatches", "painting", "color scheme"], + "visual": "artist palette shape with a thumb hole and several small dots for paint wells" + }, + "Pallet": { + "keywords": ["warehouse", "shipping", "freight", "cargo", "logistics", "storage", "forklift"], + "visual": "box sitting on a slatted pallet base" + }, + "PanTool": { + "keywords": ["high five", "stop sign", "palm", "grab", "pan around", "hand cursor"], + "visual": "open hand with fingers spread and thumb to the side" + }, + "PanToolAlt": { + "keywords": ["point", "select", "tap gesture", "raise hand", "one moment", "wait a second"], + "visual": "hand with the index finger pointing up and other fingers curled" + }, + "Panorama": { + "keywords": ["landscape photo", "scenic view", "wide shot", "gallery", "photo album"], + "visual": "rectangular photo frame containing a mountain peak shape" + }, + "PanoramaFishEye": { + "keywords": [ + "fisheye lens", + "360 photo", + "spherical", + "wide angle lens", + "lens distortion", + "circular photo" + ], + "visual": "ring shape, a circle with a thick border and open center" + }, + "PanoramaHorizontal": { + "keywords": [ + "widescreen", + "letterbox", + "cylindrical panorama", + "landscape orientation", + "stretch photo" + ], + "visual": "wide frame with the top and bottom edges bowing outward, shown as a thin border" + }, + "PanoramaHorizontalSelect": { + "keywords": [ + "widescreen selected", + "active panorama", + "chosen filter", + "landscape orientation", + "cylindrical panorama" + ], + "visual": "wide frame with the top and bottom edges bowing outward, shape shaded throughout" + }, + "PanoramaPhotosphere": { + "keywords": ["360 photo", "spherical panorama", "vr photo", "photo sphere", "immersive image"], + "visual": "circle crossed by two curved horizontal bands, shown as a thin border" + }, + "PanoramaPhotosphereSelect": { + "keywords": [ + "360 photo selected", + "spherical panorama", + "vr photo", + "photo sphere active", + "immersive image" + ], + "visual": "circle crossed by two curved horizontal bands, shape shaded throughout" + }, + "PanoramaVertical": { + "keywords": ["portrait panorama", "vertical stitch", "tall photo", "vertorama", "upward pan"], + "visual": "tall frame with the left and right edges bowing outward, shown as a thin border" + }, + "PanoramaVerticalSelect": { + "keywords": [ + "portrait panorama selected", + "vertical stitch", + "tall photo", + "vertorama active", + "chosen filter" + ], + "visual": "tall frame with the left and right edges bowing outward, shape shaded throughout" + }, + "PanoramaWideAngle": { + "keywords": [ + "wide angle lens", + "ultra wide shot", + "barrel distortion", + "gopro lens", + "expansive view" + ], + "visual": "rounded rectangular frame with edges bowing outward, shown as a thin border" + }, + "PanoramaWideAngleSelect": { + "keywords": [ + "wide angle lens selected", + "ultra wide shot", + "barrel distortion", + "active filter", + "expansive view" + ], + "visual": "rounded rectangular frame with edges bowing outward, shape shaded throughout" + }, + "Paragliding": { + "keywords": ["paraglider", "extreme sport", "flying", "canopy", "adventure sport", "air sport"], + "visual": "person hanging below a paraglider canopy with lines to their harness" + }, + "Park": { + "keywords": ["pine tree", "christmas tree", "forest", "conifer", "national park", "evergreen"], + "visual": "evergreen tree with a triangular tiered shape on a short trunk" + }, + "PartyMode": { + "keywords": [ + "photo booth", + "rotate camera", + "group photo", + "continuous shooting", + "self timer", + "camera refresh" + ], + "visual": "camera with a circular arrow on its lens" + }, + "Password": { + "keywords": ["hidden text", "masked input", "passcode", "credential", "secret", "login field"], + "visual": "three asterisks above a horizontal underline" + }, + "Pattern": { + "keywords": ["pattern lock", "android unlock", "connect dots", "swipe pattern", "screen lock"], + "visual": "grid of dots with a diagonal line connecting several of them" + }, + "Pause": { + "keywords": ["stop playback", "hold", "break", "freeze", "intermission", "playback control"], + "visual": "two vertical bars side by side" + }, + "PauseCircle": { + "keywords": ["pause button", "stop", "playback", "hold", "media control button"], + "visual": "two vertical bars inside a circle" + }, + "PauseCircleFilled": { + "keywords": ["pause button", "playback", "hold", "media control button", "solid pause"], + "visual": "two vertical bars inside a circle" + }, + "PausePresentation": { + "keywords": [ + "pause slideshow", + "pause screen share", + "presentation control", + "stop sharing", + "meeting pause" + ], + "visual": "two vertical bars inside a rectangular screen frame" + }, + "Payment": { + "keywords": ["debit card", "checkout", "pay now", "card reader", "billing", "swipe card"], + "visual": "credit card with a horizontal stripe near the top" + }, + "Payments": { + "keywords": ["cash pile", "salary", "wallet", "banknotes", "tips", "savings"], + "visual": "stack of banknotes with a coin on top displaying a circle" + }, + "PedalBike": { + "keywords": ["cycling", "bike share", "bike lane", "commute by bike", "bike rental"], + "visual": "bicycle with two wheels, pedals, and a frame with handlebars" + }, + "Pending": { + "keywords": [ + "in progress", + "processing", + "awaiting approval", + "queued", + "buffering", + "under review" + ], + "visual": "three dots in a horizontal row inside a circle" + }, + "PendingActions": { + "keywords": [ + "to-do list", + "task list", + "deadline", + "overdue tasks", + "action items", + "task reminder" + ], + "visual": "clipboard with a ring hole at the top and a clock badge at the bottom right" + }, + "Pentagon": { + "keywords": [ + "polygon", + "military headquarters", + "department of defense", + "home plate", + "house shape" + ], + "visual": "five-sided polygon shape" + }, + "People": { + "keywords": ["contacts", "attendees", "participants", "audience", "crowd", "group chat"], + "visual": "two person silhouettes overlapping side by side" + }, + "PeopleAlt": { + "keywords": [ + "contacts", + "community", + "members", + "duo", + "pair", + "crowd", + "audience", + "collaborators", + "staff", + "workforce" + ], + "visual": "two overlapping person head-and-shoulders silhouettes side by side" + }, + "Percent": { + "keywords": [ + "discount", + "sale", + "off", + "percentage", + "interest rate", + "rate", + "ratio", + "proportion", + "tax", + "apr" + ], + "visual": "percent sign with two circles joined by a diagonal line" + }, + "PermCameraMic": { + "keywords": [ + "video recording", + "video call", + "record audio", + "camera access", + "microphone access", + "vlogging", + "podcast", + "video conference", + "webcam" + ], + "visual": "camera body with a microphone shape in the center where the lens would be" + }, + "PermContactCalendar": { + "keywords": [ + "contact card", + "business card", + "id card", + "rolodex", + "address book", + "planner", + "appointment", + "event", + "diary" + ], + "visual": "rectangular card with two tabs on top and a person silhouette inside" + }, + "PermDataSetting": { + "keywords": [ + "cog", + "preferences", + "adjust", + "control panel", + "mobile data", + "cellular data", + "network settings", + "signal strength", + "options" + ], + "visual": "triangle with a gear wheel overlapping its bottom right corner" + }, + "PermDeviceInformation": { + "keywords": [ + "device info", + "about phone", + "system info", + "specs", + "notice", + "details", + "info icon", + "smartphone info" + ], + "visual": "smartphone shape with the letter i in the center of the screen" + }, + "PermIdentity": { + "keywords": [ + "identity verification", + "authentication", + "login", + "sign in", + "id badge", + "verify identity", + "my account" + ], + "visual": "person head and shoulders with no border or frame around it" + }, + "PermMedia": { + "keywords": [ + "gallery", + "album", + "photo library", + "media library", + "camera roll", + "pictures folder" + ], + "visual": "stack of photo frames with a mountain landscape on the front one" + }, + "PermPhoneMsg": { + "keywords": [ + "voicemail", + "sms", + "text message", + "call log", + "missed call", + "answering machine", + "phone call message" + ], + "visual": "phone handset with a speech bubble beside it" + }, + "PermScanWifi": { + "keywords": [ + "wifi info", + "network info", + "hotspot", + "connectivity", + "signal info", + "wireless network" + ], + "visual": "wedge-shaped wifi signal with the letter i in the center" + }, + "Person": { + "keywords": ["contact", "individual", "someone", "login", "sign in", "figure", "myself"], + "visual": "person head and shoulders in a plain rounded silhouette" + }, + "Person2": { + "keywords": [ + "avatar", + "contact", + "individual", + "someone", + "login", + "sign in", + "side-swept hair avatar" + ], + "visual": "person head and shoulders with hair swept to one side of the head" + }, + "Person3": { + "keywords": [ + "avatar", + "contact", + "individual", + "someone", + "login", + "sign in", + "rounded hair avatar" + ], + "visual": "person head and shoulders with a fuller rounded hairstyle on top" + }, + "Person4": { + "keywords": [ + "avatar", + "contact", + "individual", + "someone", + "login", + "sign in", + "curly hair avatar" + ], + "visual": "person head and shoulders with short curly hair across the top" + }, + "PersonAdd": { + "keywords": [ + "add contact", + "add member", + "invite", + "follow", + "new user", + "add friend request", + "invite user" + ], + "visual": "person head and shoulders with a plus sign to its left" + }, + "PersonAddAlt": { + "keywords": [ + "add contact", + "add member", + "invite", + "follow", + "new user", + "add friend request", + "invite user" + ], + "visual": "person shown as an open circle head over a curved body with a plus sign beside it" + }, + "PersonAddAlt1": { + "keywords": [ + "account", + "avatar", + "face", + "human", + "people", + "profile", + "user", + "plus", + "new user", + "add contact", + "add member", + "invite", + "follow", + "add friend" + ], + "visual": "person head and shoulders with a plus sign to its left" + }, + "PersonAddDisabled": { + "keywords": [ + "cannot add", + "blocked", + "restricted", + "banned", + "forbidden", + "no new members", + "add disabled", + "prevent invite" + ], + "visual": "person head and shoulders with a plus sign, both crossed by a diagonal slash" + }, + "PersonOff": { + "keywords": [ + "blocked", + "banned", + "deactivated", + "unavailable", + "remove access", + "ignore user", + "no user", + "restricted access" + ], + "visual": "person head and shoulders crossed by a diagonal slash" + }, + "PersonPin": { + "keywords": [ + "check in", + "nearby", + "find person", + "share location", + "meeting point", + "contact location", + "map pin person" + ], + "visual": "rounded badge shape with a small pointed tip at the bottom containing a person silhouette" + }, + "PersonPinCircle": { + "keywords": [ + "check in", + "nearby", + "find person", + "share location", + "meeting point", + "map marker", + "drop pin" + ], + "visual": "teardrop-shaped map marker with a sharp point at the bottom containing a person silhouette" + }, + "PersonRemove": { + "keywords": [ + "remove contact", + "remove member", + "kick", + "block user", + "unfollow", + "remove access", + "delete user" + ], + "visual": "person head and shoulders with a horizontal minus line to its right" + }, + "PersonRemoveAlt1": { + "keywords": [ + "account", + "avatar", + "face", + "human", + "people", + "profile", + "user", + "minus", + "delete", + "unfriend", + "remove contact", + "remove member", + "kick", + "unfollow" + ], + "visual": "person head and shoulders with a horizontal minus line to its right" + }, + "PersonSearch": { + "keywords": [ + "search contact", + "find user", + "lookup", + "directory search", + "people finder", + "recruiter", + "background check" + ], + "visual": "person head and shoulders with a magnifying glass overlapping the shoulder" + }, + "PersonalInjury": { + "keywords": [ + "injury claim", + "workers compensation", + "insurance claim", + "hospital", + "first aid", + "disability", + "hurt arm", + "legal claim" + ], + "visual": "person's head and torso with one arm bent and held in a sling" + }, + "PersonalVideo": { + "keywords": [ + "display", + "screen", + "computer monitor", + "pc", + "streaming", + "home theater", + "screencast" + ], + "visual": "empty rectangular monitor screen on a thin frame" + }, + "PestControl": { + "keywords": [ + "beetle", + "fumigation", + "extermination", + "pest management", + "cockroach", + "debug", + "software bug", + "vermin" + ], + "visual": "beetle-like bug with a row of legs on each side and a vertical mark on its body" + }, + "PestControlRodent": { + "keywords": ["rat", "vermin", "rodent control", "pest management", "mouse trap", "rat trap"], + "visual": "rat silhouette with a long curled tail and a small round eye" + }, + "Pets": { + "keywords": [ + "pet friendly", + "veterinary", + "animal shelter", + "dog park", + "footprint", + "paw print", + "vet" + ], + "visual": "paw print with four small toe pads above one large rounded pad" + }, + "Phishing": { + "keywords": [ + "cybersecurity", + "email scam", + "spoofing", + "identity theft", + "hacking", + "security threat", + "phishing attack" + ], + "visual": "fish hook with a round eyelet at the top" + }, + "Phone": { + "keywords": ["dial", "ring", "calling", "phone number", "landline", "receiver", "handset"], + "visual": "telephone handset" + }, + "PhoneAndroid": { + "keywords": [ + "smartphone", + "cellphone", + "google", + "home button", + "android device", + "mobile app" + ], + "visual": "smartphone shape with a small horizontal bar near the bottom" + }, + "PhoneBluetoothSpeaker": { + "keywords": ["speakerphone", "hands-free", "wireless headset", "pair device", "car speaker"], + "visual": "telephone handset with a bluetooth symbol beside it" + }, + "PhoneCallback": { + "keywords": ["incoming call", "return call", "call back", "answer call"], + "visual": "telephone handset with a diagonal arrow pointing into it from the upper right" + }, + "PhoneDisabled": { + "keywords": ["no calls", "do not disturb", "call blocked", "unavailable", "airplane mode"], + "visual": "telephone handset crossed by a diagonal slash" + }, + "PhoneEnabled": { + "keywords": ["dial", "ring", "calling", "available", "answer call", "make a call"], + "visual": "telephone handset alone with no other marks" + }, + "PhoneForwarded": { + "keywords": ["call forwarding", "redirect call", "transfer call", "divert call"], + "visual": "telephone handset with a right-pointing arrow beside it" + }, + "PhoneInTalk": { + "keywords": [ + "call", + "cell", + "telephone", + "mobile", + "on call", + "active call", + "ringing", + "ongoing call", + "connected call" + ], + "visual": "telephone handset with curved sound wave lines radiating from the earpiece" + }, + "PhoneIphone": { + "keywords": ["smartphone", "cellphone", "home button", "touch id", "apple phone"], + "visual": "smartphone shape with a round button at the bottom" + }, + "PhoneLocked": { + "keywords": ["secure call", "encrypted call", "private call", "restricted", "locked call"], + "visual": "telephone handset with a padlock beside it" + }, + "PhoneMissed": { + "keywords": ["missed call", "unanswered call", "declined call", "call log"], + "visual": "telephone handset with a diagonal arrow pointing away from it toward the upper right" + }, + "PhonePaused": { + "keywords": ["hold call", "call on hold", "pause call", "suspended call"], + "visual": "telephone handset with two vertical pause bars beside it" + }, + "Phonelink": { + "keywords": [ + "device pairing", + "continuity", + "handoff", + "screen mirroring", + "sync devices", + "cross-device" + ], + "visual": "laptop computer paired with a small smartphone beside it" + }, + "PhonelinkErase": { + "keywords": [ + "wipe device", + "factory reset", + "disconnect device", + "delete data", + "unpair device", + "remote wipe" + ], + "visual": "smartphone shape with an x mark in the center" + }, + "PhonelinkLock": { + "keywords": ["secure device", "device lock screen", "restrict device", "encrypted device"], + "visual": "smartphone shape with a padlock in the center" + }, + "PhonelinkOff": { + "keywords": [ + "disconnect devices", + "unpair", + "sync disabled", + "device offline", + "stop screen sharing" + ], + "visual": "laptop and small smartphone crossed by a diagonal slash" + }, + "PhonelinkRing": { + "keywords": [ + "notification", + "alert", + "ringtone", + "incoming notification", + "vibrate", + "ringing phone" + ], + "visual": "smartphone shape with curved sound wave lines beside it" + }, + "PhonelinkSetup": { + "keywords": [ + "device setup", + "configure device", + "preferences", + "onboarding", + "device settings", + "cog" + ], + "visual": "smartphone shape with a gear shape in the center" + }, + "Photo": { + "keywords": ["gallery", "snapshot", "jpeg", "camera roll", "image file"], + "visual": "rounded square frame containing a mountain landscape shape" + }, + "PhotoAlbum": { + "keywords": ["scrapbook", "photo book", "memories", "album cover"], + "visual": "bookmark-shaped card with a triangular tab cut into the top and a mountain landscape inside" + }, + "PhotoCamera": { + "keywords": ["take photo", "snapshot", "capture", "lens", "shutter", "camera app"], + "visual": "camera body with a large round lens in the center" + }, + "PhotoCameraBack": { + "keywords": ["rear camera", "back camera", "take photo", "main camera"], + "visual": "rectangular frame with a small bump on top and a mountain landscape inside" + }, + "PhotoCameraFront": { + "keywords": ["selfie", "front camera", "video chat", "webcam", "facetime", "self-portrait"], + "visual": "video camera with a person silhouette on its screen and a triangular lens flap on the side" + }, + "PhotoFilter": { + "keywords": ["enhance", "effects", "ai edit", "beautify", "retouch", "sparkles"], + "visual": "square with sparkle stars in the corner" + }, + "PhotoLibrary": { + "keywords": ["gallery", "camera roll", "photo collection", "media library"], + "visual": "stack of two overlapping square frames with a mountain landscape on the front one" + }, + "PhotoSizeSelectActual": { + "keywords": ["actual size", "original size", "crop", "resize", "image dimensions"], + "visual": "rounded square with a mountain landscape cut out of it" + }, + "PhotoSizeSelectLarge": { + "keywords": ["resize large", "crop large", "large size", "select area", "image size"], + "visual": "dashed rectangle with a mountain landscape filling the bottom left corner" + }, + "PhotoSizeSelectSmall": { + "keywords": ["resize small", "crop small", "small size", "thumbnail size", "select area"], + "visual": "dashed rectangle with a small rectangle filling the bottom left corner" + }, + "Php": { + "keywords": [ + "hypertext preprocessor", + "scripting language", + "web development", + "backend", + "programming language", + "wordpress", + "server-side" + ], + "visual": "letters PHP in bold block text" + }, + "Piano": { + "keywords": ["music app", "play piano", "ivory keys", "grand piano", "black and white keys"], + "visual": "row of piano keys alternating light and dark" + }, + "PianoOff": { + "keywords": ["mute music", "silence", "no sound", "music disabled", "sound off"], + "visual": "row of piano keys with a diagonal slash through them" + }, + "PictureAsPdf": { + "keywords": [ + "pdf file", + "export pdf", + "download pdf", + "adobe acrobat", + "portable document format" + ], + "visual": "stack of two pages with the letters PDF on the front page" + }, + "PictureInPicture": { + "keywords": ["pip mode", "floating window", "mini player", "split screen", "overlay video"], + "visual": "rectangular frame with a small rectangle inset in the upper area" + }, + "PictureInPictureAlt": { + "keywords": [ + "pip mode", + "floating window", + "mini player", + "overlay video", + "video overlay corner" + ], + "visual": "rectangular frame with a small rectangle inset in the bottom right corner" + }, + "PieChart": { + "keywords": [ + "dashboard", + "report", + "percentage breakdown", + "graph", + "segments", + "distribution" + ], + "visual": "circle divided into four unequal pie slices" + }, + "Pin": { + "keywords": ["passcode", "code", "authentication", "otp", "verification code"], + "visual": "rounded rectangle badge with the digits 123" + }, + "PinDrop": { + "keywords": ["drop pin", "mark location", "address", "geolocation", "waypoint"], + "visual": "teardrop-shaped map marker with a round hole above a short horizontal ground line" + }, + "PinEnd": { + "keywords": [ + "snap to corner", + "dock window", + "collapse to corner", + "anchor point", + "corner arrow" + ], + "visual": "rectangular frame with an arrow pointing into its top left corner and a dot in the opposite corner" + }, + "PinInvoke": { + "keywords": ["undock", "pop out", "expand from corner", "float window", "corner arrow"], + "visual": "rectangular frame with an arrow pointing out toward its top left corner and a dot in the opposite corner" + }, + "Pinch": { + "keywords": [ + "pinch to zoom", + "zoom gesture", + "touch gesture", + "resize gesture", + "two finger zoom" + ], + "visual": "hand with one finger extended beside a diagonal double-headed arrow" + }, + "Pinterest": { + "keywords": ["pinboard", "mood board", "image sharing", "social media", "bookmarking app"], + "visual": "circle containing the letter P shaped like a rounded pin" + }, + "PivotTableChart": { + "keywords": ["pivot table", "spreadsheet", "data summary", "cross-tabulation", "excel"], + "visual": "grid of table cells beside a looping arrow forming a cycle" + }, + "Pix": { + "keywords": [ + "instant payment", + "bank transfer", + "qr payment", + "brazilian pix", + "digital payment" + ], + "visual": "four curved diamond shapes arranged around a center point like a four-petal flower" + }, + "Place": { + "keywords": ["address", "venue", "landmark", "geolocation", "drop location"], + "visual": "teardrop-shaped map marker with a round hole near the top" + }, + "Plagiarism": { + "keywords": [ + "originality check", + "duplicate content", + "academic integrity", + "review document", + "content check" + ], + "visual": "document page with a folded corner and a magnifying glass over it" + }, + "PlayArrow": { + "keywords": ["play button", "resume", "playback", "run"], + "visual": "triangle pointing to the right" + }, + "PlayCircle": { + "keywords": ["play button", "watch video", "playback", "start video"], + "visual": "circle containing a right-pointing triangle" + }, + "PlayCircleFilled": { + "keywords": ["play button", "watch video", "playback"], + "visual": "circle containing a right-pointing triangle" + }, + "PlayCircleFilledWhite": { + "keywords": [ + "play button", + "watch video", + "playback", + "media player", + "controls", + "resume", + "arrow", + "video" + ], + "visual": "circle containing a right-pointing triangle" + }, + "PlayDisabled": { + "keywords": [ + "cannot play", + "playback disabled", + "no video", + "blocked media", + "restricted playback" + ], + "visual": "right-pointing triangle crossed by a diagonal slash" + }, + "PlayForWork": { + "keywords": ["download", "install", "get app", "managed google play", "import", "inbox tray"], + "visual": "downward arrow above a curved cup shape" + }, + "PlayLesson": { + "keywords": ["online course", "tutorial", "video lesson", "elearning", "training", "education"], + "visual": "book with a bookmark on the cover and a circular play button overlapping the corner" + }, + "PlaylistAdd": { + "keywords": ["add to playlist", "add song", "queue", "add to list", "create playlist"], + "visual": "three horizontal list lines beside a plus sign" + }, + "PlaylistAddCheck": { + "keywords": ["added to playlist", "saved to list", "confirmed", "checklist", "select tracks"], + "visual": "three horizontal list lines beside a checkmark" + }, + "PlaylistAddCheckCircle": { + "keywords": ["confirmed", "saved", "approved list", "checklist", "verified playlist"], + "visual": "circle containing list lines and a checkmark" + }, + "PlaylistAddCircle": { + "keywords": ["add to playlist", "new track", "queue song", "create list"], + "visual": "circle containing list lines and a plus sign" + }, + "PlaylistPlay": { + "keywords": ["play playlist", "play queue", "start playlist", "play all"], + "visual": "three horizontal list lines beside a right-pointing triangle" + }, + "PlaylistRemove": { + "keywords": ["remove from playlist", "delete track", "remove song", "clear list"], + "visual": "three horizontal list lines beside an x mark" + }, + "Plumbing": { + "keywords": ["pipe", "plumber", "water leak", "maintenance", "spanner"], + "visual": "wrench overlapping a length of pipe diagonally" + }, + "PlusOne": { + "keywords": ["google plus", "like", "recommend", "upvote", "endorse"], + "visual": "plus sign beside the numeral 1" + }, + "Podcasts": { + "keywords": ["audio show", "radio show", "streaming audio", "episode", "listen"], + "visual": "antenna with a dot at its base and curved signal waves radiating upward on both sides" + }, + "PointOfSale": { + "keywords": ["cash register", "till", "cashier", "sale terminal", "receipt"], + "visual": "cash register with a receipt slot on top and a keypad grid below" + }, + "Policy": { + "keywords": [ + "terms and conditions", + "compliance", + "insurance policy", + "rules", + "audit", + "privacy policy" + ], + "visual": "shield shape containing a magnifying glass" + }, + "Poll": { + "keywords": ["bar chart", "results", "questionnaire", "feedback", "ballot"], + "visual": "rounded square containing three vertical bars of increasing height" + }, + "Polyline": { + "keywords": [ + "path tool", + "vector path", + "flowchart", + "nodes and edges", + "diagram tool", + "network diagram" + ], + "visual": "connected path of squares and a circle joined by angled lines" + }, + "Pool": { + "keywords": ["swimming pool", "swim lane", "resort amenity", "diving", "hotel amenity"], + "visual": "swimmer with one arm raised above wavy water lines" + }, + "PortableWifiOff": { + "keywords": ["no wifi", "wifi unavailable", "hotspot off", "airplane mode"], + "visual": "wifi signal arcs crossed by a diagonal slash" + }, + "Portrait": { + "keywords": [ + "headshot", + "passport photo", + "id photo", + "mugshot", + "portrait orientation", + "vertical photo" + ], + "visual": "rounded square frame containing a person's head and shoulders silhouette" + }, + "PostAdd": { + "keywords": ["new post", "create post", "add article", "write post", "compose", "new document"], + "visual": "document page with horizontal text lines and a plus sign in the corner" + }, + "Power": { + "keywords": ["connect", "energy", "power supply", "electricity"], + "visual": "electrical plug with two prongs on top" + }, + "PowerInput": { + "keywords": ["power supply input", "adapter", "voltage", "dc power", "cable input"], + "visual": "two short stacked rows of dashed horizontal lines" + }, + "PowerOff": { + "keywords": ["unplug", "disconnect power", "no power", "power outage"], + "visual": "electrical plug with two prongs, crossed by a diagonal slash" + }, + "PowerSettingsNew": { + "keywords": ["power button", "turn off", "restart", "standby", "on off switch"], + "visual": "incomplete circle ring with a vertical line breaking through its top" + }, + "PrecisionManufacturing": { + "keywords": ["robotics", "automation", "assembly line", "industrial robot"], + "visual": "robotic arm with a claw gripper reaching upward from a base" + }, + "PregnantWoman": { + "keywords": ["pregnancy", "expecting", "prenatal", "baby bump"], + "visual": "person silhouette with a rounded belly shape" + }, + "PresentToAll": { + "keywords": ["cast screen", "broadcast", "mirror screen", "share to everyone"], + "visual": "rectangular screen frame with an upward-pointing arrow in the center" + }, + "Preview": { + "keywords": ["view", "inspect", "examine", "view details", "peek"], + "visual": "square frame containing an eye shape" + }, + "PriceChange": { + "keywords": ["adjust price", "update price", "price fluctuation", "dynamic pricing"], + "visual": "rounded rectangle with a dollar sign and small up and down arrows beside it" + }, + "PriceCheck": { + "keywords": ["verified price", "confirmed price", "price match", "approved cost"], + "visual": "dollar sign beside a checkmark" + }, + "Print": { + "keywords": ["hard copy", "printout", "print document"], + "visual": "printer with a paper tray slot and a round dot on the top" + }, + "PrintDisabled": { + "keywords": ["cannot print", "printing disabled", "no printer", "printer offline"], + "visual": "printer with a paper tray slot, crossed by a diagonal slash" + }, + "PriorityHigh": { + "keywords": ["urgent", "critical", "flag", "must do"], + "visual": "single vertical exclamation mark" + }, + "PrivacyTip": { + "keywords": [ + "privacy notice", + "data protection", + "gdpr", + "security notice", + "privacy reminder" + ], + "visual": "shield shape with the letter i in the center" + }, + "PrivateConnectivity": { + "keywords": ["vpn", "encrypted connection", "private network", "secure link"], + "visual": "padlock inside a circle with a horizontal line passing through it" + }, + "ProductionQuantityLimits": { + "keywords": [ + "purchase limit", + "quantity limit", + "out of stock", + "limited stock", + "inventory warning" + ], + "visual": "shopping cart with an exclamation mark above it" + }, + "Propane": { + "keywords": ["lpg", "fuel tank", "grill fuel", "camping gas", "gas cylinder"], + "visual": "rounded horizontal tank with two short legs and a handle on top" + }, + "PropaneTank": { + "keywords": ["lpg tank", "fuel cylinder", "gas cylinder", "camping gas"], + "visual": "upright rounded tank with a handle on top and a horizontal band across the middle" + }, + "Psychology": { + "keywords": ["mindset", "cognition", "mental health", "psychiatry", "self-improvement"], + "visual": "side profile of a head with a gear shape inside it" + }, + "PsychologyAlt": { + "keywords": ["confusion", "uncertainty", "self-doubt", "wondering", "mental question"], + "visual": "side profile of a head with a question mark inside it" + }, + "Public": { + "keywords": ["internet", "worldwide", "international", "public website", "browser"], + "visual": "globe circle with continent shapes and crossing latitude lines" + }, + "PublicOff": { + "keywords": ["offline", "no internet", "private mode", "unpublished", "disconnected"], + "visual": "globe circle with continent shapes, crossed by a diagonal slash" + }, + "Publish": { + "keywords": ["post", "release", "go live", "deploy", "share publicly"], + "visual": "upward-pointing arrow above a horizontal bar" + }, + "PublishedWithChanges": { + "keywords": ["updated", "revised", "sync complete", "changes saved", "republish"], + "visual": "checkmark surrounded by two curved arrows forming a circular loop" + }, + "PunchClock": { + "keywords": ["clock in", "clock out", "time tracking", "attendance", "employee hours"], + "visual": "padlock-shaped case with a clock face in the center and a handle on top" + }, + "PushPin": { + "keywords": ["thumbtack", "bulletin board", "tack", "pinned item", "pin to top"], + "visual": "pin with a rounded head and a pointed tip angled downward" + }, + "QrCode": { + "keywords": ["scan code", "matrix code", "mobile payment code", "link code"], + "visual": "square grid pattern with three large corner squares and a checkered block" + }, + "QrCode2": { + "keywords": ["scan code", "matrix code", "mobile payment code", "link code"], + "visual": "dense square grid pattern of small blocks forming a QR code" + }, + "QrCodeScanner": { + "keywords": ["scan qr", "viewfinder", "camera scan", "code reader", "scan to pay"], + "visual": "QR code pattern framed by four bracket corners" + }, + "QueryBuilder": { + "keywords": ["history", "pending", "recent", "query editor", "time picker", "filter builder"], + "visual": "round clock face with hour and minute hands" + }, + "QueryStats": { + "keywords": [ + "analyze data", + "search trends", + "investigate metrics", + "sql query", + "data analysis" + ], + "visual": "jagged trend line with a magnifying glass over its upward end" + }, + "QuestionAnswer": { + "keywords": ["faq", "support chat", "live chat", "discussion", "q&a"], + "visual": "two overlapping speech bubbles" + }, + "QuestionMark": { + "keywords": ["unknown", "help center", "tooltip", "what is this", "inquiry"], + "visual": "single large question mark" + }, + "Queue": { + "keywords": ["waiting line", "batch", "add to queue", "next up", "up next"], + "visual": "two stacked square cards with a plus sign on the front card" + }, + "QueueMusic": { + "keywords": ["song list", "music queue", "up next", "now playing list"], + "visual": "horizontal list lines beside a musical note" + }, + "QueuePlayNext": { + "keywords": ["play next", "add next", "up next", "cast to tv", "next in queue"], + "visual": "rectangular screen with a plus sign and an arrow pointing right beside it" + }, + "Quickreply": { + "keywords": ["instant reply", "canned response", "auto reply", "quick message"], + "visual": "speech bubble with a lightning bolt cut into its corner" + }, + "Quiz": { + "keywords": ["exam", "trivia", "assessment", "questionnaire", "quiz app"], + "visual": "two stacked square cards with a question mark on the front card" + }, + "RMobiledata": { + "keywords": [ + "roaming", + "network indicator", + "signal type", + "cellular data type", + "status bar icon" + ], + "visual": "single bold letter R" + }, + "Radar": { + "keywords": ["tracking", "surveillance", "sonar", "proximity detection", "nearby"], + "visual": "concentric circles with a diagonal slash and a dot at the center" + }, + "Radio": { + "keywords": ["fm radio", "am radio", "broadcast", "transistor radio"], + "visual": "radio box with an antenna, a speaker dot, and a handle on top" + }, + "RadioButtonChecked": { + "keywords": ["selected option", "choose one", "single choice", "option selected"], + "visual": "circle with a smaller circle centered inside it" + }, + "RadioButtonUnchecked": { + "keywords": ["unselected option", "empty choice", "not selected", "choose option"], + "visual": "empty circle with no markings inside" + }, + "RailwayAlert": { + "keywords": ["train delay", "service disruption", "transit alert", "railway warning"], + "visual": "train front with an exclamation mark in a circle beside it" + }, + "RamenDining": { + "keywords": ["soup", "asian food", "japanese food", "noodle bowl", "chopsticks"], + "visual": "bowl with chopsticks resting above it" + }, + "RampLeft": { + "keywords": ["merge left", "highway ramp", "on-ramp", "freeway merge", "road sign"], + "visual": "upward arrow with a shorter diagonal line merging into it from the lower left" + }, + "RampRight": { + "keywords": ["merge right", "highway ramp", "on-ramp", "freeway merge", "road sign"], + "visual": "upward arrow with a shorter diagonal line merging into it from the lower right" + }, + "RateReview": { + "keywords": ["write review", "rate product", "star rating", "leave feedback", "testimonial"], + "visual": "speech bubble with a pencil and a horizontal line inside it" + }, + "RawOff": { + "keywords": ["raw format disabled", "jpeg mode", "camera raw off", "disable raw"], + "visual": "letters RAW crossed by a diagonal slash" + }, + "RawOn": { + "keywords": ["raw format", "camera raw", "raw image", "unprocessed photo", "dslr format"], + "visual": "letters RAW in bold block text" + }, + "ReadMore": { + "keywords": ["expand", "see more", "continue reading", "view details", "show more"], + "visual": "right-pointing arrow beside three stacked horizontal lines" + }, + "RealEstateAgent": { + "keywords": ["realtor", "property listing", "housing agent", "home buying", "real estate"], + "visual": "hand holding up a small house shape beside a briefcase" + }, + "RebaseEdit": { + "keywords": [ + "git rebase", + "version control", + "edit commit", + "branch", + "commit history", + "source control", + "git history" + ], + "visual": "two connected circles with an arrow branching off to a third circle and a pencil" + }, + "Receipt": { + "keywords": ["proof of purchase", "order summary", "checkout", "bill of sale"], + "visual": "rectangular slip with a zigzag bottom edge and horizontal text lines" + }, + "ReceiptLong": { + "keywords": ["itemized bill", "order history", "long receipt", "purchase record"], + "visual": "curled paper slip with a folded corner and horizontal text lines" + }, + "RecentActors": { + "keywords": [ + "cast list", + "recent contacts", + "recently viewed", + "recent people", + "browsing history" + ], + "visual": "rectangular card with a person silhouette and two vertical bars beside it" + }, + "Recommend": { + "keywords": ["endorse", "upvote", "vouch for", "positive feedback"], + "visual": "circle containing a thumbs up hand" + }, + "RecordVoiceOver": { + "keywords": ["narration", "voiceover", "text to speech", "dictate", "announcer"], + "visual": "person head and shoulders with curved sound wave lines beside it" + }, + "Rectangle": { + "keywords": ["box", "oblong", "shape tool", "bar", "block"], + "visual": "plain rectangle shape with no markings" + }, + "Recycling": { + "keywords": [ + "recycle bin", + "reuse", + "environment", + "go green", + "waste management", + "circular economy" + ], + "visual": "three curved arrows chasing each other in a triangular loop" + }, + "Reddit": { + "keywords": ["forum", "community", "discussion board", "snoo", "online forum"], + "visual": "rounded alien head with two round eyes, an antenna, and a smiling mouth" + }, + "Redeem": { + "keywords": ["coupon", "voucher", "promo code", "loyalty points", "cash in reward"], + "visual": "gift card with a bow on top and a horizontal stripe near the bottom" + }, + "Redo": { + "keywords": ["repeat action", "do again", "forward action"], + "visual": "curved arrow looping forward to the right" + }, + "ReduceCapacity": { + "keywords": [ + "social distancing", + "limit occupancy", + "fewer people", + "capacity limit", + "group size" + ], + "visual": "row of three person silhouettes with a downward arrow above the middle one" + }, + "Refresh": { + "keywords": ["reload", "sync", "update", "restart page"], + "visual": "circular arrow forming most of a loop with an arrowhead at one end" + }, + "RememberMe": { + "keywords": ["saved login", "stay signed in", "keep me logged in", "auto login"], + "visual": "smartphone shape with a person silhouette on the screen" + }, + "Remove": { + "keywords": ["hide", "exclude", "take away", "collapse"], + "visual": "single horizontal line" + }, + "RemoveCircle": { + "keywords": ["cancel", "deny", "not allowed", "forbidden"], + "visual": "circle containing a horizontal minus line" + }, + "RemoveDone": { + "keywords": ["mark as unread", "undo complete", "uncheck", "revert status", "unread message"], + "visual": "two overlapping checkmarks crossed by a diagonal slash" + }, + "RemoveFromQueue": { + "keywords": ["dequeue", "cancel casting", "take off screen", "remove from list"], + "visual": "monitor screen with a horizontal minus line in the center" + }, + "RemoveModerator": { + "keywords": ["revoke admin", "demote", "remove permissions", "unprotect"], + "visual": "shield shape crossed by a diagonal slash" + }, + "RemoveRedEye": { + "keywords": ["view", "watch", "visible", "show password", "eye icon"], + "visual": "eye shape with a round pupil in the center" + }, + "RemoveRoad": { + "keywords": ["delete route", "cancel road", "remove street", "road closed"], + "visual": "two vertical dashed lane lines with an x mark over one of them" + }, + "RemoveShoppingCart": { + "keywords": ["empty cart", "cancel order", "clear cart", "delete cart"], + "visual": "shopping cart crossed by a diagonal slash" + }, + "Reorder": { + "keywords": ["drag handle", "rearrange", "sort list", "menu lines", "hamburger menu"], + "visual": "four stacked horizontal lines" + }, + "Repartition": { + "keywords": ["redistribute data", "shuffle data", "rebalance", "restructure table"], + "visual": "two horizontal bars connected by a looping arrow curving to the left" + }, + "Repeat": { + "keywords": ["loop playback", "repeat track", "cycle", "recurring"], + "visual": "two arrows forming a rectangular loop, pointing in opposite directions" + }, + "RepeatOn": { + "keywords": ["loop enabled", "repeat active", "playlist loop", "toggle repeat"], + "visual": "rounded square containing two arrows forming a loop" + }, + "RepeatOne": { + "keywords": ["repeat single track", "loop one song", "single track repeat"], + "visual": "two arrows forming a loop around the numeral 1" + }, + "RepeatOneOn": { + "keywords": ["repeat single track active", "loop one enabled", "single song repeat on"], + "visual": "rounded square containing two arrows forming a loop around the numeral 1" + }, + "Replay": { + "keywords": ["rewatch", "instant replay", "watch again", "play again"], + "visual": "circular arrow curving counterclockwise back to its starting arrowhead" + }, + "Replay10": { + "keywords": ["skip back 10 seconds", "rewind 10 seconds"], + "visual": "circular arrow curving counterclockwise around the number 10" + }, + "Replay30": { + "keywords": ["skip back 30 seconds", "rewind 30 seconds"], + "visual": "circular arrow curving counterclockwise around the number 30" + }, + "Replay5": { + "keywords": ["skip back 5 seconds", "rewind 5 seconds"], + "visual": "circular arrow curving counterclockwise around the number 5" + }, + "ReplayCircleFilled": { + "keywords": ["restart video", "replay button", "watch again"], + "visual": "circle containing a counterclockwise curving arrow" + }, + "Reply": { + "keywords": ["respond", "answer email", "quick reply"], + "visual": "curved arrow pointing left and down" + }, + "ReplyAll": { + "keywords": ["respond to everyone", "group reply", "reply to all recipients"], + "visual": "two curved arrows pointing left and down, overlapping" + }, + "Report": { + "keywords": ["stop sign", "flag content", "abuse report", "incident report"], + "visual": "octagon containing an exclamation mark" + }, + "ReportGmailerrorred": { + "keywords": ["email error", "gmail warning", "error notification", "spam alert"], + "visual": "octagon shape containing an exclamation mark" + }, + "ReportOff": { + "keywords": ["dismiss report", "ignore warning", "disable alert"], + "visual": "octagon shape crossed by a diagonal slash" + }, + "ReportProblem": { + "keywords": ["caution sign", "hazard", "flag issue", "error triangle"], + "visual": "triangle containing an exclamation mark" + }, + "RequestPage": { + "keywords": ["invoice request", "billing document", "payment request", "price sheet"], + "visual": "rounded document card with a dollar sign in the center" + }, + "RequestQuote": { + "keywords": ["estimate", "proposal", "price quote", "cost estimate"], + "visual": "document with a folded top right corner and a dollar sign in the center" + }, + "ResetTv": { + "keywords": ["factory reset tv", "restart display", "reset settings", "reboot screen"], + "visual": "television screen with a curved arrow pointing left inside it" + }, + "RestartAlt": { + "keywords": ["power cycle", "start over", "restart device"], + "visual": "circular arrow with a gap, curving counterclockwise" + }, + "Restaurant": { + "keywords": ["dine out", "eatery", "cafe", "place to eat"], + "visual": "fork and knife side by side" + }, + "RestaurantMenu": { + "keywords": ["order food", "food menu", "dining options"], + "visual": "crossed fork and spoon" + }, + "Restore": { + "keywords": ["recover", "version history", "roll back", "undo changes"], + "visual": "circular arrow curving counterclockwise around a clock face with hour and minute hands" + }, + "RestoreFromTrash": { + "keywords": ["undelete", "recover file", "bring back", "un-delete item"], + "visual": "trash can with an upward arrow on its front" + }, + "RestorePage": { + "keywords": ["revert document", "undo page", "page history", "recover version"], + "visual": "document page with a curved counterclockwise arrow in the center" + }, + "Reviews": { + "keywords": ["testimonial", "customer feedback", "star review", "ai insight"], + "visual": "speech bubble containing a sparkle star" + }, + "RiceBowl": { + "keywords": ["asian food", "rice dish", "poke bowl", "chopsticks", "bento"], + "visual": "round bowl shape with two vertical chopsticks resting across the top" + }, + "RingVolume": { + "keywords": ["ringtone volume", "ring settings", "call sound"], + "visual": "telephone handset with short radiating lines above it indicating ringing" + }, + "Rocket": { + "keywords": ["launch", "boost", "startup", "space travel", "performance boost"], + "visual": "rocket ship with a round window and flame fins at the base" + }, + "RocketLaunch": { + "keywords": ["liftoff", "blast off", "mission start", "new venture", "growth"], + "visual": "rocket tilted diagonally with a round window and flame trailing behind it" + }, + "RollerShades": { + "keywords": ["window covering", "smart home", "roller blind", "shade control"], + "visual": "window shade with a round pull tab hanging from the rolled bar at the top" + }, + "RollerShadesClosed": { + "keywords": ["closed blind", "privacy shade", "lowered shade", "blackout shade"], + "visual": "window shade fully lowered with a straight pull tab at the bottom" + }, + "RollerSkating": { + "keywords": ["rollerblading", "inline skates", "skate park", "roller derby"], + "visual": "roller skate boot with three wheels underneath and laces on top" + }, + "Roofing": { + "keywords": ["roof repair", "roofer", "contractor", "gable"], + "visual": "peaked roof shape above a small square window" + }, + "Room": { + "keywords": ["address", "venue", "meeting room", "geolocation"], + "visual": "teardrop-shaped map marker with a round hole near the top" + }, + "RoomPreferences": { + "keywords": [ + "office settings", + "workspace settings", + "room configuration", + "facility settings" + ], + "visual": "open door frame with a gear shape overlapping its bottom corner" + }, + "RoomService": { + "keywords": ["cloche", "food delivery", "hotel dining", "meal cover", "butler service"], + "visual": "domed serving tray lid on a flat base" + }, + "Rotate90DegreesCcw": { + "keywords": ["counterclockwise turn", "quarter turn", "flip image", "orientation"], + "visual": "diamond shape with a counterclockwise curved arrow wrapping around it" + }, + "Rotate90DegreesCw": { + "keywords": ["clockwise turn", "quarter turn", "flip image", "orientation"], + "visual": "diamond shape with a clockwise curved arrow wrapping around it" + }, + "RotateLeft": { + "keywords": ["counterclockwise", "turn left", "undo rotation"], + "visual": "dashed circular arrow curving counterclockwise" + }, + "RotateRight": { + "keywords": ["clockwise", "turn right", "redo rotation"], + "visual": "dashed circular arrow curving clockwise" + }, + "RoundaboutLeft": { + "keywords": ["traffic circle", "rotary", "exit left", "gps direction"], + "visual": "path curving up and around then exiting to the left with an arrowhead" + }, + "RoundaboutRight": { + "keywords": ["traffic circle", "rotary", "exit right", "gps direction"], + "visual": "path curving up and around then exiting to the right with an arrowhead" + }, + "RoundedCorner": { + "keywords": ["border radius", "corner radius", "curve corner", "fillet"], + "visual": "dashed square with one plain rounded corner" + }, + "Route": { + "keywords": ["itinerary", "journey", "trip planner", "waypoints"], + "visual": "winding zigzag path connecting a dot at one end to a dot at the other" + }, + "Router": { + "keywords": ["wifi router", "modem", "wireless access point", "network hardware"], + "visual": "rectangular router box with antenna signal arcs and small square buttons on the front" + }, + "Rowing": { + "keywords": ["crew", "kayaking", "oar", "water sport"], + "visual": "person leaning forward holding a long oar while seated" + }, + "RssFeed": { + "keywords": ["subscribe", "syndication", "news feed", "xml feed"], + "visual": "dot in the bottom left corner with curved signal arcs radiating from it" + }, + "Rsvp": { + "keywords": ["event invitation", "confirm attendance", "guest response"], + "visual": "letters RSVP in bold block text" + }, + "Rtt": { + "keywords": [ + "real-time text", + "accessibility", + "live captioning", + "deaf accessibility", + "telecommunication relay" + ], + "visual": "letter T beside stacked horizontal lines" + }, + "Rule": { + "keywords": [ + "checklist", + "to-do list", + "task list", + "criteria", + "requirements", + "compliance", + "grading", + "quiz", + "policy", + "guideline", + "audit", + "proofread" + ], + "visual": "two horizontal list lines with a checkmark above one and an x above the other" + }, + "RuleFolder": { + "keywords": [ + "checklist folder", + "audit folder", + "compliance folder", + "review folder", + "task folder", + "approved files", + "rejected files", + "quality control", + "policy folder", + "grading folder" + ], + "visual": "folder with a checkmark and an x on its front" + }, + "RunCircle": { + "keywords": [ + "jog", + "jogging", + "sprint", + "marathon", + "fitness", + "workout", + "cardio", + "athlete", + "activity tracker", + "step tracker" + ], + "visual": "person running with arms and legs bent, drawn inside a circle" + }, + "RunningWithErrors": { + "keywords": [ + "loading", + "progress", + "sync error", + "syncing issue", + "pie chart", + "percentage", + "upload error", + "download error", + "process failed", + "glitch" + ], + "visual": "partial pie chart with a wedge cut out and an exclamation mark beside it" + }, + "RvHookup": { + "keywords": [ + "camper", + "campervan", + "motorhome", + "caravan", + "recreational vehicle", + "road trip", + "camping", + "hitch", + "tow", + "swap direction" + ], + "visual": "camper van with two curved arrows pointing in opposite directions above it" + }, + "SafetyCheck": { + "keywords": [ + "inspection", + "health check", + "background check", + "insurance", + "guard", + "trust", + "protected", + "scan", + "badge" + ], + "visual": "shield shape containing a small round clock face with hands" + }, + "SafetyDivider": { + "keywords": [ + "social distancing", + "physical distancing", + "quarantine", + "isolation", + "personal space", + "barrier", + "partition", + "covid" + ], + "visual": "two person icons separated by a vertical line" + }, + "Sailing": { + "keywords": [ + "yacht", + "boating", + "regatta", + "nautical", + "marina", + "wind sport", + "vessel", + "leisure" + ], + "visual": "sailboat with two triangular sails floating on wavy water lines" + }, + "Sanitizer": { + "keywords": [ + "hand sanitizer", + "antiseptic", + "hygiene", + "sterilize", + "alcohol gel", + "soap", + "disinfectant", + "medical" + ], + "visual": "pump bottle with a cross on it and a drop falling beside it" + }, + "Satellite": { + "keywords": [ + "satellite view", + "aerial view", + "terrain view", + "map layer", + "thumbnail", + "placeholder image", + "scenery", + "gallery" + ], + "visual": "square photo frame with mountain peaks and a sun in the corner" + }, + "SatelliteAlt": { + "keywords": [ + "orbit", + "broadcast", + "gps", + "spacecraft", + "transmission", + "telecom", + "signal tower", + "solar panel" + ], + "visual": "satellite with solar panels and curved signal waves beside it" + }, + "Save": { + "keywords": ["backup", "memory", "confirm", "submit", "preserve", "keep", "retain", "archive"], + "visual": "floppy disk with a rectangular label and a circle on its face" + }, + "SaveAlt": { + "keywords": [ + "download", + "export", + "inbox", + "tray", + "receive", + "incoming", + "save to device", + "archive" + ], + "visual": "downward arrow pointing into an open-top tray or inbox shape" + }, + "SaveAs": { + "keywords": [ + "rename", + "duplicate", + "copy", + "save copy", + "revise", + "new version", + "update file" + ], + "visual": "floppy disk with a pencil at the bottom corner" + }, + "SavedSearch": { + "keywords": [ + "favorite search", + "bookmark search", + "search alert", + "saved query", + "starred search", + "pinned search", + "watchlist" + ], + "visual": "magnifying glass with a star inside its lens" + }, + "Savings": { + "keywords": [ + "savings account", + "budget", + "investment", + "nest egg", + "retirement fund", + "wealth", + "deposit" + ], + "visual": "piggy bank in profile with a coin slot on its back" + }, + "Scale": { + "keywords": [ + "weigh-in", + "bathroom scale", + "kitchen scale", + "mass", + "kilograms", + "pounds", + "diet", + "balance", + "gauge", + "weight loss" + ], + "visual": "weighing scale with a bowl on top and a dial gauge with a needle" + }, + "Scanner": { + "keywords": [ + "barcode scanner", + "qr scanner", + "scan", + "checkout", + "point of sale", + "price scan", + "laser scanner", + "inventory scan", + "scan gun" + ], + "visual": "handheld barcode scanner with lines across its body" + }, + "ScatterPlot": { + "keywords": [ + "scatter chart", + "scatter graph", + "data points", + "correlation", + "distribution", + "plotting", + "bubble chart" + ], + "visual": "three separate round dots scattered at different heights and positions" + }, + "Schedule": { + "keywords": [ + "appointment", + "timer", + "alarm", + "agenda", + "planner", + "timetable", + "deadline", + "reminder" + ], + "visual": "round clock face with hour and minute hands" + }, + "ScheduleSend": { + "keywords": [ + "send later", + "delayed send", + "scheduled email", + "timed message", + "future send", + "delay delivery", + "queued message" + ], + "visual": "paper airplane with a clock face overlapping its tail" + }, + "Schema": { + "keywords": [ + "flowchart", + "org chart", + "hierarchy", + "sitemap", + "database schema", + "architecture", + "tree diagram", + "workflow", + "blueprint" + ], + "visual": "connected squares linked by lines in a branching diagram" + }, + "School": { + "keywords": ["mortarboard", "diploma", "student", "degree", "alumni", "commencement", "study"], + "visual": "graduation cap with a tassel hanging to one side" + }, + "Science": { + "keywords": [ + "lab", + "erlenmeyer flask", + "chemist", + "biology", + "physics", + "scientist", + "potion", + "formula" + ], + "visual": "conical flask narrow at the top and wide at the base" + }, + "Score": { + "keywords": [ + "resolution", + "video quality", + "trend line", + "uptrend", + "growth", + "stock chart", + "performance", + "sales" + ], + "visual": "rounded square with the number 2k and a rising zigzag line" + }, + "Scoreboard": { + "keywords": [ + "tally", + "game score", + "match result", + "digital display", + "counter", + "tournament", + "leaderboard", + "game stats" + ], + "visual": "scoreboard panel with the digits 2 and 0 separated by dots" + }, + "ScreenLockLandscape": { + "keywords": [ + "landscape mode", + "horizontal lock", + "screen orientation", + "locked screen", + "auto-rotate off", + "wide screen" + ], + "visual": "wide rectangular screen with a padlock in the center" + }, + "ScreenLockPortrait": { + "keywords": [ + "portrait mode", + "vertical lock", + "screen orientation", + "locked screen", + "auto-rotate off", + "phone lock" + ], + "visual": "tall rectangular phone screen with a padlock in the center" + }, + "ScreenLockRotation": { + "keywords": [ + "disable auto-rotate", + "orientation lock", + "prevent rotation", + "fixed orientation", + "portrait landscape lock", + "auto-rotate off" + ], + "visual": "curved rotation arrows around a padlock with a phone shape" + }, + "ScreenRotation": { + "keywords": [ + "auto-rotate", + "orientation change", + "flip screen", + "portrait to landscape", + "tilt screen", + "screen orientation" + ], + "visual": "curved rotation arrows around a tilted rectangular screen" + }, + "ScreenRotationAlt": { + "keywords": ["refresh", "sync", "swap", "exchange", "loop", "cycle", "reload", "repeat"], + "visual": "two arrows forming a loop with opposite pointing arrowheads" + }, + "ScreenSearchDesktop": { + "keywords": [ + "search computer", + "laptop search", + "browser search", + "website search", + "search engine", + "pc search", + "find on screen" + ], + "visual": "laptop with a stand and a magnifying glass on its screen" + }, + "ScreenShare": { + "keywords": [ + "present screen", + "screencast", + "remote desktop", + "video call sharing", + "presentation", + "broadcast display", + "share desktop" + ], + "visual": "laptop screen with an arrow bending upward and to the right inside it" + }, + "Screenshot": { + "keywords": [ + "screen grab", + "screen capture", + "snip", + "snapshot", + "print screen", + "capture image" + ], + "visual": "phone shape with corner brackets framing the middle of its screen" + }, + "ScreenshotMonitor": { + "keywords": ["screen capture", "snip", "snapshot", "print screen", "capture computer screen"], + "visual": "desktop monitor with corner brackets framing its screen" + }, + "ScubaDiving": { + "keywords": [ + "diver", + "underwater", + "snorkeling", + "deep sea", + "water sport", + "dive mask", + "flippers", + "marine" + ], + "visual": "person swimming horizontally wearing a diving mask and fins" + }, + "Sd": { + "keywords": [ + "secure digital", + "memory card icon", + "storage badge", + "card label", + "microsd label" + ], + "visual": "rounded square badge with the letters s and d" + }, + "SdCard": { + "keywords": [ + "microsd", + "flash memory", + "expansion card", + "memory chip", + "removable storage", + "sd card slot" + ], + "visual": "memory card with notched corner and three contact pins at the top" + }, + "SdCardAlert": { + "keywords": [ + "corrupted card", + "card malfunction", + "card failure", + "sd error", + "faulty memory card" + ], + "visual": "memory card with notched corner and an exclamation mark" + }, + "SdStorage": { + "keywords": [ + "flash storage", + "expansion storage", + "memory capacity", + "removable storage", + "storage settings", + "device storage" + ], + "visual": "memory card with notched corner and three contact pins, slightly wider shape" + }, + "Search": { + "keywords": ["lookup", "explore", "browse", "query", "zoom", "inspect", "discover"], + "visual": "magnifying glass tilted with the handle at bottom right" + }, + "SearchOff": { + "keywords": [ + "no results", + "search unavailable", + "cancel search", + "clear query", + "remove search" + ], + "visual": "magnifying glass with an x mark beside its lens" + }, + "Security": { + "keywords": [ + "cybersecurity", + "antivirus", + "firewall", + "safety", + "data protection", + "guard", + "encryption" + ], + "visual": "shield split into four quadrants like a checkerboard" + }, + "SecurityUpdate": { + "keywords": [ + "software update", + "patch", + "firmware update", + "system update", + "install update", + "update available" + ], + "visual": "phone with a downward arrow on its screen" + }, + "SecurityUpdateGood": { + "keywords": ["update successful", "up to date", "patched", "update complete", "device secure"], + "visual": "phone shape with a bold checkmark on its screen" + }, + "SecurityUpdateWarning": { + "keywords": [ + "update needed", + "outdated software", + "vulnerable device", + "update required", + "security risk", + "out of date" + ], + "visual": "phone with an exclamation mark on its screen" + }, + "Segment": { + "keywords": [ + "target audience", + "user segment", + "marketing funnel", + "data segmentation", + "sales funnel", + "customer group" + ], + "visual": "three horizontal bars of decreasing width stacked like a funnel" + }, + "SelectAll": { + "keywords": [ + "marquee select", + "crop tool", + "highlight all", + "lasso tool", + "bounding box", + "select region" + ], + "visual": "square shape made of dashed corners with a smaller square in the center" + }, + "SelfImprovement": { + "keywords": [ + "mindfulness", + "mental health", + "self-care", + "personal growth", + "therapy", + "lotus position", + "spirituality", + "breathing exercise" + ], + "visual": "person sitting cross-legged with arms resting in a meditation pose" + }, + "Sell": { + "keywords": ["discount", "sale", "label", "promotion", "offer", "retail", "merchandise"], + "visual": "price tag shape with a hole in the corner" + }, + "Send": { + "keywords": ["submit", "dispatch", "transmit", "deliver", "forward", "sms"], + "visual": "paper airplane shape pointing to the right with a folded wing" + }, + "SendAndArchive": { + "keywords": [ + "archive email", + "file away", + "move to archive", + "send and store", + "put away message" + ], + "visual": "paper airplane pointing right into a box with a downward arrow" + }, + "SendTimeExtension": { + "keywords": [ + "delay send", + "snooze message", + "extend deadline", + "postpone", + "timed delivery", + "follow up later" + ], + "visual": "paper airplane pointing right overlapping a clock face" + }, + "SendToMobile": { + "keywords": [ + "transfer to phone", + "push to device", + "sync to phone", + "hand off", + "cast to phone" + ], + "visual": "phone shape with an arrow pointing out of its side" + }, + "SensorDoor": { + "keywords": [ + "door sensor", + "entry detector", + "smart home", + "access control", + "open door alert", + "doorway" + ], + "visual": "rectangular door shape with a small round doorknob on one side" + }, + "SensorOccupied": { + "keywords": [ + "motion sensor", + "presence detection", + "occupancy", + "room occupied", + "proximity sensor" + ], + "visual": "person inside a circle made of dashed arc segments" + }, + "SensorWindow": { + "keywords": [ + "window sensor", + "glass break detector", + "smart home", + "window contact", + "entry alert" + ], + "visual": "window pane divided into two horizontal sections by a crossbar" + }, + "Sensors": { + "keywords": ["bluetooth", "broadcasting", "transmitter", "detector", "iot", "radar", "ping"], + "visual": "dot at the center with curved signal waves radiating on both sides" + }, + "SensorsOff": { + "keywords": ["no signal", "offline", "disconnected", "mute sensor", "tracking off"], + "visual": "dot with curved signal waves and a diagonal slash through it" + }, + "SentimentDissatisfied": { + "keywords": ["rating", "feedback", "poor rating", "negative feedback", "displeased"], + "visual": "round face with two dot eyes and a slightly downturned mouth" + }, + "SentimentNeutral": { + "keywords": ["meh", "average rating", "so-so", "neutral feedback", "blank expression"], + "visual": "round face with two dot eyes and a straight horizontal mouth" + }, + "SentimentSatisfied": { + "keywords": ["rating", "positive feedback", "content", "satisfaction", "good mood"], + "visual": "round face with two dot eyes and a small upward curved smile" + }, + "SentimentSatisfiedAlt": { + "keywords": ["joyful", "cheerful", "delighted", "grinning", "positive review"], + "visual": "round face with two dot eyes and a wider upward curved smile" + }, + "SentimentVeryDissatisfied": { + "keywords": ["furious", "terrible rating", "very bad feedback", "rage", "distressed"], + "visual": "round face with two dot eyes and a deep downturned frown" + }, + "SentimentVerySatisfied": { + "keywords": ["ecstatic", "thrilled", "excited", "laughing", "best rating", "overjoyed"], + "visual": "round face with two dot eyes and a wide open grinning mouth" + }, + "SetMeal": { + "keywords": [ + "bento box", + "combo meal", + "japanese food", + "sushi", + "tray meal", + "fixed menu", + "meal tray" + ], + "visual": "fish shape inside a rounded rectangle with two horizontal lines beneath it" + }, + "Settings": { + "keywords": ["cog", "preferences", "configuration", "control panel", "adjust", "admin panel"], + "visual": "gear with rounded teeth around the rim and a round hole in the center" + }, + "SettingsAccessibility": { + "keywords": [ + "disability", + "adaptive", + "universal design", + "ergonomics", + "assistive technology", + "inclusive design" + ], + "visual": "person with arms stretched out standing above three small squares" + }, + "SettingsApplications": { + "keywords": [ + "app settings", + "app preferences", + "system settings", + "configuration panel", + "app config", + "control panel" + ], + "visual": "gear shape with rounded teeth inside a rounded square frame" + }, + "SettingsBackupRestore": { + "keywords": ["revert", "roll back", "recovery", "data sync"], + "visual": "circular arrow curving counterclockwise with an arrowhead pointing down" + }, + "SettingsBluetooth": { + "keywords": [ + "bluetooth settings", + "pairing", + "wireless headphones", + "bt icon", + "device pairing" + ], + "visual": "angular bluetooth rune symbol above a row of three small squares" + }, + "SettingsBrightness": { + "keywords": [ + "display brightness", + "screen brightness", + "contrast", + "dimmer", + "day night mode", + "auto brightness" + ], + "visual": "rounded rectangle frame containing a sun split half shaded and half open" + }, + "SettingsCell": { + "keywords": [ + "mobile settings", + "cellular settings", + "phone settings", + "network settings", + "sim settings" + ], + "visual": "phone shape positioned above a row of three small squares" + }, + "SettingsEthernet": { + "keywords": ["ethernet cable", "lan", "wired network", "code brackets", "network cable"], + "visual": "left and right facing arrow brackets with dots between them" + }, + "SettingsInputAntenna": { + "keywords": ["tv antenna", "broadcast signal", "aerial", "radio waves", "tower signal"], + "visual": "curved signal arcs radiating above an antenna post with two angled legs" + }, + "SettingsInputComponent": { + "keywords": [ + "rca cables", + "component video", + "home theater", + "three prong plug", + "tv input", + "cable jacks" + ], + "visual": "three cable connectors with tapered plug tips in a single row" + }, + "SettingsInputComposite": { + "keywords": ["composite cable", "av jacks", "rca connectors", "multi cable input", "six pin"], + "visual": "six cable connectors with tapered plug tips arranged in two rows" + }, + "SettingsInputHdmi": { + "keywords": [ + "high definition multimedia interface", + "tv port", + "display port", + "monitor cable", + "hdmi port" + ], + "visual": "trapezoidal plug connector with small pins along its top edge" + }, + "SettingsInputSvideo": { + "keywords": ["super video", "mini din connector", "analog video", "tv connector", "round plug"], + "visual": "circular connector shape with a notch at top and several round pins inside" + }, + "SettingsOverscan": { + "keywords": [ + "fit to screen", + "resize display", + "tv calibration", + "stretch image", + "screen size adjustment" + ], + "visual": "rounded square frame with arrows pointing outward toward each edge" + }, + "SettingsPhone": { + "keywords": [ + "call settings", + "phone preferences", + "dial settings", + "handset settings", + "telecom settings" + ], + "visual": "phone handset shape above a row of three small dots" + }, + "SettingsPower": { + "keywords": ["power settings", "restart", "reboot", "standby", "sleep mode", "turn on off"], + "visual": "circular power button symbol above a row of three small squares" + }, + "SettingsRemote": { + "keywords": ["tv remote", "infrared", "universal remote", "clicker", "remote settings"], + "visual": "remote control with a rounded top button and curved signal waves above it" + }, + "SettingsSuggest": { + "keywords": [ + "ai settings", + "auto configure", + "machine learning", + "recommended settings", + "optimize" + ], + "visual": "gear with rounded teeth and small sparkle stars beside it" + }, + "SettingsSystemDaydream": { + "keywords": ["screensaver", "idle mode", "cloud sync", "display sleep", "ambient mode"], + "visual": "rounded rectangle frame containing a puffy cloud shape" + }, + "SettingsVoice": { + "keywords": [ + "voice control", + "voice command", + "speech recognition", + "voice assistant", + "audio settings" + ], + "visual": "microphone on a stand above a row of three small dots" + }, + "SevenK": { + "keywords": [ + "ultra hd", + "screen quality", + "picture quality", + "streaming quality", + "quality label" + ], + "visual": "rounded square badge with the text 7k in bold letters" + }, + "SevenKPlus": { + "keywords": [ + "enhanced resolution", + "premium quality", + "high resolution plus", + "quality badge", + "upgraded resolution" + ], + "visual": "rounded square badge with the text 7k plus in bold letters" + }, + "SevenMp": { + "keywords": ["camera sensor", "pixel count", "camera spec", "sensor size", "photo badge"], + "visual": "rounded square badge with the text 7 mp stacked" + }, + "SeventeenMp": { + "keywords": ["camera sensor", "pixel count", "camera spec", "sensor size", "photo badge"], + "visual": "rounded square badge with the text 17 mp stacked" + }, + "SevereCold": { + "keywords": [ + "frost warning", + "freeze warning", + "extreme cold", + "blizzard", + "hypothermia risk", + "ice storm" + ], + "visual": "snowflake with radiating spikes and an exclamation mark beside it" + }, + "ShapeLine": { + "keywords": [ + "connect shapes", + "line tool", + "vector shapes", + "geometry", + "node connector", + "path drawing" + ], + "visual": "two circles and a rounded square connected by diagonal lines" + }, + "Share": { + "keywords": ["airdrop", "distribute", "broadcast", "export", "send to"], + "visual": "three dots connected by two diagonal lines forming a branching network" + }, + "ShareLocation": { + "keywords": [ + "share my location", + "live location", + "find friends", + "location sharing", + "check-in" + ], + "visual": "location pin inside a circle made of dashed arc segments" + }, + "Shelves": { + "keywords": [ + "bookshelf", + "storage rack", + "warehouse", + "inventory rack", + "bookcase", + "pantry", + "library" + ], + "visual": "shelving unit with vertical dividers and small boxes on different levels" + }, + "Shield": { + "keywords": ["antivirus", "safety", "guard", "armor", "defense", "insurance"], + "visual": "shield shape with a flat top edge and a pointed bottom tip" + }, + "ShieldMoon": { + "keywords": ["do not disturb", "quiet hours", "focus mode", "sleep protection", "bedtime mode"], + "visual": "shield shape with a crescent moon in the center" + }, + "Shop": { + "keywords": ["play store", "app store", "marketplace", "business", "e-commerce"], + "visual": "briefcase with a play triangle in the center" + }, + "Shop2": { + "keywords": ["play store", "app store", "marketplace", "storefront", "business"], + "visual": "briefcase with a play triangle in the center and a second shape peeking out behind it" + }, + "ShopTwo": { + "keywords": ["play store", "app store", "marketplace", "storefront", "business"], + "visual": "briefcase with a play triangle in the center and a wider second shape behind it" + }, + "ShoppingBag": { + "keywords": ["tote bag", "retail bag", "carry bag", "boutique", "mall"], + "visual": "shopping bag with two curved handles at the top" + }, + "ShoppingBasket": { + "keywords": ["grocery basket", "market basket", "picnic basket", "wicker basket", "hamper"], + "visual": "woven shopping basket with a triangular handle and a circle on its front" + }, + "ShoppingCart": { + "keywords": ["trolley", "grocery cart", "supermarket cart", "wheeled cart", "push cart"], + "visual": "shopping cart with two wheels seen from the side" + }, + "ShoppingCartCheckout": { + "keywords": [ + "proceed to checkout", + "place order", + "complete purchase", + "buy now", + "finalize order" + ], + "visual": "shopping cart with two wheels and an arrow pointing right through a bracket" + }, + "ShortText": { + "keywords": ["form field", "text field", "short answer", "title field", "subject line"], + "visual": "two horizontal lines of unequal length, one shorter than the other" + }, + "Shortcut": { + "keywords": ["quick link", "detour", "turn", "redirect", "fast path", "bypass"], + "visual": "arrow curving upward then bending sharply to point right" + }, + "ShowChart": { + "keywords": [ + "uptrend", + "growth", + "stock market", + "performance graph", + "rising line", + "market trend" + ], + "visual": "jagged upward trending line with a peak and a rising end" + }, + "Shower": { + "keywords": ["showerhead", "bathe", "rinse", "spa", "hygiene"], + "visual": "round showerhead on a pipe with several drops falling below it" + }, + "Shuffle": { + "keywords": ["randomize", "mix", "playlist shuffle", "swap order", "scramble"], + "visual": "two diagonal arrows crossing over each other in an x shape" + }, + "ShuffleOn": { + "keywords": [ + "shuffle enabled", + "shuffle active", + "randomize on", + "mix mode on", + "toggle shuffle" + ], + "visual": "two diagonal crossing arrows inside a rounded square frame" + }, + "ShutterSpeed": { + "keywords": ["exposure time", "f-stop", "dslr", "exposure control", "camera mode"], + "visual": "camera aperture blades inside a circular stopwatch with a button on top" + }, + "Sick": { + "keywords": ["nauseous", "unwell", "queasy", "vomit", "symptom", "dizzy"], + "visual": "round face with x shaped eyes, a frown, and a sweat drop" + }, + "SignLanguage": { + "keywords": ["asl", "american sign language", "hearing impaired", "interpreter"], + "visual": "raised open hand with spread fingers next to a lower flat hand" + }, + "SignalCellular0Bar": { + "keywords": [ + "no signal", + "no bars", + "reception", + "signal strength", + "dead zone", + "signal indicator" + ], + "visual": "right triangle with an empty interior" + }, + "SignalCellular1Bar": { + "keywords": [ + "signal strength", + "low signal", + "weak signal", + "one bar", + "poor reception", + "cellular bars", + "reception indicator" + ], + "visual": "right triangle with a small wedge shaded at the bottom left and the rest left empty" + }, + "SignalCellular2Bar": { + "keywords": [ + "signal strength", + "medium signal", + "two bars", + "fair reception", + "cellular bars", + "reception indicator" + ], + "visual": "right triangle shaded about halfway from the bottom left corner" + }, + "SignalCellular3Bar": { + "keywords": [ + "signal strength", + "strong signal", + "three bars", + "good reception", + "cellular bars", + "reception indicator" + ], + "visual": "right triangle mostly shaded, leaving a small empty wedge at the top right" + }, + "SignalCellular4Bar": { + "keywords": [ + "full signal", + "excellent reception", + "four bars", + "max signal", + "strong reception", + "signal strength" + ], + "visual": "right triangle completely shaded from corner to corner" + }, + "SignalCellularAlt": { + "keywords": [ + "signal strength", + "reception bars", + "cellular signal", + "increasing bars", + "signal meter" + ], + "visual": "three vertical bars increasing in height from left to right" + }, + "SignalCellularAlt1Bar": { + "keywords": ["weak signal", "low signal", "one bar", "poor reception", "signal strength"], + "visual": "single short vertical bar standing alone with no other bars" + }, + "SignalCellularAlt2Bar": { + "keywords": [ + "medium signal", + "two bars", + "fair reception", + "signal strength", + "moderate signal" + ], + "visual": "two vertical bars, a short one and a taller one beside it" + }, + "SignalCellularConnectedNoInternet0Bar": { + "keywords": [ + "connected no internet", + "limited connectivity", + "no data connection", + "network issue", + "internet unavailable" + ], + "visual": "right triangle shape with an exclamation mark badge at the bottom right" + }, + "SignalCellularConnectedNoInternet1Bar": { + "keywords": [ + "connected no internet", + "weak signal no internet", + "limited connectivity", + "no data connection", + "network issue" + ], + "visual": "right triangle shaded about a third at the bottom left with an exclamation mark badge at the bottom right" + }, + "SignalCellularConnectedNoInternet2Bar": { + "keywords": [ + "connected no internet", + "medium signal no internet", + "limited connectivity", + "no data connection", + "network issue" + ], + "visual": "right triangle shaded about half at the bottom left with an exclamation mark badge at the bottom right" + }, + "SignalCellularConnectedNoInternet3Bar": { + "keywords": [ + "connected no internet", + "strong signal no internet", + "limited connectivity", + "no data connection", + "network issue" + ], + "visual": "right triangle mostly shaded with an exclamation mark badge at the bottom right" + }, + "SignalCellularConnectedNoInternet4Bar": { + "keywords": [ + "connected no internet", + "full signal no internet", + "limited connectivity", + "no data connection", + "internet unavailable" + ], + "visual": "right triangle completely shaded with an exclamation mark badge at the bottom right" + }, + "SignalCellularNoSim": { + "keywords": ["no sim card", "missing sim", "sim error", "insert sim", "sim not detected"], + "visual": "rounded card shape with a diagonal slash through it" + }, + "SignalCellularNodata": { + "keywords": ["no data", "data disabled", "cellular data off", "data blocked", "no connection"], + "visual": "right triangle shaded at the bottom left with an x mark badge at the bottom right" + }, + "SignalCellularNull": { + "keywords": [ + "no signal", + "empty signal", + "signal strength", + "reception indicator", + "signal icon" + ], + "visual": "right triangle drawn thin with an empty interior" + }, + "SignalCellularOff": { + "keywords": [ + "signal off", + "cellular disabled", + "airplane mode", + "no reception", + "turn off signal" + ], + "visual": "triangle wedge shape with a diagonal slash through it" + }, + "SignalWifi0Bar": { + "keywords": ["no wifi signal", "wifi off", "no connection", "wifi strength", "empty wifi bars"], + "visual": "wifi wedge with just a thin edge and empty interior" + }, + "SignalWifi1Bar": { + "keywords": ["weak wifi", "low wifi signal", "one bar wifi", "poor wifi", "wifi strength"], + "visual": "wifi wedge with only the small bottom tip shaded and the rest left light" + }, + "SignalWifi1BarLock": { + "keywords": [ + "weak secured wifi", + "locked wifi", + "password protected wifi", + "low signal secure network", + "private network" + ], + "visual": "wifi wedge with only the bottom tip shaded and a padlock badge at the bottom right" + }, + "SignalWifi2Bar": { + "keywords": [ + "medium wifi", + "fair wifi signal", + "two bar wifi", + "moderate wifi", + "wifi strength" + ], + "visual": "wifi wedge shaded about halfway from the bottom, rest left light" + }, + "SignalWifi2BarLock": { + "keywords": [ + "medium secured wifi", + "locked wifi", + "password protected wifi", + "secure network", + "private network" + ], + "visual": "wifi wedge shaded about halfway with a padlock badge at the bottom right" + }, + "SignalWifi3Bar": { + "keywords": [ + "strong wifi", + "good wifi signal", + "three bar wifi", + "high wifi strength", + "wifi strength" + ], + "visual": "wifi wedge mostly shaded with only a thin arc left light at the top" + }, + "SignalWifi3BarLock": { + "keywords": [ + "strong secured wifi", + "locked wifi", + "password protected wifi", + "secure network", + "private network" + ], + "visual": "wifi wedge mostly shaded with a padlock badge at the bottom right" + }, + "SignalWifi4Bar": { + "keywords": [ + "full wifi signal", + "excellent wifi", + "max wifi strength", + "strong wifi", + "connected" + ], + "visual": "wifi wedge shape completely shaded with no light areas" + }, + "SignalWifi4BarLock": { + "keywords": [ + "full signal secured", + "encrypted wifi", + "trusted network", + "home network", + "office wifi" + ], + "visual": "wifi wedge completely shaded with a padlock badge at the bottom right" + }, + "SignalWifiBad": { + "keywords": [ + "bad connection", + "wifi error", + "connection failed", + "unreliable wifi", + "wifi problem" + ], + "visual": "wifi wedge with a notch cut from the bottom right and an x mark badge there" + }, + "SignalWifiConnectedNoInternet4": { + "keywords": [ + "connected no internet", + "wifi no internet", + "limited connection", + "internet unavailable", + "captive portal" + ], + "visual": "wifi wedge completely shaded with a notch and an x mark badge at the bottom right" + }, + "SignalWifiOff": { + "keywords": ["wifi disabled", "turn off wifi", "no wifi", "disconnect wifi", "airplane mode"], + "visual": "wifi wedge shape with a diagonal slash through it" + }, + "SignalWifiStatusbar4Bar": { + "keywords": [ + "full wifi", + "status bar icon", + "connected wifi", + "strong signal", + "wifi indicator" + ], + "visual": "wifi wedge completely shaded, slightly narrower than other wifi wedge shapes" + }, + "SignalWifiStatusbarConnectedNoInternet4": { + "keywords": [ + "connected no internet", + "wifi warning", + "limited connectivity", + "internet unavailable", + "network problem" + ], + "visual": "wifi wedge completely shaded with a notch and an exclamation mark badge at the bottom right" + }, + "SignalWifiStatusbarNull": { + "keywords": ["no wifi", "empty signal", "signal strength", "wifi indicator", "status bar icon"], + "visual": "wifi wedge drawn thin with an empty interior" + }, + "Signpost": { + "keywords": ["road sign", "crossroads", "wayfinding", "guidepost", "navigate"], + "visual": "post with two arrow-shaped signs pointing left and right" + }, + "SimCard": { + "keywords": [ + "sim slot", + "subscriber identity module", + "cellular chip", + "insert sim", + "mobile carrier" + ], + "visual": "memory card with notched corner and a grid of small squares" + }, + "SimCardAlert": { + "keywords": [ + "sim error", + "sim card issue", + "sim not detected", + "faulty sim", + "sim card problem" + ], + "visual": "memory card with notched corner and an exclamation mark" + }, + "SimCardDownload": { + "keywords": [ + "esim download", + "activate sim", + "sim provisioning", + "download profile", + "install sim" + ], + "visual": "memory card with notched corner and a downward arrow" + }, + "SingleBed": { + "keywords": ["single room", "cot", "dorm bed", "bunk bed", "hostel"], + "visual": "bed frame seen from the front with a pillow at the head" + }, + "Sip": { + "keywords": ["voip", "voice over ip", "internet telephony", "sip trunk", "softphone"], + "visual": "rounded rectangle badge with the text sip in bold letters" + }, + "SixK": { + "keywords": [ + "ultra hd", + "screen quality", + "picture quality", + "streaming quality", + "quality label" + ], + "visual": "rounded square badge with the text 6k in bold letters" + }, + "SixKPlus": { + "keywords": [ + "enhanced resolution", + "premium quality", + "high resolution plus", + "quality badge", + "upgraded resolution" + ], + "visual": "rounded square badge with the text 6k plus" + }, + "SixMp": { + "keywords": ["camera sensor", "pixel count", "camera spec", "sensor size", "photo badge"], + "visual": "rounded square badge with the text 6 mp stacked" + }, + "SixteenMp": { + "keywords": ["camera sensor", "pixel count", "camera spec", "sensor size", "photo badge"], + "visual": "rounded square badge with the text 16 mp stacked" + }, + "SixtyFps": { + "keywords": [ + "frames per second", + "smooth video", + "high frame rate", + "slow motion", + "frame rate setting" + ], + "visual": "large bold text reading the number 60 with no other marks" + }, + "SixtyFpsSelect": { + "keywords": [ + "frames per second", + "fps setting", + "selected frame rate", + "frame rate option", + "smooth video" + ], + "visual": "large text reading 60 with three small bars beneath it" + }, + "Skateboarding": { + "keywords": ["skater", "skate park", "extreme sport", "ollie", "longboard"], + "visual": "person leaning forward riding a skateboard with one arm extended" + }, + "SkipNext": { + "keywords": ["next track", "skip forward", "next song", "next chapter", "next episode"], + "visual": "triangle pointing right next to a vertical bar" + }, + "SkipPrevious": { + "keywords": ["previous track", "rewind", "skip back", "previous song", "restart track"], + "visual": "vertical bar next to a triangle pointing left" + }, + "Sledding": { + "keywords": ["toboggan", "sliding", "luge", "snow slide", "winter activity"], + "visual": "person sitting on a sled with legs extended forward" + }, + "Slideshow": { + "keywords": ["carousel", "gallery view", "photo album", "playback frame", "display photos"], + "visual": "play triangle inside a bordered square frame with rounded corners" + }, + "SlowMotionVideo": { + "keywords": ["slo-mo", "slow playback", "time lapse", "frame rate control", "video effect"], + "visual": "play triangle inside a circle made of dashed arc segments" + }, + "SmartButton": { + "keywords": ["ai button", "generate button", "magic wand", "smart action", "one click"], + "visual": "rounded rectangle button shape with sparkle stars beside it" + }, + "SmartDisplay": { + "keywords": [ + "smart tv", + "media player", + "cast device", + "streaming box", + "entertainment screen" + ], + "visual": "play triangle inside a wide rounded rectangle screen frame" + }, + "SmartScreen": { + "keywords": [ + "digital signage", + "dashboard screen", + "kiosk display", + "control panel screen", + "smart panel" + ], + "visual": "wide rounded rectangle frame containing three dots in a row" + }, + "SmartToy": { + "keywords": ["ai toy", "bot", "chatbot", "robotics", "artificial intelligence"], + "visual": "robot head with two round eyes and a rectangular mouth, antenna bumps on top" + }, + "Smartphone": { + "keywords": [ + "handset", + "touchscreen phone", + "portable device", + "phone display", + "smart device" + ], + "visual": "phone shape with a blank rectangular screen and rounded corners" + }, + "SmokeFree": { + "keywords": ["no smoking", "non-smoking area", "quit smoking", "smoking ban", "clean air zone"], + "visual": "lit cigarette with rising smoke lines and a diagonal slash through it" + }, + "SmokingRooms": { + "keywords": [ + "smoking area", + "smoking permitted", + "designated smoking", + "smoker's lounge", + "ashtray" + ], + "visual": "lit cigarette resting flat with rising smoke lines above it" + }, + "Sms": { + "keywords": [ + "text message", + "texting", + "typing indicator", + "instant message", + "short message service" + ], + "visual": "speech bubble with a pointed tail containing three dots" + }, + "SmsFailed": { + "keywords": [ + "message failed", + "text not sent", + "delivery failed", + "sending error", + "undelivered message" + ], + "visual": "speech bubble with a pointed tail containing an exclamation mark" + }, + "SnippetFolder": { + "keywords": ["code snippet", "saved snippet", "text snippet", "clip folder", "template folder"], + "visual": "folder with a page corner-fold shape with a letter d on its front" + }, + "Snooze": { + "keywords": ["sleep", "nap", "postpone", "delay reminder", "mute alarm"], + "visual": "alarm clock face with the letter z and two bells on top" + }, + "Snowboarding": { + "keywords": ["snowboard", "boarding", "mountain sport", "extreme sport", "slope"], + "visual": "person leaning forward riding a snowboard with arms bent" + }, + "Snowing": { + "keywords": [ + "snow", + "snowfall", + "flurries", + "winter weather", + "blizzard", + "precipitation", + "cold weather" + ], + "visual": "cluster of small dots arranged in a scattered grid pattern" + }, + "Snowmobile": { + "keywords": ["motor sled", "arctic vehicle", "snow vehicle", "off-road winter", "sled"], + "visual": "snowmobile with skis and a windshield seen from the side" + }, + "Snowshoeing": { + "keywords": ["snowshoe hike", "trekking", "winter hike", "snow trekking", "outdoor hike"], + "visual": "person walking with raised arm and legs mid-stride wearing snowshoes" + }, + "Soap": { + "keywords": ["hygiene", "foam", "bubbles", "sanitize", "handwashing"], + "visual": "hand with bubbles above it and horizontal lines across the palm" + }, + "SocialDistance": { + "keywords": [ + "physical distancing", + "quarantine", + "keep distance", + "covid measure", + "distance apart" + ], + "visual": "two person icons with a double headed arrow stretched between them" + }, + "SolarPower": { + "keywords": ["solar panel", "renewable", "photovoltaic", "green power", "clean energy"], + "visual": "solar panel array with sun rays shining above it" + }, + "Sort": { + "keywords": ["arrange", "ranking", "reorder", "sort order", "sequence"], + "visual": "three horizontal lines of decreasing length stacked with a small tick below" + }, + "SortByAlpha": { + "keywords": ["alphabetical order", "a to z", "sort names", "abc order", "ascending descending"], + "visual": "letters a and z with arrows pointing up and down between them" + }, + "Sos": { + "keywords": ["emergency", "distress signal", "mayday", "rescue", "panic button"], + "visual": "bold blocky letters spelling out sos in a row" + }, + "SoupKitchen": { + "keywords": ["cafeteria", "food bank", "charity meal", "homeless shelter", "ladle"], + "visual": "ladle resting in a bowl with steam rising above it" + }, + "Source": { + "keywords": ["repository", "codebase", "dev folder", "programming files", "script folder"], + "visual": "folder with two horizontal lines on its front like text" + }, + "South": { + "keywords": [ + "compass direction", + "cardinal direction", + "point down", + "downward direction", + "south bearing" + ], + "visual": "single arrow pointing straight down with a bold arrowhead" + }, + "SouthAmerica": { + "keywords": ["latin america", "brazil", "argentina", "world map", "globe"], + "visual": "globe circle with the shape of the South American continent" + }, + "SouthEast": { + "keywords": [ + "diagonal arrow", + "compass direction", + "lower right", + "se bearing", + "downward trend" + ], + "visual": "arrow pointing diagonally down and to the right" + }, + "SouthWest": { + "keywords": [ + "diagonal arrow", + "compass direction", + "lower left", + "sw bearing", + "downward trend" + ], + "visual": "arrow pointing diagonally down and to the left" + }, + "Spa": { + "keywords": ["lotus", "spa treatment", "self-care", "bloom", "botanical"], + "visual": "flower with rounded petals layered above a leaf shape" + }, + "SpaceBar": { + "keywords": ["spacebar key", "whitespace", "press space", "gap", "keyboard input"], + "visual": "wide horizontal bar with short vertical ticks at each end" + }, + "SpaceDashboard": { + "keywords": ["dashboard layout", "panel view", "widget grid", "admin panel", "split panels"], + "visual": "layout grid split into a large left panel and two smaller right panels" + }, + "SpatialAudio": { + "keywords": ["3d audio", "surround sound", "immersive audio", "dolby atmos", "binaural"], + "visual": "person with curved sound wave arcs radiating from the upper right of the head" + }, + "SpatialAudioOff": { + "keywords": [ + "3d audio off", + "surround sound off", + "spatial sound disabled", + "stereo mode", + "standard audio" + ], + "visual": "person with curved sound wave lines positioned beside the head at ear level" + }, + "SpatialTracking": { + "keywords": ["head tracking", "motion tracking", "dynamic audio", "ar audio", "spatial sensor"], + "visual": "person with curved sound wave arcs stacked vertically beside the head" + }, + "Speaker": { + "keywords": ["loudspeaker", "hi-fi", "woofer", "tweeter", "pa system"], + "visual": "speaker box with a small circle and a larger ringed circle for drivers" + }, + "SpeakerGroup": { + "keywords": [ + "multiroom audio", + "speaker array", + "surround speakers", + "speaker set", + "paired speakers" + ], + "visual": "two overlapping speaker boxes each with a small circle and a ringed circle" + }, + "SpeakerNotes": { + "keywords": ["presenter notes", "script", "talking points", "cue card", "presentation notes"], + "visual": "speech bubble with a pointed tail containing several horizontal text lines" + }, + "SpeakerNotesOff": { + "keywords": [ + "hide notes", + "notes hidden", + "disable captions", + "mute notes", + "turn off transcript" + ], + "visual": "speech bubble containing horizontal text lines with a diagonal slash through it" + }, + "SpeakerPhone": { + "keywords": ["speaker mode", "hands-free", "loudspeaker call", "conference call", "call audio"], + "visual": "phone shape with curved sound waves radiating above it" + }, + "Speed": { + "keywords": ["performance", "mph", "throttle", "acceleration", "rpm"], + "visual": "speedometer gauge with a needle pointing toward the upper right" + }, + "Spellcheck": { + "keywords": [ + "grammar check", + "autocorrect", + "spelling correction", + "correct spelling", + "language tool" + ], + "visual": "letter a with an accent mark next to a checkmark" + }, + "Splitscreen": { + "keywords": ["dual screen", "split view", "divided screen", "side by side", "half screen"], + "visual": "two rectangle outlines stacked one above the other" + }, + "Spoke": { + "keywords": ["hub and spoke", "node network", "topology", "cluster", "connected nodes"], + "visual": "three dots arranged in a triangle connected by lines to a center point" + }, + "Sports": { + "keywords": ["foul call", "gym class", "game start", "physical education", "umpire"], + "visual": "whistle with a round hole and a ring at the end" + }, + "SportsBar": { + "keywords": ["tavern", "brewery", "happy hour", "ale", "draft beer"], + "visual": "beer mug with foam on top and a handle on the side" + }, + "SportsBaseball": { + "keywords": ["mlb", "pitch", "home run", "softball", "batting"], + "visual": "ball with curved stitch marks on both sides" + }, + "SportsBasketball": { + "keywords": ["hoop", "dribble", "nba", "dunk", "court"], + "visual": "ball with curved panel lines dividing its surface" + }, + "SportsCricket": { + "keywords": ["wicket", "bowler", "batsman", "pitch", "innings"], + "visual": "cricket bat angled diagonally across a small round ball" + }, + "SportsEsports": { + "keywords": ["joystick", "tournament", "streamer", "pro gamer", "twitch"], + "visual": "game controller with a plus shaped d-pad and round buttons" + }, + "SportsFootball": { + "keywords": ["nfl", "touchdown", "quarterback", "pigskin", "gridiron"], + "visual": "oval football with laced stitching across the middle" + }, + "SportsGolf": { + "keywords": ["tee", "putt", "fairway", "pga", "golf course"], + "visual": "golf ball with dimples resting on a tee stand" + }, + "SportsGymnastics": { + "keywords": ["acrobatics", "tumbling", "flexibility", "balance beam", "floor routine"], + "visual": "person kicking one leg high into the air with arms raised" + }, + "SportsHandball": { + "keywords": ["throw", "goal", "olympic sport", "team sport", "court game"], + "visual": "person jumping with one arm raised toward a ball overhead" + }, + "SportsHockey": { + "keywords": ["nhl", "puck", "rink", "slap shot", "face-off"], + "visual": "two crossed hockey sticks with a puck between them" + }, + "SportsKabaddi": { + "keywords": ["grappling", "raid", "tag team", "indian sport", "team tackle"], + "visual": "two people grappling with one reaching toward the other" + }, + "SportsMartialArts": { + "keywords": ["taekwondo", "kickboxing", "kung fu", "self defense", "kick"], + "visual": "person performing a high side kick with arms bent" + }, + "SportsMma": { + "keywords": ["ufc", "cage fighting", "punch", "octagon", "fight night"], + "visual": "padded fighting glove with a wide rectangular wrist cuff" + }, + "SportsMotorsports": { + "keywords": ["racing", "formula 1", "motocross", "race car", "speedway"], + "visual": "racing helmet in profile with a curved visor across the front" + }, + "SportsRugby": { + "keywords": ["scrum", "try", "tackle", "line-out", "egg-shaped ball"], + "visual": "pointed oval ball with a curved seam line across it" + }, + "SportsScore": { + "keywords": ["finish line", "race flag", "checkered flag", "winner", "victory"], + "visual": "checkered flag with a grid pattern mounted on a pole" + }, + "SportsSoccer": { + "keywords": ["fifa", "kick", "goal", "pitch", "world cup"], + "visual": "ball with pentagon shaped panels across its surface" + }, + "SportsTennis": { + "keywords": ["wimbledon", "serve", "court", "ace", "volley"], + "visual": "racket with an oval head beside a small ball" + }, + "SportsVolleyball": { + "keywords": [ + "ball", + "beach volleyball", + "spike", + "serve", + "court", + "team sport", + "olympic sport", + "net sport" + ], + "visual": "circle with curved diagonal panel lines across its surface like the seams of a ball" + }, + "Square": { + "keywords": [ + "box", + "block", + "tile", + "frame", + "stop button", + "placeholder", + "geometry", + "rectangle" + ], + "visual": "plain square shape with no markings" + }, + "SquareFoot": { + "keywords": [ + "set square", + "carpenter square", + "drafting tool", + "architecture", + "geometry", + "area", + "flooring", + "real estate size", + "sqft", + "unit of area" + ], + "visual": "right-angle ruler shape with small tick marks along its diagonal edge" + }, + "SsidChart": { + "keywords": [ + "stock chart", + "trend", + "analytics", + "performance", + "signal strength", + "zigzag", + "line graph", + "data trend" + ], + "visual": "two stacked jagged zigzag lines like signal or stock chart traces" + }, + "StackedBarChart": { + "keywords": [ + "bar graph", + "histogram", + "segmented bars", + "comparison chart", + "dashboard", + "report", + "dataviz" + ], + "visual": "three vertical bars of different heights, each split into two stacked blocks" + }, + "StackedLineChart": { + "keywords": [ + "line graph", + "trend", + "growth", + "performance", + "dashboard", + "report", + "multiple lines", + "comparison" + ], + "visual": "two parallel jagged zigzag lines rising diagonally together like overlapping chart traces" + }, + "Stadium": { + "keywords": [ + "sports venue", + "football stadium", + "soccer stadium", + "concert venue", + "bleachers", + "flags", + "game location" + ], + "visual": "oval bowl shape with a gap at the bottom for an entrance and small triangular flags on top" + }, + "Stairs": { + "keywords": [ + "flight of stairs", + "level change", + "floor level", + "ascend", + "descend", + "accessibility", + "building" + ], + "visual": "rounded square containing a staircase shape ascending diagonally" + }, + "Star": { + "keywords": [ + "five pointed star", + "night sky", + "achievement", + "award", + "wish", + "premium", + "vip" + ], + "visual": "five-pointed star shape" + }, + "StarBorder": { + "keywords": ["empty star", "unfilled star", "hollow star", "unfavorited", "unselected", "wish"], + "visual": "five-pointed star shape with an open center" + }, + "StarBorderPurple500": { + "keywords": ["purple star", "colored star", "material color", "unfavorited", "hollow star"], + "visual": "five-pointed star with a thick border and a smaller star-shaped hole in its center" + }, + "StarHalf": { + "keywords": [ + "half star", + "partial rating", + "review score", + "half filled", + "3.5 stars", + "average rating", + "incomplete rating", + "split star" + ], + "visual": "five-pointed star split down the middle, shaded on the left half and open on the right half" + }, + "StarPurple500": { + "keywords": ["purple star", "colored star", "material color", "cutout star", "favorited"], + "visual": "five-pointed star with a smaller star-shaped hole cut into it, offset toward the bottom left" + }, + "StarRate": { + "keywords": ["review", "score", "feedback", "quality", "five star rating", "app rating"], + "visual": "five-pointed star shape used to show a rating" + }, + "Stars": { + "keywords": ["magic", "sparkle", "ai", "generate", "special effects", "badge"], + "visual": "circle with a five-pointed star in its center" + }, + "Start": { + "keywords": [ + "begin", + "launch", + "initiate", + "go", + "play", + "resume", + "step forward", + "next step", + "boot", + "onboarding" + ], + "visual": "vertical bar next to a right-pointing arrow" + }, + "StayCurrentLandscape": { + "keywords": [ + "rotate device", + "horizontal orientation", + "sideways phone", + "widescreen mode", + "lock rotation", + "smartphone", + "cellphone" + ], + "visual": "wide rounded rectangle representing a phone turned on its side with an open screen area" + }, + "StayCurrentPortrait": { + "keywords": [ + "rotate device", + "vertical orientation", + "upright phone", + "lock rotation", + "portrait mode", + "smartphone", + "cellphone" + ], + "visual": "tall rounded rectangle representing a phone held upright with an open screen area" + }, + "StayPrimaryLandscape": { + "keywords": [ + "rotate device", + "horizontal orientation", + "sideways phone", + "main screen", + "widescreen mode", + "smartphone" + ], + "visual": "wide rounded rectangle representing a phone turned on its side with an open screen area" + }, + "StayPrimaryPortrait": { + "keywords": [ + "rotate device", + "vertical orientation", + "upright phone", + "main screen", + "portrait mode", + "smartphone" + ], + "visual": "tall rounded rectangle representing a phone held upright with an open screen area" + }, + "StickyNote2": { + "keywords": ["post-it", "memo", "reminder", "notepad", "note taking", "annotation", "to-do"], + "visual": "square note with two horizontal text lines and a folded corner at the bottom right" + }, + "Stop": { + "keywords": ["halt", "end", "cancel", "terminate", "media control", "recording stop", "cease"], + "visual": "plain square shape with no markings" + }, + "StopCircle": { + "keywords": ["halt", "end", "cancel", "terminate", "recording stop", "media button"], + "visual": "circle with a square hole in its center" + }, + "StopScreenShare": { + "keywords": [ + "end screen share", + "disconnect", + "turn off sharing", + "presentation off", + "video call" + ], + "visual": "rectangular screen on a small stand with an arrow shape inside and a diagonal slash through it" + }, + "Storage": { + "keywords": [ + "hard drive", + "disk", + "data storage", + "cloud storage", + "backend", + "rack", + "servers" + ], + "visual": "three stacked horizontal bars, each with a small square dot near the left edge" + }, + "Store": { + "keywords": ["shop", "marketplace", "retail", "boutique", "mall"], + "visual": "building with a horizontal awning bar on top, two front legs, and a small square door between them" + }, + "StoreMallDirectory": { + "keywords": [ + "shop", + "store directory", + "mall map", + "wayfinding", + "shopping mall", + "business directory", + "storefront" + ], + "visual": "building with a horizontal awning bar on top, two front legs, and a small square door between them" + }, + "Storefront": { + "keywords": ["shop front", "awning", "market stall", "boutique", "small business"], + "visual": "square building with a scalloped striped awning across the top and a rectangular door below" + }, + "Storm": { + "keywords": ["tornado", "cyclone", "typhoon", "severe weather", "spiral", "weather warning"], + "visual": "spiral swirl shape curling around a small circular target at its center" + }, + "Straight": { + "keywords": ["go straight", "continue ahead", "straight ahead", "north", "direction arrow"], + "visual": "vertical arrow pointing straight up" + }, + "Straighten": { + "keywords": ["measure", "scale", "tape measure", "dimensions", "ruler tool"], + "visual": "ruler shape with evenly spaced tick marks along its top edge" + }, + "Stream": { + "keywords": [ + "loading spinner", + "buffering", + "live stream", + "broadcast", + "streaming media", + "radio waves", + "wifi" + ], + "visual": "circle made of dots and short dashes arranged radially like a loading spinner" + }, + "Streetview": { + "keywords": [ + "google street view", + "panorama", + "360 view", + "map pin", + "navigation", + "person marker" + ], + "visual": "person's head and shoulders in front of a folded photo panel" + }, + "StrikethroughS": { + "keywords": [ + "strikethrough text", + "delete formatting", + "cross out", + "crossed out text", + "cancel text" + ], + "visual": "letter S with a horizontal line struck through it" + }, + "Stroller": { + "keywords": [ + "pram", + "buggy", + "pushchair", + "baby carriage", + "walker", + "infant transport", + "baby wheels" + ], + "visual": "baby stroller with a hood and two wheels" + }, + "Style": { + "keywords": ["price tag", "label", "category", "theme", "css", "design", "product tag"], + "visual": "two overlapping price tags with a small hole near the corner" + }, + "SubdirectoryArrowLeft": { + "keywords": ["reply", "enter key", "return key", "nested", "indent", "sub-level", "turn left"], + "visual": "arrow that travels down then bends to point left" + }, + "SubdirectoryArrowRight": { + "keywords": [ + "reply", + "enter key", + "return key", + "nested", + "indent", + "sub-level", + "turn right", + "tab" + ], + "visual": "arrow that travels down then bends to point right" + }, + "Subject": { + "keywords": ["article", "paragraph", "topic", "description", "content", "text lines"], + "visual": "several horizontal lines of text stacked with the bottom line shorter" + }, + "Subscript": { + "keywords": ["chemical formula", "footnote", "math notation", "lower text", "h2o"], + "visual": "letter X with a small 2 set low beside it at the baseline" + }, + "Subscriptions": { + "keywords": [ + "video library", + "channel", + "feed", + "playlist stack", + "content library", + "media subscriptions", + "follow" + ], + "visual": "rectangle with a play triangle inside and two stacked lines above it like a video stack" + }, + "Subtitles": { + "keywords": [ + "cc", + "closed captions", + "transcript", + "video text", + "caption box", + "dialogue text", + "foreign language captions" + ], + "visual": "rounded rectangle containing two horizontal bars representing caption text" + }, + "SubtitlesOff": { + "keywords": [ + "cc off", + "captions disabled", + "no captions", + "mute text", + "captions turned off", + "disable subtitles", + "hide captions" + ], + "visual": "rounded rectangle containing horizontal caption bars with a diagonal slash through it" + }, + "Subway": { + "keywords": ["tram", "public transit", "mass transit", "commute", "mrt"], + "visual": "arched tunnel shape containing a train front with two round headlights" + }, + "Summarize": { + "keywords": ["tldr", "recap", "overview", "key points", "ai summary", "bullet points", "notes"], + "visual": "document page with a folded corner and three dots stacked vertically" + }, + "Sunny": { + "keywords": ["sun", "sunshine", "weather", "clear sky", "brightness", "daytime", "light mode"], + "visual": "sun with a circular center and short rays radiating outward all around" + }, + "SunnySnowing": { + "keywords": [ + "sun and snow", + "mixed weather", + "flurries", + "sleet", + "winter sun", + "partly sunny" + ], + "visual": "half sun with rays on top and small dots falling below it like snow" + }, + "Superscript": { + "keywords": [ + "exponent", + "footnote reference", + "math notation", + "power", + "squared", + "trademark symbol" + ], + "visual": "letter X with a small 2 set high beside it" + }, + "SupervisedUserCircle": { + "keywords": [ + "child account", + "kids mode", + "restricted account", + "monitored user", + "admin oversight" + ], + "visual": "circle containing a person silhouette with a small circle badge beside their head" + }, + "SupervisorAccount": { + "keywords": ["team lead", "manager", "oversight", "admin", "user management"], + "visual": "two person silhouettes side by side, one positioned slightly behind the other" + }, + "Support": { + "keywords": ["customer support", "help desk", "life ring", "life saver", "sos", "emergency"], + "visual": "life preserver ring shape with cross-shaped cutouts around a center hole" + }, + "SupportAgent": { + "keywords": ["call center", "help desk", "customer service rep", "live chat agent", "operator"], + "visual": "person's head wearing a headset with a microphone" + }, + "Surfing": { + "keywords": [ + "surfboard", + "wave riding", + "extreme sport", + "ocean sport", + "beach sport", + "board sport", + "catching waves" + ], + "visual": "person standing on a surfboard riding a wave" + }, + "SurroundSound": { + "keywords": ["5.1 audio", "home theater", "stereo", "dolby", "sound system"], + "visual": "rounded square containing a center circle with curved sound wave arcs on either side" + }, + "SwapCalls": { + "keywords": [ + "call transfer", + "switch calls", + "exchange", + "transfer call", + "phone call swap", + "hold call", + "two calls" + ], + "visual": "wavy S-shaped double arrow with one end pointing up and the other pointing down" + }, + "SwapHoriz": { + "keywords": ["exchange", "switch", "toggle", "transfer", "reorder"], + "visual": "two horizontal arrows stacked pointing in opposite directions, left and right" + }, + "SwapHorizontalCircle": { + "keywords": ["exchange", "switch", "toggle", "transfer", "convert"], + "visual": "circle containing two horizontal arrows pointing in opposite directions" + }, + "SwapVert": { + "keywords": ["exchange", "switch", "reorder", "sort order", "ascending descending"], + "visual": "two vertical arrows side by side pointing in opposite directions, up and down" + }, + "SwapVerticalCircle": { + "keywords": ["exchange", "switch", "sort", "reorder", "convert"], + "visual": "circle containing two vertical arrows pointing in opposite directions" + }, + "Swipe": { + "keywords": ["swipe gesture", "touchscreen", "mobile gesture", "drag", "tinder swipe"], + "visual": "hand with a pointing finger below a curved double-headed arrow sweeping left and right" + }, + "SwipeDown": { + "keywords": [ + "pull down", + "scroll down", + "refresh gesture", + "drag down", + "notification pull", + "swipe down gesture" + ], + "visual": "hand with a pointing finger below a curved arrow bending downward" + }, + "SwipeDownAlt": { + "keywords": [ + "pull down", + "scroll down", + "drag down", + "drop", + "downward gesture", + "minimize gesture" + ], + "visual": "circle sitting above a downward-pointing arrow" + }, + "SwipeLeft": { + "keywords": ["dismiss", "decline", "swipe away", "tinder reject", "discard"], + "visual": "hand with a pointing finger below a curved arrow sweeping to the left" + }, + "SwipeLeftAlt": { + "keywords": ["dismiss", "decline", "swipe away", "discard", "back gesture"], + "visual": "circle with a left-pointing arrow extending from it" + }, + "SwipeRight": { + "keywords": [ + "like", + "tinder accept", + "swipe approve", + "swipe gesture", + "next", + "approve gesture" + ], + "visual": "hand with a pointing finger below a curved arrow sweeping to the right" + }, + "SwipeRightAlt": { + "keywords": ["like", "approve", "tinder accept", "next", "swipe gesture", "right gesture"], + "visual": "circle with a right-pointing arrow extending from it" + }, + "SwipeUp": { + "keywords": [ + "scroll up", + "more info", + "story gesture", + "drag up", + "swipe up gesture", + "reveal more" + ], + "visual": "hand with a pointing finger below a curved arrow bending upward" + }, + "SwipeUpAlt": { + "keywords": ["scroll up", "drag up", "story gesture", "swipe up gesture", "upward gesture"], + "visual": "circle sitting below an upward-pointing arrow" + }, + "SwipeVertical": { + "keywords": [ + "scroll gesture", + "up and down swipe", + "two way swipe", + "vertical gesture", + "swipe up down" + ], + "visual": "hand with a pointing finger between two curved arrows, one bending up and one bending down" + }, + "SwitchAccessShortcut": { + "keywords": [ + "accessibility shortcut", + "assistive technology", + "ai suggestion", + "magic", + "sparkle" + ], + "visual": "curved arrow beside small sparkle shapes" + }, + "SwitchAccessShortcutAdd": { + "keywords": [ + "accessibility shortcut", + "add shortcut", + "assistive technology", + "new feature", + "add ai suggestion", + "create shortcut" + ], + "visual": "curved arrow beside sparkle shapes and a small plus sign" + }, + "SwitchAccount": { + "keywords": [ + "change user", + "multiple accounts", + "account switcher", + "user profile stack", + "switch profile", + "log in as different user" + ], + "visual": "stack of square cards with the front one displaying a person silhouette in a circle" + }, + "SwitchCamera": { + "keywords": [ + "flip camera", + "front back camera", + "rotate camera", + "selfie camera toggle", + "camera toggle" + ], + "visual": "camera body with a horizontal double-headed arrow across it" + }, + "SwitchLeft": { + "keywords": [ + "align left toggle", + "move left", + "panel toggle", + "sidebar left", + "left triangle", + "navigate left" + ], + "visual": "two triangles pointing away from each other with a gap between them, the left one open" + }, + "SwitchRight": { + "keywords": [ + "align right toggle", + "move right", + "panel toggle", + "sidebar right", + "right triangle", + "navigate right" + ], + "visual": "two triangles pointing away from each other with a gap between them, the right one open" + }, + "SwitchVideo": { + "keywords": [ + "flip camera", + "video call switch", + "front back camera", + "camera toggle video", + "switch camera during call" + ], + "visual": "video camera shape with a horizontal double-headed arrow across it" + }, + "Synagogue": { + "keywords": [ + "judaism", + "place of worship", + "house of worship", + "faith building", + "sanctuary", + "prayer house" + ], + "visual": "building with two domed towers flanking a center arched entrance under a dome roof" + }, + "Sync": { + "keywords": ["cloud sync", "update", "reload", "spinner", "synchronize", "syncing"], + "visual": "two curved arrows forming a circular loop" + }, + "SyncAlt": { + "keywords": [ + "exchange", + "transfer", + "swap data", + "refresh", + "data exchange", + "bidirectional sync" + ], + "visual": "two horizontal arrows stacked pointing in opposite directions" + }, + "SyncDisabled": { + "keywords": ["sync off", "offline", "sync error", "sync failed", "cloud sync off"], + "visual": "circular loop of two curved arrows with a diagonal slash through it" + }, + "SyncLock": { + "keywords": [ + "secure sync", + "encrypted sync", + "sync locked", + "backup security", + "locked sync", + "protected backup" + ], + "visual": "two curved arrows forming a loop around a padlock in the center" + }, + "SyncProblem": { + "keywords": [ + "sync failed", + "sync error", + "connection error", + "update failed", + "sync issue", + "warning sync" + ], + "visual": "two curved arrows forming a loop around an exclamation mark in the center" + }, + "SystemSecurityUpdate": { + "keywords": [ + "firmware update", + "patch", + "download update", + "software update", + "security patch", + "install update" + ], + "visual": "phone shape with a downward arrow on its screen" + }, + "SystemSecurityUpdateGood": { + "keywords": ["update installed", "up to date", "secure", "patched", "verified update"], + "visual": "phone shape with a checkmark on its screen" + }, + "SystemSecurityUpdateWarning": { + "keywords": [ + "update needed", + "security risk", + "outdated software", + "vulnerability", + "security alert", + "patch needed" + ], + "visual": "phone shape with an exclamation mark on its screen" + }, + "SystemUpdate": { + "keywords": ["firmware update", "software update", "patch", "upgrade", "ota update"], + "visual": "phone shape with a downward arrow on its screen" + }, + "SystemUpdateAlt": { + "keywords": ["import", "save file", "download file", "inbox", "receive"], + "visual": "open tray shape with a downward arrow pointing into it" + }, + "Tab": { + "keywords": ["browser tab", "new tab", "panel", "page", "folder tab"], + "visual": "rounded rectangle with a small tab in the top right corner" + }, + "TabUnselected": { + "keywords": [ + "inactive tab", + "browser tab", + "unfocused", + "placeholder tab", + "empty tab", + "dashed tab" + ], + "visual": "dashed rectangle with a small tab in the top right corner" + }, + "TableBar": { + "keywords": ["restaurant table", "bistro table", "pub table", "round table", "furniture"], + "visual": "round table top on a pedestal with splayed legs" + }, + "TableChart": { + "keywords": ["spreadsheet", "data table", "grid view", "columns", "dataset"], + "visual": "rectangle with a thick top bar divided below into vertical columns" + }, + "TableRestaurant": { + "keywords": [ + "dinner table", + "furniture", + "seating", + "reservation", + "dining table", + "table booking" + ], + "visual": "rectangular table top standing on two legs" + }, + "TableRows": { + "keywords": ["list view", "rows layout", "table rows", "horizontal lines", "stacked list"], + "visual": "three horizontal bars stacked one above the other" + }, + "TableView": { + "keywords": [ + "spreadsheet view", + "data grid", + "calculator", + "grid layout", + "table layout", + "view as table" + ], + "visual": "stack of square pages with the front one displaying a grid pattern" + }, + "Tablet": { + "keywords": ["slate device", "touchscreen device", "android tablet", "portable device"], + "visual": "rounded rectangle device with a smaller rectangle screen inset" + }, + "TabletAndroid": { + "keywords": ["android tablet", "touchscreen device", "portable device", "galaxy tab"], + "visual": "tall rounded rectangle device with a small line near the bottom" + }, + "TabletMac": { + "keywords": ["home button", "apple ipad", "touchscreen device", "mac tablet", "apple device"], + "visual": "rounded rectangle tablet with a small circular button at the bottom" + }, + "Tag": { + "keywords": ["hash sign", "number sign", "pound sign", "sharp symbol", "tag topic"], + "visual": "hash or pound symbol made of two crossing pairs of lines" + }, + "TagFaces": { + "keywords": ["smiley face", "grin", "laughing", "emoticon", "happy face"], + "visual": "circle face with two dot eyes and a wide open smile" + }, + "TakeoutDining": { + "keywords": [ + "takeaway", + "to go", + "food delivery box", + "doggy bag", + "carryout", + "food container" + ], + "visual": "takeout food container box with a triangular folded lid on top" + }, + "TapAndPlay": { + "keywords": ["nfc pairing", "cast", "wireless pairing", "tap to connect", "chromecast"], + "visual": "phone shape with curved wifi signal lines radiating from its bottom left corner" + }, + "Tapas": { + "keywords": ["skewers", "wine", "small plates", "spanish food", "drinks menu"], + "visual": "two food skewers with round pieces on them beside a stemmed wine glass" + }, + "Task": { + "keywords": ["to-do", "checklist item", "completed task", "assignment", "task list item"], + "visual": "document page with a folded corner and a checkmark on it" + }, + "TaskAlt": { + "keywords": ["to-do", "completed", "success", "done circle", "verified task"], + "visual": "circle with a checkmark inside" + }, + "TaxiAlert": { + "keywords": [ + "ride alert", + "taxi warning", + "cab notification", + "rideshare alert", + "taxi issue", + "ride notification" + ], + "visual": "car front view with a circle containing an exclamation mark above it" + }, + "Telegram": { + "keywords": [ + "telegram app", + "paper airplane", + "send message", + "messenger app", + "chat app", + "instant messaging" + ], + "visual": "paper airplane shape" + }, + "TempleBuddhist": { + "keywords": ["shrine", "zen", "asian temple", "japanese temple", "chinese temple"], + "visual": "pagoda building with a triangular roof peak and curved eaves over an archway" + }, + "TempleHindu": { + "keywords": [ + "shrine", + "indian temple", + "gopuram", + "sanctuary", + "mandir building", + "hindu worship place" + ], + "visual": "temple building with a stepped tower on top over an archway entrance" + }, + "TenMp": { + "keywords": [ + "10 megapixel", + "photo resolution", + "camera quality label", + "camera resolution", + "photo quality" + ], + "visual": "square containing the text 10 MP" + }, + "Terminal": { + "keywords": ["command line", "console", "cli", "bash", "shell", "coding", "developer tools"], + "visual": "rounded rectangle containing a greater-than symbol and an underscore like a command prompt" + }, + "Terrain": { + "keywords": ["hiking", "elevation", "topography", "hills", "map layer"], + "visual": "two overlapping triangular mountain peaks" + }, + "TextDecrease": { + "keywords": [ + "smaller text", + "shrink font", + "decrease font size", + "zoom out text", + "reduce text size", + "font size down" + ], + "visual": "letter A with a minus sign beside it" + }, + "TextFields": { + "keywords": [ + "font size", + "text input", + "form field", + "typography", + "input field", + "editable text" + ], + "visual": "large letter T beside a smaller letter t" + }, + "TextFormat": { + "keywords": [ + "text style", + "formatting", + "underline", + "typography options", + "text styling", + "case style" + ], + "visual": "letter A with a horizontal bar underlined beneath it" + }, + "TextIncrease": { + "keywords": [ + "larger text", + "enlarge font", + "increase font size", + "zoom in text", + "bigger text", + "accessibility text size" + ], + "visual": "letter A with a plus sign beside it" + }, + "TextRotateUp": { + "keywords": [ + "rotate text up", + "vertical text", + "text orientation", + "diagonal text", + "angled text", + "text tilt" + ], + "visual": "tilted letter A beside a small triangle and an upward arrow" + }, + "TextRotateVertical": { + "keywords": [ + "vertical text", + "stack text", + "text orientation", + "sideways text", + "flip text vertical" + ], + "visual": "downward arrow beside an upright letter A" + }, + "TextRotationAngledown": { + "keywords": [ + "rotate text down", + "diagonal text", + "tilt text", + "text angle", + "sloped text", + "angled downward text" + ], + "visual": "tilted letter A with a diagonal arrow pointing down and to the left" + }, + "TextRotationAngleup": { + "keywords": [ + "rotate text up", + "diagonal text", + "tilt text", + "text angle", + "sloped text", + "angled upward text" + ], + "visual": "tilted letter A with a diagonal arrow pointing up and to the right" + }, + "TextRotationDown": { + "keywords": [ + "rotate text down", + "vertical text", + "text orientation", + "flip text down", + "text facing down" + ], + "visual": "downward arrow beside a tilted letter A" + }, + "TextRotationNone": { + "keywords": [ + "reset rotation", + "horizontal text", + "normal text orientation", + "no rotation", + "default text angle", + "upright text" + ], + "visual": "upright letter A above a rightward arrow" + }, + "TextSnippet": { + "keywords": ["article", "clip", "excerpt", "text file", "memo"], + "visual": "document page with horizontal text lines and a folded corner" + }, + "Textsms": { + "keywords": [ + "text message", + "sms", + "typing indicator", + "chat bubble", + "instant message", + "conversation bubble" + ], + "visual": "speech bubble with a pointed tail containing three dots" + }, + "Texture": { + "keywords": ["hatching", "material pattern", "fabric", "background pattern", "fill pattern"], + "visual": "square covered with parallel diagonal stripes" + }, + "TheaterComedy": { + "keywords": [ + "drama masks", + "comedy tragedy", + "theatrical", + "performing arts", + "smile and frown masks", + "drama and comedy" + ], + "visual": "two drama masks overlapping, one smiling in front and one frowning behind" + }, + "Theaters": { + "keywords": [ + "cinema", + "movie theater", + "film reel", + "showtime", + "movie screening", + "box office" + ], + "visual": "film strip rectangle with square perforations along its edges and a horizontal divider" + }, + "Thermostat": { + "keywords": ["temperature control", "hvac", "heating", "cooling", "smart thermostat"], + "visual": "thermometer shape with a round bulb at the bottom and a small mark near the top" + }, + "ThermostatAuto": { + "keywords": [ + "auto temperature", + "climate control", + "hvac automatic", + "smart climate", + "automatic mode", + "temperature setting" + ], + "visual": "thermometer shape beside a capital letter A" + }, + "ThirteenMp": { + "keywords": [ + "13 megapixel", + "camera resolution", + "photo quality", + "high resolution photo", + "camera setting" + ], + "visual": "square containing the text 13 MP" + }, + "ThirtyFps": { + "keywords": [ + "30 frames per second", + "video speed", + "frame rate", + "slow motion", + "high frame rate", + "video capture speed" + ], + "visual": "text reading 30" + }, + "ThirtyFpsSelect": { + "keywords": [ + "frame rate selector", + "video setting", + "capture rate", + "select frame rate", + "video quality setting" + ], + "visual": "text reading 30 with small bars and a dot underneath" + }, + "ThreeDRotation": { + "keywords": [ + "3d model", + "rotate object", + "spin", + "augmented reality", + "three dimensional", + "orbit view" + ], + "visual": "text reading 3D with a curved arrow circling around it" + }, + "ThreeGMobiledata": { + "keywords": [ + "3g network", + "mobile data speed", + "cellular data", + "network speed indicator", + "cellular signal" + ], + "visual": "text reading 3G" + }, + "ThreeK": { + "keywords": [ + "3k resolution", + "display quality", + "screen resolution", + "3000p", + "video resolution" + ], + "visual": "square containing the text 3K" + }, + "ThreeKPlus": { + "keywords": [ + "3k+ resolution", + "display quality", + "screen resolution", + "3000p plus", + "enhanced resolution" + ], + "visual": "square containing the text 3K+" + }, + "ThreeMp": { + "keywords": [ + "3 megapixel", + "camera resolution", + "low resolution", + "basic camera quality", + "low megapixel" + ], + "visual": "square containing the text 3 MP" + }, + "ThreeP": { + "keywords": [ + "contact message", + "direct message", + "profile chat", + "dm", + "group message", + "person chat bubble" + ], + "visual": "speech bubble with a pointed tail containing a person silhouette" + }, + "ThreeSixty": { + "keywords": ["panorama", "spin view", "product view", "rotate view", "360 view"], + "visual": "circular arrow curving around to form a loop with an arrowhead" + }, + "ThumbDown": { + "keywords": [ + "bad feedback", + "downvote reaction", + "not helpful", + "poor rating", + "negative reaction", + "vote down" + ], + "visual": "hand giving a thumbs-down gesture beside a small vertical bar" + }, + "ThumbDownAlt": { + "keywords": [ + "disagree", + "unhelpful", + "negative feedback", + "boo", + "thumbs down reaction", + "dislike button" + ], + "visual": "hand giving a thumbs-down gesture beside a small vertical bar" + }, + "ThumbDownOffAlt": { + "keywords": [ + "not disliked", + "neutral", + "outline thumbs down", + "remove dislike", + "unselected dislike", + "dislike toggle off" + ], + "visual": "thumbs-down hand shape drawn as a thin line only, beside a vertical bar" + }, + "ThumbUp": { + "keywords": [ + "good feedback", + "helpful", + "endorse", + "thumbs up reaction", + "positive reaction", + "vote up" + ], + "visual": "hand giving a thumbs-up gesture beside a small vertical bar" + }, + "ThumbUpAlt": { + "keywords": ["agree", "helpful", "endorse", "cheer", "thumbs up reaction", "like button"], + "visual": "hand giving a thumbs-up gesture beside a small vertical bar" + }, + "ThumbUpOffAlt": { + "keywords": [ + "not liked", + "neutral", + "outline thumbs up", + "remove like", + "unselected like", + "like toggle off" + ], + "visual": "thumbs-up hand shape drawn as a thin line only, beside a vertical bar" + }, + "ThumbsUpDown": { + "keywords": [ + "pros and cons", + "mixed feedback", + "agree disagree", + "like dislike", + "rate this", + "feedback options" + ], + "visual": "thumbs-up hand and thumbs-down hand shown side by side" + }, + "Thunderstorm": { + "keywords": [ + "storm", + "thunder", + "severe weather", + "storm warning", + "lightning storm", + "electrical storm" + ], + "visual": "cloud shape with two lightning bolts below it" + }, + "TimeToLeave": { + "keywords": [ + "departure time", + "commute reminder", + "leave now", + "traffic alert", + "drive time", + "when to leave" + ], + "visual": "car front view with two round headlights" + }, + "Timelapse": { + "keywords": [ + "time-lapse video", + "progress circle", + "elapsed time", + "pie timer", + "clock progress", + "loading circle" + ], + "visual": "clock circle with a pie-slice wedge shaded inside it" + }, + "Timeline": { + "keywords": [ + "milestones", + "history log", + "activity feed", + "roadmap", + "chart line", + "trend graph" + ], + "visual": "zigzag line connecting a series of dots" + }, + "Timer": { + "keywords": [ + "countdown", + "kitchen timer", + "egg timer", + "set timer", + "clock timer", + "start timer" + ], + "visual": "stopwatch circle with a button on top and a hand pointing upward" + }, + "Timer10": { + "keywords": [ + "10 second timer", + "camera self-timer", + "countdown", + "photo timer 10s", + "self timer delay" + ], + "visual": "text reading 10s" + }, + "Timer10Select": { + "keywords": [ + "10 second self-timer", + "camera countdown setting", + "10s self timer setting", + "camera delay 10", + "photo countdown 10 seconds" + ], + "visual": "text reading 10s in a bold rounded font" + }, + "Timer3": { + "keywords": [ + "3 second timer", + "camera self-timer", + "countdown", + "photo timer 3s", + "self timer delay" + ], + "visual": "text reading 3s" + }, + "Timer3Select": { + "keywords": [ + "3 second self-timer", + "camera countdown setting", + "3s self timer setting", + "camera delay 3", + "photo countdown 3 seconds" + ], + "visual": "text reading 3s in a bold rounded font" + }, + "TimerOff": { + "keywords": [ + "countdown off", + "stopwatch disabled", + "timer cancelled", + "no timer", + "disable countdown", + "turn off timer" + ], + "visual": "stopwatch circle shape with a diagonal slash through it" + }, + "TimesOneMobiledata": { + "keywords": [ + "1x speed", + "data multiplier", + "network speed indicator", + "normal speed", + "1x data rate" + ], + "visual": "text reading 1X" + }, + "TipsAndUpdates": { + "keywords": ["hint", "suggestion", "pro tip", "new feature", "insight"], + "visual": "light bulb with small sparkle shapes beside it" + }, + "TireRepair": { + "keywords": ["tire pressure", "flat tire", "auto shop", "wheel service", "garage"], + "visual": "tire with a tread pattern connected to a pressure gauge" + }, + "Title": { + "keywords": ["heading", "headline", "caption text", "page title", "document title"], + "visual": "capital letter T" + }, + "Toc": { + "keywords": ["table of contents", "index", "outline", "chapters", "menu list"], + "visual": "three horizontal text lines with small dashes lined up to their right" + }, + "Today": { + "keywords": [ + "current date", + "daily view", + "this day", + "date marker", + "date icon", + "today's schedule" + ], + "visual": "calendar page with two hanging rings at the top and a small marked square on the grid" + }, + "ToggleOff": { + "keywords": [ + "switch off", + "disabled state", + "off state", + "checkbox off", + "toggle switch", + "deactivate" + ], + "visual": "pill-shaped switch with the round knob positioned on the left" + }, + "ToggleOn": { + "keywords": [ + "switch on", + "enabled state", + "on state", + "active state", + "toggle switch", + "activate" + ], + "visual": "pill-shaped switch with the round knob positioned on the right" + }, + "Token": { + "keywords": [ + "nft", + "crypto token", + "blockchain", + "coin", + "access token", + "authentication token", + "3d cube" + ], + "visual": "cube shape with a circle and branching lines forming a Y inside it" + }, + "Toll": { + "keywords": ["toll road", "toll booth", "tollway", "checkpoint", "toll fee", "payment gate"], + "visual": "two overlapping circles, one open and one with a thicker ring" + }, + "Tonality": { + "keywords": [ + "contrast", + "black and white filter", + "photo edit", + "exposure", + "monochrome", + "grayscale filter" + ], + "visual": "circle split down the middle, plain on the left half and covered with horizontal stripes on the right" + }, + "Topic": { + "keywords": [ + "category", + "subject folder", + "forum topic", + "discussion", + "thread", + "subject matter" + ], + "visual": "folder shape with two horizontal lines of text on its front" + }, + "Tornado": { + "keywords": [ + "twister", + "funnel cloud", + "cyclone", + "severe weather warning", + "wind funnel", + "destructive storm" + ], + "visual": "stacked triangular bands narrowing down to a point like a funnel" + }, + "TouchApp": { + "keywords": ["click", "interactive", "touchscreen", "tap gesture"], + "visual": "hand with a pointing finger touching a circular ripple shape above it" + }, + "Tour": { + "keywords": [ + "guided tour", + "checkpoint", + "milestone", + "walkthrough", + "onboarding", + "sightseeing" + ], + "visual": "flag with a circle on it, mounted on a vertical pole" + }, + "Toys": { + "keywords": ["toy car", "plaything", "children's toys", "pinwheel", "spinner toy", "kids play"], + "visual": "toy car body with two wheels and a small ball attached by a bent stick on top" + }, + "TrackChanges": { + "keywords": ["goal", "focus", "precision", "gps tracking", "aim"], + "visual": "circular target made of concentric rings with a crosshair pin in the center" + }, + "Traffic": { + "keywords": [ + "traffic light", + "stoplight", + "signal light", + "road sign", + "stop and go", + "intersection light" + ], + "visual": "traffic light post with three stacked circular lights" + }, + "Train": { + "keywords": ["locomotive", "commuter rail", "rail transport", "railroad", "passenger train"], + "visual": "train front view with two square windows and round wheels below" + }, + "Tram": { + "keywords": ["streetcar", "trolley car", "light rail", "cable car", "streetcar transit"], + "visual": "tram front view with a window, a round wheel, and an antenna on top" + }, + "Transcribe": { + "keywords": [ + "speech to text", + "voice transcription", + "dictation", + "captioning", + "audio to text", + "voice recognition" + ], + "visual": "person silhouette with curved sound wave lines beside their head" + }, + "TransferWithinAStation": { + "keywords": [ + "connecting line", + "station transfer", + "change platform", + "subway transfer", + "walk to platform", + "interchange" + ], + "visual": "walking person figure beside two horizontal arrows pointing in opposite directions" + }, + "Transform": { + "keywords": ["resize", "crop tool", "scale", "distort", "reshape", "adjust image"], + "visual": "bracket-shaped crop frame with an arrow pointing up from one corner and down from the other" + }, + "Transgender": { + "keywords": [ + "trans symbol", + "gender identity", + "pride", + "non-binary", + "gender symbol", + "transgender flag" + ], + "visual": "circle with a cross below it and arrows branching up-left and up-right from the top" + }, + "TransitEnterexit": { + "keywords": [ + "enter exit station", + "transit stop", + "boarding", + "alight", + "get on off", + "station entrance" + ], + "visual": "arrow pointing diagonally down and to the left" + }, + "Translate": { + "keywords": [ + "translation", + "language converter", + "google translate", + "multilingual", + "foreign language", + "dictionary" + ], + "visual": "an Asian character with a bar above it beside the letter A" + }, + "TravelExplore": { + "keywords": [ + "discover", + "explore world", + "trip planning", + "research destination", + "search destination", + "find places" + ], + "visual": "globe with a magnifying glass held over part of it" + }, + "TrendingDown": { + "keywords": ["decline", "decrease", "downturn", "loss", "falling"], + "visual": "jagged arrow line trending downward with the arrowhead at the bottom right" + }, + "TrendingFlat": { + "keywords": ["stable", "no change", "steady", "unchanged", "plateau"], + "visual": "straight horizontal arrow pointing right" + }, + "TrendingUp": { + "keywords": ["growth", "increase", "rise", "uptrend", "improvement"], + "visual": "jagged arrow line trending upward with the arrowhead at the top right" + }, + "TripOrigin": { + "keywords": ["starting point", "map marker", "waypoint", "route start", "radio button"], + "visual": "thick ring shape like an open circle" + }, + "Trolley": { + "keywords": ["shopping cart", "shopping trolley", "grocery cart", "push cart", "luggage cart"], + "visual": "cart with two square boxes on top and two wheels below" + }, + "Troubleshoot": { + "keywords": ["diagnose", "debug", "inspect", "analysis", "fix issue", "diagnostics"], + "visual": "magnifying glass with a heartbeat pulse zigzag line running through it" + }, + "Try": { + "keywords": [ + "ai suggestion", + "generate", + "magic reply", + "smart reply", + "sparkle chat", + "ai chat suggestion" + ], + "visual": "speech bubble with a sparkle star shape inside" + }, + "Tsunami": { + "keywords": ["tidal wave", "big wave", "natural disaster", "seismic wave", "coastal flood"], + "visual": "large curling wave shape above smaller wavy water lines" + }, + "Tty": { + "keywords": [ + "teletypewriter", + "text telephone", + "hearing impaired", + "accessibility device", + "assistive phone", + "relay call" + ], + "visual": "telephone handset beside a grid of small square dots" + }, + "Tune": { + "keywords": [ + "equalizer", + "settings sliders", + "preferences", + "filter settings", + "adjust controls" + ], + "visual": "row of horizontal sliders with vertical toggle marks at different positions along each" + }, + "Tungsten": { + "keywords": [ + "incandescent", + "filament", + "halogen", + "kelvin", + "color temperature", + "camera mode", + "photo mode", + "warm light" + ], + "visual": "light bulb with short radiating dashes around it like a burst of light" + }, + "TurnLeft": { + "keywords": [ + "left bend", + "90 degree turn", + "corner", + "junction", + "detour", + "waypoint", + "gps direction", + "street turn" + ], + "visual": "arrow bending upward then left, indicating a path turning left" + }, + "TurnRight": { + "keywords": [ + "right bend", + "90 degree turn", + "corner", + "junction", + "detour", + "waypoint", + "gps direction", + "street turn" + ], + "visual": "arrow bending upward then right, indicating a path turning right" + }, + "TurnSharpLeft": { + "keywords": ["hairpin turn", "switchback", "sharp bend", "acute turn", "zigzag", "hairpin"], + "visual": "arrow with a sharp zigzag bend pointing up after turning sharply left" + }, + "TurnSharpRight": { + "keywords": ["hairpin turn", "switchback", "sharp bend", "acute turn", "zigzag", "hairpin"], + "visual": "arrow with a sharp zigzag bend pointing up after turning sharply right" + }, + "TurnSlightLeft": { + "keywords": ["slight bend", "gentle curve", "merge left", "veer left", "fork left"], + "visual": "arrow pointing up and slightly left with a gentle bend partway along its length" + }, + "TurnSlightRight": { + "keywords": ["slight bend", "gentle curve", "merge right", "veer right", "fork right"], + "visual": "arrow pointing up and slightly right with a gentle bend partway along its length" + }, + "TurnedIn": { + "keywords": ["flag", "marker", "pin", "read later", "subscribed", "following", "flagged"], + "visual": "narrow bookmark ribbon with a notched, pointed bottom edge" + }, + "TurnedInNot": { + "keywords": ["flag", "marker", "add to bookmarks", "follow", "unmarked", "unsaved"], + "visual": "narrow bookmark ribbon with a notched, pointed bottom edge, shown as just its border lines" + }, + "Tv": { + "keywords": [ + "telly", + "screen mirroring", + "cast", + "chromecast", + "entertainment center", + "flat screen" + ], + "visual": "rectangular television screen mounted on a small stand" + }, + "TvOff": { + "keywords": [ + "no signal", + "turn off tv", + "parental controls", + "screen time", + "antenna", + "old tv", + "retro television", + "unplugged" + ], + "visual": "television with two antenna lines on top and a diagonal slash across the screen" + }, + "TwelveMp": { + "keywords": [ + "12mp", + "12 mp", + "resolution badge", + "photo quality", + "camera spec", + "sensor resolution", + "image size" + ], + "visual": "the number 12 and letters MP stacked in a rounded square" + }, + "TwentyFourMp": { + "keywords": [ + "24mp", + "24 mp", + "resolution badge", + "photo quality", + "camera spec", + "sensor resolution", + "image size" + ], + "visual": "the number 24 and letters MP stacked in a rounded square" + }, + "TwentyOneMp": { + "keywords": [ + "21mp", + "21 mp", + "resolution badge", + "photo quality", + "camera spec", + "sensor resolution", + "image size" + ], + "visual": "the number 21 and letters MP stacked in a rounded square" + }, + "TwentyThreeMp": { + "keywords": [ + "23mp", + "23 mp", + "resolution badge", + "photo quality", + "camera spec", + "sensor resolution", + "image size" + ], + "visual": "the number 23 and letters MP stacked in a rounded square" + }, + "TwentyTwoMp": { + "keywords": [ + "22mp", + "22 mp", + "resolution badge", + "photo quality", + "camera spec", + "sensor resolution", + "image size" + ], + "visual": "the number 22 and letters MP stacked in a rounded square" + }, + "TwentyZeroMp": { + "keywords": [ + "20mp", + "20 mp", + "resolution badge", + "photo quality", + "camera spec", + "sensor resolution", + "image size" + ], + "visual": "the number 20 and letters MP stacked in a rounded square" + }, + "Twitter": { + "keywords": ["x", "tweet", "bird", "social media", "share", "follow"], + "visual": "bird in flight with wings spread and a small pointed beak" + }, + "TwoK": { + "keywords": ["qhd", "1440p", "video resolution", "streaming quality", "hd"], + "visual": "text 2K in a rounded square" + }, + "TwoKPlus": { + "keywords": ["qhd plus", "1440p plus", "enhanced resolution", "premium quality", "upgraded"], + "visual": "text 2K with a plus sign in a rounded square" + }, + "TwoMp": { + "keywords": [ + "2mp", + "2 mp", + "resolution badge", + "photo quality", + "camera spec", + "sensor resolution", + "image size" + ], + "visual": "the number 2 and letters MP stacked in a rounded square" + }, + "TwoWheeler": { + "keywords": ["bike", "delivery", "ride share", "two wheeled vehicle"], + "visual": "motorcycle with two wheels and curved handlebars, seen from the side" + }, + "TypeSpecimen": { + "keywords": [ + "font sample", + "typography", + "letter a", + "type sample", + "font preview", + "character sheet", + "style guide", + "typeface", + "font book", + "design system", + "glyph" + ], + "visual": "letter A on a stacked pair of pages with lines beneath, like a type sample sheet" + }, + "UTurnLeft": { + "keywords": ["reverse direction", "turn around", "loop back", "change direction", "roundabout"], + "visual": "curved loop shaped like an upside-down U with an arrow pointing down at the left end" + }, + "UTurnRight": { + "keywords": ["reverse direction", "turn around", "loop back", "change direction", "roundabout"], + "visual": "curved loop shaped like an upside-down U with an arrow pointing down at the right end" + }, + "Umbrella": { + "keywords": [ + "parasol", + "rain gear", + "weather forecast", + "insurance", + "shade", + "monsoon", + "brolly" + ], + "visual": "open umbrella canopy with a curved handle and a pointed tip at top" + }, + "Unarchive": { + "keywords": ["restore", "retrieve", "recover", "move to inbox", "take out"], + "visual": "square box with an upward arrow rising out of it and a flat lid line at top" + }, + "Undo": { + "keywords": ["revert", "ctrl+z", "reverse", "step back", "cancel"], + "visual": "curved arrow looping left and pointing left, indicating reversing an action" + }, + "UnfoldLess": { + "keywords": ["minimize", "shrink", "close panel", "compress", "contract"], + "visual": "a downward chevron above an upward chevron, pointing toward each other" + }, + "UnfoldLessDouble": { + "keywords": ["minimize all", "collapse all", "shrink", "compress", "close all"], + "visual": "two downward chevrons above two upward chevrons, all pointing toward the center" + }, + "UnfoldMore": { + "keywords": ["expand", "maximize", "open panel", "show more", "stretch"], + "visual": "an upward chevron above a downward chevron, pointing away from each other" + }, + "UnfoldMoreDouble": { + "keywords": ["expand all", "maximize all", "show all", "open all", "stretch"], + "visual": "two upward chevrons above two downward chevrons, all pointing away from the center" + }, + "Unpublished": { + "keywords": [ + "draft", + "hidden", + "private", + "offline", + "not live", + "withdrawn", + "retracted", + "taken down" + ], + "visual": "circle with a diagonal slash across an angular ribbon-like shape inside" + }, + "Unsubscribe": { + "keywords": ["opt out", "stop emails", "leave list", "decline", "turn off notifications"], + "visual": "envelope with a small minus-sign badge at its bottom right corner" + }, + "Upcoming": { + "keywords": ["new", "highlight", "event reminder", "soon", "scheduled", "spotlight", "badge"], + "visual": "rounded bar with a notch cut into its top edge and short lines radiating above it like a burst" + }, + "Update": { + "keywords": ["sync", "refresh data", "new version", "check for updates", "restore"], + "visual": "clock face with a curved arrow wrapping around it, arrowhead pointing up and to the right" + }, + "UpdateDisabled": { + "keywords": ["sync off", "auto update off", "no updates", "updates paused", "offline mode"], + "visual": "clock face with a curved arrow around it and a diagonal slash through the whole shape" + }, + "Upgrade": { + "keywords": ["level up", "premium", "pro version", "boost", "improve", "promote"], + "visual": "narrow upward arrow with a short horizontal bar beneath its tip" + }, + "Upload": { + "keywords": ["send file", "publish", "cloud upload", "attach", "export", "backup"], + "visual": "upward arrow with a wide horizontal bar beneath its tip" + }, + "UploadFile": { + "keywords": ["attach file", "import document", "add document", "submit file"], + "visual": "page with a folded top corner and an upward arrow inside it" + }, + "Usb": { + "keywords": ["flash drive", "thumb drive", "peripheral", "port", "plug in", "data transfer"], + "visual": "USB connector symbol with branching prongs and a circle at the base" + }, + "UsbOff": { + "keywords": ["disconnected", "unplugged", "disabled port", "no device", "port disabled"], + "visual": "USB connector symbol with branching prongs and a diagonal slash through it" + }, + "Vaccines": { + "keywords": ["shot", "jab", "booster", "immunization", "flu shot", "clinic"], + "visual": "syringe next to a small medicine vial" + }, + "VapeFree": { + "keywords": ["quit vaping", "non-smoking", "ban", "stop vaping", "e-cig ban"], + "visual": "electronic cigarette with curling smoke rising above it and a diagonal slash through it" + }, + "VapingRooms": { + "keywords": ["designated area", "lounge", "smoking permitted", "vape lounge", "vape zone"], + "visual": "electronic cigarette with curling smoke rising above it" + }, + "Verified": { + "keywords": ["authenticated", "trusted", "blue check", "credential", "endorsed", "certified"], + "visual": "badge with a scalloped starburst edge and a checkmark in the center" + }, + "VerifiedUser": { + "keywords": [ + "trusted", + "secure account", + "identity verified", + "safe", + "guaranteed", + "antivirus" + ], + "visual": "shield shape with a checkmark in the center" + }, + "VerticalAlignBottom": { + "keywords": [ + "align bottom", + "snap to bottom", + "bottom anchor", + "move to bottom", + "dock bottom" + ], + "visual": "downward arrow pointing at a horizontal bar beneath it" + }, + "VerticalAlignCenter": { + "keywords": ["center align", "middle", "vertical center", "cell alignment"], + "visual": "downward arrow above a horizontal bar and an upward arrow below it, both pointing toward the center line" + }, + "VerticalAlignTop": { + "keywords": ["top align", "snap to top", "cell alignment", "dock top"], + "visual": "horizontal bar at the top with an upward arrow beneath it pointing toward it" + }, + "VerticalShades": { + "keywords": ["window covering", "drapes", "venetian blind", "smart home", "open blinds"], + "visual": "rectangular window blind shape with a single vertical slat shown open" + }, + "VerticalShadesClosed": { + "keywords": ["shut", "privacy", "drawn", "closed blinds", "smart home"], + "visual": "rectangular window blind shape with several vertical slats shown closed together" + }, + "VerticalSplit": { + "keywords": ["sidebar", "two columns", "split view", "panel layout", "side by side"], + "visual": "rectangle divided into a plain panel and a panel with horizontal lines side by side" + }, + "Vibration": { + "keywords": ["buzz", "mute ringer", "shake"], + "visual": "rectangular phone shape with short lines radiating from both sides" + }, + "VideoCall": { + "keywords": ["facetime", "zoom", "start call", "meeting", "webcam call"], + "visual": "video camera shape with a plus sign in the frame" + }, + "VideoCameraBack": { + "keywords": ["rear camera", "back camera", "outward facing", "landscape mode"], + "visual": "video camera shape with a triangular mountain shape inside the frame" + }, + "VideoCameraFront": { + "keywords": ["front camera", "selfie", "self view", "inward facing"], + "visual": "video camera shape with a person's head and shoulders inside the frame" + }, + "VideoChat": { + "keywords": ["video message", "live chat", "video comment"], + "visual": "speech bubble containing a small video camera shape" + }, + "VideoFile": { + "keywords": ["mp4", "movie file", "clip", "media file"], + "visual": "page with a folded top corner containing a small video camera shape" + }, + "VideoLabel": { + "keywords": ["monitor", "display", "caption bar", "subtitle", "media player", "title bar"], + "visual": "rectangular frame with a smaller blank rectangle inset near the top, like a caption bar" + }, + "VideoLibrary": { + "keywords": ["playlist", "video collection", "media library", "movies", "watch list"], + "visual": "play triangle inside a rectangle with a second rectangle stacked behind it" + }, + "VideoSettings": { + "keywords": ["video preferences", "camera settings", "stream settings", "configure video"], + "visual": "rectangle with a play triangle inside and a gear badge at the bottom right corner" + }, + "VideoStable": { + "keywords": ["image stabilization", "anti-shake", "steady shot", "gimbal"], + "visual": "rectangle containing a smaller tilted rectangle inside it" + }, + "Videocam": { + "keywords": ["record video", "webcam", "camcorder", "start recording"], + "visual": "video camera shape with a triangular lens flap on one side" + }, + "VideocamOff": { + "keywords": ["camera off", "mute video", "turn off camera", "privacy mode"], + "visual": "video camera shape with a diagonal slash through it" + }, + "VideogameAsset": { + "keywords": ["joystick", "d-pad", "arcade"], + "visual": "handheld game controller with a plus-shaped button and two round buttons" + }, + "VideogameAssetOff": { + "keywords": ["joystick off", "no gaming", "controller disabled", "game mode off"], + "visual": "handheld game controller with a plus-shaped button and a diagonal slash through it" + }, + "ViewAgenda": { + "keywords": ["list view", "schedule view", "feed layout", "timeline"], + "visual": "two horizontal rounded bars stacked with a gap between them" + }, + "ViewArray": { + "keywords": ["column view", "panel view", "three column layout", "gallery view"], + "visual": "three vertical bars of equal height, narrow-wide-narrow, evenly spaced" + }, + "ViewCarousel": { + "keywords": ["slideshow", "image slider", "featured banner", "carousel view"], + "visual": "three vertical bars with a tall wide bar in the center and shorter narrow bars on either side" + }, + "ViewColumn": { + "keywords": ["columns view", "table columns", "multi column layout"], + "visual": "three vertical bars of equal width and height side by side" + }, + "ViewComfy": { + "keywords": ["comfortable view", "spaced grid", "roomy layout"], + "visual": "a wide horizontal bar on top with a small square and a wider rectangle below it" + }, + "ViewComfyAlt": { + "keywords": ["comfortable grid", "spaced tiles", "roomy grid", "four squares"], + "visual": "rounded square containing four white squares arranged in a 2x2 grid with thin gaps" + }, + "ViewCompact": { + "keywords": ["dense view", "compact grid", "tight grid", "thumbnail grid"], + "visual": "grid of many small squares arranged in evenly spaced rows and columns" + }, + "ViewCompactAlt": { + "keywords": ["tight grid", "compact tiles", "four squares", "small grid"], + "visual": "rounded square containing four white squares arranged in a tightly spaced 2x2 grid" + }, + "ViewCozy": { + "keywords": ["cozy grid", "spaced tiles", "four squares", "roomy grid"], + "visual": "rounded square containing four white squares arranged in a 2x2 grid with wider gaps between them" + }, + "ViewDay": { + "keywords": ["day view", "daily schedule", "single day layout"], + "visual": "thin horizontal bar, a thick horizontal bar, and another thin horizontal bar stacked vertically" + }, + "ViewHeadline": { + "keywords": ["list view", "text lines", "article view", "headline view"], + "visual": "four thin horizontal bars stacked evenly, like lines of text" + }, + "ViewInAr": { + "keywords": ["ar view", "scan object", "camera scan", "3d model view", "mixed reality"], + "visual": "cube shape with bracket marks at each corner around it" + }, + "ViewKanban": { + "keywords": ["kanban board", "task board", "project board", "trello"], + "visual": "rounded square containing two vertical white bars of different heights side by side" + }, + "ViewList": { + "keywords": ["list view", "bullet list", "menu list", "table rows"], + "visual": "three rows, each with a small square bullet followed by a horizontal bar" + }, + "ViewModule": { + "keywords": ["module view", "grid view", "tile view", "card grid"], + "visual": "grid of six squares arranged in two rows of three" + }, + "ViewQuilt": { + "keywords": ["dashboard layout", "mosaic", "magazine layout"], + "visual": "irregular grid of rectangles of different sizes, a tall one on the left and smaller ones filling the right" + }, + "ViewSidebar": { + "keywords": ["sidebar view", "panel layout", "split screen", "side panel"], + "visual": "large square on the left with three small squares stacked vertically on the right" + }, + "ViewStream": { + "keywords": ["feed view", "stream view", "card stack"], + "visual": "two horizontal pill-shaped bars stacked with a gap between them" + }, + "ViewTimeline": { + "keywords": ["timeline view", "activity log", "history view", "progress steps"], + "visual": "rounded square containing three horizontal bars of increasing length arranged in a staircase pattern" + }, + "ViewWeek": { + "keywords": ["week view", "calendar week", "weekly schedule"], + "visual": "three vertical rounded bars of equal width and height side by side" + }, + "Vignette": { + "keywords": ["photo filter", "dark corners", "spotlight effect", "camera effect"], + "visual": "rounded square with a white oval in the center, like a spotlight against dark corners" + }, + "Villa": { + "keywords": ["cottage", "bungalow", "airbnb", "holiday home"], + "visual": "building silhouette with a pitched roof over one section and a flat-roofed section beside it" + }, + "Visibility": { + "keywords": ["show password", "watch", "visible", "peek"], + "visual": "eye shape with a round pupil in the center" + }, + "VisibilityOff": { + "keywords": ["hide password", "incognito", "private mode"], + "visual": "eye shape with a round pupil and a diagonal slash through it" + }, + "VoiceChat": { + "keywords": ["voice message", "audio chat", "voice note", "talk"], + "visual": "speech bubble containing vertical bars forming a sound waveform" + }, + "VoiceOverOff": { + "keywords": ["screen reader off", "accessibility off", "narration off"], + "visual": "person's head and shoulders with curved sound wave lines and a diagonal slash through it" + }, + "Voicemail": { + "keywords": ["answering machine", "voice message"], + "visual": "two circles connected by a horizontal rounded bar, like cassette reels" + }, + "Volcano": { + "keywords": ["mountain", "hazard", "geology", "ash"], + "visual": "triangular mountain shape with small lines radiating from its peak like sparks" + }, + "VolumeDown": { + "keywords": ["lower volume", "turn down", "decrease sound"], + "visual": "speaker shape with a small curved sound wave line beside it" + }, + "VolumeDownAlt": { + "keywords": [ + "lower volume", + "quiet", + "soft sound", + "decrease sound", + "speaker", + "sound wave", + "turn down" + ], + "visual": "speaker shape with a single curved arc beside it" + }, + "VolumeMute": { + "keywords": ["silent", "no sound", "muted", "quiet"], + "visual": "speaker shape by itself with no sound wave lines beside it" + }, + "VolumeOff": { + "keywords": ["silence", "turn off sound", "no audio"], + "visual": "speaker shape with a diagonal slash through it" + }, + "VolumeUp": { + "keywords": ["raise volume", "louder", "turn up", "increase sound"], + "visual": "speaker shape with two curved sound wave arcs beside it" + }, + "VolunteerActivism": { + "keywords": ["charity", "philanthropy", "nonprofit", "give back", "support cause"], + "visual": "open hand holding a heart above it, with a vertical bar beside the hand" + }, + "VpnKey": { + "keywords": ["api key", "license key", "private key", "credentials"], + "visual": "key shape with a round bow and notched teeth on the shaft" + }, + "VpnKeyOff": { + "keywords": ["revoked", "key disabled", "invalid credentials", "locked out"], + "visual": "key shape with a round bow and notched teeth, crossed by a diagonal slash" + }, + "VpnLock": { + "keywords": ["secure browsing", "encrypted", "geo-restricted", "private network"], + "visual": "globe shape with a padlock badge at the top right corner" + }, + "Vrpano": { + "keywords": ["360 photo", "panoramic view", "wide angle shot"], + "visual": "wide panel with concave curved sides containing a small triangular mountain shape" + }, + "Wallet": { + "keywords": [ + "money", + "cash", + "billfold", + "purse", + "payment", + "cards", + "finance", + "banking", + "coin purse" + ], + "visual": "rounded wallet shape with a diagonal flap line across the top" + }, + "Wallpaper": { + "keywords": ["desktop background", "home screen", "lock screen", "screensaver"], + "visual": "square frame with bracket-shaped corners containing a small circle and a triangular mountain shape" + }, + "Warehouse": { + "keywords": ["distribution center", "logistics", "factory", "inventory"], + "visual": "building with a peaked roof over an open doorway and small squares inside like stacked boxes" + }, + "Warning": { + "keywords": ["hazard", "risk", "caution sign"], + "visual": "triangle shape with an exclamation mark in the center" + }, + "WarningAmber": { + "keywords": ["hazard", "risk", "alert triangle"], + "visual": "triangle drawn as a bordered shape with an exclamation mark inside" + }, + "Wash": { + "keywords": ["hand washing", "hygiene", "sanitize", "soap"], + "visual": "hand shape with two water droplets falling above it" + }, + "Watch": { + "keywords": ["apple watch", "fitness tracker", "timepiece"], + "visual": "round watch face mounted on a wide wrist band" + }, + "WatchLater": { + "keywords": ["pending", "snooze", "reminder", "timer"], + "visual": "circle containing a clock face with hour and minute hands" + }, + "WatchOff": { + "keywords": ["disconnect watch", "smartwatch off", "no watch"], + "visual": "wrist watch shape with a diagonal slash through it" + }, + "Water": { + "keywords": ["liquid", "hydration", "pool", "swim", "sea"], + "visual": "several wavy horizontal lines stacked, like ripples on water" + }, + "WaterDamage": { + "keywords": ["flood", "moisture", "insurance claim", "mold"], + "visual": "house shape with a water droplet inside it" + }, + "WaterDrop": { + "keywords": ["humidity", "moisture", "tear", "hydration"], + "visual": "single water droplet shape with a small curved highlight inside it" + }, + "WaterfallChart": { + "keywords": ["cascade chart", "bridge chart", "cumulative chart", "financial chart"], + "visual": "bars of increasing height arranged like a staircase, ending in a tall bar" + }, + "Waves": { + "keywords": ["ripples", "tide", "surf"], + "visual": "several wavy horizontal lines stacked, like ripples on water" + }, + "WavingHand": { + "keywords": ["hi", "farewell", "emoji"], + "visual": "hand shape with spread fingers and curved motion lines beside it" + }, + "WbAuto": { + "keywords": ["auto white balance", "camera mode", "auto mode"], + "visual": "circle containing the letters A and W overlapping each other" + }, + "WbCloudy": { + "keywords": ["overcast", "cloudy weather", "camera white balance", "weather mode"], + "visual": "cloud shape with rounded bumps" + }, + "WbIncandescent": { + "keywords": ["incandescent bulb", "warm light", "filament", "camera setting"], + "visual": "light bulb shape with a small square top and short dashes radiating around it" + }, + "WbIridescent": { + "keywords": ["fluorescent light", "cool white", "camera setting"], + "visual": "rectangular bar with small diamond and square shapes arranged around it like radiating light" + }, + "WbShade": { + "keywords": ["shade mode", "shadow lighting", "camera setting"], + "visual": "house shape with a window and diagonal shading lines across part of it" + }, + "WbSunny": { + "keywords": ["sunny weather", "daylight", "clear sky", "sun"], + "visual": "circle with alternating short dashes and diamond shapes radiating around it like sun rays" + }, + "WbTwighlight": { + "keywords": ["dusk", "dawn", "sunset", "sunrise", "evening light", "camera setting"], + "visual": "half circle rising above a horizontal bar with small dashes and diamonds radiating above it" + }, + "WbTwilight": { + "keywords": ["dusk", "dawn", "sunrise", "evening light"], + "visual": "half circle rising above a horizontal bar with small dashes and diamonds radiating above it" + }, + "Wc": { + "keywords": ["loo", "lavatory", "public restroom", "powder room"], + "visual": "man and woman figures standing side by side, the woman in a triangular skirt" + }, + "Web": { + "keywords": ["online", "web page", "url", "chrome window"], + "visual": "rectangular browser window frame divided into a top bar and two lower panels" + }, + "WebAsset": { + "keywords": ["embed", "widget frame", "media frame"], + "visual": "rectangle frame with a thick border and an empty center, like a browser window" + }, + "WebAssetOff": { + "keywords": ["no embed", "disabled widget", "offline frame"], + "visual": "rectangle frame with a thick border and a diagonal slash through it" + }, + "WebStories": { + "keywords": ["story cards", "visual story", "slideshow", "amp stories"], + "visual": "rounded rectangular card with two short vertical lines beside it, like a stack of story cards" + }, + "Webhook": { + "keywords": ["integration", "automation", "callback url", "api trigger"], + "visual": "three small circles connected by curved lines forming a triangular loop" + }, + "Weekend": { + "keywords": ["sofa", "recliner", "leisure", "comfort"], + "visual": "armchair shape with rounded cushioned arms and a back" + }, + "West": { + "keywords": ["compass", "cardinal direction", "westward"], + "visual": "arrow pointing left" + }, + "WhatsApp": { + "keywords": ["meta", "messenger", "texting"], + "visual": "rounded speech bubble containing a phone handset shape, with a pointed tail at the bottom" + }, + "Whatshot": { + "keywords": ["hot", "popular", "viral", "fire emoji", "streak"], + "visual": "flame shape with a curved teardrop tip" + }, + "WheelchairPickup": { + "keywords": ["disabled parking", "ada", "mobility assistance", "curbside pickup"], + "visual": "person figure standing beside a wheelchair symbol" + }, + "WhereToVote": { + "keywords": ["polling place", "voting location", "election day"], + "visual": "map pin teardrop shape with a checkmark inside" + }, + "Widgets": { + "keywords": ["home screen widgets", "dashboard tiles", "gadgets"], + "visual": "three squares and a diamond rotated 45 degrees arranged together in a cluster" + }, + "WidthFull": { + "keywords": ["full width", "stretch to fit", "fill width", "maximize width", "expand column"], + "visual": "wide rounded rectangle with two vertical lines set a short distance in from each edge" + }, + "WidthNormal": { + "keywords": ["default width", "standard width", "normal column", "reset width"], + "visual": "rounded rectangle with two vertical lines positioned close together near the center" + }, + "WidthWide": { + "keywords": ["wide column", "expand width", "widen", "broaden column"], + "visual": "wide rounded rectangle with two vertical lines set very close to each edge" + }, + "Wifi": { + "keywords": ["router", "hotspot", "wlan"], + "visual": "three stacked curved arcs above a small triangle, like a wifi signal indicator" + }, + "Wifi1Bar": { + "keywords": ["weak signal", "low signal", "poor connection"], + "visual": "small triangle by itself, like a single wifi signal bar" + }, + "Wifi2Bar": { + "keywords": ["medium signal", "fair connection"], + "visual": "one curved arc above a triangle, like two wifi signal bars" + }, + "WifiCalling": { + "keywords": ["voip", "internet call"], + "visual": "phone handset shape with a curved signal fan shape above it" + }, + "WifiCalling3": { + "keywords": ["voip", "call quality"], + "visual": "phone handset shape with a small curved signal arc above it" + }, + "WifiChannel": { + "keywords": ["frequency", "spectrum", "bandwidth", "channel selection"], + "visual": "several pointed arch shapes of different heights in a row, like mountain peaks" + }, + "WifiFind": { + "keywords": ["find network", "search wifi", "network scanner"], + "visual": "curved signal fan shape with a magnifying glass overlapping its lower corner" + }, + "WifiLock": { + "keywords": ["secured network", "protected network"], + "visual": "curved signal fan wedge with a padlock badge at the bottom right" + }, + "WifiOff": { + "keywords": ["no internet", "airplane mode"], + "visual": "curved signal arcs with a diagonal slash through them" + }, + "WifiPassword": { + "keywords": ["secured network", "wifi key"], + "visual": "stacked curved wifi signal arcs with a padlock badge at the bottom right" + }, + "WifiProtectedSetup": { + "keywords": ["wps", "sync", "pairing", "quick connect", "refresh"], + "visual": "two curved arrows forming a looping cycle shape, like a refresh symbol" + }, + "WifiTethering": { + "keywords": ["hotspot", "share connection", "broadcast signal"], + "visual": "concentric circular arcs radiating outward from a central dot, like a broadcast signal" + }, + "WifiTetheringError": { + "keywords": ["hotspot error", "connection problem"], + "visual": "concentric circular arcs radiating from a central dot with a small exclamation mark beside it" + }, + "WifiTetheringOff": { + "keywords": ["hotspot off", "tethering disabled"], + "visual": "concentric circular arcs radiating from a central dot with a diagonal slash through them" + }, + "WindPower": { + "keywords": ["wind turbine", "renewable energy", "windmill", "clean energy"], + "visual": "wind turbine with curved blades on a pole, with short horizontal lines beside it indicating wind" + }, + "Window": { + "keywords": ["pane", "casement", "frame"], + "visual": "rounded square divided into four equal panes by a cross shape" + }, + "WineBar": { + "keywords": ["restaurant", "winery", "goblet"], + "visual": "wine glass shape with a horizontal line marking a liquid level inside" + }, + "Woman": { + "keywords": ["restroom sign", "ladies room", "user icon"], + "visual": "person silhouette with a round head, tapering triangular torso, and two legs" + }, + "Woman2": { + "keywords": ["restroom sign", "ladies room", "user icon", "avatar"], + "visual": "person silhouette with a round head, a wider tapering torso, and two legs" + }, + "Work": { + "keywords": ["portfolio", "career", "office", "professional"], + "visual": "briefcase shape with a handle on top" + }, + "WorkHistory": { + "keywords": ["employment history", "career history", "job history"], + "visual": "briefcase shape with a small clock badge at the bottom right corner" + }, + "WorkOff": { + "keywords": ["unemployed", "out of office", "leave", "day off"], + "visual": "briefcase shape with a diagonal slash through it" + }, + "WorkspacePremium": { + "keywords": ["achievement", "award", "quality seal", "premium badge"], + "visual": "medal shape with a star inside a circle and a ribbon tail below" + }, + "Workspaces": { + "keywords": ["cluster", "network nodes", "connected dots"], + "visual": "three circles of equal size arranged in a triangle with small gaps between them" + }, + "WorkspacesFilled": { + "keywords": [ + "circles", + "dots", + "collaboration", + "team", + "group", + "cluster", + "network nodes", + "connected dots", + "venn diagram", + "org chart" + ], + "visual": "three circles of equal size arranged in a triangle, touching each other closely" + }, + "WrapText": { + "keywords": ["text wrap", "line break", "word wrap", "overflow text"], + "visual": "horizontal lines of decreasing length with a looping arrow curling back at the end" + }, + "WrongLocation": { + "keywords": ["invalid address", "incorrect location", "delete location"], + "visual": "map pin teardrop shape with an X mark badge at the top right" + }, + "Wysiwyg": { + "keywords": ["rich text editor", "page editor", "cms", "content editor"], + "visual": "rounded square containing several horizontal lines like a text document" + }, + "X": { + "keywords": ["tweet", "elon musk", "x corp", "social media"], + "visual": "two diagonal bars crossing to form the letter X" + }, + "Yard": { + "keywords": ["gardening", "landscaping", "lawn", "outdoor space"], + "visual": "rounded square containing a flower with petals above a stem with leaves" + }, + "YouTube": { + "keywords": ["video streaming", "google", "watch video"], + "visual": "rounded rectangle shape with a play triangle in the center" + }, + "YoutubeSearchedFor": { + "keywords": ["search history", "recent searches", "retry search"], + "visual": "curved arrow looping around, pointing into a magnifying glass" + }, + "ZoomIn": { + "keywords": ["enlarge", "magnify", "increase zoom"], + "visual": "magnifying glass with a plus sign inside the lens" + }, + "ZoomInMap": { + "keywords": ["fit to screen", "collapse map", "minimize view", "focus area"], + "visual": "four arrows pointing inward toward the center, one from each corner" + }, + "ZoomOut": { + "keywords": ["shrink", "reduce zoom", "decrease"], + "visual": "magnifying glass with a minus sign inside the lens" + }, + "ZoomOutMap": { + "keywords": ["expand map", "fullscreen", "enlarge view", "full extent"], + "visual": "four arrows pointing outward away from the center, one toward each corner" + } +} diff --git a/docs/data/material/components/material-icons/semanticSearch.js b/docs/data/material/components/material-icons/semanticSearch.js new file mode 100644 index 00000000000000..0897708a618bd8 --- /dev/null +++ b/docs/data/material/components/material-icons/semanticSearch.js @@ -0,0 +1,122 @@ +// Semantic ranking for the icon search, backed by the static embedding index built by +// docs/scripts/buildIconSearchIndex.mjs. The query vector is the average of the vectors of the +// query's words, and icons are ranked by cosine similarity to it. + +// Number of nearest icons added to the keyword matches, so that searches with no keyword match +// ("rubbish", "puppy") still return results. +const SEMANTIC_NEIGHBORS = 60; + +function queryWords(query) { + return (query.match(/[A-Z]?[a-z]+|[A-Z]+(?![a-z])|\d+/g) ?? []).map((word) => + word.toLowerCase(), + ); +} + +export function createSemanticIndex(meta, buffer) { + const { dims, words, icons } = meta; + const wordScales = new Float32Array(buffer, 0, words.length); + const iconScales = new Float32Array(buffer, words.length * 4, icons.length); + const wordValues = new Int8Array( + buffer, + (words.length + icons.length) * 4, + words.length * dims, + ); + const iconValues = new Int8Array( + buffer, + (words.length + icons.length) * 4 + words.length * dims, + icons.length * dims, + ); + const wordIds = new Map(words.map((word, i) => [word, i])); + + const iconVectors = new Float32Array(icons.length * dims); + for (let row = 0; row < icons.length; row += 1) { + for (let i = 0; i < dims; i += 1) { + iconVectors[row * dims + i] = iconValues[row * dims + i] * iconScales[row]; + } + } + + /** + * Returns a Map of icon name to similarity score, or null when none of the query's words are + * in the index. + */ + function score(query) { + const ids = queryWords(query) + .map((word) => wordIds.get(word)) + .filter((id) => id !== undefined); + if (ids.length === 0) { + return null; + } + const vector = new Float32Array(dims); + for (const id of ids) { + for (let i = 0; i < dims; i += 1) { + vector[i] += wordValues[id * dims + i] * wordScales[id]; + } + } + const scores = new Map(); + for (let row = 0; row < icons.length; row += 1) { + let dot = 0; + for (let i = 0; i < dims; i += 1) { + dot += vector[i] * iconVectors[row * dims + i]; + } + scores.set(icons[row], dot); + } + return scores; + } + + return { score }; +} + +let indexPromise = null; + +export function loadSemanticIndex() { + if (!indexPromise) { + indexPromise = Promise.all([ + fetch('/static/material-icons/search-index.json').then((response) => + response.json(), + ), + fetch('/static/material-icons/search-index.bin').then((response) => + response.arrayBuffer(), + ), + ]) + .then(([meta, buffer]) => createSemanticIndex(meta, buffer)) + .catch((error) => { + indexPromise = null; + throw error; + }); + } + return indexPromise; +} + +/** + * Orders icon names (without theme suffix) for a query. + * `keywordMatches` are the names flexsearch found, in its order. + */ +export function rankIcons(query, keywordMatches, index) { + const scores = index?.score(query); + if (!scores) { + return keywordMatches; + } + const compactQuery = query.toLowerCase().replace(/[^a-z0-9]/g, ''); + const words = queryWords(query); + const byScore = [...scores.keys()].sort((a, b) => scores.get(b) - scores.get(a)); + const candidates = new Set([ + ...keywordMatches, + ...byScore.slice(0, SEMANTIC_NEIGHBORS), + ]); + const keywordMatched = new Set(keywordMatches); + // Icons whose name is the query or contains every query word come first, then keyword + // matches, then icons that are only semantically close. Each group is ordered by similarity. + const group = (name) => { + const nameParts = queryWords(name); + if ( + name.toLowerCase() === compactQuery || + words.every((word) => nameParts.includes(word)) + ) { + return 0; + } + return keywordMatched.has(name) ? 1 : 2; + }; + return [...candidates].sort( + (a, b) => group(a) - group(b) || scores.get(b) - scores.get(a), + ); +} diff --git a/docs/data/material/components/material-icons/synonyms.js b/docs/data/material/components/material-icons/synonyms.js index 9bcb33e7ca5f82..b54293cfafbfa8 100644 --- a/docs/data/material/components/material-icons/synonyms.js +++ b/docs/data/material/components/material-icons/synonyms.js @@ -1,3031 +1,4190 @@ const synonyms = { - Abc: 'alphabet character font letters symbol text type', - AccessAlarm: 'clock time', - AccessAlarms: 'clock time', - Accessibility: 'accessible body handicap help human people person user', - AccessibilityNew: 'accessible arms body handicap help human people person user', - Accessible: 'accessibility body handicap help human people person user wheelchair', + Abc: 'abcs alphabet and blocky capitals character font letters literacy preview sample sans-serif spelling style symbol text type typography word', + AccessAlarm: + 'access alarm bells clock deadline hands morning on pointing reminder ringing roughly round snooze ten timer top two up wake with', + AccessAlarms: + 'access alarms bells clock deadline hands morning nine one pointing reminder ringing roughly round snooze timer top two up wake with', + Accessibility: + 'accessibility accessible ada arms assistive body design disability diversity handicap head help human inclusive needs out people person round sides special standing straight stretched t-pose the to universal user with', + AccessibilityNew: + 'accessibility accessible active ada angled apart arms body design disability dynamic handicap head help human inclusive legs needs new outward people person pose round running slightly special universal up user with', + Accessible: + 'accessibility accessible ada body disability disabled from handicap help human inclusive large mobility needs one people person ramp seated shown side special the user wheelchair with', AccessibleForward: - 'accessibility body handicap help human people person wheelchair', - AccessTime: 'clock time', + 'accessibility accessible active ada ahead arm as body disability disabled forward handicap help human if leaning mobility moving people person racing reaching wheelchair with', + AccessTime: + 'access bells clock duration face hands history hour minute no pending pointing roughly round schedule ten timestamp two wait watch with', + AccessTimeFilled: + 'access circle clock duration face filled hands hour minute pending pointing roughly schedule ten timestamp to two wait watch with', AccountBalance: - 'bank bill building card cash coin commerce court credit currency dollars finance government money online payment structure temple transaction', + 'account and balance bank base bill building capitol card cash coin columns commerce courthouse credit currency dollars federal finance government institution ledge money museum online payment pediment reserve roof row savings sheet structure temple transaction treasury triangular with', AccountBalanceWallet: - 'bank bill card cash coin commerce credit currency dollars finance money online payment transaction', - AccountBox: 'avatar face human people person profile square thumbnail user', - AccountCircle: 'avatar face human people person profile thumbnail user', + 'account and balance bank billfold budget button card cash checkout coin commerce credit currency dollars finance flap front its money online or payment purse round savings shape spending transaction wallet with', + AccountBox: + 'account and avatar badge box card contact containing face frame head human identity login member people person profile rounded shoulders sign silhouette square thumbnail user', + AccountCircle: + 'account and avatar circle contact containing default face head human identity login member people person profile shoulders sign silhouette thumbnail user', AccountTree: - 'analytics chart connect data diagram flow infographic measure metrics process project sitemap square statistics structure tracking', - AcUnit: 'air cold conditioner freeze snowflake temperature weather winter', - Adb: 'android bridge debug', - Add: '+ create item new plus symbol', - AddAlarm: 'clock plus time', + 'account analytics boxes branches branching by connected data decision diagram family flowchart hierarchical hierarchy infographic layout lines measure metrics network nodes org process project sitemap small square statistics structure tracking tree', + AcUnit: + 'air arms center chilly climate cold conditioner control cool freeze from frost hvac ice pointed radiating refrigeration six snowflake temperature thermostat unit weather winter with', + Adb: 'adb android antennae below body bridge command debug developer eyes head line robot rounded sdk shell terminal tools two with', + Add: '+ addition append create increment insert item math new plus sign sum symbol', + AddAlarm: + 'add alarm and bells center clock create new on plus reminder round schedule set sign the time top two up wake with', AddAlert: - '+ active alarm announcement bell callout chime information new notifications notify plus reminder ring sound symbol', - AddAPhoto: '+ camera lens new photography picture plus symbol', - AddBox: 'create new plus square symbol', + '+ active add alarm alert announcement bell callout center chime create enable information new notifications notify plus reminder ring sign sound subscribe symbol the turn warning with', + AddAPhoto: + '+ add and at body camera capture corner image left lens new photography picture plus round sign small snapshot symbol take the top upload with', + AddBox: + 'add center checkbox create entry field insert item new plus rounded sign square symbol the with', AddBusiness: - '+ bill building card cash coin commerce company credit currency dollars market money new online payment plus retail shopping storefront symbol', + '+ add and at awning bill bottom building business card cash coin commerce company credit currency dollars listing market money new online open payment plus register retail right shopping sign small storefront symbol the vendor with', + AddCall: + 'add beside call conference contact dial handset merge new plus sign telephone with', AddCard: - '+ bill cash coin commerce cost credit currency dollars finance money new online payment plus price shopping symbol', + '+ add and at bill bottom card cash coin commerce cost credit currency dollars finance horizontal link method money near new online payment plus price register right shape shopping sign stripe symbol the top wallet with', Addchart: - '+ analytics bars data diagram infographic measure metrics new plus statistics symbol tracking', - AddCircle: '+ counter create new plus', - AddComment: '+ bubble chat communicate feedback message new plus speech symbol', - AddIcCall: '+ cell contact device hardware mobile new plus symbol telephone', - AddLink: 'attach clip new plus symbol', - AddLocation: '+ destination direction gps maps new pin place plus stop symbol', - AddLocationAlt: '+ destination direction maps new pin place plus stop symbol', + '+ addchart analytics and bars data diagram growth infographic insert measure metrics new plus report right rising sign statistics symbol the top tracking trend with', + AddCircle: + '+ add button center circle counter create expand increase insert new plus positive row sign the with', + AddComment: + '+ add and annotate bubble center chat comment communicate discuss feedback message new note plus pointed reply sign speech symbol tail the with', + AddHome: + 'address as badge bottom circular containing home house location move new plus property right save set sign the with', + AddHomeWork: + 'address and badge bottom circular commute home house location office plus right set sign small square the window with workplace', + AddIcCall: + '+ add beside call cell conference contact device dial handset hardware incoming merge mobile new plus sign symbol telephone with', + AddLink: + 'add attachment bottom chain clip connect hyperlink insert joined links new plus right sign small symbol together two url with', + AddLocation: + '+ address center destination direction gps location maps marker new pin place plus save sign stop symbol teardrop-shaped the waypoint with', + AddLocationAlt: + '+ address alt and badge destination direction favorite hole location maps mark middle new pin place plus right save sign stop symbol teardrop-shaped the waypoint with', AddModerator: - '+ certified new plus privacy private protection security shield symbol verified', + '+ add admin badge bottom certified grant moderator new permission plus privacy private promote protection right safety security shape shield sign symbol the trust verified with', AddPhotoAlternate: - '+ image landscape mountains new photography picture plus symbol', + '+ add alternate attach frame gallery image insert inside landscape mountains new photography picture plus right sign symbol the top upload with', AddReaction: - '+ emoji emotions expressions face feelings glad happiness happy icons insert like mood new person pleased plus smile smiling social survey symbol', + '+ add at badge emoji emotions expressions face feelings glad happiness happy icons insert like mood new person pleased plus reaction right sign smile smiling social sticker survey symbol the top with', AddRoad: - '+ destination direction highway maps new plus stop street symbol traffic', + '+ add and bottom construction dashed destination direction highway lane maps markings new pavement planning plus right road route sign stop street symbol the traffic vertical with', AddShoppingCart: - 'card cash checkout coin commerce credit currency dollars money online payment plus', - AddTask: '+ approve check circle completed increase mark ok plus select tick yes', + 'above add and bag basket buy card cart cash checkout coin credit currency dollars ecommerce money online order payment plus purchase shopping sign the to two wheels with', + AddTask: + '+ add approve assign at bottom checklist checkmark circle circular completed done increase item new ok overlapping plus right select task the tick to-do with yes', AddToDrive: - '+ application backup cloud data files folders gdrive google plus recovery shortcut storage', + '+ add application backup bottom cloud data files folders gdrive google import logo plus recovery right save shortcut sign storage the triangular upload with', AddToHomeScreen: - 'Android add arrow cell device hardware iOS mobile phone tablet to up', - AddToPhotos: 'collection image landscape mountains photography picture plus', + 'Android add app arrow bookmark cell device diagonal hardware home iOS icon inside install launch left mobile phone pin pointing pwa rectangle rounded screen shortcut tablet the to upper with', + AddToPhotos: + 'add album collection frames front gallery image import landscape library mountains of one photography photos picture plus save sign square stack the with', AddToQueue: - '+ Android backlog chrome desktop device display hardware iOS lineup mac monitor new plus screen symbol television watch web window', - AdfScanner: 'document feeder machine office', + '+ Android add backlog center chrome desktop device display hardware iOS later lineup mac monitor new playback playlist plus queue schedule screen sign stream symbol television the watch web window with', + AdfScanner: + 'adf and automatic copier documents dot fax feeder machine multifunction office or paper printer round scanner shape top tray with', Adjust: - 'alter auto center circles click control dot edit filter fix focus image mix move setting slider sort switch target tune', + 'adjust alter auto bullseye calibrate centered circles click configure control dial dot edit filter fix focus image inside knob like mix move preferences setting slider smaller sort switch target tune with', AdminPanelSettings: - 'account avatar certified face human people person privacy private profile protection security shield user verified', - AdsClick: 'browser clicks cursor internet target traffic web', + 'access account administrator avatar badge bottom certified control face human management moderator panel people permissions person privacy private profile protection right role security settings shape shield small superuser the verified with', + AdsClick: + 'ads advertisement arrow browser campaign center clicks concentric conversion cursor engagement internet into marketing pay per pointing ppc rings target the traffic web with', AdUnits: - 'Android banner cell device hardware iOS mobile notifications phone tablet top', + 'Android advertisement and app banner bar below cell commercial device hardware horizontal iOS lines marketing mobile near notifications phone-shaped promo push rectangle tablet text the top units with', Agriculture: - 'automobile cars cultivation farm harvest maps tractor transport travel truck vehicle', - Air: 'blowing breeze flow wave weather wind', + 'agrarian agriculture automobile cars crop cultivation farming farmland field from front harvest large maps plow rear rural seat shown side small the tractor transport travel truck vehicle wheel with', + Air: 'airflow atmosphere blowing breeze curved draft gale gusts horizontally like lines of swirling ventilation wave weather wind', Airlines: - 'aircraft airplanes airport flights flying mode signal transportation travel trip', + 'aircraft airlines airplanes airport aviation boarding carrier company fin flights flying mode round signal tail transportation travel triangular trip window with', AirlineSeatFlat: - 'bed body business class first human people person rest sleep travel', + 'airline airplane bed body business class down first flat from horizontal human in-flight lie lying nap people person pod rest seat side sleep the travel viewed', AirlineSeatFlatAngled: - 'bed body business class first human people person rest sleep travel', + 'airline airplane angled back bed body business class first flat human in-flight is lie lying or people person recline rest seat sleep that tilted travel', AirlineSeatIndividualSuite: - 'bed body business class first human people person rest sleep travel', - AirlineSeatLegroomExtra: 'body feet human people person sitting space travel', - AirlineSeatLegroomNormal: 'body feet human people person sitting space travel', - AirlineSeatLegroomReduced: 'body feet human people person sitting space travel', + 'airline bed body business cabin capsule class enclosed first human individual inside lying or people person pod privacy private rectangular rest seat sleeping suite travel', + AirlineSeatLegroomExtra: + 'airline body comfort economy extra feet forward human legroom legs more of people person premium seat side sitting space spacious stretched the travel view with', + AirlineSeatLegroomNormal: + 'airline angle bent body class coach economy feet human legroom normal of people person regular seating side sitting space standard the travel typical view with', + AirlineSeatLegroomReduced: + 'airline basic bent body close cramped economy feet for human legroom limited of people person reduced restricted seat side sitting space the tight travel view with', AirlineSeatReclineExtra: - 'body feet human legroom people person sitting space travel', + 'airline back body business class extra far feet full head human lean legroom lounge people person reclined relax round seat side sitting space travel view with', AirlineSeatReclineNormal: - 'body extra feet human legroom people person sitting space travel', + 'airline body economy extra feet head human legroom normal people person position posture recline regular round seating side sitting space standard travel upright view with', AirlineStops: - 'arrow destination direction layover location maps place transportation travel trip', + 'airline and arrow branches connecting continues curved destination detour direction flight indicating itinerary layover location maps off onward place route stopover stops that transfer transportation travel trip', AirplanemodeActive: - 'aircraft airplanes airport flights flying signal transportation travel trip', + 'active aircraft airplanemode airplanes airport cellular disconnect flights flying no offline pointing signal silhouette transportation travel trip upward', AirplanemodeInactive: - 'aircraft airplanes airport disabled enabled flights flying maps offline signal slash transportation travel trip', + 'aircraft airplanemode airplanes airport cellular connected diagonal disabled enabled flights flying inactive maps offline signal silhouette slash through transportation travel trip wifi with', AirplaneTicket: - 'aircraft airplanes airport boarding flights flying maps pass signal transportation travel trip', + 'aircraft airplanes airport boarding book document e-ticket flights flying inside maps pass rectangle reservation rounded shape signal silhouette transportation travel trip with', Airplay: - 'apple arrow cast connect control desktop device display monitor screen signal television tv', + 'airplay apple arrow below cast connect control desktop device display mirroring monitor pointing rectangular screen signal stream television triangle tv up wireless with', AirportShuttle: - 'automobile bus cars commercial delivery direction maps mini public transportation travel truck van vehicle', - Alarm: 'alart alert bell clock countdown date notification schedule time', + 'across airport and automobile cars commercial delivery direction from hotel maps minibus passenger public ride service shown shuttle side taxi the top transfer transportation travel truck two van vehicle wheels windows with', + Alarm: + 'alarm alart alert bells buzzer clock countdown date hands morning notification pointing ring round schedule snooze timer top two up wake with', AlarmAdd: - '+ alart alert bell clock countdown date new notification plus schedule symbol time', + '+ add alarm alart alert and bells center clock countdown create date new notification plus reminder round schedule set sign symbol the timer top two up wake with', AlarmOff: - 'alart alert bell checkmark clock disabled duration enabled notification slash stop timer watch', + 'alarm alart alert and bells cancel checkmark circle clock diagonal disabled dismiss duration enabled mute notification off over ringing round silence slash stop through timer two watch with', AlarmOn: - 'alart alert bell checkmark clock disabled duration enabled notification off ready slash start timer watch', + 'active alarm alart alert and armed bells center checkmark clock confirmed disabled duration enabled in notification off ready round set slash start the timer top two watch with', Album: - 'artist audio bvb cd computer data disk file music play record sound storage track vinyl', - AlignHorizontalCenter: 'alignment format layout lines paragraph rules style text', - AlignHorizontalLeft: 'alignment format layout lines paragraph rules style text', - AlignHorizontalRight: 'alignment format layout lines paragraph rules style text', - AlignVerticalBottom: 'alignment format layout lines paragraph rules style text', - AlignVerticalCenter: 'alignment format layout lines paragraph rules style text', - AlignVerticalTop: 'alignment format layout lines paragraph rules style text', - AllInbox: 'Inbox delivered delivery email letter message post send', + 'album artist audio bvb cd center circle collection computer data discography disk dot file gallery like lp music photo playlist record small songs sound storage the track vinyl with', + AlignHorizontalCenter: + 'alignment bars centering crossing different distribute format horizontally layout lengths lines middle midpoint objects of paragraph rules style text the through two vertical with', + AlignHorizontalLeft: + 'alignment bars different edge extending flush format from horizontal justify layout left lengths lines objects of paragraph right rules style text the two vertical with', + AlignHorizontalRight: + 'alignment bars different edge extending flush format from horizontal justify layout left lengths lines objects of paragraph right rules style text the two vertical with', + AlignVerticalBottom: + 'above alignment along bars baseline bottom different flush format heights horizontal layout lines objects of paragraph rules sit standing style text the two vertical with', + AlignVerticalCenter: + 'alignment bars center crossing different distribute format heights horizontal layout lines middle midline objects of paragraph rules style text the through two vertically with', + AlignVerticalTop: + 'alignment along bars below ceiling different flush format from hanging heights horizontal layout lines objects of paragraph rules style text the top two vertical with', + AllInbox: + 'Inbox all and archive delivered delivery downward drawers email inbox letter mailbox messages middle notch post send stacked the tray two unified with', AllInclusive: - 'endless forever infinite infinity loop mobius neverending strip sustainability sustainable', - AllOut: 'arrows circle directional expand shape', - AlternateEmail: '@ address contact tag', + 'all continuous curves eight endless eternity figure forever inclusive infinite infinity looping made mobius neverending of one recycle strip sustainability sustainable symbol two unlimited', + AllOut: + 'all arrows brackets circle corner directional expand fit four fullscreen maximize out right-angle shape surrounding to with zoom', + AlternateEmail: + '@ address alternate contact email handle mention sign social symbol tag username', AltRoute: - 'alternate alternative arrows dashed direction maps navigation options other routes split symbol', + 'alternate alternative and arrows branching choice continuous dashed detour direction diverge fork forming from gps maps navigation one options other reroute road routes single split symbol two upward waypoint', Analytics: - 'assessment bar chart data diagram infographic measure metrics statistics tracking', - Anchor: 'google logo', - Android: 'brand character logo mascot operating system toy', - Animation: 'circles film motion movement movie moving sequence video', + 'analytics assessment bar chart columns containing dashboard data diagram height increasing infographic insights kpi measure metrics of performance reporting rounded square statistics tracking', + Anchor: + 'anchor and boating bottom curved dock flukes google logo marine mooring nautical sailor shape ship the top with', + Android: + 'android antennae brand bugdroid character dome-shaped eyes google head logo mascot mobile operating os robot round system toy two with', + Animation: + 'animate animation circles diagonally film gif graphics keyframe motion movement movie moving outlines overlapping rings sequence stacked three transition video', Announcement: - '! alert attention balloon bubble caution chat comment communicate danger error exclamation feedback important mark message news notification speech symbol warning', - Aod: 'Android always device display hardware homescreen iOS mobile phone tablet', + '! alert and announcement attention balloon broadcast bubble bulletin caution chat comment communicate danger error exclamation feedback heads important inside mark message news notice notification pointed press proclamation public release speech symbol tail up warning with', + Aod: 'Android always ambient aod center device display hardware homescreen horizontal iOS idle lines lock mobile phone rounded short standby tablet the two with', Apartment: - 'accommodation architecture building city company estate flat home house office places real residence residential shelter units workplace', - Api: 'developer development enterprise software', + 'accommodation apartment architecture block building city company complex condo estate flats grid high home house multi-story office places real residence residential rise shelter skyscraper small square tenement units windows with workplace', + Api: 'api application around arranged central cross developer development diamond endpoint enterprise four integration interface like programming sdk shapes small software webhook', AppBlocking: - 'Android applications cancel cell device hardware iOS mobile phone stopped tablet', - Apple: 'brand logo', - AppRegistration: 'apps edit pencil register', + 'Android access applications badge banned blocking cancel cell circular control device disable forbidden hardware iOS mobile no-entry parental phone restrict right slash stopped tablet the with', + Apple: + 'apple at brand company cupertino fruit ios iphone leaf logo macos silhouette small tech the top with', + AppRegistration: + 'account across apps create diagonally edit enroll form grid of pencil register registration sign small squares survey up with writing', Approval: - 'apply approvals approve certificate certification disapproval drive file impression ink mark postage stamp', - Apps: 'all applications circles collection components dots grid homescreen icons interface squares ui ux', + 'above apply approvals approve authorize badge bar certificate certification confirm containing disapproval drive endorsement file horizontal impression ink license like mark off pin postage rectangle sign stamp teardrop-shaped verified', + Apps: 'applications apps arranged by circles collection components dots drawer grid homescreen icons interface launcher menu nine of small squares three ui ux waffle', AppSettingsAlt: - 'Android applications cell device gear hardware iOS mobile phone tablet', + 'Android alt applications badge cell configure device edge gear hardware iOS its mobile phone preferences right settings tablet with', AppShortcut: - 'bookmarked favorite highlight important mobile saved software special star', + 'Android app beside bookmarked cell device favorite hardware highlight home iOS icon important launch mirror mobile monitor phone pinned quick saved screencast shapes share shortcut software sparkle special star streaming tablet tv widget wireless with', AppsOutage: - 'all applications circles collection components dots grid interface squares ui ux', - Architecture: 'art compass design drawing engineering geometric tool', - Archive: 'inbox mail store', + 'alert an applications apps by circles collection components containing dots down error exclamation failure grid interface malfunction mark of outage replaced service small squares status system ui ux with', + Architecture: + 'architecture art at blueprint building caliper compass construction design drafting drawing engineering geometric hinge joined legs pointed round tool two with', + Archive: + 'archive arrow away backup compress downward face file for front inbox its later mail save storage store with', AreaChart: - 'analytics data diagram infographic measure metrics statistics tracking', + 'analytics and area beneath chart data diagram falling growth infographic jagged line measure metrics rising sales shaded statistics stock the tracking trend with', ArrowBack: - 'DISABLE_IOS application components direction disable_ios interface left navigation previous screen ui ux website', + 'DISABLE_IOS application arrow backward components direction disable_ios interface left navigation page pointing previous prior return screen thick ui undo ux website', ArrowBackIos: - 'DISABLE_IOS application chevron components direction disable_ios interface left navigation previous screen ui ux website', + 'DISABLE_IOS application arrow back carat chevron components direction disable_ios interface left less navigate navigation pointing previous screen than thin ui ux website', ArrowBackIosNew: - 'DISABLE_IOS application chevron components direction disable_ios interface left navigation previous screen ui ux website', - ArrowCircleDown: 'direction navigation', - ArrowCircleLeft: 'direction navigation', - ArrowCircleRight: 'direction navigation', - ArrowCircleUp: 'direction navigation', + 'DISABLE_IOS application arrow back chevron components direction disable_ios go interface left less navigate navigation new pointing previous screen than thin ui ux website', + ArrowCircleDown: + 'arrow circle collapse decrease direction download downward inside move navigation scroll with', + ArrowCircleLeft: + 'arrow backward circle direction go inside left-pointing navigation previous prior rewind with', + ArrowCircleRight: + 'advance arrow circle continue direction forward inside navigation next proceed right-pointing with', + ArrowCircleUp: + 'arrow circle direction expand increase inside move navigation scroll upload upward with', ArrowDownward: - 'application components direction interface navigation screen ui ux website', + 'application arrow components decrease descend direction downward drop interface navigation plunge pointing screen south straight thick ui ux website', ArrowDropDown: - 'application components direction interface navigation screen ui ux website', + 'application arrow caret components direction down drop expand interface menu more navigation options pointing screen show small straight triangle ui ux website', ArrowDropDownCircle: - 'application components direction interface navigation screen ui ux website', + 'application arrow button caret choices circle components direction dropdown expand inside interface menu navigation options pointing reveal screen select triangle ui ux website with', ArrowDropUp: - 'application components direction interface navigation screen ui ux website', + 'application arrow caret collapse components direction drop hide interface less menu navigation options pointing screen small straight triangle ui up ux website', ArrowForward: - 'application arrows components direction interface navigation right screen ui ux website', + 'advance application arrows components continue direction east forward interface navigation next pointing proceed right screen thick ui ux website', ArrowForwardIos: - 'application chevron components direction interface navigation next right screen ui ux website', + 'application arrow carat chevron components direction forward greater interface ios navigation next pointing proceed right screen than thin ui ux website', ArrowLeft: - 'application backstack backward components direction interface navigation previous screen ui ux website', + 'application arrow backstack backward components direction interface left navigation pointing previous prior screen shape the to triangle ui ux website west', ArrowOutward: - 'application arrows components direction forward interface navigation right screen ui ux website', + 'application arrows components diagonally direction external forward interface leave link navigation new northeast open outward page pointing right screen tab to ui upper ux website', ArrowRight: - 'application components continue direction forward interface navigation screen ui ux website', - ArrowRightAlt: 'arrows direction east navigation pointing shape', + 'application arrow components continue direction east forward interface navigation next play pointing proceed right screen shape the to triangle ui ux website', + ArrowRightAlt: + 'alt an arrowhead arrows direction east ending forward horizontal line long navigation next pointing right shape straight thick', ArrowUpward: - 'application components direction interface navigation screen submit ui ux website', - Article: 'clarify document file news page paper text writing', + 'application arrow ascend components direction increase interface navigation north pointing rise screen straight submit thick ui upload upward ux website', + Article: + 'article blog clarify content document file horizontal journal lines more news of page paper post press read rectangle rounded story text with writing', ArtTrack: - 'album artist audio display format image insert music photography picture sound tracks', - AspectRatio: 'dashed expand image monitor resize resolution scale screen square', + 'album artist audio beside details display entry format horizontal image info insert landscape like lines listing media music now photography picture playing small song sound three thumbnail tracks', + AspectRatio: + 'aspect bottom brackets corner crop dashed dimensions expand fit frame image left monitor proportions ratio rectangle resize resolution right scale square the top widescreen with', Assessment: - 'analytics bars chart data diagram infographic measure metrics report statistics tracking', - Assignment: 'article clipboard document task text writing', - AssignmentInd: 'account clipboard document face people person profile task user', + 'analytics assessment audit bars card chart columns containing data diagram evaluation exam height infographic measure metrics of report results review rounded square statistics survey tracking varying', + Assignment: + 'and article assignment at checklist clipboard document form homework horizontal lines notes of report small tab task text the top with worksheet writing', + AssignmentAdd: + 'add and assignment badge bottom clipboard create form homework new note plus report right small tab task the top with', + AssignmentInd: + 'account and assignment at badge clipboard document employee face head hr individual inside people personnel profile record shoulders small staff tab task the top user with', AssignmentLate: - '! alert announcement attention caution clipboard danger document error exclamation important mark notification symbol task warning', - AssignmentReturn: 'arrow back clipboard document left point retun task', - AssignmentReturned: 'arrow clipboard document down point task', + '! alert and announcement assignment attention caution clipboard danger deadline document error exclamation important inside late mark missed notification overdue past pending small symbol tab task the top urgent warning with', + AssignmentReturn: + 'arrow assignment at back clipboard document give hand inside item left-pointing retun return send small submit tab task the top with', + AssignmentReturned: + 'and arrow assignment at clipboard document download downward incoming inside point received report returned small submitted tab task the top with', AssignmentTurnedIn: - 'approve checkmark clipboard complete document done finished ok select task tick validate verified yes', + 'accepted and approve assignment checkmark clipboard complete document done finished graded homework inside ok select small submitted tab task the tick top turned validate verified with yes', Assistant: - 'artificial automatic automation bubble chat comment communicate custom feedback genai intelligence magic message recommendation smart sparkle speech star suggestion twinkle', + 'artificial assistant automatic automation bubble chatbot comment communicate copilot custom feedback four-pointed genai helper inside intelligence magic message recommendation rounded shape smart sparkle speech star suggestion teardrop twinkle virtual voice', AssistantDirection: - 'destination location maps navigate navigation pin place right stop', - AssistantPhoto: 'flag recommendation smart star suggestion', + 'arrow assistant circle containing destination diamond direction gps guidance inside location maps navigate navigation next pin place right-turning route stop wayfinding with', + AssistantNavigation: + 'assistant circle compass current direction gps heading inside navigation needle north pointer pointing triangular up wayfinding with', + AssistantPhoto: + 'assistant bookmark bottom cut edge flag highlight into its marker notch pennant photo recommendation shape smart star suggestion tag with', AssistWalker: - 'accessibility accessible body disability handicap help human injured injury mobility person', + 'accessibility accessible assist bent body disability elderly forward four-legged frame handicap help human injured injury mobility person physical rehab senior therapy using walker walking zimmer', AssuredWorkload: - 'account balance bank bill building card cash coin commerce compliance confidential credit currency dollars federal finance government money online payment regulatory secure sensitive', - Atm: 'alphabet automated bill card cart cash character coin commerce credit currency dollars font letters machine money online payment shopping symbol teller text type', - AttachEmail: 'attachment compose envelop letters link message paperclip send', - AttachFile: 'add attachment item link mail media paperclip', - Attachment: 'compose file image item link paperclip', + 'account and assured balance bank beside bill building card cash checkmark cloud coin columns commerce compliance confidential credit currency data dollars federal finance government infrastructure money online payment protected regulated regulatory roof secure sensitive shield sovereignty triangular trusted with workload', + Atm: 'alphabet and atm automated bank bill blocky card cart cashpoint character coin commerce credit currency dollars font letters machine money online payment shopping symbol teller text type withdrawal', + AttachEmail: + 'attachment badge bottom compose corner document email envelope file forward letters linked message paperclip right send the with', + AttachFile: + 'add attachment curving document end file insert into item join link long loop mail media one paperclip shape upload', + Attachment: + 'angle attachment bent compose enclosure fastener file image item join link paperclip', AttachMoney: - 'attachment bill card cash circle coin commerce cost credit currency dollars finance monetization online payment price profit sale shopping symbol', - Attractions: 'amusement entertainment ferris fun maps park places wheel', + 'attachment bill card cash circle coin commerce cost credit currency dollars finance monetization money online payment price profit sale shopping sign symbol tag usd', + Attractions: + 'amusement and around attractions carnival central circles entertainment fairground ferris fun hub maps park places sightseeing small spokes spot theme tourist wheel with', Attribution: - 'account attribute body circle copyright copywriter human people person profile user youtube', - AudioFile: 'document key music note sound track', - Audiotrack: 'key music note sound', + 'account and attribute attribution author badge body byline circle citation containing copyright copywriter credit head human license people person profile shoulders silhouette source user youtube', + AudioFile: + 'and audio clip corner document file folded inside key media mp3 music note page song sound track wav with', + Audiotrack: 'audiotrack key melody musical note single song soundtrack tune', AutoAwesome: - 'adjust artificial automatic automation custom editing enhance filter genai image intelligence magic photography photos setting smart sparkle stars', + 'adjust artificial automatic automation awesome beside brilliance custom editing effect enhance filter four-pointed genai generate image intelligence large magic photography photos setting shine smaller smart sparkles stars twinkle two with', AutoAwesomeMosaic: - 'adjust collage editing enhance filter grid image layout photographs photography photos pictures setting', + 'adjust and auto awesome collage editing enhance filter gallery grid image layout mosaic panel photographs photography photos pictures rectangles setting smaller stacked tall tile two', AutoAwesomeMotion: - 'adjust animation collage editing enhance filter image live photographs photography photos pictures setting video', - AutoDelete: 'bin can clock date garbage remove schedule time trash', + 'adjust animated animation auto awesome behind burst collage diagonally editing effect enhance filter frames gif image live mode motion offset overlapping photographs photography photos pictures rounded setting shape squares stacked them trailing two video with', + AutoDelete: + 'and auto badge bin bottom can clock date delete deletion destruct disappearing expire garbage lid messages purge remove right scheduled self the time trash with', AutoFixHigh: - 'adjust artificial automatic automation custom editing enhance erase genai intelligence magic modify pen smart sparkle stars tool wand', + 'adjust angle around artificial automatic automation custom editing effect enhance erase fix genai high intelligence its magic modify pen retouch several smart sparkles spell stars tip tool wand with', AutoFixNormal: - 'artificial automatic automation custom edit erase genai intelligence magic modify smart sparkle stars wand', + 'angle artificial automatic automation custom edit enhance erase fix genai intelligence its magic minor modify normal quick single smart sparkle stars tip touch up wand with', AutoFixOff: - 'artificial automatic automation custom disabled edit enabled erase genai intelligence magic modify slash smart sparkle stars wand', + 'artificial automatic automation cancel crossed custom diagonal disabled edit enabled enhancement erase fix genai intelligence magic modify no off out retouch slash small smart sparkle stars through turn wand with', AutofpsSelect: - 'A alphabet character font frame frequency letters per rate seconds symbol text type', + 'A above alphabet autofps bars camera character circle containing font frame frequency letters per rate refresh row seconds select setting short speed symbol text the type vertical video', AutoGraph: - 'analytics chart data diagram infographic line measure metrics stars statistics tracking', + 'above ai analytics auto chart data diagram growth infographic insights jagged measure metrics rising smart sparkles sparkline stars statistics tracking trending up with', AutoMode: - 'around arrows artificial automatic automation custom direction genai inprogress intelligence loading magic navigation nest refresh renew rotate smart sparkle star turn', + 'around arrows artificial automatic automation circular custom dashed direction driving genai inprogress intelligence loading magic mode navigation nest pilot refresh renew rotate self setting smart sparkle star surrounding sync turn', Autorenew: - 'around arrows cached direction inprogress loader loading navigation pending refresh rotate status turn', - AutoStories: 'audiobook flipping pages reading story', - AvTimer: 'clock countdown duration minutes seconds stopwatch', + 'around arrows autorenew cached circular curved cycle direction forming inprogress loader loading loop navigation pending refresh reload renewal rotate status subscription sync turn two update', + AutoStories: + 'audiobook auto bookmark chapter ebook fanned flipping library novel on open pages reading right side stories story the with', + AvTimer: + 'around av clock countdown dots duration elapsed face hands hour interval minutes recording rim seconds stopwatch the timer video with', BabyChangingStation: - 'babies bathroom body children father human infant kids mother newborn people person toddler wc young', - BackHand: 'fingers gesture raised', - Backpack: 'bookbag knapsack storage travel', - Backspace: 'arrow cancel clear correct delete erase remove', - Backup: 'arrow cloud data drive files folders point storage submit upload', - BackupTable: 'drive files folders format layout stack storage', + 'babies baby bathroom beside body changing children diaper family father human infant kids mother newborn nursery parent people person restroom shape standing station table toddler wc with young', + BackHand: + 'back facing fingers five forward gesture halt hand high open palm raised spread stop talk the visible wait with', + Backpack: + 'and backpack bookbag flap front gear hiking knapsack pocket rucksack satchel school shape storage straps travel two with', + Backspace: + 'arrow backspace cancel character clear correct delete erase inside keyboard left mark pointing remove rubout shape text wide with', + Backup: + 'an arrow backup cloud copy data drive export files folders inside point restore save shape storage submit sync upload upward with', + BackupTable: + 'backup behind clone copy drive duplicate files folders format grid layout page save shape snapshot spreadsheet stack storage table with', Badge: - 'account avatar card certified employee face human identification name people person profile security user work', - BakeryDining: 'bread breakfast brunch croissant food', + 'account and avatar badge card certified clearance clip credential employee face human identification lanyard lines name pass people person profile security silhouette staff tag text the top user with work', + BakeryDining: + 'baked bakery bread breakfast brunch bun cafe croissant curved dining food goods pastry patisserie ridges shape with', Balance: - 'equal equilibrium equity impartiality justice parity stability. steadiness symmetry', + 'balance bar comparison equal equilibrium equity fairness from hanging horizontal impartiality justice law libra pans parity scale stability. stand steadiness symmetry two weigh with', Balcony: - 'architecture doors estate home house maps outside place real residence residential stay terrace window', - Ballot: 'bullet bulllet election list point poll vote', + 'above apartment arched architecture balcony building doors estate facade home house juliet ledge maps outdoor outside patio place railed real residence residential stay terrace veranda window with', + Ballot: + 'and ballot bullet bulllet checkbox containing election form lines list point polling referendum short small squares survey text vote voting', BarChart: - 'analytics anlytics data diagram infographic measure metrics statistics tracking', - BatchPrediction: 'bulb idea light', - Bathroom: 'closet home house place plumbing shower sprinkler wash water wc', - Bathtub: 'bathing bathroom clean home hotel human person shower travel', - Battery0Bar: 'cell charge full mobile power', - Battery1Bar: 'cell charge mobile power', - Battery2Bar: 'cell charge mobile power', - Battery3Bar: 'cell charge mobile power', - Battery4Bar: 'cell charge mobile power', - Battery5Bar: 'cell charge mobile power', - Battery6Bar: 'cell charge mobile power', + 'analytics anlytics bars by chart column comparison data diagram different heights histogram infographic measure metrics of side statistics three tracking vertical', + BarcodeReader: + 'barcode beside checkout gun handheld inventory lines of point price reader sale scanner shape small upc with', + BatchPrediction: + 'across ai and batch data forecast idea inside insight learning lightbulb lines machine model prediction rectangle rounded short the top with', + Bathroom: + 'bathroom below closet containing domed droplets falling head home house lavatory loo place plumbing restroom shower sprinkler square toilet washroom water wc with', + Bathtub: + 'above bathing bathroom bathtub clean curved faucet home hotel human inside person relax shower sitting soak spa travel with', + Battery0Bar: + 'bar battery cell charge dead empty full indicator knob level mobile on power small tall terminal top with', + Battery1Bar: + 'almost bar battery cell charge dead empty indicator knob level low mobile on power small tall terminal top weak with', + Battery20: + '20 and battery bottom dark fill knob low near percentage power recharge small soon tall terminal the thin top with', + Battery2Bar: + 'almost and appearing area bar battery body cell charge charging empty filling knob large low mobile nearly needs of on pale power running shape small tall terminal the top weak with', + Battery30: + '30 above and battery bottom charge charging dark knob level low near needs pale percent portion power shape small status tall terminal the top with', + Battery3Bar: + 'bar battery cell charge dark full good high knob level mobile mostly near pale power shape small square strong tall terminal the top with', + Battery4Bar: + 'bar battery cell charge dark full good high knob level mobile mostly near pale power shape small square strong tall terminal the top with', + Battery50: + '50 and battery bottom charged dark half knob level medium midway on pale percent power shape small status tall terminal the top with', + Battery5Bar: + 'bar battery cell charged dark full good high knob level mobile mostly nearly pale power shape small square strong tall terminal the top well with', + Battery60: + '60 above battery body charge dark filling good half knob level more on pale percent power shape small status strip tall terminal than the top with', + Battery6Bar: + 'almost bar battery cell charged dark full high knob level line mobile mostly nearly pale power shape small strong tall terminal the thin top well with', + Battery80: + '80 battery body charge dark filling full high knob level most nearly of on pale percent power shape small status strip tall terminal the thin top with', + Battery90: + '90 almost battery body charge dark filling full high knob level nearly of on pale percent power shape small status strip tall terminal the thin top very with', BatteryAlert: - '! attention caution cell charge danger error exclamation important mark mobile notification power symbol warning', + '! alert and attention battery caution cell center charge charging critical danger error exclamation important knob low mark mobile needs notification pale power shape small symbol tall terminal the top urgent warning with', + BatteryCharging20: + '20 across and battery bolt bottom center connected dark juicing lightning mostly pale plugged portion power recharging shape small tall the up with', + BatteryCharging30: + '30 across and battery bolt bottom center connected dark lightning mostly near pale percent plugged portion power recharging shape tall the up with', + BatteryCharging50: + '50 across and battery bolt bottom center charge connected dark half lightning pale plugged power recharging shape tall the top up with', + BatteryCharging60: + '60 across and battery body bolt center connected dark filling half lightning more pale percent plugged power recharging shape tall than the to up with', + BatteryCharging80: + '80 across and battery body bolt center charged connected dark filling lightning most nearly of pale plugged power recharging shape tall the to up with', + BatteryCharging90: + '90 across almost battery body bolt center charged connected dark filling fully knob lightning nearly of pale plugged power recharging shape small tall terminal the top up with', BatteryChargingFull: - 'cell charge electric energy instant lightening lightning mobile power thunderbolt', - BatteryFull: '0 bar cell charge mobile power', - BatterySaver: '+ add charge charging new plus power symbol', - BatteryStd: 'cell charge mobile plus power standard', + 'across battery cell center charge charging complete connected dark electric energy entirely fully instant knob lightening lightning low mobile pale plugged powered shape small tall terminal the thunderbolt topped up with', + BatteryFull: + '100 bar battery cell charged dark entirely fully inside knob max mobile on percent power shape small symbol tall terminal topped up with', + BatterySaver: + '+ add and battery center charge charging efficiency energy extend knob life low mode new on pale plus power saver saving shape sign small symbol tall terminal the top with', + BatteryStd: + 'battery cell charge complete dark default entirely full inside knob level mobile on plus power regular shape small standard std symbol tall terminal topped up with', BatteryUnknown: - '? assistance cell charge help information mark mobile power punctuation question support symbol', - BeachAccess: 'parasol places summer sunny umbrella', - Bed: 'bedroom double full furniture home hotel house king night pillows queen rest size sleep', + '? and assistance battery cell center charge data detected help information knob mark missing mobile not pale power punctuation question shape small status support symbol tall terminal the top unavailable unknown with', + BeachAccess: + 'access beach coastal down extending holiday its open parasol places pole resort seaside summer sunny sunshade the tilted to umbrella vacation with', + Bed: 'against bedroom double frame full furniture headboard home hotel house king legs mattress nap night on pillows queen resting size sleeping two with', BedroomBaby: - 'babies children home horse house infant kid newborn rocking toddler young', + 'babies baby bedroom children containing crib home horse house infant kids newborn nursery playroom rocking rounded silhouette square toddler young', BedroomChild: - 'children furniture home hotel house kid night pillows rest size sleep twin young', + 'against bedroom children containing furniture headboard home hotel house kids night pillows rest rounded single size sleep square teen twin with young youth', BedroomParent: - 'double full furniture home hotel house king master night pillows queen rest sizem sleep', + 'against bedroom containing double full furniture headboard home hotel house king main master night parent pillows queen rest rounded sizem sleep square two with', Bedtime: - 'clear climate home lunar moon nest nightime quiet security sleep thermostat weather', + 'bedtime clear climate crescent dark disturb do home lunar mode moon nest nightime nighttime not quiet security shape shift sleep thermostat weather', BedtimeOff: - 'active clear climate disabled home lunar moon nest nightime offline quiet security slash sleep thermostat weather', + 'active awake bedtime clear climate crescent daytime diagonal disabled home lunar mode moon nest nightime offline quiet security shape slash sleep thermostat through turn weather with', Beenhere: - 'approve archive bookmark checkmark complete done favorite label library reading remember ribbon save select tag tick validate verified yes', - Bento: 'box dinner food lunch meal restaurant takeout', - BikeScooter: 'automobile cars maps transportation vehicle vespa', - Biotech: 'chemistry laboratory microscope research science technology test', - Blender: 'appliance cooking electric juicer kitchen machine vitamix', + 'approval approve archive beenhere bookmark checked checkmark complete done favorite inside label library location of past reading remember ribbon save select shape shield stamp tag tick validate verified visited with yes', + Bento: + 'bento compartments containing dinner divided dot food into japanese like lunchbox meal one prep restaurant rounded sections square sushi takeout', + BikeScooter: + 'automobile bicycle bike cars e-scooter handlebars last maps micromobility mile moped overlapping shapes share transportation vehicle vespa visible wheels with', + Biotech: + 'angled biotechnology chemistry equipment eyepiece genomics laboratory life medical microscope on research round sciences stage stand test tube with', + Blender: + 'appliance base blender cooking electric food gadget handle jug juicer kitchen lid machine maker mixer on processor puree round sitting smoothie vitamix with', Blind: - 'accessibility accessible assist body cane disability handicap help human mobility person walker', - Blinds: 'cover curtains nest open shutter sunshade', - BlindsClosed: 'cover curtains nest shutter sunshade', + 'accessibility accessible assist blind body cane disability front guide handicap help holding human impaired loss low mobility out person sight vision visually walker walking while white', + Blinds: + 'blinds cord covering curtains drapes hanging horizontal made nest of one open pull shades shutter side slats sunshade venetian window with', + BlindsClosed: + 'and blackout blinds bottom closed cord cover curtains darken horizontal knob made mode nest of privacy pull room shutters slats sunshade the tightly window with', Block: - 'allowed avoid banned cancel close disable disturb do entry exit not prohibited quit remove stop', - Bloodtype: 'donate droplet emergency hospital medicine negative positive water', - Bluetooth: 'cast connection device network paring streaming symbol wireless', - BluetoothAudio: 'connection device music signal sound symbol', + 'allowed avoid banned blacklist block cancel circle close diagonal disable disturb do exit forbid like mute no-entry not prohibited quit remove restrict sign slash stop through user with', + BlockFlipped: + 'blacklist block circle diagonal direction entry flipped forbidden no opposite prohibited restrict running sign slash the through with', + Bloodtype: + 'and bloodtype donate donation droplet emergency factor group hospital inside medical medicine minus negative plus positive rh shape sign stacked transfusion water with', + Bluetooth: + 'audio bluetooth cast connection crossing device earbuds headphones made network of pair paring range rune short streaming strokes symbol triangular wireless', + BluetoothAudio: + 'audio beside bluetooth connection curved device headphones lines music pairing rune signal sound speaker streaming symbol waves wireless with', BluetoothConnected: - 'cast connection device network paring streaming symbol wireless', + 'accessory active bluetooth by cast connected connection device diamond each flanked linked network paired pairing paring rune side small streaming symbol sync wireless', BluetoothDisabled: - 'cast connection device enabled network offline paring slash streaming symbol wireless', + 'across bluetooth cast connection cutting device diagonal disabled disconnected enabled network no offline paring rune slash streaming symbol turned unpaired wireless with', BluetoothDrive: - 'automobile cars cast connection device maps paring streaming symbol transportation travel vehicle wireless', - BluetoothSearching: 'connection device network paring symbol wireless', - BlurCircular: 'circle dots editing effect enhance filter', - BlurLinear: 'dots editing effect enhance filter', - BlurOff: 'disabled dots editing effect enabled enhance on slash', - BlurOn: 'disabled dots editing effect enabled enhance filter off slash', - Bolt: 'electric energy fast flash instant lightning power thunderbolt', - Book: 'blog bookmark favorite label library reading remember ribbon save tag', - Bookmark: 'archive favorite follow label library reading remember ribbon save tag', - BookmarkAdd: '+ favorite plus remember ribbon save symbol', + 'above audio automobile bluetooth cars cast connected connection connectivity device drive free from front hands in-car maps pairing paring rune shown streaming symbol the transportation travel vehicle wireless with', + BluetoothSearching: + 'beside bluetooth connecting connection curved devices discoverable for lines looking mode network pairing paring rune scanning searching sound symbol wave wireless with', + BlurCircular: + 'blur bokeh circle circular containing depth dots editing effect enhance field filter focus out scattered shift sizes soft tilt varying', + BlurLinear: + 'bars between blur dots edge editing effect enhance fade filter gaussian gradient horizontal linear motion rows scattered sizes soft them two varying with', + BlurOff: + 'arranged clarity crisp diagonal diamond-shaped disabled dots editing effect enabled enhance focus gaussian grid image off sharpen slash soft through unblur with', + BlurOn: + 'and arranged blur bokeh center denser diamond-shaped diffuse disabled dots editing effect enabled enhance filter fuzzy gaussian grid hazy larger off slash smudge soft the toward unfocused', + Bolt: 'boost charge electricity energy fast flash instant jagged lightning power quick shape storm thunderbolt voltage weather zap', + Book: 'blog bookmark closed cover education favorite guide its label learn library literature manual novel reading remember ribbon save story tag textbook with', + Bookmark: + 'archive bookmark bottom edge favorite flag follow for label later library list marker notched pin reading remember ribbon-shaped save tab tag v-shaped watch with', + BookmarkAdd: + '+ add badge bookmark corner favorites flag follow in item new plus remember ribbon right save sign small symbol the to upper with', BookmarkAdded: - 'approve check complete done favorite remember save select tick validate verified yes', + 'added already approve badge bookmarked checkmark complete confirmed corner done favorites in remember ribbon right saved select small the tick to upper validate verified with yes', BookmarkBorder: - 'archive favorite label library outline reading remember ribbon save tag', - BookmarkRemove: 'delete favorite minus remember ribbon save subtract', + 'add an archive bookmark border center empty favorites label library not open outline reading remember ribbon shape tag tap to unsaved with yet', + BookmarkRemove: + 'badge bookmark corner delete favorites from list minus off reading remember remove ribbon right sign small subtract take the unflag unfollow unsave upper with', Bookmarks: - 'favorite label layers library multiple reading remember ribbon save stack tag', + 'and behind bookmarks collection each favorite items label layers library list multiple my other overlapping reading remember ribbons saved stacked tag two watch', BookOnline: - 'Android admission appointment cell device event hardware iOS mobile pass phone reservation tablet ticket', - BorderAll: 'doc editing editor spreadsheet stroke text type writing', - BorderBottom: 'dashed doc editing editor spreadsheet stroke text type writing', - BorderClear: 'dashed doc editing editor spreadsheet stroke text type writing', + 'Android admission appointment boarding booking buy cell device e-ticket event hardware iOS its mobile online order pass reservation reserve schedule screen smartphone symbol tablet tickets with', + BorderAll: + 'all borders by cells divided doc editing editor equal four grid into lines of plus-shaped spreadsheet square stroke table text type writing', + BorderBottom: + 'along and border bottom cell continuous dashed dashes doc edge editing editor sides small spreadsheet square stroke table text the thick three type underline with writing', + BorderClear: + 'borders clear dashed dashes delete doc editing editor entirely evenly lines made no of remove small spaced spreadsheet square stroke text type writing', BorderColor: - 'all create doc editing editor marker pencil spreadsheet stroke text type writing', - BorderHorizontal: 'dashed doc editing editor spreadsheet stroke text type writing', - BorderInner: 'dashed doc editing editor spreadsheet stroke text type writing', - BorderLeft: 'dashed doc editing editor spreadsheet stroke text type writing', - BorderOuter: 'dashed doc editing editor spreadsheet stroke text type writing', - BorderRight: 'dashed doc editing editor spreadsheet stroke text type writing', + 'above all angle bar border color create doc drawing editing editor format highlight horizontal line marker paint pencil picker spreadsheet stroke text thick type writing', + BorderHorizontal: + 'and border dashed dashes divider doc editing editor horizontal line middle row small split spreadsheet square stroke text the thick through type with writing', + BorderInner: + 'and border cross dashed dashes divider doc editing editor grid inner inside lines middle plus-shaped small spreadsheet square stroke text the through type with writing', + BorderLeft: + 'along and border column dashed dashes doc edge editing editor left line side small spreadsheet square stroke text the thick type with writing', + BorderOuter: + 'and border continuous dashed doc edge editing editor frame inside only outer outline outside pattern perimeter plus small spreadsheet square stroke text type with writing', + BorderRight: + 'along and border column dashed dashes doc edge editing editor line right side small spreadsheet square stroke text the thick type with writing', BorderStyle: - 'color dashed doc editing editor spreadsheet stroke text type writing', - BorderTop: 'dashed doc editing editor spreadsheet stroke text type writing', - BorderVertical: 'dashed doc editing editor spreadsheet stroke text type writing', - Boy: 'body gender human male people person social symbol', + 'and border bottom color continuous dashed doc edges editing editor format left line mixed right spreadsheet square stroke style text the top type with writing', + BorderTop: + 'along and border dashed dashes doc edge editing editor header line row small spreadsheet square stroke text the thick top type with writing', + BorderVertical: + 'and border center column dashed dashes divider doc editing editor line middle small split spreadsheet square stroke text the thick through type vertical with writing', + Boy: 'avatar body boy child figure gender head human kid male people person rectangular round simple social standing stick symbol upright with', BrandingWatermark: - 'components copyright design emblem format identity interface layout logo screen stamp ui ux website window', - BreakfastDining: 'bakery bread butter food toast', - Brightness1: 'circle control crescent cresent level moon screen', - Brightness2: 'circle control crescent cresent level moon night screen', - Brightness3: 'circle control crescent cresent level moon night screen', - Brightness4: 'circle control crescent cresent dark level moon night screen sun', - Brightness5: 'circle control crescent cresent level moon screen sun', - Brightness6: 'circle control crescent cresent level moon screen sun', - Brightness7: 'circle control crescent cresent level light moon screen sun', - BrightnessAuto: 'A control display level mobile monitor phone screen', - BrightnessHigh: 'auto control mobile monitor phone', - BrightnessLow: 'auto control mobile monitor phone', - BrightnessMedium: 'auto control mobile monitor phone', - BrokenImage: 'corrupt error landscape mountains photography picture torn', - BrowseGallery: 'clock collection library stack watch', + 'bottom branding components copyright corner cut design emblem format identity interface layout logo near notch overlay rectangle rectangular screen small stamp tag the trademark ui ux watermark website window with', + BreakfastDining: + 'bakery bread breakfast brunch butter center cut dining food meal morning of out rounded sandwich slice small square the toast top with', + Brightness1: + 'brightness circle control crescent cresent dark dot full level markings mode moon no plain screen solid with', + Brightness2: + 'brightness circle control crescent cresent curving dim half level mode moon night open screen the thin to', + Brightness3: + 'brightness circle control covered crescent cresent curving dimmer half level mode moon more night open screen than the thick to waning', + Brightness4: + 'auto brightness burst center circle control crescent cresent cut dark dim display eclipse eight-pointed into its level mode moon night screen shape star sun theme with', + Brightness5: + 'brightness center circle control crescent cresent day eight-pointed empty its level light medium mode moon plain screen shape star sunburst theme with', + Brightness6: + 'brightness burst center circle control crescent cresent day eight-pointed half its left level light medium moon only screen shaded shape star sun theme with', + Brightness7: + 'brightness center circle control crescent cresent daylight eight-pointed full its level max moon ring screen shape star sun with', + BrightnessAuto: + 'A adaptive adjust automatic brightness center control display eight-pointed its letter level light mobile monitor phone screen shape star the with', + BrightnessHigh: + 'auto brightness center control eight-pointed full high its light max mobile monitor phone ring shape star strong sun thick with', + BrightnessLow: + 'auto brightness center circle control dim eight-pointed empty filling its light low mobile mode monitor night phone plain shape soft star weak with', + BrightnessMedium: + '50 and auto brightness center circle control dark eight-pointed half into its left level light medium mid mobile moderate monitor percent phone shape split star with', + BroadcastOnHome: + 'air arcs beside broadcast device dot from go home live on radiating rectangle signal small streaming tablet-like transmit', + BroadcastOnPersonal: + 'arcs beside broadcast dot from home house live network personal radiating shape signal small smart streaming', + BrokenImage: + '404 broken corrupt cracked damaged error failed frame image its jagged landscape line load middle missing mountains photography picture placeholder rounded square through torn with zigzag', + BrowseGallery: + 'behind browse clock collection face gallery hands history library overlapping partial photos recent ring segment stack time-based timeline view watch with', BrowserNotSupported: - 'disabled enabled internet off on page screen slash website www', + 'blocked browser diagonal disabled enabled error incompatible internet not off page required rounded screen slash square through unsupported update website window with www', BrowserUpdated: - 'Android arrow chrome desktop device display download hardware iOS mac monitor screen web window', - BrunchDining: 'breakfast champagne champaign drink food lunch meal', - Brush: 'art design draw editing painting tool', + 'Android arrow available browser center chrome desktop device display download downward hardware iOS its mac monitor new refresh screen stand updated version web window with', + BrunchDining: + 'and both breakfast brunch cafe champagne champaign dining drink eating food fork glass lunch meal mimosa one other out restaurant resting side stemmed surface table', + Brush: + 'angle artist bristle design drawing editing format paintbrush painter painting rounded styling theme tip tool with', BubbleChart: - 'analytics bars data diagram infographic measure metrics statistics tracking', - BugReport: 'animal file fix insect issue problem testing ticket virus warning', - Build: 'adjust fix home nest repair spanner tools wrench', - BuildCircle: 'adjust fix repair tool wrench', + 'analytics bars bubble chart circles clustered data diagram different infographic measure metrics of plot scatter sizes statistics three together tracking visualization', + BugReport: + 'and animal antennae beetle body both debug error file fix glitch horizontal insect issue its legs problem qa report shape sides software testing ticket virus warning with', + Build: + 'adjust angled assemble build construct diagonally fix hand hardware home like maintenance nest repair settings spanner tools wrench', + BuildCircle: + 'adjust build circle configure fix inside maintenance menu repair settings shape tools wrench', Bungalow: - 'architecture cottage estate home house maps place real residence residential stay traveling', - BurstMode: 'image landscape mountains multiple photography picture', + 'airbnb and architecture bungalow cottage door estate home house listing maps peaked place real rental residence residential roof single small stay story tall traveling vacation with', + BurstMode: + 'bars beside burst containing continuous fire frame image landscape mode mountains multiple photography picture rapid sequence shooting shots two vertical', BusAlert: - '! attention automobile cars caution danger error exclamation important maps mark notification symbol transportation vehicle warning', + '! above alert attention automobile badge bus cars caution circular danger delay disruption error exclamation important inside maps mark notification public service symbol transit transportation vehicle warning with', Business: - 'address apartment architecture building company estate flat home office place real residence residential shelter structure', - BusinessCenter: 'baggage briefcase places purse suitcase work', + 'address apartment architecture building business company corporate enterprise estate flat grid headquarters home office real residence residential shelter skyscraper small square structure tall windows with workplace', + BusinessCenter: + 'baggage briefcase business center corporate handle job latch middle office on places portfolio purse small square suitcase the top travel with work', Cabin: - 'architecture camping cottage estate home house log maps place real residence residential stay traveling wood', - Cable: 'connection device electronics usb wire', - Cached: 'around arrows inprogress loader loading refresh reload renew rotate', - Cake: 'add baked birthday candles celebration dessert food frosting new party pastries pastry pie plus social sweet symbol', - Calculate: '+ - = calculator count finance math', - CalendarMonth: 'date event schedule today', - CalendarToday: 'date event month remember reminder schedule week', + 'above architecture cabin camping chalet chimney cottage estate home horizontal house lines log maps peaked place plank real residence residential retreat roof rustic smoke stay the traveling vacation walls wisp with woodland', + Cable: + 'adapter at cable charger connection connector cord device each electronics end looping plug usb wire with', + Cached: + 'around arrows cached circular curved data forming inprogress loader loading loop page refresh reload renew rotate sync two update', + Cake: 'add anniversary baked birthday candles celebrate celebration confetti cupcake dessert food frosting layered line lit new party pastries pastry pie plus social sweet symbol top wavy with', + Calculate: + '+ - = accounting and arithmetic calculate calculator compute equals face finance its math minus multiply numbers on plus symbols tool with', + CalendarMonth: + 'agenda and appointment below book calendar date diary event grid hangers monthly of page planner schedule small squares today top two view with', + CalendarToday: + 'agenda and appointment below calendar daily date diary empty event hangers large month page remember reminder schedule single square today top two view week with', CalendarViewDay: - 'date event format grid layout month remember reminder schedule today week', - CalendarViewMonth: 'date event format grid layout schedule today', - CalendarViewWeek: 'date event format grid layout month schedule today', - Call: 'cell contact device hardware mobile talk telephone', - CallEnd: 'cell contact device hardware mobile talk telephone', - CallMade: 'arrow device mobile', - CallMerge: 'arrow device mobile', - CallMissed: 'arrow device mobile', - CallMissedOutgoing: 'arrow device mobile', - CallReceived: 'arrow device mobile', - CallSplit: 'arrow device mobile', + 'above another bars calendar daily date different event format grid horizontal layout month of one planner remember reminder schedule stacked thickness three timeline today view week', + CalendarViewMonth: + 'and arranged calendar columns date event format grid in layout monthly of planner rows schedule six squares three today two view week', + CalendarViewWeek: + 'bars by calendar columns date event format grid layout month narrow planner schedule several side standing today vertical view weekly', + Call: 'answer call cell contact device dial handset hardware mobile ring someone talk telephone voice', + CallEnd: + 'call cell contact decline device disconnect end handset hang hardware hung its lying mobile reject shown side talk telephone up', + CallMade: + 'and arrow call device diagonal dialed export made mobile outgoing pointing right sent straight the to up', + CallMerge: + '3-way arrow calls combine conference device diagonal from joining like lines lower merge merging mobile paths pointing right the two up vertical with', + CallMissed: + 'alert and arrowhead bent call declined device down elbow incoming its left missed mobile near pointing the top unanswered with', + CallMissedOutgoing: + 'and arrowhead bent bottom call cancelled connected device dial elbow failed its missed mobile near not outgoing pointing right the unanswered up with', + CallReceived: + 'and answered arrow call device diagonal down inbound incoming left mobile pointing received straight the to', + CallSplit: + 'and arrows call device diagonal divert fork into line mobile one pointing route single splitting stem transfer two up-left up-right', CallToAction: - 'alert bar components cta design information interface layout message notification screen ui ux website window', - Camera: 'album aperture lens photography picture record screenshot shutter', - CameraAlt: 'image photography picture', + 'action alert banner bar bottom button call click components conversion design edge here horizontal information interface its layout message near notification promo rectangle rounded screen thick ui ux website window with', + Camera: + 'album angled aperture blades camera circular iris lens made of photography picture pinwheel record screenshot shutter snap take', + CameraAlt: + 'alt body camera capture center dslr image in lens photography picture round snap take the with', CameraEnhance: - 'artificial automatic automation custom genai important intelligence lens magic photography picture quality smart sparkle special star', - CameraFront: 'body human lens mobile person phone photography portrait selfie', + 'artificial automatic automation body camera custom enhance filter four-pointed genai important improve inside intelligence lens magic photography picture quality shape smart sparkle special star the wand with', + CameraFront: + 'and arrow below body camera front head human lens mobile person phone photography pointing portrait rectangle right rounded self-facing selfie shoulders silhouette switch user with', CameraIndoor: - 'architecture building estate filming home house image inside motion nest picture place real residence residential shelter videography', + 'architecture building camera cctv cut estate filming home house image indoor inside monitoring motion nanny nest out picture place real residence residential security shape shelter surveillance videography with', CameraOutdoor: - 'architecture building estate filming home house image motion nest outside picture place real residence residential shelter videography', - CameraRear: 'front lens mobile phone photography picture portrait selfie', - CameraRoll: 'film image library photography', - Cameraswitch: 'arrows flip rotate swap view', - Campaign: 'alert announcement loud megaphone microphone notification speaker', - Cancel: 'circle clear close cross disable exit remove status stop', + 'architecture attached bottom building camera cctv doorbell estate exterior filming home house image its monitoring motion near nest outdoor outside picture place real residence residential security shape shelter surveillance videography with', + CameraRear: + 'arrow back-facing below camera dot front lens main mobile near phone photography picture pointing portrait rear rectangle right rounded selfie small switch the top with', + CameraRoll: + 'along camera film holes image library negatives of photography reel roll row small square strip the top with', + Cameraswitch: + 'arrows back body by cameraswitch curved encircled flip forming front loop rotate swap toggle two view', + Campaign: + 'advertise alert announcement bell beside broadcast bullhorn campaign its lines loud marketing megaphone message microphone notification promotion sound speaker wave with', + Cancel: + 'cancel center circle clear close cross decline disable dismiss error exit invalid remove status stop the void with', CancelPresentation: - 'clear close device exit no quit remove screen share slide stop website window', - CancelScheduleSend: 'clear email no quit remove share stop x', + 'cancel center clear close device end error exit no presentation presenting quit rectangular remove screen share slideshow stop the website window with', + CancelScheduleSend: + 'abort airplane badge cancel circular clear containing email no overlapping paper quit remove scheduled send share stop undo unschedule with x', CandlestickChart: - 'analytics data diagram finance infographic measure metrics statistics tracking', + 'analytics bars by candlestick chart data diagram different finance forex infographic lengths market measure metrics of ohlc side statistics stock tracking trading two vertical', CarCrash: - 'accident automobile cars collision direction maps public transportation vehicle', + 'above accident alert automobile bender bubble cars claim collision crash direction exclamation fender from front inside insurance maps mark public road speech the transportation vehicle viewed warning with', CardGiftcard: - 'account balance bill cart cash certificate coin commerce creditcard currency dollars money online payment present shopping', + 'account across and balance bill bow cart cash certificate coin commerce coupon creditcard currency dollars giftcard horizontal money online payment present rectangular redeem ribbon shopping stripe top voucher with', CardMembership: - 'bill bookmark cash certificate coin commerce cost creditcard currency dollars finance loyalty money online payment shopping subscription', + 'and bill bookmark bottom cash certificate club coin commerce cost creditcard currency dollars finance horizontal id loyalty membership money online payment rectangular ribbon shopping stripe subscription tag the with', CardTravel: - 'bill cash coin commerce cost creditcard currency dollars finance membership miles money online payment trip', - Carpenter: 'building construction cutting handyman repair saw tool', + 'across bill boarding cash coin commerce cost creditcard currency dollars finance flyer frequent handle horizontal luggage membership miles money online pass payment stripe suitcase top travel wallet with', + Carpenter: + 'angle at building carpenter construction craftsman cutting diagonal diy handyman plane repair saw shown tool woodwork', CarRental: - 'access automobile cars entry key maps password transportation unlock vehicle', - CarRepair: 'automobile cars maps transportation vehicle', - Cases: 'baggage briefcase business purse suitcase', + 'above access automobile cars entry from front hire keys maps password rental the transportation unlock vehicle viewed', + CarRepair: + 'automobile cars from front garage lift maintenance maps mechanic raised repair resting service shop stand the transportation vehicle viewed', + Cases: + 'baggage base briefcase business carrying cases flat handle horizontal luggage portfolio purse resting suitcase travel with work', Casino: - 'casino chips dice dots entertainment gamble gambling games luck places tokens', - Cast: 'Android airplay chromecast connect desktop device display hardware iOS mac monitor screencast streaming television tv web window wireless', + 'arranged betting board casino chips cross dice die dots entertainment five gamble gambling games las luck pattern places roll tokens vegas with', + Cast: 'Android airplay arcs bottom broadcast chromecast connect corner desktop device display hardware iOS its left mac mirror monitor project rectangular screencast send signal streaming television tv web window wireless with', CastConnected: - 'Android airplay chromecast desktop device display hardware iOS mac monitor screencast streaming television tv web window wireless', + 'Android active airplay and arcs broadcast casting chromecast connected desktop device display hardware iOS inside linked mac mirrored monitor now rectangle rectangular screencast signal streaming television tv web window wireless with', CastForEducation: - 'Android airplay chrome connect desktop device display hardware iOS learning lessons mac monitor screencast streaming teaching television tv web window wireless', - Castle: 'fortress mansion palace', - CatchingPokemon: 'go pokestop travel', - Category: 'categories circle collection items product shapes sort square triangle', - Celebration: 'activity birthday event fun party', - CellTower: 'broadcast casting network signal transmitting wireless', - CellWifi: 'connection data internet mobile network phone service signal wireless', - CenterFocusStrong: 'camera image lens photography zoom', - CenterFocusWeak: 'camera image lens photography zoom', + 'Android above airplay and arcs broadcast cap chrome classroom connect desktop device display distance education for google graduation hardware iOS learning lessons mac monitor rectangular screencast share signal streaming teacher teaching television them tv web window wireless with', + Castle: + 'and arched building castle chess crenellated doorway fortress kingdom mansion medieval palace rook royal stronghold towers turret with', + CatchingPokemon: + 'and augmented bottom catching center circle dark game go half into light monster pokeball pokemon pokestop reality small split the travel with', + Category: + 'and categories category circle classification collection grouped items organize product shapes sort square tags together triangle types', + Celebration: + 'achievement activity and beside birthday celebration confetti congrats curling event festive fun lines party popper shape sparkle swirls triangle with', + CellTower: + '5g and antenna both broadcast casting cell dot from mobile network on radiating radio sides signal top tower transmitting waves wireless with', + CellWifi: + 'arcs calling cellular connection corner data diagonally hotspot internet left mobile network phone service signal split strength the triangle upper wifi wireless with', + CenterFocusStrong: + 'autofocus brackets camera center circle corner focal four framing image lens lock photography point strong target the viewfinder zoom', + CenterFocusWeak: + 'autofocus brackets camera center circle corner four framing image lens off photography ring target the unfocused viewfinder weak zoom', Chair: - 'comfort couch decoration furniture home house living lounging loveseat room seating sofa', - ChairAlt: 'cahir furniture home house kitchen lounging seating table', + 'and armchair armrests back comfort couch cushioned decoration furniture home house living lounging loveseat recliner room seating sofa store with', + ChairAlt: + 'alt back bars cahir chair dining furniture home horizontal house kitchen ladder-style lounging made office seating stool table with', Chalet: - 'architecture cottage estate home house maps place real residence residential stay traveling', - ChangeCircle: 'around arrows direction navigation rotate', - ChangeHistory: 'shape triangle', + 'alpine and architecture beside cabin chalet cottage estate home house lodge maps mountain peaked place real residence residential roof shape ski snowflake stay traveling winter with', + ChangeCircle: + 'around arrows circle containing curved direction exchange forming loop navigation refresh replace rotate status swap toggle two update', + ChangeHistory: + 'center change history hollow open play redo revision shape triangle undo with', ChargingStation: - 'Android battery cell device electric energy hardware iOS instant lightning mobile phone tablet thunderbolt', - Chat: 'bubble comment communicate feedback message speech talk text', - ChatBubble: 'comment communicate feedback message speech talk text', + 'Android battery cell charge charging device electric energy fast hardware iOS instant its lightning mobile point power screen smartphone station tablet thunderbolt with', + Chat: 'app bubble chat comment communicate conversation feedback horizontal inside instant lines message messaging sms speech talk text with', + ChatBubble: + 'bubble chat comment communicate conversation dialogue empty feedback icon message messaging plain quote speech talk text', Check: - 'DISABLE_IOS checkmark complete confirm correct disable_ios done enter okay purchased select success tick yes', + '! DISABLE_IOS agree alert approve attention caution checkmark complete confirmed correct danger disable_ios done enter error exclamation notification okay purchased select success tick valid yes', CheckBox: - 'approved button checkmark component control form ok selected selection square success tick toggle ui yes', + 'agree approved button checkbox checked checkmark component containing control field form ok rounded selected selection square success ticked toggle ui yes', CheckBoxOutlineBlank: - 'button checkmark component control dashed deselected empty form selection square tick toggle ui', + 'blank button checkbox checkmark component control dashed deselected empty form inside marks no option outline selection shape square tick ui unchecked untoggled with', CheckCircle: - 'approve checkmark complete confirm done download finished ok select success tick upload validate verified yes', + 'approve badge checkmark circle completed confirm containing done download finished green icon ok select status success task tick upload validate verified yes', Checklist: - 'alignment approve complete doc done editing editor format mark notes ok select spreadsheet text tick type validate verified writing yes', + 'alignment approve checklist checkmarks complete doc done editing editor format horizontal items left lines notes ok paired rows select spreadsheet stacked task text the tick to-do tracker two type validate verified with writing yes', ChecklistRtl: - 'alignment approve complete doc done editing editor format mark notes ok select spreadsheet text tick type validate verified writing yes', - Checkroom: 'check closet clothes coat hanger', - ChevronLeft: 'DISABLE_IOS arrows back direction disable_ios triangle', - ChevronRight: 'arrows direction forward triangle', - ChildCare: 'babies baby children face infant kids newborn toddler young', + 'alignment approve arabic checklist checkmarks complete doc done editing editor format hebrew horizontal left lines mirrored notes ok paired right rows rtl select spreadsheet stacked task text the tick to-do two type validate verified with writing yes', + Checkroom: + 'checkroom cleaning closet clothes clothing coat fitting hanger laundry rack wardrobe', + ChevronLeft: + 'DISABLE_IOS arrows back caret chevron collapse direction disable_ios go left pointing previous triangle', + ChevronRight: + 'arrows caret chevron direction expand forward go next pointing right triangle', + ChildCare: + 'and babies babysitting childminding children daycare dot ears eyes face infant kids mouth newborn nursery on preschool rounded sides smiling the toddler two with young', ChildFriendly: - 'baby care carriage children infant kid newborn stroller toddler young', - ChromeReaderMode: 'text', - Church: 'christianity ideology religion spiritual worship', + 'access and baby canopy care carriage children curved family friendly infant kid newborn pram pushchair small stroller toddler wheels with young', + ChromeReaderMode: + 'and article chrome distraction free horizontal into left lines mode page panel plain reader reading rectangle right simplified split text view with', + Church: + 'and arched building cathedral chapel christianity church cross doorway ideology of place religion religious round spiritual top window with worship', Circle: - 'angle bullet button dot eye fish full geometry image lens moon panorama period photography picture radio wide', - CircleNotifications: 'active alarm alert bell chime notify reminder ring sound', + 'angle bullet button circle dot eye filled fish full geometry image lens markings moon panorama period photography picture plain point radio round shape status wide with', + CircleNotifications: + 'active alarm alert badge bell center chime circle inside new notifications notify reminder ring shape sound with', Class: - 'archive bookmark category favorite item label library reading remember ribbon save tag', - CleanHands: 'bacteria disinfect germs gesture sanitizer', - CleaningServices: 'dust sweep', + 'archive bookmark category class closed course cover education favorite item its label lesson library reading remember ribbon save subject tag textbook with', + CleanHands: + 'bacteria clean disinfect drops faucet germs gesture hands hygiene marks running sanitizer soap sparkle under washing water with', + CleaningServices: + 'at bottom bristles brush chores cleaning dust housekeeping janitorial maid scrub services sweep the with', Clear: - 'allowed back cancel correct cross delete disable erase exit not remove times', - ClearAll: 'delete document erase format lines list notifications wipe', - Close: 'allowed cancel clear cross disable exit not remove status stop times', + 'allowed back cancel clear close correct cross delete disable dismiss erase exit field mark not remove shape small text thin times', + ClearAll: + 'all clear decreasing delete dismiss document empty erase format horizontal items length lines list notifications of remove shortest stacked the three top tray wipe with', + Close: + 'allowed bold button cancel clear close cross dialog disable dismiss exit not remove shape shut status stop tab thick times window', ClosedCaption: - 'accessible alphabet character decoder font language letters media movies subtitles symbol text tv type', + 'accessibility accessible alphabet captions character closed containing decoder font language letters media movies rounded square subtitles symbol text the tv type', ClosedCaptionDisabled: - 'accessible alphabet character decoder enabled font language letters media movies off slash subtitles symbol text tv type', + 'accessible alphabet and captions character closed decoder diagonal disabled enabled font language letters media movies mute no off rounded slash square subtitles symbol text the through tv type with', ClosedCaptionOff: - 'accessible alphabet character decoder font language letters media movies outline subtitles symbol text tv type', - CloseFullscreen: 'action arrows collapse direction minimize', - Cloud: 'climate connection internet network queue sky temperature upload weather', + 'accessible alphabet captions character closed containing decoder font language letters media movies no off option outline square subtitles symbol text the tv type unavailable', + CloseFullscreen: + 'action arrows close collapse corners diagonal direction down each exit from fullscreen minimize mode opposite other pointing restore shrink toward two windowed', + Cloud: + 'backup climate cloud computing connection internet network online queue saas shape sky storage temperature upload weather', CloudCircle: - 'application backup connection drive files folders internet network sky storage upload', + 'account application backup badge circle cloud connection drive files folders icon inside internet network service shape sky status storage upload with', CloudDone: - 'application approve backup checkmark complete connection drive files folders internet network ok select sky storage tick upload validate verified yes', + 'all application approve backup checkmark cloud complete connection done drive files finished folders inside internet network ok saved select shape sky storage synced tick upload validate verified with yes', CloudDownload: - 'application arrow backup connection drive files folders internet network sky storage upload', + 'application arrow backup cloud connection data device download downward drive fetch files folders from get import inside internet network save shape sky storage upload with', CloudOff: - 'application backup connection disabled drive enabled files folders internet network offline sky slash storage upload', - CloudQueue: 'climate connection internet network sky temperature upload weather', + 'application backup cloud connection diagonal disabled disconnected drive enabled files folders internet mode network no offline sky slash storage sync through upload with', + CloudQueue: + 'climate cloud connection idle inside internet markings network no outline pending plain queue shape sky sync temperature upload waiting weather with', CloudSync: - 'application around backup connection drive files folders inprogress internet loading network refresh renew rotate sky storage turn upload', + 'application around arrows auto backup beneath cloud connection curved drive files folders forming inprogress internet loading loop network refresh renew rotate shape sky small storage syncing turn two-way upload', CloudUpload: - 'application arrow backup connection download drive files folders internet network sky storage', - Co2: 'carbon chemical dioxide gas', - Code: 'brackets css developer engineering html parenthesis platform', + 'an application arrow backup cloud connection download drive export files folders inside internet network publish send shape sky storage upload upward with', + CloudySnowing: + 'below cloudy cold dots falling flurries forecast several shape snowfall snowing snowy weather winter with', + Co2: '2 carbon chemical climate co dioxide emissions footprint gas greenhouse letters pollution smaller subscript with', + Code: 'and angle brackets code coding css developer each engineering facing html left marks mode one open other parenthesis platform programming right script source two', CodeOff: - 'brackets css developer disabled enabled engineering html on platform slash', - Coffee: 'beverage cup drink mug plate set tea', - CoffeeMaker: 'appliances beverage cup drink machine mug', + 'angle brackets code coding css developer diagonal disabled enabled engineering html marks mode no off platform programming slash source them through two view with', + Coffee: + 'above base beverage cafe coffee cup drink espresso handle horizontal hot latte line mug plate set sitting tea with', + CoffeeMaker: + 'and appliances below beverage brewer button carafe coffee cup dot drink espresso kitchen machine maker mug percolator pot small with', Collections: - 'album gallery image landscape library mountains photography picture stack', + 'album collections containing frames front gallery image landscape library media mountains one overlapping photography picture square stack the two view', CollectionsBookmark: - 'album archive favorite gallery label library reading remember ribbon save stack tag', - Colorize: 'color dropper extract eye picker pipette tool', - ColorLens: 'art paint pallet', - Comment: 'bubble chat communicate document feedback message note outline speech', + 'album archive bookmarked collections containing curated favorite frames front gallery label library one overlapping photos reading remember ribbon saved set square stack tag the two', + Colorize: + 'angle colorize diagonal extract eyedropper matching picker pipette sample tilted tool', + ColorLens: + 'art colors customize dots lens on paint palette pallet picker round several shape swatches theme with', + Comment: + 'and annotation bubble chat comment communicate discuss document feedback horizontal leave lines message note outline pointed reply speech tail text with', CommentBank: - 'archive bookmark bubble cchat communicate favorite label library message remember ribbon save speech tag', + 'archive bank bookmark bubble canned cchat comment communicate favorite feedback grading inside label library message quick remember reply response ribbon saved speech tag template with', CommentsDisabled: - 'bubble chat communicate enabled feedback message offline on slash speech', - Commit: 'accomplish bind circle dedicate execute line perform pledge', - Commute: 'automobile car direction maps public train transportation trip vehicle', + 'allowed and bubble chat closed comments communicate diagonal disabled discussion enabled feedback horizontal lines message no offline rectangle replies slash speech text through with', + Commit: + 'accomplish bind changes checkpoint circle commit control dedicate execute git horizontal line middle passing perform pledge record ring save small the through version', + Commute: + 'and angle automobile both car commute daily direction journey maps overlapping public train transit transportation travel trip truck vehicles viewed work', Compare: - 'adjustment editing edits enhance fix images photography photos scan settings', + 'adjustment after and before by compare comparison containing editing edits enhance fix halves images into one photography photos plain rectangle scan settings side slider split triangle two vertically view', CompareArrows: - 'collide directional facing left pointing pressure push right together', + 'arrows bidirectional collide compare convert each exchange facing from horizontal left opposite other pointing pressure push right sides swap together toward two versus', CompassCalibration: - 'connection internet location maps network refresh service signal wifi wireless', + 'above calibrate calibration compass connection dot fan gps internet location maps navigation network orientation pointing refresh reset sensor service setup signal small upward wedge-shaped wifi wireless', Compost: - 'bio compostable decomposable decompose green leafs nature organic plant recycle sustainability sustainable', - Compress: 'arrows collide pressure push together', + 'around arrow bin bio circular compostable decomposable decompose food friendly garden green leafs looping nature organic plant recycle recycling small sprout sustainability sustainable waste', + Compress: + 'and arrows between collide compress data downward each file horizontal lines minimize other pointing pressure push reduce shrink size squeeze them together toward two upward with zip', Computer: - 'Android chrome desktop device hardware iOS laptop mac monitor pc web window', - ConfirmationNumber: 'admission entertainment event numbers ticket', + 'Android and base chrome computer desktop device hardware iOS laptop mac monitor notebook pc rectangular screen web window with workstation', + ConfirmationNumber: + 'admission and boarding booking confirmation dots entertainment event line notched numbers order pass shape sides three ticket vertical with', ConnectedTv: - 'Android airplay chrome desktop device display hardware iOS mac monitor screencast streaming television web window wireless', + 'Android airplay arcs chrome connected corner desktop device display hardware iOS its mac mirroring monitor screencast signal smart stand streaming television tv web wifi window wireless with', ConnectingAirports: - 'aircraft airplanes flights flying mode signal transportation travel trip', - ConnectWithoutContact: 'communicating distance people signal socialize', + 'aircraft airplanes airports angled both connecting connection flights flying itinerary layover mode overlapping signal silhouettes transfer transportation travel trip two upward', + ConnectWithoutContact: + 'arcs between communicating connection contactless distance distancing each facing meetup other people person remote signal silhouettes socialize socializing them two video virtual wifi without', Construction: - 'build carpenter equipment fix hammer improvement industrial industry repair tools wrench', + 'and building carpenter construction crossed equipment fix hammer improvement industrial industry maintenance mode progress renovation repair site tools under work wrench', ContactEmergency: - 'account avatar call cell contacts face human information mobile people person phone profile user', + 'account and asterisk avatar call card cell contacts emergency face human ice id information kin medical mobile next people person phone profile rectangle rounded silhouette sos symbol user with', Contactless: - 'applepay bluetooth cash connection connectivity credit device finance payment signal tap transaction wifi wireless', + 'applepay bluetooth cash circle connection connectivity contactless credit curved device finance google like lines nfc payment signal symbol tap transaction wave wifi wireless with', ContactMail: - 'account address avatar communicate email face human information message people person profile user', + 'account address and avatar by card communicate contact email envelope face human information message people person profile reach rectangular silhouette someone user with', ContactPage: - 'account avatar data document drive face folders human people person profile sheet slide storage user writing', + 'account avatar business contact containing corner data document drive face folded folders human info page people person profile resume sheet silhouette slide storage user vcard with writing', ContactPhone: - 'account avatar call communicate face human information message mobile number people person profile user', + 'account and avatar call card communicate contact dial face human information message mobile number people person phone profile receiver rectangular silhouette someone user with', Contacts: - 'account address avatar call cell face human information mobile number people person phone profile user', + 'above account address and avatar bar below book call cell contacts containing directory face horizontal human information list mobile number people person phone profile rectangle rolodex silhouette user with', ContactSupport: - '? alert announcement bubble chat comment communicate help information mark message punctuation speech symbol vquestion', - ContentCopy: 'cut document duplicate file multiple paste stack', - ContentCut: 'copy document file paste scissors trim', - ContentPaste: 'clipboard copy cut document file multiple', - ContentPasteGo: 'clipboard disabled document enabled file slash', - ContentPasteOff: 'clipboard disabled document enabled file slash', - ContentPasteSearch: 'clipboard document file find trace track', + '? alert announcement ask bubble center chat comment communicate contact customer faq get help information inside mark message punctuation service speech support symbol vquestion with', + ContentCopy: + 'clipboard clone content copy ctrl cut document duplicate file multiple outlines overlapping page paste rectangular stack to two', + ContentCut: + 'and clip content copy ctrl cut document file of pair paste remove scissors tool trim x', + ContentPaste: + 'and at body circle clipboard content copied copy ctrl cut document empty file insert multiple paste small text the top v with', + ContentPasteGo: + 'action and arrow at clipboard content disabled document enabled file forward go paste pointing quick right send slash submit the top with', + ContentPasteOff: + 'blocked cannot clipboard content diagonal disabled document enabled file off paste pasting shape slash through unavailable with', + ContentPasteSearch: + 'and at audit clipboard content document file find glass inspect magnifying over paste search the top trace track with', Contrast: - 'black dark editing effect filter grayscale images photography pictures settings theme white', - ControlCamera: 'adjust arrows center direction left move reposition right', - ControlPoint: '+ add circle plus', - ControlPointDuplicate: '+ add circle multiple new plus symbol', - Cookie: 'biscuit cookies data dessert wafer', - CoPresent: 'arrow co-present presentation screen share slides togather website', - CopyAll: 'content cut dashed document file multiple page paper past', - Copyright: 'alphabet character circle emblem font legal letters owner symbol text', - Coronavirus: '19 bacteria covid disease germs illness sick social', + 'adjustment and balance black circle color contrast control dark editing effect exposure filter grayscale half images into left light mode photography pictures right settings split theme tone white', + ControlCamera: + 'adjust and around arrows camera center central controls diamond directional dot down four joystick left move pad pan pointing reposition right up', + ControlPoint: + '+ add button circle control insert inside item new plus point sign with', + ControlPointDuplicate: + '+ add circles clone containing control copy duplicate front item marker multiple new overlapping plus point sign symbol the two', + ConveyorBelt: + 'and assembly base belt conveyor dash factory industrial line machine manufacturing marks oval production rectangle resting small top warehouse with', + Cookie: + 'and biscuit bite chip chocolate consent cookies data dessert dots edge gdpr its of one out privacy round small snack surface taken tracking wafer with', + CoPresent: + 'arrow beside board co-host co-present control easel give or person presentation presenter screen share sharing silhouette slides standing togather website', + CopyAll: + 'all clone content copy cut dashed document duplicate files front in layered multiple of page paper past rectangle rounded select', + Copyright: + 'all alphabet character circle containing copyright emblem font intellectual legal letters license owner property protected reserved rights symbol text the work', + Coronavirus: + 'around bacteria coronavirus covid-19 disease dots edge germs illness infection inside its pandemic pathogen shape sick small social spikes with', CorporateFare: - 'architecture building business estate organization place real residence residential shelter', + 'architecture buildings business campus company complex corporate different enterprise estate fare grids headquarters heights office organization place real residence residential shelter small two windows with', Cottage: - 'architecture beach estate home house lake lodge maps place real residence residential stay traveling', - Countertops: 'home house kitchen sink table', - Create: 'compose editing input item new pencil write writing', + 'above airbnb and architecture beach cabin chimney cottage countryside door estate home house lake lodge maps peaked place real residence residential roof shape small smoke stay the traveling vacation wisp with', + Countertops: + 'above an cabinet countertops home house improvement kitchen open padlock renovation shape sink table with worktop', + Create: + 'angle compose create document draft editing input item message new note pencil tilted write writing', CreateNewFolder: - '+ add data directory document drive file plus sheet slide storage symbol', + '+ add center create data directory document drive file folder in make new plus project shape sheet sign slide storage symbol the with', CreditCard: - 'bill cash charge coin commerce cost creditcard currency dollars finance information money online payment price shopping symbol', + 'across bank bill cash charge checkout coin commerce cost creditcard currency debit dollars finance horizontal information mastercard money online payment price rectangular shopping stripe symbol visa with', CreditCardOff: - 'bill cash charge coin commerce cost currency disabled dollars enabled finance money online payment price shopping slash symbol', + 'and bill blocked card cash charge coin commerce cost credit currency declined diagonal disabled dollars enabled finance horizontal money no off online payment price rectangular shopping slash stripe symbol through unavailable with', CreditScore: - 'approve bill card cash check coin commerce complete cost currency dollars done finance loan mark money ok online payment select symbol tick validate verified yes', - Crib: 'babies baby bassinet bed children cradle infant kid newborn sleeping toddler', + 'and approval approve bill card cash checkmark coin commerce complete corner cost credit currency dollars done fico finance good health horizontal its loan money ok online overlapping payment rating rectangular score select stripe symbol tick validate verified with yes', + Crib: 'at babies baby bassinet bed bottom children cot cradle crib curved furniture infant kid legs newborn nursery rocker rocking sleeping the toddler with', CrisisAlert: - '! attention bullseye caution danger error exclamation important mark notification symbol target warning', - Crop: 'adjustments area editing frame images photos rectangle settings size square', + '! alert attention bullseye caution center circular crisis danger disaster emergency error exclamation important mark notice notification red shape symbol target the urgent warning with', + Crop: 'adjustments area bounds brackets corners crop cut each edges editing facing frame images like of opposite other photos rectangle resize right-angle settings square tool trim two', Crop169: - 'adjustments area by editing frame images photos picture rectangle settings size square', + '169 adjustments and area aspect by cinema crop editing frame images is movie photos picture ratio rectangle settings short size square that very video widescreen', Crop32: - 'adjustments area by editing frame images photos picture rectangle settings size square', + '32 adjustments area aspect by camera classic crop editing frame images is noticeably photos picture ratio rectangle settings size square standard tall than that wider', Crop54: - 'adjustments area by editing frame images photos picture rectangle settings size square', + '54 adjustments area aspect by crop editing frame images is nearly only photos picture portrait print ratio rectangle settings size slightly square tall than that wider', Crop75: - 'adjustments area by editing frame images photos picture rectangle settings size square', + '5x7 75 adjustments area aspect by crop editing frame images is landscape photos picture print ratio rectangle settings size square tall than that wider', CropDin: - 'adjustments area editing frame images photos picture rectangle settings size square', + 'a4 adjustments area aspect crop din document editing european frame images iso nearly only paper photos picture ratio rectangle settings size slightly square taller than that wide', CropFree: - 'adjustments barcode display editing focus frame image photos qrcode settings size square zoom', + 'adjustments barcode brackets connecting corners crop custom display editing focus forming four frame free image markers no open photos qrcode scan separate settings sides size square viewfinder with zoom', CropLandscape: - 'adjustments area editing frame images photos picture settings size square', + 'adjustments area crop editing frame horizontal images is landscape orientation photos picture rectangle settings size square tall than wider', CropOriginal: - 'adjustments area editing frame images photos picture settings size square', + 'adjustments area containing default editing frame full images landscape mountain original photos picture settings size source square uncropped', CropPortrait: - 'adjustments area editing frame images photos picture rectangle settings size square', + 'adjustments area crop editing frame images is narrow orientation photos picture portrait rectangle settings size square taller than vertical wide', CropRotate: - 'adjustments area arrows editing frame images photos settings size turn', + 'adjustments and angle area arrows by corner crop curved editing fix frame images marks photos rotate rotation settings size straighten surrounded tilt turn', CropSquare: - 'adjustments application area components design editing expand frame images interface open photos rectangle screen settings shapes size ui ux website window', + '1 adjustments application area components crop design editing equal even expand frame images inside instagram interface markings no open photos plain ratio rectangle screen settings shapes sides size square ui ux website window with', CrueltyFree: - 'animal bunny eco nature rabbit social sustainability sustainable testing', - Css: 'alphabet brackets character code developer engineering font html letters platform symbol text type', + 'and animals bunny certified cruelty dot ears eco ethical eyes face free leaping long nature not product rabbit social sustainability sustainable tested testing two upright vegan with', + Css: 'alphabet blocky bold brackets cascading character code css developer engineering font frontend html letters platform rules sheets stylesheet styling symbol text type web', CurrencyBitcoin: - 'bill blockchain card cash commerce cost credit digital dollars finance franc money online payment price shopping symbol', + 'and at bill bitcoin blockchain bottom btc card cash commerce cost credit cryptocurrency digital dollars finance franc letter like money online payment price shopping small strokes symbol the through top vertical with', CurrencyExchange: - '360 around arrows cash coin commerce direction dollars inprogress money pay renew rotate sync turn universal', + '360 around arrows cash center circular coin commerce convert currency direction dollars exchange forex inprogress loop money of pay rate renew rotate sign swap sync the turn two universal with', CurrencyFranc: - 'bill card cash coin commerce cost credit dollars finance money online payment price shopping symbol', + 'bill card cash chf coin commerce cost credit currency dollars finance franc french horizontal letter lines money online payment price shopping short strikethrough swiss symbol two with', CurrencyLira: - 'bill card cash coin commerce cost credit dollars finance money online payment price shopping symbol', + 'banking bill card cash coin commerce cost credit crossing currency diagonal dollars exchange finance foreign forex its letter like lines lira money online part payment price rate script shopping sign stroke symbol through turkey turkish two upper vertical wallet with', CurrencyPound: - 'bill card cash coin commerce cost credit dollars finance money online payment price shopping symbol', + 'bill britain british card cash coin commerce cost credit curled currency dollars exchange finance forex gbp horizontal its letter money online payment pound price quid rate script shopping stem sterling struck symbol the through uk vertical with', CurrencyRuble: - 'bill card cash coin commerce cost credit dollars finance money online payment price shopping symbol', + 'banking below bill card cash coin commerce cost credit crossing currency dollars exchange finance forex horizontal letter loop money online payment price rate ruble russian shape shopping stem symbol the through wallet with', CurrencyRupee: - 'bill card cash coin commerce cost credit dollars finance money online payment price shopping symbol', + 'and banking bill card cash coin commerce cost credit crossing currency diagonal dollars exchange finance forex horizontal indian inr leg letter lines money online payment price rate rupee shape shopping symbol through two wallet with', CurrencyYen: - 'bill card cash coin commerce cost credit dollars finance money online payment price shopping symbol', + 'banking bill card cash coin commerce cost credit crossing currency dollars exchange finance forex horizontal its japanese jpy letter lines money online payment price rate shopping stem symbol through two vertical wallet with yen', CurrencyYuan: - 'bill card cash coin commerce cost credit dollars finance money online payment price shopping symbol', - Curtains: 'blinds cover nest open shutter sunshade', - CurtainsClosed: 'blinds cover nest shutter sunshade', - Cyclone: 'crisis disaster natural rain storm water weather winds', - Dangerous: 'broken fix no sign stop update warning wrong', - DarkMode: 'application device interface moon night silent theme ui ux website', - Dashboard: 'cards format grid layout rectangle shapes square view website', - DashboardCustomize: 'cards format layout rectangle shapes square website', - DataArray: 'brackets coder parentheses', + 'banking bill card cash china chinese cny coin commerce cost credit crossing currency dollars exchange finance forex horizontal its letter lines money online payment price rate renminbi rmb shopping stem symbol through two vertical wallet with yuan', + Curtains: + 'and blinds bottom covering curtains design diamond-shaped draped drapery edge fabric gap interior near nest open panel privacy scalloped shutter single stage sunshade theater top treatment window with', + CurtainsClosed: + 'and between blackout blinds bottom center closed covering curtains darken design drapery drapes edges gap interior meeting nest panels privacy room scalloped seam shutter sunshade them thin treatment two vertical window with', + Cyclone: + 'alert and center crisis curling cyclone disaster hurricane like natural outward rain ring small spiral storm swirl tail tornado twister typhoon vortex water weather whirlwind winds with', + Dangerous: + 'alert blocked broken cancel caution center dangerous fix hazard mark no octagon prohibited sign stop the unsafe update warning with wrong', + DarkMode: + 'application bedtime crescent dark device dim dusk evening interface lights low mode moon night off shape silent sleep theme ui ux website', + Dashboard: + 'add admin analytics and arranged cards console control dashboard format four grid home layout left ones overview panel plus rectangles right screen shapes square tall the tiles two website wide widgets', + DashboardCustomize: + 'add bottom cards configure control customize dashboard edit format four grid in layout of panel personalize place plus rearrange rectangle right shapes sign squares the tile website widget with', + DataArray: + 'array between brackets coder data developer each empty facing index json list other parentheses programming space square syntax them two with', DataExploration: - 'analytics arrow chart diagram infographic measure metrics statistics tracking', - DataObject: 'brackets coder parentheses', + 'analytics and arrow bottom chart circle data diagram discovery dot edge exploration growth infographic inside insight measure metrics near report research science small statistics the tracking trend upward with zigzag', + DataObject: + 'between braces brackets coder curly data developer dictionary each empty facing json key object other parentheses programming space syntax them two value with', DataSaverOff: - 'analytics bars chart diagram donut infographic measure metrics ring statistics tracking', + 'analytics bandwidth bars cellular chart circular data diagram donut gap indicator infographic like measure metrics mobile network off partial progress restrict ring saver segment settings shape small statistics toggle tracking wifi with', DataSaverOn: - '+ add analytics chart diagram infographic measure metrics new plus ring statistics symbol tracking', - DataThresholding: 'hidden privacy thresold', + '+ add analytics bandwidth cellular center chart data diagram enable gap infographic measure metrics mobile network new on plus restrict ring saver saving segment settings shape sign small statistics symbol the tracking wifi with', + Dataset: + 'arranged collection containing database dataset four grid records rounded small source spreadsheet squares table two-by-two view', + DatasetLinked: + 'badge bottom by chain connected connection covered database dataset integration linked partly relational right rounded small squares the with', + DataThresholding: + 'above binary censor containing cutoff data diagonal filter graph hatched hidden image line mask privacy processing rounded sensitivity square stripes thresholding thresold trend zigzag', DataUsage: - 'analytics chart circle diagram infographic measure metrics statistics tracking', + 'analytics bandwidth capacity cellular chart circle consumption cut data diagram infographic like measure metrics mobile out pie ring segment shape statistics storage tracking usage wedge with', DateRange: - 'agenda calendar event month remember reminder schedule time today week', - Deblur: 'adjust editing enhance face image lines photography sharpen', - Deck: 'chairs furniture garden home house outdoors outside patio social terrace umbrella yard', - Dehaze: 'adjust editing enhance image lines photography remove', - Delete: 'bin garbage junk recycle remove trashcan', - DeleteForever: 'all bin cancel clear exit garbage junk recycle remove trashcan', - DeleteSweep: 'bin garbage junk recycle remove trashcan', + 'agenda and below booking calendar dates dots duration event header month of picker range remember reminder row schedule select shape span start tabs the three timeframe today top two week with', + Deblur: + 'adjust camera circle clarity clear crisp deblur dots editing enhance face fading focus from gradient half image large lines next of on photography right row sharpen small the unblur up vertical', + Deck: 'above awning backyard balcony canopy chairs deck each facing furniture garden gazebo home house lounge other outdoors outside patio peaked pergola relax shape social terrace two umbrella veranda', + Dehaze: + 'adjust atmosphere bars clarity clear contrast dehaze editing enhance evenly filter fog horizontal image lines photography removal remove sky stacked thick three', + Delete: + 'away clear delete discard dispose dustbin erase garbage handle junk lid recycle remove throw trashcan wastebasket with', + DeleteForever: + 'all away cancel clear delete discard dispose dustbin erase exit forever front garbage junk mark permanently purge recycle remove the throw trashcan wipe with', + DeleteSweep: + 'all beside bulk clean clear decreasing delete dispose dustbin erase garbage horizontal junk length lines list multiple of recycle remove short sweep three trashcan up', DeliveryDining: - 'food meal restaurant scooter takeout transportation vehicle vespa', - DensityLarge: 'horizontal lines rules', - DensityMedium: 'horizontal lines rules', - DensitySmall: 'horizontal lines rules', + 'back box courier delivery dining food meal moped motorbike mounted order restaurant rider scooter takeout the transportation vehicle vespa with', + DensityLarge: + 'and apart at bar bottom comfortable density height horizontal large lines list loose row rules spaced spacing the thick thin top view widely', + DensityMedium: + 'at bar between bottom closely compact density height horizontal lines list medium row rules spaced spacing standard table them thick thin top view with', + DensitySmall: + 'bars closely compact condensed density four height horizontal lines list row rules small spacing stacked table thick tight together view', DepartureBoard: - 'automobile bus cars clock maps public schedule time transportation travel vehicle', + 'arrivals automobile badge board bus cars clock commute corner departures front maps of public right schedule stop the timetable transit transportation travel vehicle view with', Description: - 'article bill data document drive file folders invoice item notes page paper sheet slide text writing', - Deselect: 'all disabled enabled off selection slash square tool', - DesignServices: 'compose create draft editing input pencil ruler write writing', + 'and article bill content corner data description details document drive file folded folders horizontal invoice item lines memo notes of page paper read report sheet slide summary text two with writing', + Deselect: + 'all cancel clear crop dashed deselect diagonal disabled enabled marquee off remove selection slash square through tool unselect with', + DesignServices: + 'art compose create creative crossed design diagonally drafting each editing graphic illustration input other over pencils ruler services sketch tools two write writing', + Desk: 'desk drawers from front furniture office right side study table the viewed with workspace workstation', DesktopAccessDisabled: - 'Android apple chrome device display enabled hardware iOS mac monitor offline pc screen slash web window', + 'Android access apple blocked chrome computer denied desktop device diagonal disabled disconnected display enabled hardware iOS mac monitor no offline pc restricted screen slash stand through web window with', DesktopMac: - 'Android apple chrome device display hardware iOS monitor pc screen web window', + 'Android apple chrome computer cpu desktop device display hardware iOS imac macintosh monitor narrow pc screen stand thin web window workstation', DesktopWindows: - 'Android chrome device display hardware iOS mac monitor pc screen television tv web', - Details: 'editing enhance image photography sharpen triangle', - DeveloperBoard: 'computer development devkit hardware microchip processor', + 'Android all base chrome computer cpu desktop device display flat hardware iOS mac microsoft monitor one pc screen television tv web wide windows workstation', + Details: + 'adjustment by clarity contrast details down editing enhance exposure half image line middle photography sharpen split the tone triangle vertical', + DeveloperBoard: + 'along and arduino circuit computer developer development devkit edge electronics grid hardware microchip motherboard of pcb pins processor raspberry rectangular right small squares with', DeveloperBoardOff: - 'computer development disabled enabled hardware microchip on processor slash', + 'along and circuit computer developer development diagonal disabled disconnected edge electronics enabled hardware microchip motherboard off pcb pins processor slash through unavailable with', DeveloperMode: - 'Android bracket cell code development device engineer hardware iOS mobile phone tablet', + 'Android angle-bracket brackets cell code coding debug developer development device engineer hardware iOS inside mobile mode options phone programming shape source symbols tablet with', DeviceHub: - 'Android circle computer desktop hardware iOS laptop mobile monitor phone square tablet triangle watch wearable web', + 'Android below branching central circle computer connected cross desktop devices down ecosystem hardware hierarchy hub iOS into laptop mobile monitor network nodes phone platform square sync tablet triangle watch wearable web', Devices: - 'Android computer desktop hardware iOS laptop mobile monitor phone tablet watch wearable web', - DevicesFold: 'Android cell dashed foldable hardware iOS mobile phone tablet', + 'Android beside computer connectivity cross desktop devices ecosystem gadgets hardware iOS laptop mobile monitor multi next platform small smartphone sync tablet watch wearable web', + DevicesFold: + 'Android bendable cell dashed devices flip foldable folded folding hardware hinge iOS line mobile next out phone representing screen shape tablet to vertical', DevicesOther: - 'Android cell chrome desktop gadget hardware iOS ipad mac mobile monitor phone smartwatch tablet virtual_reality vr wearables window', - DeviceThermostat: 'celsius fahrenheit temperature thermometer', + 'Android and beside cell chrome connected cross desktop devices ecosystem face gadgets hardware iOS ipad mac mobile monitor multi other overlapping phone platform round smartwatch tablet them virtual_reality vr wearables window with', + DeviceThermostat: + 'bottom bulb celsius climate control cooling device fahrenheit heating hvac round smart temperature thermometer thermostat weather with', DeviceUnknown: - '? Android assistance cell hardware help iOS information mark mobile phone punctuation question support symbol tablet', + '? Android assistance cell device faq hardware help iOS information inside mark mobile mystery phone punctuation question shape symbol tablet unidentified unknown unrecognized unsupported with', + DewPoint: + 'beside climate condensation dew droplets falling forecast humidity moisture point temperature thermometer water weather with', DialerSip: - 'alphabet call cell character contact device font hardware initiation internet letters mobile over protocol routing session symbol telephone text type voice', - Dialpad: 'buttons call contact device dots mobile numbers phone', - Diamond: 'fashion gems jewelry logo retail valuables', - Difference: 'compare content copy cut document duplicate file multiple past stack', - Dining: 'cafeteria cutlery diner eating fork room spoon', - DinnerDining: 'breakfast food fork lunch meal restaurant spaghetti utensils', - Directions: 'arrow maps naviate right route sign traffic', - DirectionsBike: 'bicycle human maps person public route transportation', - DirectionsBoat: 'automobile cars ferry maps public transportation vehicle', - DirectionsBoatFilled: 'automobile cars ferry maps public transportation vehicle', - DirectionsBus: 'automobile cars maps public transportation vehicle', - DirectionsBusFilled: 'automobile cars maps public transportation vehicle', - DirectionsCar: 'automobile cars maps public transportation vehicle', - DirectionsCarFilled: 'automobile cars maps public transportation vehicle', - DirectionsOff: 'arrow disabled enabled maps right route sign slash traffic', + 'above alphabet answer call cell character contact device dialer font handset hardware initiation internet letters make mobile over protocol receiver routing session sip symbol telephone telephony text the trunk type voice voip with', + Dialpad: + 'below buttons call centered contact device dialpad dots extra grid keypad like mobile nine numbers of rows telephone three with', + Diamond: + 'bottom diamond engagement faceted fashion gemstone jewelry logo luxury pointed precious premium retail ring shape sparkle valuables with', + Difference: + 'above badge changes compare containing content copy cut delta difference document duplicate file git minus multiple of pages past plus sign stack version with', + Dining: + 'and background by cafeteria cutlery diner dining eatery eating food fork meal restaurant room rounded setting side spoon square table utensils', + DinnerDining: + 'above asian bowl breakfast chopsticks dining dinner food fork lunch meal noodles of on pasta plate ramen restaurant resting spaghetti takeout utensils with', + Directions: + 'arrow diamond-shaped directions gps inside maps naviate navigation right-turning road route sign traffic wayfinding with', + DirectionsBike: + 'bicycle bike biking cycling cyclist directions exercise forward handlebars human lane leaning maps over pedal person public riding route the transportation', + DirectionsBoat: + 'and automobile below boat cars cruise directions ferry front its lines maps mast nautical of pennant public sailing sea ship transportation travel vehicle view water wavy with yacht', + DirectionsBoatFilled: + 'and automobile below boat cars cruise directions ferry filled front its lines maps mast nautical of pennant public sailing sea ship transportation travel vehicle view water wavy with yacht', + DirectionsBus: + 'and automobile bus cars coach commute directions front headlights maps of public round route shuttle single stop transit transportation two vehicle view windshield with', + DirectionsBusFilled: + 'and automobile below bus cars coach commute directions filled front headlights maps of public round route shuttle stop transit transportation two vehicle view wide windshield with', + DirectionsCar: + 'and automobile cars directions drive driving front headlights maps of public ride road round sedan taxi transportation trip two vehicle view wide windshield with', + DirectionsCarFilled: + 'and automobile cars directions drive driving filled front headlights maps of public ride road round sedan taxi transportation trip two vehicle view wide windshield with', + DirectionsOff: + 'arrow diagonal directions disabled enabled folded gps location maps navigation no off overlapping ribbon right route shapes sign slash them through traffic two unavailable with', DirectionsRailway: - 'automobile cars maps public subway train tram transit transportation trolley vehicle', + 'and automobile below cars commuter directions front light locomotive maps of one public railroad railway round single subway train tram transit transportation trolley vehicle view window with', DirectionsRailwayFilled: - 'automobile cars maps public subway train tram transit transportation trolley vehicle', - DirectionsRun: 'body health human jogging maps people person route running walk', + 'and automobile below cars commuter directions filled front light locomotive maps of one public railroad railway round single subway train tram transit transportation trolley vehicle view window with', + DirectionsRun: + 'and arms athlete body dash directions exercise fitness health human hurry jogging legs maps mid people person route running sprint stretched stride walk with', DirectionsSubway: - 'automobile cars maps public railway train tram transit transportation trolley vehicle', + 'and automobile below cars commuter directions front lights maps metro of public railway rapid square subway train tram transit transportation trolley tube two underground vehicle view windows with', DirectionsSubwayFilled: - 'automobile cars maps public railway train tram transit transportation trolley vehicle', + 'and automobile below cars commuter directions filled front lights maps metro of public railway rapid square subway train tram transit transportation trolley tube two underground vehicle view windows with', DirectionsTransit: - 'automobile cars maps metro public railway subway train tram transportation trolley vehicle', + 'and automobile below cars commuter directions front lights maps metro of public railway rapid square subway train tram transit transportation trolley tube two underground vehicle view windows with', DirectionsTransitFilled: - 'automobile cars maps public railway subway train tram transportation trolley vehicle', - DirectionsWalk: 'body human jogging maps people person route run', - DirtyLens: 'camera photography picture splat', - DisabledByDefault: 'box cancel clear close exit no quit remove square stop', + 'and automobile below cars commuter directions filled front lights maps metro of public railway rapid square subway train tram transit transportation trolley tube two underground vehicle view windows with', + DirectionsWalk: + 'and arm body directions foot forward hike human jogging legs maps mid one pedestrian people person route run step stroll swung traffic walking with', + DirtyLens: + 'across and blemish blob camera dirty dots dust frame grime lens photography picture scattered small smudge splatter square stain with', + DisabledByDefault: + 'box by cancel center clear close deactivated default disabled exit inactive mark no off quit remove square stop the toggle unavailable with', DisabledVisible: - 'cancel close exit eye no on quit remove reveal see show stop view visibility', + 'above and arc cancel circular close diagonal disabled exit eye grey inactive no out password peek quit remove reveal see shape show slash stop through toggle view visibility visible with', DiscFull: - '! alert attention caution cd danger error exclamation important mark music notification storage symbol vinyl warning', + '! alert attention caution cd circular danger disc disk error exclamation full important low mark memory music next notification of out space storage symbol vinyl warning', + Discount: + 'corner coupon cut deal discount into notch offer one percent price promo sale shapes stacked tag two voucher with', DisplaySettings: - 'Android application change chrome desktop details device gear hardware iOS information mac monitor options personal screen service web window', + 'Android application brightness change chrome configure controls desktop details device display gear hardware horizontal iOS information inside mac monitor options personal preferences resolution screen service settings sliders web window with', Diversity1: - 'committee diverse family friends groups heart humans network people persons social team', + 'arch belonging beneath care committee community diverse diversity family friends groups heart humans inclusion network of people persons shape social standing support team three together', Diversity2: - 'committee diverse family friends groups heart humans network people persons social team', + 'abstract blob cluster collaboration committee community connection diverse diversity family friends groups heart humans inclusion network of overlapping people persons rounded shapes social team', Diversity3: - 'committee diverse family friends groups humans network people persons social team', - Dns: 'address bars domain information ip list lookup name network server system', - Dock: 'Android cell charger charging connector device hardware iOS mobile phone power station tablet', + 'belonging by collaboration committee community diverse diversity family friends groups hands holding humans inclusion network people persons side social standing teamwork three', + Dns: 'address bars circle dns domain each end horizontal hosting information ip left list lookup name network router server stacked switches system the toggles web with', + Dock: 'Android bar base beneath cell charger charging connector cradle device docking hardware iOS mobile phone power small standing station tablet upright with', DocumentScanner: - 'article data drive file folders notes page paper sheet slide text writing', - DoDisturb: 'cancel close denied deny remove silence stop', - DoDisturbAlt: 'cancel close denied deny remove silence stop', + 'article brackets by camera capture corner data document drive file folders four framed like lines notes ocr of page paper scanner sheet slide text viewfinder with writing', + DoDisturb: + 'allowed block cancel circle close denied deny diagonal disturb do forbidden line mute no-entry notifications prohibited remove sign silence stop thin through with', + DoDisturbAlt: + 'allowed alt block cancel circle close denied deny diagonal disturb do forbidden line mute no-entry notifications prohibited remove sign silence stop thick through with', DoDisturbOff: - 'cancel close denied deny disabled enabled on remove silence slash stop', + 'alerts allow and bar cancel circle close cutting denied deny diagonal disabled disturb dnd do enabled horizontal notifications off remove resume silence slash stop through turn unmute with', DoDisturbOn: - 'cancel close denied deny disabled enabled off remove silence slash stop', + 'across alerts bar block cancel center circle close denied deny disabled disturb dnd do enabled entry horizontal minus mode no off quiet remove silence slash stop the turn with', Domain: - 'apartment architecture building business estate home place real residence residential shelter web www', + 'and apartment architecture building business company corporate domain estate grid headquarters home hosting office place real residence residential rooftop shelter small stepped website windows with www', DomainAdd: - '+ apartment architecture building business estate home new place plus real residence residential shelter symbol web www', + '+ add and apartment architecture badge bottom building business company corporate domain estate grid headquarters home listing new office place plus property real residence residential right shelter sign small symbol the web windows with www', DomainDisabled: - 'apartment architecture building business company enabled estate home internet maps office offline on place real residence residential slash website', + 'access and apartment architecture blocked building business company diagonal disabled disconnected domain enabled estate grid home inactive internet maps no office offline place real residence residential slash small through unavailable website windows with', DomainVerification: - 'application approve check complete design desktop done interface internet layout mark ok screen select tick ui ux validate verified website window www yes', - Done: 'DISABLE_IOS approve checkmark complete disable_ios finished ok select success tick validate verified yes', + 'application approval approve badge checkmark complete confirmed design desktop domain done frame inside interface internet layout ok rounded screen select square ssl tick trust ui ux validate verification verified website window with www yes', + Done: 'DISABLE_IOS accept agree approve checkmark complete confirm correct disable_ios done finished ok select submit success task tick validate verified yes', DoneAll: - 'approve checkmark complete finished layers multiple ok select stack success tick validate verified yes', - DoNotDisturb: 'cancel close denied deny neutral remove silence slash stop', - DoNotDisturbAlt: 'cancel close denied deny neutral remove silence slash stop', + 'all approve by checkmarks complete delivered done double finished layers message multiple ok overlapping read receipt seen select side stack success tick two validate verified whatsapp yes', + DoNotDisturb: + 'allowed block cancel circle close denied deny diagonal disturb do forbidden line mute neutral no-entry notifications prohibited remove sign silence slash stop thin through with', + DoNotDisturbAlt: + 'allowed alt block cancel circle close denied deny diagonal disturb do forbidden line mute neutral no-entry notifications prohibited remove sign silence slash stop thick through with', DoNotDisturbOff: - 'cancel close dash denied deny disabled enabled on remove silence slash stop', + 'alerts allow and bar cancel circle close cutting dash denied deny diagonal disabled disturb dnd do enabled horizontal notifications off remove resume silence slash stop through turn unmute with', DoNotDisturbOn: - 'cancel close dash denied deny disabled enabled off remove silence slash stop', - DoNotDisturbOnTotalSilence: 'busy mute on quiet total', - DoNotStep: 'boot disabled enabled feet foot off on shoe slash sneaker steps', - DoNotTouch: 'disabled enabled fingers gesture hand off on slash', + 'across alerts bar block cancel center circle close dash denied deny disabled disturb dnd do enabled entry horizontal minus mode not off quiet remove silence slash stop the turn with', + DoNotDisturbOnTotalSilence: + 'bar block busy circle complete disturb do focus horizontal inside interruptions mode mute not quiet silence smaller surrounding total with', + DoNotStep: + 'area boot diagonal disabled do enabled feet floor footprint keep not off prohibited restricted shape shoe sign slash sneaker steps through walking with', + DoNotTouch: + 'away diagonal disabled do enabled fingers fragile gesture hands keep museum not off open sign slash spread through touching with', DonutLarge: - 'analytics chart circle complete data diagram infographic inprogress, measure metrics pie statistics tracking', + 'analytics chart circle complete completion data diagram divided donut gap indicator infographic inprogress, into large like loading measure metrics partial percentage pie ring segments shape statistics tracking with', DonutSmall: - 'analytics chart circle data diagram infographic inprogress measure metrics pie statistics tracking', - DoorBack: 'closed doorway entrance exit home house', - Doorbell: 'alarm home house ringing', - DoorFront: 'closed doorway entrance exit home house', - DoorSliding: 'automatic doorway double entrance exit glass home house two', - DoubleArrow: 'arrows chevron direction multiple navigation right', + 'analytics around center chart circle data diagram divided donut four hole indicator infographic inprogress into loading measure metrics percentage pie quadrants ring segments small statistics the tracking', + DoorBack: + 'back closed doorknob doorway entrance exit floor home house line on rear room shape small square standing with', + Doorbell: + 'alarm buzzer chime doorbell home house inside ringing shape smart visitor with', + DoorFront: + 'closed doorknob doorway entrance entryway exit floor front home house line main right shape side small square standing the welcome wider with', + DoorSliding: + 'automatic by doors doorway double each elevator entrance exit glass handle home house panels retail side sliding small square two with', + DoubleArrow: + 'advance arrows behind chevron direction double fast forward multiple navigation next one other pointing right skip stacked to two', DownhillSkiing: - 'athlete athletic body entertainment exercise hobby human people person ski snow social sports travel winter', - Download: 'arrow downloads drive install upload', - DownloadDone: 'arrows check downloads drive installed ok tick upload', - DownloadForOffline: 'arrow circle for install offline upload', - Downloading: 'arrow circle downloads install pending progress upload', - Drafts: 'document email envelope file letters message read', + 'alpine and athlete athletic body downhill entertainment exercise forward hobby human leaning mountain olympics people person poles skier skiing skis slalom snow social sports travel winter with', + Download: + 'above arrow bar device downloads downward drive fetch file get horizontal import install receive save to tray upload', + DownloadDone: + 'above arrows bar checkmark complete done downloads drive finished horizontal installed ok saved success tick tray upload verified', + DownloadForOffline: + 'above access arrow available bar cache circle containing download downward for install internet later no offline save tray upload', + Downloading: + 'arrow circle circular dashed downloading downloads downward fetching inside install pending please progress ring sync upload wait with', + Drafts: + 'document drafts email envelope file flap folded letters message open pending read saved shape the unfinished unsent with', DragHandle: - 'application components design interface layout lines menu move screen ui ux website window', + 'application bars components design drag equals grip handle horizontal interface layout like lines menu move reorder screen sort stacked thick to two ui ux website window', DragIndicator: - 'application circles components design dots drop interface layout mobile monitor move phone screen shape shift tablet ui ux website window', - Draw: 'compose create design draft editing input pencil write writing', + 'application arranged circles columns components design dots drag drop grid grip handle indicator interface layout list mobile monitor move of phone reorder rows screen shape shift six sortable tablet three two ui ux website window', + Draw: 'annotate compose create curved design doodle draft draw editing handwriting input its off pencil scribble signature sketch squiggle tip trailing with write', DriveEta: - 'automobile cars destination direction estimate maps public transportation travel trip vehicle', + 'arrival automobile cars commute destination direction drive driving estimate eta front headlights maps navigation of public round time transportation travel trip two vehicle view with', DriveFileMove: - 'arrows data direction document folders right sheet side slide storage', + 'and arrows cut data direction document drive file folders inside move paste relocate right-pointing sheet slide storage transfer with', DriveFileMoveRtl: - 'arrows data direction document folders left sheet side slide storage', + 'arrows data direction document drive file folders inside left-pointing move relocate right rtl sheet slide storage transfer with', DriveFileRenameOutline: - 'compose create draft editing input marker pencil write writing', - DriveFolderUpload: 'arrow data document file sheet slide storage', - Dry: 'air bathroom dryer fingers gesture hand wc', - DryCleaning: 'hanger hotel laundry places service towel', - Duo: 'call chat conference device video', - Dvr: 'Android audio chrome computer desktop device display electronic hardware iOS laptop list mac monitor recorder screen tv video web window', - DynamicFeed: 'layer live mail_outline multiple post refresh update', - DynamicForm: 'code electric fast lightning lists questionnaire thunderbolt', - Earbuds: 'accessory audio earphone headphone listen music sound', - EarbudsBattery: 'accessory audio charging earphone headphone listen music sound', - East: 'arrow directional maps navigation right', + 'above change compose create diagonal document draft drive editing filename horizontal input marker modify outline pencil rename short write writing', + DriveFolderUpload: + 'add an arrow backup cloud data document drive files folder inside sheet slide storage sync upload upward with', + Dry: 'above air bathroom blow dryer fingers gesture hands heat lines restroom rising warm wavy wc with', + DryCleaning: + 'bar care cleaning closet clothes clothing draped garment hanger hotel laundry over places service towel wardrobe with', + Duo: 'app badge call camera chat conference device duo facetime google inside rounded shape shield video webcam with', + Dvr: 'Android audio bulleted chrome computer desktop device digital display dvr electronic hardware iOS inside laptop mac monitor of playlist recorded recorder recording rows screen shows stand tv video web window with', + DynamicFeed: + 'another behind cards content dynamic feed layer live mail_outline multiple news offset one post rectangular refresh rounded social stack stream timeline update', + DynamicForm: + 'auto beside builder code dynamic electric fast form lightning lists questionnaire quick settings stacked survey switches thunderbolt toggle two vertically', + Earbuds: + 'accessory airpods an audio bluetooth by cord earbuds earphone headphones joined listen music of pair s-curved sound wireless', + EarbudsBattery: + 'accessory airpods audio battery charge charging cord earbuds earphone headphone indicator level listen music next power shape sound status', + East: 'arrow cardinal compass directional east forward maps navigation orientation pointing right', EdgesensorHigh: - 'Android cell device hardware iOS mobile move phone sensitivity tablet vibrate', + 'Android active both cell device edgesensor grip hardware high iOS marks mobile move near phone pressure sensitivity short sides signal squeeze tablet the top vibrate with', EdgesensorLow: - 'Android cell device hardware iOS mobile move phone sensitivity tablet vibrate', - Edit: 'compose create editing input new pencil write writing', + 'Android active both bottom cell device edgesensor grip hardware high iOS low marks mobile move near phone pressure sensitivity short sides signal squeeze tablet the vibrate with', + Edit: 'annotate as change compose create diagonally editing input modify new pencil revise tilted update write writing', EditAttributes: - 'approve attribution check complete done mark ok select tick validate verified yes', + 'approve attributes attribution checkmark complete confirmed done edit inside metadata ok pill properties rounded select settings shape tag tick toggle validate verified with yes', EditCalendar: - 'compose create date day draft editing event month pencil schedule write writing', - EditLocation: 'destination direction gps maps pencil pin place stop write', - EditLocationAlt: 'pencil pin', - EditNote: 'compose create draft editing input lines pencil text write writing', + 'appointment bottom calendar change compose corner create day draft editing event its modify month overlapping pencil reschedule right shape update with write writing', + EditDocument: + 'and annotate bottom corner document edit file folded its modify on overlapping page pencil revise right text update with write', + EditLocation: + 'address change destination direction edit gps inside location maps modify move pencil pin place shape stop teardrop update with write', + EditLocationAlt: + 'address alt change crossing destination diagonally edge edit gps its location map marker modify over pencil pin place shape teardrop top update with', + EditNote: + 'annotate bottom compose corner create draft editing horizontal input lines memo modify notes of overlapping pencil revise right text the three with write writing', EditNotifications: - 'active alarm alert bell chime compose create draft editing input new notify pencil reminder ring sound write writing', + 'active alarm alerts bell change chime compose create customize draft editing input its manage modify near new notifications notify pencil reminders right ring settings shape sound top with write writing', EditOff: - 'compose create disabled draft editing enabled input new offline on pencil slash write writing', - EditRoad: 'destination direction highway maps pencil street traffic', - Egg: 'breakfast brunch food', - EggAlt: 'breakfast brunch food', + 'cannot compose create crossed diagonally disabled draft editing enabled forming input locked new offline only pencils read slash two view write writing x', + EditRoad: + 'and construction continuous dashed destination direction edit highway lane-marking lines maps markings modify next pencil roadwork route street to traffic vertical', + EditSquare: + 'annotate box compose corner edit modify near new pencil post right rounded square the top with write writing', + Egg: 'boiled breakfast brunch chicken cooking curved easter egg food highlight ingredient mark on protein shape small with', + EggAlt: + 'alt an breakfast brunch cooking egg food fried ingredient off omelet one oval protein round shape side sunny to up with yolk', EighteenMp: - 'camera digits font image letters megapixels numbers quality resolution symbol text type', + '18 above badge camera digits eighteen font image letters megapixels mp numbers photo quality resolution rounded sensor specs square stacked symbol text the type with', + EighteenUpRating: + '18 adult age badge content eighteen limit mature number rating restricted restriction rounded square the up with', EightK: - '8000 8K alphabet character digit display font letters numbers pixels resolution symbol text type video', + '8000p 8K 8k alphabet badge character digit display eight font format hd high letters numbers pixels quality resolution rounded screen square symbol text the type ultra video with', EightKPlus: - '+ 7000 8K alphabet character digit display font letters numbers pixels resolution symbol text type video', + '+ 7000 8K 8k alphabet badge character digit display eight enhanced font format hd high letters numbers pixels plus premium resolution rounded square symbol text the type ultra video with', EightMp: - 'camera digit font image letters megapixels numbers quality resolution symbol text type', + '8 above badge camera digit eight font image letters megapixels mp numbers photo quality resolution rounded sensor specs square stacked symbol text the type with', EightteenMp: - 'camera digits font image letters megapixels numbers quality resolution symbol text type', - Eject: 'arrow disc drive dvd player remove triangle up usb', - Elderly: 'body cane human old people person senior', + '18 above badge camera digits eightteen font image letters megapixels mp numbers photo quality resolution rounded sensor specs square stacked symbol text the type with', + Eject: + 'above arrow bar disc disk drive dvd eject horizontal media out player pop remove safely take triangle unmount upward-pointing usb', + Elderly: + 'accessibility aging body cane elderly grandparent human hunched old over pensioner people person senior stick walking with', ElderlyWoman: - 'body cane female gender girl human lady old people person senior social symbol women', - ElectricalServices: 'charge cord plug power wire', + 'accessibility aging body cane elderly female gender girl grandmother human hunched lady old over pensioner people person senior skirt social stick symbol walking with woman women', + ElectricalServices: + 'cable charge cord electrical electrician into outlet plugging power services socket wavy wire wiring', ElectricBike: - 'automobile cars ebike electricity maps scooter thunderbolt transportation travel vehicle vespa', - ElectricBolt: 'energy fast instant lightning nest thunderbolt', + 'assist automobile battery beneath bicycle cars ebike electricity green lightning maps pedal powered scooter thunderbolt transportation travel vehicle vespa with', + ElectricBolt: + 'boost electricity energy fast flash instant lightning nest power speed thunderbolt voltage zap', ElectricCar: - 'automobile cars electricity maps thunderbolt transportation travel vehicle', + 'automobile battery beneath cars charging electricity ev front green lightning maps of powered small thunderbolt transportation travel vehicle view with', ElectricMeter: - 'energy fast instant lightning measure nest thunderbolt usage voltage volts', + 'and bar bottom circle electric energy fast horizontal inside instant lightning measure meter nest power prongs smart the thunderbolt two usage utility voltage volts watt with', ElectricMoped: - 'automobile bike cars maps scooter thunderbolt transportation travel vehicle vespa', + 'automobile battery beneath bike cars e-moped electric green lightning maps powered scooter small thunderbolt transportation travel vehicle vespa with', ElectricRickshaw: - 'automobile cars india maps thunderbolt transportation truck vehicle', + 'automobile beneath cars e-rickshaw electric india lightning maps small three-wheeled thunderbolt transportation truck tuk vehicle wheeler with', ElectricScooter: - 'automobile bike cars directions maps thunderbolt transportation vehicle vespa', - Elevator: 'body down human people person up', + 'automobile battery beneath bike cars directions e-scooter electric kick lightning maps micromobility powered small thunderbolt transportation vehicle vespa with', + Elevator: + 'and arrows ascend body button descend down elevator floor human lift people person rounded silhouette square triangle up with', ElevenMp: - 'camera digits font image letters megapixels numbers quality resolution symbol text type', - Email: 'envelope letters message note post receive send write', - Emergency: 'asterisk clinic health hospital maps medical symbol', + '11 above badge camera digits eleven font image letters megapixels mp numbers photo quality resolution rounded sensor specs square stacked symbol text the type with', + Email: + 'app compose contact e-mail email envelope flap gmail inbox letters message note post receive send v-shaped with write', + Emergency: + 'aid ambulance asterisk-like burst care clinic emergency first health help hospital maps medical pointed segments shape six sos symbol urgent with', EmergencyRecording: - 'alert attention camera caution danger filming hardware image important motion notification picture videography warning', - EmergencyShare: 'alert attention caution danger important notification warning', - EMobiledata: 'alphabet font letters text type', + 'alert attached attention burst camera caution containing danger dash emergency filming footage hardware image important incident lens motion notification picture recording security shape side six-pointed square the to videography warning with', + EmergencyShare: + 'above alert arcs attention caution check contact curving danger emergency important live location map notification pin safety shape share signal sos teardrop warning with', + EMobiledata: + '2g alphabet cellular edge font letters mobiledata network signal text type', EmojiEmotions: - '+ add emoticon expressions face feelings glad happiness happy icons insert like mood new person pleased plus smiley smiling social survey symbol', + '+ add and cheerful curved dot emoji emoticon emotions expressions eyes face feedback feelings glad happiness happy icons insert joy like mood new open person pleased plus rating reactions round smiley smiling social survey symbol two with', EmojiEvents: - 'achievement award chalice champion cup first prize reward sport trophy winner', - EmojiFoodBeverage: 'coffee cup dring drink mug plate set tea', - EmojiNature: 'animal bee daisy flower honey insect ladybug petals spring summer', - EmojiObjects: 'creative idea lamp lightbulb solution thinking', - EmojiPeople: 'arm body greeting human person social wave waving', - EmojiSymbols: 'ampersand character hieroglyph music note percent sign', + 'achievement award best chalice champion competition cup emoji events first handles leaderboard milestone performance prize reward side sport trophy two victory winner with', + EmojiFlags: + 'banner checkpoint circle country emoji flags location mark milestone nationality of pole small the top with', + EmojiFoodBeverage: + 'bag base beverage cafe coffee dring drink emoji food hanging hot line mug on over plate refreshment rim set sitting tag teacup the with', + EmojiNature: + 'animal bee beside blossom botanical daisy emoji flower garden honey insect ladybug nature outdoors petals pod pollen seed shape small spring summer swirled wildlife', + EmojiObjects: + 'and brainstorm creative emoji eureka filament horizontal idea innovation inside insight inspiration lamp lightbulb lines objects solution thinking with y-shaped', + EmojiPeople: + 'arm body emoji greeting hand hello hi human one people person raised social standing wave waving welcome with', + EmojiSymbols: + 'ampersand characters cluster emoji glyphs hieroglyph including musical note of percent punctuation sign special symbols text typography', EmojiTransportation: - 'architecture automobile building cars commute company direction estate maps office place public real residence residential shelter travel vehicle', - EnergySavingsLeaf: 'eco leaves nest usage', + 'architecture automobile building cars commercial commute company direction emoji estate front garage maps office parked parking place public real residence residential shelter transportation travel vehicle with', + EnergySavingsLeaf: + 'bolt eco-friendly efficient energy green inside leaf leaves lightning nest power renewable savings shape sustainability usage with', Engineering: - 'body cogs cogwheel construction fixing gears hat helmet human maintenance people person setting worker', + 'beside body cogs cogwheel construction contractor engineering fixing gears hard hat head helmet human industrial maintenance mechanic people person repair setting shapes silhouette technician the two wearing with worker', EnhancedEncryption: - '+ add locked new password plus privacy private protection safety secure security symbol', + '+ add body data encrypted encryption enhanced extra its locked new padlock password plus privacy private protection safety secure security sign strong symbol with', Equalizer: - 'adjustment analytics chart data graph measure metrics music noise sound static statistics tracking volume', + 'adjustment analytics audio bars chart data different equalizer frequency graph heights levels like measure metrics mixer music noise of sound static statistics three tracking vertical volume', Error: - '! alert announcement attention caution circle danger exclamation feedback important mark notification problem symbol warning', - Escalator: 'down staircase up', - EscalatorWarning: 'body child human kid parent people person', - Euro: 'bill card cash coin commerce cost credit currency dollars euros finance money online payment price profit shopping symbol', + '! alert announcement attention bug caution circle danger error exception exclamation failure feedback important inside invalid issue mark notification problem symbol warning with', + Escalator: + 'airport and center circle diagonal down escalator line moving rounded shopping small square staircase stairs symbol up with', + EscalatorWarning: + 'adult body caution children escalator figure guidance hands holding human kid of parental people person safety sign smaller supervise the warning', + Euro: 'bill card cash coin commerce cost credit currency dollars european euros eurozone exchange finance money online payment price profit rate shopping symbol union', EuroSymbol: - 'bill card cash coin commerce cost credit currency dollars finance money online payment price profit', - Event: 'agenda calendar date item mark month range remember reminder today week', + 'bill card cash coin commerce cost credit currency dollars european eurozone exchange finance money online payment price profit rate symbol union', + Event: + 'agenda and appointment booking calendar center date entry event item mark meeting month occasion range remember reminder small square tabs the today top two week with', EventAvailable: - 'agenda approve calendar check complete done item mark ok schedule select tick time validate verified yes', + 'agenda appointment approve available booking calendar center checkmark complete confirmed done event free item open schedule select slot the tick time validate verified with yes', EventBusy: - 'agenda calendar cancel clear close date exit item no remove schedule stop time unavailable', - EventNote: 'agenda calendar date item schedule text time writing', + 'agenda appointment availability blocked booked busy calendar cancelled center clear close conflict date event exit item mark no remove schedule stop the time unavailable with', + EventNote: + 'agenda appointment calendar date details event horizontal inside item lines meeting notes of schedule text time with writing', EventRepeat: - 'around calendar date day inprogress loading month refresh renew rotate schedule turn', - EventSeat: 'assigned bench chair furniture reservation row section sit', + 'appointment around arrow calendar center circular date day event inprogress loading month recurring refresh renew repeat reschedule rotate the turn weekly with', + EventSeat: + 'armchair armrests assigned bench booking both cinema event from front furniture reservation row seating section selection sides sit theater ticket venue viewed with', EvStation: - 'automobile cars charger charging electricity filling fuel gasoline home maps places power station thunderbolt transportation vehicle', + 'and automobile cable cars charger charging electricity ev filling from fuel gasoline hanging home lightning maps places plug point power pump recharge shape side station the thunderbolt transportation vehicle with', ExitToApp: - 'application arrow back components design export interface layout leave login logout mobile monitor move output phone pointing quit register right screen signin signout signup tablet ux website window', - Expand: 'arrows compress enlarge grow move push together', - ExpandCircleDown: 'arrows chevron collapse direction expandable list more', - ExpandLess: 'arrows chevron collapse direction expandable list up', - ExpandMore: 'arrows chevron collapse direction down expandable list', + 'an application arrow back components design enter exit export interface its launch layout leave login logout mobile monitor move opening output phone pointing quit register right screen side signin signout signup square tablet through ux website window with', + Expand: + 'adjust arrows at bar between bottom compress double-headed drag enlarge expand grow height horizontal move push resize stretch together top vertical', + ExpandCircleDown: + 'arrows chevron circle collapse content direction downward dropdown expandable inside list more reveal section see show with', + ExpandLess: + 'arrows chevron collapse direction expandable less list minimize scroll section show upward-pointing', + ExpandMore: + 'arrows chevron collapse direction downward-pointing dropdown expandable list more scroll section see show', Explicit: - 'adult alphabet character content font language letters media movies music parent rating supervision symbol text type', + 'adult advisory alphabet badge character content explicit font label language letters mature media movies music parental rating restricted rounded square supervision symbol text the type warning with', Explore: - 'compass destination direction east location maps needle north south travel west', + 'adventure browse circle compass destination diagonally diamond-shaped direction discover east explore find location maps needle north places pointing south travel wander west with', ExploreOff: - 'compass destination direction disabled east enabled location maps needle north slash south travel west', + 'and browsing circle compass destination diagonal diamond-shaped direction disabled discovery east enabled exploration explore location maps needle north off slash south through travel west with', Exposure: - 'add brightness contrast editing effect image minus photography picture plus settings subtract', - Extension: 'add-ons app extended game item jigsaw piece plugin puzzle shape', - ExtensionOff: 'disabled enabled extended jigsaw piece puzzle shape slash', - Face: 'account avatar emoji eyes human login logout people person profile recognition security social thumbnail unlock user', + 'add adjustment and brightness camera compensation contrast corner diagonally editing effect ev exposure image light minus one other overexposed photography picture plus settings sign split square subtract underexposed with', + Extension: + 'add-ons and app bottom browser cut extended extension feature game integration into item jigsaw knob module notch piece plugin puzzle rounded shape the top with', + ExtensionOff: + 'add-on blocked diagonal disabled enabled extended extension jigsaw off piece plugin puzzle removed shape slash through uninstall with', + Face: 'account and avatar biometric dot emoji eyes face hair human identity login logout mouth no people person portrait profile recognition round security short social thumbnail two unlock user with', Face2: - 'account emoji eyes human login logout people person profile recognition security social thumbnail unlock user', + 'account and biometric curly dot emoji eyes face hair human id login logout people person portrait profile recognition round security social thumbnail two unlock user voluminous with', Face3: - 'account emoji eyes human login logout people person profile recognition security social thumbnail unlock user', + 'account biometric both emoji eyes face framing hair human login logout long people person portrait profile recognition security sides social straight thumbnail unlock user with', Face4: - 'account emoji eyes human login logout people person profile recognition security social thumbnail unlock user', + 'account and biometric bun dot emoji eyes face hair human id into login logout people person portrait profile pulled recognition security social thumbnail two unlock up user with', Face5: - 'account emoji eyes human login logout people person profile recognition security social thumbnail unlock user', + 'account biometric covering dotted emoji eyes face hair human id login logout people person portrait profile recognition round security social textured the thumbnail top unlock user with', Face6: - 'account emoji eyes human login logout people person profile recognition security social thumbnail unlock user', - Facebook: 'brand logo social', + 'account and biometric dot emoji eyes face hair human login logout part people person portrait profile recognition round security short side-swept social thumbnail two unlock user with', + Facebook: + 'brand facebook fb logo lowercase media meta network rounded social square with', FaceRetouchingNatural: - 'artificial automatic automation custom editing effect emoji emotion faces genai image intelligence magic photography settings smart sparkle star tag', + 'and artificial automatic automation badge beauty beside custom editing effect emoji emotion enhancement faces filter genai glow hair image intelligence magic natural photography retouching settings small smart sparkle star tag up with', FaceRetouchingOff: - 'disabled editing effect emoji emotion enabled faces image natural photography settings slash tag', - FactCheck: 'approve complete done list mark ok select tick validate verified yes', - Factory: 'industry manufacturing warehouse', - FamilyRestroom: 'bathroom children father gender kids mother parents wc', - Fastfood: 'drink hamburger maps meal places', - FastForward: 'control ff media music play speed time tv video', - FastRewind: 'back control media music play speed time tv video', - Favorite: 'appreciate health heart like love remember save shape success', - FavoriteBorder: 'health heart like love outline remember save shape success', - Fax: 'machine office phone send', - FeaturedPlayList: 'audio collection highlighted item music playlist recommended', + 'and beauty diagonal disabled editing effect emoji emotion enabled faces filter hair image natural no off photography retouching settings slash tag through unedited with', + FactCheck: + 'accuracy and approve audit checklist checkmark complete confirm done facts lines of ok review rounded rows select square tick validate verified verify with yes', + Factory: + 'and building chimney factory industrial industry manufacturing mill plant production slits small smokestack tall warehouse window with', + FamilyRestroom: + 'adults baby bathroom between changing children family father figure gender human kids mother nursing parents people person restroom sign smaller standing three together toilet two wc', + Fastfood: + 'beside cup drink fastfood hamburger junk maps meal places quick service soda takeout with', + FastForward: + 'ahead by control fast ff forward media music next playback right-pointing side skip speed time track triangles tv two up video', + FastRewind: + 'backward by control fast go left-pointing media music playback previous rewind side skip speed time track triangles tv two video', + Favorite: + 'add adore appreciate bookmark button cherish favorites health heart like love pin remember save shape success valentine wishlist', + FavoriteBorder: + 'add adore an as bookmark border center cherish drawn edge empty favorites health heart its love only outer outline remember save shape success to unliked valentine wishlist with', + Fax: 'beside document dots facsimile fax grid handset machine office printer scanner screen send small telecopier telephone transmit with', + FeaturedPlayList: + 'and audio bookmark collection corner curated featured highlighted horizontal item label lines marker music picks playlist queue recommended rectangle ribbon-like rounded small star tag the top-left two with', FeaturedVideo: - 'advertisement advertisment highlighted item play recommended watch,advertised', - Feed: 'article headline information newspaper public social timeline', + 'advertisement advertisment clip corner featured film highlighted item media movie near play promo recommended rectangle rounded small sponsored square the thumbnail top-left video watch,advertised window with', + Feed: 'and article blog content corner document feed folded headline horizontal information lines newspaper of page public rss several sheet social stream text timeline top updates with', Feedback: - '! alert announcement attention bubble caution chat comment communicate communication conversation danger error exclamation failed important mark message notification service sms speech symbol warning', - Female: 'gender girl lady social symbol woman women', + '! alert announcement attention bubble caution chat comment communicate communication complaint conversation danger error exclamation failed feedback help important inside mark message notification opinion problem report review service sms speech suggestion survey symbol warning with', + Female: + 'and bathroom below circle cross female gender girl hanging ladies lady mars restroom sex sign small social symbol toilet venus with woman women', Fence: - 'backyard barrier boundaries boundary entrance flowers garden gate grass home house nature nest outdoor outside protection', - Festival: 'circus event local maps places tent tour travel', + 'backyard barrier boundaries boundary by connected enclosure entrance fence fencing flowers garden gate grass home horizontal house line nature nest of outdoor outside pickets pointed privacy property protection rails row two wood', + Festival: + 'and arched camping campsite carnival celebration circus concert entrance event fair festival flag local maps marquee places small tent top tour travel triangular with', FiberDvr: - 'alphabet character digital electronics font letters network recorder symbol text tv type video', - FiberManualRecord: 'circle dot play watch', - FiberNew: 'alphabet character font letters network symbol text type', - FiberPin: 'alphabet character font letters network symbol text type', - FiberSmartRecord: 'circle dot play watch', + 'alphabet badge box cable character containing digital dvr electronics fiber font letters network recorder rectangle rounded symbol television text the tv type video', + FiberManualRecord: + 'bullet button circle dot fiber indicator live manual markings no online play radio record round single small status watch with', + FiberNew: + 'added alphabet badge character containing fiber font fresh just label letters network new recent rectangle rounded symbol tag text the type word', + FiberPin: + 'alphabet badge character containing fiber font identification label letters network number passcode password personal pin rectangle rounded security symbol tag text the type', + FiberSmartRecord: + 'ai arc auto circle crescent detection dot eclipse edge fiber its moon motion overlapping play record right smart watch with', FifteenMp: - 'camera digits font image letters megapixels numbers quality resolution symbol text type', + '15 above badge camera containing digits fifteen font image letters megapixels mp numbers photo quality rectangle resolution rounded setting symbol text the type', FileCopy: - 'bill clone content cut document duplicate invoice item multiple page past stack', - FileDownload: 'arrows downloads drive export install upload', - FileDownloadDone: 'arrows check downloads drive installed tick upload', + 'attachments bill clone content copy corners ctrl cut diagonally documents duplicate files folded invoice item layered multiple of overlapping page paperwork past replicate sheets stacked two with', + FileDownload: + 'above arrows bar device downloads downward drive export file get horizontal import install receive retrieve save to upload', + FileDownloadDone: + 'above arrows bar checkmark complete confirmed done downloads drive file finished horizontal installed saved success tick upload verified', FileDownloadOff: - 'arrow disabled drive enabled export install on save slash upload', - FileOpen: 'arrow document drive left page paper', + 'above arrow bar blocked cannot diagonal disabled download downward drive enabled export file horizontal install off prevent restricted save slash through unavailable upload with', + FileOpen: + 'access and arrow browse corner document drive edge files folded import into its left load lower of open page paper pointing sheet small with', FilePresent: - 'clip data document drive folders note paper reminder sheet slide storage writing', - FileUpload: 'arrows download drive export', - Filter: 'editing effect image landscape mountains photography picture settings', + 'and attachment center clipped corner data document drive email file folded folders note of paperclip present reminder shape sheet slide storage the with writing', + FileUpload: + 'above add arrows backup bar download drive export file horizontal publish send share submit upload upward', + FileUploadOff: + 'above arrow bar blocked cannot diagonal disabled file horizontal off prevent restricted slash through unavailable upload upward with', + Filter: + 'adjust camera containing editing effect filter frames front gallery image landscape mountains one overlapping photography picture refine settings shape small sort square the tune two', Filter1: - 'digit editing effect images multiple numbers photography pictures settings stack symbol', + '1 badge choice containing count digit editing effect filter front images layer level multiple numbers one option overlapping photography pictures preset settings squares stack step symbol the two', Filter2: - 'digit editing effect images multiple numbers photography pictures settings stack symbol', + '2 badge choice containing count digit editing effect filter front images layer level multiple numbers one option overlapping photography pictures preset settings squares stack step symbol the two', Filter3: - 'digit editing effect images multiple numbers photography pictures settings stack symbol', + '3 badge choice containing count digit editing effect filter front images layer level multiple numbers one option overlapping photography pictures preset settings squares stack step symbol the two', Filter4: - 'digit editing effect images multiple numbers photography pictures settings stack symbol', + '4 badge choice containing count digit editing effect filter front images layer level multiple numbers one option overlapping photography pictures preset settings squares stack step symbol the two', Filter5: - 'digit editing effect images multiple numbers photography pictures settings stack symbol', + '5 badge choice containing count digit editing effect filter front images layer level multiple numbers one option overlapping photography pictures preset settings squares stack step symbol the two', Filter6: - 'digit editing effect images multiple numbers photography pictures settings stack symbol', + '6 badge choice containing count digit editing effect filter front images layer level multiple numbers one option overlapping photography pictures preset settings squares stack step symbol the two', Filter7: - 'digit editing effect images multiple numbers photography pictures settings stack symbol', + '7 badge choice containing count digit editing effect filter front images layer level multiple numbers one option overlapping photography pictures preset settings squares stack step symbol the two', Filter8: - 'digit editing effect images multiple numbers photography pictures settings stack symbol', + '8 badge choice containing count digit editing effect filter front images layer level multiple numbers one option overlapping photography pictures preset settings squares stack step symbol the two', Filter9: - 'digit editing effect images multiple numbers photography pictures settings stack symbol', + '9 badge choice containing count digit editing effect filter front images layer level multiple numbers one option overlapping photography pictures preset settings squares stack step symbol the two', Filter9Plus: - '+ digit editing effect images multiple numbers photography pictures settings stack symbol', - FilterAlt: 'edit funnel options refine sift', - FilterAltOff: '[offline] disabled edit funnel options refine sift slash', + '+ 9 badge containing count digit editing effect filter front images level more multiple nine notification numbers one overflow overlapping photography pictures plus preset settings squares stack symbol than the two unread', + FilterAlt: + 'adjust alt and down edit filter funnel narrow options refine search shape sift sort spout strain top tune wide with', + FilterAltOff: + '[offline] alt clear diagonal disabled edit filters funnel no options refine remove reset shape sift slash through with', FilterBAndW: - 'black contrast editing effect grayscale images photography pictures settings white', - FilterCenterFocus: 'camera dot edit image photography picture', - FilterDrama: 'camera cloud editing effect image photography picture sky', + 'and black contrast desaturate diagonally editing effect filter grayscale greyscale half images into monochrome photography pictures plain settings shape split square sun-like white with', + FilterCenterFocus: + 'autofocus brackets camera center corner crosshair dot edit filter four frame image photography picture point surrounding target the viewfinder', + FilterDrama: + 'camera cloudy drama editing effect filter image overcast overlapping partly photography picture shapes sky two weather', FilterFrames: - 'boarders border camera center editing effect filters focus image options photography picture', - FilterHdr: 'camera editing effect image mountains photography picture', - FilterList: 'lines organize sort', - FilterListOff: '[offline] alt disabled edit options refine sift slash', - FilterNone: 'multiple square stack', + 'and artwork boarders border camera center editing effect filters focus frames gallery house image inside options peak photography picture rectangle small square thumbnail top with', + FilterHdr: + 'camera dynamic editing effect filter hdr high image landscape mountains overlapping peaks photography picture range scenery terrain triangular two', + FilterList: + 'bars between by decreasing filter funnel gaps horizontal lines list narrow of options organize refine results sort stacked them three width with', + FilterListAlt: + 'alt and down filter flat funnel list narrow options refine search shape sift sort spout strain top tune wide with', + FilterListOff: + '[offline] alt bars clear decreasing diagonal disabled edit filters horizontal list no options refine remove reset sift slash sorting them three through width with', + FilterNone: + 'copy duplicate layers multiple none original outlines overlapping square stack two unfiltered windows', FilterTiltShift: - 'blur center dashed editing effect focus images photography pictures', - FilterVintage: 'editing effect flower images photography pictures', + 'arcs blur center circle dashed depth dot editing effect field filter focus images lens made miniature of photography pictures selective the tilt-shift with', + FilterVintage: + 'around blossom center circle daisy editing effect filter floral flower images nature old-fashioned petals photography pictures retro rounded sepia several small vintage with', FindInPage: - 'data document drive file folders glass look magnifying paper search see sheet slide writing', + 'and corner ctrl data document drive file find folded folders glass inspect locate lookup magnifying of over page paper search see sheet slide text with writing zoom', FindReplace: - 'around arrows glass inprogress loading look magnifying refresh renew rotate search see', + 'and around arrows circular edit find glass inprogress loading look magnifying overlapping refresh renew replace rotate search see substitute swap sync text them update with', Fingerprint: - 'biometrics identification identity reader thumbprint touchid verification', - FireExtinguisher: 'emergency water', - Fireplace: 'chimney flame home house living pit room warm winter', - FirstPage: 'arrow back chevron left rewind', - Fitbit: 'athlete athletic exercise fitness hobby logo', + 'authentication biometrics concentric curved fingerprint identification identity login of password pattern reader ridges scan security thumbprint touchid unlock verification', + FireExtinguisher: + 'cylinder emergency equipment extinguisher firefighting flame foam handle nozzle on out put safety top trigger water with', + FireHydrantAlt: + 'alt and cap emergency firefighting hydrant main nozzles on round safety side street supply top two water with', + Fireplace: + 'campfire chimney containing cozy fireplace flame frame hearth home house ledge living log mantel pit room shape sitting small square warm winter', + FireTruck: + 'and emergency engine firefighter ladder on rescue siren top truck two vehicle wheels with', + FirstPage: + 'arrow back bar beginning beside chevron first go jump left-pointing page rewind skip start top vertical', + Fitbit: + 'athlete athletic bottom brand cluster company diamond-shaped dots exercise fitbit fitness hobby larger logo of smartwatch the top tracker wearable', FitnessCenter: - 'athlete dumbbell exercise gym health hobby places sport weights workout', - FitScreen: 'enlarge format layout reduce scale size', + 'angle athlete barbell center diagonal dumbbell each end exercise fitness gym health hobby lifting muscle places shown sport strength training weights with workout', + FitScreen: + 'aspect brackets corner enlarge fit format four full layout ratio rectangle reduce resize scale screen surrounding to zoom', FiveG: - '5g alphabet cellular character data digit font letters mobile network numbers phone signal speed symbol text type wifi', + '5g alphabet cellular character connectivity data digit fifth five font generation internet letters mobile network numbers phone reading signal speed symbol text type wifi', FiveK: - '5000 5K alphabet character digit display font letters numbers pixels resolution symbol text type video', + '5000 5K 5k alphabet character containing digit display distance five font letters numbers pixels race rectangle resolution rounded running symbol text the thousand type video', FiveKPlus: - '+ 5000 5K alphabet character digit display font letters numbers pixels resolution symbol text type video', + '+ 5000 5K 5k alphabet badge character containing digit display distance five font letters numbers pixels plus quality race rectangle resolution rounded symbol text the thousand type video', FiveMp: - 'camera digit font image letters megapixels numbers quality resolution symbol text type', + '5 above camera containing digit five font image letters megapixels mp numbers photo quality rectangle resolution rounded setting symbol text the type', FivteenMp: - 'camera digits font image letters megapixels numbers quality resolution symbol text type', - Flag: 'country destination emoji flags goal landmark location milepost milestone place pole report save social start world', - FlagCircle: 'country goal mark nation report round start', + '15 above badge camera containing digits fivteen font image letters megapixels mp numbers photo quality rectangle resolution rounded setting symbol text the type', + Flag: 'banner bookmark checkpoint country cut destination edge emoji flags goal into landmark location milepost milestone notch pennant place pole report save social start the trailing warning waving with world', + FlagCircle: + 'badge banner checkpoint circle country flag goal inside location marker nation pennant report round shape start', Flaky: - 'approve check close complete contrast done exit mark no ok options select stop tick verified yes', + 'and approve checkmark circle close complete contrast diagonally done exit fail flaky inconsistent no ok options or other pass review select side split status stop test tick toggle unreliable verified with yes', Flare: - 'bright editing effect images lensflare light photography pictures shine sparkle star sun', - FlashAuto: 'camera electric energy fast instant lightning thunderbolt', - FlashlightOff: 'disabled enabled on slash', - FlashlightOn: 'disabled enabled off slash', + 'above brightness camera dash editing effect glow images lensflare light one outward photography pictures radiance radiating rays shine shown sparkle star sunburst with', + FlashAuto: + 'automatic beside camera electric energy fast flash instant letter lightning setting the thunderbolt with', + FlashlightOff: + 'diagonal disabled enabled flashlight lamp no off shape slash through torch turn with', + FlashlightOn: + 'across band body disabled dot enabled flashlight hand head its lamp lens near off on slash the torch turn with', FlashOff: - 'camera disabled electric enabled energy fast instant lightning on slash thunderbolt', + 'camera diagonal disabled electric enabled energy fast flash instant lightning mute no off setting slash through thunderbolt turn with', FlashOn: - 'camera disabled electric enabled energy fast instant lightning off slash thunderbolt', + 'boost camera disabled electric enabled energy fast flash instant lightning off on power slash strobe thunderbolt turn', Flatware: - 'cafeteria cutlery diner dining dinner eating food fork knife local meal restaurant room spoon utensils', + 'by cafeteria cutlery diner dining dinner eating flatware food fork kitchen knife local meal place restaurant room setting side silverware spoon standing tableware utensils', Flight: - 'aircraft airplanes airport flights flying mode signal transportation travel trip', + 'above aeroplane aircraft airline airplanes airport artificial automation clover flights flying from genai holiday intelligence jet magic mode nose pointing seen signal sparkle star transportation travel trip up vacation', FlightClass: - 'aircraft airplanes airport business class first flights flying seat signal transportation travel trip window', + 'aircraft airplanes airport and armrest boarding business cabin class economy first flights flying from headrest reservation seat seen side signal the transportation travel trip window with', FlightLand: - 'aircraft airplanes airport arrival arriving departing departure flights flying landing signal transportation travel trip', + 'above aircraft airplanes airport arrival arriving departing departure downward flights flying horizontal incoming landing line runway signal tilted touchdown transportation travel trip', FlightTakeoff: - 'aircraft airplanes airport arrival arriving departed departing departure flights flying landing signal transportation travel trip', - Flip: 'dashed editing image orientation scanning', + 'above aircraft airplanes airport arrival arriving ascend departed departing departure flights flying horizontal landing line runway signal takeoff taking tilted transportation travel trip upward', + Flip: 'and between bracket dashed editing flip horizontal image invert line mirror one orientation other plain rectangle reflect scanning sides swap vertical', FlipCameraAndroid: - 'center editing front image mobile orientation rear reverse rotate turn', + 'android around arrows back camera center circular dot editing flip front image mobile orientation rear reverse rotate selfie switch the turn', FlipCameraIos: - 'DISABLE_IOS android disable_ios editing front image mobile orientation rear reverse rotate turn', - FlipToBack: 'arrangement dashed format front layout move order sort', - FlipToFront: 'arrangement back dashed format layout move order sort', - Flood: 'crisis disaster flooding natural rain storm water wave weather', - Fluorescent: 'bright lamp lightbulb', - FlutterDash: 'application bird framework logo mascot open program software source', + 'DISABLE_IOS android arrows back body camera circular disable_ios editing flip front image iphone mobile orientation rear reverse rotate selfie switch the turn with', + FlipToBack: + 'arrangement backward behind corners dashed edge flip format front layered layout move order plain send sort square stacking to with z-index', + FlipToFront: + 'arrangement back bring dashed flip format forward front layered layout move of order sort square stacking top z-index', + Flood: + 'above crisis damage deluge disaster flooding house insurance lines natural overflow rain relief representing storm tilted water wave wavy weather', + Fluorescent: + 'and bar bright by ceiling dashes diamonds fluorescent glow lamp led lightbulb radiating rectangle small sparkle surrounded tube', + FlutterDash: + 'application bird brand cartoon cross-platform dart dash ear eyes face flutter framework google headphone-like large logo mascot open program round sdk shapes software source with', FmdBad: - '! alert attention caution danger destination direction error exclamation important location maps mark notification pin place symbol warning', - FmdGood: 'destination direction location maps pin place stop', - Folder: 'data directory document drive file folders sheet slide storage', + '! address alert attention bad broken caution danger destination direction error exclamation fmd important inside invalid location maps mark missing notification pin place symbol warning with', + FmdGood: + 'address circle current destination direction drop fmd good gps hole inside location maps marker pin place stop with', + Foggy: + 'above cloud foggy haze horizontal lines low mist overcast shape two visibility wavy weather', + Folder: + 'category data directory document drive files folders group organize project sheet slide storage tab the top with', FolderCopy: - 'content cut data document drive duplicate file folders multiple paste sheet slide storage', + 'backup clone content copy cut data document drive duplicate file folders multiple overlapping paste replicate sheet slide stacked storage tabs two with', FolderDelete: - 'bin can data document drive file folders garbage remove sheet slide storage trash', + 'bin can data delete discard document drive erase file folders garbage inside remove shape sheet slide storage trash with', FolderOff: - '[online] data disabled document drive enabled file folders sheet slash slide storage', - FolderOpen: 'data directory document drive file folders sheet slide storage', + '[online] access blocked data diagonal disabled document drive enabled file folders no off restricted shape sheet slash slide storage through unavailable with', + FolderOpen: + 'browse contents cut data directory document drive expand file folders front large of open out rectangular sheet slide storage the view window with', FolderShared: - 'account collaboration data directory document drive face human people person profile sheet slide storage team user', + 'account collaboration data directory document drive face folder human inside network people permissions person profile shared sheet silhouette slide storage team user with', FolderSpecial: - 'bookmark data directory document drive favorite file highlight important marked saved shape sheet slide star storage', - FolderZip: 'compress data document drive file folders open sheet slide storage', - FollowTheSigns: 'arrow body directional human people person right social', + 'bookmark data directory document drive favorite file folder highlight important inside marked pinned priority saved shape sheet slide special star storage vip with', + FolderZip: + 'archive checkered compressed data document down drive extract file folders front open sheet slide storage strip the winzip with zipper', + FollowTheSigns: + 'arrow beside body directional directions follow guidance hiking human instructions people person pointing right signpost signs social the trail walking wayfinding with', FontDownload: - 'A alphabet character classification letters square symbol text typeface', + 'A add alphabet character classification containing download font get install large letters square symbol text typeface typography', FontDownloadOff: - 'alphabet character disabled enabled letters slash square symbol text type', + 'alphabet cannot character containing diagonal disabled download enabled font install large letters off remove slash square symbol text through type unavailable with', FoodBank: - 'architecture building charity eat estate fork house knife meal place real residence residential shelter utensils', - Forest: 'jungle nature plantation plants trees woodland', - ForkLeft: 'arrows directions maps navigation path route sign traffic', - ForkRight: 'arrows directions maps navigation path route sign traffic', + 'and architecture bank building charity community containing donation eat estate food fork house kitchen knife meal nonprofit pantry place real residence residential shape shelter soup utensils', + Forest: + 'by camping deforestation evergreen jagged jungle line nature one overlapping park pine plantation plants shapes split trees triangular trunks two wilderness with woodland', + ForkLeft: + 'and arrows directions fork gps intersection into junction left-pointing maps navigation path road route sign splitting traffic turn upward vertical y', + Forklift: + 'beside cargo forklift forks industrial letter logistics pallet raised the truck warehouse with', + ForkRight: + 'and arrows directions fork gps intersection into junction maps navigation path right-pointing road route sign splitting traffic turn upward vertical y', FormatAlignCenter: - 'alignment doc editing editor lines spreadsheet text type writing', + 'above alignment another bars centered doc editing editor format horizontal justify length lines of one paragraph processor several spreadsheet text type varying word writing', FormatAlignJustify: - 'alignment density doc editing editor extra lines small spreadsheet text type writing', + 'alignment bars density doc editing editor extra format full horizontal justify length lines paragraph processor same several small spreadsheet stacked text the type word writing', FormatAlignLeft: - 'alignment doc editing editor lines spreadsheet text type writing', + 'aligned alignment bars doc editing editor format horizontal left length lines of paragraph processor several spreadsheet text the type varying word writing', FormatAlignRight: - 'alignment doc editing editor lines spreadsheet text type writing', + 'aligned alignment bars doc editing editor format horizontal length lines of paragraph processor right several spreadsheet text the type varying word writing', FormatBold: - 'B alphabet character doc editing editor font letters spreadsheet styles symbol text type writing', + 'B alphabet bold character doc editing editor emphasis font format large letters processor spreadsheet strong styles symbol text thick type word writing', FormatClear: - 'T alphabet character disabled doc editing editor enabled font letters off slash spreadsheet style symbol text type writing', + 'T alphabet character clear diagonal disabled doc editing editor enabled font formatting letters off plain remove reset slash spreadsheet strip styles symbol text through type with writing', FormatColorFill: - 'bucket doc editing editor paint spreadsheet style text type writing', + 'above and background bar bucket color doc drop editing editor fill format highlight horizontal paint pouring spreadsheet style text tilted type writing', FormatColorReset: - 'clear disabled doc droplet editing editor enabled fill liquid off on paint slash spreadsheet style text type water writing', - FormatColorText: 'doc editing editor fill paint spreadsheet style type writing', + 'bucket clear color default diagonal disabled doc droplet editing editor enabled fill format liquid no off paint remove reset shape slash spreadsheet style text through transparent type water with writing', + FormatColorText: + 'above bar change color doc editing editor fill font format horizontal large letter paint spreadsheet style text type writing', FormatIndentDecrease: - 'alignment doc editing editor indentation paragraph spreadsheet text type writing', + 'alignment arrow beside decrease doc editing editor format horizontal indentation left-pointing lines margin of outdent paragraph reduce several shift spreadsheet tab text type writing', FormatIndentIncrease: - 'alignment doc editing editor indentation paragraph spreadsheet text type writing', + 'add alignment arrow beside doc editing editor format horizontal increase indentation lines margin of paragraph right-pointing several shift spreadsheet tab text type writing', FormatItalic: - 'alphabet character doc editing editor font letters spreadsheet style symbol text type writing', - FormatLineSpacing: 'alignment doc editing editor spreadsheet text type writing', + 'alphabet character doc editing editor emphasis font format italics large letters oblique slanted spreadsheet style symbol text type writing', + FormatLineSpacing: + 'alignment arrow beside doc double-headed editing editor format height horizontal leading lines of paragraph several spacing spreadsheet text type vertical writing', FormatListBulleted: - 'alignment doc editing editor notes spreadsheet task text todo type writing', + 'alignment beside bulleted checklist doc dots each editing editor format horizontal line notes points spreadsheet stacked task text three todo type unordered writing', + FormatListBulletedAdd: + 'add badge bottom bulleted circle format insert item lines list new of plus right the with', FormatListNumbered: - 'alignment digit doc editing editor notes numbers spreadsheet symbol task text todo type writing', + '1 2 3 alignment and beside digit doc each editing editor format horizontal list notes numbered numbers ordered outline sequence spreadsheet stacked symbol task text todo type writing', FormatListNumberedRtl: - 'alignment digit doc editing editor notes numbers spreadsheet symbol task text todo type writing', + 'alignment arabic by digit doc each editing editor followed format hebrew horizontal left lines list notes numbered numbers of ordered right rtl spreadsheet stacked symbol task text todo type writing', FormatOverline: - 'alphabet character doc editing editor font letters spreadsheet style symbol text type under writing', + 'above alphabet bar border character circle doc editing editor font format horizontal letters overline spreadsheet style symbol text top type under with writing', FormatPaint: - 'brush color doc editing editor fill paintroller spreadsheet style text type writing', - FormatQuote: 'doc editing editor quotation spreadsheet text type writing', + 'brush color copy doc editing editor fill formatting handle painter paintroller spreadsheet style text type with writing', + FormatQuote: + 'blockquote citation doc editing editor format large marks quotation speech spreadsheet text two type writing', FormatShapes: - 'alphabet character color doc editing editor fill font insert letters paint spreadsheet style symbol text type vector writing', + 'alphabet box character color containing corner design doc editing editor fill font format frame handles insert letters paint resize shapes spreadsheet square style symbol text tool type vector with writing', FormatSize: - 'alphabet character color doc editing editor fill font letters paint spreadsheet style symbol text type writing', + 'alphabet by character color different doc editing editor fill font format increase letters of paint side sizes spreadsheet style symbol text two type writing', FormatStrikethrough: - 'alphabet character doc editing editor font letters spreadsheet style symbol text type writing', + 'alphabet cancel character cross delete doc editing editor font format horizontal its letters line middle out spreadsheet strikethrough struck style symbol text type with writing', FormatTextdirectionLToR: - 'alignment doc editing editor ltr paragraph spreadsheet type writing', + 'above alignment arrow doc editing editor format left ltr mark paragraph right-pointing spreadsheet textdirection type western writing', FormatTextdirectionRToL: - 'alignment doc editing editor ltr paragraph rtl spreadsheet type writing', + 'above alignment arabic arrow doc editing editor format hebrew left-pointing ltr mark paragraph right rtl spreadsheet textdirection type writing', FormatUnderlined: - 'alphabet character doc editing editor font letters spreadsheet style symbol text type writing', - Fort: 'castle fortress mansion palace', + 'alphabet beneath character doc editing editor emphasis font format horizontal letters spreadsheet style symbol text type underlined with writing', + Fort: 'and arched battlement castle crenellated fortress gate keep mansion medieval military palace stronghold towers two wall with', Forum: - 'bubble chat comment communicate community conversation feedback hub messages speech talk', - Forward: 'arrow mail message playback right sent', + 'board bubbles chat comment communicate community conversation discussion feedback forum hub messages overlapping speech talk thread two', + Forward: + 'arrow continue forward mail message next playback redirect resend right-pointing sent share', Forward10: - 'arrow circle controls digit fast music numbers play rotate seconds speed symbol time video', + '10 ahead arrow center circle circular controls digit fast forward in jump media music numbers play rotate seconds skip speed symbol the time video with', Forward30: - 'arrow circle controls digit fast music numbers rotate seconds speed symbol time video', + '30 ahead arrow center circle circular controls digit fast forward in jump media music numbers rotate seconds skip speed symbol the time video with', Forward5: - '10 arrow circle controls digit fast music numbers rotate seconds speed symbol time video', + '10 5 ahead arrow center circle circular controls digit fast forward in jump media music numbers rotate seconds skip speed symbol the time video with', ForwardToInbox: - 'arrows directions email envelop letters message navigation outgoing right send', + 'arrows beside directions email envelope forward inbox letters message navigation outgoing redirect right-pointing send share to with', Foundation: - 'architecture base basis building construction estate home house real residential', + 'architecture base basis beams building construction estate footing foundation framework groundwork home house-shaped inside real residential structural support vertical with', FourGMobiledata: - 'alphabet cellular character digit font letters network numbers phone signal speed symbol text type wifi', + '4g alphabet cellular character connectivity digit font fourth generation internet letters mobiledata network numbers phone reading signal speed symbol text type wifi', FourGPlusMobiledata: - 'alphabet cellular character digit font letters network numbers phone signal speed symbol text type wifi', + '4g alphabet cellular character digit enhanced font fourth generation internet letters mobiledata network numbers phone plus reading signal speed symbol text type wifi', FourK: - '4000 4K alphabet character digit display font letters numbers pixels resolution symbol text type video', + '4000 4K 4k alphabet character containing digit display font four hd letters numbers pixels quality rectangle resolution rounded symbol text the thousand type ultra video', FourKPlus: - '+ 4000 4K alphabet character digit display font letters numbers pixels resolution symbol text type video', + '+ 4000 4K 4k alphabet badge character containing digit display font four hd letters numbers pixels plus quality rectangle resolution rounded symbol text the thousand type ultra video', FourMp: - 'camera digit font image letters megapixels numbers quality resolution symbol text type', + '4 above camera containing digit font four image letters megapixels mp numbers photo quality rectangle resolution rounded setting symbol text the type', FourteenMp: - 'camera digits font image letters megapixels numbers quality resolution symbol text type', - FreeBreakfast: 'beverage cafe coffee cup drink mug tea', + '14 above camera containing digits font fourteen image letters megapixels mp numbers photo quality rectangle resolution rounded setting symbol text the type', + FreeBreakfast: + 'above amenity beverage breakfast cafe coffee complimentary continental cup drink free handle hotel line meal morning mug saucer sitting small tea with', FreeCancellation: - 'approve calendar check clear complete day done event exit mark month no ok remove schedule select stop tick validate verified yes', - FrontHand: 'fingers gesture hello palm stop', - Fullscreen: 'adjust application components interface size ui ux view website', - FullscreenExit: 'adjust application components interface size ui ux view website', + 'and approve booking calendar cancellation checkmark clear complete day done event exit fee flexible free hanging month no policy refundable remove schedule select stop tab tick validate verified with yes', + FrontHand: + 'block facing fingers five forward front gesture halt hand hello high open palm raised sign stop wave', + FrontLoader: + 'and bucket bulldozer construction excavator front heavy loader machinery raised scoop tractor two vehicle wheels with', + Fullscreen: + 'adjust application brackets components corner enlarge expand four fullscreen interface maximize mode outward pointing size ui ux view website window', + FullscreenExit: + 'adjust application brackets collapse components corner exit four fullscreen interface inward minimize pointing restore shrink size ui ux view website window', Functions: - 'average calculate count custom doc editing editor math sigma spreadsheet style sum text type writing', - Gamepad: 'buttons console controller device gaming playstation video', + 'aggregate average calculate count custom doc editing editor formula functions large mathematics sigma spreadsheet style summation symbol text type writing', + Gamepad: + 'arranged buttons console controller cross d-pad device flat-edged forming four gamepad gaming joystick nintendo playstation shape triangles video xbox', Games: - 'adjust arrows controller direction dpad gaming left move nintendo playstation right xbox', - Garage: 'automobile automotive cars direction maps transportation travel vehicle', - GasMeter: 'droplet energy measure nest usage water', + 'adjust around arranged arrows buttons center controller cross direction dpad forming four games gaming joystick left move nintendo playstation points right shape star-like triangular video xbox', + Garage: + 'automobile automotive carport cars containing direction frame front garage home maps of parking square the transportation travel vehicle view', + GasMeter: + 'and canister consumption droplet energy fuel gas gauge in measure meter middle nest prongs propane shape tank the top two usage utility water with', Gavel: - 'agreement contract court document government hammer judge law mallet official police rules terms', + 'above agreement angle at auction base contract court document down gavel government hammer judge judgment justice law legal line mallet official police rules small striking terms verdict', GeneratingTokens: - 'access api artificial automatic automation coin custom genai intelligence magic smart sparkle star', - Gesture: 'doodle drawing finger gestures hand line motion scribble string thread', - GetApp: 'arrows downloads export install play pointing retrieve upload', - Gif: 'alphabet animated animation bitmap character font format graphics interchange letters symbol text type', + 'access api artificial automatic automation beside chatgpt circle coin containing custom genai generating generation intelligence letter llm loading magic processing shapes smart sparkle star the tokens two wand', + Gesture: + 'doodle drawing ending finger gestures handwriting input line motion s-shaped scribble signature small squiggle string swipe thread tick touch wavy', + GetApp: + 'above app arrows bar downloads downward export get horizontal install play pointing retrieve save store upload', + Gif: 'alphabet animated animation bitmap character font format gif graphics image interchange letters meme moving picture reading symbol text type', GifBox: - 'alphabet animated animation bitmap character font format graphics interchange letters symbol text type', - Girl: 'body female gender human lady people person social symbol woman women', - Gite: 'architecture estate home hostel house maps place real residence residential stay traveling', - GitHub: 'brand code', - GMobiledata: 'alphabet character font letters network service symbol text type', + 'alphabet animated animation badge bitmap box character containing font format gif graphics image interchange letters meme moving picture rectangle rounded symbol text the type', + Girl: 'body child daughter dress female figure gender girl head human in kid lady people person restroom round sign social symbol triangular with woman women', + Gite: 'airbnb and architecture cabin chimney cottage estate gite home hostel house lodging maps peak place real rental residence residential roof shape stay traveling triangular vacation with', + GitHub: + 'brand cat-like circle code containing control curled developer ears face git hub octocat open pointed repository source tail version with', + GMobiledata: + '2g alphabet cell character first font generation gprs letters mobiledata network service shape signal square-cornered symbol text type with', GolfCourse: - 'athlete athletic ball club entertainment flag golfer golfing hobby hole places putt sports', - Google: 'brand logo', + 'athlete athletic ball beside club country course entertainment flag golfer golfing green hobby hole mound on places planted pole putting small sports tee venue with', + Google: + 'alphabet android brand company engine gmail google inc large letter logo search', GppBad: - 'cancel certified close error exit no privacy private protection remove security shield sim stop verified', - GppGood: 'certified check ok pass security shield sim tick', + 'alert bad cancel certified close compromised detected error exit gpp inside no privacy private protection remove security shield sim stop threat unsafe verified virus with', + GppGood: + 'antivirus certified checkmark good gpp inside ok pass protected safe secure security shield sim tick verified with', GppMaybe: - '! alert attention caution certified danger error exclamation important mark notification privacy private protection security shield sim symbol verified warning', - GpsFixed: 'destination direction location maps pin place pointer stop tracking', + '! alert attention caution certified danger error exclamation gpp important inside mark maybe notification potential privacy private protection security shield sim symbol threat uncertain unverified warning with', + GpsFixed: + 'and center circle current destination direction dot each extending fixed from geolocation gps lines locate maps me pin place pointer position satellite short side stop target the tracking with', GpsNotFixed: - 'destination direction disabled enabled fixed location maps not off online place pointer slash tracking', + 'acquiring center circle destination direction disabled each empty enabled extending fixed from gps lines locating location maps not off online place pointer searching short side signal slash the tracking weak with', GpsOff: - 'destination direction disabled enabled fixed location maps not offline place pointer slash tracking', + 'by circle crossed destination diagonal direction disabled each enabled extending fixed from gps lines location maps not offline place pointer services short side signal slash tracking with', Grade: - '. achievement favorite_news important likes marked rated rating reward saved shape special star_border_purple500 star_outline', - Gradient: 'color editing effect filter images photography pictures', + '. achievement class excellence favorite_news five-pointed grade honor important likes marked pick rank rated rating review reward saved score shape special star_border_purple500 star_outline top', + Gradient: + 'blend checkered color covered editing effect fade filter gradient images ombre pattern photography pictures rectangle rounded transparency with', Grading: - 'approve check complete document done feedback grade mark ok reviewed select star_boarder star_border_purple500 star_outline star_purple500 star_rate tick validate verified writing yes', - Grain: 'dots editing effect filter images photography pictures', - GraphicEq: 'audio detection equalizer music noise recording sound voice', - Grass: 'backyard fodder ground home lawn plant turf', - Grid3x3: 'layout line space', - Grid4x4: 'by layout lines space', - GridGoldenratio: 'layout lines space', - GridOff: 'collage disabled enabled image layout on slash view', - GridOn: 'background collage disabled enabled image layout off sheet slash view', + 'approve assessment beside bottom card checklist checkmark complete document done evaluation exam feedback grade grading homework horizontal lines of ok report reviewed scoring select several star_boarder star_border_purple500 star_outline star_purple500 star_rate text the tick validate verified with writing yes', + Grain: + 'arranged cluster dots editing effect film filter grain images loosely noise of photography pictures small speckle texture', + GraphicEq: + 'an audio bars detection equalizer frequency graphic height levels like music noise of recording several sound spectrum varying vertical voice volume waveform', + Grass: + 'backyard blades curved field fodder from grass greenery ground home lawn line meadow nature of plant sprouting tufts turf', + Grid3x3: + '3 by forming grid hashtag layout like lines of pattern pound sign space spreadsheet symbol table tac thick tic toe', + Grid4x4: + '4 by checkerboard forming grid layout lines matrix of pattern space table thick waffle', + GridGoldenratio: + 'and center composition crop cross extra goldenratio grid guide horizontal layout lines near of pair photo rule space the thick thirds vertical with', + GridOff: + 'collage diagonal disabled enabled gridlines hide image layout no off remove slash squares through view with', + GridOn: + 'background cells collage disabled enabled evenly gridlines image layout off on show slash spaced spreadsheet squares table view', GridView: - 'application blocks components dashboard design interface layout screen square tiles ui ux website window', + '2 application arranged blocks by card components dashboard design four grid icons interface layout module pattern screen small squares thumbnail tiles ui ux view website window', Group: - 'accounts committee face family friends humans network people persons profiles social team users', + 'accounts behind committee community contacts crowd face family friends group humans network one organization other overlapping people persons profiles silhouettes social team users', GroupAdd: - 'accounts committee face family friends humans increase more network people persons plus profiles social team users', + 'accounts add and beside committee contact face family figure friends group humans increase invite member more network new partial people persons plus profiles second sign silhouette social team users', GroupOff: - 'body club collaboration crowd gathering human meeting people person social teams', + 'body club collaboration crowd diagonal disabled disband gathering human meeting no off overlapping people person remove silhouettes slash social teams them through two ungroup with', GroupRemove: - 'accounts committee face family friends humans network people persons profiles social team users', + 'accounts and beside committee contact delete face family figure friends group humans kick member minus network partial people persons profiles remove second sign silhouette social team unfriend users', Groups: - 'body club collaboration crowd gathering human meeting people person social teams', + 'attendees body by club collaboration community contacts crowd gathering groups human meeting middle one people person side silhouettes social taller teams three', Groups2: - 'body club collaboration crowd gathering hair human meeting people person social teams', + 'attendees body by club collaboration community contacts crowd curly gathering groups hair human meeting ones outer people person side silhouettes social teams textured three two with', Groups3: - 'abstract body club collaboration crowd gathering human meeting people person social teams', - GroupWork: 'alliance circle collaboration film partnership reel teamwork together', - GTranslate: 'emblem google language logo mark speaking speech translator words', - Hail: 'body human people person pick public stop taxi transportation', - Handshake: 'agreement partnership', - Handyman: 'build construction fix hammer repair screwdriver tools', - Hardware: 'break construction hammer nail repair tool', - Hd: 'alphabet character codec definition display font high letters movies quality resolution screen symbol text tv type video', + 'abstract and avatars beside body club collaboration community contacts crowd diamond diverse gathering groups human meeting outer people person shape silhouettes social teams three triangle two with', + GroupWork: + 'alliance arranged circles cluster collaboration containing cooperation film group partnership project reel small teamwork three together triangle', + GTranslate: + 'brand card characters emblem foreign google language letter localization logo mark overlapping pencil-like small speaking speech translate translator with words', + Hail: 'arm beside body box cab down flag for hail human one people person pick public rideshare small standing stop taxi transportation uber up wave waving', + Handshake: + 'agreement business clasping cooperation deal each fingers greeting handshake interlocking other partnership trust two welcome with', + Handyman: + 'build construction contractor crossed diy fix hammer handyman home maintenance repair screwdriver toolkit tools', + Hardware: + 'break combined construction diy equipment hammer hardware maintenance mechanical nail repair shape toolbox with wrench', + Hd: '1080p alphabet character codec containing crisp definition display font hd high letters movies quality rectangle resolution rounded screen symbol text the tv type video', HdrAuto: - 'A alphabet camera character circle dynamic font high letters photo range symbol text type', + 'A alphabet automatic camera character circle containing dynamic exposure font hdr high letters mode photo range symbol text the type', HdrAutoSelect: - '+ A alphabet camera character circle dynamic font high letters photo range symbol text type', + '+ A above alphabet auto camera character chosen circle containing dynamic font hdr high letters mode photo range selected setting symbol text the type', HdrEnhancedSelect: - 'add alphabet character dynamic font high letters plus range symbol text type', + 'above add alphabet boosted camera character circle dynamic enhanced font hdr high letters mode plus range selected setting sign symbol text the type with', HdrOff: - 'alphabet character disabled dynamic enabled enhance font high letters range select slash symbol text type', + 'alphabet camera character diagonal disabled dynamic enabled enhance font hdr high letters no off range reading select setting slash symbol text through turn type with', HdrOffSelect: - 'alphabet camera character circle disabled dynamic enabled font high letters photo range slash symbol text type', + 'above alphabet camera character circle diagonal disabled dynamic enabled font hdr high letters mode off photo range selected slash symbol text the through type with', HdrOn: - 'add alphabet character dynamic enhance font high letters plus range select symbol text type', + 'add alphabet camera character dynamic enabled enhanced font hdr high letters photo plus range reading select setting symbol text type', HdrOnSelect: - '+ alphabet camera character circle dynamic font high letters photo range symbol text type', + '+ above alphabet camera character chosen circle dynamic enabled font hdr high letters mode photo range selected setting symbol text the type', HdrPlus: - '+ add alphabet character circle dynamic enhance font high letters range select symbol text type', - HdrStrong: 'circles dots dynamic enhance high range', - HdrWeak: 'circles dots dynamic enhance high range', - Headphones: 'accessory audio device earphone headset listen music sound', + '+ add alphabet badge boosted camera character circle containing dynamic enhanced font hdr high letters mode photo plus range select symbol text the type', + HdrStrong: + 'beside camera circles dots dynamic enhance hdr high intensity larger range setting small strong two', + HdrWeak: + 'beside camera circles dots dynamic enhance hdr high intensity larger low range setting small two weak', + Headphones: + 'accessory audio band cans cup device each earphone end headphones headset jack listen music over-ear rounded sound with', HeadphonesBattery: - 'accessory audio charging device earphone headset listen music sound', + 'accessory audio battery beside charge charging device earphone headphones headset level listen music power shape small sound status', Headset: - 'accessory audio device earbuds earmuffs earphone headphones listen music sound', + 'accessory audio band call cans center cups device earbuds earmuffs earphone gaming headphones headset listen mic music no rounded sound with', HeadsetMic: - 'accessory audio chat device earphone headphones listen music sound talk', + 'accessory audio band boom call center chat cups customer device earphone extending from gaming headphones headset listen microphone music rounded side small sound support talk with', HeadsetOff: - 'accessory audio chat device disabled earphone enabled headphones listen mic music mute slash sound talk', - Healing: 'bandage bandaid editing emergency fix health hospital image medicine', + 'accessory audio chat device diagonal disabled disconnect earphone enabled headphones headset listen mic music mute no off remove slash sound talk them through with', + Healing: + 'adhesive bandage bandaid care crossed dots editing emergency first fix healing health hospital image medicine one patch plaster recovery strips treatment two with wound', HealthAndSafety: - '+ add certified cross home nest plus privacy private protection security shield symbol verified', + '+ add aid and center certified cross first health home insurance medical nest plus privacy private protection safety security shield symbol the verified wellbeing with', Hearing: - 'accessibility accessible aids body handicap hearing help human impaired listen mono sound volume', + 'accessibility accessible aids assist audio beside body curved deaf handicap hearing help human impaired listen mono radiating shape sound volume waves with', HearingDisabled: - 'accessibility accessible aid enabled handicap help impaired listen mute off on slash sound volume', - HeartBroken: 'break core crush health nucleus split', - HeatPump: 'air conditioner cool energy furnance nest usage', + 'accessibility accessible aid audio deaf diagonal disabled enabled handicap hearing help impaired listen mute no off shape slash sound through volume waves with', + HeartBroken: + 'breakup broken by core crack crush down grief health heartbreak jagged middle nucleus sad shape split the', + HeatPump: + 'air climate conditioner containing control cool energy fan furnance heat hvac nest or pump rounded shape snowflake-like spoked square thermostat usage ventilation', Height: - 'arrows color doc down editing editor fill format paint resize spreadsheet stretch style text type up writing', - Help: '? alert announcement assistance circle information mark punctuation question recent restore shape support symbol', + 'arrows color doc double-headed down editing editor elevation fill format height measurement paint resize spreadsheet stretch style tall text type up vertical writing', + Help: '? alert announcement ask assistance chat circle customer faq guidance help hint information inside live mark need punctuation question recent restore service shape support symbol this tooltip unknown what', HelpCenter: - '? assistance information mark punctuation question recent restore support symbol', - Hevc: 'alphabet character coding efficiency font high letters symbol text type video', - Hexagon: 'shape sides six', - HideImage: 'disabled enabled landscape mountains off on photography picture slash', - HideSource: 'circle disabled enabled offline on shape slash', + '? ask assistance center customer desk faq help hint information inside mark punctuation question recent restore rounded service square support symbol tooltip', + Hevc: 'alphabet blocky character codec coding compression efficiency font format h265 hevc high letters symbol text type video', + Hexagon: 'geometric hexagon honeycomb nut polygon shape sides six-sided', + HideImage: + 'blocked broken diagonal disabled enabled frame hide image landscape missing mountains no off photography picture preview slash through unavailable with', + HideSource: + 'allowed banned block circle diagonal disabled do enabled entry forbidden hide like not offline prohibition restricted shape sign slash source through with', Highlight: - 'color doc editing editor emphasize fill flashlight format marker paint spreadsheet style text type writing', - HighlightAlt: 'arrow box click cursor draw focus pointer selection target', + 'above beam color doc editing editor emphasize fill flashlight format funnel-shaped glow highlighter lamp marker paint radiating rays shine small spotlight spreadsheet style text tool torch type with writing', + HighlightAlt: + 'alt an area arrow bottom box click corner crop cursor dashed drag draw focus highlight into its marquee pointer pointing resize right screenshot selection snip square target with', HighlightOff: - 'cancel circle clear click close delete disable exit focus no quit remove stop target times', + 'cancel center circle clear click close cross delete deny disable error exit focus highlight invalid mark no off quit reject remove stop target the times with wrong', HighQuality: - 'alphabet character definition display font hq letters movies resolution screen symbol text tv type', + 'alphabet best character crisp definition display font high hq image inside letters movies off premium quality resolution rounded screen sharp slash square symbol text tv type', Hiking: - 'backpacking bag climbing duffle mountain social sports stick trail travel walking', + 'adventure and backpacking bag camping cane climbing duffle explorer hiking mountain nature outdoor person pole social sports stick trail travel trekking walking with', History: - 'arrow backwards clock date device home nest refresh renew reset restore reverse revert rotate schedule time turn undo', + 'activity around arrow backwards browser circling counterclockwise date device face history home log nest past recent record refresh renew reset restore reverse revert rewind rotate schedule timeline turn undo with', HistoryEdu: - 'document education feather letters paper pen quill school tools write writing', - HistoryToggleOff: 'clock dashed date schedule time', - Hive: 'bee honeycomb', - Hls: 'alphabet character developer engineering font letters platform symbol text type', + 'calligraphy class document education essay feather history homework letters manuscript of paper parchment pen quill school scroll signature tools with write writing', + HistoryToggleOff: + 'circular clock countdown dashed date edge elapsed face history instead loading off pending plain progress rim schedule stopwatch timer toggle waiting with', + Hive: 'apiary arranged beehive bees cells cluster connected hexagons honeycomb in mesh network nodes of pattern seven', + Hls: 'alphabet apple blocky character developer engineering font hls http letters live media platform protocol streaming symbol text type video', HlsOff: - '[offline] alphabet character developer disabled enabled engineering font letters platform slash symbol text type', - HMobiledata: 'alphabet character font letters network service symbol text type', + '[offline] alphabet and character codec developer diagonal disabled enabled engineering font hls http letters live no platform slash streaming symbol text them through type unavailable with', + HMobiledata: + '3 5g alphabet cell character connectivity font hspa large letters mobiledata network service signal symbol text type', HolidayVillage: - 'architecture beach camping cottage estate home house lake lodge maps place real residence residential stay traveling vacation', - Home: 'address application--house architecture building components design estate homepage interface layout place real residence residential screen shelter structure unit ux website window', - HomeMax: 'device gadget hardware internet iot nest smart things', - HomeMini: 'Internet device gadget hardware iot nest smart things', - HomeRepairService: 'equipment fix kit mechanic repairing toolbox tools workshop', + 'a-frame architecture beach beside bungalow cabins camping chalet cottages estate holiday home house lake lines lodge maps park place real residence residential resort roof rows slanted stay suggesting three traveling vacation village with', + Home: 'address application--house architecture building components cutout dashboard design doorway estate front homepage interface landing layout main place real rectangular residence residential roof screen shape shelter start structure triangular unit ux website window with', + HomeFilled: + 'building cutout dashboard doorway filled front homepage house landing main rectangular residence return roof screen shape start triangular with', + HomeMax: + 'assistant base bluetooth device gadget google hardware home internet iot max nest on rectangle rounded shape sitting small smart speaker things voice wifi', + HomeMini: + 'Internet above across assistant device from gadget google hardware home horizontal iot its line middle mini nest oval puck shape small smart speaker tabletop things viewed voice with', + HomeRepairService: + 'briefcase call contractor equipment fix front handle handyman home maintenance mechanic plumber repairing repairman rivets service small the toolbox toolkit tools top two with workshop', HomeWork: - 'architecture building estate house office place real residence residential shelter', - HorizontalRule: 'gmail line novitas', - HorizontalSplit: 'bars format layout lines stacked', - Hotel: 'bed body human people person sleep stay travel trip', + 'architecture building business commercial each estate from home house mixed next office other overlapping place real remote residence residential shelter taller telecommute to window with work', + HorizontalRule: + 'dash divider gmail horizontal hr line minus novitas rule separator short sign single spacer tag', + HorizontalSplit: + 'bars by divided format horizontal into layout lines panels rectangle rows screen split stacked table view', + Hotel: + 'accommodation and bed body booking check guest headboard hotel human inn left lodging motel people person pillow reservation right room round sleep stay the travel trip with', HotelClass: - 'achievement bookmark favorite highlight important marked ranking rate rating reward saved shape special star', + 'achievement beside bookmark class favorite five highlight hotel important its luxury marked point quality ranking rate rating review reward saved score shape smaller sparkle special star with', HotTub: - 'bathing bathroom bathtub hotel human jacuzzi person shower spa steam travel water', - HourglassBottom: 'countdown half loading minutes time waiting', + 'above amenity and bathing bathroom bathtub hotel human jacuzzi jet lines person relaxation resort rising sauna shower sitting spa steam travel vertical water wavy wellness whirlpool with', + HourglassBottom: + 'almost bottom countdown done egg half hourglass loading low minutes out running sand shape the timer waiting with', HourglassDisabled: - 'clock countdown empty enabled loading minutes off on slash time waiting', - HourglassEmpty: 'countdown full loading minutes start time waiting', - HourglassFull: 'countdown empty loading minutes time waiting', - HourglassTop: 'countdown half loading minutes time waiting', + 'clock countdown diagonal disabled empty enabled hourglass loading minutes no off paused shape slash through timer unavailable waiting with', + HourglassEmpty: + 'countdown egg empty full hourglass inside is left loading minutes no sand shape start timer up waiting with', + HourglassFull: + 'both countdown egg empty full halves hourglass icon indicator loading middle minutes pinched sand silhouette the timer waiting', + HourglassTop: + 'countdown egg full half hourglass icon loading minutes only sand shape starting the timer top waiting with', House: - 'architecture building estate family homepage places real residence residential shelter', + 'and arched architecture building doorway estate family front homepage house listing places property real residence residential roof shape shelter triangular with', Houseboat: - 'architecture beach estate floating home maps place real residence residential sea stay traveling vacation', + 'aboard above architecture beach canal estate floating home horizontal houseboat lines live maps marina place real representing residence residential sea sitting stay traveling vacation water wavy', HouseSiding: - 'architecture building construction estate exterior facade home real residential', + 'across architecture building clapboard construction estate exterior facade front garage home horizontal house its lines panels real residential shape siding wall weatherboard with', HowToReg: - 'approve ballot check complete done election mark ok poll register registration select tick to validate verified vote yes', - HowToVote: 'ballot election poll', + 'approve ballot beside bust checkmark complete confirm done election enroll how identity ok person poll register registration select sign tick to up validate verified voter with yes', + HowToVote: + 'ballot box cast diamond-shaped dropping election how into place polling slot submit vote voting', HPlusMobiledata: - '+ alphabet character font letters network service symbol text type', - Html: 'alphabet brackets character code css developer engineering font letters platform symbol text type', - Http: 'alphabet character font internet letters network symbol text transfer type url website', + '+ alphabet beside cell character enhanced font hspa letters mobiledata network plus service signal symbol text type', + Html: 'alphabet blocky brackets character code coding css developer development engineering font html hypertext language letters markup page platform symbol type web', + Http: 'address alphabet blocky character connection font http hypertext internet letters network protocol scheme symbol transfer type unsecured url website', Https: - 'connection encrypt internet key locked network password privacy private protection safety secure security ssl web', - Hub: 'center connection core focal network nodes nucleus point topology', - Hvac: 'air conditioning heating ventilation', - Icecream: 'dessert food snack', + 'badge closed connection encrypt https hypertext internet keyhole locked network padlock password privacy private protection protocol round safety secure security site ssl transfer trust web with', + Hub: 'around by center central circles connected connection core distribution five focal home hub it lines network nodes nucleus point router short smaller smart spokes topology wifi', + Hvac: 'air circle climate conditioning containing control cooling furnace heater heating horizontal hvac rounded square stripes system temperature thermostat ventilation vents with', + Icecream: + 'cone dessert food gelato icecream round scoop serve snack soft summer sundae sweet top treat with', IceSkating: - 'athlete athletic entertainment exercise hobby shoe skates social sports travel', + 'athlete athletic blade boot entertainment exercise figure hobby hockey ice rink shoe skates skating social sports travel underneath winter with', Image: - 'disabled enabled frame hide landscape mountains off on photography picture slash', - ImageAspectRatio: 'photography picture rectangle square', + 'containing disabled enabled frame gallery hide image jpg landscape mountains off peaks photography picture placeholder rounded slash square thumbnail triangular two', + ImageAspectRatio: + 'and aspect brackets cluster corner crop dimensions dots frame image inside of photography picture ratio rectangle resize scale small square with', ImageNotSupported: - 'disabled enabled landscape mountains off on photography picture slash', + 'broken diagonal disabled enabled format frame image landscape missing mountains not off peaks photography picture preview slash through unavailable unsupported with', ImageSearch: - 'find glass landscape look magnifying mountains photography picture see', - ImagesearchRoller: 'art paint', + 'corner find frame glass google image its landscape lens look magnifying mountains over peaks photography picture reverse search see visual with', + ImagesearchRoller: + 'art brush handle head imagesearch painting redecorate roller tool wall wide with', ImportantDevices: - 'Android cell computer desktop hardware iOS mobile monitor phone star tablet web', - ImportContacts: 'address book friends information magazine open', - ImportExport: 'arrows direction down explort up', - Inbox: 'archive category email incoming message', - IncompleteCircle: 'chart', + 'Android cell computer cross design desktop devices featured hardware iOS important its mobile monitor multi next responsive screen small smartphone star sync tablet web with', + ImportContacts: + 'address both contacts friends import information library magazine open pages phonebook reading sides spread textbook with', + ImportExport: + 'and arrows data direction downward each explort export from import offset other reorder sort stacked swap sync transfer upward', + Inbox: + 'archive bottom category curved cut edge email inbox incoming into its mailbox messages new notch rounded shape tray with', + IncompleteCircle: + 'chart circle incomplete indicator like loading missing pac-man partial pie progress slice wedge-shaped with', IndeterminateCheckBox: - 'application button components control design form interface minus screen selected selection square toggle ui undetermined ux website', - Info: 'about alert announcement announcment assistance bubble circle details help information service support', - Input: 'arrow box download login move right', + 'application button center checkbox components control dash design form horizontal indeterminate interface its line minus mixed partial rounded screen selected selection some square state subtract through toggle ui undetermined ux website with', + Info: 'about alert announcement announcment assistance bubble button circle containing details help icon information learn letter more service support the', + Input: + 'arrow box bracket data download enter entry field from import input insert into left login move pointing rectangular right sign text the with', InsertChart: - 'analytics barchart bars data diagram infographic measure metrics statistics tracking', + 'add analytics barchart bars containing dashboard data diagram different heights infographic insert measure metrics of rounded square statistics three tracking vertical', InsertChartOutlined: - 'analytics bars data diagram infographic measure metrics statistics tracking', - InsertComment: 'add bubble chat feedback message', - InsertDriveFile: 'bill document format invoice item sheet slide', + 'analytics bars chart data diagram infographic insert measure metrics outlined statistics tracking', + InsertComment: + 'add annotate bubble chat comment feedback horizontal insert inside leave lines message note of speech text with', + InsertDriveFile: + 'attach bill corner document down drive file folded format generic icon insert invoice item its page sheet slide top with', InsertEmoticon: - 'account emoji face happy human like people person profile sentiment smiley user', + 'account add and circular curved dot emoji emoticon eyes face happy human insert like mouth people person picker profile reaction sentiment smiley smiling two user with', InsertInvitation: - 'agenda calendar date event mark month range remember reminder today week', - InsertLink: 'add anchor attach clip file mail media', - InsertPageBreak: 'dashed document file paper', - InsertPhoto: 'image landscape mountains photography picture wallpaper', + 'add agenda and appointment calendar date event grid insert invitation its marked month range remember reminder rsvp save schedule shape small square tabs the today top two week with', + InsertLink: + 'add anchor attach chain clip connect each file hyperlink insert interlocked links mail media other oval two url with', + InsertPageBreak: + 'across and break corner dashed divider document file folded insert its line middle new page paper print section split with', + InsertPhoto: + 'add containing image insert landscape library mountains peaks photography picture placeholder rounded square triangular two upload wallpaper', Insights: - 'analytics artificial automatic automation bars chart custom data diagram genai infographic intelligence magic measure metrics smart sparkle stars statistics tracking', - Instagram: 'brand logo social', + 'above analytics and artificial automatic automation bars chart custom data diagram dots each forecast genai growth infographic insights intelligence line magic measure metrics performance point small smart sparkle stars statistics tracking trends with zigzag', + Instagram: + 'app brand camera center circle corner dot ig instagram logo media meta near photo rounded sharing small social square the top with', InstallDesktop: - 'Android chrome device display fix hardware iOS mac monitor place pwa screen web window', - InstallMobile: 'Android cell device hardware iOS phone pwa tablet', + 'Android add app arrow chrome computer desktop device display download downward fix hardware iOS install into mac monitor place pointing pwa save screen web window with', + InstallMobile: + 'Android add app arrows cell device direction download downward get hardware home iOS install into mobile pointing pwa screen shape smartphone system tablet the update with', IntegrationInstructions: - 'brackets clipboard code css developer document engineering html platform', - Interests: 'circle heart shapes social square triangle', + 'and api brackets chevron clipboard code css developer docs document engineering face guide html instructions integration its platform sdk setup snippet symbol the top with', + Interests: + 'and arranged by categories circle grid heart hobbies interests preferences shapes social square tags topics triangle two', InterpreterMode: - 'accounts committee dictation face family friends group hearing humans keyboard language microphone network noise people persons profiles recorder social sound speaker speaking symbol team users voice', + 'accounts busts committee dictation face family friends front group hearing humans interpreter keyboard language live microphone mode network noise overlapping people persons profiles recorder social sound speaker speaking speech symbol team them translate translation users voice with', Inventory: - 'archive box buy check clipboard document e-commerce file list organize packages product purchase shop stock store supply', - Inventory2: 'archive box file organize packages product stock storage supply', - InvertColors: 'droplet editing hue inverted liquid palette tone water', + 'archive box buy check clipboard crate document e-commerce file goods handle horizontal inventory lid line list middle near organize packages product purchase shop short stock storage store supply the top warehouse with', + Inventory2: + 'archive box crate file goods handle horizontal inventory lid line middle near organize packages product short squat stock storage supply the top warehouse with', + InvertColors: + 'and colors dark down droplet editing filled half hue inversion inverted liquid middle mode negative open other palette shaded side split swap toggle tone water', InvertColorsOff: - 'disabled droplet enabled hue inverted liquid offline opacity palette slash tone water', + 'colors dark diagonal disabled droplet enabled hue inversion inverted liquid mode negative no offline opacity palette slash swap through tone water with', IosShare: - 'arrows button direction export internet link send sharing social up website', - Iron: 'appliance clothes electric ironing machine object', - Iso: 'add editing effect image minus photography picture plus sensor shutter speed subtract', + 'an apple arrows bracket button data direction export file icon internet ios its link of open out rising send shape share sharing sheet social square top upload upward website with', + Iron: 'appliance back care clothes clothing cord curling electric flatiron from ironing its laundry machine object pressing removal steam up with wrinkle', + Iso: 'add camera corner diagonally editing effect exposure image international iso light minus one organization other photography picture plus rectangle sensitivity sensor setting shutter sign speed split standards subtract with', Javascript: - 'alphabet brackets character code css developer engineering font html letters platform symbol text type', - JoinFull: 'circle combine command left outer outter overlap right sql', - JoinInner: 'circle command matching overlap sql values', - JoinLeft: 'circle command matching overlap sql values', - JoinRight: 'circle command matching overlap sql values', + 'alphabet blocky brackets character code css developer ecmascript engineering font html javascript js language letters node platform programming scripting symbol text type web', + JoinFull: + 'both circles combine command database diagram forming fully join left outer outter overlapping right shaded shape sql two union venn', + JoinInner: + 'area circles command database diagram inner intersection join matching middle only overlapping records shaded sql the two values venn with', + JoinLeft: + 'circle command database diagram fully join left matching open outer overlapping right shaded sql values venn', + JoinRight: + 'circle command database diagram fully join left matching open outer overlapping right shaded sql values venn', Kayaking: - 'athlete athletic body canoe entertainment exercise hobby human lake paddle paddling people person rafting river row social sports summer travel water', - KebabDining: 'dinner food meal meat skewer', - Key: 'access blackout door entry password restricted secret unlock', - Keyboard: 'computer device hardware input keypad letters office text type', - KeyboardAlt: 'computer device hardware input keypad letters office text type', - KeyboardArrowDown: 'arrows chevron open', - KeyboardArrowLeft: 'arrows chevron', - KeyboardArrowRight: 'arrows chevron open start', - KeyboardArrowUp: 'arrows chevron collapse direction expandable less list submit', - KeyboardBackspace: 'arrow left', - KeyboardCapslock: 'arrow up', - KeyboardCommandKey: 'button command control key', - KeyboardControlKey: 'control key', - KeyboardDoubleArrowDown: 'arrows direction multiple navigation', - KeyboardDoubleArrowLeft: 'arrows direction multiple navigation', - KeyboardDoubleArrowRight: 'arrows direction multiple navigation', - KeyboardDoubleArrowUp: 'arrows direction multiple navigation', - KeyboardHide: 'arrow computer device down hardware input keypad text', - KeyboardOptionKey: 'alt key modifier', - KeyboardReturn: 'arrow back left', - KeyboardTab: 'arrow left next right', - KeyboardVoice: 'dictation hearing microphone noise recorder sound speaker', - KeyOff: '[offline] access disabled door enabled entry on password slash unlock', + 'athlete athletic boat body canoeing entertainment exercise hobby human kayaking lake lines over paddle paddling people person rafting river row sitting social sports summer travel wavy whitewater', + KebabDining: + 'barbecue dining dinner each food grilled kebab meal meat of pieces satay shish skewers souvlaki stacked threaded three two with', + Key: 'access along and blackout blade bow door entry icon its key license notched password restricted round secret security teeth unlock with', + Keyboard: + 'and computer device hardware input keyboard keypad keys letters office on qwerty rectangular rows screen small spacebar square text type typing wide with', + KeyboardAlt: + 'alt and bar computer device hardware input keyboard keypad keys letters office qwerty rectangular rounded rows small square text type typing virtual wide with', + KeyboardArrowDown: + 'arrows chevron collapse downward dropdown expand keyboard open pointing scroll', + KeyboardArrowLeft: + 'arrows back chevron keyboard left navigate pointing previous scroll', + KeyboardArrowRight: + 'arrows chevron continue forward keyboard navigate next open pointing right scroll start', + KeyboardArrowUp: + 'arrows back chevron collapse direction expandable keyboard less list pointing scroll submit top upward', + KeyboardBackspace: + 'arrow backspace delete erase go keyboard left pointing previous thick undo', + KeyboardCapslock: + 'above all arrow capslock chevron horizontal keyboard letters line pointing shift short toggle uppercase', + KeyboardCommandKey: + 'apple button cmd command control corners four keyboard looped macos made meta modifier of symbol', + KeyboardControlKey: + 'chevron control ctrl keyboard modifier pointing thin up windows', + KeyboardDoubleArrowDown: + 'all arrows chevrons direction double downward expand fast forward jump keyboard multiple navigation pointing skip stacked two', + KeyboardDoubleArrowLeft: + 'arrows backward chevrons direction double fast jump keyboard left multiple navigation pointing previous rewind skip stacked track two', + KeyboardDoubleArrowRight: + 'ahead arrows chevrons direction double fast forward jump keyboard multiple navigation next pointing right skip stacked track two', + KeyboardDoubleArrowUp: + 'all arrows chevrons direction double expand fast jump keyboard multiple navigation pointing scroll skip stacked top two upward', + KeyboardHide: + 'arrow beneath close collapse computer device dismiss downward hardware hide input keyboard keypad minimize pointing shape text triangle virtual with', + KeyboardOptionKey: + 'alt and bend diagonal keyboard like line mac modifier option right-angle segment symbol the with zigzag', + KeyboardReturn: + 'and arrow back bending break carriage down enter keyboard left like newline return submit symbol', + KeyboardTab: + 'arrow bar cycle field focus indent input into keyboard left next pointing right tab vertical', + KeyboardVoice: + 'dictate dictation hearing input keyboard microphone noise recorder search sound speaker speech stand talk text to type voice', + KeyOff: + '[offline] access denied diagonal disabled door enabled entry key locked no out password revoked shape slash through unlock with', KingBed: - 'bedroom double furniture home hotel house night pillows queen rest sleep', + 'arrangement bedroom by double furniture home hotel house king master night pillows queen rest shape side sleeping square two with', Kitchen: - 'appliance cabinet cold food freezer fridge home house ice places refrigerator storage', + 'appliance cabinet cold cooking cooling food freezer fridge handle home house ice kitchen line panel places refrigerator shape small square storage with', Kitesurfing: - 'athlete athletic beach body entertainment exercise hobby human people person social sports travel water', - Label: 'badge favorite indent item library mail remember save stamp sticker tag', + 'athlete athletic back beach body entertainment exercise extreme hobby holding human kiteboarding kitesurfing leaning line over people person riding social sports travel water waves while wind', + Label: + 'badge bookmark categorize category end favorite gmail indent item keyword label library pointed price rectangle remember right rounded save shape stamp sticker tag with', LabelImportant: - 'badge chevron favorite flag important. indent item library mail remember right save stamp sticker tag wing', + 'and badge bookmark both chevron ends favorite flag important. indent item label left library mail pennant pointed priority remember right save shape stamp sticker tag the urgent wing', LabelOff: - 'disabled enabled favorite indent library mail on remember save slash stamp sticker tag wing', - Lan: 'computer connection data internet network service', - Landscape: 'image mountains nature photography picture', - Landslide: 'crisis disaster natural rain storm weather', - Language: 'country earth globe i18n internet l10n planet website world www', + 'diagonal disabled enabled favorite indent library mail no off remember remove save shape slash stamp sticker through unlabeled untag wing with', + Lan: 'area chart computer connected connection data diagram downward ethernet hierarchy internet lan like local network one org server service smaller squares to wired', + Landscape: + 'horizontal image landscape mountains nature orientation overlapping panorama peaks photography picture rotate scenery screen triangular two view wide', + Landslide: + 'avalanche crisis disaster down erosion geological ground hazard hexagon hillside landslide layered lines mudslide natural rain rockslide sloped storm tumbling weather with', + Language: + 'and country earth globe grid i18n international internet l10n language latitude lines locale longitude multilingual of planet selector settings translate website with world www', Laptop: - 'Android chrome computer connect desktop device display hardware iOS link mac monitor smart tv web windows', + 'Android above base chrome computer connect desktop device display flat hardware iOS laptop link mac monitor notebook open portable screen smart tv web wide windows with work', LaptopChromebook: - 'Android chromebook device display hardware iOS mac monitor screen web window', + 'Android above base chromebook computer device display flat google hardware iOS laptop mac monitor notebook open os school screen thin web window with', LaptopMac: - 'Android apple chrome device display hardware iOS monitor screen web window', - LaptopWindows: 'Android chrome device display hardware iOS mac monitor screen web', + 'Android above and apple at base center chrome computer device display front hardware iOS its laptop macbook monitor notch notebook open rounded screen small web window with', + LaptopWindows: + 'Android above at base bottom chrome computer device display hardware iOS laptop mac microsoft monitor notebook open outward pc screen tapering the web windows with', LastPage: - 'application arrow chevron components end forward interface right screen ui ux website', + 'application arrow bar chevron components end final forward interface into jump last list navigate of page pointing right screen skip ui ux vertical website', Launch: - 'application arrow box components core interface internal link new open screen ui ux website window', - Layers: 'arrange disabled enabled interaction maps off overlay pages slash stack', + 'application arrow box bracket breaking components core corner diagonal external interface internal its launch link new of open out pop right screen shape square tab top ui ux website window with', + Layers: + 'and arrange diamond disabled enabled interaction layers maps off overlapping overlays pages panels shapes slash stacked two vertically', LayersClear: - 'arrange delete disabled enabled interaction maps off overlay pages slash', + 'arrange clear delete diagonal diamond disabled enabled flatten hide interaction layers maps no off overlapping overlay pages remove shapes slash stack through with', Leaderboard: - 'analytics bars chart data diagram infographic measure metrics statistics tracking', - LeakAdd: 'connection data link network service signals synce wireless', + 'analytics bars chart data diagram heights infographic leaderboard like measure metrics of performers ranking scoreboard standings statistics three top tracking varying vertical', + LeakAdd: + 'add arcs broadcast connection corner data from hotspot leak like link network outward point radiating radio service signals sound strength symbol synce waves wifi wireless', LeakRemove: - 'connection data disabled enabled link network offline service signals slash synce wireless', + 'arcs connection corner data diagonal disabled disconnect enabled from leak link lost network no offline point radiating remove service signals slash sound synce them through wifi wireless with', LegendToggle: - 'analytics chart data diagram infographic measure metrics monitoring stackdriver statistics tracking', - Lens: 'angle circle eye fish full geometry image moon panorama photography picture wide', - LensBlur: 'camera dim dot effect foggy fuzzy image photo soften', + 'above analytics bars chart data diagram horizontal infographic key legend line measure metrics monitoring show sitting stackdriver statistics toggle tracking two zigzag', + Lens: 'angle aperture camera circle dot eye fish full geometry image lens markings moon orb panorama photography picture plain shape sphere wide with', + LensBlur: + 'and are blur bokeh camera center defocus denser depth dim dots dotted effect field foggy fuzzy gaussian gradient grid image larger lens photo soften that the toward', LibraryAdd: - '+ collection layers multiple music new plus save stacked symbol video', + '+ add bookmark collection folder front layers library multiple music new of one pages playlist plus save sign square stacked symbol the to two video with', LibraryAddCheck: - 'approve collection complete done layers mark multiple music ok select stacked tick validate verified video yes', - LibraryBooks: 'add album audio collection reading', - LibraryMusic: 'add album audio collection song sounds', - Light: 'bulb ceiling hanging inside interior lamp lighting pendent room', + 'added approve checked checkmark collection complete confirm done front in layers library multiple music off ok pages saved select square stacked the tick to two validate verified video with yes', + LibraryBooks: + 'add album articles audio bookshelf catalog collection document front horizontal library lines list of one pages reading square stack text the two with', + LibraryMusic: + 'add album audio collection front library musical note of one pages playlist song sounds square stack the two with', + Light: + 'bulb ceiling chandelier dome-shaped fixture hanging inside interior knob lamp lighting pendant pendent room shade small underneath with', Lightbulb: - 'alert announcement idea incandescent information learning led mode tip', - LightbulbCircle: 'alert announcement idea incandescent information led tip', - LightMode: 'brightness day device lighting morning mornng sky sunny', + 'alert announcement base bottom bright eureka idea incandescent information innovation insight learning led lightbulb mode rounded the tip top with', + LightbulbCircle: + 'alert announcement circle containing hint idea incandescent information innovation led lightbulb silhouette suggestion tip', + LightMode: + 'around brightness central circle daylight device icon lighting mode morning mornng radiating rays shape short sky sunny theme up with', LinearScale: - 'application components design interface layout measure menu screen slider ui ux website window', - LineAxis: 'dash horizontal stroke vertical', - LineStyle: 'dash dotted editor rule spacing', - LineWeight: 'editor height size spacing style thickness', - Link: 'anchor chain clip connection external hyperlink linked links multimedia unlisted url', - LinkedCamera: 'connection lens network photography picture signals sync wireless', - LinkedIn: 'brand logo social', + 'along application components design dots horizontal interface layout linear measurement menu number plotted progress range scale screen slider three ui ux website window with', + LineAxis: + 'axis crossing dash data diagonal graph horizontal jagged line over signal straight stroke trend vertical waveform zigzag', + LineStyle: + 'and bar border continuous dashed dotted editor lines pattern rows ruler spacing stacked stroke style with', + LineWeight: + 'bars bold border different each editor four height horizontal line pen size spacing stacked stroke style thickness weight width', + Link: 'anchor attach chain clip connection each external hyperlink interlocked linked links multimedia other oval two unlisted url with', + LinkedCamera: + 'arcs body camera connected connection corner from its lens linked network photography picture radiating right signals smart sync top wifi wireless with', + LinkedIn: + 'brand career dot jobs letters linkedin logo networking professional resume rounded site social square the with', LinkOff: - 'anchor attached chain clip connection disabled enabled linked links multimedia slash unlink url', - Liquor: 'alcohol bar bottle club cocktail drink food party store wine', - List: 'editor file format index menu options playlist task todo', - ListAlt: 'box contained editor format lines reorder sheet stacked task title todo', + 'anchor attached broken chain clip connection detach diagonal disabled disconnect enabled hyperlink interlocked linked links multimedia off remove slash them through two unlink url with', + Liquor: + 'alcohol bar beside booze bottle club cocktail drink food glass hard liquor party spirits standing store wine', + List: 'agenda bullet by checklist dot each editor file format horizontal index itemized lines menu options playlist preceded task three todo', + ListAlt: + 'alt boxed bullet contained containing detailed editor format framed itemized lines list of reorder rows sheet short square stacked summary task title todo', LiveHelp: - '? alert announcement assistance bubble chat comment communicate faq information mark message punctuation question recent restore speech support symbol', + '? alert announcement ask assistance bubble chat comment communicate customer faq help information inside live mark message punctuation question recent restore speech support symbol with', LiveTv: - 'Android antennas chrome desktop device hardware iOS mac monitor movie play stream television web window', + 'Android and antennas broadcast channel chrome desktop device hardware iOS inside live mac monitor movie play screen streaming television triangle tv two watch web window with', Living: - 'chair comfort couch decoration furniture home house lounging loveseat room seating sofa', - LocalActivity: 'event star things ticket', - LocalAirport: 'airplane flight flying transportation travel trip', + 'chair comfort containing couch decoration family furniture home house living lounge lounging loveseat room rounded seating silhouette sitting sofa square', + LocalActivity: + 'activity admission and attraction center do entertainment event local notched shape sides star the things ticket to with', + LocalAirport: + 'airplane airport flight flying local silhouette terminal transportation travel trip', LocalAtm: - 'bill card cart cash coin commerce credit currency dollars financial money online payment price profit shopping symbol', - LocalBar: 'alcohol bottle club cocktail drink food liquor martini wine', - LocalCafe: 'bottle coffee cup drink food mug restaurant tea', - LocalCarWash: 'automobile cars maps transportation travel vehicle', + 'atm bank bill card cart cash coin commerce credit currency dollars financial kiosk local machine money online or payment price profit rectangle shape shopping sign symbol withdraw', + LocalBar: + 'alcohol bar bottle cocktail drink food glass happy hour liquor local martini mixed nightclub pub shape wine', + LocalCafe: + 'above bottle cafe coffee cup drink espresso food handle hot latte line local mug restaurant saucer shop sitting small tea with', + LocalCarWash: + 'above automobile bay cars cleaning detailing drops falling front local maps of station three transportation travel vehicle view wash water with', LocalConvenienceStore: - '-- 24 bill building business card cash coin commerce company credit currency dollars maps market money new online payment plus shopping storefront symbol', - LocalDining: 'cutlery eat food fork knife meal restaurant spoon', - LocalDrink: 'cup droplet glass liquid park water', - LocalFireDepartment: '911 climate firefighter flame heat home hot nest thermostat', - LocalFlorist: 'flower shop', - LocalGasStation: 'auto car filling fuel gasoline oil station vehicle', - LocalGroceryStore: 'market shop', - LocalHospital: '911 aid cross doctor emergency first health medical medicine plus', - LocalHotel: 'bed body human people person sleep stay travel trip', - LocalLaundryService: 'cleaning clothing dryer hotel washer', - LocalLibrary: 'book community learning person read', + '-- 24 bill bodega building business card cash coin commerce company convenience corner credit currency dollars hour local maps market mart mini money new number online payment plus shopping storefront symbol the with', + LocalDining: + 'and crossed cutlery dining dinner eat fine food fork knife listing local meal out restaurant spoon utensils', + LocalDrink: + 'beverage cup drink droplet glass inside liquid local of park refreshment shape tap water with', + LocalFireDepartment: + '911 brigade climate department drop emergency firefighter firefighting flame heat home hot inside local nest services shape station thermostat truck water with', + LocalFlorist: + 'and below blossom bouquet florist flower leaves local petals round shop store two with', + LocalGasStation: + 'and auto car filling gasoline hose local nozzle oil petrol pump refuel station vehicle with', + LocalGroceryStore: 'cart food grocery local shopping store supermarket trolley', + LocalHospital: + '911 aid center clinic cross doctor emergency first healthcare hospital local medical medicine plus room rounded square the with', + LocalHotel: + 'accommodation and bed body guest head hotel human inn local lodging overnight people person pillow resting round sleeping stay travel trip with', + LocalLaundryService: + 'and buttons circular cleaning clothing diagonal dryer front hotel laundromat laundry local machine room service swirl two washer washing window with', + LocalLibrary: + 'above bookmobile books borrow bust community its learning library local open pages person public reading rising room study with', LocalMall: - 'bill building business buy card cart cash coin commerce credit currency dollars handbag money online payment shopping storefront', - LocalOffer: 'deal discount price shopping store tag', + 'at bill building business buy card cart cash center coin commerce credit currency department dollars forming handbag handles local mall money online payment retail ring shopping storefront the top with', + LocalMovies: + 'cinema edges filmstrip local movies perforated reel showtimes theater with', + LocalOffer: + 'circular coupon deal discount hole its local near offer price promotion sale shape shopping small special store tag top with', LocalParking: - 'alphabet auto car character font garage letters symbol text type vehicle', - LocalPharmacy: '911 aid cross emergency first food hospital medicine places', - LocalPhone: 'booth call telecommunication', - LocalPizza: 'drink fastfood meal', - LocalPolice: '911 badge law officer protection security shield', + 'alphabet area auto car character font garage letters local lot parking sign symbol text type vehicle', + LocalPharmacy: + '911 aid and apothecary chemist cross drug emergency first food hospital local marked medication medicine mortar pestle pharmacy places prescription store with', + LocalPhone: + 'booth call dial handset landline local number shape telecommunication telephone', + LocalPizza: + 'dots drink fastfood italian local meal pepperoni pizza pizzeria round slice takeout triangular two with', + LocalPlay: + 'admission and center cinema entertainment event local movie notched pass play shape show sides star the ticket with', + LocalPolice: + '911 badge center cop enforcement in law local officer police protection security shape sheriff shield star station the with', LocalPostOffice: - 'delivery email envelop letters message package parcel postal send stamp', - LocalPrintshop: 'draft fax ink machine office paper printer send', - LocalSee: 'camera lens photography picture', + 'delivery email envelope letters local mailing message office package parcel postal send shape stamp', + LocalPrintshop: + 'and document draft fax ink local machine office output paper photocopy printer printing printshop send service slot tray with', + LocalSee: + 'attraction body camera center interest landmark lens local of photography picture point round sightseeing spot the tourist with', LocalShipping: - 'automobile cars delivery letters mail maps office package parcel postal semi send shopping stamp transportation truck vehicle', + 'and automobile box cab cargo cars courier delivery freight letters local logistics mail maps office package parcel postal semi send shipping shopping stamp transportation truck vehicle with', LocalTaxi: - 'automobile cab call cars direction lyft maps public transportation uber vehicle yellow', + 'automobile cab call cars direction front hailing light local lyft maps public ride roof service stand taxi transportation uber vehicle view with yellow', LocationCity: - 'apartments architecture buildings business company estate home landscape place real residence residential shelter town urban', + 'apartments architecture area buildings business cityscape company downtown estate grid home landscape location metropolis of place real residence residential shelter skyline small stepped urban windows with', LocationDisabled: - 'destination direction enabled maps off pin place pointer slash stop tracking', + 'circle crosshair destination diagonal direction disabled enabled gps location maps no off pin place pointer sharing slash stop target through tracking with', LocationOff: - 'destination direction disabled enabled gps maps pin place room slash stop', + 'destination diagonal direction disabled enabled gps location maps no off pin place room shape sharing slash stop teardrop through turn unavailable with', LocationOn: - 'destination direction disabled enabled gps maps off pin place room slash stop', - LocationSearching: 'destination direction maps pin place pointer stop tracking', - Lock: 'connection key locked logout padlock password privacy private protection safety secure security signout', + 'address current destination direction disabled enabled gps hole its location maps marker near off pin place room round shape slash stop teardrop with', + LocationPin: + 'address destination hole its location map marker near pin place round shape slender teardrop top waypoint with', + LocationSearching: + 'acquiring around circle crosshair destination direction finding gps locating location lock maps pin place pointer searching shape short signal stop target ticks tracking with', + Lock: 'access closed connection encrypted keyhole locked logout padlock password privacy private protection restricted round safety secured security signout with', LockClock: - 'date locked password privacy private protection safety schedule secure security time', + 'auto beside clock closed date expiry face locked padlock password privacy private protection safety scheduled secure security small temporary timed', LockOpen: - 'connection key login padlock password privacy private protection register safety secure security signin signup unlocked', + 'accessible connection granted its key login open padlock password privacy private protection register safety security shackle signin signup unlocked unsecured with', + LockPerson: + 'access account and attached badge bust identity its open padlock personal profile protection security shackle user with', LockReset: - 'around inprogress loading locked password privacy private protection refresh renew rotate safety secure security turn', + 'around arrow change circular counterclockwise forgot inprogress loading locked padlock password privacy private protection recovery refresh renewal reset rotate safety secure security turn with', Login: - 'access application arrow components design enter interface left screen ui ux website', - LogoDev: 'dev.to', + 'access account an application arrow authenticate bracket components design door enter interface into left login open pointing right screen ui ux website', + LogoDev: + 'brand coding community dev.to developer letters logo platform rounded software square the with', Logout: - 'application arrow components design exit interface leave login right screen ui ux website', - Looks: 'circle half rainbow', - Looks3: 'digit numbers square symbol', - Looks4: 'digit numbers square symbol', - Looks5: 'digit numbers square symbol', - Looks6: 'digit numbers square symbol', - LooksOne: '1 digit numbers square symbol', - LooksTwo: '2 digit numbers square symbol', - Loop: 'around arrows direction inprogress loader loading music navigation refresh renew repeat rotate turn', - Loupe: '+ add details focus glass magnifying new plus symbol', - LowPriority: 'arrange arrow backward bottom list move order task todo', + 'account an application arrow bracket components design door end exit interface leave login logout off open pointing right screen session ui ux website', + Looks: + 'arcs camera circle color curved effect filter half like looks photo rainbow stacked two', + Looks3: '3rd digit inside looks numbers rounded square step symbol third three', + Looks4: '4th digit fourth inside looks numbers rounded square step symbol', + Looks5: '5th digit fifth five inside looks numbers rounded square step symbol', + Looks6: '6th digit inside looks numbers rounded sixth square step symbol', + LooksOne: '1st digit first inside looks numbers one rounded square step symbol', + LooksTwo: '2nd digit inside looks numbers rounded second square step symbol two', + Loop: 'around arrows circular curved cycle direction forming infinite inprogress loader loading loop music navigation playback refresh renew repeat replay rotate sync turn two', + Loupe: + '+ add and circle close corner cut details flat focus glass inside inspect jeweler like loupe magnifier magnifying new plus sign symbol view with zoom', + LowPriority: + 'arrange arrow backlog backward beside bottom curved defer deprioritize down horizontal lines list low move order pointing priority snooze stacked task three todo', Loyalty: - 'badge benefits card credit heart love membership miles points program sale subscription tag travel trip', + 'badge benefits card credit cut favorite flyer frequent heart love loyalty membership miles of out points price program rewards sale shape subscription tag travel trip with', LteMobiledata: - 'alphabet character font internet letters network speed symbol text type wifi wireless', + '4g alphabet blocky cellular character evolution font internet letters long lte mobiledata network speed symbol term text type wifi wireless', LtePlusMobiledata: - '+ alphabet character font internet letters network speed symbol text type wifi wireless', - Luggage: 'airport baggage carry flight hotel on suitcase travel trip', - LunchDining: 'breakfast dinner drink fastfood hamburger meal', + '+ 4g alphabet blocky by cellular character enhanced evolution faster followed font internet letters long lte mobiledata network plus sign speed symbol term text type wifi wireless', + Luggage: + 'airport at baggage bottom carry-on claim flight front handle hotel luggage packing stripes suitcase the top travel vertical wheels with', + LunchDining: + 'bottom breakfast bun dining dinner domed drink fastfood fillings hamburger lunch meal midday sandwich shape top wavy with', Lyrics: - 'audio bubble chat comment communicate feedback key message music note song sound speech track', - MacroOff: '[offline] camera disabled enabled flower garden image on slash', - Mail: 'email envelope inbox letters message send', + 'along and audio beside bubble captions chat closed comment communicate document feedback karaoke key lines lyrics message musical notes sing song sound speech text track with', + MacroOff: + '[offline] camera close-up diagonal disabled enabled flower garden image macro mode no photography shape slash through with', + Mail: 'compose correspondence email envelope inbox letters message send shape', MailLock: - 'email envelop letters locked message password privacy private protection safety secure security send', - Male: 'boy gender man social symbol', - Man: 'boy gender male social symbol', - Man2: 'boy gender male social symbol', - Man3: 'abstract boy gender male social symbol', - Man4: 'abstract boy gender male social symbol', + 'bottom confidential corner email encrypted envelope its letters locked message padlock password privacy private protected protection right safety secure security send shape small with', + Male: 'arrow boy circle diagonally from gender icon its male man mars outward pointing right sign social symbol the top with', + Man: 'and as boy figure gender head legs limbs male man pedestrian person restroom round separate shown sign social stick symbol two with', + Man2: 'and body boy figure gender head icon male man narrow person rectangular restroom round sign silhouette social symbol with', + Man3: 'abstract avatar boy diamond-shaped figure gender geometric head instead male man of one person robot round social symbol with', + Man4: 'abstract and between body boy figure gap gender head icon legs male man no outline person rounded silhouette social solid symbol the with', ManageAccounts: - 'change details face gear options people person profile service-human settings user', + 'accounts admin badge change details edit face gear management members next options people permissions person profile resources service-human settings shoulder staff team the to user with', ManageHistory: - 'application arrow backwards change clock date details gear options refresh renew reverse rotate schedule settings time turn', - ManageSearch: 'glass history magnifying text', - Map: 'destination direction location maps pin place route stop travel', - MapsHomeWork: 'building house office', + 'activity application arrow audit backwards badge bottom change circular clock details face forming gear history log manage options refresh renew restore reverse rotate schedule settings sync the time turn undo update version with', + ManageSearch: + 'browse filter find glass history horizontal lines list look magnifying manage over query records search settings several text up', + Map: 'atlas cartography destination direction folded gps lighter location maps navigation one panel pin place road route section shaded stop tourist travel wayfinding with', + MapsHomeWork: + 'address and behind building business commute estate from home house maps office partly real residence with workplace', MapsUgc: - '+ add bubble comment communicate feedback message new plus speech symbol', - Margin: 'design dots layout padding size square', - MarkAsUnread: 'envelop letters mail postal receive send', + '+ add bubble center comment communicate content create feedback generated in maps message new plus post review sign speech symbol testimonial the ugc user with write', + Margin: + 'border box css design dots grid indentation inside layout margin model of padding page setup size small spacing square whitespace with', + MarkAsUnread: + 'as correspondence diagonally emails envelopes inbox letters mark messages multiple new of overlapping postal receive send stacked two unread', MarkChatRead: - 'approve bubble check comment communicate complete done message ok select sent speech tick verified yes', + 'acknowledge approve bubble chat checkmark circle comment communicate complete confirmed conversation corner done in message ok read receipt seen select sent speech the tick verified with yes', MarkChatUnread: - 'alarm alert bubble circle comment communicate dot message notifications notify reminder speech', + 'alarm alert badge bubble chat circle comment communicate corner dot mark message new notifications notify ping reminder speech the unread unseen with', MarkEmailRead: - 'approve check complete done envelop letters message note ok select send sent tick yes', - MarkEmailUnread: 'check circle envelop letters message note notification send', - Markunread: 'email envelope letters message send', + 'approve checkmark circle complete confirmed done edge email envelope inbox its letters message note ok opened overlapping read receipt seen select send sent tick verified with yes zero', + MarkEmailUnread: + 'alert badge check circle corner dot email envelope inbox letters mark message new note notification send the unopened unread with', + Markunread: + 'closed correspondence email envelope inbox letters markunread message new send snail write', MarkUnreadChatAlt: - 'alarm alert bubble circle comment communicate dot message notifications notify reminder speech', - MarkunreadMailbox: 'deliver envelop letters postal postbox receive send', + 'alarm alert alt and badge bubble chat circle comment communicate conversation corner dot horizontal lines mark message notifications notify preview reminder sms speech text the unread with', + MarkunreadMailbox: + 'curbside delivered envelop flag got its letterbox letters mailbox markunread postal postbox raised receive rural send service with you', Masks: - 'air cover covid face hospital medical pollution protection respirator sick social', + 'air around coronavirus covering covid face health hospital looping masks medical n95 pollution ppe protection protective quarantine respirator safety sick sides social straps surgical the with', Maximize: - 'application components design interface line screen shape ui ux website', + 'application bar components control dash design enlarge expand full horizontal interface line maximize resize screen shape single thick ui underscore ux website window', MediaBluetoothOff: - 'connection connectivity device disabled enabled music note offline paring signal slash symbol wireless', + 'and audio bluetooth connection connectivity device diagonal disabled disconnect enabled media musical mute nearby note offline paring signal slash small speaker streaming symbol turn unpaired wireless with', MediaBluetoothOn: - 'connection connectivity device disabled enabled music note off online paring signal slash symbol wireless', + 'audio bluetooth connected connection connectivity device disabled enabled headphones media musical next note off online paired paring signal slash speaker streaming symbol wireless', Mediation: - 'alternative arrows compromise direction dots negotiation party right structure', - MedicalInformation: 'badge card health identification services', - MedicalServices: 'aid bag briefcase emergency first kit medicine', - Medication: 'doctor drug emergency hospital medicine pharmacy pills prescription', + 'alternative arrows branching compromise converge decision direction dots flowchart funnel into left mediation merge merging negotiation nodes party paths pipe pointing process resolution right round structure the three tree with workflow', + MedicalInformation: + 'aid and badge briefcase card emergency first front health history horizontal identification information its kit line medical patient plus records services sign with', + MedicalServices: + 'aid bag briefcase clinic cross doctor emergency first front healthcare hospital its kit medical medicine red responder services with', + Medication: + 'aid and bottle cabinet cross doctor drug emergency first front hospital its jar lid medical medication medicine ointment pharmacy pills prescription supplies top treatment with', MedicationLiquid: - '+ bottle doctor drug health hospital medications medicine pharmacy spoon vessel', + '+ aid and beside bottle cough cross doctor dosage drug elixir first front health hospital its jar liquid medications medicine pharmacy syrup tablespoon vessel with', MeetingRoom: - 'building doorway entrance home house interior logout office open places signout', - Memory: 'card chip digital micro processor sd storage', - Menu: 'application components hamburger interface lines playlist screen ui ux website', - MenuBook: 'dining food meal page restaurant', + 'availability beside boardroom booking building conference doorknob doorway entrance exit frame home house huddle interior logout meeting office open places signout with', + Memory: + 'and card center chip circuit computer computing cpu digital each hardware integrated memory micro motherboard on pins processor ram sd side small specs square storage tech with', + Menu: 'application bars components drawer hamburger horizontal interface lines main menu navigation options playlist screen sidebar stacked three toggle ui ux view website', + MenuBook: + 'card catalog cookbook culinary dining food library lines meal menu of on open page reading recipe restaurant right text the wavy with', MenuOpen: - 'application arrow chevron components hamburger interface left lines screen ui ux website', - Merge: 'arrows directions maps navigation path route sign traffic', - MergeType: 'arrow combine direction format text', - Message: 'bubble chat comment communicate feedback speech talk text', - Mic: 'dictation hearing keyboard microphone noise recorder search sound speaker speech voice', - MicExternalOff: 'audio disabled enabled microphone slash sound voice', - MicExternalOn: 'audio disabled enabled microphone off slash sound voice', + 'application arrow back bars chevron close collapse components drawer expand hamburger horizontal interface left lines menu navigation open overlapping pointing previous screen sidebar them three toggle ui ux website with', + Merge: + 'arrows atop combine converge directions downward git highway inverted join lane legs like maps merge navigation paths pointing road route sign splay straight symmetrically that traffic two up', + MergeType: + 'arrow branch combine control diagonal diff direction files format from git joining lower merge pointing pull request right short stroke text the type up-left version with', + Message: + 'bubble chat comment communicate conversation direct dm feedback horizontal inbox inside lines message notification sms speech talk texting with', + Mic: 'air audio dictation hearing input karaoke keyboard microphone noise podcast recorder search singing sound speaker speech stand talk unmute voice', + MicExternalOff: + 'and audio cable diagonal disabled disconnected enabled external looping microphone mute off slash sound studio through unplugged voice wired with xlr', + MicExternalOn: + 'audio below cable disabled enabled extending external microphone off plugged podcast slash sound studio unmuted voice winding wired with xlr', MicNone: - 'dictation hearing keyboard microphone noise recorder sound speaker voice', + 'audio button dictation hearing idle input keyboard microphone noise none recorder shape sound speaker standby talk voice', MicOff: - 'audio disabled enabled hearing microphone mute noise recording slash sound voice', - Microwave: 'appliance cooking electric heat home house kitchen machine', + 'audio call diagonal disabled disturb do enabled hearing microphone muted noise not off quiet recording silence slash sound stand through turn voice with', + Microsoft: + 'arranged brand by company four grid logo microsoft ms office small software squares tech tiles two windows', + Microwave: + 'and appliance buttons cooking defrost door electric food home house kitchen lines machine microwave nuke oven popcorn radiation reheat side the waves wavy with', MilitaryTech: - 'army award badge honor medal merit order privilege prize rank reward ribbon soldier star status trophy winner', + 'achievement army award badge bottom certificate decoration distinction from gamification hanging honor medal merit military order privilege prize rank recognition reward ribbon soldier star status tech the trophy veteran winner with', Minimize: - 'application components design interface line screen shape ui ux website', + 'application collapse components control dash design hide horizontal interface line minimize screen shape shrink single taskbar thick ui underscore ux website window', MinorCrash: - 'accident automobile cars collision directions maps public transportation vehicle', + 'above accident automobile bender bump cars claim collision crash directions fender impact incident insurance jagged maps marks minor public traffic transportation vehicle with', + MiscellaneousServices: + 'cogs configuration different gears maintenance mechanic miscellaneous of overlapping repair services settings sizes tools two', MissedVideoCall: - 'arrow camera filming hardware image motion picture record videography', - Mms: 'bubble chat comment communicate feedback image landscape message mountains multimedia photography picture speech', + 'and arrow call camera chat checkmark declined facetime filming hardware history image left log missed motion notification picture pointing record shape the upper videography with', + Mms: 'attachment bubble chat comment communicate containing feedback image landscape message messaging mms mountains multimedia photography picture send speech text', MobiledataOff: - 'arrow disabled down enabled internet network on slash speed up wifi wireless', + '4g 5g and arrows bars between cellular diagonal disabled down enabled internet mobiledata network no off saver slash speed them through turn up vertical wifi wireless with', MobileFriendly: - 'Android approve cell check complete device done hardware iOS mark ok phone select tablet tick validate verified yes', + 'Android approve beside cell checkmark compatible complete cross design device done friendly good hardware iOS mobile ok optimized phone platform ready responsive security select shape tablet tested tick update validate verified with yes', MobileOff: - 'Android cell device disabled enabled hardware iOS phone silence slash tablet', + 'Android airplane cell device diagonal disabled disturb do enabled flight hardware iOS mobile mode not off phone powered signal silence slash switched tablet through with', MobileScreenShare: - 'Android arrow cell device hardware iOS mirror monitor phone screencast streaming tablet tv wireless', - Mode: 'compose create draft draw edit pencil write', - ModeComment: 'bubble chat comment communicate feedback message mode speech', - ModeEdit: 'compose create draft draw pencil write', - ModeFanOff: 'air conditioner cool disabled enabled nest slash', + 'Android airplay and arrow broadcast cell curving device display export hardware iOS its mirroring mobile monitor phone present right screencast share streaming tablet the tv up wireless with', + Mode: 'annotate compose create diagonally draft drawn edit mode modify pencil rename revise style update write', + ModeComment: + 'add annotation bottom bubble callout chat comment communicate discussion feedback left message mode note pointed reply speech tail the with', + ModeEdit: + 'annotate compose create customize diagonally draft drawn edit mode modify pencil pointed rename revise text tip update with write', + ModeFanOff: + 'air ceiling climate conditioner control cooling diagonal disabled enabled fan hvac mode nest off shape slash thermostat three-bladed through turn ventilation with', ModelTraining: - 'arrow bulb idea inprogress light loading refresh renew restore reverse rotate', - ModeNight: 'dark disturb lunar moon sleep weather', + 'algorithm around arrow bulb curved idea inprogress iteration learning light loading looping machine model network neural refresh renew restore retrain reverse rotate training with', + ModeNight: + 'bedtime crescent dark disturb do evening lunar mode moon nighttime not sleep weather', ModeOfTravel: - 'arrow destination direction location maps pin place stop transportation trip', - ModeStandby: 'disturb power sleep target', + 'and around arrow curved destination directions dot gps itinerary journey location maps mode navigation of place route small stop teardrop transit transportation travel trip waypoint with wrapping', + ModeStandby: + 'bullseye button center circle disturb dot idle low mode power record saving screensaver sleep smaller standby target the with', MonetizationOn: - 'bill card cash circle coin commerce cost credit currency dollars finance money online payment price profit sale shopping symbol', + 'ad bill card cash circle coin commerce cost credit currency dollars earnings finance flow income inside monetization monetize money online payment price profit revenue sale shopping sign symbol', Money: - '100 bill card cash coin commerce cost credit currency digit dollars finance numbers online payment price profit shopping symbol', + '100 banknote bill card cash coin commerce cost credit currency digit dollars finance hundred money numbers online paper payment price profit rectangular salary shape shopping symbol the wealth with', MoneyOff: - 'bill card cart cash coin commerce credit currency disabled dollars enabled finance money online payment price profit shopping slash symbol', + 'bill broke card cart cash charge coin commerce cost credit currency diagonal disabled discount dollars enabled finance free money no off online payment price profit refund shopping sign slash symbol through unpaid with', MoneyOffCsred: - 'bill card cart cash coin commerce credit currency disabled dollars enabled online payment shopping slash symbol', - Monitor: 'Android chrome device display hardware iOS mac screen web window', - MonitorHeart: 'baseline device ecc ecg fitness health medical track', - MonitorWeight: 'body device diet health scale smart', - MonochromePhotos: 'black camera image photography picture white', - Mood: 'emoji emoticon emotions expressions face feelings glad happiness happy like person pleased smiley smiling social survey', + 'bill card cart cash charge coin commerce cost credit csred currency diagonal disabled discount dollars drop enabled free money no off online payment price refund shopping sign slash symbol through unpaid with', + Monitor: + 'Android chrome computer desktop device display external hardware iOS mac monitor pc screen stand tv web window workstation', + MonitorHeart: + 'across baseline cardiac device ecc ecg ekg fitness health heartbeat hospital medical monitor pulse rate rectangular screen signs track vital with', + MonitorWeight: + 'bathroom bmi body circle device diet digital dots fitness health inside monitor rounded scale smart square three tracker tracking weighing weight with', + MonochromePhotos: + 'and black bw camera circular contrast filter grayscale half-shaded image lens mode monochrome photography photos picture white with', + Mood: 'cheerful circle content emoji emoticon emotions expressions face feedback feelings glad good happiness happy inside like mood person pleased positive rating satisfaction smiley smiling social survey', MoodBad: - 'disappointment dislike emoji emoticon emotions expressions face feelings person rating smiley social survey unhappiness unhappy unpleased unsmile unsmiling', + 'bad circle disappointment dislike dissatisfied emoji emoticon emotions experience expressions face feedback feelings frowning inside mood negative person poor rating sad smiley social survey unhappiness unhappy unpleased unsmile unsmiling upset', Moped: - 'automobile bike cars direction maps motorized public scooter transportation vehicle vespa', - More: '3 archive badge bookmark dots etc favorite indent label remember save stamp sticker tab tag three', + 'automobile back box cars courier delivery direction food maps moped motorbike motorcycle motorized public scooter storage the transportation two vehicle vespa wheeler with', + More: '3 additional archive arrow-shaped badge bookmark dots etc expand extra favorite indent inside label menu more options overflow remember save see stamp sticker tab tag three with', MoreHoriz: - '3 DISABLE_IOS application components disable_ios dots etc horizontal interface pending screen status three ui ux website', - MoreTime: '+ add clock date new plus schedule symbol', + '3 DISABLE_IOS application components context disable_ios dots ellipsis etc horizontal interface meatballs menu more options overflow pending row screen show status three ui ux website', + MoreTime: + '+ add clock date deadline extend extension extra face more new overtime plus right schedule sign snooze symbol the top with', MoreVert: - '3 DISABLE_IOS android application components disable_ios dots etc interface screen three ui ux vertical website', - Mosque: 'ideology islamic masjid muslim religion spiritual worship', + '3 DISABLE_IOS android application column components context disable_ios dots etc interface kebab menu more options overflow screen settings single stacked three ui ux vertically website', + Mosque: + 'and building dome flanking ideology interest islamic masjid minarets mosque muslim of place prayer ramadan religion spiritual two with worship', MotionPhotosAuto: - 'A alphabet animation automatic character circle font gif letters live symbol text type video', - MotionPhotosOff: 'animation circle disabled enabled slash video', - Mouse: 'click computer cursor device hardware wireless', - MoveDown: 'arrow direction jump navigation transfer', + 'A alphabet and animation apple arrow automatic camera capture character circle curved dot font gif inside letters live loop mode motion photos setting small symbol text type video with', + MotionPhotosOff: + 'allowed animation circle diagonal disabled enabled live motion not off photos slash still through turn video with', + Mouse: + 'accessory and bottom buttons click computer cursor device divided half hardware into left mouse pc peripheral pointer right rounded scroll top two wheel wireless', + MoveDown: + 'arrow backward beside curved demote direction down item jump lower move navigation one pointing rearrange reorder send shaded sort squares stacked the transfer two', MoveToInbox: - 'archive arrow down email envelop incoming letters message move send to', - MoveUp: 'arrow direction jump navigation transfer', - Movie: 'cinema film media screen show slate tv video watch', - MovieCreation: 'cinema clapperboard film movies slate video', + 'an archive arrow at bottom deliver download downward email envelop flap import inbox incoming into item letters message move open pointing receive save send square the with', + MoveUp: + 'arrow beside bring curved direction forward item jump move navigation one pointing promote rearrange reorder shaded sort squares stacked the transfer two upper', + Movie: + 'across action cinema clapperboard diagonal director entertainment film hollywood media movie production rectangular screen show slate stripes the top tv video watch with', + MovieCreation: + 'across action cinema clapperboard creation diagonal director filmmaking movies new produce production rectangular slate stripes the top video with', + MovieEdit: + 'and at bottom clapperboard clip diagonal editing editor film movie pencil rectangular rename right stripes the trim video with', MovieFilter: - 'artificial automatic automation clapperboard creation custom film genai intelligence magic movies slate smart sparkle stars video', - Moving: 'arrow direction navigation travel up', - Mp: 'alphabet character font image letters megapixel photography pixels quality resolution symbol text type', + 'and artificial automatic automation clapperboard creation custom diagonal editor effects enhancement film filter genai intelligence magic movies rectangular shapes slate smart sparkle special stars stripes two vfx video with', + Moving: + 'and arrow chart direction growth improvement increase line moving navigation pointing progress right rising stock the travel uptrend zigzag', + Mp: 'alphabet camera character containing count font image letters megapixels mp photography quality resolution rounded specs square symbol text the type', MultilineChart: - 'analytics bars data diagram infographic line measure metrics multiple statistics tracking', - MultipleStop: 'arrows dashed directions dots left maps navigation right', + 'analytics another bars by chart comparison crossed dashboard data diagonal diagram infographic lines measure metrics multiline multiple performance rising statistics stock tracking trend zigzag', + MultipleStop: + 'and arrows below dashed destinations directions dots itinerary left maps multi-stop multiple navigation planning pointing right route stops transfer trip two waypoints', Museum: - 'architecture attraction building estate event exhibition explore local palces places real see shop store tour', - MusicNote: 'audiotrack key sound', - MusicOff: 'audiotrack disabled enabled key mute note on slash sound', - MusicVideo: 'band mv recording screen tv watch', - MyLocation: 'destination direction maps navigation pin place point stop', - Nat: 'communication', - Nature: 'forest outdoor outside park tree wilderness', + 'architecture art attraction building cultural estate event exhibition explore front gallery history landmark large letter local museum palces places real roof see shop site store the tour triangular with', + MusicNote: + 'audiotrack circular head key melody musical note playlist singing single song sound tone tune with', + MusicOff: + 'and audiotrack diagonal disabled enabled flag key musical mute note off playback quiet silence slash small sound stop through turn with', + MusicVideo: + 'audio band clip containing frame karaoke media musical mv note player recording rectangular screen streaming tv video visualizer watch', + MyLocation: + 'center circular crosshair current destination direction dot find geolocation gps locate maps me my navigation pin place point stop target the with', + Nat: 'address and arrow center circle communication diagram dot extending gateway ip nat network right routing signal telecom the to translation with', + Nature: + 'botanical canopy eco environment forest garden greenery landscape nature outdoor outside park plant round short tree trunk wilderness with', NaturePeople: - 'activity body forest human landscape outdoor outside park person tree wilderness', - NavigateBefore: 'arrows direction left', - NavigateNext: 'arrows direction right', - Navigation: 'arrow destination direction location maps pin place point stop', + 'activity beside body camping canopy ecotourism forest hiking human landscape nature outdoor outside park people person recreation round standing tree visitor walk wilderness with', + NavigateBefore: + 'arrows back before carousel chevron direction go left navigate pagination pointing previous prior rewind', + NavigateNext: + 'arrows carousel chevron continue direction forward go navigate next pagination pointing right skip', + Navigation: + 'app compass cursor destination direction gps heading location maps narrow navigation orientation pin place pointing stop straight triangular up', NearbyError: - '! alert attention caution danger exclamation important mark notification symbol warning', - NearbyOff: 'disabled enabled on slash', + '! alert and attention beside caution connection danger diamond error exclamation important inside location mark nearby notification problem proximity shape smaller symbol unavailable warning with', + NearbyOff: + 'airdrop diagonal disabled disconnect enabled interlocking links nearby off proximity rounded share sharing slash them through turn two unlink with', NearMe: - 'arrow destination direction location maps navigation pin place point stop', + 'arrow current cursor curved destination direction gps left locate location maps me navigation near pin place pointer pointing position send share stop tail the triangular upper with', NearMeDisabled: - 'destination direction enabled location maps navigation off pin place point slash', - NestCamWiredStand: 'camera filming hardware image motion picture videography', - NetworkCell: 'cellular data internet mobile phone speed wifi wireless', - NetworkCheck: 'connection internet meter signal speed tick wifi wireless', + 'and arrow curved denied destination diagonal direction disabled enabled gps location maps me navigation near no off pin place point sharing slash tail through triangular with', + NestCamWiredStand: + 'camera cctv filming hardware head home image motion narrow nest picture rounded security smart stand surveillance videography webcam wired', + NetworkCell: + 'bars carrier cellular data edge internet mobile narrow near network phone reception right signal speed stripe the tower triangle vertical white wifi wireless with', + NetworkCheck: + 'arcs checkmark connected connection connectivity crossing diagnostics internet line meter network signal speed test them through tick verified wifi wireless with', NetworkLocked: - 'alert available cellular connection data error internet mobile not privacy private protection restricted safety secure security service signal warning wifi wireless', + 'alert available bottom cellular connection corner data encrypted error internet locked mobile network not padlock password privacy private protected protection restricted right safety secured security service shape signal the triangular vpn warning wifi wireless with', NetworkPing: - 'alert available cellular connection data internet ip mobile service signal wifi wireless', - NetworkWifi: 'cellular data internet mobile phone speed wireless', - NetworkWifi1Bar: 'cellular data internet mobile phone speed wireless', - NetworkWifi2Bar: 'cellular data internet mobile phone speed wireless', - NetworkWifi3Bar: 'cellular data internet mobile phone speed wireless', + 'alert available cellular circle connection data diagnostics downward end internet latency lines meeting mobile network one packet ping point response round service signal test time trip wifi wireless with', + NetworkWifi: + 'arcing cellular cone connected curved data full gap hotspot internet mobile near network phone router signal speed strong the top white wifi wireless with', + NetworkWifi1Bar: + 'and arc bar bottom cellular cone connection data faint internet left low mobile network only phone plain poor rest shaded signal small speed the weak wifi wireless with', + NetworkWifi2Bar: + 'and arcs bars bottom cellular cone connection data fair internet left medium mobile moderate network outer partial phone plain shaded signal speed the wifi wireless with', + NetworkWifi3Bar: + 'bars cellular cone connection data full gap good high internet mobile mostly near network phone shaded signal speed strong the thin three top wifi wireless with', NewLabel: - '+ add archive bookmark favorite library plus reading remember ribbon save symbol tag', + '+ add archive bookmark category create favorite label library new plus price reading remember ribbon save shape sign symbol tag with', NewReleases: - '! alert announcement approve attention award burst caution checkmark complete danger done error exclamation important notification ok select star symbol tick verification verified warning yes', + '! alert announcement approve arrival attention award badge caution checkmark complete danger deal done error exclamation featured hot important inside many-pointed new notification ok promo releases sale select spotlight starburst symbol tick validate verification verified warning yes', Newspaper: - 'article data document drive file folders magazine media notes page sheet slide text writing', - NextPlan: 'arrow circle right', - NextWeek: 'arrow baggage briefcase business suitcase', - Nfc: 'communication data field mobile near wireless', + 'and article blocks current data document drive edge events file folded folders gazette headlines jagged journalism magazine media newspaper notes of page press publication rows sheet slide text top with writing', + NextPlan: + 'arrowhead circle circular clockwise continue curving ending forward next plan proceed redo refresh retry right step', + NextWeek: + 'arrow baggage briefcase business calendar chevron for front future its later next plans pointing right schedule suitcase travel trip upcoming week with work', + Nfc: 'and communication contactless containing data dot end field frame go maze-like mobile near nfc one path payment square tap to transfer wireless with', Nightlife: - 'alcohol bar bottle club cocktail dance drink food glass liquor music note wine', - Nightlight: 'dark disturb mode moon sleep weather', - NightlightRound: 'dark half mode moon', - NightShelter: 'architecture bed building estate homeless house place real sleep', + 'alcohol bar beside bottle clubbing cocktail dance drink entertainment evening food glass happy hour liquor lounge martini musical nightlife note out party wine', + Nightlight: + 'bedtime crescent dark disturb evening lunar mode moon nightlight nighttime phase sleep weather', + NightlightRound: + 'bedtime crescent dark half lunar mode moon nightlight rounded sleep tips with', + NightShelter: + 'accommodation architecture bed building bunk containing dormitory estate homeless hostel house lying night person place real refuge shape shelter sleep with', NightsStay: - 'climate cloud crescent dark lunar mode moon phases silence silent sky time weather', + 'booking climate cloudy crescent dark forecast hotel its lower lunar mode moon nights overlapping overnight partly phases point silence silent sky sleep small stay time tracker weather with', NineK: - '9000 9K alphabet character digit display font letters numbers pixels resolution symbol text type video', + '9000 9K 9k alphabet character containing definition digit display font high letters nine numbers pixels quality resolution rounded square streaming symbol text the tv type ultra video', NineKPlus: - '+ 9000 9K alphabet character digit display font letters numbers pixels resolution symbol text type video', + '+ 9000 9K 9k alphabet character containing digit display enhanced font letters nine numbers pixels plus premium quality resolution rounded square streaming symbol text the type upscaled video', NineMp: - 'camera digit font image letters megapixels numbers quality resolution symbol text type', + '9 camera containing count digit font image letters megapixels mp nine numbers photo quality resolution rounded sensor spec square stacked symbol text the type', NineteenMp: - 'camera digits font image letters megapixels numbers quality resolution symbol text type', + '19 camera containing count digits font high image letters megapixels mp nineteen numbers photo quality resolution rounded sensor square stacked symbol text the type', NoAccounts: - 'avatar disabled enabled face human offline people person profile slash thumbnail unavailable unidentifiable unknown user', - NoBackpack: 'accessory bookbag knapsack travel', + 'accounts and anonymous avatar banned blocked circle deactivated diagonal disabled enabled face guest head human inside mode offline out people person profile remove shoulders sign slash through thumbnail unavailable unidentifiable unknown user with', + NoAdultContent: + 'adult age blocked circle containing content control diagonal explicit filter letters mature no nsfw off parental restricted restriction slash the through with xxx', + NoBackpack: + 'accessory allowed backpack bags bookbag check diagonal knapsack luggage not permitted prohibited restriction slash through travel with', NoCell: - 'Android device disabled enabled hardware iOS mobile off phone slash tablet', + 'Android allowed cell device diagonal disabled enabled free hardware iOS mobile no off phones prohibited quiet silence slash tablet through with zone', NoCrash: - 'accident automobile cars check collision confirm correct direction done enter maps mark okay select tick transportation vehicle yes', - NoDrinks: 'alcohol beverage bottle cocktail food liquor wine', - NoEncryption: 'disabled enabled lock off password safety security slash', - NoEncryptionGmailerrorred: 'disabled enabled locked off slash', + 'above accident automobile avoidance cars checkmark collision confirm correct crash direction done driving enter free maps no okay safety select tick transportation vehicle verified with yes', + NoDrinks: + 'alcohol allowed beverages bottle cocktail diagonal drinking drinks dry food free glass liquor martini no prohibited slash sober through wine with zone', + NoEncryption: + 'connection diagonal disabled enabled encryption insecure not off padlock password safety security slash through unencrypted unlocked unprotected vulnerability with', + NoEncryptionGmailerrorred: + 'and circle connection diagonal disabled email enabled encryption gmailerrorred insecure locked near not off padlock security shackle slash small the through unencrypted warning with', NoFlash: - 'camera disabled electric enabled energy image instant lightning off on photography picture slash thunderbolt', - NoFood: 'disabled drink enabled fastfood hamburger meal off on slash', - NoiseAware: 'audio cancellation music note sound', + 'and beside camera dark diagonal disabled electric enabled energy flash image instant lightning mode no off photography picture setting slash strobe through thunderbolt with', + NoFood: + 'allowed and beside cup diagonal dietary disabled drink eating enabled fastfood fasting hamburger meal not off prohibited restriction slash snacks them through with', + NoiseAware: + 'ambient audio aware cancellation dashed dot headphone hearing inside listening marks mode music noise note of outward radiating setting sound transparency with', NoiseControlOff: - '[offline] audio aware cancellation disabled enabled music note slash sound', - NoLuggage: 'baggage carry disabled enabled off on slash suitcase travel', + '[offline] ambient arcs audio aware broken by cancellation control curved disabled dot enabled headphone hearing music noise note setting slash sound surrounded two with', + NoLuggage: + 'allowed baggage carry check diagonal disabled enabled light luggage not off permitted prohibited restriction rolling slash suitcase through travel with', NoMeals: - 'dining disabled eat enabled food fork knife off restaurant slash spoon utensils', + 'and by cutlery diagonal dining disabled eat enabled fasting food fork included knife meals not off restaurant service side slash spoon straight-bladed them through unavailable utensils with', + NoMealsOuline: + 'and by curved cutlery diagonal dining fasting food fork included knife meals not ouline service side slash them through unavailable wide-bladed with', NoMeetingRoom: - 'building disabled doorway enabled entrance home house interior office on open places slash', - NoPhotography: 'camera disabled enabled image off on picture slash', + 'and booking building closed diagonal disabled doorway enabled enter entrance entry home house interior meeting not occupied office open pane places room slash through unavailable window with', + NoPhotography: + 'allowed and cameras circular diagonal disabled do enabled image lens not off photography pictures prohibited restricted slash through with', NordicWalking: - 'athlete athletic body entertainment exercise hiking hobby human people person social sports travel walker', - North: 'arrow directional maps navigation up', - NorthEast: 'arrow maps navigation noth right up', - NorthWest: 'arrow directional left maps navigation up', - NoSim: 'camera card device eject insert memory phone storage', + 'athlete athletic body country cross entertainment exercise fitness hiking hobby human nordic people person planted poles power sides social sports sticks their travel trekking two walker walking with', + North: + 'arrow compass directional heading maps navigation north pointing straight true upward', + NorthEast: + '45 arrow bearing compass degrees diagonal direction east maps navigation north noth pointing right the to upper', + NorthWest: + '45 arrow bearing compass degrees diagonal directional left maps navigation north pointing the to upper west', + NoSim: + 'camera card detected device diagonal eject error insert memory missing not phone service sim slash storage through with', NoStroller: - 'baby care carriage children disabled enabled infant kid newborn off on parents slash toddler young', - NotAccessible: 'accessibility body handicap help human person wheelchair', - Note: 'bookmark data document drive file folders message page paper plus sheet slide symbol writing', + 'accessible allowed baby buggy care carriage children diagonal disabled enabled infant kid newborn not off parents pram prohibited restricted slash strollers through toddler with young', + NotAccessible: + 'accessibility ada body diagonal disabled handicap help human inaccessible non-compliant not person ramp slash through unavailable wheelchair with', + Note: 'bookmark corner data document drive file folded folders memo message notepad page paper plus post-it rectangular reminder sheet slide sticky symbol with writing', NoteAdd: - '+ -doc create data document drive file folders new page paper plus sheet slide symbol writing', - NoteAlt: 'clipboard document file memo page paper writing', - Notes: 'comment document text write writing', + '+ -doc add and center corner create data document drive file folded folders insert memo new note page paper plus sheet sign slide symbol the with writing', + NoteAlt: + 'across alt and at checklist clipboard document edit file hole memo notes pad page paper pencil report ring survey take the top with writing', + Notes: + 'bullet comment decreasing document horizontal length lines list notes of outline paragraph stacked summary text three together view write writing', NotificationAdd: - '+ active alarm alert bell chime notifications notify plus reminder ring sound symbol', + '+ active add alarm alerts bell beside chime enable follow new notifications notify plus reminder ring sign sound subscribe symbol turn with', NotificationImportant: - '! active alarm alert announcement attention bell caution chime danger error exclamation feedback mark notifications notify problem reminder ring sound symbol warning', - Notifications: 'active alarm alert bell chime notify reminder ring sound', - NotificationsActive: 'alarm alert bell chime notify reminder ringing sound', - NotificationsNone: 'alarm alert bell notify reminder ring sound', + '! active alarm alert announcement attention bell body caution chime critical danger error exclamation feedback high important its mark notifications notify priority problem reminder ring sound symbol urgent warning with', + Notifications: + 'active alarm alerts bell bottom chime clapper icon notifications notify ping push reminder ring shape sound the updates with', + NotificationsActive: + 'active alarm alert bell buzzing chime chiming curved either enabled notifications notify reminder ringing side small sound waves with', + NotificationsNone: + 'alarm alerts bell bottom clapper clear empty inbox new none notifications notify outline reminder ring shape sound the with', NotificationsOff: - 'active alarm alert bell chime disabled enabled notify offline reminder ring slash sound', + 'active alarm alerts bell chime diagonal disabled disturb do enabled mute notifications notify offline reminder ring silence slash snooze sound through with', NotificationsPaused: - '--- active alarm aleet alert bell chime ignore notify pause quiet reminder ring sleep snooze sound zzz', + '--- active alarm aleet alert bell body chime disturb do ignore its letter muted nap notifications notify paused quiet reminder resting ring sleeping snooze sound temporarily the with zzz', NotInterested: - 'allowed banned cancel circle clear close disabled dislike exit interested not off prohibited quit remove stop', + 'allowed banned block cancel circle clear close diagonal disabled dislike do enter entry exit forbidden interested not off prohibited quit remove restricted sign slash stop through unavailable with', NotListedLocation: - '? assistance destination direction help information maps pin place punctuation questionmark stop support symbol', + '? address assistance destination direction found help information inside listed location maps missing mystery not pin place punctuation questionmark stop support symbol teardrop unavailable unknown with', NoTransfer: - 'automobile bus cars direction disabled enabled maps off public slash transportation vehicle', - NotStarted: 'circle media pause play video', - Numbers: 'digit symbol', + 'automobile bus cars connections diagonal direction disabled enabled maps non-stop off public restriction route slash through transfers transit transportation vehicle with', + NotStarted: + 'and bar circle containing control forward left media next not pause playback right skip started step the triangle video', + Numbers: + 'and crossing digit hashtag horizontal media numbers pound sign social strokes symbol vertical with', OfflineBolt: - 'circle electric energy fast flash instant lightning spark thunderbolt', + 'action adapter available batteries boost cached charger circle device electric energy fast flash inside instant lightning mode nest offline power quick spark thunderbolt', OfflinePin: - 'approve checkmark circle complete done ok select tick validate verified yes', + 'above access approve available bar cached checkmark circle complete content done downloaded for horizontal inside offline ok pin saved select sync tick validate verified yes', OfflineShare: - 'Android arrow cell connect device direction hardware iOS link mobile multiple phone right tablet', - OilBarrel: 'droplet gasoline nest water', + 'Android airdrop and arrow behind bluetooth cell connect device direction hardware iOS layered link mobile multiple nearby offline peer phone pointing right second share tablet transfer with', + OilBarrel: + 'barrel crude droplet drum energy front fuel gasoline industry its nest oil petroleum shape storage water with', OndemandVideo: - 'Android chrome desktop device hardware iOS mac monitor play television tv web window', + 'Android catch center chrome desktop device hardware iOS mac media monitor now ondemand player screen stand streaming television the triangle tv up video vod watch web window with', OnDeviceTraining: - 'arrow bulb call cell contact hardware idea inprogress light loading mobile model refresh renew restore reverse rotate telephone', - OneK: '1000 1K alphabet character digit display font letters numbers pixels resolution symbol text type video', + 'and arrow bulb call cell computing contact curved edge federated frame hardware idea inprogress inside its learning light loading local machine mobile model on-device refresh renew restore reverse rotate screen telephone training with', + OneK: '1000 1K 1k alphabet character containing count digit display followers font letters media metric numbers one pixels resolution rounded social square symbol text the thousand type video view', OneKk: - '10000 10K alphabet character digit display font letters numbers pixels resolution symbol text type video', + '10000 10K 10k alphabet character containing count digit display engagement followers font kk letters media metric numbers one pixels resolution rounded social square symbol ten text the thousand type video', OneKPlus: - '+ 1000 1K alphabet character digit display font letters numbers pixels resolution symbol text type video', - OnlinePrediction: 'bulb connection idea light network signal wireless', - Opacity: 'color droplet hue inverted liquid palette tone water', - OpenInBrowser: 'arrow box new up website window', - OpenInFull: 'action arrows expand grow move', + '+ 1000 1K 1k alphabet character containing count digit display engagement followers font letters media metric numbers one over pixels plus resolution rounded social square symbol text the thousand type video', + OnlinePrediction: + 'ai arcs both broadcasting bulb cloud connection curved forecasting idea insight intelligence learning light machine network online prediction radiating sides signal smart wireless with', + Opacity: + 'alpha bottom channel color droplet editing fill gradient half hue image inverted liquid opacity palette shaded shape teardrop the tone translucent transparency water', + OpenInBrowser: + 'arrow bottom box browser entering external frame from launch link load new open page rectangular the upward view website window with', + OpenInFull: + 'action arrows away corners diagonal each enlarge expand from fullscreen grow maximize move open opposite other out pointing resize toward two view window zoom', OpenInNew: - 'application arrow box components interface link right screen ui up ux website window', - OpenInNewOff: 'arrow box disabled enabled export on slash window', - OpenWith: 'arrows directional expand move', + 'application arrow box bracket breaking components corner diagonal externally frame hyperlink interface launch new of open out pop right screen square tab the top ui up ux website window with', + OpenInNewOff: + 'and arrow blocked box bracket cannot diagonal disabled enabled export external frame link new off open popup slash square through window with', + OpenWith: + 'app arrows central choose diamond directional directions down drag expand four from left menu move object open outward pointing reposition right share up with', OtherHouses: - 'architecture cottage estate home maps place real residence residential stay traveling', - Outbound: 'arrow circle directional right up', - Outbox: 'mail send sent', - OutdoorGrill: 'barbecue barbeque bbq charcoal cooking home house outside', - Outlet: 'connecter electricity plug power', - OutlinedFlag: 'country goal mark nation report start', - Padding: 'design dots layout margin size square', - Pages: 'article gplus paper post star', - Pageview: 'document find glass magnifying paper search', - Paid: 'bill card cash circle coin commerce cost credit currency dollars finance monetization money online payment shopping symbol transaction', - Palette: 'art colors filters paint', - Panorama: 'angle image mountains photography picture view wide', + 'additional architecture cottage dots estate home houses inside listings maps more options other place properties real residence residential shape stay three traveling with', + Outbound: + 'arrow circle departing diagonal directional exit export external inside outbound outgoing pointing right send the to upper', + Outbox: + 'an arrow at bottom curved entering frame items mail messages outbox outgoing pending queue send sent square the tray upload upward with', + OutdoorGrill: + 'above backyard barbecue barbeque bbq charcoal cooking cookout grilling home house lines on outdoor outside patio picnic rising smoker steam summer wavy wheels with', + OutgoingMail: + 'an arrow beside dispatch email envelope forward outbox outgoing pointing right send sent with', + Outlet: + 'and charging circle connecter electrical electricity face hole inside mains outlet plug point power round slots socket two vertical wall with', + OutlinedFlag: + 'bookmark checkpoint country cut flagged goal into item location milestone nation notch outlined pennant pole race report start the with', + Output: + 'an arrow bracket breaking data exit export frame log of output pointing result right send square with', + Padding: + 'along box css design dots edge frame inner layout margin model padding size spacing square the three top whitespace with', + Pages: + 'article blogging builder center content four gap google gplus inward pages paper pinwheel platform pointing post publishing shapes star-shaped the toward triangular website', + Pageview: + 'analytics count document find frame glass inspect magnifying over pageview paper preview rectangular search site traffic views', + Paid: 'active bill card cash circle coin commerce complete cost credit currency dollars finance inside invoice monetization money online paid payment purchased received shopping sign subscription symbol transaction', + Palette: + 'and artist colors design dots filters for hole painting palette picker scheme several shape small swatches theme thumb tool wells with', + Pallet: + 'base box cargo forklift freight logistics on pallet shipping sitting slatted storage warehouse', + Panorama: + 'album angle containing frame gallery image landscape mountains panorama peak photography picture rectangular scenic shape shot view wide', PanoramaFishEye: - 'angle circle full geometry image lens moon photography picture wide', - PanoramaHorizontal: 'angle image photography picture wide', - PanoramaHorizontalSelect: 'angle image photography picture wide', - PanoramaPhotosphere: 'angle horizontal image photography picture wide', - PanoramaPhotosphereSelect: 'angle horizontal image photography picture wide', - PanoramaVertical: 'angle image photography picture wide', - PanoramaVerticalSelect: 'angle image photography picture wide', - PanoramaWideAngle: 'image photography picture', - PanoramaWideAngleSelect: 'image photography picture', - PanTool: 'drag fingers gesture hands human move scan stop touch wait', - PanToolAlt: 'fingers gesture hands human move scan stop', + '360 and angle border center circle circular distortion fisheye full geometry image lens moon open panorama photography picture ring shape spherical thick wide with', + PanoramaHorizontal: + 'angle as border bottom bowing cylindrical edges frame horizontal image landscape letterbox orientation outward panorama photography picture shown stretch the thin top widescreen with', + PanoramaHorizontalSelect: + 'active angle bottom bowing chosen cylindrical edges filter frame horizontal image landscape orientation outward panorama photography picture selected shaded shape the throughout top widescreen with', + PanoramaPhotosphere: + '360 angle as bands border by circle crossed curved horizontal image immersive panorama photography photosphere picture shown spherical thin two vr wide', + PanoramaPhotosphereSelect: + '360 active angle bands by circle crossed curved horizontal image immersive panorama photography photosphere picture selected shaded shape spherical throughout two vr wide', + PanoramaVertical: + 'and angle as border bowing edges frame image left outward panorama photography picture portrait right shown stitch tall the thin upward vertical vertorama wide with', + PanoramaVerticalSelect: + 'active and angle bowing chosen edges filter frame image left outward panorama photography picture portrait right selected shaded shape stitch tall the throughout vertical vertorama wide with', + PanoramaWideAngle: + 'angle as barrel border bowing distortion edges expansive frame gopro image lens outward panorama photography picture rectangular rounded shot shown thin ultra view wide with', + PanoramaWideAngleSelect: + 'active angle barrel bowing distortion edges expansive filter frame image lens outward panorama photography picture rectangular rounded selected shaded shape shot throughout ultra view wide with', + PanTool: + 'around cursor drag fingers five gesture grab hands high human move open palm pan scan side sign spread stop the thumb tool touch wait with', + PanToolAlt: + 'alt curled fingers gesture hands human index moment move one other pan pointing raise scan second select stop tap tool up wait with', Paragliding: - 'athlete athletic body entertainment exercise fly hobby human parachute people person skydiving social sports travel', - Park: 'attraction fresh local nature outside plant tree', - PartyMode: 'camera lens photography picture', - Password: 'code key login pin security star unlock', - Pattern: 'key login password pin security star unlock', - Pause: 'controls media music pending player status video wait', - PauseCircle: 'controls media music video', - PauseCircleFilled: 'controls media music pending status video wait', + 'adventure air athlete athletic below body canopy entertainment exercise extreme flying hanging harness hobby human lines parachute paraglider paragliding people person skydiving social sports their to travel with', + Park: 'attraction christmas conifer evergreen forest fresh local national nature outside park pine plant shape short tiered tree triangular trunk with', + PartyMode: + 'arrow booth camera circular continuous group its lens mode party photography picture refresh rotate self shooting timer with', + Password: + 'above asterisks credential field hidden horizontal input key login masked passcode password pin secret security star text three underline unlock', + Pattern: + 'android connecting diagonal dots grid key line login of password pattern pin screen security several star swipe them unlock with', + Pause: + 'bars break by controls freeze hold intermission media music pause pending playback player side status stop two vertical video wait', + PauseCircle: + 'bars button circle controls hold inside media music pause playback stop two vertical video', + PauseCircleFilled: + 'bars button circle controls filled hold inside media music pause pending playback solid status two vertical video wait', PausePresentation: - 'application desktop device pending screen share slides status wait website window www', + 'application bars control desktop device frame inside meeting pause pending presentation rectangular screen share sharing slideshow status stop two vertical wait website window www', Payment: - 'bill cash charge coin commerce cost creditcard currency dollars finance financial information money online price shopping symbol', + 'billing cash charge checkout coin commerce cost creditcard currency debit dollars finance financial horizontal information money near now online payment price reader shopping stripe swipe symbol the top with', Payments: - 'bill card cash coin commerce cost credit currency dollars finance layer money multiple online price shopping symbol', + 'banknotes bill card cash circle coin commerce cost credit currency displaying dollars finance layer money multiple of online payments pile price salary savings shopping stack symbol tips top wallet with', PedalBike: - 'automobile bicycle cars direction human maps public route scooter transportation vehicle vespa', - Pending: 'circle dots loading progress waiting', - PendingActions: 'clipboard clock date document remember schedule time', - Pentagon: 'five shape sides', + 'automobile bicycle bike by cars commute cycling direction frame handlebars human lane maps pedals public rental route scooter share transportation two vehicle vespa wheels with', + Pending: + 'approval awaiting buffering circle dots horizontal inside loading pending processing progress queued review row three under', + PendingActions: + 'actions and badge bottom clipboard clock date deadline document hole items list overdue pending remember reminder right ring schedule tasks the time to-do top with', + Pentagon: + 'defense department five-sided headquarters home house military of pentagon plate polygon shape sides', People: - 'accounts committee community face family friends group humans network persons profiles social team users', + 'accounts attendees audience by chat committee community contacts crowd face family friends group humans network overlapping participants people persons profiles side silhouettes social team users', PeopleAlt: - 'accounts committee face family friends group humans network persons profiles social team users', - Percent: 'math numbers symbol', - PermCameraMic: 'image microphone min photography picture speaker', + 'accounts alt audience by collaborators committee community contacts crowd duo face family friends group head-and-shoulders humans members network overlapping pair people persons profiles side silhouettes social staff team users workforce', + Percent: + 'apr by circles diagonal discount interest joined line math numbers off percentage proportion rate ratio sale sign symbol tax two with', + PermCameraMic: + 'access audio be body call camera center conference image lens microphone min perm photography picture podcast recording shape speaker the video vlogging webcam where with would', PermContactCalendar: - 'account agenda date face human information people person profile schedule time user', + 'account address agenda and appointment book business calendar card contact date diary event face human information inside people perm person planner profile rectangular rolodex schedule silhouette tabs time top two user with', PermDataSetting: - 'cellular configure gear information network settings wifi wireless', + 'adjust bottom cellular cog configure control corner data gear information its mobile network options overlapping panel perm preferences right settings signal strength triangle wheel wifi wireless with', PermDeviceInformation: - 'Android alert announcement cell hardware iOS important mobile phone tablet', + 'Android about alert announcement cell center details device hardware iOS icon important information letter mobile notice of perm screen shape smartphone specs system tablet the with', PermIdentity: - 'account avatar face human information people person profile save, thumbnail user', + 'account and around authentication avatar badge border face frame head human identity information login my no people perm person profile save, shoulders sign thumbnail user verification verify with', PermMedia: - 'collection copy data directories document duplicate file folders images landscape mountains photography picture save stack storage', + 'album camera collection copy data directories document duplicate file folders frames front gallery images landscape library media mountains of one perm photography pictures roll save stack storage the with', PermPhoneMsg: - 'bubble call cell chat comment communicate contact device message mobile recording save speech telephone voice', + 'answering beside bubble call cell chat comment communicate contact device handset log machine message missed mobile msg perm recording save sms speech telephone text voicemail with', PermScanWifi: - 'alert announcement connection information internet network service signal wireless', - Person: 'account avatar face human people profile user', - Person2: 'account face human people profile user', - Person3: 'account face human people profile user', - Person4: 'account face human people profile user', + 'alert announcement center connection connectivity hotspot information internet letter network perm scan service signal the wedge-shaped wifi wireless with', + Person: + 'account and avatar contact face figure head human individual login myself people person plain profile rounded shoulders sign silhouette someone user', + Person2: + 'account and avatar contact face hair head human individual login people person profile shoulders side-swept sign someone the to user with', + Person3: + 'account and avatar contact face fuller hairstyle head human individual login people person profile rounded shoulders sign someone top user with', + Person4: + 'account across and avatar contact curly face hair head human individual login people person profile short shoulders sign someone the top user with', PersonAdd: - '+ account avatar face friend human new people plus profile symbol user', - PersonAddAlt: '+ account face human people plus profile user', + '+ account add and avatar contact face follow friend head human invite its left member new people person plus profile request shoulders sign symbol to user with', + PersonAddAlt: + '+ account add alt as beside body circle contact curved face follow friend head human invite member new open over people person plus profile request shown sign user with', + PersonAddAlt1: + 'account add alt and avatar contact face follow friend head human invite its left member new people person plus profile shoulders sign to user with', PersonAddDisabled: - '+ account enabled face human new offline people plus profile slash symbol user', + '+ account add and banned blocked both by cannot crossed diagonal disabled enabled face forbidden head human invite members new offline people person plus prevent profile restricted shoulders sign slash symbol user with', PersonalInjury: - 'accident aid arm bandage body broke cast fracture health human medical patient people sling social', + 'accident aid arm bandage bent body broke cast claim compensation disability first fracture head health held hospital human hurt injury insurance legal medical one patient people personal sling social torso with workers', PersonalVideo: - 'Android cam chrome desktop device hardware iOS mac monitor television tv web window', - PersonOff: 'account avatar disabled enabled face human people profile slash user', + 'Android cam chrome computer desktop device display empty frame hardware home iOS mac monitor pc personal rectangular screencast streaming television theater thin tv video web window', + PersonOff: + 'access account and avatar banned blocked by crossed deactivated diagonal disabled enabled face head human ignore off people person profile remove restricted shoulders slash unavailable user', PersonPin: - 'account avatar destination direction face gps human location maps people place profile stop user', + 'account avatar badge bottom check contact containing destination direction face find gps human location maps meeting nearby people person pin place pointed profile rounded shape share silhouette small stop the tip user with', PersonPinCircle: - 'account destination direction face gps human location maps people place profile stop user', + 'account bottom check circle containing destination direction face find gps human location maps marker meeting nearby people person pin place point profile share sharp silhouette stop teardrop-shaped the user with', PersonRemove: - 'account avatar delete face human minus people profile unfriend user', + 'access account and avatar block contact delete face head horizontal human its kick line member minus people person profile remove right shoulders to unfollow unfriend user with', + PersonRemoveAlt1: + 'account alt and avatar contact delete face head horizontal human its kick line member minus people person profile remove right shoulders to unfollow unfriend user with', PersonSearch: - 'account avatar face find glass human look magnifying people profile user', - PestControl: 'bug exterminator insects', - PestControlRodent: 'exterminator mice mouse', - Pets: 'animal cat claw dog hand paw', - Phishing: 'fishing fraud hook scam', - Phone: 'call cell chat contact device hardware mobile telephone text', - PhoneAndroid: 'cell device hardware iOS mobile tablet', + 'account and avatar background check contact directory face finder glass head human lookup magnifying overlapping people person profile recruiter search shoulders the user with', + PestControl: + 'and beetle-like body cockroach control debug each extermination exterminator fumigation insects its legs management mark pest row side software vermin vertical with', + PestControlRodent: + 'and control curled exterminator eye long management mice mouse pest rat rodent round silhouette small tail trap vermin with', + Pets: 'above animal cat claw dog footprint four friendly hand large one pads park paw pets rounded shelter small toe veterinary with', + Phishing: + 'attack cybersecurity email eyelet fishing fraud hacking hook identity phishing round scam spoofing theft threat top with', + Phone: + 'calling cell chat contact device dial handset hardware landline mobile number receiver ring telephone text', + PhoneAndroid: + 'android app bar bottom button cellphone device google hardware home horizontal iOS mobile near shape small smartphone tablet the with', PhoneBluetoothSpeaker: - 'call cell connection connectivity contact device hardware mobile signal symbol telephone wireless', - PhoneCallback: 'arrow cell contact device down hardware mobile telephone', + 'beside bluetooth call car cell connection connectivity contact device hands-free handset hardware headset mobile pair signal speakerphone symbol telephone wireless with', + PhoneCallback: + 'answer arrow callback cell contact device diagonal down from handset hardware incoming into mobile pointing return right telephone the upper with', PhoneDisabled: - 'call cell contact device enabled hardware mobile offline slash telephone', - PhoneEnabled: 'call cell contact device hardware mobile telephone', + 'airplane blocked by calls cell contact crossed device diagonal disabled disturb do enabled handset hardware mobile mode not offline slash telephone unavailable', + PhoneEnabled: + 'alone answer available calling cell contact device dial enabled handset hardware make marks mobile no other ring telephone with', PhoneForwarded: - 'arrow call cell contact device direction hardware mobile right telephone', - PhoneIphone: 'Android apple cell device hardware iOS mobile tablet', + 'arrow beside call cell contact device direction divert forwarded forwarding handset hardware mobile redirect right-pointing telephone transfer with', + PhoneInTalk: + 'active call cell connected curved earpiece from handset lines mobile ongoing radiating ringing sound talk telephone the wave with', + PhoneIphone: + 'Android apple at bottom button cellphone device hardware home iOS iphone mobile round shape smartphone tablet the touch with', Phonelink: - 'Android chrome computer connect desktop device hardware iOS mac mobile sync tablet web windows', + 'Android beside chrome computer connect continuity cross-device desktop devices handoff hardware iOS laptop mac mirroring mobile paired pairing phonelink screen small smartphone sync tablet web windows with', PhonelinkErase: - 'Android cancel cell clear close connection device exit hardware iOS mobile no remove stop tablet', + 'Android cancel cell center clear close connection data delete device disconnect erase exit factory hardware iOS mark mobile no phonelink remote remove reset shape smartphone stop tablet the unpair wipe with', PhonelinkLock: - 'Android cell connection device erase hardware iOS locked mobile password privacy private protection safety secure security tablet', + 'Android cell center connection device encrypted erase hardware iOS locked mobile padlock password phonelink privacy private protection restrict safety screen secure security shape smartphone tablet the with', PhonelinkOff: - 'Android chrome computer connect desktop device disabled enabled hardware iOS mac mobile slash sync tablet web windows', + 'Android and by chrome computer crossed desktop devices diagonal disabled disconnect enabled hardware iOS laptop mac mobile monitor offline phonelink screen sharing slash small smartphone stop sync tablet unpair watch wearable web windows', PhonelinkRing: - 'Android cell connection data device hardware iOS mobile network service signal tablet wireless', + 'Android alert beside cell connection curved data device hardware iOS incoming lines mobile network notification phonelink ringing ringtone service shape signal smartphone sound tablet vibrate wave wireless with', PhonelinkSetup: - 'Android call chat device hardware iOS information mobile settings tablet text', + 'Android call center chat cog configure device gear hardware iOS information mobile onboarding phonelink preferences settings setup shape smartphone tablet text the with', PhoneLocked: - 'call cell contact device hardware mobile password privacy private protection safety secure security telephone', - PhoneMissed: 'arrow call cell contact device hardware mobile telephone', - PhonePaused: 'call cell contact device hardware mobile telephone wait', - Photo: 'image mountains photography picture', + 'beside call cell contact device encrypted handset hardware locked mobile padlock password privacy private protection restricted safety secure security telephone with', + PhoneMissed: + 'arrow away call cell contact declined device diagonal from handset hardware log missed mobile pointing right telephone the toward unanswered upper with', + PhonePaused: + 'bars beside call cell contact device handset hardware hold mobile paused suspended telephone two vertical wait with', + Photo: + 'camera containing file frame gallery image jpeg landscape mountains photography picture roll rounded shape snapshot square', PhotoAlbum: - 'archive bookmark image label library mountains photography picture ribbon save tag', - PhotoCamera: 'image photography picture', - PhotoCameraBack: 'image landscape mountains photography picture rear', + 'album archive bookmark-shaped card cover cut image inside into label landscape library memories mountains photography picture ribbon save scrapbook tab tag the top triangular with', + PhotoCamera: + 'app body camera capture center image in large lens photography picture round shutter snapshot take the with', + PhotoCameraBack: + 'back bump camera frame image inside landscape main mountains on photography picture rear rectangular small take top with', PhotoCameraFront: - 'account face human image people person photography picture portrait profile user', + 'account and camera chat facetime flap front human image its lens people person photography picture profile screen self-portrait selfie side silhouette the triangular user video webcam with', PhotoFilter: - 'artificial automatic automation custom filters genai image intelligence magic photography picture smart sparkle stars', - PhotoLibrary: 'album image mountains photography picture', - PhotoSizeSelectActual: 'dashed image mountains photography picture', + 'artificial automatic automation beautify corner custom edit effects enhance filters genai image intelligence magic photography picture retouch smart sparkles square stars the with', + PhotoLibrary: + 'album camera collection frames front gallery image landscape library media mountains of one overlapping photography picture roll square stack the two with', + PhotoSizeSelectActual: + 'actual crop cut dashed dimensions image landscape mountains of original out photography picture resize rounded select square with', PhotoSizeSelectLarge: - 'adjust album dashed editing image library mountains photography picture', + 'adjust album area bottom corner crop dashed editing filling image landscape large left library mountains photography picture rectangle resize select the with', PhotoSizeSelectSmall: - 'adjust album editing image large library mountains photography picture', - Php: 'alphabet brackets character code css developer engineering font html letters platform symbol text type', - Piano: 'instrument keyboard keys musical social', - PianoOff: 'disabled enabled instrument keyboard keys musical on slash social', + 'adjust album area bottom corner crop dashed editing filling image large left library mountains photography picture rectangle resize select small the thumbnail with', + Php: 'alphabet backend block bold brackets character code css developer development engineering font html hypertext language letters php platform preprocessor programming scripting server-side symbol type web wordpress', + Piano: + 'alternating app black dark grand instrument ivory keyboard keys light musical of piano play row social white', + PianoOff: + 'diagonal disabled enabled instrument keyboard keys musical mute off piano row silence slash social sound them through with', PictureAsPdf: - 'alphabet character copy document duplicate file font image letters multiple photography stack symbol text type', + 'acrobat adobe alphabet as character copy document download duplicate export file font format front image letters multiple of pages pdf photography picture portable stack symbol text the two type with', PictureInPicture: - 'chat cropped displays layout multitasking overlap photo pip position shape sizes talktrack', + 'area chat cropped displays floating frame inset layout mini mode multitasking overlap overlay photo picture pip player position rectangle rectangular screen shape sizes small split talktrack the upper video window with', PictureInPictureAlt: - 'chat cropped displays layout multitasking overlap photo pip position shape sizes talktrack', + 'alt bottom chat corner cropped displays floating frame inset layout mini mode multitasking overlap overlay photo picture pip player position rectangle rectangular right shape sizes small talktrack the video window with', PieChart: - 'analytics bars data diagram infographic measure metrics statistics tracking', - Pin: '1 2 3 digit key login logout numbers password pattern security star symbol unlock', - Pinch: 'arrows compress direction finger grasp hand navigation nip squeeze tweak', - PinDrop: 'destination direction gps location maps navigation place stop', - PinEnd: 'action arrow dot', - PinInvoke: 'action arrow dot', - Pinterest: 'brand logo social', + 'analytics bars breakdown chart circle dashboard data diagram distribution divided four infographic into measure metrics percentage pie report segments slices statistics tracking unequal', + Pin: '123 authentication badge digits key login logout numbers otp passcode password pattern pin rectangle rounded security star symbol unlock verification with', + Pinch: + 'arrows beside compress diagonal direction double-headed extended finger gesture grasp hand navigation nip one pinch resize squeeze touch tweak two with zoom', + PinDrop: + 'above address destination direction geolocation gps ground hole horizontal line maps marker navigation pin place short stop teardrop-shaped waypoint with', + PinEnd: + 'action anchor and arrow collapse corner dock dot end frame into its left opposite pin pointing rectangular snap the top window with', + PinInvoke: + 'action arrow corner dot expand float frame from invoke its left opposite out pin pointing pop rectangular the top toward undock window with', + Pinterest: + 'app bookmarking brand circle containing image letter like logo media mood pinboard pinterest rounded shaped sharing social the', PivotTableChart: - 'analytics arrows bars data diagram direction drive editing grid infographic measure metrics rotate sheet statistics tracking', - Pix: 'bill brazil card cash commerce credit currency finance money payment', - Place: 'destination direction location maps navigation pin point stop', - Plagiarism: 'document find glass look magnifying page paper search see', + 'analytics arrows bars beside cells chart cross-tabulation cycle data diagram direction drive editing excel forming grid infographic looping measure metrics of pivot rotate spreadsheet statistics summary table tracking', + Pix: 'around arranged bank bill brazilian card cash center commerce credit currency curved diamond digital finance flower four-petal instant like money payment pix point qr shapes transfer', + Place: + 'address destination direction geolocation hole landmark maps marker navigation near pin place point round stop teardrop-shaped the venue with', + Plagiarism: + 'academic and check content corner document duplicate find folded glass integrity look magnifying originality over page paper plagiarism review search see with', PlayArrow: - 'application back components controls direction forward interface media music navigation player right screen start triangle ui ux video website', - PlayCircle: 'arrow controls media music video', - PlayCircleFilled: 'arrow controls media music start video', - PlayCircleFilledWhite: 'start', - PlayDisabled: 'controls enabled media music off slash video', - PlayForWork: 'arrow circle down google half', - PlayLesson: 'audio bookmark digital ebook lesson multimedia play reading ribbon', - PlaylistAdd: '+ collection music new plus symbol task todo', + 'application arrow button components controls direction forward interface media music navigation playback player pointing resume right run screen start the triangle ui ux video website', + PlayCircle: + 'arrow button circle containing controls media music playback right-pointing start triangle video watch', + PlayCircleFilled: + 'arrow button circle containing controls filled media music playback right-pointing start triangle video watch', + PlayCircleFilledWhite: + 'arrow button circle containing controls filled media playback player resume right-pointing start triangle video watch white', + PlayDisabled: + 'blocked by cannot controls crossed diagonal disabled enabled media music off playback restricted right-pointing slash triangle video', + PlayForWork: + 'above app arrow circle cup curved download downward for get google half import inbox install managed play shape tray work', + PlayLesson: + 'and audio bookmark button circular corner course cover digital ebook education elearning lesson multimedia online overlapping play reading ribbon the training tutorial video with', + PlaylistAdd: + '+ add beside collection create horizontal lines music new playlist plus queue sign song symbol task three todo', PlaylistAddCheck: - 'approve checkmark collection complete done music ok select task tick todo validate verified yes', + 'added approve beside checklist checkmark collection complete confirmed done horizontal lines music ok playlist saved select task three tick todo tracks validate verified yes', PlaylistAddCheckCircle: - 'album artist audio cd collection mark music record sound track', + 'add album and approved artist audio cd checklist checkmark circle collection confirmed containing lines music playlist record saved sound track verified', PlaylistAddCircle: - 'album artist audio cd check collection mark music record sound track', - PlaylistPlay: 'arow arrow collection music', - PlaylistRemove: '- collection minus music', - Plumbing: 'build construction fix handyman repair tools wrench', - PlusOne: '1 add digit increase numbers symbol', - Podcasts: 'broadcast casting network signal transmitting wireless', + 'add album and artist audio cd check circle collection containing create lines mark music new playlist plus queue record sign song sound to track', + PlaylistPlay: + 'all arow arrow beside collection horizontal lines music playlist queue right-pointing start three triangle', + PlaylistRemove: + '- an beside clear collection delete from horizontal lines mark minus music playlist remove song three track x', + Plumbing: + 'build construction diagonally fix handyman leak length maintenance of overlapping pipe plumber plumbing repair spanner tools water wrench', + PlusOne: + '1 add beside digit endorse google increase like numbers numeral one plus recommend sign symbol the upvote', + Podcasts: + 'and antenna audio base both broadcast casting curved dot episode its listen network on podcasts radiating radio show sides signal streaming transmitting upward waves wireless with', PointOfSale: - 'checkout cost machine merchant money payment pos retail system transaction', + 'and below cashier checkout cost grid keypad machine merchant money of payment point pos receipt register retail sale slot system terminal till top transaction with', Policy: - 'certified find glass legal look magnifying privacy private protection search security see shield verified', - Poll: 'analytics barchart bars data diagram infographic measure metrics statistics survey tracking vote', - Polyline: 'compose connection create design draw node vector', - Pool: 'athlete athletic beach body entertainment exercise hobby human ocean people person places sea sports swimming water', + 'and audit certified compliance conditions containing find glass insurance legal look magnifying policy privacy private protection rules search security see shape shield terms verified', + Poll: 'analytics ballot barchart bars containing data diagram feedback height increasing infographic measure metrics of poll questionnaire results rounded square statistics survey three tracking vertical vote', + Polyline: + 'and angled by circle compose connected connection create design diagram draw edges flowchart joined lines network nodes of path polyline squares tool vector', + Pool: 'above amenity arm athlete athletic beach body diving entertainment exercise hobby hotel human lane lines ocean one people person places pool raised resort sea sports swimmer swimming water wavy with', PortableWifiOff: - 'connected connection data device disabled enabled internet network offline service signal slash usage wireless', - Portrait: 'account face human people person photo picture profile user', + 'airplane arcs by connected connection crossed data device diagonal disabled enabled hotspot internet mode network no offline portable service signal slash unavailable usage wifi wireless', + Portrait: + 'account and containing face frame headshot human id mugshot orientation passport people person photo picture portrait profile rounded shoulders silhouette square user vertical', PostAdd: - '+ data document drive file folders item page paper plus sheet slide text writing', - Power: 'charge cord electrical online outlet plug socket', - PowerInput: 'dc lines supply', - PowerOff: 'charge cord disabled electrical enabled on outlet plug slash', - PowerSettingsNew: 'information off save shutdown', + '+ add and article compose corner create data document drive file folders horizontal item lines new page paper plus post sheet sign slide text the with write writing', + Power: + 'charge connect cord electrical electricity energy online outlet plug power prongs socket supply top two with', + PowerInput: + 'adapter cable dashed dc horizontal input lines of power rows short stacked supply two voltage', + PowerOff: + 'by charge cord crossed diagonal disabled disconnect electrical enabled no off outage outlet power prongs slash two unplug with', + PowerSettingsNew: + 'breaking button circle incomplete information its line new off power restart ring save settings shutdown standby switch through top turn vertical with', PrecisionManufacturing: - 'arm automatic chain conveyor crane factory industry machinery mechanical production repairing robot supply warehouse', + 'arm assembly automatic automation base chain claw conveyor crane factory from gripper industrial industry line machinery manufacturing mechanical precision production reaching repairing robotics supply upward warehouse with', PregnantWoman: - 'baby birth body female human lady maternity mom mother people person user women', - PresentToAll: 'arrow presentation screen share slides website', - Preview: 'design eye layout reveal screen see show website window www', + 'baby belly birth body bump expecting female human lady maternity mom mother people person pregnancy pregnant prenatal rounded shape silhouette user with woman women', + PresentToAll: + 'all arrow broadcast center everyone frame mirror presentation rectangular screen share slides the to upward-pointing website with', + Preview: + 'an containing design details examine eye frame inspect layout peek preview reveal screen see shape show square website window www', PriceChange: - 'arrows bill card cash coin commerce cost credit currency dollars down finance money online payment shopping symbol up', + 'adjust and arrows beside bill card cash change coin commerce cost credit currency dollars down dynamic finance fluctuation money online payment price pricing rectangle rounded shopping sign small symbol update with', PriceCheck: - 'approve bill card cash coin commerce complete cost credit currency dollars done finance mark money ok online payment select shopping symbol tick validate verified yes', - Print: 'draft fax ink machine office paper printer send', - PrintDisabled: 'enabled off on paper printer slash', + 'approved beside bill card cash checkmark coin commerce complete confirmed cost credit currency dollars done finance match money ok online payment price select shopping sign symbol tick validate verified yes', + Print: + 'and copy document dot draft fax hard ink machine office on paper printer printout round send slot the top tray with', + PrintDisabled: + 'by cannot crossed diagonal disabled enabled offline paper printer printing slash slot tray with', PriorityHigh: - '! alert attention caution danger error exclamation important mark notification symbol warning', + '! alert attention caution critical danger do error exclamation flag high important mark must notification priority single symbol urgent vertical warning', PrivacyTip: - 'alert announcement announcment assistance certified details help information private protection security service shield support verified', - PrivateConnectivity: 'locked password privacy protection safety secure security', + 'alert announcement announcment assistance center certified data details gdpr help information letter notice privacy private protection reminder security service shape shield support the tip verified with', + PrivateConnectivity: + 'circle connection connectivity encrypted horizontal inside line link locked network padlock passing password privacy private protection safety secure security through vpn with', ProductionQuantityLimits: - '! alert attention bill card cart cash caution coin commerce credit currency danger dollars error exclamation important mark money notification online payment shopping symbol warning', - Propane: 'gas nest', - PropaneTank: 'bbq gas grill nest', + '! above alert attention bill card cart cash caution coin commerce credit currency danger dollars error exclamation important inventory limited limits mark money notification of online out payment production purchase quantity shopping stock symbol warning with', + Propane: + 'camping cylinder fuel gas grill handle horizontal legs lpg nest propane rounded short tank top two with', + PropaneTank: + 'across band bbq camping cylinder fuel gas grill handle horizontal lpg middle nest propane rounded tank the top upright with', Psychology: - 'behavior body brain cognitive function gear head human intellectual mental mind people person preferences psychiatric science settings social therapy thinking thoughts', + 'behavior body brain cognition cognitive function gear head health human inside intellectual mental mindset people person preferences profile psychiatric psychiatry psychology science self-improvement settings shape social therapy thinking thoughts with', PsychologyAlt: - '? assistance behavior body brain cognitive function gear head help human information intellectual mark mental mind people person preferences psychiatric punctuation question science settings social support symbol therapy thinking thoughts', + '? alt assistance behavior body brain cognitive confusion function gear head help human information inside intellectual mark mental mind people person preferences profile psychiatric psychology punctuation question science self-doubt settings social support symbol therapy thinking thoughts uncertainty with wondering', Public: - 'country earth global globe language map network planet social space web world', + 'and browser circle continent country crossing earth global globe international internet language latitude lines map network planet public shapes social space website with worldwide', PublicOff: - 'disabled earth enabled global globe map network on planet slash social space web world', - Publish: 'arrow cloud file import submit upload', + 'by circle continent crossed diagonal disabled disconnected earth enabled global globe internet map mode network no offline planet private public shapes slash social space unpublished web with world', + Publish: + 'above arrow bar cloud deploy file go horizontal import live post publicly publish release share submit upload upward-pointing', PublishedWithChanges: - 'approve arrows check complete done inprogress loading mark ok refresh renew replace rotate select tick validate verified yes', - PunchClock: 'date schedule timer timesheet', - PushPin: 'location marker place remember save', - QrCode: 'barcode camera media product quick response smartphone urls', - QrCode2: 'barcode camera media product quick response smartphone urls', - QrCodeScanner: 'barcode camera media product quick response smartphone urls', - QueryBuilder: 'clock date hour minute save schedule time', + 'approve arrows by changes checkmark circular complete curved done forming inprogress loading loop ok published refresh renew replace republish revised rotate saved select surrounded sync tick two updated validate verified with yes', + PunchClock: + 'attendance case center clock date employee face handle hours on out padlock-shaped punch schedule the timer timesheet top tracking with', + PushPin: + 'and angled board bulletin downward head item location marker pinned place pointed push remember rounded save thumbtack tip top with', + QrCode: + 'and barcode block camera checkered corner grid large link matrix media mobile pattern payment product qr quick response scan smartphone squares three urls with', + QrCode2: + 'barcode blocks camera dense forming grid link matrix media mobile of pattern payment product qr quick response scan small smartphone square urls', + QrCodeScanner: + 'barcode bracket by camera corners four framed media pattern pay product qr quick reader response scanner smartphone to urls viewfinder', + QueryBuilder: + 'builder clock date editor face filter hands history hour minute pending picker query recent round save schedule time with', QueryStats: - 'analytics chart data diagram find glass infographic line look magnifying measure metrics search see statistics tracking', + 'analysis analytics analyze chart data diagram find glass infographic investigate its jagged line look magnifying measure metrics over query search see sql statistics stats tracking trends upward with', QuestionAnswer: - 'bubble chat comment communicate conversation converse feedback message speech talk', + 'answer bubbles chat comment communicate conversation converse discussion faq feedback live message overlapping question speech support talk two', QuestionMark: - '? assistance help information mark punctuation question support symbol', - Queue: 'add collection layers multiple music playlist stack stream video', - QueueMusic: 'add collection playlist stream', + '? assistance center help information inquiry large mark punctuation question single support symbol this tooltip unknown what', + Queue: + 'add batch cards collection front layers line multiple music next playlist plus queue sign square stacked stream the to two up video waiting with', + QueueMusic: + 'add beside collection horizontal lines musical next note now playing playlist queue song stream up', QueuePlayNext: - '+ add arrow collection desktop device display hardware monitor music new playlist plus screen steam stream symbol tv video', + '+ add and arrow beside cast collection desktop device display hardware monitor music new next playlist plus pointing queue rectangular right screen sign steam stream symbol tv up video with', Quickreply: - 'bubble chat comment communicate electric energy fast instant lightning message speech thunderbolt', - Quiz: '? assistance faq help information mark punctuation question support symbol test', - Radar: 'detect military near network position scan', + 'auto bubble canned chat comment communicate corner cut electric energy fast instant into its lightning message quickreply response speech thunderbolt with', + Quiz: '? app assessment assistance cards exam faq front help information mark punctuation questionnaire quiz square stacked support symbol test the trivia two with', + Radar: + 'and at center circles concentric detection diagonal dot military nearby network position proximity radar scan slash sonar surveillance the tracking with', Radio: - 'antenna audio device frequency hardware listen media music player signal tune', + 'am antenna audio box broadcast device dot fm frequency handle hardware listen media music on player radio signal speaker top transistor tune with', RadioButtonChecked: - 'application bullet circle components design form interface off point record screen selected toggle ui ux website', - RadioButtonUnchecked: 'bullet circle deselected form off point record toggle', + 'application bullet button centered checked choice choose circle components design form inside interface off option point radio record screen selected single smaller toggle ui ux website with', + RadioButtonUnchecked: + 'bullet button choice choose circle deselected empty form inside markings not off option point radio record toggle unchecked unselected with', RailwayAlert: - '! attention automobile bike cars caution danger direction error exclamation important maps mark notification public scooter subway symbol train transportation vehicle vespa warning', - RamenDining: 'breakfast dinner drink fastfood lunch meal noodles restaurant', - RampLeft: 'arrows directions maps navigation path route sign traffic', - RampRight: 'arrows directions maps navigation path route sign traffic', - RateReview: 'chat comment feedback message pencil stars write', + '! alert attention automobile beside bike cars caution circle danger delay direction disruption error exclamation front important maps mark notification public railway scooter service subway symbol train transit transportation vehicle vespa warning with', + RamenDining: + 'above asian bowl breakfast chopsticks dining dinner drink fastfood japanese lunch meal noodles ramen restaurant resting soup with', + RampLeft: + 'arrows diagonal directions freeway from highway into left line lower maps merge merging navigation on-ramp path road route shorter sign the traffic upward with', + RampRight: + 'arrows diagonal directions freeway from highway into line lower maps merge merging navigation on-ramp path right road route shorter sign the traffic upward with', + RateReview: + 'and bubble chat comment feedback horizontal inside leave line message pencil product rate rating review speech stars testimonial with write', RawOff: - 'alphabet character disabled enabled font image letters original photography slash symbol text type', + 'alphabet by camera character crossed diagonal disabled enabled font format image jpeg letters mode off original photography raw slash symbol text type', RawOn: - 'alphabet character disabled enabled font image letters off original photography slash symbol text type', - ReadMore: 'arrow text', + 'alphabet block bold camera character disabled dslr enabled font format image letters off original photography raw slash symbol text type unprocessed', + ReadMore: + 'arrow beside continue details expand horizontal lines more reading right-pointing see show stacked text three view', RealEstateAgent: - 'architecture broker hand home house loan mortgage property residence residential sales social', - Receipt: 'bill credit invoice paper payment sale transaction', - ReceiptLong: 'bill check document list paperwork record store transaction', + 'agent architecture beside briefcase broker buying estate hand holding home house housing listing loan mortgage property realtor residence residential sales shape small social up', + RebaseEdit: + 'and arrow branching circles commit connected control edit git history off pencil rebase source third two version with', + Receipt: + 'and bill bottom checkout credit edge horizontal invoice lines order paper payment proof purchase receipt rectangular sale slip summary text transaction with zigzag', + ReceiptLong: + 'and bill check corner curled document folded history horizontal itemized lines list long order paperwork purchase receipt record slip store text transaction with', RecentActors: - 'account avatar cards carousel contacts face human layers list people person profile thumbnail user', + 'account actors and avatar bars beside browsing cards carousel cast contacts face history human layers list people person profile recently rectangular silhouette thumbnail two user vertical viewed with', Recommend: - 'approved circle confirm favorite gesture hand like reaction social support thumbs well', + 'approved circle confirm containing endorse favorite feedback for gesture hand like positive reaction recommend social support thumbs upvote vouch well', RecordVoiceOver: - 'account dictation face human people person profile recording sound speaking speech transcript user', - Rectangle: 'four parallelograms polygons quadrilaterals recangle shape sides', + 'account and announcer beside curved dictate dictation face head human lines narration people person profile recording shoulders sound speaking speech text to transcript user voiceover wave with', + Rectangle: + 'bar block box four markings no oblong parallelograms plain polygons quadrilaterals recangle rectangle shape sides tool with', Recycling: - 'bio eco green loop recyclable recycle rotate sustainability sustainable trash', - Reddit: 'brand logo social', + 'arrows bin bio chasing circular curved each economy environment go green loop management other recyclable recycle recycling reuse rotate sustainability sustainable three trash triangular waste', + Reddit: + 'alien antenna board brand community discussion eyes forum head logo mouth online reddit rounded smiling snoo social two with', Redeem: - 'bill cart cash certificate coin commerce credit currency dollars giftcard money online payment present shopping', - Redo: 'arrow backward forward next repeat rotate undo', - ReduceCapacity: 'arrow body covid decrease down human people person social', + 'and bill bottom bow cart cash certificate code coin commerce coupon credit currency dollars giftcard horizontal loyalty money near online payment points present promo redeem reward shopping stripe the top voucher with', + Redo: 'action again arrow backward curved forward looping next redo repeat right rotate the to undo', + ReduceCapacity: + 'above arrow body capacity covid decrease distancing downward fewer group human limit middle occupancy of one people person reduce silhouettes size social the three with', Refresh: - 'around arrows direction inprogress loading navigation refresh renew right rotate turn', + 'an around arrowhead arrows circular direction end forming inprogress loading loop most navigation of one page refresh reload renew restart right rotate sync turn update with', RememberMe: - 'Android avatar device hardware human iOS identity mobile people person phone profile tablet user', - Remove: 'can delete line minus negative substract subtract trash', + 'Android auto avatar device hardware human iOS identity keep logged login mobile people person profile remember saved screen shape signed silhouette smartphone stay tablet the user with', + Remove: + 'away can collapse delete exclude hide horizontal line minus negative remove single substract subtract take trash', RemoveCircle: - 'allowed banned block can delete disable minus negative not substract trash', + 'allowed banned block cancel circle containing delete deny disable forbidden horizontal line minus negative not remove substract trash', RemoveDone: - 'approve check complete disabled enabled finished mark multiple off ok select slash tick yes', + 'approve by checkmarks complete crossed diagonal disabled done enabled finished message multiple off ok overlapping remove revert select slash status tick two uncheck undo unread yes', RemoveFromQueue: - 'collection desktop device display hardware list monitor screen steam stream television', + 'cancel casting center collection dequeue desktop device display from hardware horizontal line list minus monitor off remove screen steam stream take television the with', RemoveModerator: - 'certified disabled enabled off privacy private protection security shield slash verified', - RemoveRedEye: 'iris looking preview see sight vision', + 'admin by certified crossed demote diagonal disabled enabled moderator off permissions privacy private protection remove revoke security shape shield slash unprotect verified', + RemoveRedEye: + 'center eye icon iris looking password preview pupil red remove round see shape show sight the visible vision watch with', RemoveRoad: - '- cancel clear close destination direction exit highway maps minus new no stop street symbol traffic', + '- cancel clear closed dashed delete destination direction exit highway lane lines maps mark minus new no of one over remove road route stop street symbol them traffic two vertical with', RemoveShoppingCart: - 'card cash checkout coin commerce credit currency delete disabled dollars enabled minus off online payment remember ribbon save slash subtract tick', - Reorder: 'format lines list stacked', - Repartition: 'arrows data refresh renew restore table', - Repeat: 'arrows controls loop media music video', - RepeatOn: 'arrows controls loop media music video', - RepeatOne: '1 arrows controls digit loop media music numbers symbol video', - RepeatOneOn: 'arrows controls digit loop media music numbers symbol video', + 'by cancel card cart cash checkout clear coin commerce credit crossed currency delete diagonal disabled dollars empty enabled minus off online order payment remember remove ribbon save shopping slash subtract tick', + Reorder: + 'drag format four hamburger handle horizontal lines list menu rearrange reorder sort stacked', + Repartition: + 'arrows bars by connected curving data horizontal left looping rebalance redistribute refresh renew repartition restore restructure shuffle table the two', + Repeat: + 'arrows controls cycle directions forming loop media music opposite playback pointing rectangular recurring repeat track two video', + RepeatOn: + 'active arrows containing controls enabled forming loop media music playlist repeat rounded square toggle two video', + RepeatOne: + '1 around arrows controls digit forming loop media music numbers numeral one repeat single song symbol the track two video', + RepeatOneOn: + '1 active around arrows containing controls digit enabled forming loop media music numbers numeral one repeat rounded single song square symbol the track two video', Replay: - 'arrows controls music refresh reload renew repeat retry rewind undo video', + 'again arrowhead arrows back circular controls counterclockwise curving instant its music refresh reload renew repeat replay retry rewatch rewind starting to undo video', Replay10: - 'arrows controls digit music numbers refresh renew repeat rewind symbol ten video', + '10 around arrows back circular controls counterclockwise curving digit music numbers refresh renew repeat replay rewind seconds skip symbol ten the video', Replay30: - 'arrows controls digit music numbers refresh renew repeat rewind symbol thirty video', + '30 around arrows back circular controls counterclockwise curving digit music numbers refresh renew repeat replay rewind seconds skip symbol the thirty video', Replay5: - 'arrows controls digit five music numbers refresh renew repeat rewind symbol video', - ReplayCircleFilled: 'arrows controls music refresh renew repeat video', - Reply: 'arrow backward left mail message send share', - ReplyAll: 'arrows backward group left mail message multiple send share', + '5 around arrows back circular controls counterclockwise curving digit five music numbers refresh renew repeat replay rewind seconds skip symbol the video', + ReplayCircleFilled: + 'again arrows button circle containing controls counterclockwise curving filled music refresh renew repeat replay restart video watch', + Reply: + 'and answer arrow backward curved down email left message pointing quick reply respond send share', + ReplyAll: + 'all and arrows backward curved down everyone group left mail message multiple overlapping pointing recipients reply respond send share to two', Report: - '! alert attention caution danger error exclamation important mark notification octagon symbol warning', + '! abuse alert attention caution containing content danger error exclamation flag important incident mark notification octagon report sign stop symbol warning', ReportGmailerrorred: - '! alert attention caution danger exclamation important mark notification octagon symbol warning', + '! alert attention caution containing danger email exclamation gmailerrorred important mark notification octagon report shape spam symbol warning', ReportOff: - '! alert attention caution danger disabled enabled error exclamation important mark notification octagon offline slash symbol warning', + '! alert attention by caution crossed danger diagonal disabled dismiss enabled error exclamation ignore important mark notification octagon offline report shape slash symbol warning', ReportProblem: - '! alert announcement attention caution danger error exclamation feedback important mark notification symbol triangle warning', - RequestPage: 'data document drive file folders paper sheet slide writing', + '! alert announcement attention caution containing danger error exclamation feedback flag hazard important issue mark notification problem report sign symbol triangle warning', + RequestPage: + 'billing card center data document dollar drive file folders invoice page paper payment price request rounded sheet sign slide the with writing', RequestQuote: - 'bill card cash coin commerce cost credit currency dollars finance money online payment price shopping symbol', - ResetTv: 'arrows device hardware monitor television', - RestartAlt: 'around arrow inprogress loading reboot refresh renew repeat reset', + 'and bill card cash center coin commerce corner cost credit currency document dollars estimate finance folded money online payment price proposal quote request right shopping sign symbol the top with', + ResetTv: + 'arrows curved device display factory hardware inside left monitor pointing reboot reset restart screen settings television tv with', + RestartAlt: + 'alt around arrow circular counterclockwise curving cycle device gap inprogress loading over power reboot refresh renew repeat reset restart with', Restaurant: - 'breakfast cafeteria cutlery diner dining dinner eating food fork knife local lunch meal places spoon utensils', - RestaurantMenu: 'book dining eat food fork knife local meal spoon', + 'and breakfast by cafeteria cutlery diner dining dinner eatery eating food fork knife local lunch meal out places restaurant side spoon to utensils', + RestaurantMenu: + 'and book crossed dining eat food fork knife local meal menu options order restaurant spoon', Restore: - 'arrow backwards clock date device history home nest refresh renew reset reverse rotate schedule time turn undo', + 'around arrow backwards changes circular counterclockwise curving date device face hands history home hour minute nest recover refresh renew reset restore reverse roll rotate schedule time turn undo version with', RestoreFromTrash: - 'arrow backwards can clock date delete garbage history refresh remove renew reverse rotate schedule time turn up', + 'arrow backwards bring can clock date file from front garbage history item its recover refresh remove renew restore reverse rotate schedule time trash turn un-delete undelete upward with', RestorePage: - 'arrow data doc file history paper refresh rotate sheet storage undo web', + 'arrow center counterclockwise curved data document file history in page paper recover refresh restore revert rotate sheet storage the undo version web with', Reviews: - 'bubble chat comment communicate feedback message rate rating recommendation speech', - RiceBowl: 'dinner food lunch meal restaurant', + 'bubble chat comment communicate containing customer feedback insight message rate rating recommendation reviews sparkle speech star testimonial', + RiceBowl: + 'across asian bento bowl chopsticks dinner dish food lunch meal poke restaurant resting rice round shape the top two vertical with', RingVolume: - 'calling cell contact device hardware incoming mobile ringer sound telephone', - RMobiledata: 'alphabet character font letters symbol text type', - Rocket: 'astronaut fast quick spaceship speed', - RocketLaunch: 'astronaut fast quick spaceship speed takeoff', - RollerShades: 'blinds cover curtains nest open shutter sunshade', - RollerShadesClosed: 'blinds cover curtains nest shutter sunshade', + 'above calling cell contact device handset hardware incoming indicating lines mobile radiating ringer ringing ringtone settings short sound telephone volume with', + RMobiledata: + 'alphabet bar bold cellular character font icon indicator letters mobiledata network roaming signal single status symbol text type', + Rocket: + 'and astronaut at base boost fast fins flame launch performance quick rocket round spaceship speed startup the travel window with', + RocketLaunch: + 'and astronaut behind blast diagonally fast flame growth launch liftoff mission new quick rocket round spaceship speed start takeoff tilted trailing venture window with', + RollerShades: + 'at bar blinds closed control covering curtains from hanging home nest open pull rolled roller round shades shutter smart sunshade tab the top window with', + RollerShadesClosed: + 'at blackout blinds bottom closed cover curtains fully lowered nest open privacy pull roller shades shutter straight sunshade tab the window with', RollerSkating: - 'athlete athletic entertainment exercise hobby shoe skates social sports travel', + 'and athlete athletic boot derby entertainment exercise hobby inline laces on park rollerblading shoe skates skating social sports three top travel underneath wheels with', Roofing: - 'architecture building chimney construction estate home house real residence residential service shelter', - Room: 'destination direction gps location maps marker pin place spot stop', + 'above architecture building chimney construction contractor estate gable home house peaked real repair residence residential roofer roofing service shape shelter small square window', + Room: 'address destination direction geolocation gps hole maps marker meeting near pin place room round spot stop teardrop-shaped the venue with', RoomPreferences: - 'building doorway entrance gear home house interior office open settings', - RoomService: 'alert bell concierge delivery hotel notify', - Rotate90DegreesCcw: 'arrows direction editing image photo turn', - Rotate90DegreesCw: 'arrows ccw direction editing image photo turn', + 'bottom building configuration corner doorway entrance facility frame gear home house interior its office open overlapping preferences room settings shape with workspace', + RoomService: + 'alert base bell butler cloche concierge cover delivery dining domed flat food hotel lid meal notify room service serving tray', + Rotate90DegreesCcw: + '90 around arrows ccw counterclockwise curved degrees diamond direction editing flip image orientation photo quarter rotate shape turn with wrapping', + Rotate90DegreesCw: + '90 around arrows ccw clockwise curved degrees diamond direction editing flip image orientation photo quarter rotate shape turn with wrapping', RotateLeft: - 'around arrow circle dashed direction inprogress loading refresh reload renew reset turn', - RotateRight: 'around arrow circle direction inprogress loading refresh renew turn', - RoundaboutLeft: 'arrows directions maps navigation path route sign traffic', - RoundaboutRight: 'arrows directions maps navigation path route sign traffic', - RoundedCorner: 'adjust dashed edit shape square transform', - Route: 'directions maps path sign traffic', - Router: 'box cable connection device hardware internet network signal wifi', - Rowing: 'activity boat body canoe human people person sports water', + 'around arrow circle circular counterclockwise curving dashed direction inprogress left loading refresh reload renew reset rotate rotation turn undo', + RotateRight: + 'around arrow circle circular clockwise curving dashed direction inprogress loading redo refresh renew right rotate rotation turn', + RoundaboutLeft: + 'and around arrowhead arrows circle curving directions exiting gps left maps navigation path rotary roundabout route sign then to traffic up with', + RoundaboutRight: + 'and around arrowhead arrows circle curving directions exiting gps maps navigation path right rotary roundabout route sign then to traffic up with', + RoundedCorner: + 'adjust border corner curve dashed edit fillet one plain radius rounded shape square transform with', + Route: + 'connecting directions dot end itinerary journey maps one other path planner route sign to traffic trip waypoints winding zigzag', + Router: + 'access and antenna arcs box buttons cable connection device front hardware internet modem network point rectangular router signal small square the wifi wireless with', + Rowing: + 'activity boat body canoe crew forward holding human kayaking leaning long oar people person rowing seated sports water while', RssFeed: - 'application blog connection data internet network service signal website wifi wireless', - Rsvp: 'alphabet character font invitation invite letters plaît respond répondez sil symbol text type vous', - Rtt: 'call real rrt text time', - Rule: 'approve check done incomplete line mark missing no ok select tick validate verified wrong x yes', + 'application arcs blog bottom connection corner curved data dot feed from internet left network news radiating rss service signal subscribe syndication the website wifi wireless with xml', + Rsvp: 'alphabet attendance block bold character confirm event font guest invitation invite letters plaît respond response rsvp répondez sil symbol text type vous', + Rtt: 'accessibility beside call captioning deaf horizontal letter lines live real-time relay rrt rtt stacked telecommunication text', + Rule: 'above and approve audit checklist checkmark compliance criteria done grading guideline horizontal incomplete lines missing no ok other policy proofread quiz requirements rule select task tick to-do two validate verified with wrong x yes', RuleFolder: - 'approve cancel check close complete data document done drive exit file mark no ok remove select sheet slide storage tick validate verified yes', - RunCircle: 'body exercise human people person running', + 'and approved audit cancel checklist checkmark close complete compliance control data document done drive exit files folder front grading its no ok policy quality rejected remove review rule select sheet slide storage task tick validate verified with yes', + RunCircle: + 'activity and arms athlete bent body cardio circle drawn exercise fitness human inside jogging legs marathon people person running sprint step tracker with workout', RunningWithErrors: - '! alert attention caution danger duration exclamation important mark notification processing symbol time warning', + '! alert and attention beside caution chart cut danger download duration errors exclamation failed glitch important issue loading mark notification out partial percentage pie processing progress running symbol syncing time upload warning wedge with', RvHookup: - 'arrow attach automobile automotive back cars connect direction left maps public right trailer transportation travel truck van vehicle', + 'above arrows attach automobile automotive back campervan camping caravan cars connect curved directions hitch hookup left maps motorhome opposite pointing public recreational right road swap tow trailer transportation travel trip truck two vehicle with', SafetyCheck: - 'certified clock privacy private protection schedule security shield time verified', - SafetyDivider: 'apart distance separate social space', + 'background badge certified check clock containing face guard hands health inspection insurance privacy private protected protection safety scan schedule security shape shield small time trust verified with', + SafetyDivider: + 'apart barrier by covid distance distancing divider icons isolation line partition personal physical quarantine safety separated social space two vertical', Sailing: - 'entertainment fishing hobby ocean sailboat sea social sports travel water', - Sanitizer: 'bacteria bottle clean covid disinfect germs pump', + 'boating entertainment fishing floating hobby leisure lines marina nautical ocean on regatta sailboat sailing sails sea social sports travel triangular two vessel water wavy wind with yacht', + Sanitizer: + 'alcohol antiseptic bacteria beside bottle clean covid cross disinfectant drop falling gel germs hand hygiene medical on pump sanitizer soap sterilize with', Satellite: - 'bluetooth connection connectivity data device image internet landscape location maps mountains network photography picture scan service signal symbol wifi wireless--', - SatelliteAlt: 'alternative artificial communication space station television', - Save: 'data diskette document drive file floppy multimedia storage write', - SaveAlt: 'arrow diskette document down file floppy multimedia write', + 'aerial bluetooth connection connectivity corner data device frame gallery image internet landscape layer location maps mountains network peaks photography picture placeholder satellite scan scenery service signal square sun symbol terrain the thumbnail view wifi wireless-- with', + SatelliteAlt: + 'alternative and artificial beside broadcast communication curved gps orbit panels satellite signal solar spacecraft station telecom television tower transmission waves with', + Save: 'and archive backup circle confirm data diskette document drive face file floppy its keep label memory multimedia preserve rectangular retain save storage submit with write', + SaveAlt: + 'alt an archive arrow device diskette document download downward export file floppy inbox incoming into multimedia open-top pointing receive save shape tray write', SaveAs: - 'compose create data disk document draft drive editing file floppy input multimedia pencil storage write writing', - SavedSearch: 'find glass important look magnifying marked see star', + 'as bottom compose copy corner create data disk document draft drive duplicate editing file floppy input multimedia new pencil rename revise save storage the update version with write writing', + SavedSearch: + 'alert bookmark favorite find glass important inside its lens look magnifying marked pinned query saved search see starred watchlist with', Savings: - 'bank bill card cash coin commerce cost credit currency dollars finance money online payment piggy symbol', - Scale: 'measure monitor weight', - Scanner: 'copy device hardware machine', + 'account back bank bill budget card cash coin commerce cost credit currency deposit dollars egg finance fund investment its money nest online payment piggy profile retirement savings slot symbol wealth with', + Scale: + 'and balance bathroom bowl dial diet gauge kilograms kitchen loss mass measure monitor needle pounds scale top weigh-in weighing weight with', + Scanner: + 'across barcode body checkout copy device gun handheld hardware inventory its laser lines machine of point price qr sale scanner with', ScatterPlot: - 'analytics bars chart circles data diagram dot infographic measure metrics statistics tracking', - Schedule: 'calendar clock date history mark recent save time', - ScheduleSend: 'calendar clock date email letters remember share time', + 'analytics and bars bubble chart circles correlation data diagram different distribution dots heights infographic measure metrics plotting points positions round scattered separate statistics three tracking', + Schedule: + 'agenda alarm appointment calendar clock date deadline face hands history hour mark minute planner recent reminder round save schedule timer timetable with', + ScheduleSend: + 'airplane calendar clock date delayed delivery email face future its later letters message overlapping paper queued remember scheduled send share tail timed with', Schema: - 'analytics chart data diagram flow infographic measure metrics squares statistics tracking', + 'analytics architecture blueprint branching by connected database diagram flowchart hierarchy infographic lines linked measure metrics org schema sitemap squares statistics tracking tree workflow', School: - 'academy achievement cap class college education graduation hat knowledge learning university', + 'academy achievement alumni cap class college commencement degree diploma education graduation hanging hat knowledge learning mortarboard one school side student study tassel to university with', Science: - 'beaker chemical chemistry experiment flask glass laboratory research tube', + 'and base beaker biology chemical chemistry conical erlenmeyer experiment flask formula glass laboratory narrow physics potion research science scientist the top tube wide', Score: - '2k alphabet analytics bars character chart data diagram digit font infographic letters measure metrics numbers statistics symbol text tracking type', - Scoreboard: 'points sports', + '2k alphabet analytics and bars character chart data diagram digit font growth infographic letters line measure metrics numbers performance quality resolution rising rounded sales score square statistics stock symbol text the tracking type uptrend video with zigzag', + Scoreboard: + '0 2 and by counter digital digits display dots game leaderboard match panel points result scoreboard separated sports stats tally the tournament with', ScreenLockLandscape: - 'Android device hardware iOS mobile phone rotate security tablet', + 'Android auto-rotate center device hardware horizontal iOS in landscape locked mobile mode off orientation padlock phone rectangular screen security tablet the wide with', ScreenLockPortrait: - 'Android device hardware iOS mobile phone rotate security tablet', + 'Android auto-rotate cell center connection device erase hardware iOS locked mobile mode off orientation padlock password phonelink portrait privacy private protection rectangular safety screen secure security tablet tall the vertical with', ScreenLockRotation: - 'Android arrow device hardware iOS mobile phone rotate tablet turn', + 'Android around arrows auto-rotate curved device disable fixed hardware iOS landscape mobile off orientation padlock phone portrait prevent rotation screen shape tablet turn with', ScreenRotation: - 'Android arrow device hardware iOS mobile phone rotate tablet turn', + 'Android around arrows auto-rotate change curved device flip hardware iOS landscape mobile orientation phone portrait rectangular rotation screen tablet tilted turn', ScreenRotationAlt: - 'Android arrow device hardware iOS mobile phone rotate tablet turn', - ScreenSearchDesktop: 'Android arrow device hardware iOS lock monitor rotate web', + 'Android alt arrowheads arrows cycle device exchange forming hardware iOS loop mobile opposite phone pointing refresh reload repeat rotate rotation screen swap sync tablet turn two with', + ScreenSearchDesktop: + 'Android arrow browser computer desktop device engine find glass hardware iOS its laptop lock magnifying monitor pc rotate screen search stand website with', ScreenShare: - 'Android arrow cast chrome device display hardware iOS laptop mac mirror monitor steam streaming web window', - Screenshot: 'Android cell crop device hardware iOS mobile phone tablet', + 'Android and arrow bending broadcast call chrome desktop device display hardware iOS inside laptop mac mirror monitor presentation remote right screencast share sharing steam streaming the upward video web window with', + Screenshot: + 'Android brackets capture cell corner crop device framing grab hardware iOS image its middle mobile of phone print screenshot shape snapshot snip tablet the with', ScreenshotMonitor: - 'Android chrome desktop device display hardware iOS mac screengrab web window', - ScubaDiving: 'entertainment exercise hobby social swimming', - Sd: 'alphabet camera card character data device digital drive flash font image letters memory photo secure symbol text type', - SdCard: 'camera digital memory photos secure storage', + 'Android brackets capture chrome computer corner desktop device display framing hardware iOS its mac monitor print screengrab screenshot snapshot snip web window with', + ScubaDiving: + 'and deep diver diving entertainment exercise fins flippers hobby horizontally marine mask person scuba sea snorkeling social sport swimming underwater wearing', + Sd: 'alphabet and badge camera card character data device digital drive flash font icon image label letters memory microsd photo rounded secure square storage symbol text the type with', + SdCard: + 'and at camera card chip contact corner digital expansion flash memory microsd notched photos pins removable secure slot storage the three top with', SdCardAlert: - '! attention camera caution danger digital error exclamation important mark memory notification photos secure storage symbol warning', - SdStorage: 'camera card data digital memory microsd secure', - Search: 'filter find glass look magnifying see up', + '! alert and attention camera card caution corner corrupted danger digital error exclamation failure faulty important malfunction mark memory notched notification photos sd secure storage symbol warning with', + SdStorage: + 'and camera capacity card contact corner data device digital expansion flash memory microsd notched pins removable secure settings shape slightly storage three wider with', + Search: + 'at bottom browse discover explore filter find glass handle inspect lookup magnifying query right search see the tilted with zoom', SearchOff: - 'cancel clear close disabled enabled find glass look magnifying on see slash stop x', - Security: 'certified privacy private protection shield verified', - SecurityUpdate: 'Android arrow device download hardware iOS mobile phone tablet', + 'beside cancel clear close disabled enabled find glass its lens look magnifying mark no off on query remove results search see slash stop unavailable with x', + Security: + 'antivirus certified checkerboard cybersecurity data encryption firewall four guard into like privacy private protection quadrants safety shield split verified', + SecurityUpdate: + 'Android arrow available device download downward firmware hardware iOS install its mobile patch phone screen security software system tablet update with', SecurityUpdateGood: - 'Android checkmark device hardware iOS mobile ok phone tablet tick', + 'Android approve bold cell checkmark complete device done friendly good hardware iOS its mobile ok patched phone screen secure security select shape successful tablet tick to update validate verified with yes', SecurityUpdateWarning: - '! Android alert attention caution danger device download error exclamation hardware iOS important mark mobile notification phone symbol tablet', - Segment: 'alignment fonts format lines list paragraph part piece rules style text', - SelectAll: 'dashed selection square tool', + '! Android alert attention caution danger device download error exclamation hardware iOS important its mark mobile needed notification outdated phone required risk screen security software symbol tablet update vulnerable warning with', + Segment: + 'alignment audience bars customer data decreasing fonts format funnel group horizontal like lines list marketing of paragraph part piece rules sales segmentation stacked style target text three user width', + SelectAll: + 'bounding box center corners crop dashed highlight lasso made marquee of region selection shape smaller square the tool with', SelfImprovement: - 'body calm care chi human meditate meditation people person relax sitting wellbeing yoga zen', - Sell: 'bill card cart cash coin commerce credit currency dollars money online payment price shopping tag', - Send: 'chat email message paper plane reply right share telegram', - SendAndArchive: 'arrow download email letters save share', - SendTimeExtension: 'deliver dispatch envelop mail message schedule', + 'arms body breathing calm chi cross-legged exercise growth health human improvement lotus meditate meditation mental mindfulness people personal pose position relax resting self-care sitting spirituality therapy wellbeing with yoga zen', + Sell: 'bill card cart cash coin commerce corner credit currency discount dollars hole label merchandise money offer online payment price promotion retail sale sell shape shopping tag the with', + Send: 'airplane chat deliver dispatch email folded forward message paper pointing reply right send shape share sms submit telegram the to transmit wing with', + SendAndArchive: + 'airplane and archive arrow away box download downward email file into letters message move paper pointing put right save send share store with', + SendTimeExtension: + 'airplane clock deadline delay delivery dispatch envelop extend extension face follow later mail message overlapping paper pointing postpone right schedule send snooze timed up', SendToMobile: - 'Android arrow device export forward hardware iOS phone right share tablet', - SensorDoor: 'alarm security system', + 'Android arrow cast device export forward hand hardware iOS its mobile off out phone pointing push right send shape share side sync tablet to transfer with', + SensorDoor: + 'access alarm alert control detector doorknob doorway entry home one open rectangular round security sensor shape side small smart system with', SensorOccupied: - 'body connection fitbit human network people person response scan sensors signal smart wireless', - Sensors: 'connection network scan signal wireless', - SensorsOff: 'connection disabled enabled network scan signal slash wireless', - SensorWindow: 'alarm security system', + 'arc body circle connection dashed detection fitbit human inside made motion network occupancy occupied of people person presence proximity response room scan segments sensors signal smart wireless', + Sensors: + 'bluetooth both broadcasting center connection curved detector dot iot network ping radar radiating scan sensors sides signal the transmitter waves wireless with', + SensorsOff: + 'and connection curved diagonal disabled disconnected dot enabled mute network no offline scan sensors signal slash through tracking waves wireless with', + SensorWindow: + 'alarm alert break by contact crossbar detector divided entry glass home horizontal into pane sections security sensor smart system two window', SentimentDissatisfied: - 'angry disappointed dislike emoji emoticon emotions expressions face feelings frown mood person sad smiley survey unhappy unsatisfied upset', + 'and angry disappointed dislike displeased dissatisfied dot downturned emoji emoticon emotions expressions eyes face feedback feelings frown mood mouth negative person poor rating round sad sentiment slightly smiley survey two unhappy unsatisfied upset with', SentimentNeutral: - 'emotionless emotions expressions face feelings indifference mood okay person survey', + 'and average blank dot emotionless emotions expressions eyes face feedback feelings horizontal indifference meh mood mouth neutral okay person rating round sentiment so-so straight survey two with', SentimentSatisfied: - 'emoji emoticon emotions expressions face feelings glad happiness happy like mood person pleased smiley smiling survey', + 'and content curved dot emoji emoticon emotions expressions eyes face feedback feelings glad good happiness happy like mood person pleased positive rating round satisfaction satisfied sentiment small smiley smiling survey two upward with', SentimentSatisfiedAlt: - 'account emoji face happy human people person profile smile user', + 'account alt and cheerful curved delighted dot emoji eyes face grinning happy human joyful people person positive profile review round satisfied sentiment smile two upward user wider with', SentimentVeryDissatisfied: - 'angry disappointed dislike emoji emoticon emotions expressions face feelings mood person sad smiley sorrow survey unhappy unsatisfied upset', + 'and angry bad deep disappointed dislike dissatisfied distressed dot downturned emoji emoticon emotions expressions eyes face feedback feelings frown furious mood person rage rating round sad sentiment smiley sorrow survey terrible two unhappy unsatisfied upset very with', SentimentVerySatisfied: - 'emoji emoticon emotions expressions face feelings glad happiness happy like mood person pleased smiley smiling survey', - SetMeal: 'chopsticks dinner fish food lunch restaurant teishoku', - Settings: 'application change details gear information options personal service', + 'and best dot ecstatic emoji emoticon emotions excited expressions eyes face feelings glad grinning happiness happy laughing like mood mouth open overjoyed person pleased rating round satisfied sentiment smiley smiling survey thrilled two very wide with', + SetMeal: + 'beneath bento box chopsticks combo dinner fish fixed food horizontal inside japanese lines lunch meal menu rectangle restaurant rounded set shape sushi teishoku tray two with', + Settings: + 'adjust admin and application around center change cog configuration control details gear hole information options panel personal preferences rim rounded service settings teeth the with', SettingsAccessibility: - 'body details human information people personal preferences profile user', + 'above accessibility adaptive arms assistive body design details disability ergonomics human inclusive information out people personal preferences profile settings small squares standing stretched technology three universal user with', SettingsApplications: - 'change details gear information options personal save service', - SettingsBackupRestore: 'arrow backwards history refresh reverse rotate time undo', - SettingsBluetooth: 'connection connectivity device network signal symbol wifi', - SettingsBrightness: 'dark filter light mode sun', - SettingsCell: 'Android cellphone device hardware iOS mobile tablet', + 'applications change configuration control details frame gear information inside options panel personal preferences rounded save service settings shape square system teeth with', + SettingsBackupRestore: + 'an arrowhead backup backwards circular counterclockwise curving data down history pointing recovery refresh restore reverse revert roll rotate settings sync time undo with', + SettingsBluetooth: + 'above angular bluetooth bt connection connectivity device headphones icon network of pairing row rune settings signal small squares symbol three wifi wireless', + SettingsBrightness: + 'and auto brightness containing contrast dark day dimmer display filter frame half light mode night open rectangle rounded screen settings shaded split sun', + SettingsCell: + 'Android above cellphone cellular device hardware iOS mobile network of positioned row settings shape sim small squares tablet three', SettingsEthernet: - 'arrows brackets computer connection connectivity dots internet network parenthesis wifi', + 'and arrows between brackets cable code computer connection connectivity dots ethernet facing internet lan left network parenthesis right settings them wifi wired with', SettingsInputAntenna: - 'airplay arrows computer connection connectivity dots internet network screencast stream wifi wireless', + 'above aerial airplay angled antenna arcs arrows broadcast computer connection connectivity curved dots input internet legs network post radiating radio screencast settings signal stream tower tv waves wifi wireless with', SettingsInputComponent: - 'audio av cables connection connectivity internet plugs points video wifi', - SettingsInputComposite: 'cable component connection connectivity plugs points', + 'audio av cables component connection connectivity connectors home input internet jacks plugs points prong rca row settings single tapered theater three tips tv video wifi with', + SettingsInputComposite: + 'arranged av cable component composite connection connectivity connectors input jacks multi pin plugs points rca rows settings six tapered tips two with', SettingsInputHdmi: - 'cable connection connectivity definition high plugin points video wire', + 'along cable connection connectivity connector definition display edge hdmi high input interface its monitor multimedia pins plugin points port settings small top trapezoidal tv video wire with', SettingsInputSvideo: - 'cable connection connectivity definition plugin plugs points standard svideo,', - SettingsOverscan: 'arrows expand image photo picture', - SettingsPhone: 'call cell contact device hardware mobile telephone', - SettingsPower: 'information off save shutdown', + 'analog at cable circular connection connectivity connector definition din input inside mini notch pins plugin plugs points round settings several shape standard super svideo, top tv with', + SettingsOverscan: + 'adjustment arrows calibration display each edge expand fit frame image outward overscan photo picture pointing resize rounded screen settings square stretch toward tv with', + SettingsPhone: + 'above call cell contact device dial dots handset hardware mobile of preferences row settings shape small telecom telephone three', + SettingsPower: + 'above button circular information mode off power reboot restart row save settings shutdown sleep small squares standby symbol three turn', SettingsRemote: - 'bluetooth connection connectivity control device signal wifi wireless', + 'above and bluetooth button clicker connection connectivity control curved device infrared remote rounded settings signal top tv universal waves wifi wireless with', SettingsSuggest: - 'artificial automatic automation change custom details gear genai intelligence magic options recommendation service smart sparkle star suggestion system', - SettingsSystemDaydream: 'backup cloud drive storage', - SettingsVoice: 'microphone recorder speaker', + 'and artificial automatic automation beside change configure custom details gear genai intelligence learning machine magic optimize options recommendation recommended rounded service settings small smart sparkle stars suggestion system teeth with', + SettingsSystemDaydream: + 'ambient backup cloud containing daydream display drive frame idle mode puffy rectangle rounded screensaver settings shape sleep storage sync system', + SettingsVoice: + 'above assistant audio command control dots microphone of recognition recorder row settings small speaker speech stand three voice', SevenK: - '7000 7K alphabet character digit display font letters numbers pixels resolution symbol text type video', + '7000 7K 7k alphabet badge bold character digit display font hd label letters numbers picture pixels quality resolution rounded screen seven square streaming symbol text the type ultra video with', SevenKPlus: - '+ 7000 7K alphabet character digit display font letters numbers pixels resolution symbol text type video', + '+ 7000 7K 7k alphabet badge bold character digit display enhanced font high in letters numbers pixels plus premium quality resolution rounded seven square symbol text the type upgraded video with', SevenMp: - 'camera digit font image letters megapixels numbers quality resolution symbol text type', + '7 badge camera count digit font image letters megapixels mp numbers photo quality resolution rounded sensor seven size spec square stacked symbol text the type with', SeventeenMp: - 'camera digits font image letters megapixels numbers quality resolution symbol text type', + '17 badge camera count digits font image letters megapixels mp numbers photo quality resolution rounded sensor seventeen size spec square stacked symbol text the type with', SevereCold: - '! alert attention caution climate crisis danger diaster disaster error exclamation important notification snowflake warning weather winter', - ShapeLine: 'circle draw editing square', + '! alert and attention beside blizzard caution climate cold crisis danger diaster disaster error exclamation extreme freeze frost hypothermia ice important mark notification radiating risk severe snowflake spikes storm warning weather winter with', + ShapeLine: + 'and by circles connected connector diagonal drawing editing geometry lines node path rounded shapes square tool two vector', Share: - 'DISABLE_IOS android connect contect disable_ios link multimedia multiple network options send shared sharing social', - ShareLocation: 'dashed destination direction gps maps pin place stop tracking', - Shield: 'certified privacy private protection secure security verified', + 'DISABLE_IOS airdrop android branching broadcast by connected contect diagonal disable_ios distribute dots export forming lines link multimedia multiple network options send shared sharing social three to', + ShareLocation: + 'arc check-in circle dashed destination direction find friends gps inside live location made maps my of pin place segments share sharing stop tracking', + Shelves: + 'and bookcase bookshelf boxes different dividers inventory levels library on pantry rack shelves shelving small storage unit vertical warehouse with', + Shield: + 'and antivirus armor bottom certified defense edge flat guard insurance pointed privacy private protection safety secure security shape shield tip top verified with', ShieldMoon: - 'certified disturb do night not privacy private protection security verified', - Shop: 'arrow bag bill briefcase buy card cart cash coin commerce credit currency dollars google money online payment play purchase shopping store', - Shop2: 'add arrow buy cart google play purchase shopping', + 'bedtime center certified crescent disturb do focus hours in mode moon night not privacy private protection quiet security shape shield sleep the verified with', + Shop: 'app arrow bag bill briefcase business buy card cart cash center coin credit currency dollars e-commerce google marketplace money online payment play purchase shopping store the triangle with', + Shop2: + 'add and app arrow behind briefcase business buy cart center google marketplace out peeking play purchase second shape shopping storefront the triangle with', ShoppingBag: - 'bill business buy card cart cash coin commerce credit currency dollars money online payment storefront', + 'at bag bill boutique business buy card carry cart cash coin commerce credit currency curved dollars handles mall money online payment retail shopping storefront the top tote two with', ShoppingBasket: - 'add bill buy card cart cash checkout coin commerce credit currency dollars money online payment purchase', + 'add basket bill buy card cart cash checkout circle coin commerce credit currency dollars front grocery hamper handle its market money online payment picnic purchase shopping triangular wicker with woven', ShoppingCart: - 'add bill buy card cash checkout coin commerce credit currency dollars money online payment purchase', + 'add bill buy card cart cash checkout coin commerce credit currency dollars from grocery money online payment purchase push seen shopping side supermarket the trolley two wheeled wheels with', ShoppingCartCheckout: - 'arrow cash coin commerce currency dollars money online payment right', - ShopTwo: 'add arrow briefcase buy cart google play purchase shopping', - Shortcut: 'arrow direction forward right', - ShortText: 'brief comment document lines note write writing', + 'and arrow bracket buy cart cash checkout coin commerce complete currency dollars finalize money now online order payment place pointing proceed purchase right shopping through to two wheels with', + ShopTwo: + 'add and app arrow behind briefcase business buy cart center google marketplace play purchase second shape shopping storefront the triangle two wider with', + Shortcut: + 'arrow bending bypass curving detour direction fast forward link path point quick redirect right sharply shortcut then turn upward', + ShortText: + 'answer brief comment document field form horizontal length lines note of one other shorter subject text than title two unequal write writing', ShowChart: - 'analytics bars chart data diagram infographic line measure metrics presentation show statistics stock tracking', - Shower: 'bathroom closet home house place plumbing sprinkler wash water wc', - Shuffle: 'arrows controls music random video', - ShuffleOn: 'arrows controls music random video', + 'analytics and bars chart data diagram growth infographic jagged line market measure metrics peak performance presentation rising show statistics stock tracking trending uptrend upward with', + Shower: + 'bathe bathroom below closet drops falling home house hygiene on pipe place plumbing rinse round several showerhead spa sprinkler wash water wc with', + Shuffle: + 'arrows controls crossing diagonal each mix music order other over playlist randomize scramble shape shuffle swap two video', + ShuffleOn: + 'active arrows controls crossing diagonal enabled frame inside mix mode music randomize rounded shuffle square toggle two video', ShutterSpeed: - 'aperture camera duration image lens photography photos picture setting stop timer watch', - Sick: 'covid discomfort emotions expressions face feelings fever flu ill mood pain person survey upset', - SignalCellular0Bar: 'data internet mobile network phone speed wifi wireless', - SignalCellular4Bar: 'data internet mobile network phone speed wifi wireless', + 'aperture blades button camera circular control dslr duration exposure f-stop image inside lens mode photography photos picture setting shutter speed stopwatch timer with', + Sick: 'and covid discomfort dizzy drop emotions expressions eyes face feelings fever flu frown ill mood nauseous pain person queasy round shaped sick survey sweat symptom unwell upset vomit with', + SignalCellular0Bar: + 'bars cellular data dead empty indicator interior internet mobile network no phone reception right signal speed strength triangle wifi wireless with zone', + SignalCellular1Bar: + 'and bars bottom cellular empty indicator left low one poor reception rest right shaded signal small strength the triangle weak wedge with', + SignalCellular2Bar: + 'about bars bottom cellular corner fair from halfway indicator left medium reception right shaded signal strength the triangle two', + SignalCellular3Bar: + 'bars cellular empty good indicator leaving mostly reception right shaded signal small strength strong the three top triangle wedge', + SignalCellular4Bar: + '0 bars cellular completely corner data excellent four from full internet max mobile network phone reception right shaded signal speed strength strong to triangle wifi wireless', SignalCellularAlt: - 'analytics bar chart data diagram infographic internet measure metrics mobile network phone statistics tracking wifi wireless', - SignalCellularAlt1Bar: 'data internet mobile network phone speed wifi wireless', - SignalCellularAlt2Bar: 'data internet mobile network phone speed wifi wireless', + 'alt analytics bars cellular chart data diagram from height increasing infographic internet left measure meter metrics mobile network phone reception right signal statistics strength three to tracking vertical wifi wireless', + SignalCellularAlt1Bar: + 'alone alt analytics bars cellular chart data diagram infographic internet low measure metrics mobile network no other phone poor reception short signal single speed standing statistics strength tracking vertical weak wifi wireless with', + SignalCellularAlt2Bar: + 'alt analytics and bars beside cellular chart data diagram fair infographic internet it measure medium metrics mobile moderate network phone reception short signal speed statistics strength taller tracking vertical wifi wireless', SignalCellularConnectedNoInternet0Bar: - '! alert attention caution danger data error exclamation important mark mobile network notification phone symbol warning wifi wireless', - SignalCellularConnectedNoInternet1Bar: 'network', - SignalCellularConnectedNoInternet2Bar: 'network', - SignalCellularConnectedNoInternet3Bar: 'network', + '! alert attention badge bar bottom caution cellular connected connection connectivity danger data error exclamation important internet issue limited mark mobile network notification phone right shape signal symbol the triangle unavailable warning wifi wireless with', + SignalCellularConnectedNoInternet1Bar: + 'about badge bar bottom cellular connected connection connectivity data exclamation internet issue left limited mark network no right shaded signal the third triangle weak with', + SignalCellularConnectedNoInternet2Bar: + 'about badge bar bottom cellular connected connection connectivity data exclamation half internet issue left limited mark medium network no right shaded signal the triangle with', + SignalCellularConnectedNoInternet3Bar: + 'badge bar bottom cellular connected connection connectivity data exclamation internet issue limited mark mostly network no right shaded signal strong the triangle with', SignalCellularConnectedNoInternet4Bar: - '! alert attention caution danger data error exclamation important mark mobile network notification phone symbol warning wifi wireless', + '! alert attention badge bar bottom caution cellular completely connected connection connectivity danger data error exclamation full important internet limited mark mobile network notification phone right shaded signal symbol the triangle unavailable warning wifi wireless with', SignalCellularNodata: - 'clear internet mobile network offline phone quit remove wifi wireless x', + 'badge blocked bottom cellular clear connection disabled internet left mark mobile network nodata offline phone quit remove right shaded signal the triangle wifi wireless with x', SignalCellularNoSim: - 'camera card chip device disabled enabled memory network offline phone slash storage', - SignalCellularNull: 'data internet mobile network phone wifi wireless', + 'camera card cellular chip detected device diagonal disabled enabled error insert memory missing network not offline phone rounded shape signal sim slash storage through with', + SignalCellularNull: + 'cellular data drawn empty icon indicator interior internet mobile network no null phone reception right signal strength thin triangle wifi wireless with', SignalCellularOff: - 'data disabled enabled internet mobile network offline phone slash wifi wireless', - SignalWifi0Bar: 'cellular data internet mobile network phone wireless', - SignalWifi1Bar: 'network', - SignalWifi1BarLock: 'network', - SignalWifi2Bar: 'network', - SignalWifi2BarLock: 'network', - SignalWifi3Bar: 'network', - SignalWifi3BarLock: 'network', - SignalWifi4Bar: 'cellular data internet mobile network phone wireless', + 'airplane cellular data diagonal disabled enabled internet mobile mode network no offline phone reception shape signal slash through triangle turn wedge wifi wireless with', + SignalWifi0Bar: + 'and bars cellular connection data empty interior internet just mobile network no off phone signal strength thin wedge wifi wireless with', + SignalWifi1Bar: + 'and bar bottom left light low network one only poor rest shaded signal small strength the tip weak wedge wifi with', + SignalWifi1BarLock: + 'and badge bar bottom locked low network only padlock password private protected right secured shaded signal the tip weak wedge wifi with', + SignalWifi2Bar: + 'about bar bottom fair from halfway left light medium moderate network rest shaded signal strength the wedge wifi', + SignalWifi2BarLock: + 'about badge bar bottom halfway locked medium network padlock password private protected right secured shaded signal the wedge wifi with', + SignalWifi3Bar: + 'arc at bar good high left light mostly network only shaded signal strength strong the thin three top wedge wifi with', + SignalWifi3BarLock: + 'badge bar bottom locked mostly network padlock password private protected right secured shaded signal strong the wedge wifi with', + SignalWifi4Bar: + 'areas bar cellular completely connected data excellent full internet light max mobile network no phone shaded shape signal strength strong wedge wifi wireless with', SignalWifi4BarLock: - 'cellular data internet locked mobile network password phone privacy private protection safety secure security wireless', + 'badge bar bottom cellular completely data encrypted full home internet locked mobile network office padlock password phone privacy private protection right safety secured security shaded signal the trusted wedge wifi wireless with', SignalWifiBad: - 'bar cancel cellular clear close data exit internet mobile network no phone quit remove stop wireless', + 'and badge bar bottom cancel cellular clear close connection cut data error exit failed from internet mark mobile network notch phone problem quit remove right signal stop there unreliable wedge wifi wireless with', SignalWifiConnectedNoInternet4: - 'cellular data mobile network offline phone wireless x', + 'and badge bottom captive cellular completely connected connection data internet limited mark mobile network notch offline phone portal right shaded signal the unavailable wedge wifi wireless with x', SignalWifiOff: - 'cellular data disabled enabled internet mobile network phone slash speed wireless', + 'airplane cellular data diagonal disabled disconnect enabled internet mobile mode network no off phone shape signal slash speed through turn wedge wifi wireless with', SignalWifiStatusbar4Bar: - 'cellular data internet mobile network phone speed wireless', + 'cellular completely connected data full icon indicator internet mobile narrower network other phone shaded shapes signal slightly speed statusbar strong than wedge wifi wireless', SignalWifiStatusbarConnectedNoInternet4: - '! alert attention caution cellular danger data error exclamation important mark mobile network notification phone speed symbol warning wireless', + '! alert and attention badge bottom caution cellular completely connected connectivity danger data error exclamation important internet limited mark mobile network notch notification phone problem right shaded signal speed statusbar symbol the unavailable warning wedge wifi wireless with', SignalWifiStatusbarNull: - 'cellular data internet mobile network phone speed wireless', - SignLanguage: 'communication deaf fingers gesture hand', - Signpost: 'arrow direction left maps right signal signs street traffic', - SimCard: 'camera chip device memory network phone storage', + 'an cellular data drawn empty icon indicator interior internet mobile network no null phone signal speed statusbar strength thin wedge wifi wireless with', + SignLanguage: + 'american asl communication deaf fingers flat gesture hand hearing impaired interpreter language lower next open raised sign spread to with', + Signpost: + 'and arrow-shaped crossroads direction guidepost left maps navigate pointing right signal signpost signs street traffic two wayfinding with', + SimCard: + 'and camera card carrier cellular chip corner device grid identity insert memory mobile module network notched of phone sim slot small squares storage subscriber with', SimCardAlert: - '! attention camera caution danger digital error exclamation important mark memory notification photos sd secure storage symbol warning', - SimCardDownload: 'arrow camera chip device memory phone storage', + '! alert and attention camera card caution corner danger detected digital error exclamation faulty important issue mark memory notched notification photos problem sd secure sim storage symbol warning with', + SimCardDownload: + 'activate and arrow camera card chip corner device download downward esim install memory notched phone profile provisioning storage with', SingleBed: - 'bedroom double furniture home hotel house king night pillows queen rest sleep twin', - Sip: 'alphabet call character dialer font initiation internet letters over phone protocol routing session symbol text type voice', - SixK: '6000 6K alphabet character digit display font letters numbers pixels resolution symbol text type video', + 'at bedroom bunk cot dorm double frame from front furniture head home hostel hotel house king night pillows queen rest seen single sleep the twin with', + Sip: 'alphabet badge bold call character dialer font initiation internet letters over protocol rectangle rounded routing session sip softphone symbol telephony text the trunk type voice voip with', + SixK: '6000 6K 6k alphabet badge bold character digit display font hd label letters numbers picture pixels quality resolution rounded screen six square streaming symbol text the type ultra video with', SixKPlus: - '+ 6000 6K alphabet character digit display font letters numbers pixels resolution symbol text type video', + '+ 6000 6K 6k alphabet badge character digit display enhanced font high letters numbers pixels plus premium quality resolution rounded six square symbol text the type upgraded video with', SixMp: - 'camera digit font image letters megapixels numbers quality resolution symbol text type', + '6 badge camera count digit font image letters megapixels mp numbers photo quality resolution rounded sensor six size spec square stacked symbol text the type with', SixteenMp: - 'camera digits font image letters megapixels numbers quality resolution symbol text type', - SixtyFps: 'camera digit frames numbers symbol video', - SixtyFpsSelect: 'camera digits frame frequency numbers per rate seconds video', + '16 badge camera count digits font image letters megapixels mp numbers photo quality resolution rounded sensor sixteen size spec square stacked symbol text the type with', + SixtyFps: + '60 bold camera digit fps frames high large marks motion no numbers other per rate reading second setting sixty slow smooth symbol text video with', + SixtyFpsSelect: + '60 bars beneath camera digits fps frames frequency large numbers option per rate reading seconds selected setting sixty small smooth text three video with', Skateboarding: - 'athlete athletic body entertainment exercise hobby human people person skateboarder social sports', - SkipNext: 'arrow back controls forward music play previous transport video', - SkipPrevious: 'arrow backward controls forward music next play transport video', + 'arm athlete athletic body entertainment exercise extended extreme forward hobby human leaning longboard ollie one park people person riding skateboarder skateboarding skater social sports with', + SkipNext: + 'arrow back bar chapter controls episode forward music next play pointing previous right skip song to track transport triangle vertical video', + SkipPrevious: + 'arrow backward bar controls forward left music next play pointing previous restart rewind skip song to track transport triangle vertical video', Sledding: - 'athlete athletic body entertainment exercise hobby human people person sledge snow social sports travel winter', - Slideshow: 'movie photos play presentation square video view', - SlowMotionVideo: 'arrow circle controls dashed music play speed time', + 'activity athlete athletic body entertainment exercise extended forward hobby human legs luge people person sitting sledding sledge slide sliding snow social sports toboggan travel winter with', + Slideshow: + 'album bordered carousel corners display frame gallery inside movie photos playback presentation rounded slideshow square triangle video view with', + SlowMotionVideo: + 'arc arrow circle controls dashed effect frame inside lapse made motion music of playback rate segments slo-mo slow speed time triangle video', SmartButton: - 'action artificial automatic automation components composer custom function genai intelligence interface magic sparkle special stars ui ux website', + 'action artificial automatic automation beside button click components composer custom function genai generate intelligence interface magic rectangle rounded shape smart sparkle special stars ui ux wand website with', SmartDisplay: - 'airplay chrome connect device screencast stream television tv video wireless', - Smartphone: 'Android call cellphone chat device hardware iOS mobile tablet text', + 'airplay box chrome connect device display entertainment frame inside media player rectangle rounded screencast smart streaming television triangle tv video wide wireless', + Smartphone: + 'Android blank call cellphone chat corners device display handset hardware iOS mobile portable rectangular rounded shape smartphone tablet text touchscreen with', SmartScreen: - 'Android airplay cell connect device hardware iOS mobile phone screencast stream tablet video', - SmartToy: 'droid games robot', + 'Android airplay cell connect containing control dashboard device digital display dots frame hardware iOS kiosk mobile panel phone rectangle rounded row screencast signage smart stream tablet three video wide', + SmartToy: + 'ai and antenna artificial bumps chatbot droid eyes games head intelligence mouth on rectangular robotics round smart top toy two with', SmokeFree: - 'cigarette disabled enabled never no off places prohibited slash smoking tobacco warning zone', - SmokingRooms: 'allowed cigarette places smoke tobacco zone', - Sms: '3 bubble chat comment communication conversation dots message more service speech three', + 'air and area ban cigarette clean diagonal disabled enabled free lines lit never non-smoking off places prohibited quit rising slash smoke through tobacco warning with zone', + SmokingRooms: + 'above allowed area ashtray cigarette designated flat lines lit lounge permitted places resting rising rooms smoker smoking tobacco with zone', + Sms: '3 bubble chat comment communication containing conversation dots indicator instant message more pointed service short sms speech tail texting three typing with', SmsFailed: - '! alert announcement attention bubbles caution chat comment communicate communication conversation danger error exclamation feedback important mark message notification service speech symbol warning', - SnippetFolder: 'data document drive file sheet slide storage', - Snooze: 'alarm bell clock duration notification set timer watch', + '! alert announcement attention bubbles caution chat comment communicate communication containing conversation danger delivery error exclamation failed feedback important mark message notification pointed sending sent service sms speech symbol tail text undelivered warning with', + SnippetFolder: + 'clip code corner-fold data document drive file folder front its letter page saved shape sheet slide snippet storage template text with', + Snooze: + 'alarm and bells clock delay duration face letter mute nap notification postpone reminder set sleep snooze the timer top two watch with', Snowboarding: - 'athlete athletic body entertainment exercise hobby human people person social sports travel winter', + 'arms athlete athletic bent body entertainment exercise extreme forward hobby human leaning mountain people person riding slope snowboarding social sports travel winter with', + Snowing: + 'arranged blizzard cluster cold dots flurries grid of pattern precipitation scattered small snowfall snowing weather winter', Snowmobile: - 'automobile car direction skimobile social sports transportation travel vehicle winter', - Snowshoeing: 'body human people person sports travel walking winter', - Soap: 'bathroom clean fingers gesture hand wash wc', - SocialDistance: '6 apart body ft human people person space', - SolarPower: 'eco energy heat nest sunny', - Sort: 'filter find lines list organize', + 'and arctic automobile car direction from motor off-road seen side skimobile skis sled snowmobile social sports the transportation travel vehicle windshield winter with', + Snowshoeing: + 'and arm body hike human legs mid-stride outdoor people person raised snowshoeing snowshoes sports travel trekking walking wearing winter with', + Soap: 'above across bathroom bubbles clean fingers foam gesture handwashing horizontal hygiene lines palm sanitize soap the wc with', + SocialDistance: + '6 apart arrow between body covid distance distancing double ft headed human icons keep measure people person physical quarantine social space stretched them two with', + SolarPower: + 'above array clean eco energy green heat nest panel photovoltaic power rays renewable shining solar sunny with', + Sort: 'arrange below decreasing filter find horizontal length lines list of organize ranking reorder sequence small sort stacked three tick with', SortByAlpha: - 'alphabetize az by character font letters list order organize symbol text type', - Sos: 'font help letters save text type', - SoupKitchen: 'breakfast brunch dining food lunch meal', + 'abc alphabetical alphabetize and arrows ascending az between by character descending down font letters list names order organize pointing sort symbol text them to type up with', + Sos: 'blocky bold button distress emergency font help letters mayday out panic rescue row save signal sos spelling text type', + SoupKitchen: + 'above bank bowl breakfast brunch cafeteria charity dining food homeless kitchen ladle lunch meal resting rising shelter soup steam with', Source: - 'code composer content creation data document file folder mode storage view', - South: 'arrow directional down maps navigation', - SouthAmerica: 'america continent landscape place region south', - SouthEast: 'arrow directional down maps navigation right', - SouthWest: 'arrow directional down left maps navigation', - Spa: 'aromatherapy flower healthcare leaf massage meditation nature petals places relax wellbeing wellness', - SpaceBar: 'keyboard line', - SpaceDashboard: 'cards format grid layout rectangle shapes squares website', - SpatialAudio: 'music note sound', - SpatialAudioOff: '[offline] disabled enabled music note on slash sound', - SpatialTracking: '[offline] audio disabled enabled music note on slash sound', - Speaker: 'audio box electronic loud music sound stereo system video', - SpeakerGroup: 'audio box electronic loud multiple music sound stereo system video', + 'codebase composer content creation data dev document files folder front horizontal its like lines mode programming repository script source storage text two view with', + South: + 'arrowhead bearing bold cardinal compass directional downward maps navigation pointing single south straight with', + SouthAmerica: + 'american argentina brazil circle continent globe landscape latin map of place region shape south the with world', + SouthEast: + 'and arrow bearing compass diagonally directional downward east lower maps navigation pointing right se south the to trend', + SouthWest: + 'and arrow bearing compass diagonally directional downward left lower maps navigation pointing south sw the to trend west', + Spa: 'above aromatherapy bloom botanical flower healthcare layered leaf lotus massage meditation nature petals places relax rounded self-care shape spa treatment wellbeing wellness with', + SpaceBar: + 'at each end gap horizontal input keyboard line press short spacebar ticks vertical whitespace wide with', + SpaceDashboard: + 'admin and cards dashboard format grid into large layout left panels rectangle right shapes smaller space split squares two view website widget', + SpatialAudio: + '3d arcs atmos audio binaural curved dolby from head immersive music note of person radiating right sound spatial surround the upper wave with', + SpatialAudioOff: + '3d [offline] audio beside curved disabled ear enabled head level lines mode music note person positioned slash sound spatial standard stereo surround the wave with', + SpatialTracking: + '[offline] arcs audio beside curved disabled dynamic enabled head motion music note person sensor slash sound spatial stacked the tracking vertically wave with', + Speaker: + 'and audio box circle drivers electronic for hi-fi larger loudspeaker music pa ringed small sound stereo system tweeter video with woofer', + SpeakerGroup: + 'and array audio boxes circle each electronic group loud multiple multiroom music overlapping paired ringed set small sound speakers stereo surround system two video with', SpeakerNotes: - 'bubble cards chat comment communicate format list message speech text', + 'bubble cards chat comment communicate containing cue format horizontal lines list message notes pointed points presentation presenter script several speaker speech tail talking text with', SpeakerNotesOff: - 'bubble cards chat comment communicate disabled enabled format list message on slash speech text', - SpeakerPhone: 'Android audio cell device hardware iOS mobile sound tablet volume', + 'bubble captions cards chat comment communicate containing diagonal disabled enabled format hidden hide horizontal lines list message mute notes off slash speaker speech text through transcript turn with', + SpeakerPhone: + 'Android above audio call cell conference curved device hands-free hardware iOS loudspeaker mobile mode phone radiating shape sound tablet volume waves with', Speed: - 'arrow clock controls dial fast gauge measure motion music slow speedometer test velocity video', + 'acceleration arrow clock controls dial fast gauge measure motion mph music needle performance pointing right rpm slow speedometer test the throttle toward upper velocity video with', Spellcheck: - 'alphabet approve character checkmark edit font letters ok processor proofread select symbol text tick type word write yes', - Splitscreen: 'column grid layout multitasking row spaces two window', - Spoke: 'connection network radius', + 'accent alphabet approve autocorrect character checkmark correction edit font grammar language letters next ok processor proofread select spellcheck spelling symbol text tick tool type with word write yes', + Splitscreen: + 'above by column divided dual grid half layout multitasking one other outlines rectangle row side spaces splitscreen stacked two view window', + Spoke: + 'and arranged by center cluster connected connection dots hub lines network nodes point radius spoke three topology triangle', Sports: - 'athlete athletic basketball blowing coach entertainment exercise game hobby instrument live referee soccer social sound trophy warning whistle', - SportsBar: 'alcohol beer drink liquor pint places pub', - SportsBaseball: 'athlete athletic entertainment exercise game hobby social', - SportsBasketball: 'athlete athletic entertainment exercise game hobby social', + 'and athlete athletic basketball blowing call class coach education end entertainment exercise foul game gym hobby hole instrument live physical referee ring round soccer social sound sports start the trophy umpire warning whistle with', + SportsBar: + 'alcohol ale bar beer brewery draft drink foam handle happy hour liquor mug on pint places pub side sports tavern the top with', + SportsBaseball: + 'athlete athletic baseball batting both curved entertainment exercise game hobby home marks mlb on pitch run sides social softball sports stitch with', + SportsBasketball: + 'athlete athletic basketball court curved dividing dribble dunk entertainment exercise game hobby hoop its lines nba panel social sports surface with', SportsCricket: - 'athlete athletic ball bat entertainment exercise game hobby social', + 'across angled athlete athletic ball batsman bowler cricket diagonally entertainment exercise game hobby innings pitch round small social sports wicket', SportsEsports: - 'asset console controller device entertainment gamepad gaming google handheld hardware hobby online playstation remote social stadia videogame xbox', + 'asset buttons console controller d-pad device entertainment esports gamepad gamer gaming google handheld hardware hobby joystick online playstation plus pro remote round shaped social stadia streamer tournament twitch videogame with xbox', SportsFootball: - 'american athlete athletic entertainment exercise game hobby social', + 'across american athlete athletic entertainment exercise football game gridiron hobby laced middle nfl oval pigskin quarterback social sports stitching the touchdown with', SportsGolf: - 'athlete athletic ball club entertainment exercise game golfer golfing hobby social', - SportsGymnastics: 'athlete athletic entertainment exercise hobby social', + 'athlete athletic ball club course dimples entertainment exercise fairway game golfer golfing hobby on pga putt resting social sports stand tee with', + SportsGymnastics: + 'acrobatics air arms athlete athletic balance beam entertainment exercise flexibility floor gymnastics high hobby into kicking leg one person raised routine social sports the tumbling with', SportsHandball: - 'athlete athletic body entertainment exercise game hobby human people person social', + 'arm athlete athletic body court entertainment exercise game goal handball hobby human jumping olympic one overhead people person raised social sports team throw toward with', SportsHockey: - 'athlete athletic entertainment exercise game hobby ice social sticks', + 'athlete athletic between crossed entertainment exercise face-off game hobby hockey ice nhl puck rink shot slap social sports sticks them two with', SportsKabaddi: - 'athlete athletic body combat entertainment exercise fighting game hobby human judo martial people person social wrestle wrestling', + 'athlete athletic body combat entertainment exercise fighting game grappling hobby human indian judo kabaddi martial one other people person raid reaching social sports tackle tag team toward two with wrestle wrestling', SportsMartialArts: - 'athlete athletic entertainment exercise hobby human karate people person social', + 'arms arts athlete athletic bent defense entertainment exercise fu high hobby human karate kickboxing kung martial people performing person self side social sports taekwondo with', SportsMma: - 'arts athlete athletic boxing combat entertainment exercise fighting game glove hobby martial mixed social', + 'arts athlete athletic boxing cage combat cuff entertainment exercise fighting game glove hobby martial mixed mma night octagon padded punch rectangular social sports ufc wide with wrist', SportsMotorsports: - 'athlete athletic automobile bike drive driving entertainment helmet hobby motorcycle protect social vehicle', - SportsRugby: 'athlete athletic ball entertainment exercise game hobby social', - SportsScore: 'destination flag goal', - SportsSoccer: 'athlete athletic entertainment exercise football game hobby social', + '1 across athlete athletic automobile bike car curved drive driving entertainment formula front helmet hobby motocross motorcycle motorsports profile protect race racing social speedway the vehicle visor with', + SportsRugby: + 'across athlete athletic ball curved egg-shaped entertainment exercise game hobby line-out oval pointed rugby scrum seam social sports tackle try with', + SportsScore: + 'checkered destination finish flag goal grid line mounted pattern pole race score sports victory winner with', + SportsSoccer: + 'across athlete athletic cup entertainment exercise fifa football game goal hobby its kick panels pentagon pitch shaped soccer social sports surface with world', SportsTennis: - 'athlete athletic ball bat entertainment exercise game hobby racket social', - SportsVolleyball: 'athlete athletic entertainment exercise game hobby social', - Square: 'draw four quadrangle shape sides', - SquareFoot: 'construction feet inches length measurement ruler school set tools', - SsidChart: 'graph lines network wifi', + 'ace an athlete athletic ball bat beside court entertainment exercise game head hobby oval racket serve small social sports tennis volley wimbledon with', + SportsVolleyball: + 'across athlete athletic beach circle court curved diagonal entertainment exercise game hobby its like lines net of olympic panel seams serve social spike sports surface team the volleyball with', + Square: + 'block box button draw four frame geometry markings no placeholder plain quadrangle rectangle shape sides square stop tile with', + SquareFoot: + 'along architecture area carpenter construction diagonal drafting edge estate feet flooring foot geometry inches its length marks measurement of real right-angle ruler school set shape size small sqft square tick tools unit with', + SsidChart: + 'analytics chart data graph jagged like lines network performance signal ssid stacked stock strength traces trend wifi zigzag', StackedBarChart: - 'analytics chart-chart data diagram infographic measure metrics statistics tracking', + 'analytics bars blocks chart-chart comparison dashboard dataviz diagram different each heights histogram infographic into measure metrics of report segmented split stacked statistics three tracking two vertical', StackedLineChart: - 'analytics data diagram infographic measure metrics statistics tracking', - Stadium: 'activity amphitheater arena coliseum event local star things ticket', - Stairs: 'down staircase stairway stairwell steps up', - Star: 'best bookmark favorite highlight ranking rate rating save toggle', + 'analytics chart comparison dashboard data diagonally diagram growth infographic jagged like lines measure metrics multiple overlapping parallel performance report rising stacked statistics together traces tracking trend two zigzag', + Stadium: + 'activity amphitheater and arena bleachers bottom bowl coliseum concert entrance event flags football for game gap local location oval shape small soccer sports stadium star things ticket top triangular venue with', + Stairs: + 'accessibility ascending building change containing descend diagonally down flight floor level of rounded shape square staircase stairs stairway stairwell steps up', + Star: 'achievement award best bookmark favorite five-pointed highlight night premium ranking rate rating save shape sky star toggle vip wish', StarBorder: - 'best bookmark favorite highlight outline ranking rate rating save toggle', + 'best bookmark border center empty five-pointed highlight hollow open outline ranking rate rating save shape star toggle unfavorited unfilled unselected wish with', StarBorderPurple500: - 'best bookmark favorite highlight outline ranking rate rating save toggle', + '500 and best bookmark border center colored five-pointed highlight hole hollow its material outline purple ranking rate rating save smaller star-shaped thick toggle unfavorited with', StarHalf: - '0.5 1/2 achievement bookmark favorite highlight important marked ranking rate rating reward saved shape special toggle', - StarPurple500: 'best bookmark favorite highlight ranking rate rating save toggle', + '0.5 1/2 3 achievement and average bookmark down favorite filled five-pointed half highlight important incomplete left marked middle on open partial ranking rate rating review reward right saved score shaded shape special split stars the toggle', + StarPurple500: + '500 best bookmark bottom colored cutout favorited five-pointed highlight hole into left material offset purple ranking rate rating save smaller star-shaped the toggle toward with', StarRate: - 'achievement bookmark favorite highlight important marked ranking rating reward saved shape special', + 'achievement app bookmark favorite feedback five-pointed highlight important marked quality ranking rate rating review reward saved score shape show special star to used', Stars: - 'achievement bookmark circle favorite highlight important like love marked ranking rate rating reward saved shape special', - Start: 'arrow keyboard next right', - StayCurrentLandscape: 'Android device hardware iOS mobile phone tablet', - StayCurrentPortrait: 'Android device hardware iOS mobile phone tablet', - StayPrimaryLandscape: 'Android current device hardware iOS mobile phone tablet', - StayPrimaryPortrait: 'Android current device hardware iOS mobile phone tablet', - StickyNote2: 'bookmark message paper text writing', - Stop: 'arrow controls music pause player square video', - StopCircle: 'controls music pause play square video', + 'achievement ai badge bookmark center circle effects favorite five-pointed generate highlight important its like love magic marked ranking rating reward saved shape sparkle special stars with', + Start: + 'arrow bar begin boot forward go initiate keyboard launch next onboarding play resume right-pointing start step to vertical', + StayCurrentLandscape: + 'Android area cellphone current device hardware horizontal iOS its landscape lock mobile mode open orientation rectangle representing rotate rotation rounded sideways smartphone stay tablet turned widescreen with', + StayCurrentPortrait: + 'Android area call cellphone chat current device hardware held iOS lock mobile mode open orientation portrait rectangle representing rotate rotation rounded screen smartphone stay tablet tall text upright vertical with', + StayPrimaryLandscape: + 'Android area current device hardware horizontal iOS its landscape main mobile mode open orientation primary rectangle representing rotate rounded sideways smartphone stay tablet turned widescreen with', + StayPrimaryPortrait: + '! Android alert area attention caution current danger device download error exclamation hardware held iOS important main mark mobile mode notification open orientation portrait primary rectangle representing rotate rounded screen security smartphone stay symbol tablet tall update upright vertical warning with', + StickyNote2: + 'and annotation bookmark bottom corner folded horizontal lines memo message notepad paper post-it reminder right square sticky taking text the to-do two with writing', + Stop: 'arrow cancel cease controls end halt markings media music no pause plain player recording shape square stop terminate video with', + StopCircle: + 'button cancel center circle controls end halt hole its media music pause play recording square stop terminate video with', StopScreenShare: - 'Android arrow cast chrome device disabled display enabled hardware iOS laptop mac mirror monitor offline slash steam streaming web window', - Storage: 'computer database drive memory network server', + 'Android arrow call cast chrome device diagonal disabled disconnect display enabled end hardware iOS inside laptop mac mirror monitor offline presentation rectangular screen shape share sharing slash small stand steam stop streaming through turn video web window with', + Storage: + 'backend bars cloud computer database disk dot drive each edge hard horizontal left memory near network rack servers small square stacked storage the three with', Store: - 'bill building business buy card cash coin company credit currency dollars e-commerce market money online payment purchase shopping storefront', + 'and awning bar between bill boutique building business buy card cash coin company credit currency dollars door e-commerce horizontal legs marketplace money online payment purchase retail shopping small square storefront them top two with', Storefront: - 'business buy cafe commerce market merchant places restaurant retail sell shopping stall', - StoreMallDirectory: 'building', - Storm: 'forecast hurricane temperature twister weather wind', - Straight: 'arrows directions maps navigation path route sign traffic up', - Straighten: 'length measurement piano ruler size', - Stream: 'cast connected feed live network signal wireless', - Streetview: 'gps location maps', + 'across and awning below boutique building business buy cafe commerce door market merchant places rectangular restaurant retail scalloped sell shopping small square stall storefront striped the top with', + StoreMallDirectory: + 'and awning bar between building business directory door horizontal legs map shopping small square storefront them top two wayfinding with', + Storm: + 'around center circular curling cyclone forecast hurricane its severe shape small spiral storm swirl target temperature tornado twister typhoon warning weather wind', + Straight: + 'ahead arrows continue directions go maps navigation north path pointing route sign straight traffic up vertical', + Straighten: + 'along dimensions edge evenly its length marks measurement piano ruler scale shape size spaced straighten tape tick tool top with', + Stream: + 'and arranged broadcast buffering circle connected dashes dots feed like live loading made media network of radially radio short signal spinner streaming waves wifi wireless', + Streetview: + '360 and folded front google gps head location maps marker navigation of panel panorama person photo pin shoulders streetview', StrikethroughS: - 'alphabet character cross doc editing editor font letters out spreadsheet styles symbol text type writing', - Stroller: 'baby care carriage children infant kid newborn toddler young', - Style: 'booklet cards filters options tags', - SubdirectoryArrowLeft: 'arrow down navigation', - SubdirectoryArrowRight: 'arrow down navigation', - Subject: 'alignment document email full justify lines list note text writing', + 'alphabet cancel character crossed delete doc editing editor font formatting horizontal letters line out spreadsheet strikethrough struck styles symbol text type with writing', + Stroller: + 'and baby buggy care carriage children hood infant kid newborn pram pushchair stroller toddler transport two walker wheels with young', + Style: + 'booklet cards category corner css design filters hole label near options overlapping price product small style tags theme two with', + SubdirectoryArrowLeft: + 'arrow bends down enter indent key left navigation nested point reply return sub-level subdirectory that then travels', + SubdirectoryArrowRight: + 'arrow bends down enter indent key navigation nested point reply return right sub-level subdirectory tab that then travels', + Subject: + 'alignment article bottom content description document email full horizontal justify lines list note of paragraph several shorter stacked subject text the topic with writing', Subscript: - '2 doc editing editor gmail novitas spreadsheet style symbol text writing', - Subscriptions: 'enroll media order playlist queue signup stack subscribe youtube', + 'baseline beside chemical doc editing editor footnote formula gmail h2o letter lower math notation novitas set small spreadsheet style subscript symbol text the with writing', + Subscriptions: + 'above and channel content enroll feed follow inside library like lines media order playlist queue rectangle signup stacked subscribe subscriptions triangle two video with youtube', Subtitles: - 'accessibility accessible captions character closed decoder language live media movies translate tv', + 'accessibility accessible bars box captions character closed containing decoder dialogue foreign horizontal language live media movies rectangle representing rounded subtitles text transcript translate tv two video', SubtitlesOff: - 'accessibility accessible caption closed disabled enabled language live slash translate video', + 'accessibility accessible bars captions closed containing diagonal disabled enabled hide horizontal language live mute no off rectangle rounded slash subtitles text through translate turned video with', Subway: - 'automobile bike cars maps metro rail scooter train transportation travel tunnel underground vehicle vespa', - Summarize: 'document form list menu note report summary', + 'arched automobile bike cars commute containing front headlights maps mass metro mrt public rail scooter shape subway train tram transit transportation travel tunnel two underground vehicle vespa with', + Summarize: + 'ai and bullet corner document dots folded form key list menu notes overview page points recap report stacked summarize summary three tldr vertically with', + Sunny: + 'all and around brightness center circular clear daytime light mode outward radiating rays short sky sunny sunshine weather with', + SunnySnowing: + 'and below dots falling flurries half like mixed on partly rays sleet small snowing sunny top weather winter with', Superscript: - '2 doc editing editor gmail novitas spreadsheet style symbol text writing', + '2 beside doc editing editor exponent footnote gmail high letter math notation novitas power reference set small spreadsheet squared style superscript symbol text trademark with writing', SupervisedUserCircle: - 'account avatar control face human parental parents people person profile supervisor', + 'account admin avatar badge beside child circle containing control face head human kids mode monitored oversight parental parents people person profile restricted silhouette small supervised supervisor their user with', SupervisorAccount: - 'administrator avatar control custodian face guardian human parental parents people person profile supervised user', - Support: 'assist help lifebuoy rescue safety', - SupportAgent: 'care customer face headphone person representative service', + 'account administrator avatar behind by control custodian face guardian human lead management manager other oversight parental parents people person positioned profile side silhouettes slightly supervised supervisor team two user', + Support: + 'around assist center cross-shaped customer cutouts desk emergency help hole lifebuoy preserver rescue ring safety saver sos support with', + SupportAgent: + 'agent call care center chat customer desk face headphone headset help live microphone operator person representative service support wearing with', Surfing: - 'athlete athletic beach body entertainment exercise hobby human people person sea social sports summer water wave', - SurroundSound: 'audio circle signal speaker system volume volumn wireless', - SwapCalls: 'arrows device direction mobile share', - SwapHoriz: 'arrows back direction forward horizontal', - SwapHorizontalCircle: 'arrows back direction forward', - SwapVert: 'arrows back direction down navigation sorting up vertical', - SwapVerticalCircle: 'arrows back direction down horizontal up', - Swipe: 'arrows fingers gesture hands touch', + 'athlete athletic beach body catching entertainment exercise extreme hobby human ocean people person riding sea social sports standing summer surfboard surfing water waves', + SurroundSound: + '1 5 arcs audio center circle containing curved dolby either home rounded side signal sound speaker square stereo surround system theater volume volumn wave wireless with', + SwapCalls: + 'and arrows calls device direction double down end exchange hold mobile other phone pointing s-shaped share swap switch transfer two up wavy with', + SwapHoriz: + 'and arrows back directions exchange forward horizontal left opposite pointing reorder right stacked swap switch toggle transfer two', + SwapHorizontalCircle: + 'arrows back circle containing convert directions exchange forward horizontal opposite pointing swap switch toggle transfer two', + SwapVert: + 'and arrows ascending back by descending directions down exchange navigation opposite pointing reorder side sorting swap switch two up vertical', + SwapVerticalCircle: + 'arrows back circle containing convert directions down exchange horizontal opposite pointing reorder sort swap switch two up vertical', + Swipe: + 'arrows below curved double-headed drag fingers gesture hands left mobile pointing right sweeping swipe tinder touchscreen with', SwipeDown: - 'arrows direction disable enable finger hands hit navigation strike swing swpie take', + 'arrows below bending curved direction disable downward drag enable finger gesture hands hit navigation notification pointing pull refresh scroll strike swing swipe swpie take with', SwipeDownAlt: - 'arrows direction disable enable finger hands hit navigation strike swing swpie take', - SwipeLeft: 'arrows finger hand hit navigation reject strike swing take', - SwipeLeftAlt: 'arrows finger hand hit navigation reject strike swing take', + 'above alt arrows circle direction disable downward-pointing drag drop enable finger gesture hands hit minimize navigation pull scroll sitting strike swing swipe swpie take', + SwipeLeft: + 'arrows away below curved decline discard dismiss finger hand hit left navigation pointing reject strike sweeping swing swipe take the tinder to with', + SwipeLeftAlt: + 'alt arrows away back circle decline discard dismiss extending finger from gesture hand hit left-pointing navigation reject strike swing swipe take with', SwipeRight: - 'accept arrows direction finger hands hit navigation strike swing swpie take', + 'accept approve arrows below curved direction finger gesture hands hit like navigation next pointing right strike sweeping swing swipe swpie take the tinder to with', SwipeRightAlt: - 'accept arrows direction finger hands hit navigation strike swing swpie take', + 'accept alt approve arrows circle direction extending finger from gesture hands hit like navigation next right-pointing strike swing swipe swpie take tinder with', SwipeUp: - 'arrows direction disable enable finger hands hit navigation strike swing swpie take', + 'arrows below bending curved direction disable drag enable finger gesture hands hit info more navigation pointing reveal scroll story strike swing swipe swpie take upward with', SwipeUpAlt: - 'arrows direction disable enable finger hands hit navigation strike swing swpie take', + 'alt arrows below circle direction disable drag enable finger gesture hands hit navigation scroll sitting story strike swing swipe swpie take upward-pointing', SwipeVertical: - 'arrows direction finger hands hit navigation strike swing swpie take verticle', - SwitchAccessShortcut: 'arrows direction navigation new north star symbol up', + 'arrows bending between curved direction down finger gesture hands hit navigation one pointing scroll strike swing swipe swpie take two up vertical verticle way with', + SwitchAccessShortcut: + 'accessibility ai arrows assistive beside curved direction magic navigation new north shapes shortcut small sparkle star suggestion switch symbol technology up', SwitchAccessShortcutAdd: - '+ arrows direction navigation new north plus star symbol up', + '+ accessibility add ai and arrows assistive beside create curved direction feature navigation new north plus shapes shortcut sign small sparkle star suggestion switch symbol technology up', SwitchAccount: - 'choices face human multiple options people person profile social stack user', - SwitchCamera: 'arrows photography picture', - SwitchLeft: 'arrows directional navigation toggle', - SwitchRight: 'arrows directional navigation toggle', - SwitchVideo: 'arrows camera photography videos', - Synagogue: 'ideology jewish religion shul spiritual temple worship', - Sync: '360 around arrows direction inprogress loading refresh renew rotate turn', - SyncAlt: 'arrows horizontal internet technology update wifi', + 'accounts as cards change choices circle different displaying face front human log multiple one options people person profile silhouette social square stack switcher the user with', + SwitchCamera: + 'across arrows back body camera double-headed flip front horizontal photography picture rotate selfie switch toggle with', + SwitchLeft: + 'align arrows away between directional each from gap left move navigate navigation one open other panel pointing sidebar switch them toggle triangles two with', + SwitchRight: + 'align arrows away between directional each from gap move navigate navigation one open other panel pointing right sidebar switch them toggle triangles two with', + SwitchVideo: + 'across arrows back call camera double-headed during flip front horizontal photography shape switch toggle videos with', + Synagogue: + 'arched building center domed entrance faith flanking house ideology jewish judaism place prayer religion roof sanctuary shul spiritual synagogue temple towers two under with worship', + Sync: '360 around arrows circular cloud curved direction forming inprogress loading loop refresh reload renew rotate spinner synchronize syncing turn two update', + SyncAlt: + 'alt arrows bidirectional data directions exchange horizontal internet opposite pointing refresh stacked swap sync technology transfer two update wifi', SyncDisabled: - '360 around arrows direction enabled inprogress loading off refresh renew rotate slash turn', + '360 around arrows circular cloud curved diagonal direction disabled enabled error failed inprogress loading loop offline refresh renew rotate slash sync through turn two with', SyncLock: - 'around arrows locked password privacy private protection renew rotate safety secure security turn', + 'around arrows backup center curved encrypted forming locked loop padlock password privacy private protected protection renew rotate safety secure security sync the turn two', SyncProblem: - '! 360 alert around arrows attention caution danger direction error exclamation important inprogress loading mark notification refresh renew rotate symbol turn warning', + '! 360 alert around arrows attention caution center connection curved danger direction error exclamation failed forming important inprogress issue loading loop mark notification problem refresh renew rotate symbol sync the turn two update warning', SystemSecurityUpdate: - 'Android arrow cell device down hardware iOS mobile phone tablet', + 'Android arrow cell device download downward firmware hardware iOS install its mobile patch phone screen security shape software system tablet update with', SystemSecurityUpdateGood: - 'Android approve cell check complete device done hardware iOS mark mobile ok phone select tablet tick validate verified yes', + 'Android approve cell checkmark complete device done good hardware iOS installed its mobile ok patched phone screen secure security select shape system tablet tick to update validate verified with yes', SystemSecurityUpdateWarning: - '! Android alert attention caution cell danger device error exclamation hardware iOS important mark mobile notification phone symbol tablet', + '! Android alert attention caution cell danger device error exclamation hardware iOS important its mark mobile needed notification outdated patch phone risk screen security shape software symbol system tablet update vulnerability warning with', SystemUpdate: - 'Android arrows cell device direction download hardware iOS install mobile phone tablet', - SystemUpdateAlt: 'arrow download export', - Tab: 'browser computer documents folder internet tabs website windows', - TableBar: 'cafe round', + 'Android arrows cell device direction download downward firmware hardware iOS install its mobile ota patch phone screen shape software system tablet update upgrade with', + SystemUpdateAlt: + 'alt arrow download downward export file import inbox into open pointing receive save shape system tray update with', + Tab: 'browser computer corner documents folder internet new page panel rectangle right rounded small tabs the top website windows with', + TableBar: + 'bar bistro cafe furniture legs on pedestal pub restaurant round splayed table top with', TableChart: - 'analytics bars data diagram grid infographic measure metrics statistics tracking', - TableRestaurant: 'bar dining', - TableRows: 'background grid layout lines stacked', - Tablet: 'Android device hardware iOS ipad mobile web', - TabletAndroid: 'device hardware iOS ipad mobile web', - TabletMac: 'Android apple device hardware iOS ipad mac mobile tablet web', - TableView: 'format grid group layout multiple', + 'analytics bars below chart columns dataset diagram divided grid infographic into measure metrics rectangle spreadsheet statistics table thick top tracking vertical view with', + TableRestaurant: + 'bar booking dining dinner furniture legs rectangular reservation restaurant seating standing table top two', + TableRows: + 'above background bars grid horizontal layout lines list one other rows stacked table three view', + Tablet: + 'Android android device hardware iOS inset ipad mobile portable rectangle rounded slate smaller tablet touchscreen web with', + TabletAndroid: + 'android bottom device galaxy hardware iOS ipad line mobile near portable rectangle rounded small tablet tall the touchscreen web with', + TabletMac: + 'Android apple at bottom button circular device hardware home iOS ipad mac mobile rectangle rounded small tablet the touchscreen web with', + TableView: + 'as calculator data displaying format front grid group layout multiple of one pages pattern spreadsheet square stack table the view with', TabUnselected: - 'browser computer dashed documents folder internet tabs website windows', - Tag: 'hashtag key media numbers pound social trend', - TagFaces: 'emoji emotion happy satisfied smile', - TakeoutDining: 'box container delivery food meal restaurant', + 'browser computer corner dashed documents empty folder inactive internet placeholder rectangle right small tabs the top unfocused unselected website windows with', + Tag: 'crossing hashtag key lines made media numbers of or pairs pound sharp sign social symbol topic trend two', + TagFaces: + 'and circle dot emoji emoticon emotion eyes faces grin happy laughing open satisfied smiley tag two wide with', + TakeoutDining: + 'bag box carryout container delivery dining doggy folded food go lid meal restaurant takeaway takeout top triangular with', TapAndPlay: - 'Android cell connection device hardware iOS internet mobile network nfc phone signal tablet to wifi wireless', - Tapas: 'appetizer brunch dinner food lunch restaurant snack', - Task: 'approve check complete data document done drive file folders mark ok page paper select sheet slide tick validate verified writing yes', + 'Android and bottom cell chromecast connection corner curved device from hardware iOS internet its left lines mobile network nfc pairing phone play radiating shape signal tablet tap wifi wireless with', + Tapas: + 'appetizer beside brunch dinner drinks food glass lunch menu on pieces plates restaurant round skewers small snack spanish stemmed tapas them two wine with', + Task: 'and approve assignment checklist checkmark completed corner data document done drive file folded folders item ok page paper select sheet slide task tick to-do validate verified with writing yes', TaskAlt: - 'approve check circle complete done mark ok select tick validate verified yes', + 'alt approve checkmark circle completed done inside ok select success task tick to-do validate verified with yes', TaxiAlert: - '! attention automobile cab cars caution danger direction error exclamation important lyft maps mark notification public symbol transportation uber vehicle warning yellow', - Telegram: 'brand call chat logo messaging voice', - TempleBuddhist: 'buddha buddhism ideology monastery religion spiritual worship', - TempleHindu: 'hinduism hindus ideology mandir religion spiritual worship', + '! above alert attention automobile cab cars caution circle containing danger direction error exclamation front important issue lyft maps mark notification public rideshare symbol taxi transportation uber vehicle view warning with yellow', + Telegram: + 'airplane app brand call chat instant logo message messaging messenger paper send shape telegram voice', + TempleBuddhist: + 'and archway asian buddha buddhism buddhist building chinese curved eaves ideology japanese monastery over pagoda peak religion roof shrine spiritual temple triangular with worship zen', + TempleHindu: + 'archway building entrance gopuram hinduism hindus ideology indian mandir over place religion sanctuary shrine spiritual stepped temple top tower with worship', TenMp: - 'camera digits font image letters megapixels numbers quality resolution symbol text type', - Terminal: 'application code emulator program software', - Terrain: 'geography landscape mountain', + '10 camera containing digits font image label letters megapixels mp numbers photo quality resolution square symbol ten text the type', + Terminal: + 'application bash cli code coding command console containing developer emulator greater-than like line program prompt rectangle rounded shell software symbol terminal tools underscore', + Terrain: + 'elevation geography hiking hills landscape layer map mountain overlapping peaks terrain topography triangular two', TextDecrease: - '- alphabet character font letters minus remove resize subtract symbol type', - TextFields: 'T add alphabet character font input letters symbol type', - TextFormat: 'A alphabet character font letters square style symbol type', - TextIncrease: '+ add alphabet character font letters new plus resize symbol type', - TextRotateUp: 'A alphabet arrow character field font letters move symbol type', + '- alphabet beside character decrease down font letters minus out reduce remove resize shrink sign smaller subtract symbol text type with zoom', + TextFields: + 'T add alphabet beside character editable fields font form input large letters size smaller symbol text type typography', + TextFormat: + 'A alphabet bar beneath case character font formatting horizontal letters options square style styling symbol text type typography underlined with', + TextIncrease: + '+ accessibility add alphabet beside bigger character enlarge font increase larger letters new plus resize sign symbol text type with zoom', + TextRotateUp: + 'A alphabet and angled arrow beside character diagonal field font letters move orientation rotate small symbol text tilted triangle type upward vertical', TextRotateVertical: - 'A alphabet arrow character down field font letters move symbol type verticle', + 'A alphabet an arrow beside character downward field flip font letters move orientation rotate sideways stack symbol text type upright vertical verticle', TextRotationAngledown: - 'A alphabet arrow character field font letters move rotate symbol type', + 'A alphabet and angledown arrow character diagonal downward field font left letters move pointing rotate rotation sloped symbol text the tilted to type with', TextRotationAngleup: - 'A alphabet arrow character field font letters move rotate symbol type', + 'A alphabet and angled angleup arrow character diagonal field font letters move pointing right rotate rotation sloped symbol text the tilted to type upward with', TextRotationDown: - 'A alphabet arrow character field font letters move rotate symbol type', + 'A alphabet arrow beside character downward facing field flip font letters move orientation rotate rotation symbol text tilted type vertical', TextRotationNone: - 'A alphabet arrow character field font letters move rotate symbol type', - Textsms: 'bubble chat comment communicate dots feedback message speech', - TextSnippet: 'data document file notes storage writing', - Texture: 'diagonal lines pattern stripes', - TheaterComedy: 'broadway event masks movie musical places show standup tour watch', - Theaters: 'film media movies photography showtimes video watch', - Thermostat: 'climate forecast temperature weather', - ThermostatAuto: 'A celsius fahrenheit temperature thermometer', + 'A above alphabet angle arrow character default field font horizontal letters move none normal orientation reset rightward rotate rotation symbol text type upright', + Textsms: + 'bubble chat comment communicate containing conversation dots feedback indicator instant message pointed speech tail textsms three typing with', + TextSnippet: + 'and article clip corner data document excerpt file folded horizontal lines memo notes page snippet storage text with writing', + Texture: + 'background covered diagonal fabric fill hatching lines material parallel pattern square stripes texture with', + TheaterComedy: + 'arts behind broadway comedy drama event front frowning masks movie musical one overlapping performing places show smile smiling standup theater theatrical tour tragedy two watch', + Theaters: + 'along and box cinema divider edges film horizontal its media movies office perforations photography rectangle reel screening showtimes square strip theaters video watch with', + Thermostat: + 'and bottom bulb climate control cooling forecast heating hvac mark near round shape small smart temperature thermometer thermostat top weather with', + ThermostatAuto: + 'A automatic beside capital celsius climate control fahrenheit hvac letter mode setting shape smart temperature thermometer thermostat', ThirteenMp: - 'camera digits font image letters megapixels numbers quality resolution symbol text type', + '13 camera containing digits font high image letters megapixels mp numbers photo quality resolution setting square symbol text the thirteen type', ThirtyFps: - 'alphabet camera character digit font frames letters numbers symbol text type video', + '30 alphabet camera capture character digit font fps frames high letters motion numbers per rate reading second slow speed symbol text thirty type video', ThirtyFpsSelect: - 'camera digits frame frequency image numbers per rate seconds video', + '30 and bars camera capture digits dot fps frame frequency image numbers per quality rate reading seconds selector setting small text thirty underneath video with', ThreeDRotation: - '3d D alphabet arrows av camera character digit font letters numbers symbol text type virtual_reality vr', + '3d D alphabet around arrows augmented av camera character circling curved digit dimensional font letters model numbers object orbit reading rotate rotation spin symbol text three type view virtual_reality vr with', ThreeGMobiledata: - 'alphabet cellular character digit font letters network numbers phone signal speed symbol text type wifi', + '3g alphabet cellular character digit font indicator letters mobiledata network numbers phone reading signal speed symbol text three type wifi', ThreeK: - '3000 3K alphabet character digit display font letters numbers pixels resolution symbol text type video', + '3000p 3K 3k alphabet character containing digit display font letters numbers pixels quality resolution screen square symbol text the three type video', ThreeKPlus: - '+ 3000 3K alphabet character digit display font letters numbers pixels resolution symbol text type video', + '+ 3000p 3K 3k alphabet character containing digit display enhanced font letters numbers pixels plus quality resolution screen square symbol text the three type video', ThreeMp: - 'camera digit font image letters megapixels numbers quality resolution symbol text type', + '3 basic camera containing digit font image letters low megapixels mp numbers quality resolution square symbol text the three type', ThreeP: - 'account avatar bubble chat comment communicate face human message party people person profile speech user', - ThreeSixty: 'arrow av camera direction reality rotate rotation virtual vr', + 'account avatar bubble chat comment communicate contact containing direct dm face group human message party people person pointed profile silhouette speech tail three user with', + ThreeSixty: + '360 around arrowhead av camera circular curving direction form loop panorama product reality rotate rotation sixty spin three to view virtual vr with', ThumbDown: - 'dislike downvote favorite fingers gesture hands ranking rate rating reject up', + 'bad bar beside dislike downvote favorite feedback fingers gesture giving hands helpful negative not poor ranking rate rating reaction reject small thumbs-down up vertical', ThumbDownAlt: - 'bad decline disapprove dislike feedback hand hate negative no reject social veto vote', + 'alt bad bar beside boo button decline disagree disapprove dislike feedback gesture giving hand hate negative no reaction reject small social thumbs-down unhelpful vertical veto vote', ThumbDownOffAlt: - '[offline] bad decline disabled disapprove dislike enabled favorite feedback filled fingers gesture hands hate negative no on ranking rate rating reject sad slash social veto vote', - ThumbsUpDown: 'dislike favorite fingers gesture hands rate rating vote', + '[offline] alt bad bar beside decline disabled disapprove disliked drawn enabled favorite feedback filled fingers gesture hands hate negative neutral not only outline ranking rate rating reject remove sad shape slash social thin thumbs-down toggle unselected vertical veto vote', + ThumbsUpDown: + 'by cons disagree dislike favorite feedback fingers gesture hands mixed options pros rate rating shown side this thumbs-down thumbs-up vote', ThumbUp: - 'approve dislike down favorite fingers gesture hands ranking rate rating success upvote', + 'approve bar beside dislike down endorse favorite feedback fingers gesture giving good hands helpful positive ranking rate rating reaction small success thumbs-up upvote vertical', ThumbUpAlt: - 'agreed approved confirm correct favorite feedback good hand happy like okay positive satisfaction social success vote yes', + 'agreed alt approved bar beside button cheer confirm correct endorse favorite feedback gesture giving good hand happy helpful like okay positive reaction satisfaction small social success thumbs-up vertical vote yes', ThumbUpOffAlt: - '[offline] agreed approved confirm correct disabled enabled favorite feedback fingers gesture good hands happy like okay positive ranking rate rating satisfaction slash social vote yes', - Thunderstorm: 'bolt climate cloudy lightning rainfall rainstorm weather', - Timelapse: 'duration motion photo timer video', + '[offline] agreed alt approved bar beside confirm correct disabled drawn enabled favorite feedback fingers gesture good hands happy liked neutral not okay only outline positive ranking rate rating remove satisfaction shape slash social thin thumbs-up toggle unselected vertical vote yes', + Thunderstorm: + 'below bolts climate cloudy electrical lightning rainfall rainstorm severe shape thunderstorm two warning weather with', + Timelapse: + 'circle clock duration elapsed inside loading motion photo pie-slice progress shaded time-lapse timelapse timer video wedge with', Timeline: - 'analytics chart data graph history line movement points tracking trending zigzag zigzap', + 'activity analytics chart connecting data dots feed graph history log milestones movement of points roadmap series timeline tracking trending zigzag zigzap', Timer: - 'alarm alart alert bell clock disabled duration enabled notification off slash stopwatch wait', + 'alarm alart alert bell button circle clock countdown disabled duration egg enabled hand kitchen notification off pointing set slash start stopwatch timer upward wait with', Timer10: - 'alarm alert bell clock digits disabled duration enabled notification numbers seconds ten watch', + '10s alarm alert bell camera clock countdown delay digits disabled duration enabled notification numbers photo reading seconds self-timer ten text watch', Timer10Select: - 'alphabet camera character digit font letters numbers seconds symbol ten text type', - Timer3: 'digits duration numbers seconds three', + '10s alphabet bold camera character countdown delay digit font letters numbers photo reading rounded seconds select self-timer setting symbol ten text type', + Timer3: + '3s camera countdown delay digits duration numbers photo reading seconds self-timer text three', Timer3Select: - 'alphabet camera character digit font letters numbers seconds symbol text three type', + '3s alphabet bold camera character countdown delay digit font letters numbers photo reading rounded seconds select self-timer setting symbol text three type', TimerOff: - 'alarm alart alert bell clock disabled duration enabled notification slash stopwatch', + 'alarm alart alert bell cancelled circle clock countdown diagonal disabled duration enabled notification off shape slash stopwatch through timer turn with', TimesOneMobiledata: - 'alphabet cellular character digit font letters network numbers phone signal speed symbol text type wifi', + '1x alphabet cellular character digit font indicator letters mobiledata multiplier network normal numbers phone rate reading signal speed symbol text times type wifi', TimeToLeave: - 'automobile cars destination direction drive estimate eta maps public transportation travel trip vehicle', + 'alert automobile cars commute departure destination direction drive estimate eta front headlights leave maps now public reminder round time traffic transportation travel trip two vehicle view when with', TipsAndUpdates: - 'alert announcement artificial automatic automation custom electricity genai idea information intelligence lamp lightbulb magic smart sparkle stars', - TireRepair: 'automobile cars gauge mechanic pressure vehicle', - Title: 'T alphabet character font header letters subject symbol text type', - Toc: 'content format lines list reorder stacked table text titles', + 'alert and announcement artificial automatic automation beside custom electricity feature genai hint idea information insight intelligence lamp lightbulb magic new pro shapes small smart sparkle stars suggestion tips updates with', + TireRepair: + 'automobile cars connected flat garage gauge mechanic pattern pressure repair service shop tire tread vehicle wheel with', + Title: + 'T alphabet capital caption character document font header heading headline letters page subject symbol text title type', + Toc: 'chapters contents dashes format horizontal index lined lines list menu of outline reorder right small stacked table text their three titles toc up with', Today: - 'agenda calendar date event mark month range remember reminder schedule time week', + 'agenda and calendar current daily date event grid hanging icon marked marker month page range remember reminder rings schedule small square the this time today top two view week with', ToggleOff: - 'application components configuration control design disable inable inactive interface selection settings slider switch ui ux website', + 'application checkbox components configuration control deactivate design disabled inable inactive interface knob left off pill-shaped positioned round selection settings slider state switch the toggle ui ux website with', ToggleOn: - 'application components configuration control design disable inable inactive interface off selection settings slider switch ui ux website', - Token: 'badge hexagon mark shield sign symbol', - Toll: 'bill booth card cash circles coin commerce credit currency dollars highway money online payment ticket', - Tonality: 'circle editing filter greyscale image photography picture shade shadow', - Topic: 'data document drive file folder sheet slide storage', - Tornado: 'crisis disaster natural rain storm weather wind', - TouchApp: 'arrow command fingers gesture hand long press swipe tap', - Tour: 'destination flag places travel visit', - Toys: 'car fan games kids windmill', - TrackChanges: 'bullseye circle evolve lines movement radar rotate shift target', - Traffic: 'direction light maps signal street', + 'activate application components configuration control design disable enabled inable inactive interface knob off pill-shaped positioned right round selection settings slider state switch the toggle ui ux website with', + Token: + '3d access and authentication badge blockchain branching circle coin crypto cube forming hexagon inside lines mark nft shape shield sign symbol token with', + Toll: 'and bill booth card cash checkpoint circles coin commerce credit currency dollars fee gate highway money online open overlapping payment ring road thicker ticket tollway two with', + Tonality: + 'and black circle contrast covered down editing exposure filter grayscale greyscale half horizontal image left middle monochrome photography picture plain right shade shadow split stripes the tonality white with', + Topic: + 'category data discussion document drive file folder forum front horizontal its lines matter of shape sheet slide storage subject text thread topic two with', + Tornado: + 'bands cloud crisis cyclone destructive disaster down funnel like narrowing natural point rain severe stacked storm tornado triangular twister warning weather wind', + TouchApp: + 'above app arrow circular click command fingers gesture hand interactive long pointing press ripple shape swipe tap touching touchscreen with', + Tour: 'checkpoint circle destination flag guided milestone mounted onboarding places pole sightseeing tour travel vertical visit walkthrough with', + Toys: 'and attached ball bent body by car children fan games kids on pinwheel plaything small spinner stick top toys two wheels windmill with', + TrackChanges: + 'aim bullseye center changes circle circular concentric crosshair evolve focus goal gps lines made movement of pin precision radar rings rotate shift target the tracking with', + Traffic: + 'and circular direction go intersection lights maps post road signal stacked stoplight street three traffic with', Train: - 'automobile cars direction maps public railway subway tram transit transportation trolley vehicle', - Tram: 'automobile cars direction maps public railway subway train transit transportation trolley vehicle', + 'and automobile below cars commuter direction front locomotive maps passenger public railroad railway round square subway train tram transit transportation trolley two vehicle view wheels windows with', + Tram: 'and antenna automobile cable cars direction front light maps public railway round streetcar subway top train tram transit transportation trolley vehicle view wheel window with', + Transcribe: + 'audio beside captioning curved dictation head lines person recognition silhouette sound speech text their to transcribe transcription voice wave with', TransferWithinAStation: - 'arrows body direction human left maps people person public right route stop transit transportation vehicle walk', - Transform: 'adjust crop editing image photo picture', - Transgender: 'female lgbt neutral neutrual social symbol', - TransitEnterexit: 'arrow direction maps navigation route transportation', - Translate: 'alphabet language letter speaking speech text translator words', + 'arrows beside body connecting directions figure horizontal human interchange left line maps opposite people person platform pointing public right route station stop subway transfer transit transportation two vehicle walking within', + Transform: + 'adjust and arrow bracket-shaped corner crop distort down editing frame from image one other photo picture pointing reshape resize scale tool transform up with', + Transgender: + 'and arrows below branching circle cross female flag from identity lgbt neutral neutrual non-binary pride social symbol the top transgender up-left up-right with', + TransitEnterexit: + 'alight and arrow boarding diagonally direction down enterexit entrance get left maps navigation off pointing route station stop the transit transportation', + Translate: + 'above alphabet asian bar beside character converter dictionary foreign google language letter multilingual speaking speech text the translate translation translator with words', TravelExplore: - 'browser earth find glass global globe look magnifying map network planet search see social space web world', + 'browser destination discover earth explore find glass global globe held look magnifying map network of part places planet planning research see social space travel trip web with world', TrendingDown: - 'analytics arrow change chart data diagram infographic measure metrics movement rate rating sale statistics tracking', - TrendingFlat: 'arrow change chart data graph metric movement rate right tracking', + 'analytics arrowhead bottom change chart data decline decrease diagram downturn downward falling infographic jagged loss measure metrics movement rate rating right sale statistics the tracking trending with', + TrendingFlat: + 'arrow chart data flat graph horizontal metric movement no plateau pointing rate right stable steady straight tracking trending unchanged', TrendingUp: - 'analytics arrow change chart data diagram infographic measure metrics movement rate rating statistics tracking', - TripOrigin: 'circle departure', + 'analytics arrowhead change chart data diagram growth improvement increase infographic jagged line measure metrics movement rate rating right rise statistics the top tracking trending uptrend upward with', + TripOrigin: + 'an button circle departure like map marker open origin radio ring route shape starting thick trip waypoint', + Trolley: + 'and below boxes cart grocery luggage on push shopping square top trolley two wheels with', Troubleshoot: - 'analytics chart data diagram find glass infographic line look magnifying measure metrics search see statistics tracking', - Try: 'bookmark bubble chat comment communicate favorite feedback highlight important marked message saved shape special speech star', - Tsunami: 'crisis disaster flood ocean rain sea storm water wave weather', - Tty: 'call cell contact deaf device hardware impaired mobile speech talk telephone text', - Tune: 'adjust audio controls customize editing filters instant mix music options settings sliders switches', + 'analysis analytics chart data debug diagnose diagnostics diagram find fix glass heartbeat infographic inspect issue line look magnifying measure metrics pulse running search see statistics through tracking troubleshoot with zigzag', + Try: 'ai bookmark bubble chat comment communicate favorite feedback generate highlight important inside magic marked message reply saved shape smart sparkle special speech star suggestion try with', + Tsunami: + 'above big coastal crisis curling disaster flood large lines natural ocean rain sea seismic shape smaller storm tidal tsunami water wave wavy weather', + Tty: 'accessibility assistive beside call cell contact deaf device dots grid handset hardware hearing impaired mobile of relay small speech square talk telephone teletypewriter text tty', + Tune: 'adjust along at audio controls customize different each editing equalizer filters horizontal instant marks mix music of options positions preferences row settings sliders switches toggle tune vertical with', Tungsten: - 'balance bright editing electricity indoor iridescent lamp lightbulb lighting settings white wp', + 'around balance bright burst camera color dashes editing electricity filament halogen incandescent indoor iridescent kelvin lamp lightbulb lighting like mode of photo radiating settings short temperature tungsten warm white with wp', TurnedIn: - 'archive bookmark favorite item label library reading remember ribbon save submit tag', + 'archive bookmark bottom edge favorite flagged following item label later library marker narrow notched pin pointed reading remember ribbon save submit subscribed tag turned with', TurnedInNot: - 'archive bookmark favorite item label library outline reading remember ribbon save submit tag', - TurnLeft: 'arrows directions maps navigation path route sign traffic', - TurnRight: 'arrows directions maps navigation path route sign traffic', - TurnSharpLeft: 'arrows directions maps navigation path route sign traffic', - TurnSharpRight: 'arrows directions maps navigation path route sign traffic', - TurnSlightLeft: 'arrows directions maps navigation path right route sign traffic', - TurnSlightRight: 'arrows directions maps navigation path route sharp sign traffic', - Tv: 'device display linear living monitor room screencast stream television video wireless', + 'add archive as bookmarks border bottom edge favorite flag follow item its just label library lines marker narrow notched outline pointed reading remember ribbon shown submit tag turned unmarked unsaved with', + TurnLeft: + '90 arrows bending corner degree detour directions gps indicating junction left maps navigation path route sign street then traffic turning upward waypoint', + TurnRight: + '90 arrows bending corner degree detour directions gps indicating junction maps navigation path right route sign street then traffic turning upward waypoint', + TurnSharpLeft: + 'acute after arrows bend directions hairpin left maps navigation path pointing route sharply sign switchback traffic turning up with zigzag', + TurnSharpRight: + 'acute after arrows bend directions hairpin maps navigation path pointing right route sharply sign switchback traffic turning up with zigzag', + TurnSlightLeft: + 'along and arrows bend curve directions fork gentle its left length maps merge navigation partway path pointing right route sign slightly traffic turn up veer with', + TurnSlightRight: + 'along and arrows bend curve directions fork gentle its length maps merge navigation partway path pointing right route sharp sign slightly traffic turn up veer with', + Tv: 'center chromecast device display entertainment flat linear living mirroring monitor mounted rectangular room screencast small stand stream television telly tv video wireless', TvOff: - 'Android chrome desktop device disabled enabled hardware iOS mac monitor slash television web window', + 'Android across and antenna chrome controls desktop device diagonal disabled enabled hardware iOS lines mac monitor no off old parental retro screen signal slash television the time turn tv two unplugged web window with', TwelveMp: - 'camera digits font image letters megapixels numbers quality resolution symbol text type', + '12mp and badge camera digits font image in letters megapixels numbers photo quality resolution rounded sensor size spec square stacked symbol text the twelve type', TwentyFourMp: - 'camera digits font image letters megapixels numbers quality resolution symbol text type', + '24mp and badge camera digits font four image in letters megapixels numbers photo quality resolution rounded sensor size spec square stacked symbol text the twenty type', TwentyOneMp: - 'camera digits font image letters megapixels numbers quality resolution symbol text type', + '21mp and badge camera digits font image in letters megapixels numbers one photo quality resolution rounded sensor size spec square stacked symbol text the twenty type', TwentyThreeMp: - 'camera digits font image letters megapixels numbers quality resolution symbol text type', + '23mp and badge camera digits font image in letters megapixels numbers photo quality resolution rounded sensor size spec square stacked symbol text the three twenty type', TwentyTwoMp: - 'camera digits font image letters megapixels numbers quality resolution symbol text type', + '22mp and badge camera digits font image in letters megapixels numbers photo quality resolution rounded sensor size spec square stacked symbol text the twenty two type', TwentyZeroMp: - 'camera digits font image letters megapixels numbers quality resolution symbol text type', - Twitter: 'brand logo social', - TwoK: '2000 2K alphabet character digit display font letters numbers pixels resolution symbol text type video', - TwoKPlus: '+ alphabet character digit font letters numbers symbol text type', + '20mp and badge camera digits font image in letters megapixels numbers photo quality resolution rounded sensor size spec square stacked symbol text the twenty type zero', + Twitter: + 'beak bird brand flight follow logo media pointed share small social spread tweet twitter wings with x', + TwoK: '1440p 2000 2K 2k alphabet character digit display font letters numbers pixels qhd quality resolution rounded square streaming symbol text two type video', + TwoKPlus: + '+ 1440p 2k alphabet character digit enhanced font in letters numbers plus premium qhd quality resolution rounded sign square symbol text two type upgraded with', TwoMp: - 'camera digit font image letters megapixels numbers quality resolution symbol text type', + '2mp and badge camera digit font image in letters megapixels numbers photo quality resolution rounded sensor size spec square stacked symbol text the two type', TwoWheeler: - 'automobile bicycle cars direction maps moped motorbike motorcycle public ride riding scooter transportation travel twom vehicle wheeler wheels', - Umbrella: 'beach protection rain sunny', - Unarchive: 'arrow inbox mail store undo up', - Undo: 'arrow backward mail previous redo repeat rotate', + 'automobile bicycle cars curved delivery direction from handlebars maps moped motorbike motorcycle public ride riding scooter seen share side the transportation travel twom vehicle wheeled wheeler wheels with', + TypeSpecimen: + 'beneath book character design font glyph guide letter like lines of pages pair preview sample sheet specimen stacked style system typeface typography with', + Umbrella: + 'beach brolly canopy curved forecast gear handle insurance monsoon open parasol pointed protection rain shade sunny tip top umbrella weather with', + Unarchive: + 'and arrow flat inbox lid line mail move of out recover restore retrieve rising square take top unarchive undo upward with', + Undo: 'action and arrow backward cancel ctrl curved indicating left looping mail pointing previous redo repeat reverse reversing revert rotate step undo z', UnfoldLess: - 'arrows chevron collapse direction expandable inward list navigation up', + 'above arrows chevron close collapse compress contract direction downward each expandable inward less list minimize navigation other panel pointing shrink toward unfold upward', UnfoldLessDouble: - 'arrows chevron collapse direction expandable inward list navigation up', - UnfoldMore: 'arrows chevron collapse direction down expandable list navigation', + 'above all arrows center chevrons close collapse compress direction double downward expandable inward less list minimize navigation pointing shrink the toward two unfold upward', + UnfoldMore: + 'above arrows away chevron collapse direction downward each expandable from list maximize more navigation open other panel pointing show stretch unfold upward', UnfoldMoreDouble: - 'arrows chevron collapse direction down expandable list navigation', + 'above all arrows away center chevrons collapse direction double downward expandable from list maximize more navigation open pointing show stretch the two unfold upward', Unpublished: - 'approve check circle complete disabled done enabled mark off ok select slash tick validate verified yes', + 'across angular approve check circle complete diagonal disabled done down draft enabled hidden inside live mark not offline ok private retracted ribbon-like select shape slash taken tick unpublished validate verified withdrawn yes', Unsubscribe: - 'cancel close email envelop esubscribe letters message newsletter off remove send', - Upcoming: 'alarm calendar mail message notification', + 'badge bottom cancel close corner decline emails envelope esubscribe its leave letters list message minus-sign newsletter notifications off opt out remove right send small stop turn unsubscribe with', + Upcoming: + 'above alarm and badge bar burst calendar cut edge event highlight into its like lines mail message new notch notification radiating reminder rounded scheduled short soon spotlight top upcoming with', Update: - 'arrow backwards clock forward future history load refresh reverse rotate schedule time', + 'and around arrowhead backwards check clock curved data face forward future history load new pointing refresh restore reverse right rotate schedule sync the time updates version with wrapping', UpdateDisabled: - 'arrow backwards clock enabled forward history load off on refresh reverse rotate schedule slash time', - Upgrade: 'arrow export instal line replace update', - Upload: 'arrows download drive', + 'and around arrow auto backwards clock curved diagonal disabled enabled face forward history load mode no offline paused refresh reverse rotate schedule shape slash sync the through time updates whole with', + Upgrade: + 'bar beneath boost export horizontal improve instal its level line narrow premium promote replace short tip update upgrade upward version with', + Upload: + 'arrows attach backup bar beneath cloud download drive export file horizontal its publish send tip upload upward wide with', UploadFile: - 'arrow data document download drive folders page paper sheet slide writing', - Usb: 'cable connection device wire', - UsbOff: 'cable connection device wire', - UTurnLeft: 'arrows directions maps navigation path route sign traffic u-turn', - UTurnRight: 'arrows directions maps navigation path route sign traffic u-turn', + 'add and arrow attach corner data document download drive file folded folders import inside page paper sheet slide submit top upload upward with writing', + Usb: 'and base branching cable circle connection connector data device drive flash peripheral plug port prongs symbol the thumb transfer usb wire with', + UsbOff: + 'and branching cable connection connector device diagonal disabled disconnected no off port prongs slash symbol through unplugged usb wire with', + UTurnLeft: + 'around arrows back change curved directions end left like loop maps navigation path pointing reverse roundabout route shaped sign the traffic u-turn upside-down with', + UTurnRight: + 'around arrows back change curved directions end like loop maps navigation path pointing reverse right roundabout route shaped sign the traffic u-turn upside-down with', Vaccines: - 'aid covid doctor drug emergency hospital immunity injection medical medication medicine needle pharmacy sick syringe vaccination vial', + 'aid booster clinic covid doctor drug emergency flu hospital immunity immunization injection jab medical medication medicine needle next pharmacy shot sick small syringe vaccination vaccines vial', VapeFree: - 'disabled e-cigarette enabled never no off places prohibited slash smoke smoking tobacco vaping vapor warning zone', + 'above and ban curling diagonal disabled e-cigarette electronic enabled free never non-smoking off places prohibited quit rising slash smoke stop through tobacco vape vaping vapor warning with zone', VapingRooms: - 'allowed e-cigarette never no places prohibited smoke smoking tobacco vape vapor warning zone', + 'above allowed area curling designated e-cigarette electronic lounge never no permitted places prohibited rising rooms smoke smoking tobacco vape vaping vapor warning with zone', Verified: - 'approve badge burst check complete done mark ok select star tick validate yes', + 'and approve authenticated badge blue center certified checkmark complete credential done edge endorsed in ok scalloped select starburst tick trusted validate verified with yes', VerifiedUser: - 'approve audit certified checkmark complete done ok privacy private protection security select shield tick validate yes', + 'account antivirus approve audit center certified checkmark complete done guaranteed identity in ok privacy private protection safe secure security select shape shield the tick trusted user validate verified with yes', VerticalAlignBottom: - 'alignment arrow doc down editing editor spreadsheet text type writing', + 'alignment anchor arrow bar beneath bottom dock downward editing editor horizontal move pointing snap spreadsheet text type vertical writing', VerticalAlignCenter: - 'alignment arrow doc down editing editor spreadsheet text type up writing', + 'above alignment and arrow bar below both cell center doc downward editing editor horizontal line middle pointing spreadsheet text the toward type upward vertical writing', VerticalAlignTop: - 'alignment arrow doc editing editor spreadsheet text type up writing', - VerticalShades: 'blinds cover curtains nest open shutter sunshade', - VerticalShadesClosed: 'blinds cover curtains nest roller shutter sunshade', - VerticalSplit: 'design format grid layout paragraph text website writing', + 'alignment an arrow bar beneath cell dock editing editor horizontal pointing snap spreadsheet text the top toward type upward vertical with writing', + VerticalShades: + 'blinds covering curtains drapes home nest open rectangular shades shape shown shutter single slat smart sunshade venetian vertical window with', + VerticalShadesClosed: + 'blinds closed cover curtains drawn home nest privacy rectangular roller several shades shape shown shutter slats smart sunshade together vertical window with', + VerticalSplit: + 'and by columns design divided format grid horizontal into layout lines panel paragraph plain rectangle sidebar split text two vertical view website with writing', Vibration: - 'Android alert cell device hardware iOS mobile mode motion notification phone silence silent tablet vibrate', + 'Android alert both buzz cell device from hardware iOS lines mobile mode motion mute notification phone radiating rectangular ringer shake shape short sides silence silent tablet vibrate vibration with', VideoCall: - '+ add camera chat conference filming hardware image motion new picture plus screen symbol videography', + '+ add call camera chat conference facetime filming frame hardware image meeting motion new picture plus screen shape sign start symbol the videography webcam with zoom', Videocam: - 'camera chat conference filming hardware image motion picture screen videography', - VideoCameraBack: 'image landscape mountains photography picture rear', + 'camcorder camera chat conference filming flap hardware image lens motion one picture recording screen shape side start triangular videocam videography webcam with', + VideoCameraBack: + 'back camera facing frame image inside landscape mode mountains outward photography picture rear shape the triangular video with', VideoCameraFront: - 'account face human image people person photography picture profile user', + 'account and camera face facing frame front head human image inside inward people person photography picture profile selfie shape shoulders the user video view with', VideocamOff: - 'camera chat conference disabled enabled filming hardware image motion offline picture screen slash videography', + 'camera chat conference diagonal disabled enabled filming hardware image mode motion mute offline picture privacy screen shape slash through turn videocam videography with', VideoChat: - 'bubble camera comment communicate facetime feedback message speech voice', - VideoFile: 'camera document filming hardware image motion picture videography', + 'bubble camera chat comment communicate containing facetime feedback live message shape small speech video voice', + VideoFile: + 'camera clip containing corner document file filming folded hardware image media motion movie mp4 page picture shape small top videography with', VideogameAsset: - 'console controller device entertainment esports gamepad gaming google handheld hardware hobby nintendo online playstation remote social stadia video xbox', + 'arcade asset buttons console controller d-pad device entertainment esports gamepad gaming google handheld hardware hobby joystick nintendo online playstation plus-shaped remote round social stadia two videogame with xbox', VideogameAssetOff: - 'console controller device disabled enabled entertainment esports gamepad gaming google handheld hardware hobby online playstation remote slash social stadia video xbox', - VideoLabel: 'device item screen window', - VideoLibrary: 'arrow collection play', + 'asset button console controller device diagonal disabled enabled entertainment esports gamepad gaming google handheld hardware hobby joystick mode no off online playstation plus-shaped remote slash social stadia through videogame with xbox', + VideoLabel: + 'bar blank caption device display frame inset item label like media monitor near player rectangle rectangular screen smaller subtitle the top video window with', + VideoLibrary: + 'arrow behind collection inside library media movies playlist rectangle second stacked triangle video watch with', VideoSettings: - 'change details gear information options play screen service window', - VideoStable: 'filming recording setting stability taping', - ViewAgenda: 'blocks cards design format grid layout website,stacked', - ViewArray: 'blocks design format grid layout website', - ViewCarousel: 'banner blocks cards design format grid images layout website', - ViewColumn: 'blocks design format grid layout vertical website', - ViewComfy: 'grid layout pattern squares', - ViewComfyAlt: 'cozy design format layout web', - ViewCompact: 'grid layout pattern squares', - ViewCompactAlt: 'dense design format layout web', - ViewCozy: 'comfy design format layout web', - ViewDay: 'blocks calendar cards carousel design format grid layout website week', - ViewHeadline: 'blocks design format grid layout paragraph text website', - ViewInAr: '3d augmented cube daydream headset square virtual_reality vr', - ViewKanban: 'grid layout pattern squares', - ViewList: 'blocks design format grid layout lines reorder stacked title website', + 'and badge bottom camera change configure corner details gear information inside options play preferences rectangle right screen service settings stream the triangle video window with', + VideoStable: + 'anti-shake containing filming gimbal image inside recording rectangle setting shot smaller stability stabilization stable steady taping tilted video', + ViewAgenda: + 'agenda bars between blocks cards design feed format gap grid horizontal layout list rounded schedule them timeline two view website,stacked with', + ViewArray: + 'array bars blocks column design equal evenly format gallery grid height layout narrow-wide-narrow of panel spaced three vertical view website', + ViewCarousel: + 'and banner bars blocks cards carousel center design either featured format grid images in layout narrow on shorter side slider slideshow tall three vertical view website wide with', + ViewColumn: + 'and bars blocks by columns design equal format grid height layout multi of side table three vertical view website width', + ViewComfy: + 'and bar below comfortable comfy grid horizontal layout pattern rectangle roomy small spaced squares top view wider with', + ViewComfyAlt: + '2x2 alt arranged comfortable comfy containing cozy design format four gaps grid layout roomy rounded spaced squares thin tiles view web white with', + ViewCompact: + 'and arranged columns compact dense evenly grid in layout many of pattern rows small spaced squares thumbnail tight view', + ViewCompactAlt: + '2x2 alt arranged compact containing dense design format four grid layout rounded small spaced squares tightly tiles view web white', + ViewCozy: + '2x2 arranged between comfy containing cozy design format four gaps grid layout roomy rounded spaced squares them tiles view web white wider with', + ViewDay: + 'and another bar blocks calendar cards carousel daily day design format grid horizontal layout schedule single stacked thick thin vertically view website week', + ViewHeadline: + 'article bars blocks design evenly format four grid headline horizontal layout like lines list of paragraph stacked text thin view website', + ViewInAr: + '3d around at augmented bracket camera corner cube daydream each headset in marks mixed model object scan shape square view virtual_reality vr with', + ViewKanban: + 'bars board by containing different grid heights kanban layout of pattern project rounded side squares task trello two vertical view white', + ViewList: + 'bar blocks bullet by design each followed format grid horizontal layout lines list menu reorder rows small square stacked table three title view website with', ViewModule: - 'blocks design format grid layout reorder squares stacked title website', + 'arranged blocks card design format grid in layout module of reorder rows six squares stacked three tile title two view website', ViewQuilt: - 'blocks design format grid layout reorder squares stacked title website', - ViewSidebar: 'design format grid layout web', + 'and blocks dashboard design different filling format grid irregular layout left magazine mosaic of ones quilt rectangles reorder right sizes smaller squares stacked tall the title view website', + ViewSidebar: + 'design format grid large layout left on panel right screen sidebar small split squares stacked the three vertically view web with', ViewStream: - 'blocks design format grid layout lines list reorder stacked title website', - ViewTimeline: 'grid layout pattern squares', - ViewWeek: 'bars blocks columns day design format grid layout website', - Vignette: 'border editing effect filter gradient image photography setting', + 'bars between blocks card design feed format gap grid horizontal layout lines list pill-shaped reorder stacked stream them title two view website with', + ViewTimeline: + 'activity arranged bars containing grid history horizontal increasing layout length log of pattern progress rounded squares staircase steps three timeline view', + ViewWeek: + 'and bars blocks by calendar columns day design equal format grid height layout of rounded schedule side three vertical view website weekly width', + Vignette: + 'against border camera center corners dark editing effect filter gradient image like oval photography rounded setting spotlight square the vignette white with', Villa: - 'architecture beach estate home house maps place real residence residential stay traveling vacation', - Visibility: 'eye on password preview reveal see shown visability', + 'airbnb and architecture beach beside building bungalow cottage estate flat-roofed holiday home house maps one over pitched place real residence residential section silhouette stay traveling vacation villa with', + Visibility: + 'center eye in on password peek preview pupil reveal round see shape shown the visability visibility visible watch with', VisibilityOff: - 'disabled enabled eye hidden invisible on password reveal see show slash view visability', + 'and diagonal disabled enabled eye hidden hide incognito invisible mode off password private pupil reveal round see shape show slash through view visability visibility with', VoiceChat: - 'bubble camera comment communicate facetime feedback message speech video', - Voicemail: 'call device message missed mobile phone recording', + 'audio bars bubble camera chat comment communicate containing facetime feedback forming message note sound speech talk vertical video voice waveform', + Voicemail: + 'answering bar by call cassette circles connected device horizontal like machine message missed mobile phone recording reels rounded two voicemail', VoiceOverOff: - 'account disabled enabled face human mute people person profile recording slash speaking speech transcript user', - Volcano: 'crisis disaster eruption lava magma natural', - VolumeDown: 'audio av control music quieter shh soft sound speaker tv', - VolumeMute: 'audio control music sound speaker tv', + 'accessibility account and curved diagonal disabled enabled face head human lines mute narration off over people person profile reader recording screen shoulders slash sound speaking speech through transcript user voice wave with', + Volcano: + 'ash crisis disaster eruption from geology hazard its lava like lines magma mountain natural peak radiating shape small sparks triangular volcano with', + VolumeDown: + 'audio beside control curved decrease down line lower music quieter shape shh small soft sound speaker turn tv volume wave with', + VolumeDownAlt: + 'alt arc beside curved decrease down lower quiet shape single soft sound speaker turn volume wave with', + VolumeMute: + 'audio beside by control itself lines music muted no quiet shape silent sound speaker tv volume wave with', VolumeOff: - 'audio av control disabled enabled low music mute slash sound speaker tv', - VolumeUp: 'audio control music sound speaker tv', - VolunteerActivism: 'donation fingers gesture giving hands heart love sharing', + 'audio av control diagonal disabled enabled low music mute no off shape silence slash sound speaker through turn tv volume with', + VolumeUp: + 'arcs audio beside control curved increase louder music raise shape sound speaker turn tv two up volume wave with', + VolunteerActivism: + 'above activism back bar beside cause charity donation fingers gesture give giving hands heart holding love nonprofit open philanthropy sharing support the vertical volunteer with', VpnKey: - 'access door entry login network passcode password register security signin signup unlock', + 'access and api bow credentials door entry key license login network notched on passcode password private register round security shaft shape signin signup teeth the unlock vpn with', VpnKeyOff: - '[offline] access disabled door enabled entry network on passcode password slash unlock', + '[offline] access and bow by credentials crossed diagonal disabled door enabled entry invalid key locked network notched out passcode password revoked round shape slash teeth unlock vpn with', VpnLock: - 'earth globe locked network password privacy private protection safety secure security virtual world', - Vrpano: 'angle image landscape mountains panorama photography picture view wide', - Wallpaper: 'background dashed image landscape photography picture', - Warehouse: 'garage industry manufacturing storage', + 'badge browsing corner earth encrypted geo-restricted globe locked network padlock password privacy private protection right safety secure security shape the top virtual vpn with world', + Vrpano: + '360 angle concave containing curved image landscape mountains panel panorama panoramic photography picture shape shot sides small triangular view vrpano wide with', + Wallet: + 'across banking billfold cards cash coin diagonal finance flap line money payment purse rounded shape the top wallet with', + Wallpaper: + 'background bracket-shaped circle containing corners dashed desktop frame home image landscape lock mountain photography picture screensaver small square triangular wallpaper with', + Warehouse: + 'and boxes building center distribution doorway factory garage industry inside inventory like logistics manufacturing open over peaked roof small squares stacked storage warehouse with', Warning: - '! alert announcement attention caution danger error exclamation feedback important mark notification problem symbol triangle', + '! alert announcement attention caution center danger error exclamation feedback hazard important mark notification problem risk shape sign symbol the triangle warning with', WarningAmber: - '! alert attention caution danger error exclamation important mark notification symbol triangle', - Wash: 'bathroom clean fingers gesture hand wc', - Watch: 'Android clock gadget iOS smartwatch time vr wearables web wristwatch', - WatchLater: 'clock date hour minute schedule time', - WatchOff: 'Android clock close gadget iOS shut time vr wearables web wristwatch', - Water: 'aqua beach lake ocean river waves weather', + '! alert amber as attention bordered caution danger drawn error exclamation hazard important inside mark notification risk shape symbol triangle warning with', + Wash: 'above bathroom clean droplets falling fingers gesture hand hygiene sanitize shape soap two washing water wc with', + Watch: + 'Android apple band clock face fitness gadget iOS mounted on round smartwatch timepiece tracker vr wearables web wide wristwatch', + WatchLater: + 'circle clock containing date face hands hour later minute pending reminder schedule snooze timer watch with', + WatchOff: + 'Android clock close diagonal disconnect gadget iOS no off shape shut slash smartwatch through time vr wearables web with wristwatch', + Water: + 'aqua beach horizontal hydration lake like lines liquid ocean pool ripples river sea several stacked swim water waves wavy weather', WaterDamage: - 'architecture building droplet estate house leak plumbing real residence residential shelter', - WaterDrop: 'drink droplet eco liquid nature ocean rain social', + 'architecture building claim damage droplet estate flood house inside insurance leak moisture mold plumbing real residence residential shape shelter water with', + WaterDrop: + 'curved drink droplet eco highlight humidity hydration inside liquid moisture nature ocean rain shape single small social tear water with', WaterfallChart: - 'analytics bar data diagram infographic measure metrics statistics tracking', - Waves: 'beach lake ocean pool river sea swim water', - WavingHand: 'fingers gesture goodbye greetings hello palm wave', + 'analytics arranged bars bridge cascade chart cumulative data diagram ending financial height increasing infographic like measure metrics of staircase statistics tall tracking waterfall', + Waves: + 'beach horizontal lake like lines ocean pool ripples river sea several stacked surf swim tide water waves wavy', + WavingHand: + 'beside curved emoji farewell fingers gesture goodbye greetings hand hello hi lines motion palm shape spread wave waving with', WbAuto: - 'A W alphabet automatic balance character editing font image letters photography symbol text type white wp', - WbCloudy: 'balance editing white wp', - WbIncandescent: 'balance bright editing lamp lightbulb lighting settings white wp', + 'A W alphabet and automatic balance camera character circle containing each editing font image letters mode other overlapping photography symbol text type wb white wp', + WbCloudy: + 'balance bumps camera cloudy editing mode overcast rounded shape wb weather white with wp', + WbIncandescent: + 'around balance bright camera dashes editing filament incandescent lamp lightbulb lighting radiating settings shape short small square top warm wb white with wp', WbIridescent: - 'balance bright editing electricity indoor lamp lightbulb lighting settings tungsten white wp', - WbShade: 'balance house lighting white', - WbSunny: 'balance bright lighting weather white', - WbTwilight: 'balance lighting noon sunset white', - Wc: 'bathroom closet female gender man person restroom toilet unisex wash water women', - Web: 'blocks browser internet page screen website www', + 'and around arranged balance bar bright camera cool diamond editing electricity fluorescent indoor iridescent lamp lightbulb lighting like radiating rectangular settings shapes small square tungsten wb white with wp', + WbShade: + 'across and balance camera diagonal house lighting lines mode of part setting shade shading shadow shape wb white window with', + WbSunny: + 'alternating and around balance bright circle clear dashes daylight diamond lighting like radiating rays shapes short sky sunny wb weather white with', + WbTwighlight: + 'above and bar camera circle dashes dawn diamonds dusk evening half horizontal radiating rising setting small sunrise sunset twighlight wb with', + WbTwilight: + 'above and balance bar circle dashes dawn diamonds dusk evening half horizontal lighting noon radiating rising small sunrise sunset twilight wb white with', + Wc: 'bathroom by closet female figures gender lavatory loo person powder public restroom side skirt standing the toilet triangular unisex wash water wc woman women', + Web: 'and bar blocks browser chrome divided frame internet into lower online page panels rectangular screen top two url website window www', WebAsset: - '-website application browser design desktop download image interface internet layout screen ui ux video window www', + '-website and application asset border browser center design desktop download embed empty frame image interface internet layout like media rectangle screen thick ui ux video widget window with www', WebAssetOff: - 'browser disabled enabled internet on screen slash webpage website windows www', - Webhook: 'api developer development enterprise software', - WebStories: 'google images logo', - Weekend: 'chair couch furniture home living lounge relax room seat', - West: 'arrow directional left maps navigation', - WhatsApp: 'brand call chat logo messaging voice', - Whatshot: 'arrow circle direction fire frames round trending', - WheelchairPickup: 'accessibility accessible body handicap help human person', + 'and asset border browser diagonal disabled embed enabled frame internet no offline rectangle screen slash thick through webpage website widget windows with www', + Webhook: + 'api automation by callback circles connected curved developer development enterprise forming integration lines loop small software three triangular trigger url webhook', + WebStories: + 'amp beside cards google images like lines logo of rectangular rounded short slideshow stack stories story two vertical visual web with', + Weekend: + 'and armchair arms back comfort couch cushioned furniture home leisure living lounge recliner relax room rounded seat shape sofa weekend with', + West: 'arrow cardinal compass directional left maps navigation pointing westward', + WhatsApp: + 'app bottom brand bubble call chat containing handset logo messaging messenger meta phone pointed rounded shape speech tail texting the voice whats with', + Whatshot: + 'arrow circle curved direction emoji fire flame frames popular round shape streak teardrop tip trending viral whatshot with', + WheelchairPickup: + 'accessibility accessible ada assistance beside body curbside disabled figure handicap help human mobility parking person pickup standing symbol wheelchair', WhereToVote: - 'approve ballot check complete destination direction done election location maps mark ok pin place poll select stop tick validate verified yes', - Widgets: 'app blocks box menu setting squares ui', - Wifi: 'connection data internet network scan service signal wireless', + 'approve ballot checkmark complete day destination direction done election inside location maps ok pin place polling select shape stop teardrop tick validate verified vote voting where with yes', + Widgets: + '45 and app arranged blocks box cluster dashboard degrees diamond gadgets home menu rotated screen setting squares three tiles together ui widgets', + WidthFull: + 'column distance each edge expand fill fit from full lines maximize rectangle rounded set short stretch to two vertical wide width with', + WidthNormal: + 'center close column default lines near normal positioned rectangle reset rounded standard together two vertical width with', + WidthWide: + 'broaden close column each edge expand lines rectangle rounded set to two vertical very widen width with', + Wifi: 'above arcs connection curved data hotspot indicator internet like network router scan service signal small stacked three triangle wifi wireless wlan', Wifi1Bar: - 'cellular connection data internet mobile network phone scan service signal wireless', + 'bar by cellular connection data internet itself like low mobile network phone poor scan service signal single small triangle weak wifi wireless', Wifi2Bar: - 'cellular connection data internet mobile network phone scan service signal wireless', + 'above arc bars cellular connection curved data fair internet like medium mobile network phone scan service signal triangle wifi wireless', WifiCalling: - 'cell connection connectivity contact device hardware mobile signal telephone wireless', - WifiCalling3: 'cellular data internet mobile network phone speed wireless', + 'above calling cell connection connectivity contact curved device fan handset hardware internet mobile shape signal telephone voip wifi wireless with', + WifiCalling3: + 'above arc calling cellular curved data handset internet mobile network phone quality shape signal small speed voip wifi wireless with', WifiChannel: - '(scan) [cellular connection data internet mobile] network service signal wireless', + '(scan) [cellular arch bandwidth channel connection data different frequency heights internet like mobile] mountain network of peaks pointed row selection service several shapes signal spectrum wifi wireless', WifiFind: - '(scan) [cellular connection data detect discover glass internet look magnifying mobile] network notice search service signal wireless', + '(scan) [cellular connection corner curved data detect discover fan find glass internet its look lower magnifying mobile] network notice overlapping scanner search service shape signal wifi wireless with', WifiLock: - 'cellular connection data internet locked mobile network password privacy private protection safety secure security service signal wireless', + 'badge bottom cellular connection curved data fan internet locked mobile network padlock password privacy private protected protection right safety secured security service signal the wedge wifi wireless with', WifiOff: - 'connection data disabled enabled internet network offline scan service signal slash wireless', + 'airplane arcs connection curved data diagonal disabled enabled internet mode network no offline scan service signal slash them through wifi wireless with', WifiPassword: - '(scan) [cellular connection data internet lock mobile] network secure service signal wireless', - WifiProtectedSetup: 'around arrows rotate', + '(scan) [cellular arcs badge bottom connection curved data internet key mobile] network padlock password right secured service signal stacked the wifi wireless with', + WifiProtectedSetup: + 'around arrows connect curved cycle forming like looping pairing protected quick refresh rotate setup shape symbol sync two wifi wps', WifiTethering: - 'cellular connection data internet mobile network phone scan service signal speed wireless', + 'arcs broadcast cellular central circular concentric connection data dot from hotspot internet like mobile network outward phone radiating scan service share signal speed tethering wifi wireless', WifiTetheringError: - '! alert attention caution cellular connection danger data exclamation important internet mark mobile network notification phone rounded scan service signal speed symbol warning wireless', + '! alert arcs attention beside caution cellular central circular concentric connection danger data dot error exclamation from hotspot important internet mark mobile network notification phone problem radiating rounded scan service signal small speed symbol tethering warning wifi wireless with', WifiTetheringOff: - 'cellular connection data disabled enabled internet mobile network offline phone scan service signal slash speed wireless', - Window: 'close glass grid home house interior layout outside', - WindPower: 'eco energy nest windy', - WineBar: 'alcohol cocktail cup drink glass liquor', - Woman: 'female gender girl lady social symbol women', - Woman2: 'female gender girl lady social symbol women', - Work: '-briefcase baggage business job suitcase', + 'arcs cellular central circular concentric connection data diagonal disabled dot enabled from hotspot internet mobile network offline phone radiating scan service signal slash speed tethering them through wifi wireless with', + Window: + 'by casement close cross divided equal four frame glass grid home house interior into layout outside panes rounded shape square window', + WindPower: + 'beside blades clean curved eco energy horizontal indicating lines nest pole power renewable short turbine windmill windy with', + WineBar: + 'alcohol bar cocktail cup drink glass goblet horizontal inside level line liquid liquor marking restaurant shape winery with', + Woman: + 'and female gender girl head icon ladies lady legs person restroom round sign silhouette social symbol tapering torso triangular two user with woman women', + Woman2: + 'and avatar female gender girl head icon ladies lady legs person restroom round sign silhouette social symbol tapering torso two user wider with woman women', + Work: '-briefcase baggage business career handle job office portfolio professional shape suitcase top with work', WorkHistory: - 'arrow backwards baggage briefcase business clock job pending recent refresh renew reverse rotate schedule suitcase time turn updates', - WorkOff: 'baggage briefcase business disabled enabled job on slash suitcase', + 'arrow backwards badge baggage bottom briefcase business career clock corner employment history job pending recent refresh renew reverse right rotate schedule shape small suitcase the time turn updates with work', + WorkOff: + 'baggage briefcase business day diagonal disabled enabled job leave office out shape slash suitcase through unemployed with work', WorkspacePremium: - 'certification degree ecommerce guarantee medal permit ribbon verification', - Workspaces: 'circles collaboration dot filled group outline team', - WrapText: 'arrow doc editing editor spreadsheet type write writing', + 'achievement and award badge below certification circle degree ecommerce guarantee inside medal permit premium quality ribbon seal shape star tail verification with workspace', + Workspaces: + 'arranged between circles cluster collaboration connected dots equal filled gaps group network nodes of outline size small team them three triangle with workspaces', + WorkspacesFilled: + 'arranged chart circles closely cluster collaboration connected diagram dots each equal filled group network nodes of org other size team three touching triangle venn workspaces', + WrapText: + 'arrow at back break curling decreasing doc editing editor end horizontal length lines looping of overflow spreadsheet text the type with word wrap write writing', WrongLocation: - 'cancel clear close destination direction exit maps no pin place quit remove stop', + 'address badge cancel clear close delete destination direction exit incorrect invalid location maps mark no pin place quit remove right shape stop teardrop the with wrong', Wysiwyg: - 'composer mode screen software system text view visibility website window', - X: 'brand logo social twitter', - Yard: 'backyard flower garden home house nature pettle plants', - YouTube: 'brand logo social video', + 'cms composer containing content document editor horizontal like lines mode page rich rounded screen several software square system text view visibility website window wysiwyg', + X: 'bars brand corp crossing diagonal elon form letter logo media musk social the to tweet twitter two x', + Yard: 'above backyard containing flower gardening home house landscaping lawn leaves nature outdoor petals pettle plants rounded space square stem with', + YouTube: + 'brand center google logo play rectangle rounded shape social streaming the triangle tube video watch with you', YoutubeSearchedFor: - 'arrow backwards find glass history inprogress loading look magnifying refresh renew restore reverse rotate see yt', + 'around arrow backwards curved find for glass history inprogress into loading look looping magnifying pointing recent refresh renew restore retry reverse rotate searched searches see youtube yt', ZoomIn: - 'bigger find glass grow look magnifier magnifying plus scale search see size', - ZoomInMap: 'arrows center destination location maps middle move place stop', + 'bigger enlarge find glass grow increase inside lens look magnifier magnifying plus scale search see sign size the with zoom', + ZoomInMap: + 'area arrows center collapse corner destination each fit focus four from inward location maps middle minimize move one place pointing screen stop the toward view zoom', ZoomOut: - 'find glass look magnifier magnifying minus negative scale search see size smaller', - ZoomOutMap: 'arrows center destination location maps middle move place stop', + 'decrease find glass inside lens look magnifier magnifying minus negative out reduce scale search see shrink sign size smaller the with zoom', + ZoomOutMap: + 'arrows away center corner destination each enlarge expand extent four from fullscreen location maps middle move one outward place pointing stop the toward view zoom', }; export default synonyms; diff --git a/docs/package.json b/docs/package.json index f9bf0dc24332ad..faace8bd633f63 100644 --- a/docs/package.json +++ b/docs/package.json @@ -101,6 +101,7 @@ "devDependencies": { "@babel/plugin-transform-react-constant-elements": "7.29.7", "@babel/preset-typescript": "7.29.7", + "@huggingface/tokenizers": "^0.2.0", "@mui/internal-api-docs-builder": "workspace:^", "@mui/internal-docs-utils": "workspace:^", "@mui/internal-scripts": "workspace:^", diff --git a/docs/public/static/material-icons/search-index.bin b/docs/public/static/material-icons/search-index.bin new file mode 100644 index 00000000000000..eccee7c8655afd Binary files /dev/null and b/docs/public/static/material-icons/search-index.bin differ diff --git a/docs/public/static/material-icons/search-index.json b/docs/public/static/material-icons/search-index.json new file mode 100644 index 00000000000000..7297f31f35b38a --- /dev/null +++ b/docs/public/static/material-icons/search-index.json @@ -0,0 +1 @@ +{"model":"minishlab/potion-base-8M","revision":"bf8b056651a2c21b8d2565580b8569da283cab23","dims":64,"words":["aa","aaa","aachen","aarhus","aaron","ab","aba","aback","abandon","abandoned","abandoning","abandonment","abbas","abbess","abbey","abbot","abbott","abbreviated","abbreviation","abby","abc","abd","abdomen","abdominal","abducted","abduction","abdul","abdullah","abe","abel","aberdeen","abigail","abilities","ability","able","abnormal","abnormalities","aboard","abolished","abolition","abolitionist","aboriginal","abortion","about","above","abraham","abrams","abroad","abrupt","abruptly","abs","absence","absent","absently","absolute","absolutely","absorb","absorbed","absorbing","absorption","abstract","abstraction","abstracts","absurd","abu","abundance","abundant","abuse","abused","abuses","abusive","abyss","ac","acacia","academia","academic","academics","academie","academies","academy","acc","accelerate","accelerated","accelerating","acceleration","accelerator","accent","accents","accept","acceptable","acceptance","accepted","accepting","accepts","access","accessed","accessibility","accessible","accession","accessories","accessory","accident","accidental","accidentally","accidents","acclaim","acclaimed","accolades","accommodate","accommodated","accommodation","accommodations","accompanied","accompaniment","accompany","accompanying","accomplish","accomplished","accomplishment","accomplishments","accord","accordance","according","accordingly","accordion","account","accountability","accountable","accountant","accountants","accounted","accounting","accounts","accreditation","accredited","accumulate","accumulated","accumulation","accuracy","accurate","accurately","accusation","accusations","accuse","accused","accusing","accustomed","ace","aces","ache","ached","acheron","achieve","achieved","achievement","achievements","achieving","achilles","aching","acid","acidic","acids","acknowledge","acknowledged","acknowledges","acknowledging","acoustic","acquaintance","acquaintances","acquainted","acquire","acquired","acquiring","acquisition","acquisitions","acquitted","acre","acres","acronym","across","act","acted","acting","action","actions","activate","activated","activation","active","actively","activism","activist","activists","activities","activity","acton","actor","actors","actress","actresses","acts","actual","actually","acute","ad","ada","adam","adamant","adams","adapt","adaptation","adaptations","adapted","adapting","adaptive","add","added","addict","addicted","addiction","adding","addison","addition","additional","additionally","additions","additive","address","addressed","addresses","addressing","adds","adelaide","adele","aden","adept","adequate","adequately","adhere","adherence","adherents","adi","adjacent","adjective","adjoining","adjunct","adjust","adjustable","adjusted","adjusting","adjustment","adjustments","adjutant","adler","administer","administered","administering","administration","administrations","administrative","administratively","administrator","administrators","admiral","admiralty","admiration","admire","admired","admiring","admission","admissions","admit","admits","admitted","admitting","adobe","adolescence","adolescent","adolescents","adolf","adolph","adopt","adopted","adopting","adoption","adoptive","adorable","adored","adorned","adrenaline","adrian","adriatic","ads","adult","adultery","adulthood","adults","advance","advanced","advancement","advances","advancing","advantage","advantages","advent","adventist","adventure","adventurer","adventures","adventurous","adversary","adverse","advertised","advertisement","advertisements","advertising","advice","advise","advised","adviser","advisers","advises","advising","advisor","advisors","advisory","advocacy","advocate","advocated","advocates","advocating","ae","aegean","aerial","aero","aerodrome","aerodynamic","aeronautical","aeronautics","aerospace","aesthetic","aesthetics","af","afar","afb","afc","affair","affairs","affect","affected","affecting","affection","affectionately","affects","affiliate","affiliated","affiliates","affiliation","affinity","affirmative","affirmed","affluent","afford","affordable","afforded","afghan","afghanistan","afi","afl","aforementioned","afraid","africa","african","africans","afrikaans","afro","aft","after","afterlife","aftermath","afternoon","afternoons","afterward","afterwards","ag","again","against","agatha","age","aged","agencies","agency","agenda","agent","agents","ages","aggravated","aggregate","aggregation","aggregator","aggression","aggressive","aggressively","agile","aging","agitated","agitation","agnes","ago","agony","agra","agrarian","agree","agreed","agreeing","agreement","agreements","agrees","agricultural","agriculture","aground","agustin","ah","ahead","ahl","ahmad","ahmed","ahmedabad","ai","aid","aidan","aide","aided","aiden","aiding","aids","aim","aimed","aimee","aiming","aims","ain","air","airborne","airbus","aircraft","aired","aires","airfield","airfields","airing","airlift","airline","airlines","airmen","airplane","airplanes","airplay","airport","airports","airs","airship","airspace","airways","aisle","aisles","aix","aj","ajax","ak","aka","akbar","akin","akira","akron","al","ala","alabama","alain","alam","alan","alarm","alarmed","alarms","alaska","alba","albania","albanian","albanians","albans","albany","albeit","albert","alberta","alberto","albion","albrecht","album","albums","albuquerque","alcohol","alcoholic","alcoholism","alderman","aldo","ale","alec","alejandro","aleksandr","aleppo","alert","alerted","alessandro","alex","alexa","alexander","alexandra","alexandre","alexandria","alexei","alexia","alexis","alf","alfa","alfonso","alfred","alfredo","algae","algebra","algebraic","algeria","algerian","algiers","algorithm","algorithms","ali","alias","alice","alicia","alien","aliens","align","aligned","alignment","alike","alison","alistair","alive","all","alla","allah","allan","allegations","alleged","allegedly","allegheny","allegiance","alleging","allegro","allen","allergic","alleviate","alley","alliance","alliances","allie","allied","allies","alligator","allison","allmusic","allocated","allocation","allotted","allow","allowance","allowed","allowing","allows","alloy","alloys","ally","alma","almeida","almighty","almond","almost","alone","along","alongside","alonso","aloud","alpha","alphabet","alpine","alps","already","alright","als","alsace","also","alt","alta","altar","alter","alteration","alterations","altered","altering","alternate","alternately","alternating","alternative","alternatively","alternatives","although","altitude","altitudes","alto","altogether","alton","aluminium","aluminum","alumni","alumnus","alvarez","alvaro","alvin","always","alyssa","alzheimer","am","ama","amadeus","amalgamated","amalgamation","amanda","amar","amara","amassed","amateur","amateurs","amazed","amazement","amazing","amazingly","amazon","ambassador","ambassadors","amber","ambient","ambiguity","ambiguous","ambition","ambitions","ambitious","ambrose","ambulance","ambush","ambushed","amc","amelia","amelie","amend","amended","amendment","amendments","amenities","america","american","americana","americans","americas","ames","amherst","ami","amid","amidst","amiga","amin","amino","amir","amman","ammonia","ammunition","amnesia","amnesty","among","amongst","amor","amore","amos","amount","amounted","amounts","amour","amp","amphibious","ample","amplified","amplifier","amplifiers","amplitude","amsterdam","amtrak","amulet","amused","amusement","amusing","amy","an","ana","anaheim","anal","analog","analogous","analogue","analogy","analyses","analysis","analyst","analysts","analytic","analytical","analytics","analyze","analyzed","analyzing","anand","anarchist","anarchy","anastasia","anatolia","anatomical","anatomy","ancestor","ancestors","ancestral","ancestry","anchor","anchorage","anchored","anchors","ancient","and","anders","andersen","anderson","andersson","andes","andhra","andover","andre","andrea","andreas","andrei","andres","andrew","andrews","andrey","android","andy","ang","angel","angela","angeles","angelica","angelina","angelo","angels","anger","angered","angie","angle","angled","angles","anglia","anglican","anglo","angola","angrily","angry","anguish","angular","angus","anhalt","animal","animals","animated","animation","animator","anime","anita","ankara","ankle","ankles","ann","anna","annabelle","annals","annapolis","anne","annette","annex","annexation","annexed","annie","anniversary","announce","announced","announcement","announcements","announcer","announces","announcing","annoyance","annoyed","annoying","annual","annually","annum","anomaly","anonymous","another","anson","answer","answered","answering","answers","ant","antagonist","antarctic","antarctica","antenna","antennae","antennas","anterior","anthem","anthologies","anthology","anthony","anthropological","anthropologist","anthropology","anti","antibiotics","antibodies","antibody","anticipated","anticipating","anticipation","antics","antigen","antigua","antilles","antioch","antique","antiques","antiquities","antiquity","antoine","antoinette","anton","antonia","antonio","antony","antrim","ants","antwerp","anwar","anxiety","anxious","anxiously","any","anya","anybody","anymore","anyone","anything","anytime","anyway","anywhere","anzac","ao","ap","apache","apart","apartheid","apartment","apartments","ape","aperture","apes","apex","api","apical","apocalypse","apocalyptic","apollo","apologetic","apologies","apologize","apologized","apology","apostle","apostles","apostolic","app","appalachian","appalled","apparatus","apparel","apparent","apparently","appeal","appealed","appealing","appeals","appear","appearance","appearances","appeared","appearing","appears","appellate","appendix","appetite","applause","apple","apples","appleton","appliances","applicable","applicant","applicants","application","applications","applied","applies","apply","applying","appoint","appointed","appointing","appointment","appointments","appreciate","appreciated","appreciation","apprehension","apprentice","apprenticeship","approach","approached","approaches","approaching","appropriate","appropriated","appropriately","appropriations","approval","approve","approved","approx","approximate","approximately","approximation","apps","apr","april","apron","apt","aqua","aquarium","aquatic","aquatics","aqueduct","aquino","aquitaine","ar","ara","arab","arabia","arabian","arabic","arabs","aragon","aramaic","arbitrary","arbitration","arbor","arboretum","arc","arcade","arcadia","arch","archaeological","archaeologist","archaeologists","archaeology","archaic","archangel","archbishop","archdeacon","archdiocese","archduke","arched","archeological","archer","archers","archery","arches","archibald","archie","arching","archipelago","architect","architects","architectural","architecture","archival","archive","archived","archives","archway","arcs","arctic","arden","ardent","are","area","areas","aren","arena","arenas","ares","argent","argentina","argentine","arguably","argue","argued","argues","arguing","argument","arguments","argus","argyle","argyll","ari","aria","arias","arid","ariel","arise","arises","arising","aristocracy","aristocratic","aristotle","arithmetic","arizona","arjun","ark","arkansas","arlington","arm","armada","armagh","armament","armand","armando","armchair","armed","armenia","armenian","armenians","armies","armistice","armor","armored","armory","armour","armoured","arms","armstrong","army","arnold","aroma","aromatic","arose","around","arousal","aroused","arrange","arranged","arrangement","arrangements","arranger","arranging","array","arrays","arrest","arrested","arresting","arrests","arrival","arrivals","arrive","arrived","arrives","arriving","arrogance","arrogant","arrondissement","arrow","arrows","arroyo","ars","arsenal","arsenic","arson","art","arte","artefacts","artemis","arterial","arteries","artery","arthritis","arthur","article","articles","articulated","artifact","artifacts","artificial","artillery","artisans","artist","artistic","artists","arts","arturo","artwork","artworks","arun","arya","aryan","as","asa","asahi","asbestos","ascended","ascending","ascension","ascent","ascot","ascribed","asean","ash","asha","ashamed","ashby","ashe","asher","ashes","ashford","ashland","ashley","ashok","ashore","ashton","asia","asian","asiatic","aside","ask","asked","asking","asks","asleep","aspect","aspects","aspen","asphalt","aspirations","aspiring","ass","assam","assassin","assassinate","assassinated","assassination","assassins","assault","assaulted","assaults","assemble","assembled","assemblies","assembly","assent","assert","asserted","asserting","assertion","asserts","assess","assessed","assessing","assessment","assessments","asset","assets","asshole","assign","assigned","assignment","assignments","assigns","assimilation","assist","assistance","assistant","assistants","assisted","assisting","assists","associate","associated","associates","association","associations","assortment","assume","assumed","assumes","assuming","assumption","assumptions","assurance","assure","assured","assyrian","asteroid","asteroids","asthma","aston","astonished","astonishing","astonishment","astor","astoria","astrid","astro","astronaut","astronauts","astronomer","astronomers","astronomical","astronomy","astros","asturias","asylum","at","ata","atari","ate","atheist","athena","athenian","athens","athlete","athletes","athletic","athletics","atkins","atkinson","atlanta","atlantic","atlantis","atlas","atletico","atm","atmosphere","atmospheric","atoll","atom","atomic","atoms","atop","atp","atrium","atrocities","attach","attache","attached","attachment","attack","attacked","attacker","attackers","attacking","attacks","attain","attained","attaining","attempt","attempted","attempting","attempts","attend","attendance","attendant","attendants","attended","attendees","attending","attends","attention","attested","attic","attire","attitude","attitudes","attorney","attorneys","attract","attracted","attracting","attraction","attractions","attractive","attracts","attribute","attributed","attributes","atv","au","aubrey","auburn","auckland","auction","audi","audible","audience","audiences","audio","audit","audition","auditioned","auditions","auditor","auditorium","auditory","audrey","auf","aug","augmented","augsburg","august","augusta","auguste","augustine","augusto","augustus","aunt","aura","aurora","aus","auschwitz","auspices","austen","austin","australia","australian","australians","austria","austrian","austrians","austro","authentic","authentication","authenticity","author","authored","authorised","authoritarian","authoritative","authorities","authority","authorization","authorized","authors","authorship","autism","auto","autobiographical","autobiography","automated","automatic","automatically","automation","automobile","automobiles","automotive","autonomous","autonomy","autopsy","autumn","aux","auxiliary","av","ava","avail","availability","available","avalanche","avalon","avant","avatar","ave","avenge","avengers","avenue","avenues","average","averaged","averages","averaging","avery","aviation","aviator","avid","avila","aviv","avoid","avoidance","avoided","avoiding","avoids","avon","aw","await","awaited","awaiting","awake","awakened","awakening","award","awarded","awarding","awards","aware","awareness","away","awe","awesome","awful","awhile","awkward","awkwardly","awoke","ax","axe","axel","axes","axial","axis","axle","aye","az","azerbaijan","azerbaijani","aziz","azores","aztec","azure","ba","baba","babe","babies","babu","baby","babylon","babylonian","baccalaureate","bach","bachelor","back","backbone","backdrop","backed","background","backgrounds","backing","backlash","backpack","backs","backseat","backside","backstage","backstroke","backup","backward","backwards","backyard","bacon","bacteria","bacterial","bacterium","bad","baden","badge","badger","badges","badly","badminton","bae","baffled","bafta","bag","baggage","baghdad","bags","baha","bahadur","bahamas","bahia","bahn","bahrain","bai","bail","bailey","bain","baird","bait","baja","baked","baker","bakery","baking","baku","bal","bala","balance","balanced","balancing","balcony","bald","baldwin","balfour","bali","balkan","balkans","ball","ballad","ballads","ballard","ballast","ballet","ballistic","balloon","balloons","ballot","ballots","ballroom","balls","balthazar","baltic","baltimore","bam","bamboo","ban","banana","bananas","banco","bancroft","band","banda","bandage","bandages","banded","bandit","bandits","bands","bandwidth","bane","bang","bangalore","banged","banging","bangkok","bangladesh","bangladeshi","bangor","bangs","banished","banjo","bank","banker","bankers","banking","bankrupt","bankruptcy","banks","banned","banner","banners","banning","banquet","bao","baptised","baptism","baptist","baptiste","baptized","bar","barack","barak","barangay","barbados","barbara","barbarian","barbarians","barbecue","barbed","barber","barbie","barcelona","barclay","bard","bare","bared","barefoot","barely","bargain","bargaining","barge","barges","bari","baritone","bark","barked","barker","barking","barley","barlow","barn","barnard","barnes","barnet","barnett","barney","barns","barnsley","baron","baroness","baronet","baronetcy","barons","barony","baroque","barr","barracks","barrage","barre","barred","barrel","barrels","barren","barrett","barrie","barrier","barriers","barrington","barrio","barrister","barron","barrow","barry","bars","bart","bartender","bartholomew","bartlett","barton","bas","basal","basalt","base","baseball","based","basel","baseline","baseman","basement","bases","bash","basha","basic","basically","basics","basil","basilica","basin","basins","basis","basket","basketball","baskets","basque","bass","bassett","bassist","bastard","bastards","bastion","bat","batavia","batch","bates","bath","bathed","bathing","bathroom","bathrooms","baths","bathurst","batman","baton","bats","batsman","battalion","battalions","batted","batter","battered","batteries","battery","batting","battista","battle","battled","battlefield","battles","battleship","battleships","battling","bauer","bautista","bavaria","bavarian","baxter","bay","bayer","bayern","baylor","bayou","bays","bazaar","bb","bbc","bc","bce","be","bea","beach","beaches","beacon","beads","beak","beale","beam","beamed","beaming","beams","bean","beans","bear","beard","bearded","bearer","bearing","bearings","bears","beast","beasts","beat","beaten","beating","beatles","beatrice","beats","beatty","beau","beaufort","beaumont","beautiful","beautifully","beauty","beaux","beaver","became","because","becca","beck","becker","beckett","becky","become","becomes","becoming","bed","bedford","bedfordshire","bedrock","bedroom","bedrooms","beds","bedside","bee","beech","beef","been","beer","beers","bees","beethoven","beetle","beetles","before","beforehand","befriended","beg","began","begged","begging","begin","beginning","beginnings","begins","begs","begun","behalf","behave","behaved","behavior","behavioral","behaviors","behaviour","beheaded","behind","behold","bei","beige","beijing","being","beings","beirut","beit","bel","bela","belarus","belarusian","belfast","belgarath","belgian","belgium","belgrade","belief","beliefs","believe","believed","believer","believers","believes","believing","belinda","belize","bell","bella","bellamy","belle","bellevue","bellowed","bells","belly","belmont","belong","belonged","belonging","belongings","belongs","beloved","below","belt","belts","ben","bench","benches","bend","bender","bending","bends","beneath","benedict","benedictine","benefactor","beneficial","benefit","benefited","benefits","benevolent","benfica","bengal","bengali","bengals","benign","benin","benito","benjamin","benji","bennett","benny","benoit","benson","bent","bentley","benton","benz","bequeathed","berber","berg","bergen","berger","bergman","berkeley","berkshire","berlin","berman","bermuda","bern","bernard","bernardino","bernardo","bernhard","bernie","bernstein","berries","berry","bert","berth","bertha","bertie","bertram","bertrand","berwick","beside","besides","besieged","bessie","best","bestowed","bestseller","bet","beta","beth","bethany","bethel","bethlehem","betray","betrayal","betrayed","bets","betsy","better","betting","betty","between","beverage","beverages","beverley","beverly","bewildered","bey","beyonce","beyond","bf","bharatiya","bhp","bhutan","bi","bianca","bias","biased","bible","biblical","bibliography","biceps","bicycle","bicycles","bid","bidding","bids","bien","biennale","biennial","big","bigger","biggest","bihar","bike","biker","bikes","biking","bikini","bilateral","bilbao","bile","bilingual","bill","billboard","billed","billie","billing","billings","billion","billionaire","billions","bills","billy","bin","binary","bind","binding","binds","bing","bingham","bingo","binoculars","bio","biochemistry","biodiversity","biographer","biographical","biographies","biography","biological","biologist","biology","biomass","biomedical","biotechnology","biplane","bipolar","birch","bird","birds","birmingham","birth","birthday","birthplace","births","bis","biscuits","bisexual","bishop","bishopric","bishops","bismarck","bison","bit","bitch","bite","bites","biting","bits","bitten","bitter","bitterly","bitterness","bizarre","bjorn","bjp","bk","black","blackberry","blackburn","blackened","blackish","blackmail","blackness","blackout","blackpool","blacks","blacksmith","blackwell","bladder","blade","bladed","blades","blah","blaine","blair","blake","blame","blamed","blaming","blanc","blanca","blanchard","blanche","blanco","bland","blank","blanket","blankets","blankly","blast","blasted","blasting","blasts","blaze","blazed","blazers","blazing","bleak","bled","bleed","bleeding","blend","blended","blending","bless","blessed","blessing","blessings","blew","blind","blinded","blinding","blindly","blindness","blinds","blink","blinked","blinking","bliss","blitz","blizzard","bloc","block","blockade","blockbuster","blocked","blocking","blocks","blog","blogger","blogs","blond","blonde","blood","blooded","bloody","bloom","bloomberg","bloomfield","bloomington","blooms","blossom","blossoms","blouse","blow","blowing","blown","blows","blu","blue","bluegrass","blues","bluff","blunt","blur","blurred","blurted","blush","blushed","blushing","bmg","bmw","bn","bo","boar","board","boarded","boarding","boards","boardwalk","boasted","boasts","boat","boating","boats","bob","bobbed","bobbie","bobby","bobo","boca","bodied","bodies","bodily","bodo","body","bodyguard","bodyguards","boeing","boer","bog","bogota","bohemia","bohemian","boil","boiled","boiler","boilers","boiling","bois","boise","bold","bolivar","bolivia","bolivian","bollywood","bologna","bolshevik","bolsheviks","bolt","bolted","bolton","bolts","bomb","bombardier","bombardment","bombay","bombed","bomber","bombers","bombing","bombings","bombs","bon","bonaparte","bond","bonded","bonding","bonds","bone","bones","bonfire","bonn","bonnet","bonnie","bono","bonus","bonuses","bony","boo","boogie","book","booked","booker","booking","booklet","books","bookstore","boom","boomed","booming","boon","boone","boost","boosted","booster","boot","booth","booths","boots","bop","bordeaux","border","bordered","bordering","borders","bore","bored","boredom","borg","boring","boris","born","borne","borneo","borough","boroughs","borrow","borrowed","borrowing","bosch","bose","bosnia","bosnian","boss","bosses","boston","bot","botanic","botanical","botanist","botany","both","bother","bothered","bothering","botswana","bottle","bottled","bottles","bottom","bottoms","bought","boulder","boulders","boulevard","bounce","bounced","bouncing","bound","boundaries","boundary","bounded","bounds","bounty","bouquet","bourbon","bourgeois","bourne","bournemouth","bout","boutique","bouts","bow","bowed","bowen","bowie","bowing","bowl","bowled","bowler","bowling","bowls","bowman","bows","box","boxed","boxer","boxers","boxes","boxing","boy","boycott","boyd","boyer","boyfriend","boyle","boys","bp","br","bra","brace","braced","bracelet","bracing","bracket","brackets","brad","braden","bradford","bradley","bradshaw","brady","bragg","brahms","braid","brain","brains","brake","brakes","braking","bram","bran","branch","branched","branches","branching","brand","branded","brandenburg","branding","brandon","brands","brandt","brandy","brant","brasil","brass","brat","bratislava","braun","brave","bravery","braves","bravo","brawl","bray","brazil","brazilian","breach","breached","bread","breadth","break","breakaway","breakdown","breaker","breakers","breakfast","breaking","breakout","breaks","breakthrough","breakup","breast","breasts","breaststroke","breath","breathe","breathed","breathing","breathless","breaths","bred","bree","breed","breeders","breeding","breeds","breeze","bremen","brenda","brendan","brennan","brent","brentford","brest","bret","brethren","breton","brett","breuning","brew","brewer","brewers","brewery","brewing","brewster","brian","brianna","bribe","bribery","bribes","brick","bricks","bride","bridge","bridgeport","bridges","bridget","brief","briefcase","briefing","briefly","briefs","brien","brig","brigade","brigades","brigadier","briggs","brigham","bright","brightened","brighter","brightest","brightly","brightness","brighton","brilliance","brilliant","bring","bringing","brings","brink","brisbane","brisk","bristol","brit","britain","britannia","british","britney","brittany","britten","brittle","brno","bro","broad","broadband","broadcast","broadcaster","broadcasters","broadcasting","broadcasts","broader","broadly","broadway","brock","brodie","brody","broke","broken","broker","bromley","bromwich","broncos","bronx","bronze","brood","brooding","brook","brooke","brooklyn","brooks","broom","bros","brothel","brother","brotherhood","brothers","brought","broughton","brow","brown","browne","browning","brownish","browns","brows","browser","bruce","bruins","bruise","bruised","bruises","brunei","brunette","bruno","brunswick","brush","brushed","brushes","brushing","brussels","brutal","brutality","brutally","brute","bryan","bryant","bryce","bryn","bryson","bs","bsc","bt","bu","bubba","bubble","bubbles","bubbling","buccaneers","buchanan","bucharest","buck","bucket","buckingham","buckinghamshire","buckle","buckled","buckley","bucks","bud","budapest","buddha","buddhism","buddhist","buddies","buddy","budge","budget","budgets","buds","buena","buenos","buff","buffalo","buffer","buffet","buffy","bug","bugs","buick","build","builder","builders","building","buildings","builds","built","bukit","bulb","bulbs","bulgaria","bulgarian","bulge","bulging","bulk","bulky","bull","bulldog","bulldogs","bullet","bulletin","bullets","bullock","bulls","bullshit","bully","bullying","bum","bump","bumped","bumper","bumps","bun","bunch","bundesliga","bundle","bundled","bundles","bungalow","bunk","bunker","bunny","burden","bureau","bureaucracy","buren","burger","burgess","burgundy","burial","burials","buried","burke","burkina","burlington","burma","burmese","burn","burned","burnett","burnham","burning","burnley","burns","burnt","burr","burroughs","burrows","burst","bursting","bursts","burt","burton","burundi","bury","burying","bus","busch","buses","bush","bushes","busiest","business","businesses","businessman","businessmen","bust","busted","buster","busy","but","butch","butcher","butler","butt","butte","butter","butterflies","butterfly","button","buttons","buy","buyer","buyers","buying","buys","buzz","buzzed","buzzing","bwf","bwv","by","bye","bypass","bypassed","byrd","byrne","byron","byte","bytes","byu","byzantine","ca","cab","cabaret","cabbage","cabin","cabinet","cabinets","cabins","cable","cables","cache","cactus","cad","cade","caden","cadence","cadet","cadets","cadillac","cadiz","caesar","caf","cafe","cafes","cafeteria","cage","cages","cai","cain","caine","cairns","cairo","caitlin","cake","cakes","cal","calabria","calais","calcium","calculate","calculated","calculating","calculation","calculations","calculus","calcutta","calder","calderon","caldwell","cale","caleb","caledonia","caledonian","calendar","calf","calgary","calhoun","caliber","california","caliph","caliphate","call","callahan","called","caller","callie","calling","calls","callum","calm","calmed","calming","calmly","calvert","calves","calvin","cam","cambodia","cambodian","cambrian","cambridge","cambridgeshire","camden","came","camel","cameo","camera","cameras","cameron","cameroon","camilla","camille","camouflage","camp","campaign","campaigned","campaigning","campaigns","campbell","camped","campeonato","campground","camping","campo","campos","camps","campus","campuses","can","canada","canadian","canadians","canadiens","canal","canals","canary","canberra","cancel","canceled","cancellation","cancelled","cancer","cancers","candace","candi","candidacy","candidate","candidates","candle","candles","candy","cane","canine","cannabis","canned","cannes","canning","cannon","cannons","cannot","canoe","canon","canonical","canons","canopy","cans","cantata","canteen","canterbury","canton","cantonese","cantor","canucks","canvas","canyon","cao","cap","capabilities","capability","capable","capacities","capacity","capcom","cape","capita","capital","capitalism","capitalist","capitals","capitol","capped","cappella","caps","capsule","capt","captain","captained","captains","captive","captives","captivity","capture","captured","captures","capturing","car","cara","caracas","caravan","carbon","carbonate","card","cardboard","cardiac","cardiff","cardinal","cardinals","cardiovascular","cards","care","cared","career","careers","careful","carefully","careless","cares","caress","caressed","caressing","caretaker","carey","cargo","caribbean","caring","carl","carla","carleton","carlisle","carlo","carlos","carlson","carlton","carly","carmel","carmen","carmichael","carmine","carnage","carnegie","carnival","carol","carole","carolina","caroline","carolyn","carousel","carp","carpathian","carpenter","carpet","carpets","carr","carriage","carriages","carrie","carried","carrier","carriers","carries","carroll","carrot","carry","carrying","cars","carson","cart","cartel","carter","carthage","cartoon","cartoonist","cartoons","cartridge","cartridges","carts","cartwright","carved","carver","carving","carvings","cary","cas","casa","casablanca","cascade","case","cases","casey","cash","casimir","casino","casinos","casket","casper","caspian","cass","cassandra","cassette","cassidy","cassie","cast","caste","castes","castile","castillo","casting","castle","castles","castro","casts","casual","casually","casualties","casualty","cat","catalan","catalina","catalog","catalogue","catalonia","catalyst","catalytic","catastrophe","catastrophic","catch","catcher","catches","catching","catchment","categories","categorized","category","cater","catering","catfish","cathedral","catherine","catholic","catholicism","catholics","cathy","cats","cattle","caucasian","caucasus","caucus","caught","causal","cause","caused","causes","causeway","causing","caution","cautious","cautiously","cavalier","cavaliers","cavalry","cave","cavendish","cavern","caves","cavity","cayman","cb","cbc","cbe","cbn","cbs","cc","cd","cdc","cdp","cds","ce","cease","ceased","ceasefire","cebu","cecil","cecilia","cedar","ceded","cedric","ceiling","ceilings","celaena","celebrate","celebrated","celebrates","celebrating","celebration","celebrations","celebrities","celebrity","celeste","celestial","celia","celine","cell","cellar","cello","cells","cellular","celtic","celtics","cement","cemeteries","cemetery","censorship","census","cent","centenary","centennial","center","centered","centers","centimeters","centimetres","central","centralized","centrally","centre","centred","centres","centro","cents","centuries","century","ceo","cerambycidae","ceramic","ceramics","cereal","cerebral","ceremonial","ceremonies","ceremony","cerro","certain","certainly","certainty","certificate","certificates","certification","certified","cervical","cesar","cesare","cessna","ceylon","cf","cfa","cfl","ch","cha","chad","chain","chained","chains","chair","chaired","chairman","chairperson","chairs","chalk","challenge","challenged","challenger","challenges","challenging","chalmers","chamber","chamberlain","chambers","champ","champagne","champaign","champion","championed","champions","championship","championships","champs","chan","chance","chancel","chancellor","chances","chandler","chandra","chang","change","changed","changes","changing","channel","channels","chant","chanting","chants","chao","chaos","chaotic","chapel","chapels","chaplain","chaplin","chapman","chapter","chapters","char","character","characterised","characteristic","characteristics","characterization","characterized","characters","charcoal","charge","charged","chargers","charges","charging","chariot","charismatic","charitable","charities","charity","charlemagne","charles","charleston","charley","charlie","charlotte","charlton","charm","charming","charms","charred","chart","charted","charter","chartered","charters","charting","charts","chase","chased","chases","chasing","chassis","chat","chateau","chatham","chattanooga","chatter","chatting","chavez","che","cheap","cheaper","cheat","cheated","cheating","check","checked","checking","checkpoint","checks","cheek","cheekbones","cheeks","cheer","cheered","cheerful","cheerfully","cheering","cheerleading","cheers","cheese","chef","chefs","chelsea","cheltenham","chemical","chemicals","chemist","chemistry","chemotherapy","chen","cheney","cheng","chennai","cher","cherokee","cherry","cheryl","chesapeake","cheshire","chess","chest","chester","chesterfield","chestnut","chests","chet","cheung","chevalier","chevrolet","chevy","chew","chewed","chewing","cheyenne","chi","chiang","chiba","chicago","chichester","chick","chicken","chickens","chicks","chico","chief","chiefly","chiefs","chieftain","chihuahua","child","childbirth","childhood","childish","childless","children","chile","chilean","chili","chill","chilled","chilling","chilly","chimed","chimney","chimneys","chin","china","chinatown","chinese","ching","chip","chips","chloe","chloride","cho","chocolate","choi","choice","choices","choir","choirs","choke","choked","choking","cholera","chong","choose","chooses","choosing","chop","chopin","chopped","chopper","chopra","choral","chorale","chord","chords","choreographed","choreographer","choreography","chores","chorus","chose","chosen","chow","chris","christ","christchurch","christensen","christi","christian","christianity","christians","christie","christina","christine","christmas","christoph","christophe","christopher","christy","chrome","chromosome","chromosomes","chronic","chronicle","chronicles","chronological","chronology","chrysler","chu","chuck","chuckle","chuckled","chuckles","chun","chung","chunk","chunks","church","churches","churchill","churchyard","churning","ci","cia","cicero","cid","cigar","cigarette","cigarettes","cincinnati","cinder","cinderella","cindy","cinema","cinemas","cinematic","cinematographer","cinematography","cinnamon","cipher","circa","circle","circled","circles","circling","circuit","circuits","circular","circulated","circulating","circulation","circumstance","circumstances","circus","cis","cisco","citadel","citation","citations","cite","cited","cites","cities","citing","citizen","citizens","citizenship","citrus","city","ciudad","civic","civil","civilian","civilians","civilization","civilizations","civilized","ck","cl","clad","clade","claim","claimed","claiming","claims","clair","claire","clamped","clan","clancy","clandestine","clans","clap","clapped","clapping","clapton","clara","clare","claremont","clarence","clarified","clarify","clarinet","clarissa","clarity","clark","clarke","clarkson","clary","clash","clashed","clashes","clasp","clasped","class","classed","classes","classic","classical","classics","classification","classifications","classified","classify","classmate","classmates","classroom","classrooms","claude","claudia","claudio","claudius","claus","clause","clauses","claw","clawed","claws","clay","clayton","clean","cleaned","cleaner","cleaning","cleansing","cleanup","clear","clearance","cleared","clearer","clearing","clearly","clears","cleavage","clemens","clement","clements","clemson","clench","clenched","clenching","cleopatra","clergy","clergyman","cleric","clerical","clerk","clerks","clermont","cleveland","clever","click","clicked","clicking","clicks","client","clients","cliff","clifford","cliffs","clifton","climate","climates","climatic","climax","climb","climbed","climbing","climbs","clinch","clinched","clinging","clinic","clinical","clinics","clint","clinton","clip","clipped","clips","clit","clive","cloak","clock","clocks","clockwise","clone","clones","close","closed","closely","closeness","closer","closes","closest","closet","closing","closure","cloth","clothed","clothes","clothing","cloud","clouded","clouds","cloudy","clover","clown","club","clube","clubhouse","clubs","clue","clues","clumsy","clung","cluster","clustered","clusters","clutch","clutched","clutches","clutching","clyde","cm","cmll","cn","cnn","co","coa","coach","coached","coaches","coaching","coal","coalition","coarse","coast","coastal","coaster","coastline","coasts","coat","coated","coating","coats","cobalt","cobb","cobra","coca","cocaine","cochin","cochran","cochrane","cock","cocked","cockpit","cocktail","cocky","coco","cocoa","coconut","cod","code","coded","codes","codex","coding","cody","coe","coefficient","coefficients","coffee","coffin","cognition","cognitive","cohen","coherent","coil","coiled","coin","coinage","coincide","coincided","coincidence","coincidentally","coined","coins","coke","col","cola","colbert","colby","colchester","cold","colder","coldly","cole","coleman","coli","colin","coliseum","collaborate","collaborated","collaborating","collaboration","collaborations","collaborative","collaborator","collaborators","collapse","collapsed","collapses","collapsing","collar","collarbone","collateral","colleague","colleagues","collect","collected","collecting","collection","collections","collective","collectively","collector","collectors","collects","colleen","college","colleges","collegiate","collided","collier","colliery","collin","collingwood","collins","collision","collisions","colloquially","cologne","colombia","colombian","colombo","colon","colonel","colonial","colonies","colonists","colonization","colony","color","colorado","coloration","colored","colorful","coloring","colors","colossal","colour","coloured","colourful","colours","colt","colton","colts","columbia","columbian","columbus","column","columnist","columns","com","coma","comb","combat","combatants","combination","combinations","combine","combined","combines","combining","combo","combustion","come","comeback","comedian","comedians","comedic","comedies","comedy","comes","comet","comets","comfort","comfortable","comfortably","comforting","comic","comical","comics","coming","command","commandant","commanded","commander","commanders","commanding","commando","commandos","commands","commemorate","commemorated","commemorates","commemorating","commemoration","commemorative","commence","commenced","commencement","commencing","commendation","commended","comment","commentaries","commentary","commentator","commentators","commented","commenting","comments","commerce","commercial","commercially","commercials","commission","commissioned","commissioner","commissioners","commissioning","commissions","commit","commitment","commitments","commits","committed","committee","committees","committing","commodities","commodity","commodore","common","commonly","commonplace","commons","commonwealth","commotion","communal","commune","communes","communicate","communicated","communicating","communication","communications","communion","communism","communist","communists","communities","community","commuted","commuter","como","compact","companies","companion","companions","company","comparable","comparative","comparatively","compare","compared","compares","comparing","comparison","comparisons","compartment","compartments","compass","compassion","compassionate","compatibility","compatible","compelled","compelling","compensate","compensated","compensation","compete","competed","competence","competent","competes","competing","competition","competitions","competitive","competitor","competitors","compilation","compilations","compiled","compiler","compiling","complain","complained","complaining","complaint","complaints","complement","complementary","complete","completed","completely","completes","completing","completion","complex","complexes","complexion","complexity","compliance","compliant","complicated","complications","complied","compliment","complimented","comply","component","components","compose","composed","composer","composers","composing","composite","composition","compositions","composure","compound","compounds","comprehend","comprehension","comprehensive","compressed","compression","compressor","comprise","comprised","comprises","comprising","compromise","compromised","compton","compulsion","compulsory","computation","computational","compute","computed","computer","computers","computing","comrade","comrades","comte","comune","con","conan","concacaf","conceal","concealed","conceded","conceived","concentrate","concentrated","concentrating","concentration","concentrations","concepcion","concept","conception","concepts","conceptual","concern","concerned","concerning","concerns","concert","concerto","concerts","concession","concessions","conclude","concluded","concludes","concluding","conclusion","conclusions","concord","concordia","concourse","concrete","concurrency","concurrent","concurrently","concussion","conde","condemn","condemnation","condemned","condemning","condensed","condition","conditional","conditioned","conditioning","conditions","condo","condom","condoms","condor","conduct","conducted","conducting","conductor","conductors","conducts","cone","cones","confederacy","confederate","confederates","confederation","conference","conferences","conferred","confess","confessed","confesses","confession","confessions","confidence","confident","confidential","confidently","configuration","configurations","configured","confined","confinement","confines","confirm","confirmation","confirmed","confirming","confirms","confiscated","conflict","conflicting","conflicts","confluence","conform","confront","confrontation","confronted","confronting","confronts","confuse","confused","confusing","confusion","cong","congenital","congestion","conglomerate","congo","congratulations","congregation","congregational","congregations","congress","congresses","congressional","congressman","conical","conjecture","conjunction","connacht","connect","connected","connecticut","connecting","connection","connections","connectivity","connector","connects","connell","conner","connie","connolly","connor","conor","conquer","conquered","conqueror","conquest","conrad","conscience","conscious","consciously","consciousness","conscription","consecrated","consecration","consecutive","consensus","consent","consequence","consequences","consequently","conservation","conservative","conservatives","conservatoire","conservatory","conserve","conserved","consider","considerable","considerably","consideration","considerations","considered","considering","considers","consist","consisted","consistency","consistent","consistently","consisting","consists","consolation","console","consoles","consolidate","consolidated","consolidation","consonant","consonants","consort","consortium","conspicuous","conspiracy","constable","constabulary","constance","constant","constantin","constantine","constantinople","constantly","constellation","constituencies","constituency","constituent","constituents","constitute","constituted","constitutes","constitution","constitutional","constrained","constraint","constraints","construct","constructed","constructing","construction","constructions","constructive","consul","consular","consulate","consult","consultancy","consultant","consultants","consultation","consultative","consulted","consulting","consume","consumed","consumer","consumers","consuming","consumption","contact","contacted","contacts","contain","contained","container","containers","containing","containment","contains","contaminated","contamination","contemplated","contemplating","contemporaries","contemporary","contempt","contend","contender","contenders","content","contention","contentious","contents","contest","contestant","contestants","contested","contests","context","contexts","contiguous","continent","continental","continents","contingent","continual","continually","continuation","continue","continued","continues","continuing","continuity","continuous","continuously","continuum","contra","contract","contracted","contracting","contraction","contractor","contractors","contracts","contractual","contradiction","contradictory","contrary","contrast","contrasted","contrasting","contrasts","contribute","contributed","contributes","contributing","contribution","contributions","contributor","contributors","control","controlled","controller","controllers","controlling","controls","controversial","controversies","controversy","convection","convened","convenience","convenient","convent","convention","conventional","conventions","converge","convergence","conversation","conversations","converse","conversely","conversion","conversions","convert","converted","convertible","converting","converts","convex","convey","conveyed","convict","convicted","conviction","convictions","convicts","convince","convinced","convinces","convincing","convoy","convoys","conway","cook","cooke","cooked","cookie","cookies","cooking","cooks","cool","cooled","cooler","cooling","coop","cooper","cooperate","cooperation","cooperative","coordinate","coordinated","coordinates","coordinating","coordination","coordinator","cop","copa","cope","copeland","copenhagen","copied","copies","coping","copper","cops","coptic","copy","copying","copyright","cora","coral","corbett","corbin","cord","cordoba","cords","core","cores","corey","corinne","cork","corn","cornelius","cornell","corner","cornerback","cornered","corners","cornerstone","cornice","cornish","cornwall","corona","coronation","coroner","corp","corporal","corporate","corporation","corporations","corps","corpse","corpses","corpus","correct","corrected","correction","correctional","corrections","correctly","correlated","correlation","correspond","corresponded","correspondence","correspondent","corresponding","corresponds","corridor","corridors","corrosion","corrugated","corrupt","corrupted","corruption","corsica","cortes","cortex","corvette","cory","cosmetic","cosmetics","cosmic","cosmopolitan","cosmos","cost","costa","costello","costing","costly","costs","costume","costumes","cot","cote","cottage","cottages","cotton","couch","cougars","cough","coughed","coughing","could","couldn","coulter","council","councillor","councillors","councils","counsel","counseling","counselor","count","countdown","counted","counter","counterattack","countered","counterpart","counterparts","counters","countess","counties","counting","countless","countries","country","countryside","counts","county","coup","coupe","couple","coupled","couples","coupling","courage","courageous","courier","course","courses","court","courtesy","courthouse","courtney","courtroom","courts","courtship","courtyard","cousin","cousins","cove","coven","covenant","covent","coventry","cover","coverage","covered","covering","covers","covert","coveted","cow","cowan","coward","cowboy","cowboys","cows","cox","coyote","coyotes","cozy","cp","cpc","cpi","cpu","cr","crab","crabs","crack","cracked","cracking","cracks","cradle","cradled","craft","crafted","crafts","craftsman","craftsmen","craig","crambidae","cramer","cramped","crane","cranes","crank","crap","crash","crashed","crashes","crashing","crate","crater","craters","crates","craved","craven","craving","crawford","crawl","crawled","crawley","crawling","crazed","crazy","creaked","cream","creamy","create","created","creates","creating","creation","creations","creative","creativity","creator","creators","creature","creatures","credentials","credibility","credible","credit","credited","creditors","credits","cree","creed","creek","creeks","creep","creeping","creepy","cremated","creole","crept","crescent","crest","crested","cretaceous","crete","crew","crewe","crews","cricket","cricketer","cried","cries","crime","crimea","crimean","crimes","criminal","criminals","crimson","cringed","crippled","crises","crisis","crisp","cristina","criteria","criterion","critic","critical","critically","criticised","criticism","criticisms","criticized","criticizing","critics","critique","croatia","croatian","croats","crocodile","croft","croix","cromwell","crook","crooked","crop","crops","crore","crosby","cross","crossbow","crossed","crosses","crossing","crossings","crossover","crossroads","crotch","crouch","crouched","crow","crowd","crowded","crowds","crowe","crowley","crown","crowned","crowns","crows","croydon","crucial","crude","cruel","cruelty","cruise","cruiser","cruisers","cruises","cruising","crumbling","crumpled","crunch","crusade","crusader","crusaders","crush","crushed","crushing","crust","cruz","cry","crying","crypt","cryptic","crystal","crystalline","crystals","cs","csa","csi","ct","ctv","cu","cub","cuba","cuban","cube","cubic","cubs","cuckoo","cue","cues","cuff","cuffs","cuisine","culinary","cullen","culminated","culminating","cult","cultivated","cultivation","cultural","culturally","culture","cultures","cum","cumberland","cumbria","cummings","cumulative","cunning","cunningham","cup","cupboard","cupped","cupping","cups","curate","curated","curator","curb","cure","cured","curiosity","curious","curiously","curl","curled","curling","curls","curly","curran","currency","current","currently","currents","curriculum","currie","curry","curse","cursed","curses","cursing","curt","curtain","curtains","curtis","curtiss","curvature","curve","curved","curves","curving","cushion","cushions","custer","custody","custom","customary","customer","customers","customized","customs","cut","cute","cuthbert","cutler","cuts","cutter","cutting","cv","cw","cy","cyber","cycle","cycles","cyclic","cycling","cyclist","cyclists","cyclone","cyclones","cylinder","cylinders","cylindrical","cynical","cynthia","cypress","cypriot","cyprus","cyril","cyrillic","cyrus","czech","czechoslovak","czechoslovakia","da","dad","daddy","dade","daemon","dagger","daggers","dahl","dai","dail","daily","dairy","daisy","dakota","dal","dalai","dale","dali","dallas","dalton","daly","dam","damage","damaged","damages","damaging","damascus","dame","damian","damien","dammit","damn","damned","damon","damp","dams","dan","dana","dance","danced","dancer","dancers","dances","dancing","dane","danes","danger","dangerous","dangerously","dangers","dangling","dani","daniel","daniela","danielle","daniels","danish","danny","dans","dante","danube","danzig","daphne","dar","darby","darcy","dare","dared","daring","dario","darius","dark","darkened","darkening","darker","darkest","darkly","darkness","darling","darlington","darmstadt","darrell","darren","darryl","dart","darted","darting","dartmouth","darts","darwin","daryl","das","dash","dashboard","dashed","dat","data","database","databases","date","dated","dates","dating","daughter","daughters","dauphin","dave","davenport","davey","david","davidson","davies","davis","davy","dawn","dawned","dawson","dax","day","daylight","days","daytime","dayton","daytona","daze","dazed","dazzling","db","dc","dd","de","dea","deacon","dead","deadline","deadly","deaf","deafening","deal","dealer","dealers","dealing","dealings","deals","dealt","dean","dear","death","deaths","debate","debated","debates","debating","debbie","deborah","debra","debris","debt","debts","debut","debuted","debuting","debuts","dec","decade","decades","decatur","decay","decca","deceased","december","decent","deception","decide","decided","decidedly","decides","deciding","deciduous","decimal","decision","decisions","decisive","deck","decker","decks","declan","declaration","declare","declared","declares","declaring","decline","declined","declines","declining","deco","decommissioned","decomposition","decor","decorate","decorated","decoration","decorations","decorative","decrease","decreased","decreases","decreasing","decree","decreed","decrees","dedicated","dedication","dee","deed","deeds","deemed","deep","deepened","deeper","deepest","deeply","deer","def","defamation","default","defaulted","defeat","defeated","defeating","defeats","defect","defected","defective","defects","defence","defences","defend","defendant","defendants","defended","defender","defenders","defending","defense","defenses","defensive","defiance","defiant","deficiency","deficit","define","defined","defines","defining","definite","definitely","definition","definitions","definitive","deformation","defunct","degradation","degraded","degree","degrees","dei","deities","deity","del","delaney","delaware","delay","delayed","delaying","delays","delegate","delegates","delegation","deleted","delgado","delhi","deliberate","deliberately","delicate","delicately","delicious","delight","delighted","delightful","delilah","deliver","delivered","deliveries","delivering","delivers","delivery","dell","della","delle","delta","deluxe","dem","demand","demanded","demanding","demands","demeanor","dementia","demetrius","demi","demise","demo","democracy","democrat","democratic","democrats","demographic","demographics","demolished","demolition","demon","demonic","demons","demonstrate","demonstrated","demonstrates","demonstrating","demonstration","demonstrations","demonstrators","demos","demoted","dempsey","den","deng","denial","denied","denies","denim","denis","denise","denmark","dennis","denny","denomination","denominations","denote","denoted","denotes","denounced","dense","densely","density","dent","dental","dentist","dentistry","denton","denver","deny","denying","depart","departed","departing","department","departmental","departments","departure","depend","depended","dependence","dependency","dependent","depending","depends","depict","depicted","depicting","depiction","depictions","depicts","depleted","deploy","deployed","deployment","deportation","deported","deportivo","deposed","deposit","deposited","deposition","deposits","depot","depressed","depression","deprivation","deprived","dept","depth","depths","deputies","deputy","der","derby","derbyshire","derek","derelict","derivation","derivative","derivatives","derive","derived","derives","derrick","derry","des","descend","descendant","descendants","descended","descending","descends","descent","describe","described","describes","describing","description","descriptions","descriptive","desert","deserted","deserts","deserve","deserved","deserves","design","designate","designated","designation","designations","designed","designer","designers","designing","designs","desirable","desire","desired","desires","desk","desktop","desmond","despair","desperate","desperately","desperation","despised","despite","dessert","destination","destinations","destined","destiny","destroy","destroyed","destroyer","destroyers","destroying","destroys","destruction","destructive","det","detached","detachment","detachments","detail","detailed","detailing","details","detained","detainees","detect","detected","detecting","detection","detective","detectives","detector","detectors","detention","deter","deteriorated","deteriorating","deterioration","determination","determine","determined","determines","determining","detonated","detrimental","detroit","deutsche","deutschland","deux","dev","devastated","devastating","devastation","develop","developed","developer","developers","developing","development","developmental","developments","develops","devi","deviation","device","devices","devil","devils","devin","devised","devlin","devoid","devon","devote","devoted","devotees","devotion","devout","dew","dewey","dex","dexter","dfb","dh","dhabi","dhaka","dharma","di","dia","diabetes","diablo","diagnosed","diagnosis","diagnostic","diagonal","diagram","diagrams","dial","dialect","dialects","dialed","dialogue","dialogues","diameter","diamond","diamonds","diana","diane","diaries","diary","diaspora","diaz","dice","dick","dickens","dickinson","dickson","dictated","dictator","dictatorship","dictionary","did","didn","die","died","diego","dies","diesel","diet","dietary","dieter","dietrich","differ","differed","difference","differences","different","differential","differentiate","differentiated","differentiation","differently","differing","differs","difficult","difficulties","difficulty","diffuse","diffusion","dig","digest","digger","digging","digit","digital","digitally","digits","dignitaries","dignity","dil","dilapidated","dilemma","dillon","dim","dime","dimension","dimensional","dimensions","diminished","dimitri","dimly","din","dina","dinah","dinamo","diner","ding","dining","dinner","dinners","dino","dinosaur","dinosaurs","diocesan","diocese","dioceses","dion","dioxide","dip","diploma","diplomacy","diplomat","diplomatic","diplomats","dipped","dipping","dir","dire","direct","directed","directing","direction","directional","directions","directive","directly","director","directorate","directorial","directors","directory","directs","dirk","dirt","dirty","disabilities","disability","disabled","disadvantage","disadvantaged","disagree","disagreed","disagreement","disagreements","disappear","disappearance","disappeared","disappearing","disappears","disappointed","disappointing","disappointment","disapproval","disaster","disasters","disastrous","disbanded","disbelief","disc","discarded","discharge","discharged","disciple","disciples","disciplinary","discipline","disciplined","disciplines","disclose","disclosed","disclosure","disco","discomfort","disconnected","discontent","discontinued","discount","discourage","discouraged","discourse","discover","discovered","discoveries","discovering","discovers","discovery","discreet","discrete","discretion","discrimination","discs","discus","discuss","discussed","discusses","discussing","discussion","discussions","disdain","disease","diseases","disgrace","disguise","disguised","disgust","disgusted","disgusting","dish","dishes","disk","disks","dislike","disliked","dismantled","dismay","dismiss","dismissal","dismissed","dismissing","dismounted","disney","disneyland","disorder","disorders","dispatch","dispatched","dispersal","disperse","dispersed","displaced","displacement","display","displayed","displaying","displays","displeasure","disposal","dispose","disposed","disposition","dispute","disputed","disputes","disqualification","disqualified","disregard","disrepair","disrupt","disrupted","disruption","dissatisfaction","dissatisfied","dissemination","dissent","dissertation","dissipated","dissolution","dissolve","dissolved","distal","distance","distances","distant","distillery","distinct","distinction","distinctions","distinctive","distinctly","distinguish","distinguished","distinguishes","distinguishing","distorted","distortion","distract","distracted","distracting","distraction","distraught","distress","distressed","distribute","distributed","distributing","distribution","distributions","distributor","distributors","district","districts","distrust","disturb","disturbance","disturbances","disturbed","disturbing","disused","ditch","diva","dive","diver","divers","diverse","diversified","diversion","diversity","divert","diverted","divide","divided","divides","dividing","divine","diving","divinity","division","divisional","divisions","divorce","divorced","dixie","dixon","dizzy","dj","djs","dl","dmitri","dmitry","dna","do","dobson","doc","dock","docked","docking","docks","dockyard","doctor","doctoral","doctorate","doctors","doctrine","doctrines","document","documentaries","documentary","documentation","documented","documenting","documents","dod","dodd","dodge","dodged","dodgers","doe","does","doesn","dog","dogg","dogs","doha","doherty","doi","doin","doing","doll","dollar","dollars","dolls","dolly","dolores","dolphin","dolphins","dom","domain","domains","dome","domed","domenico","domes","domesday","domestic","domestically","dominance","dominant","dominate","dominated","dominates","dominating","domination","domingo","dominic","dominican","dominion","dominique","domino","don","dona","donald","donaldson","donate","donated","donation","donations","doncaster","done","donegal","donetsk","dong","donkey","donna","donnell","donnelly","donnie","donor","donors","donovan","doo","doom","doomed","door","doorbell","doors","doorstep","doorway","doping","dora","dorchester","dorian","doris","dorm","dormant","dormitory","dorothea","dorothy","dorsal","dorset","dorsey","dortmund","dos","dose","doses","dot","dots","dotted","double","doubled","doubles","doubling","doubt","doubted","doubtful","doubts","doug","dough","douglas","douglass","dove","dover","dow","dowager","down","downed","downfall","downhill","downing","download","downloadable","downloaded","downloads","downs","downstairs","downstream","downtown","downward","downwards","dowry","doyle","dozen","dozens","dq","dr","dracula","draft","drafted","drafting","drafts","drag","dragged","dragging","dragon","dragons","dragoons","drain","drainage","drained","draining","drains","drake","drama","dramas","dramatic","dramatically","drank","draped","draper","drastic","drastically","draught","draw","drawer","drawers","drawing","drawings","drawn","draws","dread","dreadful","dream","dreamed","dreamer","dreaming","dreams","drenched","dresden","dress","dressed","dresser","dresses","dressing","drew","dried","drift","drifted","drifting","drill","drilled","drilling","drills","drink","drinking","drinks","drip","dripped","dripping","drive","driven","driver","drivers","drives","driveway","driving","drone","drones","drop","droplets","dropped","dropping","drops","drought","drove","drown","drowned","drowning","drug","drugged","drugs","drum","drummer","drumming","drummond","drums","drunk","drunken","drury","dry","drying","dryly","ds","dso","dt","du","dual","duane","dub","dubai","dubbed","dubious","dublin","dubois","duc","duchess","duchy","duck","ducked","ducks","duct","dude","dudley","due","duel","duet","duets","duff","duffy","dug","duke","dukes","dull","duluth","duly","dumb","dummy","dumont","dump","dumped","dumping","dun","dunbar","duncan","dundee","dune","dunedin","dunes","dung","dungeon","dungeons","dunkirk","dunlop","dunn","dunne","duo","duplicate","dupont","durable","duran","duration","durban","durga","durham","during","dusk","dusseldorf","dust","dustin","dusty","dutch","duties","dutton","duty","duval","dvd","dvds","dwarf","dwarfs","dwarves","dwell","dwellers","dwelling","dwellings","dwight","dwyer","dye","dyed","dyer","dying","dyke","dylan","dynamic","dynamics","dynamite","dynamo","dynasties","dynasty","dysfunction","ea","each","eager","eagerly","eagle","eagles","ear","earl","earle","earlier","earliest","earls","early","earn","earned","earnest","earning","earnings","earrings","ears","earth","earthly","earthquake","earthquakes","ease","eased","easier","easiest","easily","easing","east","eastbound","eastenders","easter","eastern","eastman","easton","eastward","eastwood","easy","eat","eaten","eater","eating","eaton","eats","ebert","ebony","ebook","ec","eccentric","ecclesiastical","echo","echoed","echoes","echoing","eclectic","eclipse","eco","ecole","ecological","ecology","economic","economical","economically","economics","economies","economist","economists","economy","ecosystem","ecosystems","ecstasy","ecuador","ecumenical","ed","eddie","eddy","eden","edgar","edge","edged","edges","edible","edict","edinburgh","edison","edit","edited","edith","editing","edition","editions","editor","editorial","editors","edmond","edmonton","edmund","edna","edo","edouard","eds","eduard","eduardo","educate","educated","educating","education","educational","educator","educators","edward","edwards","edwin","ee","eel","eels","eerie","effect","effective","effectively","effectiveness","effects","efficacy","efficiency","efficient","efficiently","effort","effortlessly","efforts","egan","egg","eggs","ego","egypt","egyptian","egyptians","eh","eight","eighteen","eighteenth","eighth","eighties","eighty","eileen","ein","eine","einstein","eireann","eisenhower","either","ejected","ek","eki","el","elaborate","elaborated","elaine","elastic","elbow","elbows","elder","elderly","elders","eldest","eleanor","elect","elected","election","elections","elector","electoral","electorate","electors","electric","electrical","electrically","electricity","electrification","electrified","electro","electrode","electromagnetic","electron","electronic","electronically","electronics","electrons","elects","elegance","elegant","element","elemental","elementary","elements","elena","elephant","elephants","elevated","elevation","elevations","elevator","elevators","eleven","eleventh","elf","elgin","eli","elias","eligibility","eligible","elijah","eliminate","eliminated","eliminating","elimination","eliot","elisa","elisabeth","elise","elite","elites","eliza","elizabeth","elk","ella","elle","ellen","ellie","ellington","elliot","elliott","elliptic","elliptical","ellis","ellison","elm","elmer","elongated","elsa","else","elsewhere","elsie","elton","elusive","elves","elvis","ely","em","email","emails","emancipation","emanuel","embankment","embark","embarked","embarrassed","embarrassing","embarrassment","embassy","embedded","emblem","embodied","embrace","embraced","embracing","embroidered","embroidery","embryo","emerald","emerge","emerged","emergence","emergencies","emergency","emerges","emerging","emeritus","emerson","emery","emi","emigrated","emigration","emil","emile","emilia","emilio","emily","eminent","emir","emirates","emission","emissions","emitted","emma","emmanuel","emmett","emmy","emory","emotion","emotional","emotionally","emotions","empathy","emperor","emperors","emphasis","emphasize","emphasized","emphasizes","emphasizing","empire","empires","empirical","employ","employed","employee","employees","employer","employers","employing","employment","employs","empowered","empowerment","empress","emptied","emptiness","empty","ems","en","enable","enabled","enables","enabling","enacted","enactment","enamel","enchanted","encircled","enclave","enclosed","enclosure","encoded","encoding","encompass","encompassed","encompasses","encompassing","encore","encounter","encountered","encounters","encourage","encouraged","encouragement","encourages","encouraging","encryption","encyclopedia","end","endangered","endeavor","endeavors","endeavour","ended","endelle","endemic","ending","endings","endless","endorsed","endorsement","endowed","endowment","ends","endurance","endure","endured","enduring","enemies","enemy","energetic","energies","energy","enfield","enforce","enforced","enforcement","enforcing","eng","engage","engaged","engagement","engagements","engages","engaging","engine","engined","engineer","engineered","engineering","engineers","engines","england","english","englishman","engraved","engraver","engraving","engravings","engulfed","enhance","enhanced","enhancement","enhancing","enigma","enjoy","enjoyable","enjoyed","enjoying","enjoyment","enjoys","enlarged","enlightenment","enlist","enlisted","enoch","enormous","enough","enraged","enriched","enrichment","enrico","enrique","enroll","enrolled","enrollment","ensemble","ensembles","ensign","enslaved","ensued","ensuing","ensure","ensured","ensures","ensuring","enter","entered","entering","enterprise","enterprises","enters","entertain","entertained","entertainer","entertaining","entertainment","enthusiasm","enthusiast","enthusiastic","enthusiastically","enthusiasts","entire","entirely","entirety","entities","entitled","entity","entourage","entrance","entrances","entrepreneur","entrepreneurs","entrepreneurship","entries","entropy","entrusted","entry","envelope","enveloped","environment","environmental","environmentally","environments","envisioned","envoy","envy","enzo","enzyme","enzymes","ep","epa","epic","epidemic","epilogue","episcopal","episode","episodes","epithet","epoch","eponymous","eps","epsilon","epstein","equal","equality","equally","equals","equation","equations","equator","equatorial","equestrian","equilibrium","equipment","equipped","equity","equivalence","equivalent","er","era","eras","erase","erased","erasmus","erebidae","erect","erected","erection","eric","erica","erich","erie","erik","erika","erin","eritrea","ernest","ernesto","ernie","ernst","eroded","erosion","erotic","erratic","erroneously","error","errors","erskine","erupted","eruption","eruptions","erwin","es","esa","escalated","escape","escaped","escapes","escaping","escort","escorted","escorting","escorts","espana","especially","espionage","espn","esq","essay","essays","essen","essence","essendon","essential","essentially","essex","est","establish","established","establishes","establishing","establishment","establishments","estadio","estate","estates","este","esteem","esther","estimate","estimated","estimates","estimation","estonia","estonian","estrada","estranged","estuary","et","eta","etat","etc","etched","eternal","eternity","ethan","ethanol","ethel","ether","ethernet","ethical","ethics","ethiopia","ethiopian","ethnic","ethnicity","etienne","eton","etudes","etymology","eu","eucalyptus","euclidean","eugen","eugene","eun","eurasian","eureka","euro","euroleague","europa","europe","european","europeans","euros","eurovision","ev","eva","evacuate","evacuated","evacuation","evade","evaluate","evaluated","evaluating","evaluation","evan","evangelical","evangelist","evans","eve","evelyn","even","evening","evenings","evenly","event","events","eventual","eventually","ever","everest","everett","evergreen","everton","every","everybody","everyday","everyone","everything","everywhere","evicted","evidence","evidenced","evident","evidently","evie","evil","evolution","evolutionary","evolve","evolved","evolving","ewing","ex","exact","exactly","exaggerated","exam","examination","examinations","examine","examined","examiner","examines","examining","example","examples","exams","exasperated","excavated","excavation","excavations","exceed","exceeded","exceeding","exceeds","excel","excelled","excellence","excellent","except","exception","exceptional","exceptionally","exceptions","excerpt","excerpts","excess","excessive","exchange","exchanged","exchanges","exchanging","exchequer","excited","excitedly","excitement","exciting","exclaimed","exclude","excluded","excluding","exclusion","exclusive","exclusively","excursion","excuse","excused","excuses","execute","executed","executing","execution","executions","executive","executives","exemplary","exemplified","exempt","exemption","exercise","exercised","exercises","exercising","exeter","exhaled","exhaust","exhausted","exhaustion","exhibit","exhibited","exhibiting","exhibition","exhibitions","exhibits","exile","exiled","exiles","exist","existed","existence","existent","existing","exists","exit","exited","exiting","exits","exodus","exotic","expand","expanded","expanding","expands","expanse","expansion","expansive","expect","expectation","expectations","expected","expecting","expects","expedition","expeditionary","expeditions","expelled","expenditure","expenditures","expense","expenses","expensive","experience","experienced","experiences","experiencing","experiment","experimental","experimentation","experimented","experimenting","experiments","expert","expertise","experts","expired","explain","explained","explaining","explains","explanation","explanations","explicit","explicitly","explode","exploded","explodes","exploding","exploit","exploitation","exploited","exploits","exploration","explore","explored","explorer","explorers","explores","exploring","explosion","explosions","explosive","explosives","expo","exponential","export","exported","exports","expose","exposed","exposing","exposition","exposure","express","expressed","expresses","expressing","expression","expressions","expressive","expressway","expulsion","exquisite","extant","extend","extended","extending","extends","extension","extensions","extensive","extensively","extent","exterior","external","externally","extinct","extinction","extinguished","extra","extract","extracted","extraction","extracts","extraordinary","extras","extravagant","extreme","extremely","extremes","eye","eyebrow","eyebrows","eyed","eyeing","eyelashes","eyelids","eyes","eyre","ezekiel","ezio","ezra","fa","faa","faber","fabian","fabio","fable","fabric","fabricated","fabrication","fabrics","fabulous","facade","facades","face","facebook","faced","faces","facial","facilitate","facilitated","facilitates","facilitating","facilities","facility","facing","fact","faction","factions","facto","factor","factories","factors","factory","facts","factual","faculties","faculty","fade","faded","fades","fading","fae","faerie","fai","fail","failed","failing","fails","failure","failures","faint","faintly","fair","fairbanks","fairchild","fairfax","fairfield","fairies","fairly","fairness","fairs","fairy","faith","faithful","fake","falcon","falcons","falkland","fall","fallen","falling","fallon","fallout","falls","false","falsely","faltered","fame","famed","familiar","familiarity","families","family","famine","famous","famously","fan","fancy","fang","fangs","fanny","fans","fantasia","fantasies","fantastic","fantasy","far","fare","fares","farewell","fargo","farm","farmer","farmers","farmhouse","farming","farmland","farms","farrell","farther","fascinated","fascinating","fascination","fascism","fascist","fashion","fashionable","fashioned","faso","fast","fastened","faster","fastest","fat","fatal","fatalities","fatally","fate","fated","fates","father","fathers","fatigue","fatima","fatty","faulkner","fault","faults","faulty","fauna","faust","faux","favor","favorable","favorably","favored","favorite","favorites","favors","favour","favourable","favoured","favourite","favourites","fay","faye","fbi","fc","fcc","fda","fe","fear","feared","fearful","fearing","fearless","fears","feasibility","feasible","feast","feat","feather","feathers","featherweight","feature","featured","features","featuring","feb","february","fed","federal","federally","federation","federer","federico","fee","feed","feedback","feeder","feeding","feeds","feel","feeling","feelings","feels","fees","feet","fei","fein","feldman","felicia","felicity","felipe","felix","fell","fellow","fellows","fellowship","fellowships","felony","felt","female","females","feminine","feminism","feminist","femme","fen","fence","fences","fencing","fender","feng","fenton","feral","ferdinand","fergus","ferguson","fern","fernandez","fernando","ferns","ferocious","ferrara","ferrari","ferreira","ferrer","ferries","ferris","ferry","fertile","fertility","fest","festival","festivals","festivities","fetal","fetch","feud","feudal","fever","few","fewer","fey","ff","fi","fia","fiance","fiancee","fiat","fiba","fiber","fibers","fibre","fiction","fictional","fictitious","fiddle","fide","fidelity","field","fielded","fielder","fielding","fields","fierce","fiercely","fiery","fiesta","fifa","fife","fifteen","fifteenth","fifth","fifties","fifty","fig","fight","fighter","fighters","fighting","fights","figurative","figure","figured","figures","figuring","fiji","file","filed","files","filing","filipino","filippo","fill","filled","filling","fills","filly","film","filmed","filmfare","filming","filmmaker","filmmakers","filmmaking","films","filter","filtered","filtering","filters","filthy","fin","final","finale","finalist","finalists","finalized","finally","finals","finance","financed","finances","financial","financially","financing","finch","find","finding","findings","finds","fine","fined","finely","finer","fines","finest","finger","fingered","fingernails","fingerprints","fingers","fingertips","finish","finished","finishes","finishing","finite","finland","finley","finn","finnish","fins","fiona","fir","fire","firearm","firearms","fired","firefighters","fireplace","fires","fireworks","firing","firm","firmly","firms","first","firstly","firth","fis","fiscal","fischer","fish","fished","fisher","fisheries","fisherman","fishermen","fishery","fishes","fishing","fission","fist","fisted","fists","fit","fitch","fitness","fits","fitted","fitting","fitz","fitzgerald","fitzpatrick","fitzroy","fivb","five","fix","fixed","fixing","fixture","fixtures","fjord","fk","fl","flag","flags","flagship","flair","flame","flames","flaming","flanagan","flanders","flank","flanked","flanking","flanks","flap","flaps","flare","flared","flash","flashback","flashbacks","flashed","flashes","flashing","flashlight","flat","flatly","flats","flattened","flavor","flavors","flavour","flaw","flawed","flawless","flaws","flea","fled","fledged","fledgling","flee","fleeing","flees","fleet","fleeting","fleets","fleetwood","fleming","flemish","flesh","fletcher","flew","flex","flexed","flexibility","flexible","flick","flicked","flicker","flickered","flickering","flicking","flies","flight","flights","flinch","flinched","flinders","fling","flint","flip","flipped","flipping","flirt","flirting","float","floated","floating","floats","flock","flood","flooded","flooding","floods","floor","floors","flop","flopped","floppy","flora","floral","florence","flores","florian","florida","flotilla","flour","flourish","flourished","flourishing","flow","flowed","flower","flowering","flowers","flowing","flown","flows","floyd","flu","fluctuations","fluent","fluffy","fluid","fluids","flung","fluorescent","flush","flushed","flushing","flute","flutes","flutter","fluttered","fluttering","flux","fly","flyer","flyers","flying","flynn","fm","foam","focal","focus","focused","focuses","focusing","foe","fog","foil","fold","folded","folder","folding","folds","foley","foliage","folk","folklore","folks","follow","followed","follower","followers","following","follows","folly","fond","font","fontaine","fontana","foo","food","foods","fool","fooled","foolish","fools","foot","footage","football","footballer","footballers","footed","foothills","footing","footprint","footprints","footsteps","for","foraging","forbade","forbes","forbid","forbidden","force","forced","forceful","forcefully","forces","forcibly","forcing","ford","fordham","fore","forearm","forearms","forecast","forefront","forehead","foreign","foreigner","foreigners","foreman","foremost","forensic","forerunner","forest","forested","forestry","forests","forever","forewings","foreword","forge","forged","forget","forgetting","forgive","forgiven","forgiveness","forgot","forgotten","fork","forks","form","formal","formally","format","formation","formations","formats","formed","former","formerly","formidable","forming","forms","formula","formulas","formulated","formulation","forrest","forster","forsyth","fort","forte","forth","forthcoming","fortification","fortifications","fortified","fortress","forts","fortunate","fortunately","fortune","fortunes","forty","forum","forums","forward","forwards","fossil","fossils","foster","fought","foul","found","foundation","foundations","founded","founder","founders","founding","foundry","fountain","fountains","four","fourier","fours","fourteen","fourteenth","fourth","fowler","fox","foxes","foyer","fr","fra","fraction","fracture","fractured","fractures","fragile","fragment","fragmentation","fragmented","fragments","fragrance","frail","frame","framed","frames","framework","framing","fran","francais","francaise","france","frances","francesca","francesco","franchise","franchises","francis","franciscan","francisco","franco","francois","francoise","francs","frank","frankenstein","frankfurt","frankie","frankish","franklin","frankly","franks","frantic","frantically","franz","fraser","fraternity","fraud","fraudulent","fray","frazier","freak","freaked","freaking","freaks","fred","freddie","freddy","frederic","frederick","fredrik","free","freed","freedom","freedoms","freeing","freelance","freely","freeman","freestyle","freeway","freeze","freezing","freiburg","freight","freighter","fremantle","fremont","french","frenchman","frenzy","frequencies","frequency","frequent","frequented","frequently","fresco","frescoes","fresh","freshly","freshman","freshmen","freshwater","fresno","freud","frey","freyja","friar","friars","friction","friday","fridays","fridge","fried","friedman","friedrich","friend","friendly","friends","friendship","friendships","fries","frigate","frigates","fright","frightened","frightening","fringe","fritz","frog","frogs","from","front","frontal","fronted","frontier","frontiers","frontman","fronts","frost","frown","frowned","frowning","frowns","froze","frozen","frs","fruit","fruits","frustrated","frustrating","frustration","fry","ft","fu","fuck","fucked","fucking","fuel","fueled","fuels","fugitive","fuji","fujian","fukuoka","fulbright","fulfill","fulfilled","fulfilling","fulfillment","fulham","full","fullback","fuller","fully","fulton","fumble","fumbled","fun","function","functional","functionality","functioned","functioning","functions","fund","fundamental","fundamentally","funded","funding","fundraiser","fundraising","funds","funeral","fungal","fungi","fungus","funk","funky","funnel","funny","fur","furious","furiously","furlongs","furnace","furnished","furnishings","furniture","furrowed","furry","further","furthermore","fury","fuscous","fuse","fused","fuselage","fusiliers","fusion","fuss","futile","futsal","future","futures","futuristic","fuzzy","fx","ga","gaa","gabby","gabe","gable","gabled","gables","gabon","gabriel","gabrielle","gaddafi","gael","gaelic","gag","gaga","gage","gail","gain","gained","gaines","gaining","gains","gaius","gal","gala","galactic","galaxies","galaxy","gale","galen","galerie","galicia","galician","galilee","galileo","gall","gallagher","gallant","gallantry","galleries","gallery","galley","gallo","gallon","gallons","galloway","galveston","galway","gambia","gamble","gambling","game","gameplay","gamer","games","gaming","gamma","gan","gandhi","gang","ganga","gangs","gangster","gao","gap","gaped","gaping","gaps","garage","garbage","garcia","garde","garden","gardener","gardening","gardens","gardiner","gardner","gareth","garfield","garion","garland","garlic","garment","garments","garner","garnered","garrett","garrison","garry","garth","gary","gas","gases","gasoline","gasp","gasped","gasping","gasps","gaston","gastropod","gate","gates","gateway","gather","gathered","gathering","gatherings","gathers","gauge","gaul","gaulle","gaunt","gave","gavin","gay","gaza","gaze","gazed","gazes","gazette","gazing","gb","gdansk","gdp","ge","gear","gearbox","geared","gears","gee","geek","geelong","geese","gel","gem","gemini","gemma","gems","gen","gender","gene","genealogical","genealogy","genera","general","generalized","generally","generals","generate","generated","generates","generating","generation","generations","generator","generators","generic","generosity","generous","genes","genesis","genetic","genetically","genetics","geneva","genevieve","genie","genius","genoa","genocide","genome","genre","genres","gentle","gentleman","gentlemen","gently","gentry","genuine","genuinely","genus","geo","geoff","geoffrey","geographic","geographical","geographically","geography","geologic","geological","geologist","geology","geometric","geometridae","geometry","georg","george","georges","georgetown","georgia","georgian","georgie","georgina","gerais","gerald","geraldine","gerard","gerhard","germain","german","germanic","germans","germany","gerry","gershwin","gertrude","geschichte","gesellschaft","gestapo","gesture","gestured","gestures","gesturing","get","gets","getting","gettysburg","ghana","ghanaian","ghent","ghetto","ghost","ghostly","ghosts","ghz","gi","gia","giacomo","giant","giants","gibbons","gibbs","gibraltar","gibson","gideon","gifford","gift","gifted","gifts","gig","gigantic","giggle","giggled","giggles","giggling","gigs","gil","gilbert","gilded","giles","gill","gilles","gillespie","gillian","gills","gilmore","gin","gina","ginger","gingerly","giorgio","giovanni","girl","girlfriend","girlfriends","girls","giro","giuseppe","give","given","gives","giving","glacial","glacier","glaciers","glad","gladly","gladstone","gladys","glamorgan","glamour","glance","glanced","glances","glancing","gland","glands","glare","glared","glaring","glasgow","glass","glasses","glazed","gleam","gleamed","gleaming","glee","glen","glendale","glenn","glide","glided","glider","gliding","glimpse","glint","glistening","glitter","glittering","global","globalization","globally","globe","gloom","gloria","glorious","glory","gloss","glossy","gloucester","gloucestershire","glove","glover","gloves","glow","glowed","glowing","glucose","glue","glued","gm","gma","gmbh","gmina","gnome","gnu","go","goa","goal","goalkeeper","goals","goalscorer","goaltender","goat","goats","goblin","god","goddamn","goddard","goddess","godfather","godfrey","gods","godzilla","goes","goethe","gogh","goin","going","gold","goldberg","golden","goldman","goldsmith","goldstein","golf","golfer","gomez","gone","gong","gonna","gonzaga","gonzales","gonzalez","goo","good","goodbye","goodman","goodness","goodnight","goods","goodwill","goodwin","goofy","google","goose","gora","goran","gordon","gore","gorge","gorgeous","gorilla","gorman","gospel","gospels","gossip","got","goth","gotham","gothenburg","gothic","gotta","gotten","gottfried","gottingen","gough","gould","gov","govern","governance","governed","governing","government","governmental","governments","governor","governorate","governors","govt","gown","gp","gps","gr","grab","grabbed","grabbing","grabs","grace","graceful","gracefully","gracie","grade","graded","graders","grades","gradient","grading","gradual","gradually","graduate","graduated","graduates","graduating","graduation","grady","graeme","graf","graffiti","grafton","graham","grain","grains","gram","grammar","grammatical","grammy","grams","gran","granada","grand","grandchildren","granddaughter","grande","grandfather","grandma","grandmaster","grandmother","grandpa","grandparents","grandson","grange","granite","granny","grant","granted","granting","grants","granville","grape","grapes","graph","graphic","graphical","graphics","graphs","grasp","grasped","grasping","grass","grasses","grassland","grasslands","grassroots","grassy","grateful","gratitude","grave","gravel","gravely","graves","graveyard","gravitational","gravity","gray","grayson","graz","grazed","grazing","grease","greasy","great","greater","greatest","greatly","greaves","greco","greece","greed","greedy","greek","greeks","green","greenberg","greene","greenfield","greenhouse","greenish","greenland","greens","greensboro","greenville","greenwich","greenwood","greer","greet","greeted","greeting","greg","gregg","gregor","gregorian","gregory","grenada","grenade","grenades","greta","gretchen","grew","grey","greyhound","greyish","grid","grief","griffin","griffith","griffiths","grill","grille","grim","grimace","grimaced","grimes","grimly","grimm","grimsby","grin","grind","grinding","grinned","grinning","grins","grip","gripped","gripping","grips","grit","gritted","groan","groaned","groaning","groans","groceries","grocery","groin","groningen","groom","groove","grooves","gross","grossed","grossing","grotesque","ground","groundbreaking","grounded","grounds","groundwater","group","grouped","grouping","groups","grove","grover","groves","grow","growing","growl","growled","growling","growls","grown","grows","growth","gruff","grumbled","grunt","grunted","grupo","gs","gt","gu","guadalajara","guadalupe","guam","guangdong","guangzhou","guantanamo","guarantee","guaranteed","guarantees","guard","guarded","guardian","guardians","guarding","guards","guatemala","gubernatorial","guernsey","guerra","guerre","guerrero","guerrilla","guerrillas","guess","guessed","guessing","guest","guests","guggenheim","gui","guiana","guidance","guide","guided","guidelines","guides","guiding","guido","guild","guildford","guillaume","guillermo","guilt","guilty","guinea","guineas","guinness","guise","guitar","guitarist","guitarists","guitars","gujarat","gujarati","gulf","gulp","gulped","gum","gun","gundam","gunfire","gunmen","gunn","gunnar","gunner","gunners","gunnery","gunpowder","guns","gunshot","gunslinger","gunter","gunther","guo","gupta","gurney","guru","gus","gust","gustav","gustave","gustavo","gut","guthrie","gutierrez","guts","guy","guyana","guys","guzman","gwen","gym","gymnasium","gymnast","gymnastics","gypsy","ha","haas","habit","habitat","habitats","habits","habsburg","hack","hacked","hacker","hackett","hacking","hackney","had","hades","hadley","hadn","hagen","haggard","hague","hahn","hai","haifa","hail","hailed","hailey","hair","haired","hairs","hairy","haiti","haitian","haji","hal","hale","haley","half","halftime","halfway","halifax","hall","halle","hallmark","halloween","halls","hallway","hallways","halo","halt","halted","halves","ham","hamas","hamburg","hamburger","hamid","hamilton","hamish","hamlet","hamlets","hammer","hammered","hammering","hammersmith","hammond","hampered","hampshire","hampson","hampstead","hampton","han","hana","hancock","hand","handball","handbook","handcuffs","handed","handel","handful","handgun","handheld","handicap","handicapped","handing","handkerchief","handle","handled","handler","handles","handling","hands","handsome","handwriting","handy","hang","hangar","hanged","hanging","hangs","hangul","hank","hanna","hannah","hannibal","hannover","hanoi","hanover","hans","hansen","hanson","hapoel","happen","happened","happening","happens","happier","happily","happiness","happy","hara","harald","harassed","harassment","harbor","harbour","harcourt","hard","hardcore","hardcover","harden","hardened","harder","hardest","hardin","harding","hardly","hardness","hardship","hardware","hardwood","hardy","hare","hari","harlan","harlem","harley","harlow","harm","harmed","harmful","harmless","harmon","harmonic","harmonica","harmonies","harmony","harness","harold","harp","harper","harpsichord","harriet","harrington","harris","harrisburg","harrison","harrow","harry","harsh","harshly","hart","harta","hartford","hartley","hartman","harvard","harvest","harvested","harvesting","harvey","haryana","has","hasan","hash","hasn","hassan","haste","hastily","hastings","hasty","hat","hatch","hate","hated","hates","hatfield","hating","hatred","hats","haul","hauled","hauling","haunt","haunted","haunting","haute","havana","have","haven","havilland","having","havoc","havre","hawaii","hawaiian","hawk","hawke","hawker","hawkins","hawks","hawthorn","hawthorne","hay","hayden","haydn","hayes","haynes","hays","hayward","hazard","hazardous","hazards","haze","hazel","hazy","hbo","hc","hd","he","head","headache","headed","header","heading","headlights","headline","headlined","headlines","headlining","headmaster","headquartered","headquarters","heads","headwaters","heal","healed","healer","healing","health","healthcare","healthy","healy","heap","hear","heard","hearing","hearings","hears","hearst","heart","heartbeat","heartbreak","hearted","hearth","heartland","hearts","heat","heated","heath","heather","heating","heats","heaved","heaven","heavenly","heavens","heavier","heaviest","heavily","heaving","heavy","heavyweight","hebrew","heck","hectare","hectares","hector","hedge","hedges","hee","heel","heels","heidelberg","heidi","height","heightened","heights","heinrich","heinz","heir","heiress","heirs","held","helen","helena","helene","helens","helicopter","helicopters","helium","helix","hell","hellenic","hellenistic","heller","hello","helm","helmet","helmets","helmut","help","helped","helpful","helping","helpless","helplessly","helps","helsinki","hem","hemingway","hemisphere","hen","henan","hence","henderson","hendricks","hendrix","henley","henri","henrietta","henrik","henry","henson","hepatitis","hepburn","her","herald","heraldic","herb","herbal","herbert","herbs","hercules","herd","herds","here","hereditary","hereford","heresy","heritage","herman","hermann","hermes","hermit","hermitage","hernandez","hero","heroes","heroic","heroin","heroine","heroism","heron","herr","herrera","herring","hers","herself","hertfordshire","herzegovina","hesitant","hesitantly","hesitate","hesitated","hesitation","hess","hesse","het","heterosexual","hewitt","hey","hezbollah","hi","hiatus","hickory","hicks","hid","hidalgo","hidden","hide","hideous","hideout","hides","hiding","hierarchical","hierarchy","higgins","high","higher","highest","highland","highlanders","highlands","highlight","highlighted","highlighting","highlights","highly","highness","highs","highway","highways","hike","hiking","hilarious","hilary","hilbert","hilda","hill","hillary","hills","hillsborough","hillside","hilltop","hilly","hilt","hilton","him","himalayan","himalayas","himself","hind","hindi","hindu","hinduism","hindus","hindwings","hines","hinges","hint","hinted","hints","hip","hips","hiram","hire","hired","hires","hiring","hiroshi","hiroshima","hirsch","his","hispanic","hiss","hissed","hissing","histoire","historia","historian","historians","historic","historical","historically","histories","history","hit","hitch","hitchcock","hitler","hits","hitter","hitting","hiv","hive","hk","hm","hmm","hms","ho","hoarse","hoax","hobart","hobbs","hobby","hoc","hockey","hodge","hodges","hodgson","hoffman","hoffmann","hog","hogan","hoisted","hokkaido","hold","holden","holder","holders","holding","holdings","holds","hole","holes","holiday","holidays","holiness","holland","hollis","hollow","holloway","holly","hollywood","holm","holmes","holocaust","holstein","holster","holt","holy","homage","home","homecoming","homeland","homeless","homemade","homer","homes","homestead","hometown","homework","homicide","homme","homo","homogeneous","homosexual","homosexuality","hon","honda","honduras","honest","honestly","honesty","honey","honeymoon","hong","honneur","honolulu","honor","honorable","honorary","honored","honoring","honors","honour","honourable","honoured","honours","hood","hooded","hook","hooked","hooker","hooks","hoop","hooper","hoover","hooves","hop","hope","hoped","hopeful","hopefully","hopeless","hopes","hoping","hopkins","hopped","hopper","hopping","horace","horatio","horde","horizon","horizons","horizontal","horizontally","hormone","hormones","horn","horne","horned","hornet","hornets","horns","horrible","horribly","horrific","horrified","horror","horrors","horse","horseback","horsemen","horsepower","horses","horseshoe","horst","horticultural","horton","hose","hospice","hospital","hospitality","hospitalized","hospitals","host","hostage","hostages","hosted","hostel","hostess","hostile","hostilities","hostility","hosting","hosts","hot","hotel","hotels","hotspur","hotter","hottest","houghton","hound","hounds","hour","hourly","hours","house","housed","household","householder","households","housekeeper","housemates","houses","housing","houston","hove","hovered","hovering","how","howard","howe","howell","however","howie","howl","howled","howling","hp","hq","hr","hs","html","http","https","hu","hua","huang","hub","hubbard","hubert","huddersfield","huddled","hudson","hue","huey","huff","huffed","huffington","hug","huge","hugely","hugged","hugging","hugh","hughes","hugo","hugs","huh","hui","hulk","hull","hum","human","humane","humanist","humanitarian","humanities","humanity","humanoid","humans","humble","humboldt","hume","humid","humidity","humiliated","humiliating","humiliation","hummed","humming","humor","humorous","humour","humphrey","hunan","hunched","hundred","hundreds","hung","hungarian","hungarians","hungary","hunger","hungry","hunt","hunted","hunter","hunters","hunting","huntington","hunts","huntsville","hurdle","hurdles","hurled","hurley","hurling","huron","hurricane","hurricanes","hurried","hurriedly","hurry","hurrying","hurst","hurt","hurting","hurts","husband","husbands","hush","hushed","huskies","husky","hussain","hussein","hut","hutchinson","huts","hutton","hybrid","hybrids","hyde","hyderabad","hydra","hydraulic","hydro","hydroelectric","hydrogen","hygiene","hymn","hymns","hyper","hypnotic","hypothesis","hypothetical","hysteria","hysterical","hyun","hyundai","hz","ia","iaaf","iain","ian","iata","ib","iberian","ibm","ibn","ibrahim","ic","icao","icc","ice","iced","iceland","icelandic","ich","icon","iconic","icons","ict","icy","id","ida","idaho","idea","ideal","ideally","ideals","ideas","identical","identifiable","identification","identified","identifies","identify","identifying","identities","identity","ideological","ideology","idf","idiot","idiots","idle","idol","idols","ie","iec","ieee","if","ign","ignacio","ignatius","ignited","ignition","ignorance","ignorant","ignore","ignored","ignores","ignoring","igor","ii","iihf","iii","ik","ike","il","ile","ill","illegal","illegally","illegitimate","illicit","illinois","illness","illnesses","illuminated","illuminating","illumination","illusion","illusions","illustrate","illustrated","illustrates","illustrating","illustration","illustrations","illustrator","illustrious","im","image","imagery","images","imaginary","imagination","imaginative","imagine","imagined","imaging","imagining","imam","imitation","immaculate","immature","immediate","immediately","immense","immensely","immersed","immersion","immigrant","immigrants","immigrated","immigration","imminent","immortal","immortality","immortals","immune","immunity","imp","impact","impacted","impacts","impaired","impairment","impatience","impatient","impatiently","impending","imperative","imperfect","imperial","imperialism","impetus","implant","implement","implementation","implementations","implemented","implementing","implements","implicated","implication","implications","implicit","implied","implies","imply","implying","import","importance","important","importantly","imported","imports","impose","imposed","imposing","impossible","impoverished","impress","impressed","impression","impressions","impressive","imprint","imprisoned","imprisonment","impromptu","improper","improve","improved","improvement","improvements","improves","improving","improvisation","improvised","impulse","in","ina","inability","inaccessible","inaccurate","inactivated","inactive","inadequate","inadvertently","inappropriate","inaugural","inaugurated","inauguration","inc","inca","incapable","incarcerated","incarnation","incense","incentive","incentives","inception","inch","inched","inches","incidence","incident","incidents","inclination","incline","inclined","include","included","includes","including","inclusion","inclusive","income","incomes","incoming","incompatible","incomplete","inconsistent","incorporate","incorporated","incorporates","incorporating","incorporation","incorrect","incorrectly","increase","increased","increases","increasing","increasingly","incredible","incredibly","incumbent","incurred","ind","indeed","indefinite","indefinitely","independence","independent","independently","independents","index","indexed","india","indian","indiana","indianapolis","indians","indicate","indicated","indicates","indicating","indication","indications","indicative","indicator","indicators","indices","indicted","indictment","indie","indies","indifference","indifferent","indigenous","indigo","indira","indirect","indirectly","individual","individually","individuals","indo","indochina","indonesia","indonesian","indoor","indoors","induce","induced","inducing","inducted","induction","indus","industrial","industrialist","industries","industry","indy","ineffective","ineligible","inequality","inevitable","inevitably","inexpensive","inexperienced","infamous","infancy","infant","infantry","infants","infected","infection","infections","infectious","inference","inferior","inferno","infiltrate","infinite","infinitely","infinity","infirmary","inflammation","inflammatory","inflated","inflation","inflicted","influence","influenced","influences","influencing","influential","influenza","influx","info","inform","informal","informally","informant","information","informed","informing","informs","infrared","infrastructure","infringement","infused","ing","ingram","ingredient","ingredients","ingrid","inhabit","inhabitants","inhabited","inhaled","inherent","inherently","inherit","inheritance","inherited","inhibit","inhibition","inhibitor","inhibitors","inhuman","initial","initially","initials","initiate","initiated","initiating","initiation","initiative","initiatives","injected","injection","injunction","injured","injuries","injuring","injury","injustice","ink","inland","inlet","inline","inmate","inmates","inn","innate","inner","inning","innings","innocence","innocent","innovation","innovations","innovative","innsbruck","inorganic","input","inputs","inquired","inquiries","inquiry","inquisition","ins","insane","insanity","inscribed","inscription","inscriptions","insect","insects","insert","inserted","insertion","inside","insider","insides","insight","insights","insignia","insignificant","insist","insisted","insistence","insistent","insisting","insists","inspect","inspected","inspecting","inspection","inspections","inspector","inspectors","inspiration","inspirational","inspire","inspired","inspiring","instability","install","installation","installations","installed","installing","installment","instance","instances","instant","instantly","instead","instinct","instinctively","instincts","institut","institute","instituted","institutes","institution","institutional","institutions","instituto","instructed","instruction","instructional","instructions","instructor","instructors","instrument","instrumental","instrumentalist","instrumentation","instruments","insufficient","insulation","insulin","insult","insulted","insulting","insults","insurance","insurgency","insurgents","insurrection","int","intact","intake","integer","integers","integral","integrate","integrated","integrating","integration","integrity","intel","intellect","intellectual","intellectuals","intelligence","intelligent","intend","intended","intending","intends","intense","intensely","intensified","intensity","intensive","intent","intention","intentional","intentionally","intentions","intently","inter","interact","interacting","interaction","interactions","interactive","intercept","intercepted","interception","interceptions","interceptor","interchange","intercity","intercollegiate","intercontinental","intercourse","interdisciplinary","interest","interested","interesting","interests","interface","interfaces","interfere","interfered","interference","interfering","interim","interior","interiors","interlude","intermediate","intermittent","intern","internacional","internal","internally","international","internationale","internationally","internationals","interned","internet","internment","internship","interpret","interpretation","interpretations","interpreted","interpreter","interpreting","interred","interrogation","interrupt","interrupted","interrupting","interruption","intersect","intersecting","intersection","intersections","intersects","interspersed","interstate","interval","intervals","intervene","intervened","intervening","intervention","interventions","interview","interviewed","interviewing","interviews","intimacy","intimate","intimately","intimidated","intimidating","intimidation","into","intra","intricate","intrigued","intriguing","intrinsic","intro","introduce","introduced","introduces","introducing","introduction","introductions","introductory","intruder","intrusion","intuition","intuitive","inuit","invade","invaded","invaders","invading","invalid","invariably","invariant","invasion","invasions","invasive","invented","invention","inventions","inventor","inventory","inverness","inverse","inversion","invertebrates","inverted","invest","invested","investigate","investigated","investigates","investigating","investigation","investigations","investigative","investigator","investigators","investing","investment","investments","investor","investors","invincible","invisible","invitation","invitational","invitations","invite","invited","invites","inviting","invoked","involuntary","involve","involved","involvement","involves","involving","inward","inwardly","io","ioc","ion","iona","ionic","ions","ios","iowa","ip","ipa","ipad","iphone","ipod","ipswich","iq","iqbal","ir","ira","iran","iranian","iraq","iraqi","ireland","irene","irina","iris","irish","iron","ironic","ironically","irony","iroquois","irrational","irregular","irregularities","irrelevant","irresistible","irrigation","irritated","irritating","irritation","irs","irvine","irving","irwin","is","isa","isaac","isabel","isabella","isabelle","isaiah","isbn","isil","isis","isla","islam","islamabad","islamic","islamist","island","islander","islanders","islands","isle","isles","ismail","isn","iso","isolate","isolated","isolation","isotope","israel","israeli","israelis","iss","issn","issue","issued","issues","issuing","ist","istanbul","it","italia","italian","italiana","italianate","italians","italics","italy","item","items","iteration","itf","ithaca","ito","its","itself","itunes","itv","iucn","iv","ivan","ivanov","ives","ivo","ivory","ivy","ix","izzy","ja","jace","jack","jacket","jackets","jackie","jackson","jacksonville","jacob","jacobite","jacobs","jacqueline","jacques","jade","jae","jaenelle","jagged","jagger","jaguar","jaguars","jai","jail","jailed","jaime","jain","jaipur","jakarta","jake","jakob","jalan","jam","jamaica","jamaican","jamal","james","jameson","jamestown","jamie","jammed","jammu","jan","jana","janata","jane","janeiro","janet","jang","janice","january","japan","japanese","jar","jared","jarrett","jars","jarvis","jase","jasmine","jason","jasper","java","javanese","javelin","javier","jaw","jaws","jax","jay","jaya","jayne","jays","jazz","jc","jd","je","jealous","jealousy","jean","jeanne","jeans","jed","jedi","jeep","jeff","jefferson","jeffrey","jelly","jem","jen","jena","jenkins","jenks","jenna","jennie","jennifer","jennings","jenny","jens","jensen","jeopardy","jeremiah","jeremy","jericho","jerk","jerked","jerking","jerome","jerry","jersey","jerseys","jerusalem","jess","jesse","jessica","jessie","jesuit","jesuits","jesus","jet","jets","jett","jew","jewel","jewellery","jewelry","jewels","jewish","jews","ji","jia","jian","jiang","jiangsu","jihad","jill","jillian","jim","jimenez","jimi","jimmie","jimmy","jin","jing","jingle","jj","jo","joachim","joan","joanna","joanne","joao","joaquin","job","jobs","jocelyn","jock","jockey","jody","joe","joel","joey","jogged","jogging","johan","johann","johanna","johannes","johannesburg","johansson","john","johnnie","johnny","johns","johnson","johnston","johnstone","johor","join","joined","joining","joins","joint","jointly","joints","joke","joked","joker","jokes","joking","jolly","jolt","jolted","jon","jonah","jonas","jonathan","jones","jong","jonny","joo","jordan","jordanian","jorge","jose","josef","joseph","josephine","josh","joshi","joshua","josiah","josie","journal","journalism","journalist","journalists","journals","journey","journeys","joy","joyah","joyce","jozef","jp","jr","ju","juan","juarez","jubilee","judah","judaism","judas","judd","jude","judge","judged","judgement","judges","judging","judgment","judgments","judicial","judiciary","judith","judo","judy","jug","juice","juicy","jul","jules","julia","julian","juliana","julie","julien","juliet","juliette","julio","julius","july","jump","jumped","jumper","jumping","jumps","jun","junction","junctions","june","jung","jungle","junior","juniors","juniper","junk","juno","junta","jupiter","jurassic","jurgen","juris","jurisdiction","jurisdictions","jurisprudence","jurist","jury","just","justice","justices","justification","justified","justify","justin","justine","juvenile","juveniles","juventus","ka","kabul","kade","kahn","kai","kaiser","kaitlyn","kala","kaladin","kali","kam","kamal","kamen","kan","kane","kang","kangaroo","kannada","kansas","kant","kanye","kaplan","kapoor","kappa","kara","karachi","karate","karel","karen","kari","karim","karin","karl","karlsruhe","karma","karnataka","kashmir","kassel","kat","kata","kate","katharine","katherine","kathleen","kathmandu","kathryn","kathy","katie","kato","katrina","katy","katz","kaufman","kawasaki","kay","kaye","kayla","kazakh","kazakhstan","kazan","kb","kc","ke","keane","keating","ked","keel","keen","keenan","keep","keeper","keepers","keeping","keeps","kei","keith","kellan","keller","kelley","kellogg","kelly","kelsey","kelvin","kemp","ken","kendall","kendra","kendrick","kenji","kennedy","kenneth","kenny","kensington","kent","kenton","kentucky","kenya","kenyan","kepler","kept","kerala","kerman","kern","kernel","kerr","kerry","kettle","kevin","key","keyboard","keyboardist","keyboards","keynes","keynote","keys","keystone","kg","kgb","khalid","khalifa","khan","khmer","khorasan","khyber","khz","ki","kia","kiara","kick","kicked","kicker","kicking","kickoff","kicks","kid","kidd","kidding","kidnap","kidnapped","kidnapping","kidney","kids","kiel","kiev","kilda","kildare","kilkenny","kill","killed","killer","killers","killing","killings","kills","kilograms","kilometer","kilometers","kilometre","kilometres","kim","kimball","kimberley","kimberly","kin","kinase","kincaid","kind","kinda","kindergarten","kindly","kindness","kinds","kinetic","king","kingdom","kingdoms","kings","kingsley","kingston","kinship","kira","kiran","kirby","kirk","kiss","kissed","kisses","kissing","kit","kitchen","kitchener","kitchens","kite","kits","kitten","kitty","klan","klaus","klein","km","kn","knee","kneeling","knees","knelt","knesset","knew","knicks","knife","knight","knighted","knights","knit","knitting","knives","knob","knock","knocked","knocking","knockout","knocks","knot","knots","knotted","know","knowing","knowledge","knowles","known","knows","knox","knoxville","knuckles","ko","kobayashi","kobe","koch","kochi","kolkata","koln","kong","konrad","konstantin","koppen","korea","korean","koreans","kosovo","kota","kowalski","kraft","krakow","kramer","kris","krishna","kristen","kristin","kristina","kruger","ks","ku","kuala","kumar","kun","kung","kunst","kurdish","kurdistan","kurt","kuwait","kv","kw","kwan","ky","kyiv","kyle","kylie","kyoto","kyrgyzstan","kyushu","la","lab","label","labeled","labeling","labelled","labels","labor","laboratories","laboratory","laborers","labour","labourers","labrador","labs","labyrinth","lac","lace","laced","lacey","lack","lacked","lacking","lacks","lacrosse","lacy","lad","ladder","laden","ladies","lads","lady","lafayette","lagoon","lagos","laguna","lahore","lai","laid","lair","laird","lake","lakers","lakes","lakeside","lakshmi","lal","lam","lama","lamar","lamb","lambda","lambert","lame","lamp","lamps","lan","lana","lancashire","lancaster","lance","land","landau","landed","landfall","landfill","landing","landings","landlord","landmark","landmarks","landon","landowner","landowners","lands","landscape","landscapes","landscaping","landslide","lane","lanes","lang","langdon","lange","langley","language","languages","lanka","lankan","lansing","lantern","lanterns","lao","laos","lap","laps","laptop","lara","large","largely","larger","largest","lark","larkin","larry","lars","larsen","larson","larvae","las","laser","lasers","lash","lashed","lashes","lass","last","lasted","lasting","lastly","lasts","laszlo","latch","late","lately","later","lateral","latest","latham","latin","latino","latitude","latter","lattice","latvia","latvian","lau","laude","lauded","lauderdale","laugh","laughed","laughing","laughs","laughter","launch","launched","launcher","launches","launching","laundering","laundry","laura","laureate","laurel","lauren","laurence","laurent","laurie","lausanne","lava","laval","lavender","lavish","law","lawful","lawn","lawrence","laws","lawson","lawsuit","lawsuits","lawyer","lawyers","lax","lay","layer","layered","layers","laying","layla","layne","layout","lays","layton","lazarus","lazy","lb","lbs","lc","lcd","ld","lds","le","lea","leach","lead","leader","leaders","leadership","leading","leads","leaf","leaflets","leafs","league","leagues","leah","leak","leaked","leaking","leaks","lean","leaned","leaning","leans","leap","leaped","leaping","leaps","leapt","lear","learn","learned","learners","learning","learns","learnt","leary","lease","leased","leases","leash","leasing","least","leather","leave","leaves","leaving","lebanese","lebanon","lecture","lectured","lecturer","lectures","led","ledge","ledger","lee","leeds","left","leftist","leg","legacy","legal","legally","legend","legendary","legends","leger","legged","legion","legions","legislation","legislative","legislator","legislators","legislature","legislatures","legitimacy","legitimate","lego","legs","lehigh","lehman","lei","leicester","leicestershire","leiden","leigh","leighton","leinster","leipzig","leisure","leith","leland","lemon","len","lena","lend","lending","length","lengths","lengthy","lenin","leningrad","lennon","lennox","lenny","lens","lenses","lent","leo","leon","leonard","leonardo","leone","leonid","leopard","leopold","leroy","les","lesbian","lesions","lesley","leslie","less","lesser","lesson","lessons","lest","lester","let","lethal","leto","lets","letter","lettering","letterman","letters","letting","leukemia","leung","lev","levant","level","leveled","levels","lever","leverage","levi","levin","levine","levy","lew","lewis","lex","lexi","lexie","lexington","ley","leyte","lgbt","li","lia","liability","liable","liaison","liam","liang","liar","libby","libel","liberal","liberalism","liberals","liberated","liberation","liberia","libertadores","libertarian","liberties","liberty","librarian","libraries","library","libre","libretto","libya","libyan","licence","license","licensed","licenses","licensing","lick","licked","licking","lid","lids","lie","liechtenstein","lied","liege","lies","lieu","lieutenant","life","lifeboat","lifeless","lifelong","lifespan","lifestyle","lifetime","lift","lifted","lifting","lifts","liga","ligament","ligand","light","lighted","lighter","lighthouse","lighting","lightly","lightning","lights","lightweight","ligue","like","liked","likelihood","likely","likened","likeness","likes","likewise","liking","lil","lila","lilith","lille","lillian","lilly","lily","lim","lima","limb","limbs","lime","limerick","limestone","limit","limitation","limitations","limited","limiting","limits","limo","limousine","limp","lin","lina","lincoln","lincolnshire","linda","linden","lindsay","lindsey","line","lineage","linear","linebacker","lined","lineman","linen","liner","lines","lineup","ling","linger","lingered","lingering","linguist","linguistic","linguistics","lining","link","linked","linking","links","linnaeus","linux","lion","lionel","lions","lip","lips","lipstick","liquid","liquidation","liquids","liquor","lisa","lisbon","lissa","list","listed","listen","listened","listener","listeners","listening","lister","listing","listings","lists","liszt","lit","liter","literacy","literal","literally","literary","literature","lithium","lithuania","lithuanian","litigation","litre","litres","litter","littered","little","liturgical","liturgy","liu","liv","live","lived","livelihood","lively","liver","liverpool","livery","lives","livestock","living","livingston","livingstone","liz","liza","lizard","lizards","lizzie","ljubljana","ll","llc","lloyd","lo","load","loaded","loading","loads","loaf","loan","loaned","loans","lobbied","lobby","lobbying","lobe","lobes","lobster","local","localities","locality","localized","locally","locals","locate","located","locating","location","locations","loch","lock","locke","locked","locker","lockheed","locking","locks","loco","locomotive","locomotives","locus","lodge","lodged","lodges","lodging","loft","log","logan","logged","logging","logic","logical","logistical","logistics","logo","logos","logs","loire","lois","lok","loki","lola","lombard","lombardy","london","lone","loneliness","lonely","long","longed","longer","longest","longevity","longing","longitude","longitudinal","longtime","look","looked","looking","lookout","looks","loomed","looming","loop","loops","loose","loosely","loosen","loosened","looted","looting","lopez","lord","lords","lordship","lore","loren","lorenzo","loretta","lori","lorraine","los","lose","loser","losers","loses","losing","loss","losses","lost","lot","lots","lottery","lotus","lou","loud","louder","loudly","lough","louie","louis","louisa","louise","louisiana","louisville","lounge","louvre","love","loved","lovely","lover","lovers","loves","loving","low","lowe","lowell","lower","lowered","lowering","lowers","lowest","lowland","lowlands","lowry","loyal","loyalist","loyalists","loyalty","loyola","lp","lsu","lt","ltd","lu","lublin","luc","luca","lucan","lucas","luce","lucha","lucia","lucian","luciano","lucie","lucien","lucifer","lucille","lucinda","lucius","lucivar","luck","luckily","lucknow","lucky","lucrative","lucy","ludwig","luftwaffe","luggage","luigi","luis","luisa","lukas","luke","lullaby","lulu","lumber","luminous","lump","lumpur","luna","lunar","lunatic","lunch","lund","lung","lunged","lungs","lurched","lure","lured","lurking","lush","lust","luther","lutheran","luton","lux","luxembourg","luxurious","luxury","luz","luzon","lviv","lydia","lying","lyle","lyman","lynch","lyndon","lynn","lynne","lynx","lyon","lyons","lyric","lyrical","lyricist","lyrics","ma","mab","mabel","mac","macarthur","macau","macbeth","maccabi","macdonald","mace","macedonia","macedonian","mach","machine","machinery","machines","macintosh","mack","mackay","mackenzie","maclean","macleod","macmillan","macon","macquarie","macro","macy","mad","madagascar","madam","madame","madden","maddie","maddox","maddy","made","madeira","madeleine","madeline","madhya","madison","madly","madman","madness","madonna","madras","madrid","mae","maestro","mafia","mag","magazine","magazines","magdalena","magdalene","mage","maggie","magic","magical","magician","magistrate","magistrates","magma","magna","magnate","magnesium","magnet","magnetic","magnificent","magnitude","magnolia","magnum","magnus","maguire","maha","mahal","maharaja","maharashtra","mahmoud","mahmud","mahogany","mai","maia","maid","maiden","maids","mail","main","maine","mainland","mainline","mainly","mainstream","maintain","maintained","maintaining","maintains","maintenance","mainz","maison","maitland","maize","maj","majestic","majesty","major","majority","majors","make","maker","makers","makes","makeshift","makeup","making","mal","mala","malabar","malacca","malaga","malaria","malawi","malay","malaya","malayalam","malaysia","malaysian","malcolm","maldives","male","males","mali","malibu","malice","malicious","malik","mall","malley","mallory","malls","malmo","malone","malta","maltese","malvern","mama","mammal","mammalian","mammals","mammoth","man","mana","manage","managed","management","manager","managerial","managers","manages","managing","manchester","manchu","mandal","mandarin","mandate","mandated","mandates","mandatory","mandela","mandir","mandolin","mandy","mane","maneuver","maneuvers","manfred","manga","mango","mangrove","manhattan","mani","mania","manifest","manifestation","manifested","manifesto","manifold","manila","manipulate","manipulated","manipulating","manipulation","manitoba","mankind","manly","mann","manned","manner","manners","mannheim","manning","manny","manor","manpower","mans","mansfield","mansion","mansions","manson","mantle","mantra","manual","manually","manuel","manufacture","manufactured","manufacturer","manufacturers","manufactures","manufacturing","manuscript","manuscripts","many","mao","maori","map","maple","mapped","mapping","maps","mar","mara","marathi","marathon","marble","marc","marcel","marcelo","march","marche","marched","marches","marching","marcia","marco","marcos","marcus","mare","marek","margaret","margarita","marge","margin","marginal","margins","margot","marguerite","mari","maria","marian","mariana","marianne","mariano","marie","marijuana","marilyn","marin","marina","marine","mariners","marines","marino","mario","marion","maris","marissa","marital","maritime","marius","marjorie","mark","marked","markedly","marker","markers","market","marketed","marketing","marketplace","markets","markham","marking","markings","marko","marks","markus","marlborough","marlene","marley","marlins","marlon","marne","maroon","marquess","marquette","marquez","marquis","marred","marriage","marriages","married","marries","marriott","marrow","marry","marrying","mars","marsden","marseille","marsh","marshal","marshall","marshes","mart","marta","martha","martial","martian","martin","martina","martinez","martini","martinique","martins","marty","martyr","martyrs","maru","marvel","marvelous","marvin","marx","marxism","marxist","mary","maryland","marylebone","mas","mascara","mascot","masculine","masjid","mask","masked","masks","mason","masonic","masonry","masovian","mass","massachusetts","massacre","massage","masses","massey","massif","massimo","massive","mast","master","mastered","mastering","masterpiece","masters","mastery","mat","mata","match","matched","matches","matching","mate","mated","mateo","mater","material","materialized","materials","maternal","maternity","mates","math","mathematical","mathematician","mathematicians","mathematics","mathew","mathews","mathias","matilda","mating","matrices","matrix","mats","matt","matteo","matter","mattered","matters","matthew","matthews","matthias","mattress","mature","maturity","maud","maui","maureen","maurice","mauritius","mausoleum","maverick","mavericks","max","maxi","maxim","maximal","maximilian","maximize","maximum","maximus","maxwell","may","maya","maybe","mayer","mayfair","mayfield","mayhem","maynard","mayo","mayor","mayoral","mayors","mazda","maze","mb","mba","mbc","mbe","mc","mca","mcbride","mcc","mccain","mccall","mccann","mccarthy","mccartney","mcconnell","mccormick","mccoy","mcdonald","mcdonnell","mcdowell","mcgee","mcgill","mcgrath","mcgraw","mcgregor","mcguire","mcintosh","mcintyre","mckay","mckenna","mckenzie","mckinley","mclaren","mclaughlin","mclean","mcleod","mcmahon","mcmillan","mcnamara","mcpherson","mcqueen","md","me","mead","meade","meadow","meadows","meal","meals","mean","meaning","meaningful","meaningless","meanings","means","meant","meantime","meanwhile","measure","measured","measurement","measurements","measures","measuring","meat","meath","mecca","mechanic","mechanical","mechanically","mechanics","mechanism","mechanisms","mechanized","mecklenburg","med","medal","medalist","medallion","medallist","medals","media","medial","median","mediated","mediation","medical","medicare","medication","medications","medici","medicinal","medicine","medicines","medieval","medina","meditation","mediterranean","medium","medley","meek","meet","meeting","meetings","meets","meg","mega","megan","mei","meiji","mein","mel","melancholy","melanie","melbourne","melee","melinda","melissa","mellon","melodic","melodies","melody","melt","melted","melting","melville","melvin","member","members","membership","membrane","membranes","memo","memoir","memoirs","memorabilia","memorable","memorandum","memorial","memorials","memories","memory","memphis","men","menace","menacing","mendes","mendez","mendoza","meng","menon","mental","mentally","mention","mentioned","mentioning","mentions","mentor","mentoring","menu","mer","mercantile","mercedes","mercenaries","mercenary","mercer","merchandise","merchant","merchants","mercury","mercy","mere","meredith","merely","merge","merged","merger","mergers","merging","meridian","merit","meritorious","merits","merlin","mermaid","merrill","merritt","merry","merton","mesa","mesh","mesopotamia","mess","message","messages","messaging","messed","messenger","messengers","messiah","messina","messing","messy","met","meta","metabolic","metabolism","metacritic","metadata","metal","metallic","metals","metaphor","metaphysical","meteor","meteorological","meter","meters","methane","method","methodist","methodology","methods","methyl","metis","metre","metres","metric","metro","metropolis","metropolitan","mets","metz","mexican","mexico","meyer","meyrick","mfa","mg","mgm","mhz","mi","mia","miami","mic","micah","mice","michael","michaels","michel","michelangelo","michele","michelle","michigan","mick","mickey","micro","microphone","microscope","microscopic","microscopy","microsoft","microwave","mid","midday","middle","middlesbrough","middlesex","middleton","middletown","middleweight","midfield","midfielder","midi","midland","midlands","midnight","midst","midsummer","midtown","midway","midwest","mig","might","mighty","migrant","migrants","migrate","migrated","migrating","migration","migratory","miguel","mika","mike","mikey","mikhail","mil","milan","milano","mild","mildly","mildred","mile","miles","milestone","milford","militant","militants","military","militia","militias","milk","milky","mill","millennia","millennium","miller","millie","millimetres","milling","million","millionaire","millions","mills","milne","milo","milos","milton","milwaukee","mimi","mimic","min","mina","minas","mind","mindanao","minded","minds","mine","mined","miner","mineral","minerals","miners","minerva","mines","ming","mingled","minh","mini","miniature","miniatures","minimal","minimize","minimum","mining","minions","miniseries","minister","ministerial","ministers","ministries","ministry","minneapolis","minnesota","minnie","minogue","minor","minorities","minority","minors","minsk","mint","minus","minute","minutes","miocene","mir","mira","miracle","miracles","miraculous","mirage","miranda","miriam","mirror","mirrored","mirrors","mirza","mis","miscellaneous","mischief","mischievous","misconduct","miserable","misery","misleading","miss","missed","misses","missile","missiles","missing","mission","missionaries","missionary","missions","mississippi","missouri","missy","mist","mistake","mistaken","mistakenly","mistakes","mister","mistress","misty","misunderstanding","misunderstood","mit","mitch","mitchell","mitochondrial","mitsubishi","mix","mixed","mixer","mixes","mixing","mixtape","mixture","mk","ml","mla","mlb","mls","mm","mma","mmm","mn","mo","moan","moaned","moaning","moans","moat","mob","mobile","mobility","mobilization","mobilized","mock","mocked","mocking","mod","mode","model","modeled","modeling","modelled","modelling","models","moderate","moderately","moderator","modern","modernism","modernist","modernization","modernized","modes","modest","modification","modifications","modified","modify","modifying","modular","modulation","module","modules","moe","moffat","mohamed","mohammad","mohammed","mohan","mohawk","moi","moines","moist","moisture","mojo","mold","molded","moldova","mole","molecular","molecule","molecules","molina","mollusk","molly","molten","mom","moment","momentarily","momentary","moments","momentum","momma","mommy","mon","mona","monaco","monarch","monarchs","monarchy","monasteries","monastery","monastic","monday","mondays","monde","monetary","money","mongol","mongolia","mongolian","mongols","monica","moniker","monique","monitor","monitored","monitoring","monitors","monk","monkey","monkeys","monks","monmouth","mono","monograph","monopoly","monroe","mons","monsieur","monsoon","monster","monsters","monstrous","mont","montagu","montana","montane","monte","montenegrin","montenegro","monterey","monterrey","montevideo","montgomery","month","monthly","months","montpellier","montreal","montrose","monty","monument","monumental","monuments","mood","moods","moody","moon","moonlight","moons","moor","moore","moors","moose","mor","mora","moral","morale","morales","morality","morally","morals","moran","moravian","more","moreno","moreover","morgan","mori","moritz","morley","mormon","morning","mornings","moroccan","morocco","morphological","morphology","morris","morrison","morrow","morse","mort","mortal","mortality","mortally","mortals","mortar","mortgage","mortimer","morton","mosaic","moscow","moses","moshe","mosque","mosques","mosquito","moss","most","mostly","motel","moth","mother","mothers","moths","motif","motifs","motion","motioned","motionless","motions","motivated","motivation","motive","motives","motor","motorcycle","motorcycles","motorized","motorola","motors","motorsport","motorsports","motorway","motown","motto","mound","mounds","mount","mountain","mountainous","mountains","mounted","mounting","mounts","mourning","mouse","mouth","mouthed","mouthful","mouths","move","moved","movement","movements","moves","movie","movies","moving","mozambique","mozart","mp","mph","mps","mr","mri","mrna","mrs","ms","msc","mt","mtv","mu","much","mud","muddy","mueller","muffled","mug","mughal","muhammad","muir","mukherjee","mule","muller","multi","multicultural","multimedia","multinational","multiplayer","multiple","multiplication","multiplied","multitude","mum","mumbai","mumbled","mummy","munchen","mundane","mundo","munich","municipal","municipalities","municipality","munitions","munoz","munro","munster","mural","murals","murder","murdered","murderer","murderers","murdering","murderous","murders","murdoch","muriel","murmur","murmured","murmurs","murphy","murray","musa","muscle","muscled","muscles","muscular","muse","mused","musee","museo","museum","museums","mushroom","mushrooms","music","musica","musical","musically","musicals","musician","musicians","musik","musique","muslim","muslims","mussolini","must","mustache","mustafa","mustang","mustard","muster","mustered","mutant","mutants","mutation","mutations","mute","muted","mutiny","mutter","muttered","muttering","mutual","mutually","muzzle","mv","mvp","mw","mx","my","myanmar","myers","myles","myra","myriad","myrtle","myself","mysore","myspace","mysteries","mysterious","mysteriously","mystery","mystic","mystical","myth","mythical","mythological","mythology","myths","na","naacp","nacional","nad","nadia","nadu","naga","nagar","nagasaki","nagoya","nah","naia","nail","nailed","nails","nair","nairobi","naive","nak","nakamura","naked","nam","name","named","namely","names","namesake","namibia","naming","nan","nana","nancy","nanjing","nanny","nano","nantes","naomi","nap","nape","napier","napkin","naples","napoleon","napoleonic","napoli","nara","narayan","narcotics","narrated","narration","narrative","narratives","narrator","narrow","narrowed","narrower","narrowing","narrowly","narrows","nas","nasa","nasal","nascar","nash","nashville","nassau","nasser","nasty","nat","natal","natalia","natalie","natasha","nate","nathan","nathaniel","nation","national","nationale","nationalism","nationalist","nationalists","nationalities","nationality","nationally","nationals","nations","nationwide","native","natives","nato","natural","naturalist","naturalized","naturally","nature","naughty","nausea","nautical","navajo","naval","navarre","navarro","nave","navigable","navigate","navigation","navigator","navy","nawab","nay","nazareth","nazi","nazis","nba","nbc","nbl","nc","ncaa","ndp","ne","neal","near","nearby","neared","nearer","nearest","nearing","nearly","neat","neatly","nebraska","nebula","nec","necessarily","necessary","necessitated","necessity","neck","necklace","necks","nectar","ned","nedra","nee","need","needed","needing","needle","needles","needs","needy","negative","negatively","neglect","neglected","negligence","negotiate","negotiated","negotiating","negotiation","negotiations","negro","nehru","neighbor","neighborhood","neighborhoods","neighboring","neighbors","neighbour","neighbourhood","neighbourhoods","neighbouring","neighbours","neil","neill","neither","nell","nellie","nelly","nelson","nemesis","neo","neoclassical","neolithic","neon","nepal","nepali","nephew","neptune","nero","nerve","nerves","nervous","nervously","nes","ness","nest","nesting","nestled","nestor","nests","net","netball","netflix","netherlands","nets","netting","network","networking","networks","neue","neumann","neural","neurological","neurons","neuroscience","neutral","neutrality","neutron","nevada","never","nevertheless","neville","new","newark","newborn","newbury","newcastle","newcomer","newcomers","newell","newer","newest","newfound","newfoundland","newly","newman","newmarket","newport","news","newscast","newscasts","newsletter","newspaper","newspapers","newsweek","newt","newton","newtown","next","nexus","nfc","nfl","ng","ngc","ngo","ngos","nguyen","nh","nhl","nhs","ni","niagara","niall","nic","nicaragua","niccolo","nice","nicely","niche","nicholas","nicholls","nichols","nicholson","nick","nickel","nickelodeon","nickname","nicknamed","nicky","nico","nicola","nicolas","nicole","niece","nielsen","nietzsche","nigel","niger","nigeria","nigerian","night","nightclub","nightfall","nightingale","nightly","nightmare","nightmares","nights","nightstand","nighttime","nik","nike","nikita","nikki","nikola","nikolai","nikolay","nile","nils","nilsson","nina","nine","nineteen","nineteenth","ninety","ninja","nino","nintendo","ninth","nipple","nipples","nippon","nirvana","nissan","nitrate","nitrogen","nix","nixon","nj","nk","nl","nm","nme","nmi","no","noah","nobel","nobility","noble","nobleman","nobles","nobody","noctuidae","nocturnal","nod","nodded","nodding","node","nodes","nods","noel","noelle","noir","noise","noises","noisy","nokia","nolan","nomadic","nomenclature","nominal","nominally","nominate","nominated","nomination","nominations","nominee","nominees","non","none","nonetheless","nonfiction","nonlinear","nonprofit","nonsense","nonstop","noodles","noon","nope","nor","nora","nord","nordic","norfolk","norm","norma","normal","normally","norman","normandy","norms","norris","norse","norte","north","northampton","northamptonshire","northbound","northeast","northeastern","northern","northernmost","northumberland","northward","northwards","northwest","northwestern","norton","norway","norwegian","norwich","norwood","nos","nose","nosed","noses","nostalgia","nostrils","not","notable","notably","notation","notch","note","notebook","noted","notes","noteworthy","nothin","nothing","notice","noticeable","noticeably","noticed","notices","noticing","notification","notified","noting","notion","notions","notoriety","notorious","notre","nottingham","nottinghamshire","notwithstanding","noun","nouns","nouveau","nouvelle","nov","nova","novak","novel","novelist","novella","novels","novelty","november","novgorod","novi","novice","novo","now","nowadays","nowhere","np","npr","nr","nrhp","nrl","ns","nsa","nsw","nt","nu","nuclear","nuclei","nucleus","nude","nudged","nueva","nuevo","null","numb","number","numbered","numbering","numbers","numerical","numerous","nun","nunez","nuns","nur","nuremberg","nurse","nursery","nurses","nursing","nut","nutrient","nutrients","nutrition","nutritional","nuts","nw","nwa","ny","nyc","nylon","nyu","nz","oak","oakland","oakley","oaks","oasis","oath","oaxaca","ob","obama","obe","obedience","obesity","obey","obeyed","obituary","object","objected","objection","objections","objective","objectives","objects","oblast","obligation","obligations","obligatory","obliged","oblique","oblivion","oblivious","oboe","obscene","obscure","obscured","observation","observations","observatory","observe","observed","observer","observers","observes","observing","obsessed","obsession","obsidian","obsolete","obstacle","obstacles","obstruction","obtain","obtained","obtaining","obvious","obviously","occasion","occasional","occasionally","occasions","occult","occupants","occupation","occupational","occupations","occupied","occupies","occupy","occupying","occur","occurred","occurrence","occurrences","occurring","occurs","ocean","oceania","oceanic","oceans","och","ochreous","oclc","oct","octagonal","octave","october","octopus","odd","oddly","odds","ode","oder","odessa","odi","odin","odisha","odor","odyssey","of","off","offence","offences","offended","offender","offenders","offense","offenses","offensive","offer","offered","offering","offerings","offers","office","officer","officers","offices","official","officially","officials","offs","offset","offshore","offspring","often","og","ogden","oh","ohio","oil","oilers","oils","ok","okay","okinawa","oklahoma","ol","olaf","old","older","oldest","oldham","oldies","olds","ole","oleg","olga","olive","oliveira","oliver","olivia","olivier","ollie","olsen","olson","olympia","olympiad","olympian","olympic","olympics","olympus","om","omaha","oman","omar","omega","ominous","omitted","omnibus","on","onboard","once","one","ones","oneself","ongoing","onion","onions","online","only","ono","onset","onslaught","onstage","ontario","onto","onward","onwards","op","opaque","open","opened","opener","opening","openings","openly","opens","opera","operas","operate","operated","operates","operatic","operating","operation","operational","operations","operative","operatives","operator","operators","opined","opinion","opinions","opium","opponent","opponents","opportunities","opportunity","oppose","opposed","opposes","opposing","opposite","opposition","oppression","oppressive","ops","opt","opted","optic","optical","optics","optimal","optimism","optimistic","optimization","option","optional","options","opus","or","oracle","oral","orange","orb","orbit","orbital","orbiting","orbits","orchard","orchards","orchestra","orchestral","orchestras","orchestrated","orchid","ordained","ordeal","order","ordered","ordering","orderly","orders","ordinance","ordinary","ordination","ordnance","ore","oregon","org","organ","organic","organisation","organisations","organise","organised","organising","organism","organisms","organist","organization","organizational","organizations","organize","organized","organizer","organizers","organizes","organizing","organs","orgasm","oricon","orient","oriental","orientation","oriented","origin","original","originally","originals","originate","originated","originates","originating","origins","orioles","orion","orlando","orleans","ornamental","ornaments","ornate","oro","orphan","orphanage","orphaned","orphans","orr","orson","ortega","orthodox","orthodoxy","orthogonal","ortiz","orton","os","osaka","osborn","osborne","oscar","oskar","oslo","osman","ostensibly","oswald","ot","otago","other","others","otherwise","otis","ottawa","otter","otto","ottoman","ottomans","ou","ought","ounce","our","ours","ourselves","ousted","out","outbreak","outburst","outcome","outcomes","outdated","outdoor","outdoors","outer","outfielder","outfit","outfits","outgoing","outing","outlaw","outlawed","outlaws","outlet","outlets","outline","outlined","outlines","outlook","outlying","outnumbered","outpost","output","outputs","outrage","outraged","outrageous","outreach","outright","outs","outset","outside","outsider","outsiders","outskirts","outspoken","outstanding","outstretched","outta","outward","oval","oven","over","overall","overboard","overcame","overcome","overcoming","overdose","overgrown","overhaul","overhead","overheard","overland","overlap","overlapping","overlook","overlooked","overlooking","overly","overnight","overrun","overs","oversaw","overseas","oversee","overseeing","overseen","oversees","overshadowed","oversight","oversized","overthrow","overtime","overtook","overture","overturned","overview","overwhelmed","overwhelming","overwhelmingly","ow","owe","owed","owen","owens","owes","owing","owl","owls","own","owned","owner","owners","ownership","owning","owns","ox","oxford","oxfordshire","oxidation","oxide","oxygen","oyster","oz","ozone","pa","pablo","pac","pace","paced","paces","pacific","pacing","pack","package","packaged","packages","packaging","packard","packed","packers","packet","packets","packing","packs","pact","pad","padded","paddington","paddle","paddy","padma","padre","padres","pads","padua","pagan","page","pageant","pages","pagoda","paid","paige","pain","pained","painful","painfully","pains","paint","painted","painter","painters","painting","paintings","paints","pair","paired","pairing","pairs","paisley","pajamas","pak","pakistan","pakistani","pal","palace","palaces","palais","palatinate","palatine","palazzo","pale","paler","palermo","palestine","palestinian","palestinians","palette","pali","palm","palma","palmer","palms","palo","pam","pamela","pamphlet","pamphlets","pan","panama","pancakes","panchayat","panda","pandit","pandora","panel","panels","pang","panic","panicked","panorama","panted","pantheon","panther","panthers","panties","panting","pantry","pants","panzer","paolo","papa","papacy","papal","paper","paperback","papers","paperwork","papua","papyrus","par","para","parachute","parade","parades","paradigm","paradise","paradox","paragraph","paraguay","parallel","parallels","paralympic","paralympics","paralysis","paralyzed","parameter","parameters","paramilitary","paramount","parana","paranoia","paranoid","paranormal","parapet","parasite","parasites","parasitic","parc","parcel","parcels","parchment","pardon","parent","parental","parentheses","parenting","parents","paris","parish","parishes","parisian","park","parked","parker","parking","parkinson","parks","parkway","parliament","parliamentary","parlor","parma","parochial","parody","parole","parramatta","parrot","parry","parsons","part","parted","partial","partially","participant","participants","participate","participated","participates","participating","participation","particle","particles","particular","particularly","parties","parting","partisan","partisans","partition","partly","partner","partnered","partnering","partners","partnership","partnerships","partridge","parts","party","pas","pasadena","pascal","pasha","paso","pass","passage","passages","passageway","passed","passenger","passengers","passes","passing","passion","passionate","passions","passive","passport","passports","password","past","pasta","paste","pastor","pastoral","pastry","pasture","pastures","pat","patch","patches","patel","patent","patented","patents","paternal","paterson","path","pathetic","pathogen","pathology","paths","pathway","pathways","patience","patient","patiently","patients","patio","patna","patriarch","patrice","patricia","patrick","patriot","patriotic","patriots","patrol","patrolling","patrols","patron","patronage","patrons","patsy","patted","pattern","patterned","patterns","patterson","patti","patting","patton","patty","pau","paul","paula","pauline","paulo","pause","paused","pauses","pausing","paved","pavel","pavement","pavilion","paving","paw","pawn","paws","paxton","pay","paying","payload","payment","payments","payne","payroll","pays","payton","paz","pba","pbs","pc","pcs","pd","pdf","pe","pea","peabody","peace","peaceful","peacefully","peacekeeping","peach","peacock","peak","peaked","peaking","peaks","peanut","peanuts","pear","pearce","pearl","pearls","pearson","peas","peasant","peasants","peat","pebbles","peck","peculiar","pedal","pedersen","pedestal","pedestrian","pedestrians","pediatric","pedro","pee","peek","peeked","peeking","peel","peeled","peeling","peer","peerage","peered","peering","peers","peg","pegasus","peggy","pei","peking","pembroke","pen","pena","penal","penalties","penalty","penang","pencil","pendant","pending","pendleton","pendulum","penelope","penetrate","penetrated","penetrating","penetration","peng","penguin","penguins","peninsula","peninsular","penis","penitentiary","penn","pennant","penned","pennsylvania","penny","pens","pensacola","pension","pensions","pentagon","penthouse","penultimate","people","peoples","pep","pepper","peppers","pepsi","peptide","per","perceive","perceived","percent","percentage","perception","perceptions","perch","perched","percival","percussion","percy","pere","pereira","perennial","perez","perfect","perfection","perfectly","perform","performance","performances","performed","performer","performers","performing","performs","perfume","perhaps","perimeter","period","periodic","periodical","periodically","periodicals","periods","peripheral","periphery","perished","perkins","permanent","permanently","permission","permit","permits","permitted","permitting","perpendicular","perpetrators","perpetual","perrin","perry","persecuted","persecution","persia","persian","persians","persist","persisted","persistence","persistent","person","persona","personal","personalities","personality","personally","personnel","persons","perspective","perspectives","persuade","persuaded","persuasion","pertaining","perth","peru","peruvian","peshawar","pest","pet","petals","pete","peter","peterborough","peters","petersburg","petersen","peterson","petit","petite","petition","petitioned","petitions","petra","petrol","petroleum","pets","petty","peugeot","pew","peyton","pg","pga","ph","phantom","pharaoh","pharmaceutical","pharmaceuticals","pharmacy","phase","phased","phases","phd","phelps","phenomena","phenomenon","phi","phil","philadelphia","philanthropic","philanthropist","philanthropy","philharmonic","philip","philipp","philippe","philippine","philippines","philips","phillies","phillip","phillips","philology","philosopher","philosophers","philosophical","philosophy","phoebe","phoenix","phone","phones","phonetic","phosphate","phosphorus","photo","photograph","photographed","photographer","photographers","photographic","photographs","photography","photon","photos","php","phrase","phrases","phyllis","phylogenetic","physical","physically","physician","physicians","physicist","physics","physiological","physiology","pi","pia","pianist","piano","pianos","piazza","pic","picasso","piccolo","pick","picked","pickering","picket","picking","picks","pickup","picnic","pictorial","picture","pictured","pictures","picturesque","pie","piece","pieces","piedmont","pier","pierce","pierced","piercing","pierre","piers","pieter","pietro","pig","pigeon","pigeons","pigment","pigs","pike","pilasters","pile","piled","piles","pilgrim","pilgrimage","pilgrims","pill","pillar","pillars","pillow","pillows","pills","pilot","piloted","pilots","pin","pinch","pinched","pine","pines","ping","pink","pinnacle","pinned","pinning","pins","pinto","pinyin","pioneer","pioneered","pioneering","pioneers","pious","pip","pipe","pipeline","piper","pipes","piracy","pirate","pirates","pisa","piss","pissed","pistol","pistols","piston","pistons","pit","pitch","pitched","pitcher","pitchers","pitches","pitchfork","pitching","pits","pitt","pitted","pittsburgh","pity","pius","pivotal","pixel","pixels","pizza","pl","place","placed","placement","places","placing","plague","plagued","plaid","plain","plainly","plains","plaintiff","plaintiffs","plan","planck","plane","planes","planet","planetary","planets","plank","planned","planner","planners","planning","plans","plant","plantation","plantations","planted","planting","plants","plaque","plaques","plasma","plaster","plastered","plastic","plastics","plata","plate","plateau","plates","platform","platforms","platinum","plato","platoon","platt","plausible","play","playable","playback","playboy","played","player","players","playful","playfully","playground","playhouse","playing","playoff","playoffs","plays","playstation","playwright","plaza","plc","plea","plead","pleaded","pleading","pleas","pleasant","pleasantly","please","pleased","pleasing","pleasure","pleasures","pledge","pledged","pleistocene","plenty","plight","plot","plots","plotted","plotting","plucked","plug","plum","plumage","plumbing","plume","plump","plunge","plunged","plunging","plural","plurality","plus","plush","pluto","plymouth","pm","pmid","pneumonia","po","pocket","pockets","pod","podcast","podium","pods","poe","poem","poems","poet","poetic","poetry","poets","point","pointe","pointed","pointedly","pointer","pointing","pointless","points","poised","poison","poisoned","poisoning","poisonous","poke","poked","pokemon","poker","poking","pol","poland","polar","pole","poles","polgara","police","policeman","policemen","policies","policing","policy","polish","polished","polite","politely","political","politically","politician","politicians","politics","polk","polka","poll","pollard","polled","pollen","polling","pollock","polls","pollution","polly","polo","poly","polymer","polymers","polynomial","polynomials","polytechnic","pomerania","pomeranian","ponce","pond","ponder","pondered","ponds","pont","pontiac","pontifical","pony","ponytail","pool","poole","pools","poor","poorer","poorly","pop","popcorn","pope","popped","popping","poppy","pops","populace","popular","popularity","popularized","popularly","populated","population","populations","populous","por","porcelain","porch","pork","porn","pornographic","pornography","porsche","port","portable","portage","portal","portals","porte","ported","porter","portfolio","portico","portion","portions","portland","porto","portrait","portraits","portray","portrayal","portrayed","portraying","portrays","ports","portsmouth","portugal","portuguese","pose","posed","poses","posing","position","positioned","positioning","positions","positive","positively","posse","possess","possessed","possesses","possessing","possession","possessions","possessive","possibilities","possibility","possible","possibly","post","postage","postal","postdoctoral","posted","poster","posterior","posters","postgraduate","posthumous","posthumously","posting","postmaster","postponed","posts","postseason","posture","postwar","pot","potassium","potato","potatoes","potent","potential","potentially","potion","potomac","pots","potsdam","potter","pottery","pouch","poultry","pound","pounded","pounder","pounding","pounds","pour","poured","pouring","poverty","pow","powder","powell","power","powered","powerful","powerhouse","powerless","powerplant","powers","poznan","pp","pr","practical","practically","practice","practiced","practices","practicing","practised","practitioner","practitioners","pradesh","prague","prairie","praise","praised","praises","praising","prakash","prank","prasad","pratt","pray","prayed","prayer","prayers","praying","prc","pre","preach","preached","preacher","preaching","precautions","preceded","precedence","precedent","preceding","precinct","precious","precipitation","precise","precisely","precision","precursor","predator","predators","predatory","predecessor","predecessors","predict","predictable","predicted","predicting","prediction","predictions","predominant","predominantly","preface","prefect","prefecture","prefer","preference","preferences","preferred","preferring","prefers","prefix","pregnancy","pregnant","prehistoric","prejudice","prelate","preliminary","prelude","prem","premature","prematurely","premier","premiere","premiered","premiership","premio","premise","premises","premium","prentice","preoccupied","prep","preparation","preparations","preparatory","prepare","prepared","prepares","preparing","prequel","presbyterian","preschool","prescott","prescribed","prescription","preseason","presence","present","presentation","presentations","presented","presenter","presenters","presenting","presently","presents","preservation","preserve","preserved","preserves","preserving","presided","presidency","president","presidential","presidents","presiding","presley","press","pressed","presses","pressing","pressure","pressured","pressures","prestige","prestigious","preston","presumably","presumed","pretend","pretended","pretending","pretoria","pretty","prevailed","prevailing","prevalence","prevalent","prevent","prevented","preventing","prevention","prevents","preview","previous","previously","prey","pri","price","priced","prices","pricing","prick","pride","priest","priestess","priesthood","priests","prima","primal","primaries","primarily","primary","primate","prime","primera","primetime","primitive","prince","princely","princes","princess","princeton","principal","principality","principally","principals","principle","principles","print","printed","printer","printers","printing","prints","prior","priorities","priority","priory","priscilla","prism","prison","prisoner","prisoners","prisons","pristine","privacy","private","privateer","privately","privatization","privilege","privileged","privileges","privy","prix","prize","prized","prizes","pro","probability","probable","probably","probation","probe","probing","problem","problematic","problems","procedural","procedure","procedures","proceed","proceeded","proceeding","proceedings","proceeds","process","processed","processes","processing","procession","processor","processors","proclaimed","proclamation","proctor","procurement","prodigy","produce","produced","producer","producers","produces","producing","product","production","productions","productive","productivity","products","prof","profession","professional","professionally","professionals","professions","professor","professors","professorship","proficiency","proficient","profile","profiles","profit","profitable","profits","profound","profoundly","program","programme","programmed","programmer","programmers","programmes","programming","programs","progress","progressed","progresses","progressing","progression","progressive","progressively","prohibit","prohibited","prohibiting","prohibition","prohibits","project","projected","projectile","projecting","projection","projections","projective","projects","proliferation","prolific","prologue","prolonged","prom","promenade","prominence","prominent","prominently","promise","promised","promises","promising","promo","promote","promoted","promoter","promoters","promotes","promoting","promotion","promotional","promotions","prompt","prompted","prompting","promptly","prone","pronounced","pronouns","pronunciation","proof","prop","propaganda","propagation","propelled","propeller","propellers","proper","properly","properties","property","prophecy","prophet","prophets","proponent","proponents","proportion","proportional","proportions","proposal","proposals","propose","proposed","proposes","proposing","proposition","propped","proprietary","proprietor","props","propulsion","prose","prosecuted","prosecution","prosecutor","prosecutors","prospect","prospective","prospects","prosperity","prosperous","prostate","prostitute","prostitutes","prostitution","protagonist","protagonists","protect","protected","protecting","protection","protections","protective","protector","protectorate","protects","protege","protein","proteins","protest","protestant","protestants","protested","protesters","protesting","protests","proto","protocol","protocols","proton","prototype","prototypes","protruding","proud","proudly","prove","proved","proven","provence","proves","provide","provided","providence","provider","providers","provides","providing","province","provinces","provincial","proving","provision","provisional","provisions","provocative","provoke","provoked","provost","prowess","proximity","proxy","prussia","prussian","pry","ps","psalm","psalms","pseudo","pseudonym","psi","psyche","psychedelic","psychiatric","psychiatrist","psychiatry","psychic","psycho","psychological","psychologist","psychologists","psychology","psychotic","pt","ptolemy","pts","pu","pub","public","publication","publications","publicity","publicized","publicly","publish","published","publisher","publishers","publishes","publishing","pubs","puck","pudding","puddle","puebla","pueblo","puerto","puff","puget","pulitzer","pull","pulled","pulling","pulls","pulmonary","pulp","pulpit","pulse","pulsed","pulses","pulsing","pump","pumped","pumping","pumpkin","pumps","pun","punch","punched","punches","punching","pune","punish","punished","punishment","punishments","punjab","punjabi","punk","punt","punta","pup","pupil","pupils","puppet","puppets","puppy","purcell","purchase","purchased","purchases","purchasing","purdue","pure","purely","purge","purification","purity","purple","purported","purpose","purposely","purposes","purse","pursed","pursuant","pursue","pursued","pursuing","pursuit","pursuits","push","pushed","pushes","pushing","pussy","put","putin","putnam","puts","putting","puzzle","puzzled","puzzles","pv","pyramid","pyrenees","python","qaeda","qatar","qb","qc","qi","qin","qing","qu","quad","quadrant","quake","quaker","quakers","qualification","qualifications","qualified","qualifier","qualifiers","qualify","qualifying","qualities","quality","quan","quantitative","quantities","quantity","quantum","quarrel","quarries","quarry","quarter","quarterback","quarterfinal","quarterfinals","quarterly","quartermaster","quarters","quartet","quartz","quasi","quay","que","quebec","queen","queens","queensland","queer","quentin","query","quest","question","questionable","questioned","questioning","questions","queue","quezon","qui","quick","quicker","quickly","quiet","quieter","quietly","quilt","quincy","quinlan","quinn","quintet","quit","quite","quiver","quivering","quiz","quo","quota","quote","quoted","quotes","quoting","qur","quran","ra","raaf","rabbi","rabbis","rabbit","rabbits","race","racecourse","raced","racehorse","racer","racers","races","racetrack","raceway","rachel","racial","racing","racism","racist","rack","racks","radar","radcliffe","radha","radial","radiant","radiated","radiating","radiation","radical","radically","radicals","radio","radioactive","radios","radius","rae","raf","rafael","rafe","raft","rag","rage","raged","ragged","raging","rags","rahman","rai","raid","raided","raider","raiders","raiding","raids","rail","railing","railroad","railroads","rails","railway","railways","rain","rainbow","rained","rainer","rainfall","rainforest","raining","rains","rainy","raion","raise","raised","raises","raising","raj","raja","rajasthan","raju","rake","raked","raleigh","rallied","rallies","rally","ralph","ram","rama","ramirez","rammed","ramon","ramos","ramp","rampage","rampant","ramps","rams","ramsay","ramsey","ran","rana","ranch","rancho","rand","randall","randolph","random","randomly","randy","rang","range","ranged","ranger","rangers","ranges","ranging","rani","rank","ranked","rankin","ranking","rankings","ranks","rann","ransom","rao","raoul","rap","rape","raped","raphael","rapid","rapidly","rapids","rapper","rappers","rare","rarely","ras","rash","rashid","rasped","rat","rate","rated","rates","rather","ratification","ratified","rating","ratings","ratio","rational","rations","ratios","rats","rattle","rattled","rattling","raul","ravaged","rave","raven","ravens","ravi","ravine","raw","ray","raymond","rayon","rays","razor","rb","rbi","rbis","rc","rca","rd","re","reach","reached","reacher","reaches","reaching","react","reacted","reacting","reaction","reactions","reactivated","reactive","reactor","reactors","reacts","read","reader","readers","readily","readiness","reading","readings","reads","ready","reagan","real","realise","realised","realises","realising","realism","realistic","realities","reality","realization","realize","realized","realizes","realizing","really","realm","realms","reaper","reapers","reappeared","rear","reared","rearview","reason","reasonable","reasonably","reasoned","reasoning","reasons","reassigned","reassure","reassured","reassuring","rebecca","rebel","rebelled","rebellion","rebellious","rebels","rebirth","reborn","rebound","rebounds","rebranded","rebuild","rebuilding","rebuilt","rec","recall","recalled","recalling","recalls","recapture","recaptured","receipt","receipts","receive","received","receiver","receivers","receives","receiving","recent","recently","reception","receptionist","receptions","receptor","receptors","recess","recession","recipe","recipes","recipient","recipients","reciprocal","recital","recited","reckless","reckon","reclaim","reclaimed","reclamation","recognise","recognised","recognition","recognizable","recognize","recognized","recognizes","recognizing","recoil","recommend","recommendation","recommendations","recommended","recommends","reconcile","reconciled","reconciliation","reconnaissance","reconstructed","reconstruction","record","recorded","recorder","recording","recordings","records","recounted","recounts","recover","recovered","recovering","recovery","recreated","recreation","recreational","recruit","recruited","recruiting","recruitment","recruits","rectangular","rector","rectory","recurring","recycled","recycling","red","redding","reddish","reddy","redemption","redesign","redesignated","redesigned","redeveloped","redevelopment","redhead","rediscovered","redistribution","reds","redskins","reduce","reduced","reduces","reducing","reduction","reductions","redundant","redwood","reece","reed","reef","reefs","reel","reelected","reelection","reeling","rees","reese","reeve","reeves","ref","refer","referee","referees","reference","referenced","references","referencing","referendum","referred","referring","refers","refined","refinery","refining","refit","reflect","reflected","reflecting","reflection","reflections","reflective","reflects","reflex","reform","reformation","reformed","reformer","reforming","reforms","refrain","refreshing","refrigerator","refueling","refuge","refugee","refugees","refurbished","refurbishment","refusal","refuse","refused","refuses","refusing","reg","regain","regained","regaining","regal","regan","regard","regarded","regarding","regardless","regards","regatta","regency","regeneration","regent","regents","reggae","reggie","regime","regiment","regimental","regiments","regimes","regina","reginald","region","regional","regions","regis","register","registered","registering","registers","registrar","registration","registry","regression","regret","regrets","regretted","regular","regularly","regulars","regulate","regulated","regulates","regulating","regulation","regulations","regulator","regulators","regulatory","rehab","rehabilitation","rehearsal","rehearsals","rei","reich","reid","reign","reigned","reigning","reigns","reilly","rein","reindeer","reinforce","reinforced","reinforcement","reinforcements","reins","reinstated","reintroduced","reissue","reissued","reiterated","reject","rejected","rejecting","rejection","rejects","rejoin","rejoined","relate","related","relates","relating","relation","relational","relations","relationship","relationships","relative","relatively","relatives","relativity","relaunched","relax","relaxation","relaxed","relaxing","relay","release","released","releases","releasing","relegated","relegation","relentless","relevance","relevant","reliability","reliable","reliance","relic","relics","relied","relief","reliefs","relies","relieve","relieved","religion","religions","religious","relinquished","relocate","relocated","relocating","relocation","reluctance","reluctant","reluctantly","rely","relying","remade","remain","remainder","remained","remaining","remains","remake","remark","remarkable","remarkably","remarked","remarks","remarried","remastered","rematch","remedy","remember","remembered","remembering","remembers","remembrance","remind","reminded","reminder","reminding","reminds","remington","reminiscent","remix","remixed","remixes","remnant","remnants","remodeled","remorse","remote","remotely","removal","remove","removed","removes","removing","remy","ren","renaissance","renal","renamed","renaming","renault","render","rendered","rendering","rendezvous","rendition","rene","renee","renegade","renew","renewable","renewal","renewed","reno","renovated","renovation","renovations","renowned","rent","rental","rented","rents","renumbered","reopened","reorganisation","reorganization","reorganized","rep","repair","repaired","repairing","repairs","repay","repeal","repealed","repeat","repeated","repeatedly","repeating","repeats","repertoire","repertory","repetition","repetitive","replace","replaced","replacement","replacements","replaces","replacing","replay","replica","replicate","replication","replied","replies","reply","report","reported","reportedly","reporter","reporters","reporting","reports","repository","represent","representation","representations","representative","representatives","represented","representing","represents","repression","reprint","reprinted","reprise","reprised","reproduce","reproduced","reproduction","reproductive","reptiles","republic","republican","republicans","republics","republished","repulsed","reputation","reputed","request","requested","requesting","requests","requiem","require","required","requirement","requirements","requires","requiring","res","rescue","rescued","rescues","rescuing","research","researched","researcher","researchers","researches","researching","resemblance","resemble","resembled","resembles","resembling","resented","resentment","reservation","reservations","reserve","reserved","reserves","reservoir","reservoirs","reset","reside","resided","residence","residences","residency","resident","residential","residents","resides","residing","residual","residue","residues","resign","resignation","resigned","resigning","resin","resist","resistance","resistant","resisted","resisting","resolution","resolutions","resolve","resolved","resolving","resonance","resort","resorts","resource","resources","respect","respectable","respected","respectful","respecting","respective","respectively","respects","respiratory","respond","responded","respondents","responding","responds","response","responses","responsibilities","responsibility","responsible","responsive","rest","restart","restarted","restaurant","restaurants","rested","resting","restless","restoration","restore","restored","restoring","restrain","restrained","restraining","restraint","restraints","restrict","restricted","restricting","restriction","restrictions","restrictive","restroom","restructuring","rests","result","resultant","resulted","resulting","results","resume","resumed","resurgence","resurrected","resurrection","retail","retailer","retailers","retain","retained","retaining","retains","retaliation","retention","retire","retired","retirement","retiring","retorted","retracted","retreat","retreated","retreating","retribution","retrieval","retrieve","retrieved","retro","retrospective","return","returned","returning","returns","reuben","reunification","reunion","reunite","reunited","reused","reuters","rev","reveal","revealed","revealing","reveals","revelation","revelations","revenge","revenue","revenues","revered","reverend","reversal","reverse","reversed","reverted","review","reviewed","reviewer","reviewers","reviewing","reviews","revised","revision","revisions","revisited","revival","revive","revived","revoked","revolt","revolution","revolutionaries","revolutionary","revolutions","revolver","revolves","revolving","revue","reward","rewarded","rewards","reworked","rex","rey","reyes","reykjavik","reynolds","reza","rf","rfc","rhapsody","rhea","rhetoric","rhine","rhineland","rhino","rhode","rhodes","rhodesia","rhone","rhyme","rhymes","rhys","rhythm","rhythmic","rhythms","ri","riaa","rib","ribbon","ribbons","ribs","ric","rica","rican","ricardo","rice","rich","richard","richards","richardson","richer","riches","richest","richie","richly","richmond","richter","rick","ricky","rico","rid","ridden","riddle","ride","rider","riders","rides","ridge","ridges","ridiculous","riding","ridley","riff","rifle","rifles","rift","rig","riga","rigged","right","righteous","rightful","rights","rigid","rigorous","rihanna","riley","rim","ring","ringing","ringo","rings","rink","rio","rios","riot","riots","rip","ripe","ripley","ripped","ripping","ripple","rippled","rise","risen","rises","rising","risk","risked","risking","risks","risky","rita","ritchie","rite","rites","ritter","ritual","rituals","rival","rivalry","rivals","river","rivera","rivers","riverside","rm","rms","rn","rna","ro","roach","road","roads","roadside","roadway","roam","roaming","roanoke","roar","roared","roaring","roast","roasted","rob","robb","robbed","robber","robbers","robbery","robbie","robbins","robe","robert","roberta","roberto","roberts","robertson","robes","robin","robinson","robot","robotic","robotics","robots","robson","robust","robyn","roc","rocco","rochdale","roche","rochelle","rochester","rock","rocked","rockefeller","rocker","rocket","rockets","rockies","rocking","rocks","rockwell","rocky","rod","rode","rodents","rodeo","roderick","rodgers","rodney","rodrigo","rodriguez","rods","roe","roger","rogers","rogue","rohan","roi","roland","role","roles","rolf","roll","rolled","roller","rolling","rollins","rolls","rom","roma","roman","romance","romanesque","romani","romania","romanian","romanized","romano","romans","romantic","rome","romeo","romero","romney","ron","ronald","ronan","ronin","ronnie","roof","roofed","roofs","rooftop","rook","rookie","room","roommate","rooms","rooney","roosevelt","rooster","root","rooted","roots","rope","ropes","rory","rosa","rosalie","rosario","rosary","rose","rosemary","rosen","rosenberg","rosenthal","roses","rosewood","rosie","ross","rossi","roster","rosy","rot","rotary","rotate","rotated","rotating","rotation","rotational","roth","rotherham","rothschild","rotor","rotten","rotterdam","rotting","rouen","rouge","rough","roughly","round","roundabout","rounded","rounding","rounds","rourke","rouse","rousseau","route","routed","routes","routine","routinely","routines","routing","routledge","rover","rovers","row","rowan","rowe","rower","rowing","rowland","rows","roxy","roy","royal","royale","royalist","royals","royalties","royalty","royce","rpg","rpm","rq","rr","rs","rt","rte","ru","rub","rubbed","rubber","rubbing","rubbish","rubble","ruben","rubin","rubs","ruby","rudd","rudder","rude","rudolf","rudolph","rudy","rue","rufus","rug","rugby","rugged","ruin","ruined","ruining","ruins","ruiz","rule","ruled","ruler","rulers","rules","ruling","rum","rumble","rumbled","rumbling","rumor","rumored","rumors","rumours","run","runaway","rune","runes","runner","runners","running","runoff","runs","runway","runways","rupert","rural","rus","ruse","rush","rushed","rushes","rushing","russ","russell","russia","russian","russians","russo","rust","rustic","rustling","rusty","rutgers","ruth","rutherford","ruthless","rutland","rv","rwanda","ry","ryan","ryder","rye","ryu","sa","sabah","sabbath","saber","sabha","sabine","sable","sabotage","sabre","sabres","sabrina","sac","sachs","sack","sacked","sacks","sacrament","sacramento","sacred","sacrifice","sacrificed","sacrifices","sad","saddam","saddle","sadie","sadler","sadly","sadness","saetan","safari","safe","safeguard","safely","safer","safety","saga","sage","sagged","sahara","saharan","sahib","sai","said","saigon","sail","sailed","sailing","sailor","sailors","sails","saint","sainte","saints","sake","sakura","sal","salad","salamanca","salaries","salary","salazar","sale","salem","sales","salesman","salford","salim","saline","salisbury","saliva","salle","sally","salman","salmon","salon","saloon","salsa","salt","salts","salty","salute","salvador","salvage","salvation","salvatore","salzburg","sam","samantha","samba","same","sami","sammy","samoa","sample","sampled","samples","sampling","sampson","samson","samsung","samuel","samurai","san","sanchez","sanctioned","sanctions","sanctuary","sand","sandals","sanders","sandra","sands","sandstone","sandwich","sandwiches","sandy","sane","sanford","sang","sanitary","sanitation","sanity","sanjay","sank","sans","sanskrit","sant","santa","santana","santiago","santo","santos","sao","sap","sapphire","sar","sara","sarah","sarajevo","saratoga","sarawak","sarcasm","sarcastic","sarcastically","sardinia","sargent","sas","sash","sasha","saskatchewan","saskatoon","sat","satan","satellite","satellites","satin","satire","satirical","satisfaction","satisfactory","satisfied","satisfy","satisfying","sato","saturated","saturday","saturdays","saturn","sauce","saudi","saul","saunders","sausage","sava","savage","savanna","savannah","save","saved","saves","saving","savings","savior","savoy","saw","sawmill","sawyer","sax","saxe","saxon","saxons","saxony","saxophone","saxophonist","say","saying","says","sb","sbs","sc","scala","scale","scaled","scales","scaling","scalp","scan","scandal","scandals","scandinavia","scandinavian","scanned","scanner","scanning","scans","scar","scarborough","scarce","scarcely","scare","scared","scares","scarf","scarlet","scarlett","scarred","scars","scary","scattered","scattering","scenario","scenarios","scene","scenery","scenes","scenic","scent","scented","scents","schedule","scheduled","schedules","scheduling","scheme","schemes","schizophrenia","schleswig","schmidt","schneider","scholar","scholarly","scholars","scholarship","scholarships","scholastic","school","schoolhouse","schooling","schools","schooner","schubert","schultz","schumacher","schumann","schuster","schwartz","schwarz","sci","science","sciences","scientific","scientist","scientists","scientology","scissors","scoffed","scoop","scooped","scooted","scope","score","scored","scorer","scores","scoring","scorpion","scotch","scotia","scotland","scots","scott","scottish","scout","scouting","scouts","scowl","scowled","scramble","scrambled","scrambling","scranton","scrap","scrape","scraped","scraping","scrapped","scratch","scratched","scratches","scratching","scream","screamed","screaming","screams","screen","screened","screening","screenings","screenplay","screens","screenwriter","screw","screwed","screwing","scribe","script","scripted","scripts","scripture","scriptures","scroll","scrolling","scrolls","scrub","scrubbed","scrutiny","scuba","scully","sculpted","sculptor","sculptors","sculpture","sculptures","sd","se","sea","seafood","seahawks","seal","sealed","sealing","seals","seam","seaman","seamen","seamus","sean","search","searched","searches","searching","searing","sears","seas","seaside","season","seasonal","seasoned","seasons","seat","seated","seater","seating","seats","seattle","sebastian","sebastien","sec","secession","secluded","second","secondary","secondly","seconds","secrecy","secret","secretariat","secretaries","secretary","secretive","secretly","secrets","sect","section","sectional","sections","sector","sectors","secular","secure","secured","securely","securing","securities","security","sedan","sediment","sedimentary","sediments","seduce","seduction","seductive","see","seed","seeded","seeds","seeing","seek","seeker","seekers","seeking","seeks","seem","seemed","seeming","seemingly","seems","seen","sees","sega","segment","segments","segregated","segregation","segunda","seine","seismic","seize","seized","seizing","seizure","seizures","selangor","seldom","select","selected","selecting","selection","selections","selective","selector","selects","selena","self","selfish","sell","seller","sellers","selling","sells","selma","semantic","semantics","semester","semi","semiconductor","semifinal","semifinals","seminal","seminar","seminars","seminary","seminole","semitic","sen","senate","senator","senators","send","sending","sends","seneca","senegal","senior","seniors","sensation","sensations","sense","sensed","senses","sensible","sensing","sensitive","sensitivity","sensor","sensors","sensory","sensual","sent","sentai","sentence","sentenced","sentences","sentencing","sentiment","sentimental","sentiments","sentinel","seo","seoul","sep","separate","separated","separately","separates","separating","separation","sept","september","sequel","sequels","sequence","sequences","sequencing","sequential","ser","sera","serb","serbia","serbian","serbs","serena","serene","serge","sergeant","sergei","sergey","sergio","serial","serialized","serials","serie","series","serious","seriously","seriousness","sermon","sermons","serpent","serra","serum","servant","servants","serve","served","server","servers","serves","service","serviced","servicemen","services","servicing","serving","sesame","session","sessions","set","seth","seton","sets","setting","settings","settle","settled","settlement","settlements","settler","settlers","settles","settling","setup","seven","sevens","seventeen","seventeenth","seventh","seventies","seventy","several","severe","severed","severely","severity","severn","sevilla","seville","sewage","sewer","sewing","sex","sexes","sexual","sexuality","sexually","sexy","seychelles","seymour","sf","sg","sgt","sh","sha","shack","shade","shaded","shades","shadow","shadowed","shadows","shadowy","shady","shaft","shafts","shaggy","shah","shake","shaken","shakes","shakespeare","shaking","shaky","shale","shall","shallow","sham","shaman","shame","shamrock","shan","shandong","shane","shang","shanghai","shankar","shannon","shape","shaped","shapes","shaping","shapiro","shards","share","shared","shareholder","shareholders","shares","sharif","sharing","shark","sharks","sharma","sharon","sharp","sharpe","sharpened","sharply","shatter","shattered","shattering","shaun","shave","shaved","shaw","shawn","shay","she","shea","shear","sheath","shed","sheds","sheen","sheep","sheer","sheet","sheets","sheffield","sheikh","sheila","shelby","sheldon","shelf","shell","shelley","shells","shelly","shelter","sheltered","shelters","shelton","shelves","shen","sheng","shenzhen","shepard","shepherd","sheppard","sheridan","sheriff","sherlock","sherman","sherry","sherwood","shetland","shi","shia","shield","shielded","shielding","shields","shift","shifted","shifter","shifters","shifting","shifts","shillings","shimmering","shin","shine","shining","shiny","ship","shipbuilding","shipment","shipments","shipped","shipping","ships","shipyard","shire","shirley","shirt","shirts","shit","shitty","shiva","shiver","shivered","shivering","shivers","sho","shock","shocked","shocking","shocks","shoe","shoes","shone","shook","shoot","shooter","shooters","shooting","shootout","shoots","shop","shopping","shops","shore","shoreline","shores","short","shortage","shortages","shortened","shorter","shortest","shortlisted","shortly","shorts","shortstop","shot","shotgun","shots","should","shoulder","shouldered","shoulders","shouldn","shout","shouted","shouting","shouts","shove","shoved","shovel","shoving","show","showcase","showcased","showcases","showcasing","showdown","showed","shower","showered","showers","showing","shown","shows","showtime","shredded","shreveport","shrewsbury","shri","shriek","shrieked","shrill","shrimp","shrine","shrines","shrink","shrinking","shropshire","shrub","shrubs","shrug","shrugged","shrugs","shu","shudder","shuddered","shuddering","shuffle","shuffled","shuffling","shut","shutter","shutting","shuttle","shy","si","siam","siberia","siberian","sibling","siblings","sic","sichuan","sicilian","sicily","sick","sickness","sid","side","sided","sidekick","sides","sidewalk","sidewalks","sideways","siding","sidney","siege","siegel","siegfried","siemens","siena","sienna","sierra","sigh","sighed","sighing","sighs","sight","sighted","sighting","sights","sigismund","sigma","sign","signage","signal","signaled","signaling","signalling","signals","signature","signatures","signed","significance","significant","significantly","signifies","signing","signs","sikh","sikhs","silas","silence","silenced","silent","silently","silesia","silesian","silhouette","silicon","silk","silky","silly","silva","silver","silvery","silvia","silvio","sim","sima","simeon","simi","similar","similarities","similarity","similarly","simmons","simon","simone","simple","simpler","simplest","simplicity","simplified","simply","simpson","simpsons","sims","simulate","simulated","simulation","simulations","simulator","simulcast","simultaneous","simultaneously","sin","sinai","sinatra","since","sincere","sincerely","sincerity","sinclair","sindh","sing","singapore","singer","singers","singh","singing","single","singled","singles","singleton","sings","singular","sinister","sink","sinking","sinks","sinn","sino","sins","sioux","sip","sipped","sipping","sir","sire","sired","siren","sirens","sirius","sis","sister","sisters","sit","sitcom","site","sited","sites","sits","sitting","situ","situated","situation","situations","six","sixteen","sixteenth","sixth","sixties","sixty","sizable","size","sized","sizes","sk","ska","skate","skater","skaters","skating","skeletal","skeleton","skeletons","skeptical","skepticism","sketch","sketches","ski","skier","skies","skiing","skill","skilled","skills","skimmed","skin","skinned","skinner","skinny","skins","skip","skipped","skipper","skipping","skirmish","skirt","skirts","skopje","skull","skulls","sky","skye","skyla","skylar","skyline","skyscraper","sl","slab","slabs","slack","slacks","slade","slain","slalom","slam","slammed","slamming","slams","slang","slant","slap","slapped","slapping","slash","slashed","slate","slated","slater","slaughter","slaughtered","slave","slavery","slaves","slavic","slayer","sleek","sleep","sleeper","sleeping","sleeps","sleepy","sleeve","sleeves","slender","slept","slice","sliced","slices","slicing","slick","slid","slide","slides","sliding","slight","slightest","slightly","slim","sling","slip","slipped","slippery","slipping","slips","slit","slits","sloan","sloane","slogan","sloop","slope","slopes","sloping","sloppy","slot","slots","slovak","slovakia","slovene","slovenia","slovenian","slow","slowed","slower","slowing","slowly","slug","slump","slumped","slung","sly","sm","smack","smackdown","smacked","small","smaller","smallest","smallpox","smart","smarter","smartphone","smash","smashed","smashing","smashwords","smeared","smell","smelled","smelling","smells","smile","smiled","smiles","smiley","smiling","smirk","smirked","smith","smithsonian","smoke","smoked","smoking","smoky","smooth","smoothed","smoothing","smoothly","sms","smug","smuggling","smyth","snack","snacks","snail","snails","snake","snakes","snap","snapped","snapping","snaps","snarl","snarled","snatch","snatched","sneak","sneakers","sneaking","sneered","sniff","sniffed","sniffing","sniper","snooker","snoop","snort","snorted","snout","snow","snowfall","snowy","snuck","snuggled","snyder","so","soaked","soaking","soap","soared","soaring","sob","sobbed","sobbing","sober","sobs","soc","soccer","social","socialism","socialist","socialists","socially","societal","societe","societies","society","socio","sociological","sociologist","sociology","sock","socket","sockets","socks","socrates","soda","sodium","sofa","sofia","sofie","soft","softball","softened","softer","softly","softness","software","soho","soil","soils","sol","solar","sold","soldier","soldiers","sole","solely","solemn","solemnly","solicitor","solid","solidarity","solids","solitary","solitude","solo","soloist","soloists","solomon","solos","soluble","solution","solutions","solve","solved","solvent","solving","somali","somalia","somber","some","somebody","someday","somehow","someone","someplace","somerset","somerville","somethin","something","sometime","sometimes","somewhat","somewhere","somme","son","sonar","sonata","song","songs","songwriter","songwriters","songwriting","sonia","sonic","sonny","sonora","sons","sony","sonya","soo","soon","sooner","soothe","soothing","sophia","sophie","sophisticated","sophomore","soprano","sorbonne","sorcerer","sore","sorority","sorrow","sorry","sort","sorted","sorting","sorts","soto","sought","soul","souls","sound","sounded","sounding","sounds","soundtrack","soundtracks","soup","sour","source","sourced","sources","sous","sousa","south","southampton","southbound","southeast","southeastern","southend","southern","southernmost","southland","southport","southward","southwest","southwestern","souza","sovereign","sovereignty","soviet","soviets","sox","soy","soyuz","sp","spa","space","spacecraft","spaced","spaces","spaceship","spacious","spade","spaghetti","spain","span","spaniards","spanish","spanned","spanning","spans","spare","spared","sparhawk","spark","sparked","sparkle","sparkled","sparkling","sparks","sparrow","sparse","sparsely","sparta","spartak","spartan","spartans","spat","spatial","spawn","spawned","spawning","spd","speak","speaker","speakers","speaking","speaks","spear","spearheaded","spears","spec","special","specialised","specialising","specialist","specialists","specialization","specialized","specializes","specializing","specially","specials","specialty","species","specific","specifically","specification","specifications","specified","specifies","specify","specimen","specimens","spectacle","spectacular","spectator","spectators","spectra","spectral","spectroscopy","spectrum","speculated","speculation","speculative","sped","speech","speeches","speechless","speed","speeding","speeds","speedway","speedy","spell","spelled","spelling","spells","spence","spencer","spend","spending","spends","spent","sperm","sphere","spheres","spherical","sphinx","spice","spices","spicy","spider","spiders","spielberg","spies","spike","spiked","spikes","spill","spilled","spilling","spin","spinal","spine","spines","spinning","spins","spiral","spire","spirit","spirited","spirits","spiritual","spirituality","spit","spite","spitfire","spitting","splash","splashed","splendid","splinter","split","splits","splitting","spoil","spoiled","spokane","spoke","spoken","spokesman","spokesperson","sponge","sponsor","sponsored","sponsoring","sponsors","sponsorship","spontaneous","spontaneously","spoon","sporadic","spores","sport","sporting","sports","sportsman","spot","spotlight","spots","spotted","spotting","spouse","spp","sprang","sprawled","sprawling","spray","sprayed","spraying","spread","spreading","spreads","spring","springer","springfield","springs","springsteen","sprint","sprinted","sprinter","spruce","sprung","spun","spur","spurred","spurs","spy","spying","sq","sql","squad","squadron","squadrons","squads","square","squared","squares","squash","squat","squeak","squealed","squeeze","squeezed","squeezing","squid","squinted","squinting","squire","squirrel","squirrels","sr","sri","ss","ssr","st","stab","stabbed","stabbing","stability","stabilization","stabilize","stabilized","stable","stables","stacey","stack","stacked","stacks","stacy","stade","stadion","stadium","stadiums","staff","staffed","stafford","staffordshire","stage","stagecoach","staged","stages","staggered","staggering","staging","stain","stained","stainless","stains","stair","staircase","stairs","stairway","stairwell","stake","stakeholders","stakes","stale","stalin","stalk","stalked","stalker","stalking","stalks","stall","stalled","stallion","stalls","stamford","stammered","stamp","stamped","stampede","stamps","stan","stance","stand","standalone","standard","standardization","standardized","standards","standing","standings","stands","stanford","stanley","stanton","stanza","staple","staples","star","starboard","starbucks","stare","stared","stares","staring","stark","starr","starred","starring","stars","start","started","starter","starters","starting","startled","startling","starts","startup","starvation","starved","starving","stat","state","stated","statehood","statement","statements","staten","states","statesman","statewide","static","stating","station","stationary","stationed","stations","statistical","statistics","stats","statue","statues","stature","status","statute","statutes","statutory","staunch","stay","stayed","staying","stays","ste","steadily","steady","steak","steal","stealing","steals","stealth","steam","steamboat","steamed","steamer","steaming","steamship","steel","steele","steelers","steep","steer","steered","steering","stefan","stefano","stein","steiner","stella","stellar","stem","stemmed","stemming","stems","stench","step","stepfather","stephan","stephane","stephanie","stephen","stephens","stephenson","stepmother","steppe","stepped","stepping","steps","stereo","stereotypes","sterile","sterling","stern","steve","steven","stevens","stevenson","stevie","stew","steward","stewart","stick","sticking","sticks","sticky","stiff","stiffened","stiffly","stifled","stigma","stil","still","stilled","stillness","stills","stimulate","stimulated","stimulating","stimulation","stimuli","stimulus","sting","stinging","stink","stint","stipulated","stir","stirling","stirred","stirring","stitch","stitches","stock","stocked","stockholm","stockings","stockport","stocks","stockton","stoke","stokes","stole","stolen","stomach","stomped","stone","stones","stony","stood","stool","stop","stopped","stopping","stops","storage","store","stored","stores","storey","stories","storing","storm","stormed","storms","stormy","story","storyline","storylines","storytelling","stout","stove","straight","straighten","straightened","straightening","straightforward","strain","strained","straining","strains","strait","straits","strand","stranded","strands","strange","strangely","stranger","strangers","strangled","strap","strapped","straps","strasbourg","strata","strategic","strategically","strategies","strategy","stratford","strauss","straw","strawberry","stray","streak","streaked","streaks","stream","streamed","streaming","streamlined","streams","street","streetcar","streets","strength","strengthen","strengthened","strengthening","strengths","stress","stressed","stresses","stretch","stretched","stretches","stretching","strewn","stricken","strict","strictly","stride","strides","strife","strike","strikeouts","striker","strikers","strikes","striking","string","strings","strip","stripe","striped","stripes","stripped","stripping","strips","strive","strode","stroke","stroked","strokes","stroking","stroll","strolled","strong","stronger","strongest","stronghold","strongly","struck","structural","structurally","structure","structured","structures","struggle","struggled","struggles","struggling","strung","stryker","sts","stu","stuart","stubble","stubborn","stucco","stuck","stud","student","students","studied","studies","studio","studios","study","studying","stuff","stuffed","stuffing","stumble","stumbled","stumbling","stump","stung","stunned","stunning","stunt","stunts","stupid","stupidity","sturdy","stuttgart","style","styled","styles","styling","stylistic","stylized","styx","su","suarez","sub","subcommittee","subconscious","subcontinent","subdistrict","subdivided","subdivision","subdivisions","subdued","subfamily","subgenus","subgroup","subject","subjected","subjective","subjects","sublime","submarine","submarines","submerged","submission","submissions","submit","submitted","subordinate","subscribers","subscription","subsequent","subsequently","subset","subsided","subsidiaries","subsidiary","subsidies","subsidy","subsistence","subsp","subspecies","substance","substances","substantial","substantially","substantive","substitute","substituted","substitutes","substitution","substrate","substrates","subterranean","subtle","subtly","subtropical","subunit","suburb","suburban","suburbs","subway","succeed","succeeded","succeeding","succeeds","success","successes","successful","successfully","succession","successive","successively","successor","successors","succumbed","such","suck","sucked","sucker","sucking","sucks","sud","sudan","sudanese","sudbury","sudden","suddenly","sue","sued","suez","suffer","suffered","suffering","suffers","sufficient","sufficiently","suffix","suffolk","suffrage","sufi","sugar","sugarcane","suggest","suggested","suggesting","suggestion","suggestions","suggests","sui","suicidal","suicide","suit","suitable","suitcase","suite","suited","suites","suits","sul","sulawesi","sulfate","sulfur","sullivan","sultan","sultanate","sum","sumatra","summarized","summary","summer","summers","summit","summon","summoned","summons","sumner","sumo","sums","sun","sundance","sunday","sundays","sunderland","sung","sunglasses","sunk","sunken","sunlight","sunni","sunny","sunrise","suns","sunset","sunshine","super","superb","superfamily","superficial","superhero","superhuman","superintendent","superior","superiority","superiors","superliga","superman","supermarket","supermarkets","supernatural","superseded","superstar","superstructure","supervise","supervised","supervising","supervision","supervisor","supervisors","supervisory","supper","supplement","supplemental","supplementary","supplemented","supplements","supplied","supplier","suppliers","supplies","supply","supplying","support","supported","supporter","supporters","supporting","supportive","supports","suppose","supposed","supposedly","suppress","suppressed","suppression","supremacy","supreme","sur","sure","surely","surf","surface","surfaced","surfaces","surfer","surfing","surge","surged","surgeon","surgeons","surgery","surgical","suriname","surname","surpassed","surpassing","surplus","surprise","surprised","surprises","surprising","surprisingly","surreal","surrender","surrendered","surrey","surround","surrounded","surrounding","surroundings","surrounds","surveillance","survey","surveyed","surveying","surveyor","surveys","survival","survive","survived","survives","surviving","survivor","survivors","susan","susanna","susannah","susceptible","susie","suspect","suspected","suspects","suspend","suspended","suspense","suspension","suspicion","suspicions","suspicious","suspiciously","susquehanna","sussex","sustain","sustainability","sustainable","sustained","sustaining","sutherland","sutra","sutton","suv","suzanne","suzuki","suzy","sv","sven","sw","swallow","swallowed","swallowing","swallows","swam","swami","swamp","swamps","swan","swans","swansea","swap","swapped","swarm","swat","sway","swayed","swaying","swear","swearing","sweat","sweater","sweating","sweatshirt","sweaty","sweden","swedish","sweeney","sweep","sweeping","sweeps","sweet","sweetheart","sweetie","sweetly","sweetness","sweets","swell","swelled","swelling","swept","swift","swiftly","swim","swimmer","swimmers","swimming","swindon","swing","swinging","swings","swiped","swirl","swirled","swirling","swiss","switch","switched","switches","switching","switzerland","swollen","sword","swords","swore","sworn","swung","sy","sydney","syed","sykes","syllable","syllables","sylvester","sylvia","sylvie","symbol","symbolic","symbolism","symbols","symmetric","symmetrical","symmetry","sympathetic","sympathy","symphonic","symphonies","symphony","symposium","symptoms","syn","synagogue","sync","synchronized","syndicate","syndicated","syndication","syndrome","synod","synonym","synonymous","syntax","synth","synthesis","synthesized","synthesizer","synthesizers","synthetic","syracuse","syria","syriac","syrian","syrup","system","systematic","systematically","systemic","systems","ta","tab","tabitha","table","tables","tablet","tablets","tabloid","taboo","tack","tackle","tackled","tackles","tacoma","tactic","tactical","tactics","tad","tae","taekwondo","taft","tag","tagged","tags","tai","tail","tailed","tailor","tailored","tails","tainted","taipei","taiwan","taiwanese","tajikistan","tak","takahashi","take","taken","takeoff","takeover","takes","taking","tal","talbot","tale","talent","talented","talents","tales","taliban","talk","talked","talking","talks","tall","taller","tallest","tallinn","tally","talmud","talon","taluk","taluka","tam","tamara","tame","tamil","tammy","tampa","tan","tanaka","tandem","tang","tangent","tangible","tangle","tangled","tango","tank","tanker","tanks","tanned","tanner","tanya","tanzania","tao","tap","tape","taped","tapes","tapestry","tapped","tapping","taps","tar","tara","target","targeted","targeting","targets","tariff","tariffs","tarzan","tasha","task","tasked","tasks","tasmania","tasmanian","taste","tasted","tastes","tasting","tata","tatar","tate","tatiana","tattoo","tattooed","tattoos","tatum","tau","taught","taunting","taunton","taut","tavern","tavi","tax","taxa","taxation","taxes","taxi","taxis","taxon","taxonomic","taxonomy","taxpayer","taxpayers","tay","taylor","tb","tbilisi","tbs","tc","tchaikovsky","td","te","tea","teach","teacher","teachers","teaches","teaching","teachings","team","teamed","teaming","teammate","teammates","teams","tear","tearing","tears","tease","teased","teaser","teasing","teatro","tech","technical","technically","technician","technicians","technique","techniques","techno","technological","technologies","technology","ted","teddy","tee","teen","teenage","teenager","teenagers","teens","teeth","tehran","tehsil","tel","telangana","telecast","telecom","telecommunication","telecommunications","telegram","telegraph","telenovela","telephone","telescope","telescopes","televised","television","tell","teller","telling","tells","telugu","temeraire","temper","temperament","temperance","temperate","temperature","temperatures","tempered","tempest","templar","template","temple","temples","tempo","temporal","temporarily","temporary","temps","temptation","tempted","tempting","ten","tenant","tenants","tend","tended","tendencies","tendency","tender","tenderly","tenderness","tending","tends","tennessee","tennis","tenor","tens","tense","tensed","tension","tensions","tensor","tent","tentacles","tentative","tentatively","tenth","tents","tenure","tequila","ter","terence","teresa","term","termed","terminal","terminals","terminate","terminated","terminates","terminating","termination","terminology","terminus","terms","terra","terrace","terraces","terrain","terre","terrestrial","terri","terrible","terribly","terrific","terrified","terrifying","territorial","territories","territory","terror","terrorism","terrorist","terrorists","terry","tertiary","tesla","tess","tessa","test","testament","tested","testified","testify","testimony","testing","testosterone","tests","tex","texans","texas","text","textbook","textbooks","texted","textile","textiles","texts","textual","texture","textures","th","tha","thai","thailand","thames","than","thank","thanked","thankful","thankfully","thanking","thanks","thanksgiving","that","thatcher","thayer","the","theater","theaters","theatre","theatres","theatrical","thee","theft","their","theirs","them","thematic","theme","themed","themes","themselves","then","thence","theo","theodor","theodore","theologian","theologians","theological","theology","theorem","theoretical","theoretically","theories","theorist","theorists","theory","therapeutic","therapist","therapy","there","thereafter","thereby","therefore","thereof","theresa","therese","thermal","these","thesis","thessaloniki","theta","they","thick","thicker","thickness","thief","thierry","thieves","thigh","thighs","thin","thing","things","think","thinkers","thinking","thinks","thinner","third","thirds","thirst","thirsty","thirteen","thirteenth","thirties","thirty","this","thistle","tho","thom","thomas","thompson","thomson","thong","thor","thorn","thorne","thorns","thornton","thorough","thoroughbred","thoroughly","thorpe","those","thou","though","thought","thoughtful","thoughtfully","thoughts","thousand","thousands","thrash","thread","threaded","threads","threat","threaten","threatened","threatening","threatens","threats","three","threshold","threw","thrill","thrilled","thriller","thrilling","thrive","thriving","throat","throbbed","throbbing","throne","throttle","through","throughout","throw","throwing","thrown","throws","thru","thrust","thrusting","thrusts","thud","thug","thugs","thumb","thumbs","thump","thumped","thumping","thunder","thursday","thus","thwarted","thy","thyroid","ti","tia","tian","tianjin","tiberius","tibet","tibetan","tick","ticked","ticket","tickets","ticking","tidal","tide","tides","tidy","tie","tied","tier","tierney","ties","tiffany","tiger","tigers","tight","tighten","tightened","tightening","tighter","tightly","til","tile","tiled","tiles","till","tilt","tilted","tilting","tim","timber","timbers","time","timed","timeless","timeline","timely","timer","times","timetable","timing","timmy","timor","timothy","tin","tina","ting","tinged","tingle","tingling","tinted","tiny","tip","tipped","tipperary","tipping","tips","tirana","tire","tired","tires","tis","tissue","tissues","titan","titanic","titanium","titans","title","titled","titles","tito","tits","titular","titus","tko","tn","tna","tnt","to","toad","toast","tobacco","tobago","tobias","tobin","toby","tod","today","todd","toe","toes","together","togo","toilet","toilets","token","tokugawa","tokyo","told","toledo","tolerance","tolerant","tolerate","tolerated","tolkien","toll","tom","tomas","tomato","tomatoes","tomb","tombs","tombstone","tome","tommy","tomorrow","ton","tone","toned","tones","tong","tonga","tongue","tongues","toni","tonic","tonight","tonnes","tons","tony","too","took","tool","tools","tooth","top","topic","topical","topics","topographic","topography","topological","topology","topped","topping","toppled","tops","tor","torah","torch","torches","tore","tori","torino","torment","tormented","torn","tornado","tornadoes","toro","toronto","torpedo","torpedoes","torque","torre","torres","torso","tortricidae","torture","tortured","tory","toss","tossed","tossing","total","totaled","totaling","totally","totals","tottenham","touch","touchdown","touchdowns","touched","touches","touching","tough","toulon","toulouse","tour","toured","touring","tourism","tourist","tourists","tournament","tournaments","tours","tow","toward","towards","towed","towel","towels","tower","towering","towers","towing","town","townland","towns","townsend","township","townships","townspeople","townsville","toxic","toxicity","toxin","toy","toyota","toys","tq","tr","trace","traced","traces","tracey","tracing","track","tracked","tracker","tracking","tracks","tract","traction","tractor","tractors","tracts","tracy","trade","traded","trademark","trader","traders","trades","trading","tradition","traditional","traditionally","traditions","traffic","trafficking","trafford","tragedy","tragic","trail","trailed","trailer","trailers","trailing","trails","train","trained","trainee","trainer","trainers","training","trains","trait","traitor","traits","trajectory","tram","trams","tramway","tran","trance","trans","transaction","transactions","transatlantic","transcribed","transcript","transcription","transfer","transferred","transferring","transfers","transform","transformation","transformations","transformed","transformers","transforming","transforms","transgender","transient","transit","transition","transitional","transitioned","transitions","translate","translated","translates","translating","translation","translations","translator","translators","translit","translucent","transmission","transmissions","transmit","transmitted","transmitter","transmitters","transmitting","transparency","transparent","transplant","transport","transportation","transported","transporting","transports","transvaal","transverse","transylvania","trap","trapped","trapping","traps","trash","trauma","traumatic","travel","traveled","traveler","travelers","traveling","travelled","traveller","travellers","travelling","travels","travers","traverse","traversed","travis","tray","tre","treacherous","tread","treason","treasure","treasurer","treasures","treasury","treat","treated","treaties","treating","treatise","treatment","treatments","treats","treaty","tree","trees","trek","tremble","trembled","trembling","tremendous","tremor","trench","trenches","trend","trends","trent","trenton","tres","trevor","trey","tri","triad","trial","trials","triangle","triangles","triangular","triassic","tribal","tribe","tribes","tribunal","tribune","tributaries","tributary","tribute","trick","tricked","trickle","tricks","tricky","trident","tried","trier","tries","trieste","trigger","triggered","triggering","triggers","trillion","trilogy","trim","trimmed","trinidad","trinity","trio","trip","triple","tripoli","tripped","trips","tristan","triumph","triumphant","trivial","trois","trojan","troll","trolley","trolls","trombone","trondheim","troop","trooper","troopers","troops","trophies","trophy","tropical","trouble","troubled","troubles","trough","troupe","trousers","trout","troy","truce","truck","trucks","true","truly","truman","trump","trumpet","trumpeter","trumpets","truncated","trunk","trunks","truss","trust","trusted","trustee","trustees","trusting","trusts","truth","truths","try","trying","ts","tsar","tsunami","tt","tu","tub","tuba","tube","tuberculosis","tubes","tubular","tuck","tucked","tucker","tucking","tucson","tudor","tuesday","tufts","tug","tugged","tugging","tugs","tuition","tulane","tully","tulsa","tumble","tumbled","tumbling","tumor","tumors","tun","tuna","tune","tuned","tunes","tung","tunic","tuning","tunis","tunisia","tunisian","tunnel","tunnels","turbine","turbines","turbo","turbulence","turbulent","turf","turin","turing","turk","turkey","turkic","turkish","turkmenistan","turks","turmoil","turn","turnbull","turned","turner","turning","turnout","turnover","turnpike","turns","turquoise","turret","turrets","turtle","turtles","tuscany","tutor","tv","twain","tweed","twelfth","twelve","twenties","twentieth","twenty","twice","twigs","twilight","twin","twinkle","twinned","twins","twist","twisted","twisting","twists","twitch","twitched","twitching","twitter","two","tx","ty","tying","tyler","tyne","type","typed","types","typhoon","typical","typically","typing","tyrant","tyre","tyres","tyrol","tyrone","tyson","ua","uae","uber","ubiquitous","uc","uci","ucla","ud","uefa","ufc","ufo","uganda","ugly","uh","uhf","ui","uk","ukraine","ukrainian","ul","ulrich","ulster","ultimate","ultimately","ultimatum","ultra","ultrasound","ultraviolet","ulysses","um","umar","umbrella","umm","umpire","un","una","unable","unacceptable","unaffected","unanimous","unanimously","unarmed","unauthorized","unavailable","unaware","unbearable","unbeaten","unbelievable","unbroken","uncanny","uncertain","uncertainty","unchanged","uncle","unclear","uncles","uncomfortable","uncomfortably","uncommon","unconscious","unconstitutional","unconventional","uncover","uncovered","uncredited","und","undead","undefeated","under","undercover","undergo","undergoes","undergoing","undergone","undergraduate","underground","underlying","undermine","underneath","underside","understand","understanding","understands","understood","undertake","undertaken","undertaker","undertaking","undertook","underwater","underway","underwear","underwent","underwood","underworld","undeveloped","undisclosed","undo","undone","undoubtedly","undrafted","une","unearthed","unease","uneasy","unemployed","unemployment","unesco","uneven","unexpected","unexpectedly","unfair","unfamiliar","unfinished","unfit","unfolded","unfortunate","unfortunately","unhappy","unharmed","unicef","unicode","unicorn","unidentified","unification","unified","uniform","uniformed","uniformly","uniforms","unincorporated","uninhabited","union","unionist","unions","unique","uniquely","unison","unit","unitarian","unitary","unite","united","uniting","units","unity","universal","universally","universe","universidad","universite","universities","university","unix","unknown","unlawful","unleashed","unless","unlike","unlikely","unlimited","unlock","unlocked","unmanned","unmarked","unmarried","unmistakable","unnamed","unnatural","unnecessary","unnoticed","uno","unofficial","unofficially","unopposed","unpaid","unpleasant","unpopular","unprecedented","unpredictable","unpublished","unreasonable","unrelated","unreleased","unreliable","unrest","unsafe","unseen","unsigned","unspecified","unspoken","unstable","unsuccessful","unsuccessfully","unsuitable","unsure","until","untitled","unto","untouched","unused","unusual","unusually","unveiled","unwanted","unwilling","up","upbeat","upbringing","upcoming","update","updated","updates","upgrade","upgraded","upgrades","upgrading","upheld","uphold","upland","uploaded","upon","upper","uppsala","upright","uprising","ups","upscale","upset","upside","upstairs","upstate","upstream","upton","uptown","upward","upwards","ur","uranium","urban","urbana","urdu","urge","urged","urgency","urgent","urgently","urges","urging","urine","ursula","uruguay","uruguayan","us","usa","usable","usaf","usage","usb","usc","usd","use","used","useful","useless","user","users","uses","usher","ushered","using","usl","uss","ussr","usual","usually","ut","uta","utah","utc","utilities","utility","utilization","utilize","utilized","utilizes","utilizing","utmost","utopia","utrecht","uttar","utter","uttered","utterly","uv","uzbekistan","va","vacancy","vacant","vacated","vacation","vaccine","vaccines","vacuum","vague","vaguely","vain","val","vale","valencia","valentin","valentine","valerie","valet","valiant","valid","validation","validity","valkyrie","valle","valley","valleys","valor","valuable","valuation","value","valued","values","valve","valves","vamp","vampire","vampires","vamps","van","vance","vancouver","vanderbilt","vane","vanessa","vanguard","vanilla","vanish","vanished","vanishing","vanity","vans","vantage","vanuatu","vapor","var","vargas","variability","variable","variables","variance","variant","variants","variation","variations","varied","varies","varieties","variety","various","variously","varsity","vary","varying","vascular","vase","vassal","vast","vastly","vatican","vaudeville","vaughan","vaughn","vault","vaulted","vaults","vc","ve","vector","vectors","vedic","vega","vegas","vegetable","vegetables","vegetarian","vegetation","vehicle","vehicles","veil","vein","veins","velocity","velvet","vendor","vendors","venerable","venetian","venezuela","venezuelan","vengeance","venice","venom","vent","ventilation","ventral","vents","ventura","venture","ventured","ventures","venue","venues","venus","vera","veracruz","verandah","verb","verbal","verbs","verde","verdi","verdict","verge","verification","verified","verify","verity","verlag","vermont","vernacular","vernon","verona","veronica","versa","versailles","versatile","verse","verses","version","versions","versus","vertebrae","vertex","vertical","vertically","vertices","vertigo","verve","very","vessel","vessels","vest","vested","vet","veteran","veterans","veterinary","veto","vfl","vhf","vhs","vi","via","viable","viaduct","vial","vibe","vibrant","vibrated","vibrating","vibration","vibrations","vic","vicar","vice","vicente","viceroy","vichy","vicinity","vicious","vickers","vicki","vicky","victim","victims","victor","victoria","victorian","victories","victorious","victory","vida","vidal","video","videos","vidhan","vie","vienna","viet","vietnam","vietnamese","view","viewed","viewer","viewers","viewing","viewpoint","views","vigor","vigorous","vigorously","vii","viii","vijay","viking","vikings","vikram","viktor","vila","vile","villa","village","villagers","villages","villain","villains","villas","ville","villiers","vilnius","vimes","vin","vince","vincent","vincenzo","vinci","vine","vinegar","vines","vineyard","vineyards","vinnie","vintage","vinyl","viola","violate","violated","violating","violation","violations","violence","violent","violently","violet","violin","violinist","violins","vip","viper","viral","virgil","virgin","virginia","virginity","virtual","virtually","virtue","virtues","virus","viruses","vis","visa","visas","viscount","vishnu","visibility","visible","visibly","vision","visionary","visions","visit","visitation","visited","visiting","visitor","visitors","visits","vista","visual","visually","visuals","vita","vital","vitamin","vito","vitro","vittorio","viva","vivian","vivid","vivo","viz","vlad","vladimir","vo","vocabulary","vocal","vocalist","vocalists","vocals","vocational","vodka","vogel","vogue","voice","voiced","voices","void","voivodeship","vol","volatile","volcanic","volcano","volcanoes","volga","volkswagen","volley","volleyball","vols","volta","voltage","volume","volumes","voluntarily","voluntary","volunteer","volunteered","volunteers","volvo","vomit","vomiting","von","voodoo","vortex","voss","vote","voted","voter","voters","votes","voting","vow","vowed","vowel","vowels","vows","vox","voyage","voyager","voyages","vp","vr","vs","vt","vu","vuelta","vulcan","vulgar","vulnerability","vulnerable","vulture","wa","wade","wadi","wage","wages","wagner","wagon","wagons","wah","wai","wainwright","waist","waistband","wait","waited","waiter","waiting","waitress","waits","waived","waivers","wake","wakefield","wakes","waking","wal","walden","waldo","wales","walk","walked","walker","walkers","walking","walkover","walks","walkway","wall","wallace","walled","waller","wallet","wallis","walls","wally","walnut","walsall","walsh","walt","walter","walters","walton","waltz","wan","wand","wanda","wander","wandered","wanderers","wandering","wang","wanna","want","wanted","wanting","wants","war","ward","warden","wardrobe","wards","ware","warehouse","warehouses","warfare","warily","warlock","warlord","warm","warmed","warmer","warming","warmly","warmth","warn","warned","warner","warning","warnings","warns","warp","warped","warrant","warren","warring","warrington","warrior","warriors","wars","warsaw","warship","warships","wartime","warwick","warwickshire","wary","was","wash","washed","washing","washington","wasn","wasp","wasps","waste","wasted","wastewater","wasting","wat","watch","watched","watches","watching","water","watered","waterfall","waterfalls","waterford","waterfront","watering","waterloo","waters","watershed","waterway","waterways","watery","watford","watkins","watson","watt","watts","wave","waved","wavelength","wavelengths","waves","waving","wavy","wax","way","wayne","ways","wb","wc","wcw","we","weak","weaken","weakened","weakening","weaker","weakly","weakness","weaknesses","wealth","wealthiest","wealthy","weapon","weaponry","weapons","wear","wearing","wears","weary","weasel","weather","weathered","weave","weaver","weaving","web","webb","webber","weber","website","websites","webster","wed","wedding","weddings","wedge","wednesday","wee","weed","weeds","week","weekday","weekdays","weekend","weekends","weekly","weeks","weep","weeping","wehrmacht","wei","weigh","weighed","weighing","weighs","weight","weighted","weightlifting","weights","weimar","weir","weird","weiss","welch","welcome","welcomed","welcoming","welded","welding","welfare","well","welles","wellesley","wellington","wellness","wells","welsh","welterweight","wembley","wen","wendell","wendy","went","wentworth","wept","were","weren","werewolf","werewolves","werner","wes","wesley","wesleyan","wessex","west","westbound","westchester","western","westfield","westminster","weston","westphalia","westward","westwood","wet","wetland","wetlands","wexford","whale","whales","whaling","wharf","wharton","what","whatever","whatsoever","wheat","wheel","wheelbase","wheelchair","wheeled","wheeler","wheeling","wheels","when","whenever","where","whereabouts","whereas","whereby","wherein","whereupon","wherever","whether","which","whichever","whig","while","whilst","whimper","whimpered","whip","whipped","whipping","whirled","whiskey","whisky","whisper","whispered","whispering","whispers","whistle","whistled","whistling","whitaker","white","whitehall","whitehead","whites","whitish","whitley","whitman","whitney","who","whoa","whoever","whole","wholesale","wholly","whom","whore","whorls","whose","why","wi","wichita","wicked","wicket","wickets","wide","widely","widen","widened","widening","wider","widespread","widow","widowed","widows","width","wielding","wien","wiener","wife","wig","wigan","wiggled","wight","wii","wikipedia","wil","wilbur","wilcox","wild","wildcats","wilde","wilder","wilderness","wildlife","wildly","wiley","wilfred","wilhelm","wilkes","wilkins","wilkinson","will","willard","willed","willem","william","williams","williamsburg","williamson","willie","willing","willingly","willingness","willis","willoughby","willow","wills","willy","wilmington","wilson","wilton","wiltshire","wimbledon","win","wince","winced","winchester","wind","winding","windmill","window","windows","winds","windshield","windsor","windy","wine","winery","wines","winfield","wing","winged","winger","wings","wingspan","wink","winked","winkler","winner","winners","winnie","winning","winnipeg","wins","winslow","winston","winter","winters","winthrop","wipe","wiped","wiping","wire","wired","wireless","wires","wiring","wisconsin","wisdom","wise","wish","wished","wishes","wishing","wit","witch","witchcraft","witches","with","withdraw","withdrawal","withdrawing","withdrawn","withdrew","within","without","withstand","witness","witnessed","witnesses","witnessing","wits","witty","wives","wizard","wizards","wnba","wo","woke","woken","wolf","wolfe","wolff","wolfgang","wolverhampton","wolverine","wolves","woman","womb","women","won","wonder","wondered","wonderful","wondering","wonderland","wonders","wong","woo","wood","wooded","wooden","woodland","woodlands","woodrow","woods","woodstock","woodward","woody","wool","woolf","worcester","worcestershire","word","words","wore","work","worked","worker","workers","workforce","working","workings","workout","workplace","works","workshop","workshops","world","worlds","worldwide","worm","worms","worn","worried","worries","worry","worrying","worse","worsened","worship","worshipped","worst","worth","worthless","worthy","would","wouldn","wound","wounded","wounding","wounds","woven","wow","wr","wrap","wrapped","wrapping","wraps","wrath","wreath","wreck","wreckage","wrecked","wren","wrenched","wrestle","wrestled","wrestlemania","wrestler","wrestlers","wrestling","wrexham","wright","wrinkled","wrist","wrists","writ","write","writer","writers","writes","writhing","writing","writings","written","wrong","wrongly","wrote","wrought","wry","wryly","wta","wu","wurttemberg","wwe","wwf","wwii","www","wyatt","wylie","wynn","wyoming","xander","xavier","xbox","xi","xiang","xiao","xii","xiii","xinjiang","xiv","xl","xml","xp","xu","xv","xvi","xx","ya","yacht","yahoo","yale","yamaha","yamamoto","yan","yang","yank","yanked","yankee","yankees","yanking","yao","yard","yards","yarmouth","yarn","yates","yawned","yd","ye","yeah","year","yearbook","yearly","yearning","years","yeast","yell","yelled","yelling","yellow","yellowish","yellowstone","yells","yemen","yen","yeomanry","yep","yer","yerevan","yes","yeshiva","yesterday","yet","yi","yiddish","yield","yielded","yielding","yields","yin","ying","ymca","yo","yoga","yoko","yokohama","yong","yoo","yoon","york","yorker","yorkshire","you","young","younger","youngest","your","yours","yourself","yourselves","youth","youthful","youths","youtube","yu","yuan","yucatan","yue","yugoslav","yugoslavia","yuki","yukon","yun","yunnan","yuri","yusuf","yves","yvonne","za","zac","zach","zachary","zack","zagreb","zambia","zane","zaragoza","ze","zealand","zebra","zee","zeke","zen","zenith","zeppelin","zero","zeta","zeus","zev","zhang","zhao","zhejiang","zheng","zhou","zhu","zimbabwe","zimmerman","zinc","zion","zionist","zip","zipper","zodiac","zoe","zombie","zombies","zone","zones","zoning","zoo","zoological","zoology","zoom","zu","zulu","zur","zurich"],"icons":["Abc","AcUnit","AccessAlarm","AccessAlarms","AccessTime","AccessTimeFilled","Accessibility","AccessibilityNew","Accessible","AccessibleForward","AccountBalance","AccountBalanceWallet","AccountBox","AccountCircle","AccountTree","AdUnits","Adb","Add","AddAPhoto","AddAlarm","AddAlert","AddBox","AddBusiness","AddCall","AddCard","AddCircle","AddComment","AddHome","AddHomeWork","AddIcCall","AddLink","AddLocation","AddLocationAlt","AddModerator","AddPhotoAlternate","AddReaction","AddRoad","AddShoppingCart","AddTask","AddToDrive","AddToHomeScreen","AddToPhotos","AddToQueue","Addchart","AdfScanner","Adjust","AdminPanelSettings","AdsClick","Agriculture","Air","AirlineSeatFlat","AirlineSeatFlatAngled","AirlineSeatIndividualSuite","AirlineSeatLegroomExtra","AirlineSeatLegroomNormal","AirlineSeatLegroomReduced","AirlineSeatReclineExtra","AirlineSeatReclineNormal","AirlineStops","Airlines","AirplaneTicket","AirplanemodeActive","AirplanemodeInactive","Airplay","AirportShuttle","Alarm","AlarmAdd","AlarmOff","AlarmOn","Album","AlignHorizontalCenter","AlignHorizontalLeft","AlignHorizontalRight","AlignVerticalBottom","AlignVerticalCenter","AlignVerticalTop","AllInbox","AllInclusive","AllOut","AltRoute","AlternateEmail","Analytics","Anchor","Android","Animation","Announcement","Aod","Apartment","Api","AppBlocking","AppRegistration","AppSettingsAlt","AppShortcut","Apple","Approval","Apps","AppsOutage","Architecture","Archive","AreaChart","ArrowBack","ArrowBackIos","ArrowBackIosNew","ArrowCircleDown","ArrowCircleLeft","ArrowCircleRight","ArrowCircleUp","ArrowDownward","ArrowDropDown","ArrowDropDownCircle","ArrowDropUp","ArrowForward","ArrowForwardIos","ArrowLeft","ArrowOutward","ArrowRight","ArrowRightAlt","ArrowUpward","ArtTrack","Article","AspectRatio","Assessment","Assignment","AssignmentAdd","AssignmentInd","AssignmentLate","AssignmentReturn","AssignmentReturned","AssignmentTurnedIn","AssistWalker","Assistant","AssistantDirection","AssistantNavigation","AssistantPhoto","AssuredWorkload","Atm","AttachEmail","AttachFile","AttachMoney","Attachment","Attractions","Attribution","AudioFile","Audiotrack","AutoAwesome","AutoAwesomeMosaic","AutoAwesomeMotion","AutoDelete","AutoFixHigh","AutoFixNormal","AutoFixOff","AutoGraph","AutoMode","AutoStories","AutofpsSelect","Autorenew","AvTimer","BabyChangingStation","BackHand","Backpack","Backspace","Backup","BackupTable","Badge","BakeryDining","Balance","Balcony","Ballot","BarChart","BarcodeReader","BatchPrediction","Bathroom","Bathtub","Battery0Bar","Battery1Bar","Battery20","Battery2Bar","Battery30","Battery3Bar","Battery4Bar","Battery50","Battery5Bar","Battery60","Battery6Bar","Battery80","Battery90","BatteryAlert","BatteryCharging20","BatteryCharging30","BatteryCharging50","BatteryCharging60","BatteryCharging80","BatteryCharging90","BatteryChargingFull","BatteryFull","BatterySaver","BatteryStd","BatteryUnknown","BeachAccess","Bed","BedroomBaby","BedroomChild","BedroomParent","Bedtime","BedtimeOff","Beenhere","Bento","BikeScooter","Biotech","Blender","Blind","Blinds","BlindsClosed","Block","BlockFlipped","Bloodtype","Bluetooth","BluetoothAudio","BluetoothConnected","BluetoothDisabled","BluetoothDrive","BluetoothSearching","BlurCircular","BlurLinear","BlurOff","BlurOn","Bolt","Book","BookOnline","Bookmark","BookmarkAdd","BookmarkAdded","BookmarkBorder","BookmarkRemove","Bookmarks","BorderAll","BorderBottom","BorderClear","BorderColor","BorderHorizontal","BorderInner","BorderLeft","BorderOuter","BorderRight","BorderStyle","BorderTop","BorderVertical","Boy","BrandingWatermark","BreakfastDining","Brightness1","Brightness2","Brightness3","Brightness4","Brightness5","Brightness6","Brightness7","BrightnessAuto","BrightnessHigh","BrightnessLow","BrightnessMedium","BroadcastOnHome","BroadcastOnPersonal","BrokenImage","BrowseGallery","BrowserNotSupported","BrowserUpdated","BrunchDining","Brush","BubbleChart","BugReport","Build","BuildCircle","Bungalow","BurstMode","BusAlert","Business","BusinessCenter","Cabin","Cable","Cached","Cake","Calculate","CalendarMonth","CalendarToday","CalendarViewDay","CalendarViewMonth","CalendarViewWeek","Call","CallEnd","CallMade","CallMerge","CallMissed","CallMissedOutgoing","CallReceived","CallSplit","CallToAction","Camera","CameraAlt","CameraEnhance","CameraFront","CameraIndoor","CameraOutdoor","CameraRear","CameraRoll","Cameraswitch","Campaign","Cancel","CancelPresentation","CancelScheduleSend","CandlestickChart","CarCrash","CarRental","CarRepair","CardGiftcard","CardMembership","CardTravel","Carpenter","Cases","Casino","Cast","CastConnected","CastForEducation","Castle","CatchingPokemon","Category","Celebration","CellTower","CellWifi","CenterFocusStrong","CenterFocusWeak","Chair","ChairAlt","Chalet","ChangeCircle","ChangeHistory","ChargingStation","Chat","ChatBubble","Check","CheckBox","CheckBoxOutlineBlank","CheckCircle","Checklist","ChecklistRtl","Checkroom","ChevronLeft","ChevronRight","ChildCare","ChildFriendly","ChromeReaderMode","Church","Circle","CircleNotifications","Class","CleanHands","CleaningServices","Clear","ClearAll","Close","CloseFullscreen","ClosedCaption","ClosedCaptionDisabled","ClosedCaptionOff","Cloud","CloudCircle","CloudDone","CloudDownload","CloudOff","CloudQueue","CloudSync","CloudUpload","CloudySnowing","Co2","CoPresent","Code","CodeOff","Coffee","CoffeeMaker","Collections","CollectionsBookmark","ColorLens","Colorize","Comment","CommentBank","CommentsDisabled","Commit","Commute","Compare","CompareArrows","CompassCalibration","Compost","Compress","Computer","ConfirmationNumber","ConnectWithoutContact","ConnectedTv","ConnectingAirports","Construction","ContactEmergency","ContactMail","ContactPage","ContactPhone","ContactSupport","Contactless","Contacts","ContentCopy","ContentCut","ContentPaste","ContentPasteGo","ContentPasteOff","ContentPasteSearch","Contrast","ControlCamera","ControlPoint","ControlPointDuplicate","ConveyorBelt","Cookie","CopyAll","Copyright","Coronavirus","CorporateFare","Cottage","Countertops","Create","CreateNewFolder","CreditCard","CreditCardOff","CreditScore","Crib","CrisisAlert","Crop","Crop169","Crop32","Crop54","Crop75","CropDin","CropFree","CropLandscape","CropOriginal","CropPortrait","CropRotate","CropSquare","CrueltyFree","Css","CurrencyBitcoin","CurrencyExchange","CurrencyFranc","CurrencyLira","CurrencyPound","CurrencyRuble","CurrencyRupee","CurrencyYen","CurrencyYuan","Curtains","CurtainsClosed","Cyclone","Dangerous","DarkMode","Dashboard","DashboardCustomize","DataArray","DataExploration","DataObject","DataSaverOff","DataSaverOn","DataThresholding","DataUsage","Dataset","DatasetLinked","DateRange","Deblur","Deck","Dehaze","Delete","DeleteForever","DeleteSweep","DeliveryDining","DensityLarge","DensityMedium","DensitySmall","DepartureBoard","Description","Deselect","DesignServices","Desk","DesktopAccessDisabled","DesktopMac","DesktopWindows","Details","DeveloperBoard","DeveloperBoardOff","DeveloperMode","DeviceHub","DeviceThermostat","DeviceUnknown","Devices","DevicesFold","DevicesOther","DewPoint","DialerSip","Dialpad","Diamond","Difference","Dining","DinnerDining","Directions","DirectionsBike","DirectionsBoat","DirectionsBoatFilled","DirectionsBus","DirectionsBusFilled","DirectionsCar","DirectionsCarFilled","DirectionsOff","DirectionsRailway","DirectionsRailwayFilled","DirectionsRun","DirectionsSubway","DirectionsSubwayFilled","DirectionsTransit","DirectionsTransitFilled","DirectionsWalk","DirtyLens","DisabledByDefault","DisabledVisible","DiscFull","Discount","DisplaySettings","Diversity1","Diversity2","Diversity3","Dns","DoDisturb","DoDisturbAlt","DoDisturbOff","DoDisturbOn","DoNotDisturb","DoNotDisturbAlt","DoNotDisturbOff","DoNotDisturbOn","DoNotDisturbOnTotalSilence","DoNotStep","DoNotTouch","Dock","DocumentScanner","Domain","DomainAdd","DomainDisabled","DomainVerification","Done","DoneAll","DonutLarge","DonutSmall","DoorBack","DoorFront","DoorSliding","Doorbell","DoubleArrow","DownhillSkiing","Download","DownloadDone","DownloadForOffline","Downloading","Drafts","DragHandle","DragIndicator","Draw","DriveEta","DriveFileMove","DriveFileMoveRtl","DriveFileRenameOutline","DriveFolderUpload","Dry","DryCleaning","Duo","Dvr","DynamicFeed","DynamicForm","EMobiledata","Earbuds","EarbudsBattery","East","EdgesensorHigh","EdgesensorLow","Edit","EditAttributes","EditCalendar","EditDocument","EditLocation","EditLocationAlt","EditNote","EditNotifications","EditOff","EditRoad","EditSquare","Egg","EggAlt","EightK","EightKPlus","EightMp","EighteenMp","EighteenUpRating","EightteenMp","Eject","Elderly","ElderlyWoman","ElectricBike","ElectricBolt","ElectricCar","ElectricMeter","ElectricMoped","ElectricRickshaw","ElectricScooter","ElectricalServices","Elevator","ElevenMp","Email","Emergency","EmergencyRecording","EmergencyShare","EmojiEmotions","EmojiEvents","EmojiFlags","EmojiFoodBeverage","EmojiNature","EmojiObjects","EmojiPeople","EmojiSymbols","EmojiTransportation","EnergySavingsLeaf","Engineering","EnhancedEncryption","Equalizer","Error","Escalator","EscalatorWarning","Euro","EuroSymbol","EvStation","Event","EventAvailable","EventBusy","EventNote","EventRepeat","EventSeat","ExitToApp","Expand","ExpandCircleDown","ExpandLess","ExpandMore","Explicit","Explore","ExploreOff","Exposure","Extension","ExtensionOff","Face","Face2","Face3","Face4","Face5","Face6","FaceRetouchingNatural","FaceRetouchingOff","Facebook","FactCheck","Factory","FamilyRestroom","FastForward","FastRewind","Fastfood","Favorite","FavoriteBorder","Fax","FeaturedPlayList","FeaturedVideo","Feed","Feedback","Female","Fence","Festival","FiberDvr","FiberManualRecord","FiberNew","FiberPin","FiberSmartRecord","FifteenMp","FileCopy","FileDownload","FileDownloadDone","FileDownloadOff","FileOpen","FilePresent","FileUpload","FileUploadOff","Filter","Filter1","Filter2","Filter3","Filter4","Filter5","Filter6","Filter7","Filter8","Filter9","Filter9Plus","FilterAlt","FilterAltOff","FilterBAndW","FilterCenterFocus","FilterDrama","FilterFrames","FilterHdr","FilterList","FilterListAlt","FilterListOff","FilterNone","FilterTiltShift","FilterVintage","FindInPage","FindReplace","Fingerprint","FireExtinguisher","FireHydrantAlt","FireTruck","Fireplace","FirstPage","FitScreen","Fitbit","FitnessCenter","FiveG","FiveK","FiveKPlus","FiveMp","FivteenMp","Flag","FlagCircle","Flaky","Flare","FlashAuto","FlashOff","FlashOn","FlashlightOff","FlashlightOn","Flatware","Flight","FlightClass","FlightLand","FlightTakeoff","Flip","FlipCameraAndroid","FlipCameraIos","FlipToBack","FlipToFront","Flood","Fluorescent","FlutterDash","FmdBad","FmdGood","Foggy","Folder","FolderCopy","FolderDelete","FolderOff","FolderOpen","FolderShared","FolderSpecial","FolderZip","FollowTheSigns","FontDownload","FontDownloadOff","FoodBank","Forest","ForkLeft","ForkRight","Forklift","FormatAlignCenter","FormatAlignJustify","FormatAlignLeft","FormatAlignRight","FormatBold","FormatClear","FormatColorFill","FormatColorReset","FormatColorText","FormatIndentDecrease","FormatIndentIncrease","FormatItalic","FormatLineSpacing","FormatListBulleted","FormatListBulletedAdd","FormatListNumbered","FormatListNumberedRtl","FormatOverline","FormatPaint","FormatQuote","FormatShapes","FormatSize","FormatStrikethrough","FormatTextdirectionLToR","FormatTextdirectionRToL","FormatUnderlined","Fort","Forum","Forward","Forward10","Forward30","Forward5","ForwardToInbox","Foundation","FourGMobiledata","FourGPlusMobiledata","FourK","FourKPlus","FourMp","FourteenMp","FreeBreakfast","FreeCancellation","FrontHand","FrontLoader","Fullscreen","FullscreenExit","Functions","GMobiledata","GTranslate","Gamepad","Games","Garage","GasMeter","Gavel","GeneratingTokens","Gesture","GetApp","Gif","GifBox","Girl","GitHub","Gite","GolfCourse","Google","GppBad","GppGood","GppMaybe","GpsFixed","GpsNotFixed","GpsOff","Grade","Gradient","Grading","Grain","GraphicEq","Grass","Grid3x3","Grid4x4","GridGoldenratio","GridOff","GridOn","GridView","Group","GroupAdd","GroupOff","GroupRemove","GroupWork","Groups","Groups2","Groups3","HMobiledata","HPlusMobiledata","Hail","Handshake","Handyman","Hardware","Hd","HdrAuto","HdrAutoSelect","HdrEnhancedSelect","HdrOff","HdrOffSelect","HdrOn","HdrOnSelect","HdrPlus","HdrStrong","HdrWeak","Headphones","HeadphonesBattery","Headset","HeadsetMic","HeadsetOff","Healing","HealthAndSafety","Hearing","HearingDisabled","HeartBroken","HeatPump","Height","Help","HelpCenter","Hevc","Hexagon","HideImage","HideSource","HighQuality","Highlight","HighlightAlt","HighlightOff","Hiking","History","HistoryEdu","HistoryToggleOff","Hive","Hls","HlsOff","HolidayVillage","Home","HomeFilled","HomeMax","HomeMini","HomeRepairService","HomeWork","HorizontalRule","HorizontalSplit","HotTub","Hotel","HotelClass","HourglassBottom","HourglassDisabled","HourglassEmpty","HourglassFull","HourglassTop","House","HouseSiding","Houseboat","HowToReg","HowToVote","Html","Http","Https","Hub","Hvac","IceSkating","Icecream","Image","ImageAspectRatio","ImageNotSupported","ImageSearch","ImagesearchRoller","ImportContacts","ImportExport","ImportantDevices","Inbox","IncompleteCircle","IndeterminateCheckBox","Info","Input","InsertChart","InsertChartOutlined","InsertComment","InsertDriveFile","InsertEmoticon","InsertInvitation","InsertLink","InsertPageBreak","InsertPhoto","Insights","Instagram","InstallDesktop","InstallMobile","IntegrationInstructions","Interests","InterpreterMode","Inventory","Inventory2","InvertColors","InvertColorsOff","IosShare","Iron","Iso","Javascript","JoinFull","JoinInner","JoinLeft","JoinRight","Kayaking","KebabDining","Key","KeyOff","Keyboard","KeyboardAlt","KeyboardArrowDown","KeyboardArrowLeft","KeyboardArrowRight","KeyboardArrowUp","KeyboardBackspace","KeyboardCapslock","KeyboardCommandKey","KeyboardControlKey","KeyboardDoubleArrowDown","KeyboardDoubleArrowLeft","KeyboardDoubleArrowRight","KeyboardDoubleArrowUp","KeyboardHide","KeyboardOptionKey","KeyboardReturn","KeyboardTab","KeyboardVoice","KingBed","Kitchen","Kitesurfing","Label","LabelImportant","LabelOff","Lan","Landscape","Landslide","Language","Laptop","LaptopChromebook","LaptopMac","LaptopWindows","LastPage","Launch","Layers","LayersClear","Leaderboard","LeakAdd","LeakRemove","LegendToggle","Lens","LensBlur","LibraryAdd","LibraryAddCheck","LibraryBooks","LibraryMusic","Light","LightMode","Lightbulb","LightbulbCircle","LineAxis","LineStyle","LineWeight","LinearScale","Link","LinkOff","LinkedCamera","LinkedIn","Liquor","List","ListAlt","LiveHelp","LiveTv","Living","LocalActivity","LocalAirport","LocalAtm","LocalBar","LocalCafe","LocalCarWash","LocalConvenienceStore","LocalDining","LocalDrink","LocalFireDepartment","LocalFlorist","LocalGasStation","LocalGroceryStore","LocalHospital","LocalHotel","LocalLaundryService","LocalLibrary","LocalMall","LocalMovies","LocalOffer","LocalParking","LocalPharmacy","LocalPhone","LocalPizza","LocalPlay","LocalPolice","LocalPostOffice","LocalPrintshop","LocalSee","LocalShipping","LocalTaxi","LocationCity","LocationDisabled","LocationOff","LocationOn","LocationPin","LocationSearching","Lock","LockClock","LockOpen","LockPerson","LockReset","Login","LogoDev","Logout","Looks","Looks3","Looks4","Looks5","Looks6","LooksOne","LooksTwo","Loop","Loupe","LowPriority","Loyalty","LteMobiledata","LtePlusMobiledata","Luggage","LunchDining","Lyrics","MacroOff","Mail","MailLock","Male","Man","Man2","Man3","Man4","ManageAccounts","ManageHistory","ManageSearch","Map","MapsHomeWork","MapsUgc","Margin","MarkAsUnread","MarkChatRead","MarkChatUnread","MarkEmailRead","MarkEmailUnread","MarkUnreadChatAlt","Markunread","MarkunreadMailbox","Masks","Maximize","MediaBluetoothOff","MediaBluetoothOn","Mediation","MedicalInformation","MedicalServices","Medication","MedicationLiquid","MeetingRoom","Memory","Menu","MenuBook","MenuOpen","Merge","MergeType","Message","Mic","MicExternalOff","MicExternalOn","MicNone","MicOff","Microsoft","Microwave","MilitaryTech","Minimize","MinorCrash","MiscellaneousServices","MissedVideoCall","Mms","MobileFriendly","MobileOff","MobileScreenShare","MobiledataOff","Mode","ModeComment","ModeEdit","ModeFanOff","ModeNight","ModeOfTravel","ModeStandby","ModelTraining","MonetizationOn","Money","MoneyOff","MoneyOffCsred","Monitor","MonitorHeart","MonitorWeight","MonochromePhotos","Mood","MoodBad","Moped","More","MoreHoriz","MoreTime","MoreVert","Mosque","MotionPhotosAuto","MotionPhotosOff","Mouse","MoveDown","MoveToInbox","MoveUp","Movie","MovieCreation","MovieEdit","MovieFilter","Moving","Mp","MultilineChart","MultipleStop","Museum","MusicNote","MusicOff","MusicVideo","MyLocation","Nat","Nature","NaturePeople","NavigateBefore","NavigateNext","Navigation","NearMe","NearMeDisabled","NearbyError","NearbyOff","NestCamWiredStand","NetworkCell","NetworkCheck","NetworkLocked","NetworkPing","NetworkWifi","NetworkWifi1Bar","NetworkWifi2Bar","NetworkWifi3Bar","NewLabel","NewReleases","Newspaper","NextPlan","NextWeek","Nfc","NightShelter","Nightlife","Nightlight","NightlightRound","NightsStay","NineK","NineKPlus","NineMp","NineteenMp","NoAccounts","NoAdultContent","NoBackpack","NoCell","NoCrash","NoDrinks","NoEncryption","NoEncryptionGmailerrorred","NoFlash","NoFood","NoLuggage","NoMeals","NoMealsOuline","NoMeetingRoom","NoPhotography","NoSim","NoStroller","NoTransfer","NoiseAware","NoiseControlOff","NordicWalking","North","NorthEast","NorthWest","NotAccessible","NotInterested","NotListedLocation","NotStarted","Note","NoteAdd","NoteAlt","Notes","NotificationAdd","NotificationImportant","Notifications","NotificationsActive","NotificationsNone","NotificationsOff","NotificationsPaused","Numbers","OfflineBolt","OfflinePin","OfflineShare","OilBarrel","OnDeviceTraining","OndemandVideo","OneK","OneKPlus","OneKk","OnlinePrediction","Opacity","OpenInBrowser","OpenInFull","OpenInNew","OpenInNewOff","OpenWith","OtherHouses","Outbound","Outbox","OutdoorGrill","OutgoingMail","Outlet","OutlinedFlag","Output","Padding","Pages","Pageview","Paid","Palette","Pallet","PanTool","PanToolAlt","Panorama","PanoramaFishEye","PanoramaHorizontal","PanoramaHorizontalSelect","PanoramaPhotosphere","PanoramaPhotosphereSelect","PanoramaVertical","PanoramaVerticalSelect","PanoramaWideAngle","PanoramaWideAngleSelect","Paragliding","Park","PartyMode","Password","Pattern","Pause","PauseCircle","PauseCircleFilled","PausePresentation","Payment","Payments","PedalBike","Pending","PendingActions","Pentagon","People","PeopleAlt","Percent","PermCameraMic","PermContactCalendar","PermDataSetting","PermDeviceInformation","PermIdentity","PermMedia","PermPhoneMsg","PermScanWifi","Person","Person2","Person3","Person4","PersonAdd","PersonAddAlt","PersonAddAlt1","PersonAddDisabled","PersonOff","PersonPin","PersonPinCircle","PersonRemove","PersonRemoveAlt1","PersonSearch","PersonalInjury","PersonalVideo","PestControl","PestControlRodent","Pets","Phishing","Phone","PhoneAndroid","PhoneBluetoothSpeaker","PhoneCallback","PhoneDisabled","PhoneEnabled","PhoneForwarded","PhoneInTalk","PhoneIphone","PhoneLocked","PhoneMissed","PhonePaused","Phonelink","PhonelinkErase","PhonelinkLock","PhonelinkOff","PhonelinkRing","PhonelinkSetup","Photo","PhotoAlbum","PhotoCamera","PhotoCameraBack","PhotoCameraFront","PhotoFilter","PhotoLibrary","PhotoSizeSelectActual","PhotoSizeSelectLarge","PhotoSizeSelectSmall","Php","Piano","PianoOff","PictureAsPdf","PictureInPicture","PictureInPictureAlt","PieChart","Pin","PinDrop","PinEnd","PinInvoke","Pinch","Pinterest","PivotTableChart","Pix","Place","Plagiarism","PlayArrow","PlayCircle","PlayCircleFilled","PlayCircleFilledWhite","PlayDisabled","PlayForWork","PlayLesson","PlaylistAdd","PlaylistAddCheck","PlaylistAddCheckCircle","PlaylistAddCircle","PlaylistPlay","PlaylistRemove","Plumbing","PlusOne","Podcasts","PointOfSale","Policy","Poll","Polyline","Pool","PortableWifiOff","Portrait","PostAdd","Power","PowerInput","PowerOff","PowerSettingsNew","PrecisionManufacturing","PregnantWoman","PresentToAll","Preview","PriceChange","PriceCheck","Print","PrintDisabled","PriorityHigh","PrivacyTip","PrivateConnectivity","ProductionQuantityLimits","Propane","PropaneTank","Psychology","PsychologyAlt","Public","PublicOff","Publish","PublishedWithChanges","PunchClock","PushPin","QrCode","QrCode2","QrCodeScanner","QueryBuilder","QueryStats","QuestionAnswer","QuestionMark","Queue","QueueMusic","QueuePlayNext","Quickreply","Quiz","RMobiledata","Radar","Radio","RadioButtonChecked","RadioButtonUnchecked","RailwayAlert","RamenDining","RampLeft","RampRight","RateReview","RawOff","RawOn","ReadMore","RealEstateAgent","RebaseEdit","Receipt","ReceiptLong","RecentActors","Recommend","RecordVoiceOver","Rectangle","Recycling","Reddit","Redeem","Redo","ReduceCapacity","Refresh","RememberMe","Remove","RemoveCircle","RemoveDone","RemoveFromQueue","RemoveModerator","RemoveRedEye","RemoveRoad","RemoveShoppingCart","Reorder","Repartition","Repeat","RepeatOn","RepeatOne","RepeatOneOn","Replay","Replay10","Replay30","Replay5","ReplayCircleFilled","Reply","ReplyAll","Report","ReportGmailerrorred","ReportOff","ReportProblem","RequestPage","RequestQuote","ResetTv","RestartAlt","Restaurant","RestaurantMenu","Restore","RestoreFromTrash","RestorePage","Reviews","RiceBowl","RingVolume","Rocket","RocketLaunch","RollerShades","RollerShadesClosed","RollerSkating","Roofing","Room","RoomPreferences","RoomService","Rotate90DegreesCcw","Rotate90DegreesCw","RotateLeft","RotateRight","RoundaboutLeft","RoundaboutRight","RoundedCorner","Route","Router","Rowing","RssFeed","Rsvp","Rtt","Rule","RuleFolder","RunCircle","RunningWithErrors","RvHookup","SafetyCheck","SafetyDivider","Sailing","Sanitizer","Satellite","SatelliteAlt","Save","SaveAlt","SaveAs","SavedSearch","Savings","Scale","Scanner","ScatterPlot","Schedule","ScheduleSend","Schema","School","Science","Score","Scoreboard","ScreenLockLandscape","ScreenLockPortrait","ScreenLockRotation","ScreenRotation","ScreenRotationAlt","ScreenSearchDesktop","ScreenShare","Screenshot","ScreenshotMonitor","ScubaDiving","Sd","SdCard","SdCardAlert","SdStorage","Search","SearchOff","Security","SecurityUpdate","SecurityUpdateGood","SecurityUpdateWarning","Segment","SelectAll","SelfImprovement","Sell","Send","SendAndArchive","SendTimeExtension","SendToMobile","SensorDoor","SensorOccupied","SensorWindow","Sensors","SensorsOff","SentimentDissatisfied","SentimentNeutral","SentimentSatisfied","SentimentSatisfiedAlt","SentimentVeryDissatisfied","SentimentVerySatisfied","SetMeal","Settings","SettingsAccessibility","SettingsApplications","SettingsBackupRestore","SettingsBluetooth","SettingsBrightness","SettingsCell","SettingsEthernet","SettingsInputAntenna","SettingsInputComponent","SettingsInputComposite","SettingsInputHdmi","SettingsInputSvideo","SettingsOverscan","SettingsPhone","SettingsPower","SettingsRemote","SettingsSuggest","SettingsSystemDaydream","SettingsVoice","SevenK","SevenKPlus","SevenMp","SeventeenMp","SevereCold","ShapeLine","Share","ShareLocation","Shelves","Shield","ShieldMoon","Shop","Shop2","ShopTwo","ShoppingBag","ShoppingBasket","ShoppingCart","ShoppingCartCheckout","ShortText","Shortcut","ShowChart","Shower","Shuffle","ShuffleOn","ShutterSpeed","Sick","SignLanguage","SignalCellular0Bar","SignalCellular1Bar","SignalCellular2Bar","SignalCellular3Bar","SignalCellular4Bar","SignalCellularAlt","SignalCellularAlt1Bar","SignalCellularAlt2Bar","SignalCellularConnectedNoInternet0Bar","SignalCellularConnectedNoInternet1Bar","SignalCellularConnectedNoInternet2Bar","SignalCellularConnectedNoInternet3Bar","SignalCellularConnectedNoInternet4Bar","SignalCellularNoSim","SignalCellularNodata","SignalCellularNull","SignalCellularOff","SignalWifi0Bar","SignalWifi1Bar","SignalWifi1BarLock","SignalWifi2Bar","SignalWifi2BarLock","SignalWifi3Bar","SignalWifi3BarLock","SignalWifi4Bar","SignalWifi4BarLock","SignalWifiBad","SignalWifiConnectedNoInternet4","SignalWifiOff","SignalWifiStatusbar4Bar","SignalWifiStatusbarConnectedNoInternet4","SignalWifiStatusbarNull","Signpost","SimCard","SimCardAlert","SimCardDownload","SingleBed","Sip","SixK","SixKPlus","SixMp","SixteenMp","SixtyFps","SixtyFpsSelect","Skateboarding","SkipNext","SkipPrevious","Sledding","Slideshow","SlowMotionVideo","SmartButton","SmartDisplay","SmartScreen","SmartToy","Smartphone","SmokeFree","SmokingRooms","Sms","SmsFailed","SnippetFolder","Snooze","Snowboarding","Snowing","Snowmobile","Snowshoeing","Soap","SocialDistance","SolarPower","Sort","SortByAlpha","Sos","SoupKitchen","Source","South","SouthAmerica","SouthEast","SouthWest","Spa","SpaceBar","SpaceDashboard","SpatialAudio","SpatialAudioOff","SpatialTracking","Speaker","SpeakerGroup","SpeakerNotes","SpeakerNotesOff","SpeakerPhone","Speed","Spellcheck","Splitscreen","Spoke","Sports","SportsBar","SportsBaseball","SportsBasketball","SportsCricket","SportsEsports","SportsFootball","SportsGolf","SportsGymnastics","SportsHandball","SportsHockey","SportsKabaddi","SportsMartialArts","SportsMma","SportsMotorsports","SportsRugby","SportsScore","SportsSoccer","SportsTennis","SportsVolleyball","Square","SquareFoot","SsidChart","StackedBarChart","StackedLineChart","Stadium","Stairs","Star","StarBorder","StarBorderPurple500","StarHalf","StarPurple500","StarRate","Stars","Start","StayCurrentLandscape","StayCurrentPortrait","StayPrimaryLandscape","StayPrimaryPortrait","StickyNote2","Stop","StopCircle","StopScreenShare","Storage","Store","StoreMallDirectory","Storefront","Storm","Straight","Straighten","Stream","Streetview","StrikethroughS","Stroller","Style","SubdirectoryArrowLeft","SubdirectoryArrowRight","Subject","Subscript","Subscriptions","Subtitles","SubtitlesOff","Subway","Summarize","Sunny","SunnySnowing","Superscript","SupervisedUserCircle","SupervisorAccount","Support","SupportAgent","Surfing","SurroundSound","SwapCalls","SwapHoriz","SwapHorizontalCircle","SwapVert","SwapVerticalCircle","Swipe","SwipeDown","SwipeDownAlt","SwipeLeft","SwipeLeftAlt","SwipeRight","SwipeRightAlt","SwipeUp","SwipeUpAlt","SwipeVertical","SwitchAccessShortcut","SwitchAccessShortcutAdd","SwitchAccount","SwitchCamera","SwitchLeft","SwitchRight","SwitchVideo","Synagogue","Sync","SyncAlt","SyncDisabled","SyncLock","SyncProblem","SystemSecurityUpdate","SystemSecurityUpdateGood","SystemSecurityUpdateWarning","SystemUpdate","SystemUpdateAlt","Tab","TabUnselected","TableBar","TableChart","TableRestaurant","TableRows","TableView","Tablet","TabletAndroid","TabletMac","Tag","TagFaces","TakeoutDining","TapAndPlay","Tapas","Task","TaskAlt","TaxiAlert","Telegram","TempleBuddhist","TempleHindu","TenMp","Terminal","Terrain","TextDecrease","TextFields","TextFormat","TextIncrease","TextRotateUp","TextRotateVertical","TextRotationAngledown","TextRotationAngleup","TextRotationDown","TextRotationNone","TextSnippet","Textsms","Texture","TheaterComedy","Theaters","Thermostat","ThermostatAuto","ThirteenMp","ThirtyFps","ThirtyFpsSelect","ThreeDRotation","ThreeGMobiledata","ThreeK","ThreeKPlus","ThreeMp","ThreeP","ThreeSixty","ThumbDown","ThumbDownAlt","ThumbDownOffAlt","ThumbUp","ThumbUpAlt","ThumbUpOffAlt","ThumbsUpDown","Thunderstorm","TimeToLeave","Timelapse","Timeline","Timer","Timer10","Timer10Select","Timer3","Timer3Select","TimerOff","TimesOneMobiledata","TipsAndUpdates","TireRepair","Title","Toc","Today","ToggleOff","ToggleOn","Token","Toll","Tonality","Topic","Tornado","TouchApp","Tour","Toys","TrackChanges","Traffic","Train","Tram","Transcribe","TransferWithinAStation","Transform","Transgender","TransitEnterexit","Translate","TravelExplore","TrendingDown","TrendingFlat","TrendingUp","TripOrigin","Trolley","Troubleshoot","Try","Tsunami","Tty","Tune","Tungsten","TurnLeft","TurnRight","TurnSharpLeft","TurnSharpRight","TurnSlightLeft","TurnSlightRight","TurnedIn","TurnedInNot","Tv","TvOff","TwelveMp","TwentyFourMp","TwentyOneMp","TwentyThreeMp","TwentyTwoMp","TwentyZeroMp","Twitter","TwoK","TwoKPlus","TwoMp","TwoWheeler","TypeSpecimen","UTurnLeft","UTurnRight","Umbrella","Unarchive","Undo","UnfoldLess","UnfoldLessDouble","UnfoldMore","UnfoldMoreDouble","Unpublished","Unsubscribe","Upcoming","Update","UpdateDisabled","Upgrade","Upload","UploadFile","Usb","UsbOff","Vaccines","VapeFree","VapingRooms","Verified","VerifiedUser","VerticalAlignBottom","VerticalAlignCenter","VerticalAlignTop","VerticalShades","VerticalShadesClosed","VerticalSplit","Vibration","VideoCall","VideoCameraBack","VideoCameraFront","VideoChat","VideoFile","VideoLabel","VideoLibrary","VideoSettings","VideoStable","Videocam","VideocamOff","VideogameAsset","VideogameAssetOff","ViewAgenda","ViewArray","ViewCarousel","ViewColumn","ViewComfy","ViewComfyAlt","ViewCompact","ViewCompactAlt","ViewCozy","ViewDay","ViewHeadline","ViewInAr","ViewKanban","ViewList","ViewModule","ViewQuilt","ViewSidebar","ViewStream","ViewTimeline","ViewWeek","Vignette","Villa","Visibility","VisibilityOff","VoiceChat","VoiceOverOff","Voicemail","Volcano","VolumeDown","VolumeDownAlt","VolumeMute","VolumeOff","VolumeUp","VolunteerActivism","VpnKey","VpnKeyOff","VpnLock","Vrpano","Wallet","Wallpaper","Warehouse","Warning","WarningAmber","Wash","Watch","WatchLater","WatchOff","Water","WaterDamage","WaterDrop","WaterfallChart","Waves","WavingHand","WbAuto","WbCloudy","WbIncandescent","WbIridescent","WbShade","WbSunny","WbTwighlight","WbTwilight","Wc","Web","WebAsset","WebAssetOff","WebStories","Webhook","Weekend","West","WhatsApp","Whatshot","WheelchairPickup","WhereToVote","Widgets","WidthFull","WidthNormal","WidthWide","Wifi","Wifi1Bar","Wifi2Bar","WifiCalling","WifiCalling3","WifiChannel","WifiFind","WifiLock","WifiOff","WifiPassword","WifiProtectedSetup","WifiTethering","WifiTetheringError","WifiTetheringOff","WindPower","Window","WineBar","Woman","Woman2","Work","WorkHistory","WorkOff","WorkspacePremium","Workspaces","WorkspacesFilled","WrapText","WrongLocation","Wysiwyg","X","Yard","YouTube","YoutubeSearchedFor","ZoomIn","ZoomInMap","ZoomOut","ZoomOutMap"]} \ No newline at end of file diff --git a/docs/scripts/buildIconSearchIndex.mjs b/docs/scripts/buildIconSearchIndex.mjs new file mode 100644 index 00000000000000..0682d914b064f1 --- /dev/null +++ b/docs/scripts/buildIconSearchIndex.mjs @@ -0,0 +1,153 @@ +/* eslint-disable no-console */ +import fs from 'node:fs'; +import os from 'node:os'; +import path from 'node:path'; +import { Tokenizer } from '@huggingface/tokenizers'; +import synonyms from '../data/material/components/material-icons/synonyms.js'; + +/** + * README + * + * Builds the semantic search index for the Material Icons page from the potion-base-8M static + * embedding model (https://huggingface.co/minishlab/potion-base-8M). + * + * A static embedding model is a lookup table with one vector per token, so the browser does not + * need the model or a tokenizer: this script precomputes one vector per word in the model's + * vocabulary and one vector per icon (its name and synonyms). The search page adds up the + * vectors of the words in the query and ranks icons by cosine similarity. + * + * Usage: `pnpm docs:mdicons:search-index` + * Rerun after `synonyms.js` changes. + */ + +const MODEL_ID = 'minishlab/potion-base-8M'; +// Pinned so the committed index stays reproducible. +const MODEL_REVISION = 'bf8b056651a2c21b8d2565580b8569da283cab23'; +// The model's 256 dimensions come from PCA and are ordered by variance. Keeping the first 64 +// ranked as well as 128 or 256 on the test queries, at a quarter of the download size. +const DIMS = 64; + +const ROOT = path.join(import.meta.dirname, '../..'); +const OUT_DIR = path.join(ROOT, 'docs/public/static/material-icons'); +const CACHE_DIR = path.join(os.tmpdir(), 'mui-icon-search-model', MODEL_REVISION); + +async function download(file) { + const target = path.join(CACHE_DIR, file); + if (!fs.existsSync(target)) { + const url = `https://huggingface.co/${MODEL_ID}/resolve/${MODEL_REVISION}/${file}`; + const response = await fetch(url); + if (!response.ok) { + throw new Error(`Failed to download ${url}: ${response.status}`); + } + fs.mkdirSync(CACHE_DIR, { recursive: true }); + fs.writeFileSync(target, Buffer.from(await response.arrayBuffer())); + } + return fs.readFileSync(target); +} + +// Reads the single F32 "embeddings" tensor from a safetensors file. +function readEmbeddings(buffer) { + const headerLength = Number(buffer.readBigUInt64LE(0)); + const header = JSON.parse(buffer.subarray(8, 8 + headerLength).toString()); + const { dtype, shape, data_offsets: offsets } = header.embeddings; + if (dtype !== 'F32') { + throw new Error(`Unsupported dtype ${dtype}`); + } + const start = 8 + headerLength + offsets[0]; + const data = new Float32Array( + buffer.buffer.slice( + buffer.byteOffset + start, + buffer.byteOffset + start + shape[0] * shape[1] * 4, + ), + ); + return { data, rows: shape[0], width: shape[1] }; +} + +function normalize(vector) { + let norm = 0; + for (const value of vector) { + norm += value * value; + } + norm = Math.sqrt(norm) || 1; + return vector.map((value) => value / norm); +} + +// Symmetric int8 quantization with one scale per row. +function quantize(vectors) { + const values = new Int8Array(vectors.length * DIMS); + const scales = new Float32Array(vectors.length); + vectors.forEach((vector, row) => { + const max = Math.max(...vector.map(Math.abs)) || 1; + scales[row] = max / 127; + vector.forEach((value, i) => { + values[row * DIMS + i] = Math.round(value / scales[row]); + }); + }); + return { values, scales }; +} + +function nameWords(name) { + return (name.match(/[A-Z]?[a-z]+|[A-Z]+(?![a-z])|\d+/g) ?? []).map((w) => w.toLowerCase()); +} + +async function run() { + const [modelFile, tokenizerFile, tokenizerConfigFile] = await Promise.all([ + download('model.safetensors'), + download('tokenizer.json'), + download('tokenizer_config.json'), + ]); + const embeddings = readEmbeddings(modelFile); + const tokenizerJson = JSON.parse(tokenizerFile.toString()); + const tokenizer = new Tokenizer(tokenizerJson, JSON.parse(tokenizerConfigFile.toString())); + + // Same as model2vec's StaticModel.encode: mean of the token vectors, then normalize. + const encode = (text) => { + const ids = tokenizer.encode(text, { add_special_tokens: false }).ids; + const vector = new Array(DIMS).fill(0); + for (const id of ids) { + for (let i = 0; i < DIMS; i += 1) { + vector[i] += embeddings.data[id * embeddings.width + i]; + } + } + return normalize(vector); + }; + + const icons = Object.keys(synonyms).sort(); + const iconTexts = icons.map((name) => `${nameWords(name).join(' ')} ${synonyms[name]}`); + + // Only words that are a single token in the model. Other words would get a vector built from + // word pieces ("cog" becomes "co" + "g"), which is noise; keyword search covers those. + const vocab = tokenizerJson.model.vocab; + const words = Object.keys(vocab) + .filter((token) => /^[a-z]{2,}$/.test(token)) + .sort(); + // Raw token vectors, not normalized: the model scales frequent words ("with", "the") down, and + // the page adds up the vectors of the query's words, so that weighting has to be kept. + const wordVectors = words.map((word) => + Array.from( + embeddings.data.subarray( + vocab[word] * embeddings.width, + vocab[word] * embeddings.width + DIMS, + ), + ), + ); + + const wordIndex = quantize(wordVectors); + const iconIndex = quantize(iconTexts.map(encode)); + + // Binary layout: word scales (f32), icon scales (f32), word vectors (i8), icon vectors (i8). + const binary = Buffer.concat([ + Buffer.from(wordIndex.scales.buffer), + Buffer.from(iconIndex.scales.buffer), + Buffer.from(wordIndex.values.buffer), + Buffer.from(iconIndex.values.buffer), + ]); + const meta = { model: MODEL_ID, revision: MODEL_REVISION, dims: DIMS, words, icons }; + + fs.mkdirSync(OUT_DIR, { recursive: true }); + fs.writeFileSync(path.join(OUT_DIR, 'search-index.bin'), binary); + fs.writeFileSync(path.join(OUT_DIR, 'search-index.json'), JSON.stringify(meta)); + console.log(`${words.length} words, ${icons.length} icons, ${DIMS} dimensions`); +} + +run(); diff --git a/docs/scripts/iconDescriptions.mjs b/docs/scripts/iconDescriptions.mjs new file mode 100644 index 00000000000000..13779f6d4c16d1 --- /dev/null +++ b/docs/scripts/iconDescriptions.mjs @@ -0,0 +1,267 @@ +/* eslint-disable no-console */ +import fs from 'node:fs'; +import path from 'node:path'; +import vm from 'node:vm'; +import sharp from 'sharp'; +import synonyms from '../data/material/components/material-icons/synonyms.js'; + +/** + * README + * + * Helpers for generating `iconDescriptions.json`: search keywords and a visual description for + * every icon, written by an LLM from rendered icon sheets. The LLM passes are run by the + * `icon-descriptions` Claude Code skill (.claude/skills/icon-descriptions); this script does + * everything around them. + * + * Usage: + * - `node docs/scripts/iconDescriptions.mjs prepare [--all] [--icons=A,B]` + * render sheets for icons missing from iconDescriptions.json (or all of them), and write their + * existing synonyms to synonyms.json for the keyword pass + * - `node docs/scripts/iconDescriptions.mjs check visual|keywords` + * validate the LLM output files + * - `node docs/scripts/iconDescriptions.mjs merge ` + * merge the output into iconDescriptions.json and drop icons that no longer exist + */ + +const DESCRIPTIONS_PATH = path.join( + import.meta.dirname, + '../data/material/components/material-icons/iconDescriptions.json', +); +// The committed CommonJS build of every icon, so no package build is needed. +const ICONS_LIB = path.join(import.meta.dirname, '../../packages/mui-icons-material/lib'); +const THEMES = ['Outlined', 'Rounded', 'TwoTone', 'Sharp']; +const PER_SHEET = 16; +const COLS = 4; +const CELL_W = 256; +const CELL_H = 250; +const ICON_SIZE = 180; +const BANNED_VISUAL_WORDS = + /\b(filled|outline|outlined|solid|hollow|black|icon|depicting|showing)\b/i; +const FILLER_KEYWORDS = new Set([ + 'icon', + 'symbol', + 'button', + 'sign', + 'shape', + 'graphic', + 'image', + 'filled', + 'outlined', + 'solid', + 'black', + 'simple', + 'material', + 'rounded', + 'sharp', + 'two tone', +]); + +function readDescriptions() { + return fs.existsSync(DESCRIPTIONS_PATH) + ? JSON.parse(fs.readFileSync(DESCRIPTIONS_PATH, 'utf8')) + : {}; +} + +function baseIconNames() { + return fs + .readdirSync(ICONS_LIB) + .filter((file) => /^[A-Z]\w*\.js$/.test(file)) + .map((file) => file.slice(0, -'.js'.length)) + .filter((name) => !THEMES.some((theme) => name.endsWith(theme))) + .sort(); +} + +function nameWords(name) { + return (name.match(/[A-Z]?[a-z]+|[A-Z]+(?![a-z])|\d+/g) ?? []).map((w) => w.toLowerCase()); +} + +// Runs an icon's CommonJS build with stand-ins for its imports, which turns the +// `createSvgIcon(jsx(...))` call into a plain tree of SVG elements. +function loadIconTree(name) { + const code = fs.readFileSync(path.join(ICONS_LIB, `${name}.js`), 'utf8'); + const cjsModule = { exports: {} }; + const jsx = (type, props) => ({ type, props }); + const fakeRequire = (id) => { + if (id.endsWith('interopRequireDefault')) { + return { default: (m) => ({ default: m }) }; + } + if (id.endsWith('interopRequireWildcard')) { + return { default: (m) => m }; + } + if (id === 'react') { + return { Fragment: 'fragment' }; + } + if (id.endsWith('createSvgIcon')) { + return (children) => children; + } + if (id === 'react/jsx-runtime') { + return { jsx, jsxs: jsx }; + } + throw new Error(`${name}: unexpected require('${id}')`); + }; + vm.runInNewContext(code, { require: fakeRequire, module: cjsModule, exports: cjsModule.exports }); + return cjsModule.exports.default; +} + +function toSvgMarkup(node) { + if (Array.isArray(node)) { + return node.map(toSvgMarkup).join(''); + } + const { children, ...props } = node.props; + if (node.type === 'fragment') { + return toSvgMarkup(children); + } + const attrs = Object.entries(props) + .map(([key, value]) => `${key.replace(/[A-Z]/g, (c) => `-${c.toLowerCase()}`)}="${value}"`) + .join(' '); + return `<${node.type} ${attrs}>${children ? toSvgMarkup(children) : ''}`; +} + +function iconSvgContent(name) { + return toSvgMarkup(loadIconTree(name)); +} + +function sheetSvg(names) { + const rows = Math.ceil(names.length / COLS); + const scale = ICON_SIZE / 24; + const cells = names.map((name, i) => { + const x = (i % COLS) * CELL_W; + const y = Math.floor(i / COLS) * CELL_H; + return ` + + ${iconSvgContent(name)} + ${i + 1}. ${name}`; + }); + return ` + ${cells.join('')}`; +} + +function readManifest(workDir) { + return JSON.parse(fs.readFileSync(path.join(workDir, 'manifest.json'), 'utf8')); +} + +function readOutput(workDir, prefix, id) { + const file = path.join(workDir, 'out', `${prefix}_${id}.json`); + return fs.existsSync(file) ? JSON.parse(fs.readFileSync(file, 'utf8')) : null; +} + +async function prepare(workDir, args) { + const descriptions = readDescriptions(); + const explicit = args.find((arg) => arg.startsWith('--icons=')); + let names = baseIconNames(); + if (explicit) { + const wanted = explicit.slice('--icons='.length).split(','); + names = names.filter((name) => wanted.includes(name)); + } else if (!args.includes('--all')) { + names = names.filter((name) => !descriptions[name]); + } + + fs.mkdirSync(path.join(workDir, 'sheets'), { recursive: true }); + fs.mkdirSync(path.join(workDir, 'out'), { recursive: true }); + const sheets = []; + for (let i = 0; i < names.length; i += PER_SHEET) { + const id = String(sheets.length + 1).padStart(3, '0'); + const file = path.join(workDir, 'sheets', `sheet_${id}.png`); + const sheetNames = names.slice(i, i + PER_SHEET); + // eslint-disable-next-line no-await-in-loop + await sharp(Buffer.from(sheetSvg(sheetNames))) + .png() + .toFile(file); + sheets.push({ id, file, names: sheetNames }); + } + fs.writeFileSync(path.join(workDir, 'manifest.json'), JSON.stringify(sheets, null, 2)); + // Kept out of the manifest: only the keyword pass may see the existing synonyms. + fs.writeFileSync( + path.join(workDir, 'synonyms.json'), + JSON.stringify(Object.fromEntries(names.map((name) => [name, synonyms[name] ?? ''])), null, 2), + ); + console.log(`${names.length} icons, ${sheets.length} sheets in ${workDir}`); +} + +function check(workDir, kind) { + const prefix = kind === 'visual' ? 'visual' : 'kw'; + const problems = []; + let count = 0; + for (const sheet of readManifest(workDir)) { + const data = readOutput(workDir, prefix, sheet.id); + if (!data) { + problems.push(`sheet ${sheet.id}: missing ${prefix}_${sheet.id}.json`); + continue; + } + const missing = sheet.names.filter((name) => !(name in data)); + const extra = Object.keys(data).filter((name) => !sheet.names.includes(name)); + if (missing.length || extra.length) { + problems.push(`sheet ${sheet.id}: missing [${missing}] unexpected [${extra}]`); + } + for (const name of sheet.names.filter((n) => n in data)) { + count += 1; + const value = data[name]; + if (kind === 'visual') { + if (typeof value !== 'string' || !value.trim()) { + problems.push(`${name}: empty description`); + } else if (BANNED_VISUAL_WORDS.test(value)) { + problems.push(`${name}: style or filler word in "${value}"`); + } + } else if (!Array.isArray(value) || value.length === 0) { + problems.push(`${name}: no keywords`); + } + } + } + console.log(`${kind}: checked ${count} icons, ${problems.length} problems`); + problems.forEach((problem) => console.log(` ${problem}`)); + if (problems.length) { + process.exitCode = 1; + } +} + +function merge(workDir) { + const descriptions = readDescriptions(); + let dropped = 0; + for (const sheet of readManifest(workDir)) { + const visual = readOutput(workDir, 'visual', sheet.id) ?? {}; + const keywords = readOutput(workDir, 'kw', sheet.id) ?? {}; + for (const name of sheet.names) { + if (!visual[name] || !keywords[name]) { + continue; + } + const covered = new Set([...nameWords(name), ...(synonyms[name] ?? '').split(' ')]); + const raw = keywords[name].map((k) => k.trim().toLowerCase()); + const kept = [...new Set(raw)].filter((k) => k && !FILLER_KEYWORDS.has(k) && !covered.has(k)); + dropped += raw.length - kept.length; + descriptions[name] = { keywords: kept, visual: visual[name] }; + } + } + const existing = new Set(baseIconNames()); + const removed = Object.keys(descriptions).filter((name) => !existing.has(name)); + removed.forEach((name) => delete descriptions[name]); + + const sorted = Object.fromEntries( + Object.keys(descriptions) + .sort() + .map((name) => [name, descriptions[name]]), + ); + fs.writeFileSync(DESCRIPTIONS_PATH, `${JSON.stringify(sorted, null, 2)}\n`); + console.log( + `${Object.keys(sorted).length} icons in iconDescriptions.json, ` + + `dropped ${dropped} weak keywords, removed ${removed.length} stale icons`, + ); +} + +const [command, workDir, ...rest] = process.argv.slice(2); +if (!workDir) { + throw new Error('Usage: iconDescriptions.mjs [...]'); +} +switch (command) { + case 'prepare': + await prepare(workDir, rest); + break; + case 'check': + check(workDir, rest[0]); + break; + case 'merge': + merge(workDir); + break; + default: + throw new Error(`Unknown command ${command}`); +} diff --git a/docs/scripts/updateIconSynonyms.js b/docs/scripts/updateIconSynonyms.js index 1259bf62022d72..fd3f6d9ef4e90b 100644 --- a/docs/scripts/updateIconSynonyms.js +++ b/docs/scripts/updateIconSynonyms.js @@ -4,10 +4,11 @@ import fs from 'node:fs'; import fetch from 'cross-fetch'; import * as mui from '@mui/icons-material'; import synonyms from 'docs/data/material/components/material-icons/synonyms'; +import iconDescriptions from 'docs/data/material/components/material-icons/iconDescriptions.json'; // eslint-disable-next-line import/no-relative-packages import myDestRewriter from '../../packages/mui-icons-material/renameFilters/material-design-icons'; // eslint-disable-next-line import/no-relative-packages, import/extensions -import { LEGACY_OUTLINE_ICONS } from '../../packages/mui-icons-material/builder.test.mjs'; +import { LEGACY_OUTLINE_ICONS } from '../../packages/mui-icons-material/legacyOutlineIcons.mjs'; function not(a, b) { return a.filter((value) => !b.includes(value)); @@ -54,7 +55,10 @@ async function run() { return acc; }, {}); - const iconList = union(Object.keys(materialIcons), Object.keys(synonyms)) + const iconList = union( + union(Object.keys(materialIcons), Object.keys(synonyms)), + Object.keys(iconDescriptions), + ) .filter((icon) => { // The icon is not in @mui/material so no point in having synonyms. // Also exclude legacy *Outline duplicates removed in v9. @@ -71,7 +75,25 @@ async function run() { ? materialIcons[icon].reduce((tags, tag) => tags.concat(tag.split(' ')), []) : []; - let mergedStrings = union(synonymsIconStrings, materialIconStrings); + // Generated keywords and visual description, see the icon-descriptions skill + const description = iconDescriptions[icon]; + const descriptionStrings = description + ? `${description.keywords.join(' ')} ${description.visual}` + .toLowerCase() + .split(/[^a-z0-9-]+/) + .filter(Boolean) + : []; + + // The words of the icon name (ArrowBack -> arrow back), for search engines that match + // whole words + const nameStrings = (icon.match(/[A-Z]?[a-z]+|[A-Z]+(?![a-z])|\d+/g) ?? []) + .map((word) => word.toLowerCase()) + .filter((word) => word.length > 1); + + let mergedStrings = union( + union(union(synonymsIconStrings, materialIconStrings), descriptionStrings), + nameStrings, + ); mergedStrings = mergedStrings // remove strings that are substrings of others .filter((tag) => !mergedStrings.some((one) => one.includes(tag) && one !== tag)) diff --git a/package.json b/package.json index e4b15672f82366..c90bcea68ad2d3 100644 --- a/package.json +++ b/package.json @@ -33,6 +33,8 @@ "docs:typescript:check": "pnpm --filter docs typescript", "docs:typescript:formatted": "tsx ./docs/scripts/formattedTSDemos.mjs", "docs:sync-team": "tsx ./docs/scripts/syncTeamMembers.ts && pnpm prettier", + "docs:mdicons:descriptions": "node docs/scripts/iconDescriptions.mjs", + "docs:mdicons:search-index": "node docs/scripts/buildIconSearchIndex.mjs", "docs:mdicons:synonyms": "cross-env BABEL_ENV=development babel-node --extensions \".tsx,.ts,.js,.mjs\" ./docs/scripts/updateIconSynonyms && pnpm prettier", "extract-error-codes": "code-infra extract-error-codes --errorCodesPath docs/public/static/error-codes.json --skip @mui/core-downloads-tracker @mui/envinfo @mui/internal-core-docs @mui/codemod @mui/icons-material", "template:screenshot": "cross-env BABEL_ENV=development babel-node --extensions \".tsx,.ts,.js\" ./docs/scripts/generateTemplateScreenshots", diff --git a/packages/mui-icons-material/builder.test.mjs b/packages/mui-icons-material/builder.test.mjs index 095153e8ac52d7..2e639a95350eb7 100644 --- a/packages/mui-icons-material/builder.test.mjs +++ b/packages/mui-icons-material/builder.test.mjs @@ -4,6 +4,7 @@ import os from 'os'; import path from 'path'; import { fileURLToPath } from 'url'; import { RENAME_FILTER_MUI, RENAME_FILTER_DEFAULT, getComponentName, handler } from './builder.mjs'; +import { LEGACY_OUTLINE_ICONS } from './legacyOutlineIcons.mjs'; const currentDirectory = path.dirname(fileURLToPath(new URL(import.meta.url))); @@ -190,36 +191,7 @@ describe('builder', () => { }); }); -// These 23 legacy *Outline icons were removed in v9 because they were -// exact SVG-path duplicates of their *Outlined counterparts. -// This test prevents them from being silently reintroduced. -// eslint-disable-next-line import/prefer-default-export -export const LEGACY_OUTLINE_ICONS = [ - 'AddCircleOutline', - 'ChatBubbleOutline', - 'CheckCircleOutline', - 'DeleteOutline', - 'DoneOutline', - 'DriveFileMoveOutline', - 'ErrorOutline', - 'HelpOutline', - 'InfoOutline', - 'LabelImportantOutline', - 'LightbulbOutline', - 'LockOutline', - 'MailOutline', - 'ModeEditOutline', - 'PauseCircleOutline', - 'PeopleOutline', - 'PersonOutline', - 'PieChartOutline', - 'PlayCircleOutline', - 'RemoveCircleOutline', - 'StarOutline', - 'WorkOutline', - 'WorkspacesOutline', -]; - +// This test prevents the legacy *Outline icons from being silently reintroduced. describe('Legacy *Outline icon removal', () => { let indexContent; diff --git a/packages/mui-icons-material/legacyOutlineIcons.mjs b/packages/mui-icons-material/legacyOutlineIcons.mjs new file mode 100644 index 00000000000000..dfa11d28a99a8e --- /dev/null +++ b/packages/mui-icons-material/legacyOutlineIcons.mjs @@ -0,0 +1,28 @@ +// These 23 legacy *Outline icons were removed in v9 because they were +// exact SVG-path duplicates of their *Outlined counterparts. +// eslint-disable-next-line import/prefer-default-export +export const LEGACY_OUTLINE_ICONS = [ + 'AddCircleOutline', + 'ChatBubbleOutline', + 'CheckCircleOutline', + 'DeleteOutline', + 'DoneOutline', + 'DriveFileMoveOutline', + 'ErrorOutline', + 'HelpOutline', + 'InfoOutline', + 'LabelImportantOutline', + 'LightbulbOutline', + 'LockOutline', + 'MailOutline', + 'ModeEditOutline', + 'PauseCircleOutline', + 'PeopleOutline', + 'PersonOutline', + 'PieChartOutline', + 'PlayCircleOutline', + 'RemoveCircleOutline', + 'StarOutline', + 'WorkOutline', + 'WorkspacesOutline', +]; diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index ca5fe25e907b20..9fb038f667a257 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -653,6 +653,9 @@ importers: '@babel/preset-typescript': specifier: 7.29.7 version: 7.29.7(@babel/core@7.29.7(supports-color@11.0.0))(supports-color@11.0.0) + '@huggingface/tokenizers': + specifier: ^0.2.0 + version: 0.2.0 '@mui/internal-api-docs-builder': specifier: workspace:^ version: link:../packages-internal/api-docs-builder/build @@ -2958,6 +2961,9 @@ packages: resolution: {integrity: sha512-d1/lI3qIXhGVJF3+MmKEBn1dRX6U4Z+BDaOdDI3E6SXcO+OQ7hC/3mSo6BIjwQlcuV6NdDOKm6QCrzIQL1EezQ==} engines: {node: ^22.16.0 || >= 24.0.0} + '@huggingface/tokenizers@0.2.0': + resolution: {integrity: sha512-LidMHe1FpcSYH4vcSjXooda34pC0M8m1gmDOv7SQi6Iv+ib1zX7J3sHBCC9/3FPCkn2k1b55FneVqMRxrr99pg==} + '@humanfs/core@0.19.2': resolution: {integrity: sha512-UhXNm+CFMWcbChXywFwkmhqjs3PRCmcSa/hfBgLIb7oQ5HNb1wS0icWsGtSAUNgefHeI+eBrA8I1fxmbHsGdvA==} engines: {node: '>=18.18.0'} @@ -13074,6 +13080,8 @@ snapshots: '@html-validate/stylish@6.0.0': {} + '@huggingface/tokenizers@0.2.0': {} + '@humanfs/core@0.19.2': dependencies: '@humanfs/types': 0.15.0