{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "icon-picker",
  "type": "registry:ui",
  "title": "Icon Picker",
  "author": "alan-crts",
  "description": "An icon picker component with lucide icons.",
  "dependencies": [
    "lucide-react",
    "@tanstack/react-virtual",
    "fuse.js",
    "usehooks-ts"
  ],
  "registryDependencies": [
    "button",
    "input",
    "popover",
    "tooltip",
    "skeleton"
  ],
  "files": [
    {
      "path": "registry/ui/icon-picker.tsx",
      "content": "\"use client\";\n\nimport * as React from \"react\";\nimport { useState, useMemo, useCallback, useEffect } from \"react\";\nimport { Popover, PopoverContent, PopoverTrigger } from \"@/components/ui/popover\";\nimport { Button } from \"@/components/ui/button\";\nimport { Input } from \"@/components/ui/input\";\nimport { cn } from \"@/lib/utils\";\nimport { LucideProps, LucideIcon } from 'lucide-react';\nimport { DynamicIcon, dynamicIconImports, IconName } from 'lucide-react/dynamic';\nimport { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger } from \"@/components/ui/tooltip\";\nimport { iconsData } from \"./icons-data\";\nimport { useVirtualizer, VirtualItem } from '@tanstack/react-virtual';\nimport { Skeleton } from \"@/components/ui/skeleton\";\nimport Fuse from 'fuse.js';\nimport { useDebounceValue } from \"usehooks-ts\";\n\nexport type IconData = typeof iconsData[number];\n\ninterface IconPickerProps extends Omit<React.ComponentPropsWithoutRef<typeof PopoverTrigger>, 'onSelect' | 'onOpenChange'> {\n  value?: IconName\n  defaultValue?: IconName\n  onValueChange?: (value: IconName) => void\n  open?: boolean\n  defaultOpen?: boolean\n  onOpenChange?: (open: boolean) => void\n  searchable?: boolean\n  searchPlaceholder?: string\n  triggerPlaceholder?: string\n  iconsList?: IconData[]\n  categorized?: boolean\n  modal?: boolean\n}\n\nconst IconRenderer = React.memo(({ name }: { name: IconName }) => {\n  return <Icon name={name} />;\n});\nIconRenderer.displayName = \"IconRenderer\";\n\nconst IconsColumnSkeleton = () => {\n  return (\n    <div className=\"flex flex-col gap-2 w-full\">\n      <Skeleton className=\"h-4 w-1/2 rounded-md\" />\n      <div className=\"grid grid-cols-5 gap-2 w-full\">\n        {\n          Array.from({ length: 40 }).map((_, i) => (\n          <Skeleton key={i} className=\"h-10 w-10 rounded-md\" />\n        ))\n      }\n      </div>\n    </div>\n  )\n}\n\nconst useIconsData = () => {\n  const [icons, setIcons] = useState<IconData[]>([]);\n  const [isLoading, setIsLoading] = useState(true);\n\n  useEffect(() => {\n    let isMounted = true;\n    \n    const loadIcons = async () => {\n      setIsLoading(true);\n\n      const { iconsData } = await import('./icons-data');\n      if (isMounted) {\n        setIcons(iconsData.filter((icon: IconData) => {\n          return icon.name in dynamicIconImports;\n        }));\n        setIsLoading(false);\n      }\n    };\n\n    loadIcons();\n    \n    return () => {\n      isMounted = false;\n    };\n  }, []);\n\n  return { icons, isLoading };\n};\n\nconst IconPicker = React.forwardRef<\n  React.ComponentRef<typeof PopoverTrigger>,\n  IconPickerProps\n>(({\n  value,\n  defaultValue,\n  onValueChange,\n  open,\n  defaultOpen,\n  onOpenChange,\n  children,\n  searchable = true,\n  searchPlaceholder = \"Search for an icon...\",\n  triggerPlaceholder = \"Select an icon\",\n  iconsList,\n  categorized = true,\n  modal = false,\n  ...props\n}, ref) => {\n  const [selectedIcon, setSelectedIcon] = useState<IconName | undefined>(defaultValue)\n  const [isOpen, setIsOpen] = useState(defaultOpen || false)\n  const [search, setSearch] = useDebounceValue(\"\", 100);\n  const [isPopoverVisible, setIsPopoverVisible] = useState(false);\n  const { icons } = useIconsData();\n  const [isLoading, setIsLoading] = useState(true);\n  \n  const iconsToUse = useMemo(() => iconsList || icons, [iconsList, icons]);\n  \n  const fuseInstance = useMemo(() => {\n    return new Fuse(iconsToUse, {\n      keys: ['name', 'tags', 'categories'],\n      threshold: 0.3,\n      ignoreLocation: true,\n      includeScore: true,\n    });\n  }, [iconsToUse]);\n\n  const filteredIcons = useMemo(() => {\n    if (search.trim() === \"\") {\n      return iconsToUse;\n    }\n    \n    const results = fuseInstance.search(search.toLowerCase().trim());\n    return results.map(result => result.item);\n  }, [search, iconsToUse, fuseInstance]);\n\n  const categorizedIcons = useMemo(() => {\n    if (!categorized || search.trim() !== \"\") {\n      return [{ name: \"All Icons\", icons: filteredIcons }];\n    }\n\n    const categories = new Map<string, IconData[]>();\n    \n    filteredIcons.forEach(icon => {\n      if (icon.categories && icon.categories.length > 0) {\n        icon.categories.forEach(category => {\n          if (!categories.has(category)) {\n            categories.set(category, []);\n          }\n          categories.get(category)!.push(icon);\n        });\n      } else {\n        const category = \"Other\";\n        if (!categories.has(category)) {\n          categories.set(category, []);\n        }\n        categories.get(category)!.push(icon);\n      }\n    });\n    \n    return Array.from(categories.entries())\n      .map(([name, icons]) => ({ name, icons }))\n      .sort((a, b) => a.name.localeCompare(b.name));\n  }, [filteredIcons, categorized, search]);\n\n  const virtualItems = useMemo(() => {\n    const items: Array<{\n      type: 'category' | 'row';\n      categoryIndex: number;\n      rowIndex?: number;\n      icons?: IconData[];\n    }> = [];\n\n    categorizedIcons.forEach((category, categoryIndex) => {\n      items.push({ type: 'category', categoryIndex });\n      \n      const rows = [];\n      for (let i = 0; i < category.icons.length; i += 5) {\n        rows.push(category.icons.slice(i, i + 5));\n      }\n      \n      \n      rows.forEach((rowIcons, rowIndex) => {\n        items.push({ \n          type: 'row', \n          categoryIndex, \n          rowIndex, \n          icons: rowIcons \n        });\n      });\n    });\n    \n    return items;\n  }, [categorizedIcons]);\n\n  const categoryIndices = useMemo(() => {\n    const indices: Record<string, number> = {};\n    \n    virtualItems.forEach((item, index) => {\n      if (item.type === 'category') {\n        indices[categorizedIcons[item.categoryIndex].name] = index;\n      }\n    });\n    \n    return indices;\n  }, [virtualItems, categorizedIcons]);\n\n  const parentRef = React.useRef<HTMLDivElement>(null);\n\n  const virtualizer = useVirtualizer({\n    count: virtualItems.length,\n    getScrollElement: () => parentRef.current,\n    estimateSize: (index) => virtualItems[index].type === 'category' ? 25 : 40,\n    paddingEnd: 2,\n    gap: 10,\n    overscan: 5,\n  });\n\n  const handleValueChange = useCallback((icon: IconName) => {\n    if (value === undefined) {\n      setSelectedIcon(icon)\n    }\n    onValueChange?.(icon)\n  }, [value, onValueChange]);\n\n  const handleOpenChange = useCallback((newOpen: boolean) => {\n    setSearch(\"\");\n    if (open === undefined) {\n      setIsOpen(newOpen)\n    }\n    onOpenChange?.(newOpen)\n    \n    setIsPopoverVisible(newOpen);\n    \n    if (newOpen) {\n      setTimeout(() => {\n        virtualizer.measure();\n        setIsLoading(false);\n      }, 1);\n    }\n  }, [open, onOpenChange, virtualizer]);\n\n  const handleIconClick = useCallback((iconName: IconName) => {\n    handleValueChange(iconName);\n    setIsOpen(false);\n    setSearch(\"\");\n  }, [handleValueChange]);\n\n  const handleSearchChange = useCallback((e: React.ChangeEvent<HTMLInputElement>) => {\n    setSearch(e.target.value);\n    \n    if (parentRef.current) {\n      parentRef.current.scrollTop = 0;\n    }\n    \n    virtualizer.scrollToOffset(0);\n  }, [virtualizer]);\n\n  const scrollToCategory = useCallback((categoryName: string) => {\n    const categoryIndex = categoryIndices[categoryName];\n    \n    if (categoryIndex !== undefined && virtualizer) {\n      virtualizer.scrollToIndex(categoryIndex, { \n        align: 'start',\n        behavior: 'smooth'\n      });\n    }\n  }, [categoryIndices, virtualizer]);\n\n  const categoryButtons = useMemo(() => {\n    if (!categorized || search.trim() !== \"\") return null;\n    \n    return categorizedIcons.map(category => (\n      <Button \n        key={category.name}\n        variant={\"outline\"}\n        size=\"sm\"\n        className=\"text-xs\"\n        onClick={(e) => {\n          e.stopPropagation();\n          scrollToCategory(category.name);\n        }}\n      >\n        {category.name.charAt(0).toUpperCase() + category.name.slice(1)}\n      </Button>\n    ));\n  }, [categorizedIcons, scrollToCategory, categorized, search]);\n\n  const renderIcon = useCallback((icon: IconData) => (\n    <TooltipProvider key={icon.name}>\n      <Tooltip>\n        <TooltipTrigger\n          className={cn(\n            \"p-2 rounded-md border hover:bg-foreground/10 transition\",\n            \"flex items-center justify-center\"\n          )}\n          onClick={() => handleIconClick(icon.name as IconName)}>\n          <IconRenderer name={icon.name as IconName} />\n        </TooltipTrigger>\n        <TooltipContent>\n          <p>{icon.name}</p>\n        </TooltipContent>\n      </Tooltip>\n    </TooltipProvider>\n  ), [handleIconClick]);\n\n  const renderVirtualContent = useCallback(() => {\n    if (filteredIcons.length === 0) {\n      return (\n        <div className=\"text-center text-gray-500\">\n          No icon found\n        </div>\n      );\n    }\n\n    return (\n      <div \n        className=\"relative w-full overscroll-contain\"\n        style={{ \n          height: `${virtualizer.getTotalSize()}px`,\n        }}\n      >\n        {virtualizer.getVirtualItems().map((virtualItem: VirtualItem) => {\n          const item = virtualItems[virtualItem.index];\n          \n          if (!item) return null;\n          \n          const itemStyle = {\n            position: 'absolute' as const,\n            top: 0,\n            left: 0,\n            width: '100%',\n            height: `${virtualItem.size}px`,\n            transform: `translateY(${virtualItem.start}px)`,\n          };\n          \n          if (item.type === 'category') {\n            return (\n              <div\n                key={virtualItem.key}\n                style={itemStyle}\n                className=\"top-0 bg-background z-10\"\n              >\n                <h3 className=\"font-medium text-sm capitalize\">\n                  {categorizedIcons[item.categoryIndex].name}\n                </h3>\n                <div className=\"h-[1px] bg-foreground/10 w-full\" />\n              </div>\n            );\n          }\n          \n          return (\n            <div\n              key={virtualItem.key}\n              data-index={virtualItem.index}\n              style={itemStyle}\n            >\n              <div className=\"grid grid-cols-5 gap-2 w-full\">\n                {item.icons!.map(renderIcon)}\n              </div>\n            </div>\n          );\n        })}\n      </div>\n    );\n  }, [virtualizer, virtualItems, categorizedIcons, filteredIcons, renderIcon]);\n\n  React.useEffect(() => {\n    if (isPopoverVisible) {\n      setIsLoading(true);\n      const timer = setTimeout(() => {\n        setIsLoading(false);\n        virtualizer.measure();\n      }, 10);\n      \n      const resizeObserver = new ResizeObserver(() => {\n        virtualizer.measure();\n      });\n      \n      if (parentRef.current) {\n        resizeObserver.observe(parentRef.current);\n      }\n      \n      return () => {\n        clearTimeout(timer);\n        resizeObserver.disconnect();\n      };\n    }\n  }, [isPopoverVisible, virtualizer]);\n\n  return (\n    <Popover open={open ?? isOpen} onOpenChange={handleOpenChange} modal={modal}>\n      <PopoverTrigger ref={ref} asChild {...props}>\n        {children || (\n          <Button variant=\"outline\">\n            {(value || selectedIcon) ? (\n              <>\n                <Icon name={(value || selectedIcon)!} /> {value || selectedIcon}\n              </>\n            ) : (\n              triggerPlaceholder\n            )}\n          </Button>\n        )}\n      </PopoverTrigger>\n      <PopoverContent className=\"w-64 p-2\">\n        {searchable && (\n          <Input\n            placeholder={searchPlaceholder}\n            onChange={handleSearchChange}\n            className=\"mb-2\"\n          />\n        )}\n        {categorized && search.trim() === \"\" && (\n          <div className=\"flex flex-row gap-1 mt-2 overflow-x-auto pb-2\">\n            {categoryButtons}\n          </div>\n        )}\n        <div\n          ref={parentRef}\n          className=\"max-h-60 overflow-auto\"\n          style={{ scrollbarWidth: 'thin' }}\n        >\n          {isLoading ? (\n            <IconsColumnSkeleton />\n          ) : (\n            renderVirtualContent()\n          )}\n        </div>\n      </PopoverContent>\n    </Popover>\n  );\n});\nIconPicker.displayName = \"IconPicker\";\n\ninterface IconProps extends Omit<LucideProps, 'ref'> {\n  name: IconName;\n}\n\nconst Icon = React.forwardRef<\n  React.ComponentRef<LucideIcon>,\n  IconProps\n>(({ name, ...props }, ref) => {\n  return <DynamicIcon name={name} {...props} ref={ref} />;\n});\nIcon.displayName = \"Icon\";\n\nexport { IconPicker, Icon, type IconName };",
      "type": "registry:component",
      "target": "components/ui/icon-picker.tsx"
    },
    {
      "path": "registry/ui/icons-data.ts",
      "content": "export const iconsData: Array<{\n    name: string;\n    categories: string[];\n    tags: string[];\n}> = [\n  {\n    \"name\": \"a-arrow-down\",\n    \"categories\": [\"text\",\"design\"],\n    \"tags\": [\"letter\",\"font size\",\"text\",\"formatting\",\"smaller\"]\n  },\n  {\n    \"name\": \"a-arrow-up\",\n    \"categories\": [\"text\",\"design\"],\n    \"tags\": [\"letter\",\"font size\",\"text\",\"formatting\",\"larger\",\"bigger\"]\n  },\n  {\n    \"name\": \"a-large-small\",\n    \"categories\": [\"text\",\"design\"],\n    \"tags\": [\"letter\",\"font size\",\"text\",\"formatting\"]\n  },\n  {\n    \"name\": \"accessibility\",\n    \"categories\": [\"accessibility\",\"medical\"],\n    \"tags\": [\"disability\",\"disabled\",\"dda\",\"wheelchair\"]\n  },\n  {\n    \"name\": \"activity\",\n    \"categories\": [\"medical\",\"account\",\"social\",\"science\",\"multimedia\"],\n    \"tags\": [\"pulse\",\"action\",\"motion\",\"movement\",\"exercise\",\"fitness\",\"healthcare\",\"heart rate monitor\",\"vital signs\",\"vitals\",\"emergency room\",\"er\",\"intensive care\",\"hospital\",\"defibrillator\",\"earthquake\",\"siesmic\",\"magnitude\",\"richter scale\",\"aftershock\",\"tremor\",\"shockwave\",\"audio\",\"waveform\",\"synthesizer\",\"synthesiser\",\"music\"]\n  },\n  {\n    \"name\": \"ad\",\n    \"categories\": [\"multimedia\",\"notifications\"],\n    \"tags\": [\"advert\",\"affiliate\",\"brand\",\"campaign\",\"commercial\",\"marketing\",\"monetize\",\"paid\",\"partner\",\"promo\",\"sponsor\"]\n  },\n  {\n    \"name\": \"air-vent\",\n    \"categories\": [\"home\"],\n    \"tags\": [\"air conditioner\",\"ac\",\"central air\",\"cooling\",\"climate-control\"]\n  },\n  {\n    \"name\": \"airplay\",\n    \"categories\": [\"multimedia\",\"connectivity\"],\n    \"tags\": [\"stream\",\"cast\",\"mirroring\",\"screen\",\"monitor\",\"macos\",\"osx\"]\n  },\n  {\n    \"name\": \"alarm-clock-check\",\n    \"categories\": [\"devices\",\"notifications\",\"time\"],\n    \"tags\": [\"done\",\"todo\",\"tick\",\"complete\",\"task\"]\n  },\n  {\n    \"name\": \"alarm-clock-minus\",\n    \"categories\": [\"devices\",\"notifications\",\"time\"],\n    \"tags\": [\"remove\"]\n  },\n  {\n    \"name\": \"alarm-clock-off\",\n    \"categories\": [\"devices\",\"notifications\",\"time\"],\n    \"tags\": [\"morning\",\"turn-off\"]\n  },\n  {\n    \"name\": \"alarm-clock-plus\",\n    \"categories\": [\"devices\",\"notifications\",\"time\"],\n    \"tags\": [\"add\"]\n  },\n  {\n    \"name\": \"alarm-clock\",\n    \"categories\": [\"devices\",\"notifications\",\"time\"],\n    \"tags\": [\"morning\"]\n  },\n  {\n    \"name\": \"alarm-smoke\",\n    \"categories\": [\"home\",\"devices\",\"travel\"],\n    \"tags\": [\"fire\",\"alert\",\"warning\",\"detector\",\"carbon monoxide\",\"safety\",\"equipment\",\"amenities\"]\n  },\n  {\n    \"name\": \"album\",\n    \"categories\": [\"photography\",\"multimedia\"],\n    \"tags\": [\"photo\",\"book\"]\n  },\n  {\n    \"name\": \"align-center-horizontal\",\n    \"categories\": [\"layout\"],\n    \"tags\": [\"items\",\"flex\",\"justify\"]\n  },\n  {\n    \"name\": \"align-center-vertical\",\n    \"categories\": [\"layout\"],\n    \"tags\": [\"items\",\"flex\",\"justify\"]\n  },\n  {\n    \"name\": \"align-end-horizontal\",\n    \"categories\": [\"layout\"],\n    \"tags\": [\"items\",\"bottom\",\"flex\",\"justify\"]\n  },\n  {\n    \"name\": \"align-end-vertical\",\n    \"categories\": [\"layout\"],\n    \"tags\": [\"items\",\"right\",\"flex\",\"justify\"]\n  },\n  {\n    \"name\": \"align-horizontal-distribute-center\",\n    \"categories\": [\"layout\"],\n    \"tags\": [\"items\",\"flex\",\"justify\",\"space\",\"evenly\",\"around\"]\n  },\n  {\n    \"name\": \"align-horizontal-distribute-end\",\n    \"categories\": [\"layout\"],\n    \"tags\": [\"right\",\"items\",\"flex\",\"justify\"]\n  },\n  {\n    \"name\": \"align-horizontal-distribute-start\",\n    \"categories\": [\"layout\"],\n    \"tags\": [\"left\",\"items\",\"flex\",\"justify\"]\n  },\n  {\n    \"name\": \"align-horizontal-justify-center\",\n    \"categories\": [\"layout\"],\n    \"tags\": [\"center\",\"items\",\"flex\",\"justify\"]\n  },\n  {\n    \"name\": \"align-horizontal-justify-end\",\n    \"categories\": [\"layout\"],\n    \"tags\": [\"right\",\"items\",\"flex\",\"justify\"]\n  },\n  {\n    \"name\": \"align-horizontal-justify-start\",\n    \"categories\": [\"layout\"],\n    \"tags\": [\"left\",\"items\",\"flex\",\"justify\"]\n  },\n  {\n    \"name\": \"align-horizontal-space-around\",\n    \"categories\": [\"layout\"],\n    \"tags\": [\"center\",\"items\",\"flex\",\"justify\",\"distribute\",\"between\"]\n  },\n  {\n    \"name\": \"align-horizontal-space-between\",\n    \"categories\": [\"layout\"],\n    \"tags\": [\"around\",\"items\",\"bottom\",\"flex\",\"justify\"]\n  },\n  {\n    \"name\": \"align-start-horizontal\",\n    \"categories\": [\"layout\"],\n    \"tags\": [\"top\",\"items\",\"flex\",\"justify\"]\n  },\n  {\n    \"name\": \"align-start-vertical\",\n    \"categories\": [\"layout\"],\n    \"tags\": [\"left\",\"items\",\"flex\",\"justify\"]\n  },\n  {\n    \"name\": \"align-vertical-distribute-center\",\n    \"categories\": [\"layout\"],\n    \"tags\": [\"items\",\"flex\",\"justify\",\"space\",\"evenly\",\"around\"]\n  },\n  {\n    \"name\": \"align-vertical-distribute-end\",\n    \"categories\": [\"layout\"],\n    \"tags\": [\"bottom\",\"items\",\"flex\",\"justify\"]\n  },\n  {\n    \"name\": \"align-vertical-distribute-start\",\n    \"categories\": [\"layout\"],\n    \"tags\": [\"top\",\"items\",\"flex\",\"justify\"]\n  },\n  {\n    \"name\": \"align-vertical-justify-center\",\n    \"categories\": [\"layout\"],\n    \"tags\": [\"center\",\"items\",\"flex\",\"justify\",\"distribute\",\"between\"]\n  },\n  {\n    \"name\": \"align-vertical-justify-end\",\n    \"categories\": [\"layout\"],\n    \"tags\": [\"bottom\",\"items\",\"flex\",\"justify\",\"distribute\",\"between\"]\n  },\n  {\n    \"name\": \"align-vertical-justify-start\",\n    \"categories\": [\"layout\"],\n    \"tags\": [\"top\",\"items\",\"flex\",\"justify\",\"distribute\",\"between\"]\n  },\n  {\n    \"name\": \"align-vertical-space-around\",\n    \"categories\": [\"layout\"],\n    \"tags\": [\"center\",\"items\",\"flex\",\"justify\",\"distribute\",\"between\"]\n  },\n  {\n    \"name\": \"align-vertical-space-between\",\n    \"categories\": [\"layout\"],\n    \"tags\": [\"center\",\"items\",\"flex\",\"justify\",\"distribute\",\"between\"]\n  },\n  {\n    \"name\": \"ambulance\",\n    \"categories\": [\"medical\",\"transportation\"],\n    \"tags\": [\"ambulance\",\"emergency\",\"medical\",\"vehicle\",\"siren\",\"healthcare\",\"transportation\",\"rescue\",\"urgent\",\"first aid\"]\n  },\n  {\n    \"name\": \"ampersand\",\n    \"categories\": [\"text\",\"development\"],\n    \"tags\": [\"and\",\"typography\",\"operator\",\"join\",\"concatenate\",\"code\",\"&\"]\n  },\n  {\n    \"name\": \"ampersands\",\n    \"categories\": [\"text\",\"development\"],\n    \"tags\": [\"and\",\"operator\",\"then\",\"code\",\"&&\"]\n  },\n  {\n    \"name\": \"amphora\",\n    \"categories\": [\"food-beverage\",\"gaming\"],\n    \"tags\": [\"pottery\",\"artifact\",\"artefact\",\"vase\",\"ceramics\",\"clay\",\"archaeology\",\"museum\",\"wine\",\"oil\"]\n  },\n  {\n    \"name\": \"anchor\",\n    \"categories\": [\"transportation\",\"text\"],\n    \"tags\": [\"ship\"]\n  },\n  {\n    \"name\": \"angry\",\n    \"categories\": [\"emoji\"],\n    \"tags\": [\"emoji\",\"anger\",\"face\",\"emotion\"]\n  },\n  {\n    \"name\": \"annoyed\",\n    \"categories\": [\"emoji\"],\n    \"tags\": [\"emoji\",\"nuisance\",\"face\",\"emotion\"]\n  },\n  {\n    \"name\": \"antenna\",\n    \"categories\": [\"devices\",\"multimedia\",\"communication\"],\n    \"tags\": [\"signal\",\"connection\",\"connectivity\",\"tv\",\"television\",\"broadcast\",\"live\",\"frequency\",\"tune\",\"scan\",\"channels\",\"aerial\",\"receiver\",\"transmission\",\"transducer\",\"terrestrial\",\"satellite\",\"cable\"]\n  },\n  {\n    \"name\": \"anvil\",\n    \"categories\": [\"buildings\",\"tools\",\"gaming\"],\n    \"tags\": [\"metal\",\"iron\",\"alloy\",\"materials\",\"heavy\",\"weight\",\"blacksmith\",\"forge\",\"acme\"]\n  },\n  {\n    \"name\": \"aperture\",\n    \"categories\": [\"photography\"],\n    \"tags\": [\"camera\",\"photo\",\"pictures\",\"shutter\",\"exposure\"]\n  },\n  {\n    \"name\": \"app-window-mac\",\n    \"categories\": [\"layout\",\"design\",\"development\",\"files\"],\n    \"tags\": [\"application\",\"menu bar\",\"pane\",\"preferences\",\"macos\",\"osx\",\"executable\"]\n  },\n  {\n    \"name\": \"app-window\",\n    \"categories\": [\"layout\",\"design\",\"development\",\"files\"],\n    \"tags\": [\"application\",\"menu bar\",\"pane\",\"executable\"]\n  },\n  {\n    \"name\": \"apple\",\n    \"categories\": [\"food-beverage\"],\n    \"tags\": [\"fruit\",\"food\",\"healthy\",\"snack\",\"nutrition\",\"fresh\",\"produce\",\"grocery\",\"organic\",\"harvest\",\"vitamin\",\"red\",\"green\",\"juicy\",\"sweet\",\"tart\",\"bite\",\"orchard\",\"plant\",\"core\",\"raw\",\"diet\"]\n  },\n  {\n    \"name\": \"archive-restore\",\n    \"categories\": [\"files\",\"mail\"],\n    \"tags\": [\"unarchive\",\"index\",\"backup\",\"box\",\"storage\",\"records\"]\n  },\n  {\n    \"name\": \"archive-x\",\n    \"categories\": [\"files\",\"mail\"],\n    \"tags\": [\"index\",\"backup\",\"box\",\"storage\",\"records\",\"junk\"]\n  },\n  {\n    \"name\": \"archive\",\n    \"categories\": [\"files\",\"mail\"],\n    \"tags\": [\"index\",\"backup\",\"box\",\"storage\",\"records\"]\n  },\n  {\n    \"name\": \"armchair\",\n    \"categories\": [\"home\"],\n    \"tags\": [\"sofa\",\"furniture\",\"leisure\",\"lounge\",\"loveseat\",\"couch\"]\n  },\n  {\n    \"name\": \"arrow-big-down-dash\",\n    \"categories\": [\"arrows\",\"gaming\",\"files\"],\n    \"tags\": [\"backwards\",\"reverse\",\"slow\",\"direction\",\"south\",\"download\"]\n  },\n  {\n    \"name\": \"arrow-big-down\",\n    \"categories\": [\"arrows\",\"gaming\"],\n    \"tags\": [\"backwards\",\"reverse\",\"direction\",\"south\"]\n  },\n  {\n    \"name\": \"arrow-big-left-dash\",\n    \"categories\": [\"arrows\",\"gaming\"],\n    \"tags\": [\"previous\",\"back\",\"direction\",\"west\",\"turn\",\"corner\"]\n  },\n  {\n    \"name\": \"arrow-big-left\",\n    \"categories\": [\"arrows\",\"gaming\"],\n    \"tags\": [\"previous\",\"back\",\"direction\",\"west\",\"indicate turn\"]\n  },\n  {\n    \"name\": \"arrow-big-right-dash\",\n    \"categories\": [\"arrows\",\"gaming\"],\n    \"tags\": [\"next\",\"forward\",\"direction\",\"east\",\"turn\",\"corner\"]\n  },\n  {\n    \"name\": \"arrow-big-right\",\n    \"categories\": [\"arrows\",\"gaming\"],\n    \"tags\": [\"next\",\"forward\",\"direction\",\"east\",\"indicate turn\"]\n  },\n  {\n    \"name\": \"arrow-big-up-dash\",\n    \"categories\": [\"arrows\",\"text\",\"development\",\"gaming\"],\n    \"tags\": [\"caps lock\",\"capitals\",\"keyboard\",\"button\",\"mac\",\"forward\",\"direction\",\"north\",\"faster\",\"speed\",\"boost\"]\n  },\n  {\n    \"name\": \"arrow-big-up\",\n    \"categories\": [\"arrows\",\"text\",\"development\",\"gaming\"],\n    \"tags\": [\"shift\",\"keyboard\",\"button\",\"mac\",\"capitalize\",\"capitalise\",\"forward\",\"direction\",\"north\"]\n  },\n  {\n    \"name\": \"arrow-down-0-1\",\n    \"categories\": [\"text\",\"layout\",\"arrows\"],\n    \"tags\": [\"filter\",\"sort\",\"ascending\",\"descending\",\"increasing\",\"decreasing\",\"rising\",\"falling\",\"numerical\"]\n  },\n  {\n    \"name\": \"arrow-down-1-0\",\n    \"categories\": [\"text\",\"layout\",\"arrows\"],\n    \"tags\": [\"filter\",\"sort\",\"ascending\",\"descending\",\"increasing\",\"decreasing\",\"rising\",\"falling\",\"numerical\"]\n  },\n  {\n    \"name\": \"arrow-down-a-z\",\n    \"categories\": [\"text\",\"layout\",\"arrows\"],\n    \"tags\": [\"filter\",\"sort\",\"ascending\",\"descending\",\"increasing\",\"decreasing\",\"rising\",\"falling\",\"alphabetical\"]\n  },\n  {\n    \"name\": \"arrow-down-from-line\",\n    \"categories\": [\"arrows\",\"files\"],\n    \"tags\": [\"backwards\",\"reverse\",\"direction\",\"south\",\"download\",\"expand\",\"fold\",\"vertical\"]\n  },\n  {\n    \"name\": \"arrow-down-left\",\n    \"categories\": [\"arrows\"],\n    \"tags\": [\"direction\",\"south-west\",\"diagonal\"]\n  },\n  {\n    \"name\": \"arrow-down-narrow-wide\",\n    \"categories\": [\"text\",\"layout\",\"arrows\"],\n    \"tags\": [\"filter\",\"sort\",\"ascending\",\"descending\",\"increasing\",\"decreasing\",\"rising\",\"falling\"]\n  },\n  {\n    \"name\": \"arrow-down-right\",\n    \"categories\": [\"arrows\"],\n    \"tags\": [\"direction\",\"south-east\",\"diagonal\"]\n  },\n  {\n    \"name\": \"arrow-down-to-dot\",\n    \"categories\": [\"arrows\"],\n    \"tags\": [\"direction\",\"south\",\"waypoint\",\"location\",\"step\",\"into\"]\n  },\n  {\n    \"name\": \"arrow-down-to-line\",\n    \"categories\": [\"arrows\",\"files\",\"development\"],\n    \"tags\": [\"behind\",\"direction\",\"south\",\"download\",\"save\",\"git\",\"version control\",\"pull\",\"collapse\",\"fold\",\"vertical\"]\n  },\n  {\n    \"name\": \"arrow-down-up\",\n    \"categories\": [\"arrows\"],\n    \"tags\": [\"bidirectional\",\"two-way\",\"2-way\",\"swap\",\"switch\",\"network\",\"traffic\",\"flow\",\"mobile data\",\"internet\",\"sort\",\"reorder\",\"move\"]\n  },\n  {\n    \"name\": \"arrow-down-wide-narrow\",\n    \"categories\": [\"text\",\"layout\",\"arrows\"],\n    \"tags\": [\"filter\",\"sort\",\"ascending\",\"descending\",\"increasing\",\"decreasing\",\"rising\",\"falling\"]\n  },\n  {\n    \"name\": \"arrow-down-z-a\",\n    \"categories\": [\"text\",\"layout\",\"arrows\"],\n    \"tags\": [\"filter\",\"sort\",\"ascending\",\"descending\",\"increasing\",\"decreasing\",\"rising\",\"falling\",\"alphabetical\",\"reverse\"]\n  },\n  {\n    \"name\": \"arrow-down\",\n    \"categories\": [\"arrows\"],\n    \"tags\": [\"backwards\",\"reverse\",\"direction\",\"south\"]\n  },\n  {\n    \"name\": \"arrow-left-from-line\",\n    \"categories\": [\"arrows\"],\n    \"tags\": [\"previous\",\"back\",\"direction\",\"west\",\"expand\",\"fold\",\"horizontal\",\"<-|\"]\n  },\n  {\n    \"name\": \"arrow-left-right\",\n    \"categories\": [\"arrows\"],\n    \"tags\": [\"bidirectional\",\"two-way\",\"2-way\",\"swap\",\"switch\",\"transaction\",\"reorder\",\"move\",\"<-\",\"->\"]\n  },\n  {\n    \"name\": \"arrow-left-to-line\",\n    \"categories\": [\"arrows\"],\n    \"tags\": [\"previous\",\"back\",\"direction\",\"west\",\"collapse\",\"fold\",\"horizontal\",\"|<-\"]\n  },\n  {\n    \"name\": \"arrow-left\",\n    \"categories\": [\"arrows\"],\n    \"tags\": [\"previous\",\"back\",\"direction\",\"west\",\"<-\"]\n  },\n  {\n    \"name\": \"arrow-right-from-line\",\n    \"categories\": [\"arrows\"],\n    \"tags\": [\"next\",\"forward\",\"direction\",\"east\",\"export\",\"expand\",\"fold\",\"horizontal\",\"|->\"]\n  },\n  {\n    \"name\": \"arrow-right-left\",\n    \"categories\": [\"arrows\"],\n    \"tags\": [\"bidirectional\",\"two-way\",\"2-way\",\"swap\",\"switch\",\"transaction\",\"reorder\",\"move\",\"<-\",\"->\"]\n  },\n  {\n    \"name\": \"arrow-right-to-line\",\n    \"categories\": [\"arrows\",\"development\"],\n    \"tags\": [\"next\",\"forward\",\"direction\",\"east\",\"tab\",\"keyboard\",\"mac\",\"indent\",\"collapse\",\"fold\",\"horizontal\",\"->|\"]\n  },\n  {\n    \"name\": \"arrow-right\",\n    \"categories\": [\"arrows\"],\n    \"tags\": [\"forward\",\"next\",\"direction\",\"east\",\"->\"]\n  },\n  {\n    \"name\": \"arrow-up-0-1\",\n    \"categories\": [\"text\",\"layout\",\"arrows\"],\n    \"tags\": [\"filter\",\"sort\",\"ascending\",\"descending\",\"increasing\",\"decreasing\",\"rising\",\"falling\",\"numerical\"]\n  },\n  {\n    \"name\": \"arrow-up-1-0\",\n    \"categories\": [\"text\",\"layout\",\"arrows\"],\n    \"tags\": [\"filter\",\"sort\",\"ascending\",\"descending\",\"increasing\",\"decreasing\",\"rising\",\"falling\",\"numerical\"]\n  },\n  {\n    \"name\": \"arrow-up-a-z\",\n    \"categories\": [\"text\",\"layout\",\"arrows\"],\n    \"tags\": [\"filter\",\"sort\",\"ascending\",\"descending\",\"increasing\",\"decreasing\",\"rising\",\"falling\",\"alphabetical\"]\n  },\n  {\n    \"name\": \"arrow-up-down\",\n    \"categories\": [\"arrows\"],\n    \"tags\": [\"bidirectional\",\"two-way\",\"2-way\",\"swap\",\"switch\",\"network\",\"mobile data\",\"internet\",\"sort\",\"reorder\",\"move\"]\n  },\n  {\n    \"name\": \"arrow-up-from-dot\",\n    \"categories\": [\"arrows\"],\n    \"tags\": [\"direction\",\"north\",\"step\",\"out\"]\n  },\n  {\n    \"name\": \"arrow-up-from-line\",\n    \"categories\": [\"arrows\",\"files\",\"development\"],\n    \"tags\": [\"forward\",\"direction\",\"north\",\"upload\",\"git\",\"version control\",\"push\",\"expand\",\"fold\",\"vertical\"]\n  },\n  {\n    \"name\": \"arrow-up-left\",\n    \"categories\": [\"arrows\"],\n    \"tags\": [\"direction\",\"north-west\",\"diagonal\"]\n  },\n  {\n    \"name\": \"arrow-up-narrow-wide\",\n    \"categories\": [\"text\",\"layout\",\"arrows\"],\n    \"tags\": [\"filter\",\"sort\",\"ascending\",\"descending\",\"increasing\",\"decreasing\",\"rising\",\"falling\"]\n  },\n  {\n    \"name\": \"arrow-up-right\",\n    \"categories\": [\"arrows\"],\n    \"tags\": [\"direction\",\"north-east\",\"diagonal\"]\n  },\n  {\n    \"name\": \"arrow-up-to-line\",\n    \"categories\": [\"arrows\",\"files\"],\n    \"tags\": [\"forward\",\"direction\",\"north\",\"upload\",\"collapse\",\"fold\",\"vertical\"]\n  },\n  {\n    \"name\": \"arrow-up-wide-narrow\",\n    \"categories\": [\"text\",\"layout\",\"arrows\"],\n    \"tags\": [\"filter\",\"sort\",\"ascending\",\"descending\",\"increasing\",\"decreasing\",\"rising\",\"falling\"]\n  },\n  {\n    \"name\": \"arrow-up-z-a\",\n    \"categories\": [\"text\",\"layout\",\"arrows\"],\n    \"tags\": [\"filter\",\"sort\",\"ascending\",\"descending\",\"increasing\",\"decreasing\",\"rising\",\"falling\",\"alphabetical\",\"reverse\"]\n  },\n  {\n    \"name\": \"arrow-up\",\n    \"categories\": [\"arrows\"],\n    \"tags\": [\"forward\",\"direction\",\"north\"]\n  },\n  {\n    \"name\": \"arrows-up-from-line\",\n    \"categories\": [\"arrows\",\"transportation\",\"mail\"],\n    \"tags\": [\"direction\",\"orientation\",\"this way up\",\"vertical\",\"package\",\"box\",\"fragile\",\"postage\",\"shipping\"]\n  },\n  {\n    \"name\": \"asterisk\",\n    \"categories\": [\"text\",\"math\",\"development\"],\n    \"tags\": [\"reference\",\"times\",\"multiply\",\"multiplication\",\"operator\",\"code\",\"glob pattern\",\"wildcard\",\"*\"]\n  },\n  {\n    \"name\": \"astroid\",\n    \"categories\": [\"shapes\",\"math\"],\n    \"tags\": [\"star\",\"math\",\"shape\",\"curve\",\"sharp\",\"four-pointed\",\"hypocycloid\",\"ai\",\"artificial intelligence\"]\n  },\n  {\n    \"name\": \"at-sign\",\n    \"categories\": [\"text\",\"account\"],\n    \"tags\": [\"mention\",\"at\",\"email\",\"message\",\"@\"]\n  },\n  {\n    \"name\": \"atom\",\n    \"categories\": [\"science\"],\n    \"tags\": [\"atomic\",\"nuclear\",\"physics\",\"particle\",\"element\",\"molecule\",\"electricity\",\"energy\",\"chemistry\"]\n  },\n  {\n    \"name\": \"audio-lines\",\n    \"categories\": [\"multimedia\",\"communication\"],\n    \"tags\": [\"graphic equaliser\",\"sound\",\"noise\",\"listen\",\"hearing\",\"hertz\",\"frequency\",\"wavelength\",\"vibrate\",\"sine\",\"synthesizer\",\"synthesiser\",\"levels\",\"track\",\"music\",\"playback\",\"radio\",\"broadcast\",\"airwaves\",\"voice\",\"vocals\",\"singer\",\"song\"]\n  },\n  {\n    \"name\": \"audio-waveform\",\n    \"categories\": [\"multimedia\",\"communication\"],\n    \"tags\": [\"sound\",\"noise\",\"listen\",\"hearing\",\"hertz\",\"frequency\",\"wavelength\",\"vibrate\",\"sine\",\"synthesizer\",\"synthesiser\",\"levels\",\"track\",\"music\",\"playback\",\"radio\",\"broadcast\",\"airwaves\",\"voice\",\"vocals\",\"singer\",\"song\"]\n  },\n  {\n    \"name\": \"award\",\n    \"categories\": [\"account\",\"sports\",\"gaming\"],\n    \"tags\": [\"achievement\",\"badge\",\"rosette\",\"prize\",\"winner\"]\n  },\n  {\n    \"name\": \"axe\",\n    \"categories\": [\"tools\",\"gaming\"],\n    \"tags\": [\"hatchet\",\"weapon\",\"chop\",\"sharp\",\"equipment\",\"fireman\",\"firefighter\",\"brigade\",\"lumberjack\",\"woodcutter\",\"logger\",\"forestry\"]\n  },\n  {\n    \"name\": \"axis-3d\",\n    \"categories\": [\"design\"],\n    \"tags\": [\"gizmo\",\"coordinates\"]\n  },\n  {\n    \"name\": \"baby\",\n    \"categories\": [\"accessibility\",\"people\"],\n    \"tags\": [\"child\",\"childproof\",\"children\"]\n  },\n  {\n    \"name\": \"backpack\",\n    \"categories\": [\"gaming\",\"photography\",\"travel\"],\n    \"tags\": [\"bag\",\"hiking\",\"travel\",\"camping\",\"school\",\"childhood\"]\n  },\n  {\n    \"name\": \"badge-alert\",\n    \"categories\": [\"account\",\"social\"],\n    \"tags\": [\"check\",\"verified\",\"unverified\",\"security\",\"safety\",\"issue\"]\n  },\n  {\n    \"name\": \"badge-cent\",\n    \"categories\": [\"shopping\",\"finance\"],\n    \"tags\": [\"discount\",\"offer\",\"sale\",\"voucher\",\"tag\",\"monetization\",\"marketing\",\"finance\",\"financial\",\"exchange\",\"transaction\",\"payment\",\"cents\",\"dollar\",\"usd\",\"$\",\"¢\"]\n  },\n  {\n    \"name\": \"badge-check\",\n    \"categories\": [\"social\"],\n    \"tags\": [\"verified\",\"check\"]\n  },\n  {\n    \"name\": \"badge-dollar-sign\",\n    \"categories\": [\"shopping\",\"finance\"],\n    \"tags\": [\"discount\",\"offer\",\"sale\",\"voucher\",\"tag\",\"monetization\",\"marketing\",\"finance\",\"financial\",\"exchange\",\"transaction\",\"payment\",\"usd\",\"$\"]\n  },\n  {\n    \"name\": \"badge-euro\",\n    \"categories\": [\"shopping\",\"finance\"],\n    \"tags\": [\"discount\",\"offer\",\"sale\",\"voucher\",\"tag\",\"monetization\",\"marketing\",\"finance\",\"financial\",\"exchange\",\"transaction\",\"payment\",\"€\"]\n  },\n  {\n    \"name\": \"badge-indian-rupee\",\n    \"categories\": [\"shopping\",\"finance\"],\n    \"tags\": [\"discount\",\"offer\",\"sale\",\"voucher\",\"tag\",\"monetization\",\"marketing\",\"finance\",\"financial\",\"exchange\",\"transaction\",\"payment\",\"inr\",\"₹\"]\n  },\n  {\n    \"name\": \"badge-info\",\n    \"categories\": [\"account\",\"accessibility\",\"social\"],\n    \"tags\": [\"verified\",\"unverified\",\"help\"]\n  },\n  {\n    \"name\": \"badge-japanese-yen\",\n    \"categories\": [\"shopping\",\"finance\"],\n    \"tags\": [\"discount\",\"offer\",\"sale\",\"voucher\",\"tag\",\"monetization\",\"marketing\",\"finance\",\"financial\",\"exchange\",\"transaction\",\"payment\",\"jpy\",\"¥\"]\n  },\n  {\n    \"name\": \"badge-minus\",\n    \"categories\": [\"social\"],\n    \"tags\": [\"verified\",\"unverified\",\"delete\",\"remove\",\"erase\"]\n  },\n  {\n    \"name\": \"badge-percent\",\n    \"categories\": [\"social\",\"finance\",\"shopping\",\"math\"],\n    \"tags\": [\"verified\",\"unverified\",\"sale\",\"discount\",\"offer\",\"marketing\",\"sticker\",\"price tag\"]\n  },\n  {\n    \"name\": \"badge-plus\",\n    \"categories\": [\"social\"],\n    \"tags\": [\"verified\",\"unverified\",\"add\",\"create\",\"new\"]\n  },\n  {\n    \"name\": \"badge-pound-sterling\",\n    \"categories\": [\"shopping\",\"finance\"],\n    \"tags\": [\"discount\",\"offer\",\"sale\",\"voucher\",\"tag\",\"monetization\",\"marketing\",\"finance\",\"financial\",\"exchange\",\"transaction\",\"payment\",\"british\",\"gbp\",\"£\"]\n  },\n  {\n    \"name\": \"badge-question-mark\",\n    \"categories\": [\"accessibility\",\"social\",\"shapes\"],\n    \"tags\": [\"verified\",\"unverified\",\"help\"]\n  },\n  {\n    \"name\": \"badge-russian-ruble\",\n    \"categories\": [\"shopping\",\"finance\"],\n    \"tags\": [\"discount\",\"offer\",\"sale\",\"voucher\",\"tag\",\"monetization\",\"marketing\",\"finance\",\"financial\",\"exchange\",\"transaction\",\"payment\",\"rub\",\"₽\"]\n  },\n  {\n    \"name\": \"badge-swiss-franc\",\n    \"categories\": [\"shopping\",\"finance\"],\n    \"tags\": [\"discount\",\"offer\",\"sale\",\"voucher\",\"tag\",\"monetization\",\"marketing\",\"finance\",\"financial\",\"exchange\",\"transaction\",\"payment\",\"chf\",\"₣\"]\n  },\n  {\n    \"name\": \"badge-turkish-lira\",\n    \"categories\": [\"shopping\",\"finance\"],\n    \"tags\": [\"discount\",\"offer\",\"sale\",\"voucher\",\"tag\",\"monetization\",\"marketing\",\"finance\",\"financial\",\"exchange\",\"transaction\",\"payment\",\"try\",\"₺\"]\n  },\n  {\n    \"name\": \"badge-x\",\n    \"categories\": [\"social\"],\n    \"tags\": [\"verified\",\"unverified\",\"lost\",\"delete\",\"remove\"]\n  },\n  {\n    \"name\": \"badge\",\n    \"categories\": [\"account\",\"social\",\"shapes\"],\n    \"tags\": [\"check\",\"verified\",\"unverified\"]\n  },\n  {\n    \"name\": \"baggage-claim\",\n    \"categories\": [\"transportation\",\"travel\"],\n    \"tags\": [\"baggage\",\"luggage\",\"travel\",\"cart\",\"trolley\",\"suitcase\"]\n  },\n  {\n    \"name\": \"balloon\",\n    \"categories\": [\"emoji\"],\n    \"tags\": [\"party\",\"festival\",\"congratulations\",\"celebration\",\"decoration\",\"colorful\",\"floating\",\"fun\",\"birthday\",\"event\",\"entertainment\"]\n  },\n  {\n    \"name\": \"ban\",\n    \"categories\": [\"account\"],\n    \"tags\": [\"cancel\",\"no\",\"stop\",\"forbidden\",\"prohibited\",\"error\",\"incorrect\",\"mistake\",\"wrong\",\"failure\",\"circle\",\"slash\",\"null\",\"void\"]\n  },\n  {\n    \"name\": \"banana\",\n    \"categories\": [\"food-beverage\"],\n    \"tags\": [\"fruit\",\"food\"]\n  },\n  {\n    \"name\": \"bandage\",\n    \"categories\": [\"medical\"],\n    \"tags\": [\"plaster\",\"band-aid\",\"first aid\",\"medical\",\"health\",\"wound\",\"injury\",\"care\",\"treatment\",\"healing\",\"protection\",\"emergency\",\"aid\",\"safety\",\"patch\"]\n  },\n  {\n    \"name\": \"banknote-arrow-down\",\n    \"categories\": [\"finance\"],\n    \"tags\": [\"bill\",\"currency\",\"money\",\"payment\",\"funds\",\"transaction\",\"cash\",\"finance\",\"withdraw\",\"expense\",\"out\",\"payout\",\"refund\",\"debit\",\"spending\",\"decrease\"]\n  },\n  {\n    \"name\": \"banknote-arrow-up\",\n    \"categories\": [\"finance\"],\n    \"tags\": [\"bill\",\"currency\",\"money\",\"payment\",\"funds\",\"transaction\",\"cash\",\"finance\",\"deposit\",\"earnings\",\"income\",\"in\",\"credit\",\"prepaid\",\"growth\",\"increase\"]\n  },\n  {\n    \"name\": \"banknote-check\",\n    \"categories\": [\"finance\"],\n    \"tags\": [\"banknote\",\"bill\",\"currency\",\"payment\",\"money\",\"finance\",\"document\",\"verification\",\"tick\",\"verified\",\"accepted\",\"done\",\"complete\",\"found\",\"paid\",\"task\",\"check\",\"success\"]\n  },\n  {\n    \"name\": \"banknote-x\",\n    \"categories\": [\"finance\"],\n    \"tags\": [\"bill\",\"currency\",\"money\",\"payment\",\"funds\",\"transaction\",\"cash\",\"finance\",\"error\",\"failed\",\"rejected\",\"canceled\",\"declined\",\"lost\",\"delete\",\"remove\"]\n  },\n  {\n    \"name\": \"banknote\",\n    \"categories\": [\"finance\"],\n    \"tags\": [\"currency\",\"money\",\"payment\"]\n  },\n  {\n    \"name\": \"barcode\",\n    \"categories\": [\"shopping\"],\n    \"tags\": [\"scan\",\"checkout\",\"till\",\"cart\",\"transaction\",\"purchase\",\"buy\",\"product\",\"packaging\",\"retail\",\"consumer\"]\n  },\n  {\n    \"name\": \"barrel\",\n    \"categories\": [\"food-beverage\",\"navigation\"],\n    \"tags\": [\"keg\",\"drum\",\"tank\",\"wine\",\"beer\",\"oak\",\"wood\",\"firkin\",\"hogshead\",\"kilderkin\",\"barrique\",\"solera\",\"aging\",\"whiskey\",\"brewery\",\"distillery\",\"winery\",\"vineyard\"]\n  },\n  {\n    \"name\": \"baseline\",\n    \"categories\": [\"text\"],\n    \"tags\": [\"text\",\"format\",\"color\"]\n  },\n  {\n    \"name\": \"bath\",\n    \"categories\": [\"travel\"],\n    \"tags\": [\"amenities\",\"services\",\"bathroom\",\"shower\"]\n  },\n  {\n    \"name\": \"battery-charging\",\n    \"categories\": [\"connectivity\",\"devices\"],\n    \"tags\": [\"power\",\"electricity\",\"energy\",\"accumulator\",\"charge\"]\n  },\n  {\n    \"name\": \"battery-full\",\n    \"categories\": [\"connectivity\",\"devices\"],\n    \"tags\": [\"power\",\"electricity\",\"energy\",\"accumulator\",\"charge\"]\n  },\n  {\n    \"name\": \"battery-low\",\n    \"categories\": [\"connectivity\",\"devices\"],\n    \"tags\": [\"power\",\"electricity\",\"energy\",\"accumulator\",\"charge\"]\n  },\n  {\n    \"name\": \"battery-medium\",\n    \"categories\": [\"connectivity\",\"devices\"],\n    \"tags\": [\"power\",\"electricity\",\"energy\",\"accumulator\",\"charge\"]\n  },\n  {\n    \"name\": \"battery-plus\",\n    \"categories\": [\"devices\"],\n    \"tags\": [\"power\",\"electricity\",\"energy\",\"accumulator\",\"charge\",\"plus\",\"economy\",\"health\",\"add\",\"new\",\"maximum\",\"upgrade\",\"extra\",\"+\"]\n  },\n  {\n    \"name\": \"battery-warning\",\n    \"categories\": [\"connectivity\",\"devices\"],\n    \"tags\": [\"power\",\"electricity\",\"energy\",\"accumulator\",\"charge\",\"exclamation mark\"]\n  },\n  {\n    \"name\": \"battery\",\n    \"categories\": [\"connectivity\",\"devices\"],\n    \"tags\": [\"power\",\"electricity\",\"energy\",\"accumulator\",\"charge\"]\n  },\n  {\n    \"name\": \"beaker\",\n    \"categories\": [\"science\",\"gaming\"],\n    \"tags\": [\"cup\",\"lab\",\"chemistry\",\"experiment\",\"test\"]\n  },\n  {\n    \"name\": \"bean-off\",\n    \"categories\": [\"food-beverage\"],\n    \"tags\": [\"soy free\",\"legume\",\"soy\",\"food\",\"seed\",\"allergy\",\"intolerance\",\"diet\"]\n  },\n  {\n    \"name\": \"bean\",\n    \"categories\": [\"food-beverage\"],\n    \"tags\": [\"legume\",\"soy\",\"food\",\"seed\"]\n  },\n  {\n    \"name\": \"bed-double\",\n    \"categories\": [\"home\"],\n    \"tags\": [\"sleep\",\"hotel\",\"furniture\"]\n  },\n  {\n    \"name\": \"bed-single\",\n    \"categories\": [\"home\"],\n    \"tags\": [\"sleep\",\"hotel\",\"furniture\"]\n  },\n  {\n    \"name\": \"bed\",\n    \"categories\": [\"home\"],\n    \"tags\": [\"sleep\",\"hotel\",\"furniture\"]\n  },\n  {\n    \"name\": \"beef-off\",\n    \"categories\": [\"food-beverage\"],\n    \"tags\": [\"food\",\"dish\",\"restaurant\",\"course\",\"meal\",\"meat\",\"bbq\",\"steak\",\"vegetarian\"]\n  },\n  {\n    \"name\": \"beef\",\n    \"categories\": [\"food-beverage\"],\n    \"tags\": [\"food\",\"dish\",\"restaurant\",\"course\",\"meal\",\"meat\",\"bbq\",\"steak\"]\n  },\n  {\n    \"name\": \"beer-off\",\n    \"categories\": [\"food-beverage\"],\n    \"tags\": [\"alcohol\",\"bar\",\"beverage\",\"brewery\",\"drink\"]\n  },\n  {\n    \"name\": \"beer\",\n    \"categories\": [\"food-beverage\"],\n    \"tags\": [\"alcohol\",\"bar\",\"beverage\",\"brewery\",\"drink\"]\n  },\n  {\n    \"name\": \"bell-check\",\n    \"categories\": [\"account\",\"notifications\"],\n    \"tags\": [\"alarm\",\"notification\",\"sound\",\"reminder\"]\n  },\n  {\n    \"name\": \"bell-dot\",\n    \"categories\": [\"account\",\"notifications\"],\n    \"tags\": [\"alarm\",\"notification\",\"sound\",\"reminder\",\"unread\"]\n  },\n  {\n    \"name\": \"bell-electric\",\n    \"categories\": [\"devices\",\"notifications\",\"home\"],\n    \"tags\": [\"fire alarm\",\"flames\",\"smoke\",\"firefighter\",\"fireman\",\"department\",\"brigade\",\"station\",\"emergency\",\"alert\",\"safety\",\"school bell\",\"period break\",\"recess\",\"doorbell\",\"entrance\",\"entry\",\"ring\",\"reception\"]\n  },\n  {\n    \"name\": \"bell-minus\",\n    \"categories\": [\"notifications\"],\n    \"tags\": [\"alarm\",\"notification\",\"silent\",\"reminder\",\"delete\",\"remove\",\"erase\"]\n  },\n  {\n    \"name\": \"bell-off\",\n    \"categories\": [\"notifications\"],\n    \"tags\": [\"alarm\",\"notification\",\"silent\",\"reminder\"]\n  },\n  {\n    \"name\": \"bell-plus\",\n    \"categories\": [\"notifications\"],\n    \"tags\": [\"notification\",\"silent\",\"reminder\",\"add\",\"create\",\"new\"]\n  },\n  {\n    \"name\": \"bell-ring\",\n    \"categories\": [\"notifications\"],\n    \"tags\": [\"alarm\",\"notification\",\"sound\",\"reminder\"]\n  },\n  {\n    \"name\": \"bell\",\n    \"categories\": [\"account\",\"notifications\"],\n    \"tags\": [\"alarm\",\"notification\",\"sound\",\"reminder\"]\n  },\n  {\n    \"name\": \"between-horizontal-end\",\n    \"categories\": [\"layout\",\"design\",\"tools\"],\n    \"tags\": [\"insert\",\"add\",\"left\",\"slot\",\"squeeze\",\"space\",\"vertical\",\"grid\",\"table\",\"rows\",\"cells\",\"excel\",\"spreadsheet\",\"accountancy\",\"data\",\"enter\",\"entry\",\"entries\",\"blocks\",\"rectangles\",\"chevron\"]\n  },\n  {\n    \"name\": \"between-horizontal-start\",\n    \"categories\": [\"layout\",\"design\",\"tools\"],\n    \"tags\": [\"insert\",\"add\",\"right\",\"slot\",\"squeeze\",\"space\",\"vertical\",\"grid\",\"table\",\"rows\",\"cells\",\"excel\",\"spreadsheet\",\"accountancy\",\"data\",\"enter\",\"entry\",\"entries\",\"blocks\",\"rectangles\",\"chevron\"]\n  },\n  {\n    \"name\": \"between-vertical-end\",\n    \"categories\": [\"layout\",\"design\",\"tools\"],\n    \"tags\": [\"insert\",\"add\",\"top\",\"slot\",\"squeeze\",\"space\",\"vertical\",\"grid\",\"table\",\"columns\",\"cells\",\"data\",\"enter\",\"entry\",\"entries\",\"blocks\",\"rectangles\",\"chevron\"]\n  },\n  {\n    \"name\": \"between-vertical-start\",\n    \"categories\": [\"layout\",\"design\",\"tools\"],\n    \"tags\": [\"insert\",\"add\",\"bottom\",\"slot\",\"squeeze\",\"space\",\"vertical\",\"grid\",\"table\",\"columns\",\"cells\",\"data\",\"enter\",\"entry\",\"entries\",\"blocks\",\"rectangles\",\"chevron\"]\n  },\n  {\n    \"name\": \"biceps-flexed\",\n    \"categories\": [\"emoji\"],\n    \"tags\": [\"arm\",\"muscle\",\"strong\",\"working out\",\"athletic\",\"toned\",\"muscular\",\"forelimb\",\"curled\"]\n  },\n  {\n    \"name\": \"bike\",\n    \"categories\": [\"transportation\"],\n    \"tags\": [\"bicycle\",\"transport\",\"trip\"]\n  },\n  {\n    \"name\": \"binary\",\n    \"categories\": [\"text\",\"development\"],\n    \"tags\": [\"code\",\"digits\",\"computer\",\"zero\",\"one\",\"boolean\"]\n  },\n  {\n    \"name\": \"binoculars\",\n    \"categories\": [\"navigation\",\"nature\",\"photography\",\"science\",\"travel\",\"development\"],\n    \"tags\": [\"field glasses\",\"lorgnette\",\"pince-nez\",\"observation\",\"sightseeing\",\"nature\",\"wildlife\",\"birdwatching\",\"scouting\",\"surveillance\",\"search\",\"discovery\",\"monitoring\",\"lookout\",\"viewpoint\",\"travel\",\"tourism\",\"research\"]\n  },\n  {\n    \"name\": \"biohazard\",\n    \"categories\": [\"science\"],\n    \"tags\": [\"fallout\",\"waste\",\"biology\",\"chemistry\",\"chemical\",\"element\"]\n  },\n  {\n    \"name\": \"bird\",\n    \"categories\": [\"animals\"],\n    \"tags\": [\"peace\",\"freedom\",\"wing\",\"avian\",\"tweet\"]\n  },\n  {\n    \"name\": \"birdhouse\",\n    \"categories\": [\"nature\",\"animals\",\"navigation\",\"home\"],\n    \"tags\": [\"birdhouse\",\"bird\",\"garden\",\"home\",\"house\",\"woodwork\"]\n  },\n  {\n    \"name\": \"bitcoin\",\n    \"categories\": [\"development\",\"finance\"],\n    \"tags\": [\"cryptocurrency\",\"digital\",\"blockchain\",\"finance\",\"coin\",\"market\",\"decentralized\",\"investment\",\"crypto\",\"currency\",\"money\",\"payment\"]\n  },\n  {\n    \"name\": \"blend\",\n    \"categories\": [\"design\",\"photography\",\"tools\",\"development\"],\n    \"tags\": [\"mode\",\"overlay\",\"multiply\",\"screen\",\"opacity\",\"transparency\",\"alpha\",\"filters\",\"lenses\",\"mixed\",\"shades\",\"tints\",\"hues\",\"saturation\",\"brightness\",\"overlap\",\"colors\",\"colours\"]\n  },\n  {\n    \"name\": \"blender\",\n    \"categories\": [\"food-beverage\",\"home\"],\n    \"tags\": [\"mixer\",\"appliances\",\"food\",\"liquid\",\"juicer\",\"vitamizer\",\"mix\",\"emulsify\",\"smoothie\",\"drink\",\"blade\",\"container\",\"kitchen\",\"milkshake\",\"cocktail\",\"beverage\",\"culinary\",\"shredder\",\"processor\",\"cooking\",\"recipe\",\"chef\",\"restaurant\"]\n  },\n  {\n    \"name\": \"blinds\",\n    \"categories\": [\"home\"],\n    \"tags\": [\"shades\",\"screen\",\"curtain\",\"shutter\",\"roller blind\",\"window\",\"lighting\",\"household\",\"home\"]\n  },\n  {\n    \"name\": \"blocks\",\n    \"categories\": [\"development\",\"layout\",\"shapes\"],\n    \"tags\": [\"addon\",\"plugin\",\"integration\",\"extension\",\"package\",\"build\",\"stack\",\"toys\",\"kids\",\"children\",\"learning\",\"squares\",\"corner\"]\n  },\n  {\n    \"name\": \"bluetooth-connected\",\n    \"categories\": [\"connectivity\",\"devices\"],\n    \"tags\": [\"paired\"]\n  },\n  {\n    \"name\": \"bluetooth-off\",\n    \"categories\": [\"connectivity\",\"devices\"],\n    \"tags\": [\"lost\"]\n  },\n  {\n    \"name\": \"bluetooth-searching\",\n    \"categories\": [\"connectivity\",\"devices\"],\n    \"tags\": [\"pairing\"]\n  },\n  {\n    \"name\": \"bluetooth\",\n    \"categories\": [\"connectivity\",\"devices\"],\n    \"tags\": [\"wireless\"]\n  },\n  {\n    \"name\": \"bold\",\n    \"categories\": [\"text\"],\n    \"tags\": [\"text\",\"strong\",\"format\"]\n  },\n  {\n    \"name\": \"bolt\",\n    \"categories\": [\"tools\",\"home\"],\n    \"tags\": [\"nut\",\"screw\",\"settings\",\"preferences\",\"configuration\",\"controls\",\"edit\",\"diy\",\"fixed\",\"build\",\"construction\",\"parts\"]\n  },\n  {\n    \"name\": \"bomb\",\n    \"categories\": [\"security\",\"tools\"],\n    \"tags\": [\"fatal\",\"error\",\"crash\",\"blockbuster\",\"mine\",\"explosion\",\"explode\",\"explosive\"]\n  },\n  {\n    \"name\": \"bone-fracture\",\n    \"categories\": [\"medical\",\"animals\"],\n    \"tags\": [\"bone\",\"fracture\",\"injury\",\"orthopedic\",\"medical\",\"anatomy\",\"skeletal\",\"broken\",\"xray\",\"trauma\",\"health\",\"vet\",\"veterinary\",\"crack\",\"break\",\"damage\"]\n  },\n  {\n    \"name\": \"bone\",\n    \"categories\": [\"animals\",\"medical\",\"gaming\"],\n    \"tags\": [\"health\",\"skeleton\",\"skull\",\"death\",\"pets\",\"dog\"]\n  },\n  {\n    \"name\": \"book-a\",\n    \"categories\": [\"text\",\"gaming\"],\n    \"tags\": [\"dictionary\",\"define\",\"definition\",\"thesaurus\",\"encyclopedia\",\"encyclopaedia\",\"reading\",\"booklet\",\"magazine\",\"leaflet\",\"pamphlet\",\"tome\",\"library\",\"writing\",\"written\",\"writer\",\"author\",\"story\",\"script\",\"fiction\",\"novel\",\"information\",\"knowledge\",\"education\",\"high school\",\"university\",\"college\",\"academy\",\"student\",\"study\",\"learning\",\"homework\",\"research\",\"language\",\"translate\",\"alphabetical\",\"a-z\",\"ordered\"]\n  },\n  {\n    \"name\": \"book-alert\",\n    \"categories\": [\"text\",\"development\",\"gaming\"],\n    \"tags\": [\"reading\",\"paperback\",\"booklet\",\"magazine\",\"leaflet\",\"pamphlet\",\"tome\",\"library\",\"writing\",\"written\",\"writer\",\"author\",\"story\",\"script\",\"fiction\",\"novel\",\"information\",\"knowledge\",\"education\",\"high school\",\"university\",\"college\",\"academy\",\"student\",\"study\",\"learning\",\"homework\",\"research\",\"documentation\",\"warning\",\"alert\",\"danger\",\"exclamation mark\"]\n  },\n  {\n    \"name\": \"book-audio\",\n    \"categories\": [\"multimedia\",\"text\"],\n    \"tags\": [\"audiobook\",\"reading\",\"listening\",\"sound\",\"story\",\"fiction\",\"novel\",\"information\",\"knowledge\",\"education\",\"student\",\"study\",\"learning\",\"research\"]\n  },\n  {\n    \"name\": \"book-check\",\n    \"categories\": [\"text\",\"development\",\"gaming\"],\n    \"tags\": [\"read\",\"booklet\",\"magazine\",\"leaflet\",\"pamphlet\",\"library\",\"written\",\"authored\",\"published\",\"informed\",\"knowledgeable\",\"educated\",\"schooled\",\"homework\",\"examined\",\"tested\",\"marked\",\"passed\",\"graduated\",\"studied\",\"learned\",\"lesson\",\"researched\",\"documented\",\"revealed\",\"blank\",\"plain language\",\"true\",\"truth\",\"verified\",\"corrected\",\"task\",\"todo\",\"done\",\"completed\",\"finished\",\"ticked\"]\n  },\n  {\n    \"name\": \"book-copy\",\n    \"categories\": [\"development\",\"text\",\"gaming\"],\n    \"tags\": [\"code\",\"coding\",\"version control\",\"git\",\"repository\",\"clone\",\"fork\",\"duplicate\",\"multiple\",\"books\",\"library\",\"copies\",\"copied\",\"plagiarism\",\"plagiarised\",\"plagiarized\",\"reading list\",\"information\",\"informed\",\"knowledge\",\"knowledgeable\",\"knowledgable\",\"education\",\"high school\",\"university\",\"college\",\"academy\",\"student\",\"study\",\"learning\",\"research\",\"smart\",\"intelligent\",\"intellectual\"]\n  },\n  {\n    \"name\": \"book-dashed\",\n    \"categories\": [\"development\"],\n    \"tags\": [\"code\",\"coding\",\"version control\",\"git\",\"repository\",\"template\",\"draft\",\"script\",\"screenplay\",\"writing\",\"writer\",\"author\",\"unwritten\",\"unpublished\",\"untold\"]\n  },\n  {\n    \"name\": \"book-down\",\n    \"categories\": [\"development\"],\n    \"tags\": [\"code\",\"coding\",\"version control\",\"git\",\"repository\",\"pull\"]\n  },\n  {\n    \"name\": \"book-headphones\",\n    \"categories\": [\"multimedia\",\"text\"],\n    \"tags\": [\"audiobook\",\"reading\",\"listening\",\"sound\",\"story\",\"fiction\",\"novel\",\"information\",\"knowledge\",\"education\",\"student\",\"study\",\"learning\",\"research\"]\n  },\n  {\n    \"name\": \"book-heart\",\n    \"categories\": [\"social\",\"text\",\"gaming\"],\n    \"tags\": [\"diary\",\"romance\",\"novel\",\"journal\",\"entry\",\"entries\",\"personal\",\"private\",\"secret\",\"crush\",\"like\",\"love\",\"emotion\",\"feminine\",\"girls\",\"teens\",\"teenager\",\"therapy\",\"theraputic\",\"therapist\",\"planner\",\"organizer\",\"organiser\",\"notes\",\"notepad\",\"stationery\",\"sketchbook\",\"writing\",\"written\",\"reading\",\"favorite\",\"favourite\",\"high school\"]\n  },\n  {\n    \"name\": \"book-image\",\n    \"categories\": [\"photography\",\"text\",\"multimedia\",\"files\",\"social\",\"shopping\",\"travel\"],\n    \"tags\": [\"images\",\"pictures\",\"photos\",\"album\",\"collection\",\"event\",\"magazine\",\"catalog\",\"catalogue\",\"brochure\",\"browse\",\"gallery\"]\n  },\n  {\n    \"name\": \"book-key\",\n    \"categories\": [\"development\",\"security\",\"gaming\"],\n    \"tags\": [\"code\",\"coding\",\"version control\",\"git\",\"repository\",\"private\",\"public\",\"secret\",\"unlocked\",\"hidden\",\"revealed\",\"knowledge\",\"learning\"]\n  },\n  {\n    \"name\": \"book-lock\",\n    \"categories\": [\"development\",\"security\",\"gaming\"],\n    \"tags\": [\"code\",\"coding\",\"version control\",\"git\",\"repository\",\"private\",\"secret\",\"hidden\",\"knowledge\"]\n  },\n  {\n    \"name\": \"book-marked\",\n    \"categories\": [\"text\",\"development\",\"gaming\"],\n    \"tags\": [\"dictionary\",\"reading\",\"booklet\",\"magazine\",\"leaflet\",\"pamphlet\",\"tome\",\"library\",\"writing\",\"written\",\"writer\",\"author\",\"story\",\"script\",\"fiction\",\"novel\",\"information\",\"knowledge\",\"education\",\"high school\",\"university\",\"college\",\"academy\",\"student\",\"study\",\"learning\",\"homework\",\"research\",\"documentation\",\"saved\",\"later\",\"future\",\"reference\",\"index\",\"code\",\"coding\",\"version control\",\"git\",\"repository\"]\n  },\n  {\n    \"name\": \"book-minus\",\n    \"categories\": [\"development\",\"text\",\"gaming\"],\n    \"tags\": [\"code\",\"coding\",\"version control\",\"git\",\"repository\",\"remove\",\"delete\",\"censor\",\"cancel\",\"forbid\",\"prohibit\",\"ban\",\"uneducated\",\"re-educate\",\"unlearn\",\"downgrade\"]\n  },\n  {\n    \"name\": \"book-open-check\",\n    \"categories\": [\"text\",\"development\",\"gaming\"],\n    \"tags\": [\"read\",\"pages\",\"booklet\",\"magazine\",\"leaflet\",\"pamphlet\",\"library\",\"written\",\"authored\",\"published\",\"informed\",\"knowledgeable\",\"educated\",\"schooled\",\"homework\",\"examined\",\"tested\",\"marked\",\"passed\",\"graduated\",\"studied\",\"learned\",\"lesson\",\"researched\",\"documented\",\"revealed\",\"blank\",\"plain language\",\"true\",\"truth\",\"verified\",\"corrected\",\"task\",\"todo\",\"done\",\"completed\",\"finished\",\"ticked\"]\n  },\n  {\n    \"name\": \"book-open-text\",\n    \"categories\": [\"text\",\"development\"],\n    \"tags\": [\"reading\",\"pages\",\"booklet\",\"magazine\",\"leaflet\",\"pamphlet\",\"library\",\"writing\",\"written\",\"writer\",\"author\",\"story\",\"script\",\"fiction\",\"novel\",\"information\",\"knowledge\",\"education\",\"high school\",\"university\",\"college\",\"academy\",\"student\",\"study\",\"learning\",\"homework\",\"research\",\"documentation\",\"revealed\"]\n  },\n  {\n    \"name\": \"book-open\",\n    \"categories\": [\"text\",\"development\",\"gaming\"],\n    \"tags\": [\"reading\",\"pages\",\"booklet\",\"magazine\",\"leaflet\",\"pamphlet\",\"library\",\"writing\",\"written\",\"writer\",\"author\",\"story\",\"script\",\"screenplay\",\"fiction\",\"novel\",\"information\",\"knowledge\",\"education\",\"high school\",\"university\",\"college\",\"academy\",\"student\",\"study\",\"learning\",\"homework\",\"research\",\"documentation\",\"revealed\",\"blank\",\"plain\"]\n  },\n  {\n    \"name\": \"book-plus\",\n    \"categories\": [\"development\",\"text\",\"gaming\"],\n    \"tags\": [\"code\",\"coding\",\"version control\",\"git\",\"repository\",\"remove\",\"delete\",\"read\",\"write\",\"author\",\"publish\",\"inform\",\"graduate\",\"re-educate\",\"study\",\"learn\",\"research\",\"knowledge\",\"improve\",\"upgrade\",\"level up\"]\n  },\n  {\n    \"name\": \"book-search\",\n    \"categories\": [\"text\",\"development\",\"gaming\"],\n    \"tags\": [\"reading\",\"library\",\"study\",\"education\",\"research\",\"knowledge\",\"discover\",\"browsing\",\"lookup\",\"finding\",\"scanning\"]\n  },\n  {\n    \"name\": \"book-text\",\n    \"categories\": [\"text\",\"gaming\"],\n    \"tags\": [\"reading\",\"booklet\",\"magazine\",\"leaflet\",\"pamphlet\",\"tome\",\"library\",\"writing\",\"written\",\"writer\",\"author\",\"story\",\"script\",\"fiction\",\"novel\",\"information\",\"knowledge\",\"education\",\"high school\",\"university\",\"college\",\"academy\",\"student\",\"study\",\"learning\",\"homework\",\"research\",\"documentation\"]\n  },\n  {\n    \"name\": \"book-type\",\n    \"categories\": [\"text\",\"design\",\"gaming\"],\n    \"tags\": [\"thesaurus\",\"synonym\",\"reading\",\"booklet\",\"magazine\",\"leaflet\",\"pamphlet\",\"tome\",\"library\",\"writing\",\"written\",\"writer\",\"author\",\"story\",\"script\",\"fiction\",\"novel\",\"information\",\"knowledge\",\"education\",\"high school\",\"university\",\"college\",\"academy\",\"student\",\"study\",\"learning\",\"homework\",\"research\",\"language\",\"translate\",\"typography\",\"fonts\",\"collection\"]\n  },\n  {\n    \"name\": \"book-up-2\",\n    \"categories\": [\"development\"],\n    \"tags\": [\"code\",\"coding\",\"version control\",\"git\",\"repository\",\"push\",\"force\"]\n  },\n  {\n    \"name\": \"book-up\",\n    \"categories\": [\"development\"],\n    \"tags\": [\"code\",\"coding\",\"version control\",\"git\",\"repository\",\"push\"]\n  },\n  {\n    \"name\": \"book-user\",\n    \"categories\": [\"account\",\"connectivity\",\"communication\",\"social\"],\n    \"tags\": [\"person\",\"people\",\"family\",\"friends\",\"acquaintances\",\"contacts\",\"details\",\"addresses\",\"phone numbers\",\"directory\",\"listing\",\"networking\"]\n  },\n  {\n    \"name\": \"book-x\",\n    \"categories\": [\"text\",\"gaming\"],\n    \"tags\": [\"code\",\"coding\",\"version control\",\"git\",\"repository\",\"remove\",\"delete\",\"reading\",\"misinformation\",\"disinformation\",\"misinformed\",\"charlatan\",\"sophistry\",\"false\",\"lies\",\"untruth\",\"propaganda\",\"censored\",\"cancelled\",\"forbidden\",\"prohibited\",\"banned\",\"uneducated\",\"re-education\",\"unlearn\"]\n  },\n  {\n    \"name\": \"book\",\n    \"categories\": [\"text\",\"development\",\"gaming\"],\n    \"tags\": [\"reading\",\"paperback\",\"booklet\",\"magazine\",\"leaflet\",\"pamphlet\",\"tome\",\"library\",\"writing\",\"written\",\"writer\",\"author\",\"story\",\"script\",\"fiction\",\"novel\",\"information\",\"knowledge\",\"education\",\"high school\",\"university\",\"college\",\"academy\",\"student\",\"study\",\"learning\",\"homework\",\"research\",\"documentation\"]\n  },\n  {\n    \"name\": \"bookmark-check\",\n    \"categories\": [\"account\"],\n    \"tags\": [\"read\",\"finished\",\"complete\",\"clip\",\"marker\",\"tag\",\"task\",\"todo\"]\n  },\n  {\n    \"name\": \"bookmark-minus\",\n    \"categories\": [\"account\"],\n    \"tags\": [\"delete\",\"remove\"]\n  },\n  {\n    \"name\": \"bookmark-off\",\n    \"categories\": [\"account\"],\n    \"tags\": [\"unsaved\",\"unfavorite\",\"unmarked\",\"unlabel\",\"disabled\",\"removed\",\"unpin\",\"unread\",\"unclip\",\"marker\",\"untag\"]\n  },\n  {\n    \"name\": \"bookmark-plus\",\n    \"categories\": [\"account\"],\n    \"tags\": [\"add\"]\n  },\n  {\n    \"name\": \"bookmark-x\",\n    \"categories\": [\"account\"],\n    \"tags\": [\"read\",\"clip\",\"marker\",\"tag\",\"cancel\",\"close\",\"delete\",\"remove\",\"clear\"]\n  },\n  {\n    \"name\": \"bookmark\",\n    \"categories\": [\"account\"],\n    \"tags\": [\"save\",\"favorite\",\"mark\",\"label\",\"attachment\",\"file\",\"stick\",\"pin\",\"read\",\"clip\",\"marker\",\"tag\"]\n  },\n  {\n    \"name\": \"boom-box\",\n    \"categories\": [\"devices\",\"multimedia\",\"social\"],\n    \"tags\": [\"radio\",\"speakers\",\"audio\",\"music\",\"sound\",\"broadcast\",\"live\",\"frequency\"]\n  },\n  {\n    \"name\": \"bot-message-square\",\n    \"categories\": [\"development\",\"social\"],\n    \"tags\": [\"robot\",\"ai\",\"chat\",\"assistant\"]\n  },\n  {\n    \"name\": \"bot-off\",\n    \"categories\": [\"development\",\"social\"],\n    \"tags\": [\"robot\",\"ai\",\"chat\",\"assistant\"]\n  },\n  {\n    \"name\": \"bot\",\n    \"categories\": [\"development\",\"social\"],\n    \"tags\": [\"robot\",\"ai\",\"chat\",\"assistant\"]\n  },\n  {\n    \"name\": \"bottle-wine\",\n    \"categories\": [\"food-beverage\"],\n    \"tags\": [\"alcohol\",\"drink\",\"glass\",\"goblet\",\"chalice\",\"vineyard\",\"winery\",\"red\",\"white\",\"rose\",\"dry\",\"sparkling\",\"bar\",\"party\",\"nightclub\",\"nightlife\",\"sommelier\",\"restaurant\",\"dinner\",\"meal\"]\n  },\n  {\n    \"name\": \"bow-arrow\",\n    \"categories\": [\"gaming\",\"tools\"],\n    \"tags\": [\"archer\",\"archery\",\"game\",\"war\",\"weapon\"]\n  },\n  {\n    \"name\": \"box\",\n    \"categories\": [\"shapes\",\"gaming\",\"development\",\"math\"],\n    \"tags\": [\"cube\",\"package\",\"container\",\"storage\",\"geometry\",\"3d\",\"isometric\"]\n  },\n  {\n    \"name\": \"boxes\",\n    \"categories\": [\"shapes\",\"gaming\",\"development\"],\n    \"tags\": [\"cubes\",\"packages\",\"parts\",\"group\",\"units\",\"collection\",\"cluster\",\"geometry\"]\n  },\n  {\n    \"name\": \"braces\",\n    \"categories\": [\"development\",\"files\"],\n    \"tags\": [\"json\",\"code\",\"token\",\"curly brackets\",\"data\",\"{\",\"}\"]\n  },\n  {\n    \"name\": \"brackets\",\n    \"categories\": [\"development\",\"files\"],\n    \"tags\": [\"code\",\"token\",\"array\",\"list\",\"square\",\"[\",\"]\"]\n  },\n  {\n    \"name\": \"brain-circuit\",\n    \"categories\": [\"science\",\"development\"],\n    \"tags\": [\"mind\",\"intellect\",\"artificial intelligence\",\"ai\",\"deep learning\",\"machine learning\",\"computing\"]\n  },\n  {\n    \"name\": \"brain-cog\",\n    \"categories\": [\"science\",\"development\"],\n    \"tags\": [\"mind\",\"intellect\",\"artificial intelligence\",\"ai\",\"deep learning\",\"machine learning\",\"computing\"]\n  },\n  {\n    \"name\": \"brain\",\n    \"categories\": [\"medical\",\"science\"],\n    \"tags\": [\"medical\",\"mind\",\"mental\",\"intellect\",\"cerebral\",\"consciousness\",\"genius\",\"artificial intelligence\",\"ai\",\"think\",\"thought\",\"insight\",\"intelligent\",\"smart\"]\n  },\n  {\n    \"name\": \"brick-wall-fire\",\n    \"categories\": [\"security\",\"home\",\"connectivity\"],\n    \"tags\": [\"firewall\",\"security\",\"bricks\",\"mortar\",\"cement\",\"materials\",\"construction\",\"builder\",\"labourer\",\"quantity surveyor\",\"blocks\",\"stone\",\"campfire\",\"camping\",\"wilderness\",\"outdoors\",\"lit\",\"warmth\",\"wood\",\"twigs\",\"sticks\"]\n  },\n  {\n    \"name\": \"brick-wall-shield\",\n    \"categories\": [\"security\",\"home\",\"connectivity\"],\n    \"tags\": [\"firewall\",\"security\",\"bricks\",\"mortar\",\"cement\",\"materials\",\"construction\",\"builder\",\"labourer\",\"quantity surveyor\",\"blocks\",\"stone\",\"cybersecurity\",\"secure\",\"safety\",\"protection\",\"guardian\",\"armored\",\"armoured\",\"defense\",\"defence\",\"defender\",\"block\",\"threat\",\"prevention\",\"antivirus\",\"vigilance\",\"vigilant\",\"detection\",\"scan\",\"find\",\"strength\",\"strong\",\"tough\",\"invincible\",\"invincibility\",\"invulnerable\",\"undamaged\",\"audit\",\"admin\",\"verification\",\"crest\",\"bravery\",\"knight\",\"foot soldier\",\"infantry\",\"trooper\",\"pawn\",\"battle\",\"war\",\"military\",\"army\",\"cadet\",\"scout\"]\n  },\n  {\n    \"name\": \"brick-wall\",\n    \"categories\": [\"buildings\",\"home\"],\n    \"tags\": [\"bricks\",\"mortar\",\"cement\",\"materials\",\"construction\",\"builder\",\"labourer\",\"quantity surveyor\",\"blocks\",\"stone\"]\n  },\n  {\n    \"name\": \"briefcase-business\",\n    \"categories\": [\"transportation\"],\n    \"tags\": [\"work\",\"bag\",\"baggage\",\"folder\",\"portfolio\"]\n  },\n  {\n    \"name\": \"briefcase-conveyor-belt\",\n    \"categories\": [\"travel\",\"transportation\"],\n    \"tags\": [\"baggage\",\"luggage\",\"travel\",\"suitcase\",\"conveyor\",\"carousel\"]\n  },\n  {\n    \"name\": \"briefcase-medical\",\n    \"categories\": [\"medical\",\"transportation\"],\n    \"tags\": [\"doctor\",\"medicine\",\"first aid\"]\n  },\n  {\n    \"name\": \"briefcase\",\n    \"categories\": [\"transportation\"],\n    \"tags\": [\"work\",\"bag\",\"baggage\",\"folder\"]\n  },\n  {\n    \"name\": \"bring-to-front\",\n    \"categories\": [\"design\",\"layout\"],\n    \"tags\": [\"bring\",\"send\",\"move\",\"over\",\"forward\",\"front\",\"overlap\",\"layer\",\"order\"]\n  },\n  {\n    \"name\": \"broccoli\",\n    \"categories\": [\"food-beverage\"],\n    \"tags\": [\"leafy\",\"crisp\",\"fresh\",\"culinary\",\"vegetation\",\"vegetable\",\"food\",\"healthy\",\"vegan\",\"vegetarian\",\"nutrition\",\"diet\",\"plant\",\"green\",\"produce\"]\n  },\n  {\n    \"name\": \"brush-cleaning\",\n    \"categories\": [\"home\",\"tools\",\"design\"],\n    \"tags\": [\"cleaning\",\"utensil\",\"housekeeping\",\"tool\",\"sweeping\",\"scrubbing\",\"hygiene\",\"maintenance\",\"household\",\"cleaner\",\"chores\",\"equipment\",\"sanitation\",\"bristles\",\"handle\",\"home care\",\"sanitize\",\"purify\",\"wash\",\"disinfect\",\"sterilize\",\"scrub\",\"polish\",\"decontaminate\",\"wipe\",\"spotless\",\"remove\",\"empty\",\"erase\",\"purge\",\"eliminate\"]\n  },\n  {\n    \"name\": \"brush\",\n    \"categories\": [\"text\",\"design\",\"tools\"],\n    \"tags\": [\"clean\",\"sweep\",\"refactor\",\"remove\",\"draw\",\"paint\",\"color\",\"artist\"]\n  },\n  {\n    \"name\": \"bubbles\",\n    \"categories\": [\"weather\"],\n    \"tags\": [\"water\",\"cleaning\",\"soap\",\"bath\",\"hygiene\",\"freshness\",\"wash\",\"foam\",\"cleanliness\",\"shampoo\",\"purity\",\"splash\",\"lightness\",\"airy\",\"relaxation\",\"spa\",\"bubbly\",\"fluid\",\"floating\",\"drop\"]\n  },\n  {\n    \"name\": \"bug-off\",\n    \"categories\": [\"development\",\"animals\"],\n    \"tags\": [\"issue\",\"fixed\",\"resolved\",\"testing\",\"debug\",\"code\",\"insect\",\"kill\",\"exterminate\",\"pest control\"]\n  },\n  {\n    \"name\": \"bug-play\",\n    \"categories\": [\"development\",\"animals\"],\n    \"tags\": [\"issue\",\"testing\",\"debug\",\"reproduce\",\"code\",\"insect\"]\n  },\n  {\n    \"name\": \"bug\",\n    \"categories\": [\"development\",\"animals\"],\n    \"tags\": [\"issue\",\"error\",\"defect\",\"testing\",\"troubleshoot\",\"problem\",\"report\",\"debug\",\"code\",\"insect\",\"beetle\"]\n  },\n  {\n    \"name\": \"building-2\",\n    \"categories\": [\"account\",\"buildings\"],\n    \"tags\": [\"business\",\"company\",\"enterprise\",\"skyscraper\",\"organisation\",\"organization\",\"city\"]\n  },\n  {\n    \"name\": \"building\",\n    \"categories\": [\"account\",\"buildings\"],\n    \"tags\": [\"organisation\",\"organization\"]\n  },\n  {\n    \"name\": \"bus-front\",\n    \"categories\": [\"transportation\"],\n    \"tags\": [\"coach\",\"vehicle\",\"trip\",\"road\"]\n  },\n  {\n    \"name\": \"bus\",\n    \"categories\": [\"transportation\"],\n    \"tags\": [\"bus\",\"vehicle\",\"transport\",\"trip\"]\n  },\n  {\n    \"name\": \"cable-car\",\n    \"categories\": [\"transportation\",\"travel\"],\n    \"tags\": [\"ski lift\",\"winter holiday\",\"alpine\",\"resort\",\"mountains\"]\n  },\n  {\n    \"name\": \"cable\",\n    \"categories\": [\"connectivity\",\"devices\",\"multimedia\"],\n    \"tags\": [\"cord\",\"wire\",\"connector\",\"connection\",\"link\",\"signal\",\"console\",\"computer\",\"equipment\",\"electricity\",\"energy\",\"electronics\",\"recharging\",\"charger\",\"power\",\"supply\",\"disconnected\",\"unplugged\",\"plugs\",\"interface\",\"input\",\"output\",\"audio video\",\"av\",\"rca\",\"scart\",\"tv\",\"television\",\"optical\"]\n  },\n  {\n    \"name\": \"cake-slice\",\n    \"categories\": [\"food-beverage\",\"social\"],\n    \"tags\": [\"birthday\",\"birthdate\",\"celebration\",\"party\",\"surprise\",\"gateaux\",\"dessert\",\"candles\",\"wish\",\"fondant\",\"icing sugar\",\"sweet\",\"baking\"]\n  },\n  {\n    \"name\": \"cake\",\n    \"categories\": [\"food-beverage\",\"social\",\"account\"],\n    \"tags\": [\"birthday\",\"birthdate\",\"celebration\",\"party\",\"surprise\",\"gateaux\",\"dessert\",\"fondant\",\"icing sugar\",\"sweet\",\"baking\"]\n  },\n  {\n    \"name\": \"calculator\",\n    \"categories\": [\"math\",\"devices\"],\n    \"tags\": [\"count\",\"calculating machine\"]\n  },\n  {\n    \"name\": \"calendar-1\",\n    \"categories\": [\"time\"],\n    \"tags\": [\"date\",\"month\",\"year\",\"event\",\"single\",\"singular\",\"once\",\"1\",\"first\"]\n  },\n  {\n    \"name\": \"calendar-arrow-down\",\n    \"categories\": [\"time\"],\n    \"tags\": [\"date\",\"month\",\"year\",\"event\",\"sort\",\"order\",\"ascending\",\"descending\",\"increasing\",\"decreasing\",\"rising\",\"falling\"]\n  },\n  {\n    \"name\": \"calendar-arrow-up\",\n    \"categories\": [\"time\"],\n    \"tags\": [\"date\",\"month\",\"year\",\"event\",\"sort\",\"order\",\"ascending\",\"descending\",\"increasing\",\"decreasing\",\"rising\",\"falling\"]\n  },\n  {\n    \"name\": \"calendar-check-2\",\n    \"categories\": [\"time\"],\n    \"tags\": [\"date\",\"day\",\"month\",\"year\",\"event\",\"confirm\",\"subscribe\",\"schedule\",\"done\",\"todo\",\"tick\",\"complete\",\"task\"]\n  },\n  {\n    \"name\": \"calendar-check\",\n    \"categories\": [\"time\"],\n    \"tags\": [\"date\",\"day\",\"month\",\"year\",\"event\",\"confirm\",\"subscribe\",\"schedule\",\"done\",\"todo\",\"tick\",\"complete\",\"task\"]\n  },\n  {\n    \"name\": \"calendar-clock\",\n    \"categories\": [\"time\"],\n    \"tags\": [\"date\",\"day\",\"month\",\"year\",\"event\",\"clock\",\"hour\"]\n  },\n  {\n    \"name\": \"calendar-cog\",\n    \"categories\": [\"time\"],\n    \"tags\": [\"date\",\"day\",\"month\",\"year\",\"events\",\"settings\",\"gear\",\"cog\"]\n  },\n  {\n    \"name\": \"calendar-days\",\n    \"categories\": [\"time\"],\n    \"tags\": [\"date\",\"month\",\"year\",\"event\"]\n  },\n  {\n    \"name\": \"calendar-fold\",\n    \"categories\": [\"time\",\"files\"],\n    \"tags\": [\"date\",\"month\",\"year\",\"event\",\"birthday\",\"birthdate\",\"ics\"]\n  },\n  {\n    \"name\": \"calendar-heart\",\n    \"categories\": [\"time\"],\n    \"tags\": [\"date\",\"month\",\"year\",\"event\",\"heart\",\"favourite\",\"subscribe\",\"valentines day\"]\n  },\n  {\n    \"name\": \"calendar-minus-2\",\n    \"categories\": [\"time\"],\n    \"tags\": [\"date\",\"day\",\"month\",\"year\",\"event\",\"delete\",\"remove\"]\n  },\n  {\n    \"name\": \"calendar-minus\",\n    \"categories\": [\"time\"],\n    \"tags\": [\"date\",\"day\",\"month\",\"year\",\"event\",\"delete\",\"remove\"]\n  },\n  {\n    \"name\": \"calendar-off\",\n    \"categories\": [\"time\"],\n    \"tags\": [\"date\",\"day\",\"month\",\"year\",\"event\",\"delete\",\"remove\"]\n  },\n  {\n    \"name\": \"calendar-plus-2\",\n    \"categories\": [\"time\"],\n    \"tags\": [\"date\",\"day\",\"month\",\"year\",\"event\",\"add\",\"subscribe\",\"create\",\"new\"]\n  },\n  {\n    \"name\": \"calendar-plus\",\n    \"categories\": [\"time\"],\n    \"tags\": [\"date\",\"day\",\"month\",\"year\",\"event\",\"add\",\"subscribe\",\"create\",\"new\"]\n  },\n  {\n    \"name\": \"calendar-range\",\n    \"categories\": [\"time\"],\n    \"tags\": [\"date\",\"day\",\"month\",\"year\",\"event\",\"range\",\"period\"]\n  },\n  {\n    \"name\": \"calendar-search\",\n    \"categories\": [\"time\"],\n    \"tags\": [\"date\",\"day\",\"month\",\"year\",\"events\",\"search\",\"lens\"]\n  },\n  {\n    \"name\": \"calendar-sync\",\n    \"categories\": [\"arrows\",\"time\"],\n    \"tags\": [\"repeat\",\"refresh\",\"reconnect\",\"transfer\",\"backup\",\"date\",\"month\",\"year\",\"event\",\"subscribe\",\"recurring\",\"schedule\",\"reminder\",\"automatic\",\"auto\"]\n  },\n  {\n    \"name\": \"calendar-x-2\",\n    \"categories\": [\"time\"],\n    \"tags\": [\"date\",\"day\",\"month\",\"year\",\"event\",\"remove\"]\n  },\n  {\n    \"name\": \"calendar-x\",\n    \"categories\": [\"time\"],\n    \"tags\": [\"date\",\"day\",\"month\",\"year\",\"event\",\"remove\",\"busy\"]\n  },\n  {\n    \"name\": \"calendar\",\n    \"categories\": [\"time\"],\n    \"tags\": [\"date\",\"month\",\"year\",\"event\",\"birthday\",\"birthdate\"]\n  },\n  {\n    \"name\": \"calendars\",\n    \"categories\": [\"time\"],\n    \"tags\": [\"date\",\"month\",\"year\",\"event\",\"dates\",\"months\",\"years\",\"events\"]\n  },\n  {\n    \"name\": \"camera-off\",\n    \"categories\": [\"photography\",\"devices\",\"communication\"],\n    \"tags\": [\"photo\",\"webcam\",\"video\"]\n  },\n  {\n    \"name\": \"camera\",\n    \"categories\": [\"photography\",\"devices\",\"communication\"],\n    \"tags\": [\"photography\",\"lens\",\"focus\",\"capture\",\"shot\",\"visual\",\"image\",\"device\",\"equipment\",\"photo\",\"webcam\",\"video\"]\n  },\n  {\n    \"name\": \"candy-cane\",\n    \"categories\": [\"food-beverage\"],\n    \"tags\": [\"sugar\",\"food\",\"sweet\",\"christmas\",\"xmas\"]\n  },\n  {\n    \"name\": \"candy-off\",\n    \"categories\": [\"food-beverage\"],\n    \"tags\": [\"sugar free\",\"food\",\"sweet\",\"allergy\",\"intolerance\",\"diet\"]\n  },\n  {\n    \"name\": \"candy\",\n    \"categories\": [\"food-beverage\"],\n    \"tags\": [\"sugar\",\"food\",\"sweet\"]\n  },\n  {\n    \"name\": \"cannabis-off\",\n    \"categories\": [\"nature\"],\n    \"tags\": [\"cannabis\",\"weed\",\"leaf\"]\n  },\n  {\n    \"name\": \"cannabis\",\n    \"categories\": [\"nature\"],\n    \"tags\": [\"cannabis\",\"weed\",\"leaf\"]\n  },\n  {\n    \"name\": \"captions-off\",\n    \"categories\": [\"multimedia\"],\n    \"tags\": [\"closed captions\",\"subtitles\",\"subhead\",\"transcription\",\"transcribe\",\"dialogue\",\"accessibility\"]\n  },\n  {\n    \"name\": \"captions\",\n    \"categories\": [\"multimedia\"],\n    \"tags\": [\"closed captions\",\"subtitles\",\"subhead\",\"transcription\",\"transcribe\",\"dialogue\",\"accessibility\"]\n  },\n  {\n    \"name\": \"car-front\",\n    \"categories\": [\"transportation\"],\n    \"tags\": [\"vehicle\",\"drive\",\"trip\",\"journey\"]\n  },\n  {\n    \"name\": \"car-taxi-front\",\n    \"categories\": [\"transportation\"],\n    \"tags\": [\"cab\",\"vehicle\",\"drive\",\"trip\",\"journey\"]\n  },\n  {\n    \"name\": \"car\",\n    \"categories\": [\"transportation\"],\n    \"tags\": [\"vehicle\",\"drive\",\"trip\",\"journey\"]\n  },\n  {\n    \"name\": \"caravan\",\n    \"categories\": [\"transportation\",\"travel\",\"nature\"],\n    \"tags\": [\"trailer\",\"tow\",\"camping\",\"campsite\",\"mobile home\",\"holiday\",\"nomadic\",\"wilderness\",\"outdoors\"]\n  },\n  {\n    \"name\": \"card-sim\",\n    \"categories\": [\"connectivity\",\"communication\",\"multimedia\",\"devices\"],\n    \"tags\": [\"cellphone\",\"smartphone\",\"mobile\",\"network\",\"cellular\",\"service\",\"provider\",\"signal\",\"coverage\",\"disk\",\"data\",\"format\",\"storage\",\"flash\",\"digital\",\"contacts\",\"phone book\",\"contractual\",\"circuit board\",\"chip\"]\n  },\n  {\n    \"name\": \"carrot\",\n    \"categories\": [\"food-beverage\"],\n    \"tags\": [\"orange\",\"healthy\",\"nature\",\"fresh\",\"root\",\"produce\",\"organic\",\"nutrition\",\"vegetable\",\"food\",\"eat\"]\n  },\n  {\n    \"name\": \"case-lower\",\n    \"categories\": [\"text\",\"development\"],\n    \"tags\": [\"text\",\"letters\",\"characters\",\"font\",\"typography\"]\n  },\n  {\n    \"name\": \"case-sensitive\",\n    \"categories\": [\"text\"],\n    \"tags\": [\"text\",\"letters\",\"characters\",\"font\",\"typography\"]\n  },\n  {\n    \"name\": \"case-upper\",\n    \"categories\": [\"text\",\"development\"],\n    \"tags\": [\"text\",\"letters\",\"characters\",\"font\",\"typography\"]\n  },\n  {\n    \"name\": \"cassette-tape\",\n    \"categories\": [\"connectivity\",\"devices\",\"multimedia\",\"communication\",\"files\"],\n    \"tags\": [\"audio\",\"music\",\"recording\",\"play\"]\n  },\n  {\n    \"name\": \"cast\",\n    \"categories\": [\"devices\",\"connectivity\"],\n    \"tags\": [\"chromecast\",\"airplay\",\"screen\"]\n  },\n  {\n    \"name\": \"castle\",\n    \"categories\": [\"buildings\",\"gaming\",\"navigation\"],\n    \"tags\": [\"fortress\",\"stronghold\",\"palace\",\"chateau\",\"building\"]\n  },\n  {\n    \"name\": \"cat\",\n    \"categories\": [\"animals\"],\n    \"tags\": [\"animal\",\"pet\",\"kitten\",\"feline\"]\n  },\n  {\n    \"name\": \"cctv-off\",\n    \"categories\": [\"security\",\"devices\",\"communication\",\"connectivity\",\"photography\"],\n    \"tags\": [\"camera\",\"surveillance\",\"recording\",\"film\",\"videotape\",\"crime\",\"watching\"]\n  },\n  {\n    \"name\": \"cctv\",\n    \"categories\": [\"security\",\"devices\",\"communication\",\"connectivity\",\"photography\"],\n    \"tags\": [\"camera\",\"surveillance\",\"recording\",\"film\",\"videotape\",\"crime\",\"watching\"]\n  },\n  {\n    \"name\": \"chart-area\",\n    \"categories\": [\"charts\"],\n    \"tags\": [\"statistics\",\"analytics\",\"diagram\",\"graph\",\"area\"]\n  },\n  {\n    \"name\": \"chart-bar-big\",\n    \"categories\": [\"charts\"],\n    \"tags\": [\"statistics\",\"analytics\",\"diagram\",\"graph\"]\n  },\n  {\n    \"name\": \"chart-bar-decreasing\",\n    \"categories\": [\"charts\"],\n    \"tags\": [\"statistics\",\"analytics\",\"diagram\",\"graph\",\"trending down\"]\n  },\n  {\n    \"name\": \"chart-bar-increasing\",\n    \"categories\": [\"charts\"],\n    \"tags\": [\"statistics\",\"analytics\",\"diagram\",\"graph\",\"trending up\"]\n  },\n  {\n    \"name\": \"chart-bar-stacked\",\n    \"categories\": [\"charts\"],\n    \"tags\": [\"statistics\",\"analytics\",\"diagram\",\"graph\",\"multivariate\",\"categorical\",\"comparison\"]\n  },\n  {\n    \"name\": \"chart-bar\",\n    \"categories\": [\"charts\"],\n    \"tags\": [\"statistics\",\"analytics\",\"diagram\",\"graph\"]\n  },\n  {\n    \"name\": \"chart-candlestick\",\n    \"categories\": [\"charts\",\"finance\"],\n    \"tags\": [\"trading\",\"trader\",\"financial\",\"markets\",\"portfolio\",\"assets\",\"prices\",\"value\",\"valuation\",\"commodities\",\"currencies\",\"currency\",\"stocks\",\"exchange\",\"hedge fund\",\"statistics\",\"analytics\",\"diagram\",\"graph\"]\n  },\n  {\n    \"name\": \"chart-column-big\",\n    \"categories\": [\"charts\"],\n    \"tags\": [\"statistics\",\"analytics\",\"diagram\",\"graph\"]\n  },\n  {\n    \"name\": \"chart-column-decreasing\",\n    \"categories\": [\"charts\"],\n    \"tags\": [\"statistics\",\"analytics\",\"diagram\",\"graph\",\"trending down\"]\n  },\n  {\n    \"name\": \"chart-column-increasing\",\n    \"categories\": [\"charts\"],\n    \"tags\": [\"statistics\",\"analytics\",\"diagram\",\"graph\",\"trending up\"]\n  },\n  {\n    \"name\": \"chart-column-stacked\",\n    \"categories\": [\"charts\"],\n    \"tags\": [\"statistics\",\"analytics\",\"diagram\",\"graph\",\"multivariate\",\"categorical\",\"comparison\"]\n  },\n  {\n    \"name\": \"chart-column\",\n    \"categories\": [\"charts\"],\n    \"tags\": [\"statistics\",\"analytics\",\"diagram\",\"graph\"]\n  },\n  {\n    \"name\": \"chart-gantt\",\n    \"categories\": [\"charts\"],\n    \"tags\": [\"diagram\",\"graph\",\"timeline\",\"planning\"]\n  },\n  {\n    \"name\": \"chart-line\",\n    \"categories\": [\"charts\"],\n    \"tags\": [\"statistics\",\"analytics\",\"diagram\",\"graph\"]\n  },\n  {\n    \"name\": \"chart-network\",\n    \"categories\": [\"charts\"],\n    \"tags\": [\"statistics\",\"analytics\",\"diagram\",\"graph\",\"topology\",\"cluster\",\"web\",\"nodes\",\"connections\",\"edges\"]\n  },\n  {\n    \"name\": \"chart-no-axes-column-decreasing\",\n    \"categories\": [\"charts\"],\n    \"tags\": [\"statistics\",\"analytics\",\"diagram\",\"graph\",\"trending down\"]\n  },\n  {\n    \"name\": \"chart-no-axes-column-increasing\",\n    \"categories\": [\"charts\"],\n    \"tags\": [\"statistics\",\"analytics\",\"diagram\",\"graph\",\"trending up\"]\n  },\n  {\n    \"name\": \"chart-no-axes-column\",\n    \"categories\": [\"charts\"],\n    \"tags\": [\"statistics\",\"analytics\",\"diagram\",\"graph\"]\n  },\n  {\n    \"name\": \"chart-no-axes-combined\",\n    \"categories\": [\"charts\"],\n    \"tags\": [\"statistics\",\"analytics\",\"diagram\",\"graph\",\"trending up\"]\n  },\n  {\n    \"name\": \"chart-no-axes-gantt\",\n    \"categories\": [\"charts\",\"time\",\"development\",\"design\"],\n    \"tags\": [\"projects\",\"manage\",\"overview\",\"roadmap\",\"plan\",\"intentions\",\"timeline\",\"deadline\",\"date\",\"event\",\"range\",\"period\",\"productivity\",\"work\",\"agile\",\"code\",\"coding\"]\n  },\n  {\n    \"name\": \"chart-pie\",\n    \"categories\": [\"charts\",\"files\"],\n    \"tags\": [\"statistics\",\"analytics\",\"diagram\",\"presentation\"]\n  },\n  {\n    \"name\": \"chart-scatter\",\n    \"categories\": [\"charts\"],\n    \"tags\": [\"statistics\",\"analytics\",\"diagram\",\"graph\"]\n  },\n  {\n    \"name\": \"chart-spline\",\n    \"categories\": [\"charts\"],\n    \"tags\": [\"statistics\",\"analytics\",\"diagram\",\"graph\",\"curve\",\"continuous\",\"smooth\",\"polynomial\",\"quadratic\",\"function\",\"interpolation\"]\n  },\n  {\n    \"name\": \"check-check\",\n    \"categories\": [\"notifications\"],\n    \"tags\": [\"done\",\"received\",\"double\",\"todo\",\"tick\",\"complete\",\"task\"]\n  },\n  {\n    \"name\": \"check-line\",\n    \"categories\": [\"notifications\"],\n    \"tags\": [\"done\",\"todo\",\"tick\",\"complete\",\"task\"]\n  },\n  {\n    \"name\": \"check\",\n    \"categories\": [\"notifications\"],\n    \"tags\": [\"done\",\"todo\",\"tick\",\"complete\",\"task\"]\n  },\n  {\n    \"name\": \"chef-hat\",\n    \"categories\": [\"food-beverage\"],\n    \"tags\": [\"cooking\",\"food\",\"kitchen\",\"restaurant\"]\n  },\n  {\n    \"name\": \"cherry\",\n    \"categories\": [\"food-beverage\"],\n    \"tags\": [\"fruit\",\"food\"]\n  },\n  {\n    \"name\": \"chess-bishop\",\n    \"categories\": [\"gaming\",\"emoji\"],\n    \"tags\": [\"mitre\",\"miter\",\"piece\",\"board game\",\"religion\"]\n  },\n  {\n    \"name\": \"chess-king\",\n    \"categories\": [\"gaming\",\"emoji\"],\n    \"tags\": [\"ruler\",\"crown\",\"piece\",\"board game\",\"stalemate\"]\n  },\n  {\n    \"name\": \"chess-knight\",\n    \"categories\": [\"gaming\",\"emoji\"],\n    \"tags\": [\"piece\",\"horse\",\"board game\"]\n  },\n  {\n    \"name\": \"chess-pawn\",\n    \"categories\": [\"gaming\",\"emoji\"],\n    \"tags\": [\"piece\",\"board game\"]\n  },\n  {\n    \"name\": \"chess-queen\",\n    \"categories\": [\"gaming\",\"emoji\"],\n    \"tags\": [\"ruler\",\"crown\",\"piece\",\"board game\",\"stalemate\"]\n  },\n  {\n    \"name\": \"chess-rook\",\n    \"categories\": [\"gaming\",\"emoji\"],\n    \"tags\": [\"castle\",\"piece\",\"board game\"]\n  },\n  {\n    \"name\": \"chevron-down\",\n    \"categories\": [\"arrows\",\"gaming\"],\n    \"tags\": [\"backwards\",\"reverse\",\"slow\",\"dropdown\"]\n  },\n  {\n    \"name\": \"chevron-first\",\n    \"categories\": [\"arrows\",\"multimedia\"],\n    \"tags\": [\"previous\",\"music\"]\n  },\n  {\n    \"name\": \"chevron-last\",\n    \"categories\": [\"arrows\",\"multimedia\"],\n    \"tags\": [\"skip\",\"next\",\"music\"]\n  },\n  {\n    \"name\": \"chevron-left\",\n    \"categories\": [\"arrows\"],\n    \"tags\": [\"back\",\"previous\",\"less than\",\"fewer\",\"menu\",\"<\"]\n  },\n  {\n    \"name\": \"chevron-right\",\n    \"categories\": [\"arrows\",\"math\",\"development\"],\n    \"tags\": [\"forward\",\"next\",\"more than\",\"greater\",\"menu\",\"code\",\"coding\",\"command line\",\"terminal\",\"prompt\",\"shell\",\">\"]\n  },\n  {\n    \"name\": \"chevron-up\",\n    \"categories\": [\"arrows\",\"math\",\"gaming\"],\n    \"tags\": [\"caret\",\"keyboard\",\"mac\",\"control\",\"ctrl\",\"superscript\",\"exponential\",\"power\",\"ahead\",\"fast\",\"^\",\"dropdown\"]\n  },\n  {\n    \"name\": \"chevrons-down-up\",\n    \"categories\": [\"arrows\"],\n    \"tags\": [\"collapse\",\"fold\",\"vertical\"]\n  },\n  {\n    \"name\": \"chevrons-down\",\n    \"categories\": [\"arrows\",\"gaming\"],\n    \"tags\": [\"backwards\",\"reverse\",\"slower\"]\n  },\n  {\n    \"name\": \"chevrons-left-right-ellipsis\",\n    \"categories\": [\"communication\",\"devices\",\"multimedia\",\"gaming\"],\n    \"tags\": [\"internet\",\"network\",\"connection\",\"cable\",\"lan\",\"port\",\"router\",\"switch\",\"hub\",\"modem\",\"web\",\"online\",\"networking\",\"communication\",\"socket\",\"plug\",\"slot\",\"controller\",\"connector\",\"interface\",\"console\",\"signal\",\"data\",\"input\",\"output\"]\n  },\n  {\n    \"name\": \"chevrons-left-right\",\n    \"categories\": [\"arrows\"],\n    \"tags\": [\"expand\",\"horizontal\",\"unfold\"]\n  },\n  {\n    \"name\": \"chevrons-left\",\n    \"categories\": [\"arrows\",\"gaming\"],\n    \"tags\": [\"turn\",\"corner\"]\n  },\n  {\n    \"name\": \"chevrons-right-left\",\n    \"categories\": [\"arrows\"],\n    \"tags\": [\"collapse\",\"fold\",\"horizontal\"]\n  },\n  {\n    \"name\": \"chevrons-right\",\n    \"categories\": [\"arrows\",\"gaming\"],\n    \"tags\": [\"turn\",\"corner\"]\n  },\n  {\n    \"name\": \"chevrons-up-down\",\n    \"categories\": [\"arrows\"],\n    \"tags\": [\"expand\",\"unfold\",\"vertical\"]\n  },\n  {\n    \"name\": \"chevrons-up\",\n    \"categories\": [\"arrows\",\"gaming\"],\n    \"tags\": [\"forward\",\"ahead\",\"faster\",\"speed\",\"boost\"]\n  },\n  {\n    \"name\": \"church\",\n    \"categories\": [\"buildings\",\"navigation\"],\n    \"tags\": [\"temple\",\"building\"]\n  },\n  {\n    \"name\": \"cigarette-off\",\n    \"categories\": [\"travel\",\"transportation\",\"medical\"],\n    \"tags\": [\"smoking\",\"no-smoking\"]\n  },\n  {\n    \"name\": \"cigarette\",\n    \"categories\": [\"travel\",\"transportation\",\"medical\"],\n    \"tags\": [\"smoking\"]\n  },\n  {\n    \"name\": \"circle-alert\",\n    \"categories\": [\"notifications\"],\n    \"tags\": [\"warning\",\"alert\",\"danger\",\"exclamation mark\"]\n  },\n  {\n    \"name\": \"circle-arrow-down\",\n    \"categories\": [\"arrows\",\"gaming\"],\n    \"tags\": [\"backwards\",\"reverse\",\"direction\",\"south\",\"sign\",\"button\"]\n  },\n  {\n    \"name\": \"circle-arrow-left\",\n    \"categories\": [\"arrows\",\"gaming\"],\n    \"tags\": [\"previous\",\"back\",\"direction\",\"west\",\"sign\",\"turn\",\"button\",\"<-\"]\n  },\n  {\n    \"name\": \"circle-arrow-out-down-left\",\n    \"categories\": [\"arrows\"],\n    \"tags\": [\"outwards\",\"direction\",\"south-west\",\"diagonal\"]\n  },\n  {\n    \"name\": \"circle-arrow-out-down-right\",\n    \"categories\": [\"arrows\"],\n    \"tags\": [\"outwards\",\"direction\",\"south-east\",\"diagonal\"]\n  },\n  {\n    \"name\": \"circle-arrow-out-up-left\",\n    \"categories\": [\"arrows\",\"development\"],\n    \"tags\": [\"outwards\",\"direction\",\"north-west\",\"diagonal\",\"keyboard\",\"button\",\"escape\"]\n  },\n  {\n    \"name\": \"circle-arrow-out-up-right\",\n    \"categories\": [\"arrows\"],\n    \"tags\": [\"outwards\",\"direction\",\"north-east\",\"diagonal\"]\n  },\n  {\n    \"name\": \"circle-arrow-right\",\n    \"categories\": [\"arrows\",\"gaming\"],\n    \"tags\": [\"next\",\"forward\",\"direction\",\"east\",\"sign\",\"turn\",\"button\",\"->\"]\n  },\n  {\n    \"name\": \"circle-arrow-up\",\n    \"categories\": [\"arrows\",\"gaming\"],\n    \"tags\": [\"forward\",\"direction\",\"north\",\"sign\",\"button\"]\n  },\n  {\n    \"name\": \"circle-check-big\",\n    \"categories\": [\"notifications\"],\n    \"tags\": [\"done\",\"todo\",\"tick\",\"complete\",\"task\"]\n  },\n  {\n    \"name\": \"circle-check\",\n    \"categories\": [\"notifications\"],\n    \"tags\": [\"done\",\"todo\",\"tick\",\"complete\",\"task\"]\n  },\n  {\n    \"name\": \"circle-chevron-down\",\n    \"categories\": [\"arrows\"],\n    \"tags\": [\"back\",\"menu\"]\n  },\n  {\n    \"name\": \"circle-chevron-left\",\n    \"categories\": [\"arrows\"],\n    \"tags\": [\"back\",\"previous\",\"less than\",\"fewer\",\"menu\",\"<\"]\n  },\n  {\n    \"name\": \"circle-chevron-right\",\n    \"categories\": [\"arrows\"],\n    \"tags\": [\"back\",\"more than\",\"greater\",\"menu\",\">\"]\n  },\n  {\n    \"name\": \"circle-chevron-up\",\n    \"categories\": [\"arrows\"],\n    \"tags\": [\"caret\",\"ahead\",\"menu\",\"^\"]\n  },\n  {\n    \"name\": \"circle-dashed\",\n    \"categories\": [\"development\",\"shapes\"],\n    \"tags\": [\"pending\",\"dot\",\"progress\",\"issue\",\"draft\",\"code\",\"coding\",\"version control\"]\n  },\n  {\n    \"name\": \"circle-divide\",\n    \"categories\": [\"math\"],\n    \"tags\": [\"calculate\",\"math\",\"÷\",\"/\"]\n  },\n  {\n    \"name\": \"circle-dollar-sign\",\n    \"categories\": [\"finance\"],\n    \"tags\": [\"monetization\",\"marketing\",\"currency\",\"money\",\"payment\"]\n  },\n  {\n    \"name\": \"circle-dot-dashed\",\n    \"categories\": [\"development\",\"shapes\"],\n    \"tags\": [\"pending\",\"dot\",\"progress\",\"issue\",\"draft\",\"code\",\"coding\",\"version control\"]\n  },\n  {\n    \"name\": \"circle-dot\",\n    \"categories\": [\"development\",\"shapes\"],\n    \"tags\": [\"pending\",\"dot\",\"progress\",\"issue\",\"code\",\"coding\",\"version control\",\"choices\",\"multiple choice\",\"choose\"]\n  },\n  {\n    \"name\": \"circle-ellipsis\",\n    \"categories\": [\"layout\",\"development\"],\n    \"tags\": [\"ellipsis\",\"et cetera\",\"etc\",\"loader\",\"loading\",\"progress\",\"pending\",\"throbber\",\"menu\",\"options\",\"operator\",\"code\",\"spread\",\"rest\",\"more\",\"further\",\"extra\",\"overflow\",\"dots\",\"…\",\"...\"]\n  },\n  {\n    \"name\": \"circle-equal\",\n    \"categories\": [\"math\"],\n    \"tags\": [\"calculate\",\"shape\",\"=\"]\n  },\n  {\n    \"name\": \"circle-euro\",\n    \"categories\": [\"shopping\",\"finance\"],\n    \"tags\": [\"symbol\",\"economy\",\"banking\",\"europe\",\"€\",\"euro\",\"currency\",\"money\",\"payment\",\"coin\",\"finance\",\"financial\",\"exchange\"]\n  },\n  {\n    \"name\": \"circle-fading-arrow-up\",\n    \"categories\": [\"arrows\",\"development\"],\n    \"tags\": [\"north\",\"up\",\"upgrade\",\"improve\",\"circle\",\"button\"]\n  },\n  {\n    \"name\": \"circle-fading-plus\",\n    \"categories\": [\"communication\",\"social\"],\n    \"tags\": [\"stories\",\"social media\",\"instagram\",\"facebook\",\"meta\",\"snapchat\",\"sharing\",\"content\"]\n  },\n  {\n    \"name\": \"circle-gauge\",\n    \"categories\": [\"transportation\",\"sports\",\"science\"],\n    \"tags\": [\"dashboard\",\"dial\",\"meter\",\"speed\",\"pressure\",\"measure\",\"level\"]\n  },\n  {\n    \"name\": \"circle-minus\",\n    \"categories\": [\"math\"],\n    \"tags\": [\"subtract\",\"remove\",\"decrease\",\"reduce\",\"calculate\",\"line\",\"operator\",\"code\",\"coding\",\"minimum\",\"downgrade\",\"-\"]\n  },\n  {\n    \"name\": \"circle-off\",\n    \"categories\": [\"shapes\"],\n    \"tags\": [\"diameter\",\"zero\",\"Ø\",\"nothing\",\"null\",\"void\",\"cancel\",\"ban\",\"no\",\"stop\",\"forbidden\",\"prohibited\",\"error\",\"incorrect\",\"mistake\",\"wrong\",\"failure\"]\n  },\n  {\n    \"name\": \"circle-parking-off\",\n    \"categories\": [\"transportation\",\"navigation\"],\n    \"tags\": [\"parking lot\",\"car park\",\"no parking\"]\n  },\n  {\n    \"name\": \"circle-parking\",\n    \"categories\": [\"transportation\",\"navigation\"],\n    \"tags\": [\"parking lot\",\"car park\"]\n  },\n  {\n    \"name\": \"circle-pause\",\n    \"categories\": [\"multimedia\"],\n    \"tags\": [\"music\",\"audio\",\"stop\"]\n  },\n  {\n    \"name\": \"circle-percent\",\n    \"categories\": [\"social\",\"finance\",\"shopping\",\"math\"],\n    \"tags\": [\"verified\",\"unverified\",\"sale\",\"discount\",\"offer\",\"marketing\",\"sticker\",\"price tag\"]\n  },\n  {\n    \"name\": \"circle-pile\",\n    \"categories\": [\"shapes\"],\n    \"tags\": [\"off\",\"zero\",\"record\",\"shape\",\"circle-pile\",\"circle\",\"pile\",\"stack\",\"layer\",\"structure\",\"form\",\"group\",\"collection\",\"stock\",\"inventory\",\"materials\",\"warehouse\"]\n  },\n  {\n    \"name\": \"circle-play\",\n    \"categories\": [\"multimedia\"],\n    \"tags\": [\"music\",\"start\",\"run\"]\n  },\n  {\n    \"name\": \"circle-plus\",\n    \"categories\": [\"math\",\"development\",\"cursors\",\"gaming\"],\n    \"tags\": [\"add\",\"new\",\"increase\",\"increment\",\"positive\",\"calculate\",\"crosshair\",\"aim\",\"target\",\"scope\",\"sight\",\"reticule\",\"maximum\",\"upgrade\",\"extra\",\"operator\",\"join\",\"concatenate\",\"code\",\"coding\",\"+\"]\n  },\n  {\n    \"name\": \"circle-pound-sterling\",\n    \"categories\": [\"finance\"],\n    \"tags\": [\"monetization\",\"coin\",\"penny\",\"marketing\",\"currency\",\"money\",\"payment\",\"british\",\"gbp\",\"£\"]\n  },\n  {\n    \"name\": \"circle-power\",\n    \"categories\": [\"connectivity\"],\n    \"tags\": [\"on\",\"off\",\"device\",\"switch\",\"toggle\",\"binary\",\"boolean\",\"reboot\",\"restart\",\"button\",\"keyboard\",\"troubleshoot\"]\n  },\n  {\n    \"name\": \"circle-question-mark\",\n    \"categories\": [\"accessibility\",\"text\",\"notifications\"],\n    \"tags\": [\"question mark\"]\n  },\n  {\n    \"name\": \"circle-slash-2\",\n    \"categories\": [\"shapes\",\"math\",\"development\"],\n    \"tags\": [\"diameter\",\"zero\",\"ø\",\"nothing\",\"null\",\"void\",\"ban\",\"math\",\"divide\",\"division\",\"half\",\"split\",\"/\",\"average\",\"avg\",\"mean\",\"median\",\"normal\"]\n  },\n  {\n    \"name\": \"circle-slash\",\n    \"categories\": [\"development\",\"math\"],\n    \"tags\": [\"diameter\",\"zero\",\"Ø\",\"nothing\",\"null\",\"void\",\"cancel\",\"ban\",\"no\",\"stop\",\"forbidden\",\"prohibited\",\"error\",\"incorrect\",\"mistake\",\"wrong\",\"failure\",\"divide\",\"division\",\"or\",\"/\"]\n  },\n  {\n    \"name\": \"circle-small\",\n    \"categories\": [\"shapes\",\"medical\"],\n    \"tags\": [\"shape\",\"bullet\",\"gender\",\"genderless\"]\n  },\n  {\n    \"name\": \"circle-star\",\n    \"categories\": [\"sports\",\"gaming\"],\n    \"tags\": [\"badge\",\"medal\",\"honour\",\"decoration\",\"order\",\"pin\",\"laurel\",\"trophy\",\"medallion\",\"insignia\",\"bronze\",\"silver\",\"gold\"]\n  },\n  {\n    \"name\": \"circle-stop\",\n    \"categories\": [\"multimedia\"],\n    \"tags\": [\"media\",\"music\"]\n  },\n  {\n    \"name\": \"circle-user-round\",\n    \"categories\": [\"account\"],\n    \"tags\": [\"person\",\"account\",\"contact\"]\n  },\n  {\n    \"name\": \"circle-user\",\n    \"categories\": [\"account\"],\n    \"tags\": [\"person\",\"account\",\"contact\"]\n  },\n  {\n    \"name\": \"circle-x\",\n    \"categories\": [\"math\",\"development\"],\n    \"tags\": [\"cancel\",\"close\",\"delete\",\"remove\",\"times\",\"clear\",\"error\",\"incorrect\",\"wrong\",\"mistake\",\"failure\",\"linter\",\"multiply\",\"multiplication\"]\n  },\n  {\n    \"name\": \"circle\",\n    \"categories\": [\"shapes\"],\n    \"tags\": [\"off\",\"zero\",\"record\",\"shape\"]\n  },\n  {\n    \"name\": \"circuit-board\",\n    \"categories\": [\"science\",\"development\"],\n    \"tags\": [\"computing\",\"electricity\",\"electronics\"]\n  },\n  {\n    \"name\": \"citrus\",\n    \"categories\": [\"food-beverage\"],\n    \"tags\": [\"lemon\",\"orange\",\"grapefruit\",\"fruit\"]\n  },\n  {\n    \"name\": \"clapperboard\",\n    \"categories\": [\"multimedia\"],\n    \"tags\": [\"movie\",\"film\",\"video\",\"camera\",\"cinema\",\"cut\",\"action\",\"television\",\"tv\",\"show\",\"entertainment\"]\n  },\n  {\n    \"name\": \"clipboard-check\",\n    \"categories\": [\"text\"],\n    \"tags\": [\"copied\",\"pasted\",\"done\",\"todo\",\"tick\",\"complete\",\"task\"]\n  },\n  {\n    \"name\": \"clipboard-clock\",\n    \"categories\": [\"time\",\"text\"],\n    \"tags\": [\"copy\",\"paste\",\"history\",\"log\",\"clock\",\"time\",\"watch\",\"alarm\",\"hour\",\"minute\",\"reminder\",\"scheduled\",\"deadline\",\"pending\",\"time tracking\",\"timesheets\",\"appointment\",\"logbook\"]\n  },\n  {\n    \"name\": \"clipboard-copy\",\n    \"categories\": [\"text\",\"arrows\"],\n    \"tags\": [\"copy\",\"paste\"]\n  },\n  {\n    \"name\": \"clipboard-list\",\n    \"categories\": [\"text\"],\n    \"tags\": [\"copy\",\"paste\",\"tasks\"]\n  },\n  {\n    \"name\": \"clipboard-minus\",\n    \"categories\": [\"text\",\"medical\"],\n    \"tags\": [\"copy\",\"delete\",\"remove\",\"erase\",\"document\",\"medical\",\"report\",\"doctor\"]\n  },\n  {\n    \"name\": \"clipboard-paste\",\n    \"categories\": [\"text\",\"arrows\"],\n    \"tags\": [\"copy\",\"paste\"]\n  },\n  {\n    \"name\": \"clipboard-pen-line\",\n    \"categories\": [\"text\"],\n    \"tags\": [\"paste\"]\n  },\n  {\n    \"name\": \"clipboard-pen\",\n    \"categories\": [\"text\"],\n    \"tags\": [\"paste\",\"signature\"]\n  },\n  {\n    \"name\": \"clipboard-plus\",\n    \"categories\": [\"text\",\"medical\"],\n    \"tags\": [\"copy\",\"paste\",\"add\",\"create\",\"new\",\"document\",\"medical\",\"report\",\"doctor\"]\n  },\n  {\n    \"name\": \"clipboard-type\",\n    \"categories\": [\"text\"],\n    \"tags\": [\"paste\",\"format\",\"text\"]\n  },\n  {\n    \"name\": \"clipboard-x\",\n    \"categories\": [\"text\"],\n    \"tags\": [\"copy\",\"paste\",\"discard\",\"remove\"]\n  },\n  {\n    \"name\": \"clipboard\",\n    \"categories\": [\"text\"],\n    \"tags\": [\"copy\",\"paste\"]\n  },\n  {\n    \"name\": \"clock-1\",\n    \"categories\": [\"time\"],\n    \"tags\": [\"time\",\"watch\",\"alarm\"]\n  },\n  {\n    \"name\": \"clock-10\",\n    \"categories\": [\"time\"],\n    \"tags\": [\"time\",\"watch\",\"alarm\"]\n  },\n  {\n    \"name\": \"clock-11\",\n    \"categories\": [\"time\"],\n    \"tags\": [\"time\",\"watch\",\"alarm\"]\n  },\n  {\n    \"name\": \"clock-12\",\n    \"categories\": [\"time\"],\n    \"tags\": [\"time\",\"watch\",\"alarm\",\"noon\",\"midnight\"]\n  },\n  {\n    \"name\": \"clock-2\",\n    \"categories\": [\"time\"],\n    \"tags\": [\"time\",\"watch\",\"alarm\"]\n  },\n  {\n    \"name\": \"clock-3\",\n    \"categories\": [\"time\"],\n    \"tags\": [\"time\",\"watch\",\"alarm\"]\n  },\n  {\n    \"name\": \"clock-4\",\n    \"categories\": [\"time\"],\n    \"tags\": [\"time\",\"watch\",\"alarm\"]\n  },\n  {\n    \"name\": \"clock-5\",\n    \"categories\": [\"time\"],\n    \"tags\": [\"time\",\"watch\",\"alarm\"]\n  },\n  {\n    \"name\": \"clock-6\",\n    \"categories\": [\"time\"],\n    \"tags\": [\"time\",\"watch\",\"alarm\"]\n  },\n  {\n    \"name\": \"clock-7\",\n    \"categories\": [\"time\"],\n    \"tags\": [\"time\",\"watch\",\"alarm\"]\n  },\n  {\n    \"name\": \"clock-8\",\n    \"categories\": [\"time\"],\n    \"tags\": [\"time\",\"watch\",\"alarm\"]\n  },\n  {\n    \"name\": \"clock-9\",\n    \"categories\": [\"time\"],\n    \"tags\": [\"time\",\"watch\",\"alarm\"]\n  },\n  {\n    \"name\": \"clock-alert\",\n    \"categories\": [\"time\"],\n    \"tags\": [\"time\",\"watch\",\"alarm\",\"warning\",\"wrong\"]\n  },\n  {\n    \"name\": \"clock-arrow-down\",\n    \"categories\": [\"time\"],\n    \"tags\": [\"time\",\"watch\",\"alarm\",\"sort\",\"order\",\"ascending\",\"descending\",\"increasing\",\"decreasing\",\"rising\",\"falling\"]\n  },\n  {\n    \"name\": \"clock-arrow-left\",\n    \"categories\": [\"time\"],\n    \"tags\": [\"time\",\"watch\",\"alarm\",\"assign\",\"range\"]\n  },\n  {\n    \"name\": \"clock-arrow-right\",\n    \"categories\": [\"time\",\"people\",\"arrows\"],\n    \"tags\": [\"time\",\"watch\",\"alarm\",\"range\",\"unassign\"]\n  },\n  {\n    \"name\": \"clock-arrow-up\",\n    \"categories\": [\"time\"],\n    \"tags\": [\"time\",\"watch\",\"alarm\",\"sort\",\"order\",\"ascending\",\"descending\",\"increasing\",\"decreasing\",\"rising\",\"falling\"]\n  },\n  {\n    \"name\": \"clock-check\",\n    \"categories\": [\"time\"],\n    \"tags\": [\"time\",\"watch\",\"alarm\"]\n  },\n  {\n    \"name\": \"clock-fading\",\n    \"categories\": [\"time\"],\n    \"tags\": [\"time\",\"watch\",\"alarm\"]\n  },\n  {\n    \"name\": \"clock-plus\",\n    \"categories\": [\"time\"],\n    \"tags\": [\"time\",\"watch\",\"alarm\",\"add\",\"create\",\"new\"]\n  },\n  {\n    \"name\": \"clock\",\n    \"categories\": [\"time\"],\n    \"tags\": [\"time\",\"watch\",\"alarm\"]\n  },\n  {\n    \"name\": \"closed-caption\",\n    \"categories\": [\"accessibility\",\"multimedia\"],\n    \"tags\": [\"tv\",\"movie\",\"video\",\"closed captions\",\"subtitles\",\"subhead\",\"transcription\",\"transcribe\",\"dialogue\",\"accessibility\"]\n  },\n  {\n    \"name\": \"cloud-alert\",\n    \"categories\": [\"development\"],\n    \"tags\": [\"weather\",\"danger\",\"warning\",\"alert\",\"error\",\"sync\",\"network\",\"exclamation\"]\n  },\n  {\n    \"name\": \"cloud-backup\",\n    \"categories\": [\"arrows\",\"files\"],\n    \"tags\": [\"storage\",\"memory\",\"bytes\",\"servers\",\"backup\",\"timemachine\",\"rotate\",\"synchronize\",\"synchronise\",\"refresh\",\"reconnect\",\"transfer\",\"data\",\"security\",\"upload\",\"save\",\"remote\",\"safety\"]\n  },\n  {\n    \"name\": \"cloud-check\",\n    \"categories\": [\"development\"],\n    \"tags\": [\"sync\",\"network\",\"success\",\"done\",\"completed\",\"saved\",\"persisted\"]\n  },\n  {\n    \"name\": \"cloud-cog\",\n    \"categories\": [\"development\"],\n    \"tags\": [\"computing\",\"ai\",\"cluster\",\"network\"]\n  },\n  {\n    \"name\": \"cloud-download\",\n    \"categories\": [\"arrows\",\"files\"],\n    \"tags\": [\"import\"]\n  },\n  {\n    \"name\": \"cloud-drizzle\",\n    \"categories\": [\"weather\"],\n    \"tags\": [\"weather\",\"shower\"]\n  },\n  {\n    \"name\": \"cloud-fog\",\n    \"categories\": [\"weather\"],\n    \"tags\": [\"weather\",\"mist\"]\n  },\n  {\n    \"name\": \"cloud-hail\",\n    \"categories\": [\"weather\"],\n    \"tags\": [\"weather\",\"rainfall\"]\n  },\n  {\n    \"name\": \"cloud-lightning\",\n    \"categories\": [\"weather\"],\n    \"tags\": [\"weather\",\"bolt\"]\n  },\n  {\n    \"name\": \"cloud-moon-rain\",\n    \"categories\": [\"weather\"],\n    \"tags\": [\"weather\",\"partly\",\"night\",\"rainfall\"]\n  },\n  {\n    \"name\": \"cloud-moon\",\n    \"categories\": [\"weather\"],\n    \"tags\": [\"weather\",\"night\"]\n  },\n  {\n    \"name\": \"cloud-off\",\n    \"categories\": [\"connectivity\",\"weather\"],\n    \"tags\": [\"disconnect\"]\n  },\n  {\n    \"name\": \"cloud-rain-wind\",\n    \"categories\": [\"weather\"],\n    \"tags\": [\"weather\",\"rainfall\"]\n  },\n  {\n    \"name\": \"cloud-rain\",\n    \"categories\": [\"weather\"],\n    \"tags\": [\"weather\",\"rainfall\"]\n  },\n  {\n    \"name\": \"cloud-snow\",\n    \"categories\": [\"weather\"],\n    \"tags\": [\"weather\",\"blizzard\"]\n  },\n  {\n    \"name\": \"cloud-sun-rain\",\n    \"categories\": [\"weather\"],\n    \"tags\": [\"weather\",\"partly\",\"rainfall\"]\n  },\n  {\n    \"name\": \"cloud-sun\",\n    \"categories\": [\"weather\"],\n    \"tags\": [\"weather\",\"partly\"]\n  },\n  {\n    \"name\": \"cloud-sync\",\n    \"categories\": [\"arrows\",\"files\"],\n    \"tags\": [\"synchronize\",\"synchronise\",\"refresh\",\"reconnect\",\"transfer\",\"backup\",\"storage\",\"upload\",\"download\",\"connection\",\"network\",\"data\"]\n  },\n  {\n    \"name\": \"cloud-upload\",\n    \"categories\": [\"arrows\",\"files\"],\n    \"tags\": [\"file\"]\n  },\n  {\n    \"name\": \"cloud\",\n    \"categories\": [\"weather\"],\n    \"tags\": [\"weather\"]\n  },\n  {\n    \"name\": \"cloudy\",\n    \"categories\": [\"weather\"],\n    \"tags\": [\"weather\",\"clouds\"]\n  },\n  {\n    \"name\": \"clover\",\n    \"categories\": [\"gaming\"],\n    \"tags\": [\"leaf\",\"luck\",\"plant\"]\n  },\n  {\n    \"name\": \"club\",\n    \"categories\": [\"shapes\",\"gaming\"],\n    \"tags\": [\"shape\",\"suit\",\"playing\",\"cards\"]\n  },\n  {\n    \"name\": \"code-xml\",\n    \"categories\": [\"text\",\"development\"],\n    \"tags\": [\"source\",\"programming\",\"html\",\"xml\"]\n  },\n  {\n    \"name\": \"code\",\n    \"categories\": [\"text\",\"development\"],\n    \"tags\": [\"source\",\"programming\",\"html\",\"xml\"]\n  },\n  {\n    \"name\": \"coffee\",\n    \"categories\": [\"food-beverage\"],\n    \"tags\": [\"drink\",\"cup\",\"mug\",\"tea\",\"cafe\",\"hot\",\"beverage\"]\n  },\n  {\n    \"name\": \"cog\",\n    \"categories\": [\"account\"],\n    \"tags\": [\"computing\",\"settings\",\"cog\",\"edit\",\"gear\",\"preferences\",\"controls\",\"configuration\",\"fixed\",\"build\",\"construction\",\"parts\"]\n  },\n  {\n    \"name\": \"coins\",\n    \"categories\": [\"gaming\"],\n    \"tags\": [\"money\",\"cash\",\"finance\",\"gamble\"]\n  },\n  {\n    \"name\": \"columns-2\",\n    \"categories\": [\"layout\",\"design\",\"text\"],\n    \"tags\": [\"lines\",\"list\",\"queue\",\"preview\",\"panel\",\"parallel\",\"series\",\"split\",\"vertical\",\"horizontal\",\"half\",\"center\",\"middle\",\"even\",\"sidebar\",\"drawer\",\"gutter\",\"fold\",\"reflow\",\"typography\",\"pagination\",\"pages\"]\n  },\n  {\n    \"name\": \"columns-3-cog\",\n    \"categories\": [\"layout\",\"design\"],\n    \"tags\": [\"columns\",\"settings\",\"customize\",\"table\",\"grid\",\"adjust\",\"configuration\",\"panel\",\"layout\"]\n  },\n  {\n    \"name\": \"columns-3\",\n    \"categories\": [\"layout\",\"design\",\"text\"],\n    \"tags\": [\"lines\",\"list\",\"queue\",\"preview\",\"parallel\",\"series\",\"split\",\"vertical\",\"horizontal\",\"thirds\",\"triple\",\"center\",\"middle\",\"alignment\",\"even\",\"sidebars\",\"drawers\",\"gutters\",\"fold\",\"reflow\",\"typography\",\"pagination\",\"pages\"]\n  },\n  {\n    \"name\": \"columns-4\",\n    \"categories\": [\"layout\",\"design\",\"text\",\"security\"],\n    \"tags\": [\"lines\",\"list\",\"queue\",\"preview\",\"parallel\",\"series\",\"split\",\"vertical\",\"horizontal\",\"thirds\",\"triple\",\"center\",\"middle\",\"alignment\",\"even\",\"sidebars\",\"drawers\",\"gutters\",\"fold\",\"reflow\",\"typography\",\"pagination\",\"pages\",\"prison\",\"jail\",\"bars\",\"sentence\",\"police\",\"cops\",\"cell\",\"crime\",\"criminal\",\"justice\",\"law\",\"enforcement\",\"grill\"]\n  },\n  {\n    \"name\": \"combine\",\n    \"categories\": [\"development\",\"files\"],\n    \"tags\": [\"cubes\",\"packages\",\"parts\",\"units\",\"collection\",\"cluster\",\"combine\",\"gather\",\"merge\"]\n  },\n  {\n    \"name\": \"command\",\n    \"categories\": [\"development\"],\n    \"tags\": [\"keyboard\",\"key\",\"mac\",\"cmd\",\"button\"]\n  },\n  {\n    \"name\": \"compass\",\n    \"categories\": [\"navigation\",\"travel\"],\n    \"tags\": [\"direction\",\"north\",\"east\",\"south\",\"west\",\"safari\",\"browser\"]\n  },\n  {\n    \"name\": \"component\",\n    \"categories\": [\"design\",\"development\"],\n    \"tags\": [\"design\",\"element\",\"group\",\"module\",\"part\",\"symbol\"]\n  },\n  {\n    \"name\": \"computer\",\n    \"categories\": [\"devices\",\"development\",\"gaming\"],\n    \"tags\": [\"pc\",\"chassis\",\"codespaces\",\"github\"]\n  },\n  {\n    \"name\": \"concierge-bell\",\n    \"categories\": [\"travel\"],\n    \"tags\": [\"reception\",\"bell\",\"porter\"]\n  },\n  {\n    \"name\": \"cone\",\n    \"categories\": [\"shapes\",\"math\"],\n    \"tags\": [\"conical\",\"triangle\",\"triangular\",\"geometry\",\"filter\",\"funnel\",\"hopper\",\"spotlight\",\"searchlight\"]\n  },\n  {\n    \"name\": \"construction\",\n    \"categories\": [\"development\"],\n    \"tags\": [\"roadwork\",\"maintenance\",\"blockade\",\"barricade\"]\n  },\n  {\n    \"name\": \"contact-round\",\n    \"categories\": [\"account\",\"connectivity\",\"communication\",\"social\"],\n    \"tags\": [\"user\",\"person\",\"family\",\"friend\",\"acquaintance\",\"listing\",\"networking\"]\n  },\n  {\n    \"name\": \"contact\",\n    \"categories\": [\"account\",\"connectivity\",\"communication\",\"social\"],\n    \"tags\": [\"user\",\"person\",\"family\",\"friend\",\"acquaintance\",\"listing\",\"networking\"]\n  },\n  {\n    \"name\": \"container\",\n    \"categories\": [\"development\",\"transportation\",\"mail\"],\n    \"tags\": [\"storage\",\"shipping\",\"freight\",\"supply chain\",\"docker\",\"environment\",\"devops\",\"code\",\"coding\"]\n  },\n  {\n    \"name\": \"contrast\",\n    \"categories\": [\"photography\",\"accessibility\",\"design\"],\n    \"tags\": [\"display\",\"accessibility\"]\n  },\n  {\n    \"name\": \"cookie\",\n    \"categories\": [\"account\",\"food-beverage\"],\n    \"tags\": [\"biscuit\",\"privacy\",\"legal\",\"food\"]\n  },\n  {\n    \"name\": \"cooking-pot\",\n    \"categories\": [\"food-beverage\",\"home\"],\n    \"tags\": [\"pod\",\"cooking\",\"recipe\",\"food\",\"kitchen\",\"chef\",\"restaurant\",\"dinner\",\"lunch\",\"breakfast\",\"meal\",\"eat\"]\n  },\n  {\n    \"name\": \"copy-check\",\n    \"categories\": [\"text\",\"notifications\"],\n    \"tags\": [\"clone\",\"duplicate\",\"done\",\"multiple\"]\n  },\n  {\n    \"name\": \"copy-minus\",\n    \"categories\": [\"text\",\"math\"],\n    \"tags\": [\"clone\",\"duplicate\",\"remove\",\"delete\",\"collapse\",\"subtract\",\"multiple\",\"-\"]\n  },\n  {\n    \"name\": \"copy-plus\",\n    \"categories\": [\"text\",\"math\"],\n    \"tags\": [\"clone\",\"duplicate\",\"add\",\"multiple\",\"expand\",\"+\"]\n  },\n  {\n    \"name\": \"copy-slash\",\n    \"categories\": [\"text\",\"development\",\"math\"],\n    \"tags\": [\"clone\",\"duplicate\",\"cancel\",\"ban\",\"no\",\"stop\",\"forbidden\",\"prohibited\",\"error\",\"multiple\",\"divide\",\"division\",\"split\",\"or\",\"/\"]\n  },\n  {\n    \"name\": \"copy-x\",\n    \"categories\": [\"notifications\",\"math\"],\n    \"tags\": [\"cancel\",\"close\",\"delete\",\"remove\",\"clear\",\"multiple\",\"multiply\",\"multiplication\",\"times\"]\n  },\n  {\n    \"name\": \"copy\",\n    \"categories\": [\"text\"],\n    \"tags\": [\"clone\",\"duplicate\",\"multiple\"]\n  },\n  {\n    \"name\": \"copyleft\",\n    \"categories\": [\"text\"],\n    \"tags\": [\"licence\"]\n  },\n  {\n    \"name\": \"copyright\",\n    \"categories\": [\"text\"],\n    \"tags\": [\"licence\",\"license\"]\n  },\n  {\n    \"name\": \"corner-down-left\",\n    \"categories\": [\"arrows\"],\n    \"tags\": [\"arrow\",\"return\"]\n  },\n  {\n    \"name\": \"corner-down-right\",\n    \"categories\": [\"arrows\",\"text\",\"development\"],\n    \"tags\": [\"arrow\",\"indent\",\"tab\"]\n  },\n  {\n    \"name\": \"corner-left-down\",\n    \"categories\": [\"arrows\"],\n    \"tags\": [\"arrow\"]\n  },\n  {\n    \"name\": \"corner-left-up\",\n    \"categories\": [\"arrows\"],\n    \"tags\": [\"arrow\"]\n  },\n  {\n    \"name\": \"corner-right-down\",\n    \"categories\": [\"arrows\"],\n    \"tags\": [\"arrow\"]\n  },\n  {\n    \"name\": \"corner-right-up\",\n    \"categories\": [\"arrows\"],\n    \"tags\": [\"arrow\"]\n  },\n  {\n    \"name\": \"corner-up-left\",\n    \"categories\": [\"arrows\"],\n    \"tags\": [\"arrow\"]\n  },\n  {\n    \"name\": \"corner-up-right\",\n    \"categories\": [\"arrows\"],\n    \"tags\": [\"arrow\"]\n  },\n  {\n    \"name\": \"cpu\",\n    \"categories\": [\"devices\"],\n    \"tags\": [\"processor\",\"cores\",\"technology\",\"computer\",\"chip\",\"circuit\",\"memory\",\"ram\",\"specs\",\"gigahertz\",\"ghz\"]\n  },\n  {\n    \"name\": \"creative-commons\",\n    \"categories\": [\"text\"],\n    \"tags\": [\"licence\",\"license\"]\n  },\n  {\n    \"name\": \"credit-card\",\n    \"categories\": [\"account\",\"finance\"],\n    \"tags\": [\"bank\",\"purchase\",\"payment\",\"cc\"]\n  },\n  {\n    \"name\": \"croissant\",\n    \"categories\": [\"food-beverage\"],\n    \"tags\": [\"bakery\",\"cooking\",\"food\",\"pastry\"]\n  },\n  {\n    \"name\": \"crop\",\n    \"categories\": [\"photography\",\"design\"],\n    \"tags\": [\"photo\",\"image\"]\n  },\n  {\n    \"name\": \"cross\",\n    \"categories\": [\"shapes\"],\n    \"tags\": [\"healthcare\",\"first aid\"]\n  },\n  {\n    \"name\": \"crosshair\",\n    \"categories\": [\"photography\"],\n    \"tags\": [\"aim\",\"target\"]\n  },\n  {\n    \"name\": \"crown\",\n    \"categories\": [\"gaming\"],\n    \"tags\": [\"diadem\",\"tiara\",\"circlet\",\"corona\",\"king\",\"ruler\",\"winner\",\"favourite\"]\n  },\n  {\n    \"name\": \"cuboid\",\n    \"categories\": [\"shapes\",\"math\",\"food-beverage\"],\n    \"tags\": [\"brick\",\"block\",\"box\",\"3d\",\"solid\",\"volume\",\"container\",\"storage\",\"shipping\",\"carton\",\"geometry\",\"rectangular\",\"hexahedron\",\"butter\",\"tofu\",\"soap\",\"cheese\",\"package\",\"parcel\",\"crate\"]\n  },\n  {\n    \"name\": \"cup-soda\",\n    \"categories\": [\"food-beverage\"],\n    \"tags\": [\"beverage\",\"cup\",\"drink\",\"soda\",\"straw\",\"water\"]\n  },\n  {\n    \"name\": \"currency\",\n    \"categories\": [\"finance\"],\n    \"tags\": [\"finance\",\"money\"]\n  },\n  {\n    \"name\": \"cylinder\",\n    \"categories\": [\"shapes\",\"design\",\"math\"],\n    \"tags\": [\"shape\",\"elliptical\",\"geometry\",\"container\",\"storage\",\"tin\",\"pot\"]\n  },\n  {\n    \"name\": \"dam\",\n    \"categories\": [\"buildings\",\"sustainability\",\"navigation\"],\n    \"tags\": [\"electricity\",\"energy\",\"water\"]\n  },\n  {\n    \"name\": \"database-arrow-down\",\n    \"categories\": [\"devices\",\"development\"],\n    \"tags\": [\"storage\",\"memory\",\"bytes\",\"server\",\"export\",\"download\",\"backup\",\"pull\",\"downsize\"]\n  },\n  {\n    \"name\": \"database-arrow-up\",\n    \"categories\": [\"devices\",\"development\"],\n    \"tags\": [\"storage\",\"memory\",\"bytes\",\"server\",\"import\",\"upload\",\"backup\",\"push\",\"upscale\"]\n  },\n  {\n    \"name\": \"database-backup\",\n    \"categories\": [\"devices\",\"arrows\",\"design\",\"development\",\"photography\"],\n    \"tags\": [\"storage\",\"memory\",\"bytes\",\"servers\",\"backup\",\"timemachine\",\"rotate\",\"arrow\",\"left\"]\n  },\n  {\n    \"name\": \"database-check\",\n    \"categories\": [\"devices\",\"development\"],\n    \"tags\": [\"storage\",\"memory\",\"bytes\",\"server\",\"check\",\"success\",\"valid\",\"verified\",\"confirmed\",\"complete\"]\n  },\n  {\n    \"name\": \"database-minus\",\n    \"categories\": [\"devices\",\"development\"],\n    \"tags\": [\"storage\",\"memory\",\"bytes\",\"server\",\"minus\",\"remove\",\"delete\",\"reduce\"]\n  },\n  {\n    \"name\": \"database-plus\",\n    \"categories\": [\"devices\",\"development\"],\n    \"tags\": [\"storage\",\"memory\",\"bytes\",\"server\",\"plus\",\"add\",\"create\",\"insert\",\"new\",\"expand\"]\n  },\n  {\n    \"name\": \"database-search\",\n    \"categories\": [\"devices\",\"development\"],\n    \"tags\": [\"storage\",\"memory\",\"container\",\"tin\",\"pot\",\"bytes\",\"servers\"]\n  },\n  {\n    \"name\": \"database-x\",\n    \"categories\": [\"devices\",\"development\"],\n    \"tags\": [\"storage\",\"memory\",\"bytes\",\"server\",\"x\",\"error\",\"failed\",\"invalid\",\"rejected\",\"denied\",\"clear\",\"remove\",\"disconnect\"]\n  },\n  {\n    \"name\": \"database-zap\",\n    \"categories\": [\"devices\",\"development\"],\n    \"tags\": [\"cache busting\",\"storage\",\"memory\",\"bytes\",\"servers\",\"power\",\"crash\"]\n  },\n  {\n    \"name\": \"database\",\n    \"categories\": [\"devices\",\"development\"],\n    \"tags\": [\"storage\",\"memory\",\"container\",\"tin\",\"pot\",\"bytes\",\"servers\"]\n  },\n  {\n    \"name\": \"decimals-arrow-left\",\n    \"categories\": [\"design\",\"text\",\"arrows\",\"math\"],\n    \"tags\": [\"numerical\",\"decimal\",\"decrease\",\"less\",\"fewer\",\"precision\",\"rounding\",\"digits\",\"fraction\",\"float\",\"number\"]\n  },\n  {\n    \"name\": \"decimals-arrow-right\",\n    \"categories\": [\"design\",\"text\",\"arrows\",\"math\"],\n    \"tags\": [\"numerical\",\"decimal\",\"increase\",\"more\",\"precision\",\"rounding\",\"digits\",\"fraction\",\"float\",\"number\"]\n  },\n  {\n    \"name\": \"delete\",\n    \"categories\": [\"text\",\"arrows\"],\n    \"tags\": [\"backspace\",\"remove\"]\n  },\n  {\n    \"name\": \"dessert\",\n    \"categories\": [\"food-beverage\"],\n    \"tags\": [\"pudding\",\"christmas\",\"xmas\",\"custard\",\"iced bun\",\"icing\",\"fondant\",\"cake\",\"ice cream\",\"gelato\",\"sundae\",\"scoop\",\"dollop\",\"sugar\",\"food\",\"sweet\"]\n  },\n  {\n    \"name\": \"diameter\",\n    \"categories\": [\"shapes\",\"math\",\"design\",\"tools\"],\n    \"tags\": [\"shape\",\"circle\",\"geometry\",\"trigonometry\",\"width\",\"height\",\"size\",\"calculate\",\"measure\"]\n  },\n  {\n    \"name\": \"diamond-minus\",\n    \"categories\": [\"multimedia\",\"photography\",\"tools\",\"devices\"],\n    \"tags\": [\"keyframe\",\"subtract\",\"remove\",\"decrease\",\"reduce\",\"calculator\",\"button\",\"keyboard\",\"line\",\"divider\",\"separator\",\"horizontal rule\",\"hr\",\"html\",\"markup\",\"markdown\",\"---\",\"toolbar\",\"operator\",\"code\",\"coding\",\"minimum\",\"downgrade\"]\n  },\n  {\n    \"name\": \"diamond-percent\",\n    \"categories\": [\"social\",\"finance\",\"shopping\",\"math\"],\n    \"tags\": [\"verified\",\"unverified\",\"sale\",\"discount\",\"offer\",\"marketing\",\"sticker\",\"price tag\"]\n  },\n  {\n    \"name\": \"diamond-plus\",\n    \"categories\": [\"multimedia\",\"photography\",\"tools\",\"devices\"],\n    \"tags\": [\"keyframe\",\"add\",\"new\",\"increase\",\"increment\",\"positive\",\"calculate\",\"toolbar\",\"crosshair\",\"aim\",\"target\",\"scope\",\"sight\",\"reticule\",\"maximum\",\"upgrade\",\"extra\",\"+\"]\n  },\n  {\n    \"name\": \"diamond\",\n    \"categories\": [\"shapes\",\"gaming\"],\n    \"tags\": [\"square\",\"rectangle\",\"oblique\",\"rhombus\",\"shape\",\"suit\",\"playing\",\"cards\"]\n  },\n  {\n    \"name\": \"dice-1\",\n    \"categories\": [\"gaming\"],\n    \"tags\": [\"dice\",\"random\",\"tabletop\",\"1\",\"board\",\"game\"]\n  },\n  {\n    \"name\": \"dice-2\",\n    \"categories\": [\"gaming\"],\n    \"tags\": [\"dice\",\"random\",\"tabletop\",\"2\",\"board\",\"game\"]\n  },\n  {\n    \"name\": \"dice-3\",\n    \"categories\": [\"gaming\"],\n    \"tags\": [\"dice\",\"random\",\"tabletop\",\"3\",\"board\",\"game\"]\n  },\n  {\n    \"name\": \"dice-4\",\n    \"categories\": [\"gaming\"],\n    \"tags\": [\"dice\",\"random\",\"tabletop\",\"4\",\"board\",\"game\"]\n  },\n  {\n    \"name\": \"dice-5\",\n    \"categories\": [\"gaming\"],\n    \"tags\": [\"dice\",\"random\",\"tabletop\",\"5\",\"board\",\"game\"]\n  },\n  {\n    \"name\": \"dice-6\",\n    \"categories\": [\"gaming\"],\n    \"tags\": [\"dice\",\"random\",\"tabletop\",\"6\",\"board\",\"game\"]\n  },\n  {\n    \"name\": \"dices\",\n    \"categories\": [\"gaming\"],\n    \"tags\": [\"dice\",\"random\",\"tabletop\",\"board\",\"game\"]\n  },\n  {\n    \"name\": \"diff\",\n    \"categories\": [\"development\",\"files\"],\n    \"tags\": [\"patch\",\"difference\",\"compare\",\"plus\",\"minus\",\"plus-minus\",\"math\"]\n  },\n  {\n    \"name\": \"disc-2\",\n    \"categories\": [\"devices\",\"multimedia\"],\n    \"tags\": [\"album\",\"music\",\"vinyl\",\"record\",\"cd\",\"dvd\",\"format\",\"dj\",\"spin\",\"rotate\",\"rpm\"]\n  },\n  {\n    \"name\": \"disc-3\",\n    \"categories\": [\"devices\",\"multimedia\"],\n    \"tags\": [\"album\",\"music\",\"vinyl\",\"record\",\"cd\",\"dvd\",\"format\",\"dj\",\"spin\",\"rotate\",\"rpm\"]\n  },\n  {\n    \"name\": \"disc-album\",\n    \"categories\": [\"devices\",\"multimedia\"],\n    \"tags\": [\"album\",\"music\",\"songs\",\"format\",\"cd\",\"dvd\",\"vinyl\",\"sleeve\",\"cover\",\"platinum\",\"compilation\",\"ep\",\"recording\",\"playback\",\"spin\",\"rotate\",\"rpm\",\"dj\"]\n  },\n  {\n    \"name\": \"disc\",\n    \"categories\": [\"devices\",\"multimedia\"],\n    \"tags\": [\"album\",\"music\",\"songs\",\"format\",\"cd\",\"dvd\",\"vinyl\",\"sleeve\",\"cover\",\"platinum\",\"compilation\",\"ep\",\"recording\",\"playback\",\"spin\",\"rotate\",\"rpm\",\"dj\"]\n  },\n  {\n    \"name\": \"divide\",\n    \"categories\": [\"math\",\"development\"],\n    \"tags\": [\"calculate\",\"math\",\"division\",\"operator\",\"code\",\"÷\",\"/\"]\n  },\n  {\n    \"name\": \"dna-off\",\n    \"categories\": [\"medical\",\"food-beverage\"],\n    \"tags\": [\"gene\",\"gmo free\",\"helix\",\"heredity\",\"chromosome\",\"nucleic acid\"]\n  },\n  {\n    \"name\": \"dna\",\n    \"categories\": [\"medical\"],\n    \"tags\": [\"gene\",\"gmo\",\"helix\",\"heredity\",\"chromosome\",\"nucleic acid\"]\n  },\n  {\n    \"name\": \"dock\",\n    \"categories\": [\"layout\",\"design\",\"development\",\"files\"],\n    \"tags\": [\"desktop\",\"applications\",\"launch\",\"home\",\"menu bar\",\"bottom\",\"line\",\"macos\",\"osx\"]\n  },\n  {\n    \"name\": \"dog\",\n    \"categories\": [\"animals\"],\n    \"tags\": [\"animal\",\"pet\",\"puppy\",\"hound\",\"canine\"]\n  },\n  {\n    \"name\": \"dollar-sign\",\n    \"categories\": [\"finance\"],\n    \"tags\": [\"currency\",\"money\",\"payment\"]\n  },\n  {\n    \"name\": \"donut\",\n    \"categories\": [\"food-beverage\"],\n    \"tags\": [\"doughnut\",\"sprinkles\",\"topping\",\"fast food\",\"junk food\",\"snack\",\"treat\",\"sweet\",\"sugar\",\"dessert\",\"hollow\",\"ring\"]\n  },\n  {\n    \"name\": \"door-closed-locked\",\n    \"categories\": [\"home\",\"travel\",\"security\"],\n    \"tags\": [\"entrance\",\"entry\",\"exit\",\"ingress\",\"egress\",\"gate\",\"gateway\",\"emergency exit\",\"lock\"]\n  },\n  {\n    \"name\": \"door-closed\",\n    \"categories\": [\"home\",\"travel\",\"security\"],\n    \"tags\": [\"entrance\",\"entry\",\"exit\",\"ingress\",\"egress\",\"gate\",\"gateway\",\"emergency exit\"]\n  },\n  {\n    \"name\": \"door-open\",\n    \"categories\": [\"home\",\"travel\",\"security\"],\n    \"tags\": [\"entrance\",\"entry\",\"exit\",\"ingress\",\"egress\",\"gate\",\"gateway\",\"emergency exit\"]\n  },\n  {\n    \"name\": \"dot\",\n    \"categories\": [\"shapes\",\"text\"],\n    \"tags\": [\"interpunct\",\"interpoint\",\"middot\",\"step\",\"punctuation\",\"period\",\"full stop\",\"end\",\"finish\",\"final\",\"characters\",\"font\",\"typography\",\"type\",\"center\",\".\"]\n  },\n  {\n    \"name\": \"download\",\n    \"categories\": [\"arrows\",\"files\"],\n    \"tags\": [\"import\",\"export\",\"save\"]\n  },\n  {\n    \"name\": \"drafting-compass\",\n    \"categories\": [\"math\",\"design\",\"tools\"],\n    \"tags\": [\"geometry\",\"trigonometry\",\"radius\",\"diameter\",\"circumference\",\"calculate\",\"measure\",\"arc\",\"curve\",\"draw\",\"sketch\"]\n  },\n  {\n    \"name\": \"drama\",\n    \"categories\": [\"multimedia\"],\n    \"tags\": [\"drama\",\"masks\",\"theater\",\"theatre\",\"entertainment\",\"show\"]\n  },\n  {\n    \"name\": \"drill\",\n    \"categories\": [\"tools\",\"home\",\"devices\"],\n    \"tags\": [\"power\",\"bit\",\"head\",\"hole\",\"diy\",\"toolbox\",\"build\",\"construction\"]\n  },\n  {\n    \"name\": \"drone\",\n    \"categories\": [\"transportation\",\"devices\"],\n    \"tags\": [\"quadcopter\",\"uav\",\"aerial\",\"flight\",\"flying\",\"technology\",\"airborne\",\"robotics\"]\n  },\n  {\n    \"name\": \"droplet-off\",\n    \"categories\": [\"weather\",\"gaming\"],\n    \"tags\": [\"water\",\"weather\",\"liquid\",\"fluid\",\"wet\",\"moisture\",\"damp\",\"bead\",\"globule\"]\n  },\n  {\n    \"name\": \"droplet\",\n    \"categories\": [\"weather\",\"gaming\"],\n    \"tags\": [\"water\",\"weather\",\"liquid\",\"fluid\",\"wet\",\"moisture\",\"damp\",\"bead\",\"globule\"]\n  },\n  {\n    \"name\": \"droplets\",\n    \"categories\": [\"weather\"],\n    \"tags\": [\"water\",\"weather\",\"liquid\",\"fluid\",\"wet\",\"moisture\",\"damp\",\"bead\",\"globule\"]\n  },\n  {\n    \"name\": \"drum\",\n    \"categories\": [\"multimedia\",\"devices\"],\n    \"tags\": [\"drummer\",\"kit\",\"sticks\",\"instrument\",\"beat\",\"bang\",\"bass\",\"backing track\",\"band\",\"play\",\"performance\",\"concert\",\"march\",\"music\",\"audio\",\"sound\",\"noise\",\"loud\"]\n  },\n  {\n    \"name\": \"drumstick\",\n    \"categories\": [\"food-beverage\"],\n    \"tags\": [\"food\",\"chicken\",\"meat\"]\n  },\n  {\n    \"name\": \"dumbbell\",\n    \"categories\": [\"navigation\",\"sports\"],\n    \"tags\": [\"barbell\",\"weight\",\"workout\",\"gym\"]\n  },\n  {\n    \"name\": \"ear-off\",\n    \"categories\": [\"medical\",\"accessibility\"],\n    \"tags\": [\"hearing\",\"hard of hearing\",\"hearing loss\",\"deafness\",\"noise\",\"silence\",\"audio\",\"accessibility\"]\n  },\n  {\n    \"name\": \"ear\",\n    \"categories\": [\"medical\",\"accessibility\"],\n    \"tags\": [\"hearing\",\"noise\",\"audio\",\"accessibility\"]\n  },\n  {\n    \"name\": \"earth-lock\",\n    \"categories\": [\"security\",\"development\",\"devices\"],\n    \"tags\": [\"vpn\",\"private\",\"privacy\",\"network\",\"world\",\"browser\",\"security\",\"encryption\",\"protection\",\"connection\"]\n  },\n  {\n    \"name\": \"earth\",\n    \"categories\": [\"navigation\"],\n    \"tags\": [\"world\",\"browser\",\"language\",\"translate\",\"globe\"]\n  },\n  {\n    \"name\": \"eclipse\",\n    \"categories\": [\"science\",\"design\",\"development\",\"accessibility\",\"photography\"],\n    \"tags\": [\"lunar\",\"solar\",\"crescent moon\",\"sun\",\"earth\",\"day\",\"night\",\"planet\",\"space\",\"mode\",\"dark\",\"light\",\"toggle\",\"switch\",\"color\",\"css\",\"styles\",\"display\",\"accessibility\",\"contrast\",\"brightness\",\"blend\",\"shade\"]\n  },\n  {\n    \"name\": \"egg-fried\",\n    \"categories\": [\"food-beverage\"],\n    \"tags\": [\"food\",\"breakfast\"]\n  },\n  {\n    \"name\": \"egg-off\",\n    \"categories\": [\"food-beverage\"],\n    \"tags\": [\"egg free\",\"vegan\",\"hatched\",\"bad egg\"]\n  },\n  {\n    \"name\": \"egg\",\n    \"categories\": [\"food-beverage\",\"animals\"],\n    \"tags\": [\"bird\",\"chicken\",\"nest\",\"hatch\",\"shell\",\"incubate\",\"soft boiled\",\"hard\",\"breakfast\",\"brunch\",\"morning\",\"easter\"]\n  },\n  {\n    \"name\": \"ellipse\",\n    \"categories\": [\"shapes\"],\n    \"tags\": [\"shape\",\"geometry\",\"rounded\",\"smooth\",\"outline\",\"form\",\"boundary\",\"curve\",\"shapes\",\"ellipse\",\"oval\"]\n  },\n  {\n    \"name\": \"ellipsis-vertical\",\n    \"categories\": [\"layout\"],\n    \"tags\": [\"menu\",\"options\",\"spread\",\"more\",\"further\",\"extra\",\"overflow\",\"dots\",\"…\",\"...\"]\n  },\n  {\n    \"name\": \"ellipsis\",\n    \"categories\": [\"layout\",\"development\"],\n    \"tags\": [\"et cetera\",\"etc\",\"loader\",\"loading\",\"progress\",\"pending\",\"throbber\",\"menu\",\"options\",\"operator\",\"code\",\"coding\",\"spread\",\"rest\",\"more\",\"further\",\"extra\",\"overflow\",\"dots\",\"…\",\"...\"]\n  },\n  {\n    \"name\": \"equal-approximately\",\n    \"categories\": [\"math\"],\n    \"tags\": [\"about\",\"calculate\",\"math\",\"operater\"]\n  },\n  {\n    \"name\": \"equal-not\",\n    \"categories\": [\"math\",\"development\"],\n    \"tags\": [\"calculate\",\"off\",\"math\",\"operator\",\"code\",\"≠\"]\n  },\n  {\n    \"name\": \"equal\",\n    \"categories\": [\"math\",\"development\"],\n    \"tags\": [\"calculate\",\"math\",\"operator\",\"assignment\",\"code\",\"=\"]\n  },\n  {\n    \"name\": \"eraser\",\n    \"categories\": [\"text\"],\n    \"tags\": [\"pencil\",\"drawing\",\"undo\",\"delete\",\"clear\",\"trash\",\"remove\"]\n  },\n  {\n    \"name\": \"ethernet-port\",\n    \"categories\": [\"communication\",\"devices\",\"multimedia\",\"gaming\"],\n    \"tags\": [\"internet\",\"network\",\"connection\",\"cable\",\"lan\",\"port\",\"router\",\"switch\",\"hub\",\"modem\",\"web\",\"online\",\"networking\",\"communication\",\"socket\",\"plug\",\"slot\",\"controller\",\"connector\",\"interface\",\"console\",\"signal\",\"data\",\"input\",\"output\"]\n  },\n  {\n    \"name\": \"euro\",\n    \"categories\": [\"finance\"],\n    \"tags\": [\"currency\",\"money\",\"payment\"]\n  },\n  {\n    \"name\": \"ev-charger\",\n    \"categories\": [\"transportation\",\"navigation\"],\n    \"tags\": [\"electric\",\"charger\",\"station\",\"vehicle\",\"fast\",\"plug\",\"ev\",\"power\",\"electricity\",\"energy\",\"accumulator\",\"charge\"]\n  },\n  {\n    \"name\": \"expand\",\n    \"categories\": [\"text\",\"arrows\"],\n    \"tags\": [\"scale\",\"fullscreen\",\"maximize\",\"minimize\",\"contract\"]\n  },\n  {\n    \"name\": \"external-link\",\n    \"categories\": [\"arrows\",\"text\",\"social\"],\n    \"tags\": [\"outbound\",\"open\",\"share\"]\n  },\n  {\n    \"name\": \"eye-closed\",\n    \"categories\": [\"accessibility\",\"photography\",\"design\",\"security\"],\n    \"tags\": [\"view\",\"watch\",\"see\",\"hide\",\"conceal\",\"mask\",\"hidden\",\"visibility\",\"vision\"]\n  },\n  {\n    \"name\": \"eye-dashed\",\n    \"categories\": [\"accessibility\",\"photography\",\"design\",\"security\"],\n    \"tags\": [\"view\",\"watch\",\"see\",\"hide\",\"conceal\",\"mask\",\"hidden\",\"invisible\",\"visibility\",\"vision\"]\n  },\n  {\n    \"name\": \"eye-off\",\n    \"categories\": [\"accessibility\",\"photography\",\"design\",\"security\"],\n    \"tags\": [\"view\",\"watch\",\"see\",\"hide\",\"conceal\",\"mask\",\"hidden\",\"visibility\",\"vision\"]\n  },\n  {\n    \"name\": \"eye\",\n    \"categories\": [\"accessibility\",\"photography\",\"design\",\"security\"],\n    \"tags\": [\"view\",\"watch\",\"see\",\"show\",\"expose\",\"reveal\",\"display\",\"visible\",\"visibility\",\"vision\",\"preview\",\"read\"]\n  },\n  {\n    \"name\": \"factory\",\n    \"categories\": [\"buildings\",\"navigation\"],\n    \"tags\": [\"building\",\"business\",\"energy\",\"industry\",\"manufacture\",\"sector\"]\n  },\n  {\n    \"name\": \"fan\",\n    \"categories\": [\"home\"],\n    \"tags\": [\"air\",\"cooler\",\"ventilation\",\"ventilator\",\"blower\"]\n  },\n  {\n    \"name\": \"fast-forward\",\n    \"categories\": [\"multimedia\",\"arrows\"],\n    \"tags\": [\"music\"]\n  },\n  {\n    \"name\": \"feather\",\n    \"categories\": [\"gaming\"],\n    \"tags\": [\"logo\"]\n  },\n  {\n    \"name\": \"fence\",\n    \"categories\": [\"home\",\"buildings\"],\n    \"tags\": [\"picket\",\"panels\",\"woodwork\",\"diy\",\"materials\",\"suburban\",\"garden\",\"property\",\"territory\"]\n  },\n  {\n    \"name\": \"ferris-wheel\",\n    \"categories\": [\"navigation\"],\n    \"tags\": [\"big wheel\",\"daisy wheel\",\"observation\",\"attraction\",\"entertainment\",\"amusement park\",\"theme park\",\"funfair\"]\n  },\n  {\n    \"name\": \"file-archive\",\n    \"categories\": [\"files\"],\n    \"tags\": [\"zip\",\"package\",\"archive\"]\n  },\n  {\n    \"name\": \"file-axis-3d\",\n    \"categories\": [\"design\",\"files\"],\n    \"tags\": [\"model\",\"3d\",\"axis\",\"coordinates\"]\n  },\n  {\n    \"name\": \"file-badge\",\n    \"categories\": [\"files\"],\n    \"tags\": [\"award\",\"achievement\",\"badge\",\"rosette\",\"prize\",\"winner\"]\n  },\n  {\n    \"name\": \"file-box\",\n    \"categories\": [\"files\",\"design\",\"development\"],\n    \"tags\": [\"document\",\"page\",\"sheet\",\"cube\",\"box\",\"3d\",\"model\",\"asset\",\"object\",\"geometry\",\"mesh\",\"ar\",\"augmented reality\",\"cad\",\"design\",\"blueprint\",\"draft\",\"package\",\"scene\"]\n  },\n  {\n    \"name\": \"file-braces-corner\",\n    \"categories\": [\"files\",\"development\"],\n    \"tags\": [\"code\",\"json\",\"curly braces\",\"curly brackets\"]\n  },\n  {\n    \"name\": \"file-braces\",\n    \"categories\": [\"files\",\"development\"],\n    \"tags\": [\"code\",\"json\",\"curly braces\",\"curly brackets\"]\n  },\n  {\n    \"name\": \"file-chart-column-increasing\",\n    \"categories\": [\"files\"],\n    \"tags\": [\"statistics\",\"analytics\",\"diagram\",\"graph\",\"presentation\",\"trending up\"]\n  },\n  {\n    \"name\": \"file-chart-column\",\n    \"categories\": [\"files\"],\n    \"tags\": [\"statistics\",\"analytics\",\"diagram\",\"graph\",\"presentation\"]\n  },\n  {\n    \"name\": \"file-chart-line\",\n    \"categories\": [\"files\"],\n    \"tags\": [\"statistics\",\"analytics\",\"diagram\",\"graph\",\"presentation\"]\n  },\n  {\n    \"name\": \"file-chart-pie\",\n    \"categories\": [\"files\"],\n    \"tags\": [\"statistics\",\"analytics\",\"diagram\",\"graph\",\"presentation\"]\n  },\n  {\n    \"name\": \"file-check-corner\",\n    \"categories\": [\"files\"],\n    \"tags\": [\"done\",\"document\",\"todo\",\"tick\",\"complete\",\"task\"]\n  },\n  {\n    \"name\": \"file-check\",\n    \"categories\": [\"files\"],\n    \"tags\": [\"done\",\"document\",\"todo\",\"tick\",\"complete\",\"task\"]\n  },\n  {\n    \"name\": \"file-clock\",\n    \"categories\": [\"files\",\"time\"],\n    \"tags\": [\"history\",\"log\",\"clock\"]\n  },\n  {\n    \"name\": \"file-code-corner\",\n    \"categories\": [\"files\",\"development\"],\n    \"tags\": [\"script\",\"document\",\"html\",\"xml\",\"property list\",\"plist\"]\n  },\n  {\n    \"name\": \"file-code\",\n    \"categories\": [\"files\",\"development\"],\n    \"tags\": [\"script\",\"document\",\"gist\",\"html\",\"xml\",\"property list\",\"plist\"]\n  },\n  {\n    \"name\": \"file-cog\",\n    \"categories\": [\"files\"],\n    \"tags\": [\"executable\",\"settings\",\"cog\",\"edit\",\"gear\"]\n  },\n  {\n    \"name\": \"file-diff\",\n    \"categories\": [\"files\",\"development\"],\n    \"tags\": [\"diff\",\"patch\"]\n  },\n  {\n    \"name\": \"file-digit\",\n    \"categories\": [\"files\",\"development\"],\n    \"tags\": [\"number\",\"document\"]\n  },\n  {\n    \"name\": \"file-down\",\n    \"categories\": [\"files\",\"arrows\"],\n    \"tags\": [\"download\",\"import\",\"export\"]\n  },\n  {\n    \"name\": \"file-exclamation-point\",\n    \"categories\": [\"files\",\"notifications\"],\n    \"tags\": [\"hidden\",\"warning\",\"alert\",\"danger\",\"protected\",\"exclamation mark\"]\n  },\n  {\n    \"name\": \"file-headphone\",\n    \"categories\": [\"files\"],\n    \"tags\": [\"music\",\"audio\",\"sound\",\"headphones\"]\n  },\n  {\n    \"name\": \"file-heart\",\n    \"categories\": [\"files\"],\n    \"tags\": [\"heart\",\"favourite\",\"bookmark\",\"quick link\"]\n  },\n  {\n    \"name\": \"file-image\",\n    \"categories\": [\"files\"],\n    \"tags\": [\"image\",\"graphics\",\"photo\",\"picture\"]\n  },\n  {\n    \"name\": \"file-input\",\n    \"categories\": [\"files\",\"arrows\"],\n    \"tags\": [\"document\"]\n  },\n  {\n    \"name\": \"file-key\",\n    \"categories\": [\"files\",\"security\"],\n    \"tags\": [\"key\",\"private\",\"public\",\"security\"]\n  },\n  {\n    \"name\": \"file-lock\",\n    \"categories\": [\"files\",\"security\"],\n    \"tags\": [\"lock\",\"password\",\"security\"]\n  },\n  {\n    \"name\": \"file-minus-corner\",\n    \"categories\": [\"files\"],\n    \"tags\": [\"document\"]\n  },\n  {\n    \"name\": \"file-minus\",\n    \"categories\": [\"files\"],\n    \"tags\": [\"delete\",\"remove\",\"erase\",\"document\"]\n  },\n  {\n    \"name\": \"file-music\",\n    \"categories\": [\"files\",\"multimedia\"],\n    \"tags\": [\"audio\",\"sound\",\"noise\",\"track\",\"digital\",\"recording\",\"playback\",\"piano\",\"keyboard\",\"keys\",\"notes\",\"chord\",\"midi\",\"octave\"]\n  },\n  {\n    \"name\": \"file-output\",\n    \"categories\": [\"files\",\"arrows\"],\n    \"tags\": [\"document\"]\n  },\n  {\n    \"name\": \"file-pen-line\",\n    \"categories\": [\"files\"],\n    \"tags\": [\"edit\"]\n  },\n  {\n    \"name\": \"file-pen\",\n    \"categories\": [\"files\"],\n    \"tags\": [\"signature\"]\n  },\n  {\n    \"name\": \"file-play\",\n    \"categories\": [\"files\"],\n    \"tags\": [\"movie\",\"video\",\"film\"]\n  },\n  {\n    \"name\": \"file-plus-corner\",\n    \"categories\": [\"files\"],\n    \"tags\": [\"add\",\"create\",\"new\",\"document\"]\n  },\n  {\n    \"name\": \"file-plus\",\n    \"categories\": [\"files\"],\n    \"tags\": [\"add\",\"create\",\"new\",\"document\"]\n  },\n  {\n    \"name\": \"file-question-mark\",\n    \"categories\": [\"files\"],\n    \"tags\": [\"readme\",\"help\",\"question\"]\n  },\n  {\n    \"name\": \"file-scan\",\n    \"categories\": [\"files\"],\n    \"tags\": [\"scan\",\"code\",\"qr-code\"]\n  },\n  {\n    \"name\": \"file-search-corner\",\n    \"categories\": [\"files\"],\n    \"tags\": [\"lost\",\"document\",\"find\",\"browser\",\"lens\"]\n  },\n  {\n    \"name\": \"file-search\",\n    \"categories\": [\"files\"],\n    \"tags\": [\"lost\",\"document\",\"find\",\"browser\",\"lens\"]\n  },\n  {\n    \"name\": \"file-signal\",\n    \"categories\": [\"files\"],\n    \"tags\": [\"audio\",\"music\",\"volume\"]\n  },\n  {\n    \"name\": \"file-sliders\",\n    \"categories\": [\"files\",\"development\"],\n    \"tags\": [\"cogged\",\"gear\",\"mechanical\",\"machinery\",\"configuration\",\"controls\",\"preferences\",\"settings\",\"system\",\"admin\",\"edit\",\"executable\"]\n  },\n  {\n    \"name\": \"file-spreadsheet\",\n    \"categories\": [\"files\"],\n    \"tags\": [\"spreadsheet\",\"sheet\",\"table\"]\n  },\n  {\n    \"name\": \"file-stack\",\n    \"categories\": [\"files\",\"development\"],\n    \"tags\": [\"versions\",\"multiple\",\"copy\",\"documents\",\"revisions\",\"version control\",\"history\"]\n  },\n  {\n    \"name\": \"file-symlink\",\n    \"categories\": [\"files\"],\n    \"tags\": [\"symlink\",\"symbolic\",\"link\"]\n  },\n  {\n    \"name\": \"file-terminal\",\n    \"categories\": [\"files\",\"development\"],\n    \"tags\": [\"terminal\",\"bash\",\"script\",\"executable\"]\n  },\n  {\n    \"name\": \"file-text\",\n    \"categories\": [\"files\",\"text\"],\n    \"tags\": [\"data\",\"txt\",\"pdf\",\"document\"]\n  },\n  {\n    \"name\": \"file-type-corner\",\n    \"categories\": [\"files\",\"text\"],\n    \"tags\": [\"font\",\"text\",\"typography\",\"type\"]\n  },\n  {\n    \"name\": \"file-type\",\n    \"categories\": [\"files\",\"text\"],\n    \"tags\": [\"font\",\"text\",\"typography\",\"type\"]\n  },\n  {\n    \"name\": \"file-up\",\n    \"categories\": [\"files\",\"arrows\"],\n    \"tags\": [\"upload\",\"import\",\"export\"]\n  },\n  {\n    \"name\": \"file-user\",\n    \"categories\": [\"account\",\"files\"],\n    \"tags\": [\"person\",\"personal information\",\"people\",\"listing\",\"networking\",\"document\",\"contact\",\"cover letter\",\"resume\",\"cv\",\"curriculum vitae\",\"application form\"]\n  },\n  {\n    \"name\": \"file-video-camera\",\n    \"categories\": [\"files\"],\n    \"tags\": [\"movie\",\"video\",\"film\"]\n  },\n  {\n    \"name\": \"file-volume\",\n    \"categories\": [\"files\"],\n    \"tags\": [\"audio\",\"music\",\"volume\"]\n  },\n  {\n    \"name\": \"file-x-corner\",\n    \"categories\": [\"files\"],\n    \"tags\": [\"lost\",\"delete\",\"remove\",\"document\"]\n  },\n  {\n    \"name\": \"file-x\",\n    \"categories\": [\"files\"],\n    \"tags\": [\"lost\",\"delete\",\"remove\",\"document\"]\n  },\n  {\n    \"name\": \"file\",\n    \"categories\": [\"files\"],\n    \"tags\": [\"document\"]\n  },\n  {\n    \"name\": \"files\",\n    \"categories\": [\"files\"],\n    \"tags\": [\"multiple\",\"copy\",\"documents\"]\n  },\n  {\n    \"name\": \"film\",\n    \"categories\": [\"photography\",\"multimedia\"],\n    \"tags\": [\"movie\",\"video\",\"reel\",\"camera\",\"cinema\",\"entertainment\"]\n  },\n  {\n    \"name\": \"fingerprint-pattern\",\n    \"categories\": [\"account\",\"security\",\"medical\",\"devices\"],\n    \"tags\": [\"2fa\",\"authentication\",\"biometric\",\"identity\",\"security\"]\n  },\n  {\n    \"name\": \"fire-extinguisher\",\n    \"categories\": [\"home\",\"tools\",\"travel\"],\n    \"tags\": [\"flames\",\"smoke\",\"foam\",\"water\",\"spray\",\"hose\",\"firefighter\",\"fireman\",\"department\",\"brigade\",\"station\",\"emergency\",\"suppress\",\"compressed\",\"tank\",\"cylinder\",\"safety\",\"equipment\",\"amenities\"]\n  },\n  {\n    \"name\": \"fish-off\",\n    \"categories\": [\"food-beverage\",\"animals\"],\n    \"tags\": [\"food\",\"dish\",\"restaurant\",\"course\",\"meal\",\"seafood\",\"animal\",\"pet\",\"sea\",\"marine\",\"allergy\",\"intolerance\",\"diet\"]\n  },\n  {\n    \"name\": \"fish-symbol\",\n    \"categories\": [\"food-beverage\",\"animals\"],\n    \"tags\": [\"dish\",\"restaurant\",\"course\",\"meal\",\"seafood\",\"pet\",\"sea\",\"marine\"]\n  },\n  {\n    \"name\": \"fish\",\n    \"categories\": [\"food-beverage\",\"animals\"],\n    \"tags\": [\"dish\",\"restaurant\",\"course\",\"meal\",\"seafood\",\"pet\",\"sea\",\"marine\"]\n  },\n  {\n    \"name\": \"fishing-hook\",\n    \"categories\": [\"sports\",\"travel\"],\n    \"tags\": [\"sea\",\"boating\",\"angler\",\"bait\",\"reel\",\"tackle\",\"marine\",\"outdoors\",\"fish\",\"fishing\",\"hook\",\"sports\",\"travel\"]\n  },\n  {\n    \"name\": \"fishing-rod\",\n    \"categories\": [\"sports\",\"travel\"],\n    \"tags\": [\"fishing\",\"rod\",\"hobby\",\"equipment\",\"reel\"]\n  },\n  {\n    \"name\": \"flag-off\",\n    \"categories\": [\"account\",\"social\"],\n    \"tags\": [\"unflag\",\"unmark\",\"report\",\"marker\",\"notification\",\"warning\",\"milestone\",\"goal\",\"notice\",\"signal\",\"attention\",\"banner\"]\n  },\n  {\n    \"name\": \"flag-triangle-left\",\n    \"categories\": [\"development\",\"navigation\"],\n    \"tags\": [\"report\",\"timeline\",\"marker\",\"pin\"]\n  },\n  {\n    \"name\": \"flag-triangle-right\",\n    \"categories\": [\"development\",\"navigation\"],\n    \"tags\": [\"report\",\"timeline\",\"marker\",\"pin\"]\n  },\n  {\n    \"name\": \"flag\",\n    \"categories\": [\"account\",\"social\"],\n    \"tags\": [\"report\",\"marker\",\"notification\",\"warning\",\"milestone\",\"goal\",\"notice\",\"signal\",\"attention\",\"banner\"]\n  },\n  {\n    \"name\": \"flame-kindling\",\n    \"categories\": [\"nature\",\"social\",\"gaming\"],\n    \"tags\": [\"campfire\",\"camping\",\"wilderness\",\"outdoors\",\"lit\",\"warmth\",\"wood\",\"twigs\",\"sticks\"]\n  },\n  {\n    \"name\": \"flame\",\n    \"categories\": [\"weather\",\"social\",\"gaming\"],\n    \"tags\": [\"heat\",\"burn\",\"light\",\"glow\",\"ignite\",\"passion\",\"ember\",\"fire\",\"lit\",\"burning\",\"spark\",\"embers\",\"smoke\",\"firefighter\",\"fireman\",\"department\",\"brigade\",\"station\",\"emergency\"]\n  },\n  {\n    \"name\": \"flashlight-off\",\n    \"categories\": [\"photography\",\"devices\"],\n    \"tags\": [\"torch\",\"light\",\"beam\",\"emergency\",\"safety\",\"tool\",\"bright\"]\n  },\n  {\n    \"name\": \"flashlight\",\n    \"categories\": [\"photography\",\"devices\"],\n    \"tags\": [\"torch\",\"light\",\"beam\",\"emergency\",\"safety\",\"tool\",\"bright\"]\n  },\n  {\n    \"name\": \"flask-conical-off\",\n    \"categories\": [\"science\",\"gaming\"],\n    \"tags\": [\"beaker\",\"erlenmeyer\",\"non toxic\",\"lab\",\"chemistry\",\"experiment\",\"test\"]\n  },\n  {\n    \"name\": \"flask-conical\",\n    \"categories\": [\"science\",\"gaming\"],\n    \"tags\": [\"beaker\",\"erlenmeyer\",\"lab\",\"chemistry\",\"experiment\",\"test\"]\n  },\n  {\n    \"name\": \"flask-round\",\n    \"categories\": [\"science\",\"gaming\"],\n    \"tags\": [\"beaker\",\"lab\",\"chemistry\",\"experiment\",\"test\"]\n  },\n  {\n    \"name\": \"flip-horizontal-2\",\n    \"categories\": [\"design\",\"photography\"],\n    \"tags\": [\"reflect\",\"mirror\",\"alignment\",\"dashed\"]\n  },\n  {\n    \"name\": \"flip-vertical-2\",\n    \"categories\": [\"design\",\"photography\"],\n    \"tags\": [\"reflect\",\"mirror\",\"alignment\",\"dashed\"]\n  },\n  {\n    \"name\": \"flower-2\",\n    \"categories\": [\"nature\",\"sustainability\",\"seasons\"],\n    \"tags\": [\"sustainability\",\"nature\",\"plant\"]\n  },\n  {\n    \"name\": \"flower\",\n    \"categories\": [\"nature\",\"gaming\",\"sustainability\"],\n    \"tags\": [\"sustainability\",\"nature\",\"plant\",\"spring\"]\n  },\n  {\n    \"name\": \"focus\",\n    \"categories\": [\"photography\"],\n    \"tags\": [\"camera\",\"lens\",\"photo\",\"dashed\"]\n  },\n  {\n    \"name\": \"fold-horizontal\",\n    \"categories\": [\"arrows\",\"layout\"],\n    \"tags\": [\"arrow\",\"collapse\",\"fold\",\"vertical\",\"dashed\"]\n  },\n  {\n    \"name\": \"fold-vertical\",\n    \"categories\": [\"arrows\",\"layout\"],\n    \"tags\": [\"arrow\",\"collapse\",\"fold\",\"vertical\",\"dashed\"]\n  },\n  {\n    \"name\": \"folder-archive\",\n    \"categories\": [\"files\"],\n    \"tags\": [\"archive\",\"zip\",\"package\"]\n  },\n  {\n    \"name\": \"folder-bookmark\",\n    \"categories\": [\"files\"],\n    \"tags\": [\"folder\",\"bookmark\",\"file\",\"mark\",\"storage\",\"archive\",\"directory\",\"project\",\"favorite\",\"save\",\"read later\"]\n  },\n  {\n    \"name\": \"folder-check\",\n    \"categories\": [\"files\"],\n    \"tags\": [\"done\",\"directory\",\"todo\",\"tick\",\"complete\",\"task\"]\n  },\n  {\n    \"name\": \"folder-clock\",\n    \"categories\": [\"files\",\"time\"],\n    \"tags\": [\"history\",\"directory\",\"clock\"]\n  },\n  {\n    \"name\": \"folder-closed\",\n    \"categories\": [\"files\"],\n    \"tags\": [\"directory\",\"closed\"]\n  },\n  {\n    \"name\": \"folder-code\",\n    \"categories\": [\"files\",\"development\"],\n    \"tags\": [\"directory\",\"coding\",\"develop\",\"software\"]\n  },\n  {\n    \"name\": \"folder-cog\",\n    \"categories\": [\"files\"],\n    \"tags\": [\"directory\",\"settings\",\"control\",\"preferences\",\"cog\",\"edit\",\"gear\"]\n  },\n  {\n    \"name\": \"folder-dot\",\n    \"categories\": [\"files\",\"development\"],\n    \"tags\": [\"directory\",\"root\",\"project\",\"pinned\",\"active\",\"current\",\"cogged\",\"gear\",\"mechanical\",\"machinery\",\"configuration\",\"controls\",\"preferences\",\"settings\",\"system\",\"admin\",\"edit\"]\n  },\n  {\n    \"name\": \"folder-down\",\n    \"categories\": [\"files\",\"arrows\"],\n    \"tags\": [\"directory\",\"download\",\"import\",\"export\"]\n  },\n  {\n    \"name\": \"folder-git-2\",\n    \"categories\": [\"files\"],\n    \"tags\": [\"directory\",\"root\",\"project\",\"git\",\"repo\"]\n  },\n  {\n    \"name\": \"folder-git\",\n    \"categories\": [\"files\"],\n    \"tags\": [\"directory\",\"root\",\"project\",\"git\",\"repo\"]\n  },\n  {\n    \"name\": \"folder-heart\",\n    \"categories\": [\"files\"],\n    \"tags\": [\"directory\",\"heart\",\"favourite\",\"bookmark\",\"quick link\"]\n  },\n  {\n    \"name\": \"folder-input\",\n    \"categories\": [\"files\",\"arrows\"],\n    \"tags\": [\"directory\",\"import\",\"export\"]\n  },\n  {\n    \"name\": \"folder-kanban\",\n    \"categories\": [\"charts\",\"development\",\"design\",\"files\"],\n    \"tags\": [\"projects\",\"manage\",\"overview\",\"board\",\"tickets\",\"issues\",\"roadmap\",\"plan\",\"intentions\",\"productivity\",\"work\",\"agile\",\"code\",\"coding\",\"directory\",\"project\",\"root\"]\n  },\n  {\n    \"name\": \"folder-key\",\n    \"categories\": [\"files\",\"security\"],\n    \"tags\": [\"directory\",\"key\",\"private\",\"security\",\"protected\"]\n  },\n  {\n    \"name\": \"folder-lock\",\n    \"categories\": [\"files\",\"security\"],\n    \"tags\": [\"directory\",\"lock\",\"private\",\"security\",\"protected\"]\n  },\n  {\n    \"name\": \"folder-minus\",\n    \"categories\": [\"files\"],\n    \"tags\": [\"directory\",\"remove\",\"delete\"]\n  },\n  {\n    \"name\": \"folder-open-dot\",\n    \"categories\": [\"files\",\"development\"],\n    \"tags\": [\"directory\",\"root\",\"project\",\"active\",\"current\",\"pinned\"]\n  },\n  {\n    \"name\": \"folder-open\",\n    \"categories\": [\"files\"],\n    \"tags\": [\"directory\"]\n  },\n  {\n    \"name\": \"folder-output\",\n    \"categories\": [\"files\",\"arrows\"],\n    \"tags\": [\"directory\",\"import\",\"export\"]\n  },\n  {\n    \"name\": \"folder-pen\",\n    \"categories\": [\"files\"],\n    \"tags\": [\"directory\",\"rename\"]\n  },\n  {\n    \"name\": \"folder-plus\",\n    \"categories\": [\"files\"],\n    \"tags\": [\"directory\",\"add\",\"create\",\"new\"]\n  },\n  {\n    \"name\": \"folder-root\",\n    \"categories\": [\"files\",\"development\"],\n    \"tags\": [\"directory\",\"root\",\"project\",\"git\",\"repo\"]\n  },\n  {\n    \"name\": \"folder-search-2\",\n    \"categories\": [\"files\"],\n    \"tags\": [\"directory\",\"search\",\"find\",\"lost\",\"browser\",\"lens\"]\n  },\n  {\n    \"name\": \"folder-search\",\n    \"categories\": [\"files\"],\n    \"tags\": [\"directory\",\"search\",\"find\",\"lost\",\"browser\",\"lens\"]\n  },\n  {\n    \"name\": \"folder-symlink\",\n    \"categories\": [\"files\"],\n    \"tags\": [\"directory\",\"symlink\",\"symbolic\",\"link\"]\n  },\n  {\n    \"name\": \"folder-sync\",\n    \"categories\": [\"files\",\"arrows\"],\n    \"tags\": [\"directory\",\"synchronize\",\"synchronise\",\"refresh\",\"reconnect\",\"transfer\",\"backup\"]\n  },\n  {\n    \"name\": \"folder-tree\",\n    \"categories\": [\"files\"],\n    \"tags\": [\"directory\",\"tree\",\"browser\"]\n  },\n  {\n    \"name\": \"folder-up\",\n    \"categories\": [\"files\",\"arrows\"],\n    \"tags\": [\"directory\",\"upload\",\"import\",\"export\"]\n  },\n  {\n    \"name\": \"folder-x\",\n    \"categories\": [\"files\"],\n    \"tags\": [\"directory\",\"remove\",\"delete\"]\n  },\n  {\n    \"name\": \"folder\",\n    \"categories\": [\"files\"],\n    \"tags\": [\"directory\"]\n  },\n  {\n    \"name\": \"folders\",\n    \"categories\": [\"files\"],\n    \"tags\": [\"multiple\",\"copy\",\"directories\"]\n  },\n  {\n    \"name\": \"footprints\",\n    \"categories\": [\"navigation\"],\n    \"tags\": [\"steps\",\"walking\",\"foot\",\"feet\",\"trail\",\"shoe\"]\n  },\n  {\n    \"name\": \"forklift\",\n    \"categories\": [\"transportation\"],\n    \"tags\": [\"machinery\",\"industrial\",\"warehouse\",\"lifting\",\"storage\",\"equipment\",\"heavy-duty\",\"moving\",\"vehicle\",\"transport\",\"logistics\"]\n  },\n  {\n    \"name\": \"form\",\n    \"categories\": [\"development\"],\n    \"tags\": [\"document\",\"page\",\"file\",\"layout\",\"paper\",\"stub\",\"formality\",\"structure\",\"template\",\"inputs\",\"design\",\"components\"]\n  },\n  {\n    \"name\": \"forward\",\n    \"categories\": [\"mail\"],\n    \"tags\": [\"send\",\"share\",\"email\"]\n  },\n  {\n    \"name\": \"frame\",\n    \"categories\": [\"design\",\"photography\"],\n    \"tags\": [\"logo\",\"design\",\"tool\"]\n  },\n  {\n    \"name\": \"frown\",\n    \"categories\": [\"emoji\",\"account\"],\n    \"tags\": [\"emoji\",\"face\",\"bad\",\"sad\",\"emotion\"]\n  },\n  {\n    \"name\": \"fuel\",\n    \"categories\": [\"transportation\",\"navigation\"],\n    \"tags\": [\"filling-station\",\"gas\",\"petrol\",\"tank\"]\n  },\n  {\n    \"name\": \"fullscreen\",\n    \"categories\": [\"layout\",\"multimedia\",\"design\",\"photography\"],\n    \"tags\": [\"expand\",\"zoom\",\"preview\",\"focus\",\"camera\",\"lens\",\"image\"]\n  },\n  {\n    \"name\": \"funnel-plus\",\n    \"categories\": [\"layout\"],\n    \"tags\": [\"filter\",\"hopper\",\"add\",\"create\",\"new\"]\n  },\n  {\n    \"name\": \"funnel-x\",\n    \"categories\": [\"layout\"],\n    \"tags\": [\"filter\",\"hopper\",\"remove\",\"delete\"]\n  },\n  {\n    \"name\": \"funnel\",\n    \"categories\": [\"layout\"],\n    \"tags\": [\"filter\",\"hopper\"]\n  },\n  {\n    \"name\": \"gallery-horizontal-end\",\n    \"categories\": [\"layout\",\"design\",\"development\",\"photography\",\"multimedia\",\"files\"],\n    \"tags\": [\"carousel\",\"pictures\",\"images\",\"scroll\",\"swipe\",\"album\",\"portfolio\",\"history\",\"versions\",\"backup\",\"time machine\"]\n  },\n  {\n    \"name\": \"gallery-horizontal\",\n    \"categories\": [\"layout\",\"design\",\"development\",\"photography\",\"multimedia\"],\n    \"tags\": [\"carousel\",\"pictures\",\"images\",\"scroll\",\"swipe\",\"album\",\"portfolio\"]\n  },\n  {\n    \"name\": \"gallery-thumbnails\",\n    \"categories\": [\"layout\",\"design\",\"development\",\"photography\",\"multimedia\"],\n    \"tags\": [\"carousel\",\"pictures\",\"images\",\"album\",\"portfolio\",\"preview\"]\n  },\n  {\n    \"name\": \"gallery-vertical-end\",\n    \"categories\": [\"layout\",\"design\",\"development\",\"photography\",\"multimedia\",\"files\"],\n    \"tags\": [\"carousel\",\"pictures\",\"images\",\"scroll\",\"swipe\",\"album\",\"portfolio\",\"history\",\"versions\",\"backup\",\"time machine\"]\n  },\n  {\n    \"name\": \"gallery-vertical\",\n    \"categories\": [\"layout\",\"design\",\"development\",\"photography\",\"multimedia\"],\n    \"tags\": [\"carousel\",\"pictures\",\"images\",\"scroll\",\"swipe\",\"album\",\"portfolio\"]\n  },\n  {\n    \"name\": \"gamepad-2\",\n    \"categories\": [\"gaming\",\"devices\"],\n    \"tags\": [\"console\"]\n  },\n  {\n    \"name\": \"gamepad-directional\",\n    \"categories\": [\"gaming\",\"devices\"],\n    \"tags\": [\"direction\",\"arrow\",\"controller\",\"navigation\",\"button\",\"move\",\"pointer\",\"arrowhead\",\"console\",\"game\",\"gaming\"]\n  },\n  {\n    \"name\": \"gamepad\",\n    \"categories\": [\"gaming\",\"devices\"],\n    \"tags\": [\"console\"]\n  },\n  {\n    \"name\": \"gauge\",\n    \"categories\": [\"transportation\",\"sports\",\"science\"],\n    \"tags\": [\"dashboard\",\"dial\",\"meter\",\"speed\",\"pressure\",\"measure\",\"level\"]\n  },\n  {\n    \"name\": \"gavel\",\n    \"categories\": [\"navigation\",\"tools\"],\n    \"tags\": [\"justice\",\"law\",\"court\",\"judgment\",\"legal\",\"hands\",\"penalty\",\"decision\",\"authority\",\"hammer\",\"mallet\"]\n  },\n  {\n    \"name\": \"gem\",\n    \"categories\": [\"gaming\",\"development\",\"finance\"],\n    \"tags\": [\"diamond\",\"crystal\",\"ruby\",\"jewellery\",\"price\",\"special\",\"present\",\"gift\",\"ring\",\"wedding\",\"proposal\",\"marriage\",\"rubygems\"]\n  },\n  {\n    \"name\": \"georgian-lari\",\n    \"categories\": [\"finance\"],\n    \"tags\": [\"currency\",\"money\",\"payment\"]\n  },\n  {\n    \"name\": \"ghost\",\n    \"categories\": [\"gaming\"],\n    \"tags\": [\"pac-man\",\"spooky\"]\n  },\n  {\n    \"name\": \"gift\",\n    \"categories\": [\"gaming\",\"account\"],\n    \"tags\": [\"present\",\"box\",\"birthday\",\"party\"]\n  },\n  {\n    \"name\": \"git-branch-minus\",\n    \"categories\": [\"development\"],\n    \"tags\": [\"code\",\"version control\",\"vcs\",\"repository\",\"delete\",\"remove\",\"-\"]\n  },\n  {\n    \"name\": \"git-branch-plus\",\n    \"categories\": [\"development\"],\n    \"tags\": [\"code\",\"version control\",\"vcs\",\"repository\",\"add\",\"create\",\"+\"]\n  },\n  {\n    \"name\": \"git-branch\",\n    \"categories\": [\"development\"],\n    \"tags\": [\"code\",\"version control\",\"vcs\",\"repository\"]\n  },\n  {\n    \"name\": \"git-commit-horizontal\",\n    \"categories\": [\"development\",\"navigation\"],\n    \"tags\": [\"code\",\"version control\",\"waypoint\",\"stop\",\"station\"]\n  },\n  {\n    \"name\": \"git-commit-vertical\",\n    \"categories\": [\"development\",\"navigation\"],\n    \"tags\": [\"code\",\"version control\",\"waypoint\",\"stop\",\"station\"]\n  },\n  {\n    \"name\": \"git-compare-arrows\",\n    \"categories\": [\"development\",\"arrows\"],\n    \"tags\": [\"code\",\"version control\",\"diff\"]\n  },\n  {\n    \"name\": \"git-compare\",\n    \"categories\": [\"development\"],\n    \"tags\": [\"code\",\"version control\",\"diff\"]\n  },\n  {\n    \"name\": \"git-fork\",\n    \"categories\": [\"development\"],\n    \"tags\": [\"code\",\"version control\"]\n  },\n  {\n    \"name\": \"git-graph\",\n    \"categories\": [\"development\"],\n    \"tags\": [\"code\",\"version control\",\"commit graph\",\"commits\",\"gitlens\"]\n  },\n  {\n    \"name\": \"git-merge-conflict\",\n    \"categories\": [\"development\"],\n    \"tags\": [\"code\",\"version control\",\"commits\",\"diff\",\"error\",\"conflict\"]\n  },\n  {\n    \"name\": \"git-merge\",\n    \"categories\": [\"development\"],\n    \"tags\": [\"code\",\"version control\"]\n  },\n  {\n    \"name\": \"git-pull-request-arrow\",\n    \"categories\": [\"development\",\"arrows\"],\n    \"tags\": [\"code\",\"version control\",\"open\"]\n  },\n  {\n    \"name\": \"git-pull-request-closed\",\n    \"categories\": [\"development\"],\n    \"tags\": [\"code\",\"version control\",\"rejected\",\"closed\",\"cancelled\",\"x\"]\n  },\n  {\n    \"name\": \"git-pull-request-create-arrow\",\n    \"categories\": [\"development\",\"arrows\"],\n    \"tags\": [\"code\",\"version control\",\"open\",\"plus\",\"add\",\"+\"]\n  },\n  {\n    \"name\": \"git-pull-request-create\",\n    \"categories\": [\"development\"],\n    \"tags\": [\"code\",\"version control\",\"open\",\"plus\",\"add\",\"+\"]\n  },\n  {\n    \"name\": \"git-pull-request-draft\",\n    \"categories\": [\"development\"],\n    \"tags\": [\"code\",\"version control\",\"open\",\"draft\",\"dashed\"]\n  },\n  {\n    \"name\": \"git-pull-request\",\n    \"categories\": [\"development\"],\n    \"tags\": [\"code\",\"version control\",\"open\"]\n  },\n  {\n    \"name\": \"glass-water\",\n    \"categories\": [\"food-beverage\"],\n    \"tags\": [\"beverage\",\"drink\",\"glass\",\"water\"]\n  },\n  {\n    \"name\": \"glasses\",\n    \"categories\": [\"accessibility\"],\n    \"tags\": [\"glasses\",\"spectacles\"]\n  },\n  {\n    \"name\": \"globe-check\",\n    \"categories\": [\"navigation\"],\n    \"tags\": [\"world\",\"browser\",\"language\",\"translate\",\"internet\",\"web\",\"check\",\"verified\",\"success\",\"valid\",\"available\",\"online\",\"status\"]\n  },\n  {\n    \"name\": \"globe-lock\",\n    \"categories\": [\"security\",\"development\",\"devices\"],\n    \"tags\": [\"vpn\",\"private\",\"privacy\",\"network\",\"world\",\"browser\",\"security\",\"encryption\",\"protection\",\"connection\"]\n  },\n  {\n    \"name\": \"globe-off\",\n    \"categories\": [\"navigation\",\"connectivity\",\"devices\"],\n    \"tags\": [\"globe\",\"earth\",\"planet\",\"disable\",\"mute\",\"off\",\"hide\",\"avoid\",\"world\",\"browser\",\"language\",\"translate\",\"internet\",\"offline\",\"disconnected\",\"network\",\"connection\",\"no connection\",\"network failure\",\"signal off\"]\n  },\n  {\n    \"name\": \"globe-x\",\n    \"categories\": [\"connectivity\",\"devices\",\"navigation\"],\n    \"tags\": [\"globe\",\"internet\",\"offline\",\"disconnected\",\"network\",\"connection\",\"world\",\"no connection\",\"network failure\",\"signal off\"]\n  },\n  {\n    \"name\": \"globe\",\n    \"categories\": [\"navigation\"],\n    \"tags\": [\"world\",\"browser\",\"language\",\"translate\"]\n  },\n  {\n    \"name\": \"goal\",\n    \"categories\": [\"gaming\"],\n    \"tags\": [\"flag\",\"bullseye\"]\n  },\n  {\n    \"name\": \"gpu\",\n    \"categories\": [\"devices\",\"gaming\"],\n    \"tags\": [\"processor\",\"cores\",\"technology\",\"computer\",\"chip\",\"circuit\",\"specs\",\"graphics processing unit\",\"video card\",\"display adapter\",\"gddr\",\"rendering\",\"digital image processing\",\"crypto mining\"]\n  },\n  {\n    \"name\": \"graduation-cap\",\n    \"categories\": [\"buildings\"],\n    \"tags\": [\"school\",\"university\",\"learn\",\"study\",\"mortarboard\",\"education\",\"ceremony\",\"academic\",\"hat\",\"diploma\",\"bachlor's\",\"master's\",\"doctorate\"]\n  },\n  {\n    \"name\": \"grape\",\n    \"categories\": [\"food-beverage\"],\n    \"tags\": [\"fruit\",\"wine\",\"food\"]\n  },\n  {\n    \"name\": \"grid-2x2-check\",\n    \"categories\": [\"text\",\"layout\",\"math\"],\n    \"tags\": [\"table\",\"rows\",\"columns\",\"blocks\",\"plot\",\"land\",\"geometry\",\"measure\",\"data\",\"size\",\"width\",\"height\",\"distance\",\"surface area\",\"square meter\",\"acre\"]\n  },\n  {\n    \"name\": \"grid-2x2-plus\",\n    \"categories\": [\"text\",\"layout\",\"math\"],\n    \"tags\": [\"table\",\"rows\",\"columns\",\"blocks\",\"plot\",\"land\",\"geometry\",\"measure\",\"data\",\"size\",\"width\",\"height\",\"distance\",\"surface area\",\"square meter\",\"acre\"]\n  },\n  {\n    \"name\": \"grid-2x2-x\",\n    \"categories\": [\"text\",\"layout\",\"math\"],\n    \"tags\": [\"table\",\"rows\",\"columns\",\"data\",\"blocks\",\"plot\",\"land\",\"geometry\",\"measure\",\"size\",\"width\",\"height\",\"distance\",\"surface area\",\"square meter\",\"acre\"]\n  },\n  {\n    \"name\": \"grid-2x2\",\n    \"categories\": [\"text\",\"layout\",\"design\",\"math\"],\n    \"tags\": [\"table\",\"rows\",\"columns\",\"blocks\",\"plot\",\"land\",\"geometry\",\"measure\",\"size\",\"width\",\"height\",\"distance\",\"surface area\",\"square meter\",\"acre\",\"window\",\"skylight\"]\n  },\n  {\n    \"name\": \"grid-3x2\",\n    \"categories\": [\"text\",\"math\",\"layout\",\"design\"],\n    \"tags\": [\"table\",\"rows\",\"columns\",\"blocks\",\"plot\",\"land\",\"geometry\",\"measure\",\"size\",\"width\",\"height\",\"distance\",\"surface area\",\"square meter\",\"acre\",\"window\"]\n  },\n  {\n    \"name\": \"grid-3x3\",\n    \"categories\": [\"text\",\"layout\",\"design\"],\n    \"tags\": [\"table\",\"rows\",\"columns\"]\n  },\n  {\n    \"name\": \"grip-horizontal\",\n    \"categories\": [\"layout\"],\n    \"tags\": [\"grab\",\"dots\",\"handle\",\"move\",\"drag\"]\n  },\n  {\n    \"name\": \"grip-vertical\",\n    \"categories\": [\"layout\"],\n    \"tags\": [\"grab\",\"dots\",\"handle\",\"move\",\"drag\"]\n  },\n  {\n    \"name\": \"grip\",\n    \"categories\": [\"layout\"],\n    \"tags\": [\"grab\",\"dots\",\"handle\",\"move\",\"drag\"]\n  },\n  {\n    \"name\": \"group\",\n    \"categories\": [\"files\"],\n    \"tags\": [\"cubes\",\"packages\",\"parts\",\"units\",\"collection\",\"cluster\",\"gather\",\"dashed\"]\n  },\n  {\n    \"name\": \"guitar\",\n    \"categories\": [\"multimedia\"],\n    \"tags\": [\"acoustic\",\"instrument\",\"strings\",\"riff\",\"rock\",\"band\",\"country\",\"concert\",\"performance\",\"play\",\"lead\",\"loud\",\"music\",\"audio\",\"sound\",\"noise\"]\n  },\n  {\n    \"name\": \"ham\",\n    \"categories\": [\"food-beverage\"],\n    \"tags\": [\"food\",\"pork\",\"pig\",\"meat\",\"bone\",\"hock\",\"knuckle\",\"gammon\",\"cured\"]\n  },\n  {\n    \"name\": \"hamburger\",\n    \"categories\": [\"food-beverage\"],\n    \"tags\": [\"burger\",\"cheeseburger\",\"meat\",\"beef\",\"patty\",\"bun\",\"fast food\",\"junk food\",\"takeaway\",\"takeout\",\"snack\",\"dish\",\"restaurant\",\"lunch\",\"meal\",\"savory\",\"savoury\",\"cookery\",\"cooking\",\"grilled\",\"barbecue\",\"barbeque\",\"bbq\",\"lettuce\",\"tomato\",\"relish\",\"pickles\",\"onions\",\"ketchup\",\"mustard\",\"mayonnaise\"]\n  },\n  {\n    \"name\": \"hammer\",\n    \"categories\": [\"tools\",\"home\"],\n    \"tags\": [\"mallet\",\"nails\",\"diy\",\"toolbox\",\"build\",\"construction\"]\n  },\n  {\n    \"name\": \"hand-coins\",\n    \"categories\": [\"finance\",\"account\"],\n    \"tags\": [\"savings\",\"banking\",\"money\",\"finance\",\"offers\",\"mortgage\",\"payment\",\"received\",\"wage\",\"payroll\",\"allowance\",\"pocket money\",\"handout\",\"pennies\"]\n  },\n  {\n    \"name\": \"hand-fist\",\n    \"categories\": [\"social\",\"emoji\",\"communication\",\"sports\"],\n    \"tags\": [\"clench\",\"strength\",\"power\",\"unity\",\"solidarity\",\"rebellion\",\"victory\",\"triumph\",\"support\",\"fight\",\"combat\",\"brawl\"]\n  },\n  {\n    \"name\": \"hand-grab\",\n    \"categories\": [\"cursors\",\"design\",\"layout\"],\n    \"tags\": [\"hand\"]\n  },\n  {\n    \"name\": \"hand-heart\",\n    \"categories\": [\"social\"],\n    \"tags\": [\"love\",\"like\",\"emotion\"]\n  },\n  {\n    \"name\": \"hand-helping\",\n    \"categories\": [\"emoji\"],\n    \"tags\": [\"agreement\",\"help\",\"proposal\",\"charity\",\"begging\",\"terms\"]\n  },\n  {\n    \"name\": \"hand-metal\",\n    \"categories\": [\"emoji\",\"multimedia\"],\n    \"tags\": [\"rock\"]\n  },\n  {\n    \"name\": \"hand-platter\",\n    \"categories\": [\"food-beverage\",\"people\"],\n    \"tags\": [\"waiter\",\"waitress\",\"restaurant\",\"table service\",\"served\",\"dinner\",\"dining\",\"meal\",\"course\",\"luxury\"]\n  },\n  {\n    \"name\": \"hand\",\n    \"categories\": [\"cursors\",\"accessibility\"],\n    \"tags\": [\"wave\",\"move\",\"mouse\",\"grab\"]\n  },\n  {\n    \"name\": \"handbag\",\n    \"categories\": [\"shopping\",\"transportation\"],\n    \"tags\": [\"bag\",\"baggage\",\"carry\",\"clutch\",\"fashion\",\"luggage\",\"purse\",\"tote\",\"travel\"]\n  },\n  {\n    \"name\": \"handshake\",\n    \"categories\": [\"account\",\"social\",\"communication\",\"finance\",\"security\"],\n    \"tags\": [\"agreement\",\"partnership\",\"deal\",\"business\",\"assistance\",\"cooperation\",\"friendship\",\"union\",\"terms\"]\n  },\n  {\n    \"name\": \"hard-drive-download\",\n    \"categories\": [\"development\",\"devices\",\"arrows\",\"files\"],\n    \"tags\": [\"computer\",\"server\",\"memory\",\"data\",\"ssd\",\"disk\",\"hard disk\",\"save\"]\n  },\n  {\n    \"name\": \"hard-drive-upload\",\n    \"categories\": [\"development\",\"devices\",\"arrows\",\"files\"],\n    \"tags\": [\"computer\",\"server\",\"memory\",\"data\",\"ssd\",\"disk\",\"hard disk\",\"save\"]\n  },\n  {\n    \"name\": \"hard-drive\",\n    \"categories\": [\"development\",\"devices\"],\n    \"tags\": [\"computer\",\"server\",\"memory\",\"data\",\"ssd\",\"disk\",\"hard disk\",\"storage\",\"hardware\",\"backup\",\"media\"]\n  },\n  {\n    \"name\": \"hard-hat\",\n    \"categories\": [\"tools\"],\n    \"tags\": [\"helmet\",\"construction\",\"safety\",\"savety\"]\n  },\n  {\n    \"name\": \"hash\",\n    \"categories\": [\"text\",\"social\"],\n    \"tags\": [\"hashtag\",\"number\",\"pound\"]\n  },\n  {\n    \"name\": \"hat-glasses\",\n    \"categories\": [\"social\",\"account\",\"security\"],\n    \"tags\": [\"incognito\",\"disguise\",\"costume\",\"masked\",\"anonymous\",\"anonymity\",\"privacy\",\"private browsing\",\"stealth\",\"hidden\",\"undercover\",\"cloak\",\"invisible\",\"ghost\",\"spy\",\"agent\",\"detective\",\"identity\",\"cap\",\"fedora\",\"spectacles\",\"shades\",\"sunglasses\",\"eyewear\"]\n  },\n  {\n    \"name\": \"haze\",\n    \"categories\": [\"weather\"],\n    \"tags\": [\"mist\",\"fog\"]\n  },\n  {\n    \"name\": \"hd\",\n    \"categories\": [\"devices\",\"multimedia\"],\n    \"tags\": [\"tv\",\"resolution\",\"video\",\"high definition\",\"720p\",\"1080p\"]\n  },\n  {\n    \"name\": \"hdmi-port\",\n    \"categories\": [\"devices\",\"multimedia\",\"gaming\"],\n    \"tags\": [\"socket\",\"plug\",\"slot\",\"controller\",\"connector\",\"interface\",\"console\",\"signal\",\"audio\",\"video\",\"visual\",\"av\",\"data\",\"input\",\"output\"]\n  },\n  {\n    \"name\": \"heading-1\",\n    \"categories\": [\"text\"],\n    \"tags\": [\"h1\",\"html\",\"markup\",\"markdown\"]\n  },\n  {\n    \"name\": \"heading-2\",\n    \"categories\": [\"text\"],\n    \"tags\": [\"h2\",\"html\",\"markup\",\"markdown\"]\n  },\n  {\n    \"name\": \"heading-3\",\n    \"categories\": [\"text\"],\n    \"tags\": [\"h3\",\"html\",\"markup\",\"markdown\"]\n  },\n  {\n    \"name\": \"heading-4\",\n    \"categories\": [\"text\"],\n    \"tags\": [\"h4\",\"html\",\"markup\",\"markdown\"]\n  },\n  {\n    \"name\": \"heading-5\",\n    \"categories\": [\"text\"],\n    \"tags\": [\"h5\",\"html\",\"markup\",\"markdown\"]\n  },\n  {\n    \"name\": \"heading-6\",\n    \"categories\": [\"text\"],\n    \"tags\": [\"h6\",\"html\",\"markup\",\"markdown\"]\n  },\n  {\n    \"name\": \"heading\",\n    \"categories\": [\"text\"],\n    \"tags\": [\"h1\",\"html\",\"markup\",\"markdown\"]\n  },\n  {\n    \"name\": \"headphone-off\",\n    \"categories\": [\"multimedia\",\"connectivity\",\"communication\",\"devices\",\"gaming\"],\n    \"tags\": [\"music\",\"audio\",\"sound\",\"mute\",\"off\"]\n  },\n  {\n    \"name\": \"headphones\",\n    \"categories\": [\"multimedia\",\"connectivity\",\"devices\",\"files\",\"gaming\"],\n    \"tags\": [\"music\",\"audio\",\"sound\"]\n  },\n  {\n    \"name\": \"headset\",\n    \"categories\": [\"multimedia\",\"connectivity\",\"devices\",\"files\",\"gaming\"],\n    \"tags\": [\"music\",\"audio\",\"sound\",\"gaming\",\"headphones\",\"headset\",\"call\",\"center\",\"phone\",\"telephone\",\"voip\",\"video\"]\n  },\n  {\n    \"name\": \"heart-crack\",\n    \"categories\": [\"emoji\"],\n    \"tags\": [\"heartbreak\",\"sadness\",\"emotion\"]\n  },\n  {\n    \"name\": \"heart-handshake\",\n    \"categories\": [\"emoji\",\"account\",\"security\"],\n    \"tags\": [\"agreement\",\"charity\",\"help\",\"deal\",\"terms\",\"emotion\",\"together\",\"handshake\"]\n  },\n  {\n    \"name\": \"heart-minus\",\n    \"categories\": [\"medical\",\"account\",\"multimedia\",\"gaming\",\"social\"],\n    \"tags\": [\"unlike\",\"unfavorite\",\"remove\",\"delete\",\"damage\"]\n  },\n  {\n    \"name\": \"heart-off\",\n    \"categories\": [\"social\",\"multimedia\"],\n    \"tags\": [\"unlike\",\"dislike\",\"hate\",\"emotion\"]\n  },\n  {\n    \"name\": \"heart-plus\",\n    \"categories\": [\"medical\",\"account\",\"multimedia\",\"gaming\",\"social\"],\n    \"tags\": [\"plus\",\"like\",\"favorite\",\"add\",\"health\",\"support\"]\n  },\n  {\n    \"name\": \"heart-pulse\",\n    \"categories\": [\"medical\"],\n    \"tags\": [\"heartbeat\",\"pulse\",\"health\",\"medical\",\"blood pressure\",\"cardiac\",\"systole\",\"diastole\"]\n  },\n  {\n    \"name\": \"heart-x\",\n    \"categories\": [\"social\",\"multimedia\",\"design\",\"shapes\"],\n    \"tags\": [\"unlike\",\"unfavorite\",\"remove\",\"reject\",\"dismiss\",\"delete\",\"clear\"]\n  },\n  {\n    \"name\": \"heart\",\n    \"categories\": [\"medical\",\"social\",\"multimedia\",\"emoji\",\"gaming\",\"shapes\"],\n    \"tags\": [\"like\",\"love\",\"emotion\",\"suit\",\"playing\",\"cards\"]\n  },\n  {\n    \"name\": \"heater\",\n    \"categories\": [\"home\",\"devices\",\"travel\"],\n    \"tags\": [\"heating\",\"warmth\",\"comfort\",\"fire\",\"stove\",\"electric\",\"electronics\",\"amenities\"]\n  },\n  {\n    \"name\": \"helicopter\",\n    \"categories\": [\"transportation\",\"travel\"],\n    \"tags\": [\"transport\",\"flying\",\"rotor\",\"aviation\",\"helipad\",\"gear\",\"flyer\",\"technology\",\"helicopter\",\"aircraft\",\"vehicle\"]\n  },\n  {\n    \"name\": \"hexagon\",\n    \"categories\": [\"shapes\",\"development\"],\n    \"tags\": [\"shape\",\"node.js\",\"logo\"]\n  },\n  {\n    \"name\": \"highlighter\",\n    \"categories\": [\"text\",\"design\"],\n    \"tags\": [\"mark\",\"text\"]\n  },\n  {\n    \"name\": \"history\",\n    \"categories\": [\"arrows\",\"time\"],\n    \"tags\": [\"time\",\"redo\",\"undo\",\"rewind\",\"timeline\",\"version\",\"time machine\",\"backup\",\"rotate\",\"ccw\"]\n  },\n  {\n    \"name\": \"hop-off\",\n    \"categories\": [\"food-beverage\"],\n    \"tags\": [\"beer\",\"brewery\",\"drink\",\"hop free\",\"allergy\",\"intolerance\",\"diet\"]\n  },\n  {\n    \"name\": \"hop\",\n    \"categories\": [\"food-beverage\"],\n    \"tags\": [\"beer\",\"brewery\",\"drink\"]\n  },\n  {\n    \"name\": \"hospital\",\n    \"categories\": [\"medical\",\"buildings\",\"navigation\",\"travel\"],\n    \"tags\": [\"infirmary\",\"sanatorium\",\"healthcare\",\"doctor\",\"hospice\",\"clinic\",\"emergency room\",\"ward\",\"building\",\"medical\",\"vet\"]\n  },\n  {\n    \"name\": \"hotel\",\n    \"categories\": [\"buildings\",\"navigation\",\"travel\"],\n    \"tags\": [\"building\",\"hostel\",\"motel\",\"inn\"]\n  },\n  {\n    \"name\": \"hourglass\",\n    \"categories\": [\"time\",\"gaming\"],\n    \"tags\": [\"timer\",\"time\",\"sandglass\"]\n  },\n  {\n    \"name\": \"house-heart\",\n    \"categories\": [\"home\",\"buildings\",\"medical\"],\n    \"tags\": [\"home sweet home\",\"abode\",\"building\",\"residence\",\"healthy living\",\"lifestyle\"]\n  },\n  {\n    \"name\": \"house-plug\",\n    \"categories\": [\"buildings\",\"home\",\"sustainability\"],\n    \"tags\": [\"home\",\"living\",\"building\",\"residence\",\"architecture\",\"autarky\",\"energy\"]\n  },\n  {\n    \"name\": \"house-plus\",\n    \"categories\": [\"buildings\",\"medical\"],\n    \"tags\": [\"home\",\"living\",\"medical\",\"new\",\"addition\",\"building\",\"residence\",\"architecture\"]\n  },\n  {\n    \"name\": \"house-wifi\",\n    \"categories\": [\"home\",\"buildings\",\"connectivity\"],\n    \"tags\": [\"home\",\"living\",\"building\",\"wifi\",\"connectivity\"]\n  },\n  {\n    \"name\": \"house\",\n    \"categories\": [\"buildings\",\"home\",\"navigation\"],\n    \"tags\": [\"home\",\"living\",\"building\",\"residence\",\"architecture\"]\n  },\n  {\n    \"name\": \"ice-cream-bowl\",\n    \"categories\": [\"food-beverage\"],\n    \"tags\": [\"gelato\",\"food\",\"dessert\",\"dish\",\"restaurant\",\"course\",\"meal\"]\n  },\n  {\n    \"name\": \"ice-cream-cone\",\n    \"categories\": [\"food-beverage\"],\n    \"tags\": [\"gelato\",\"food\"]\n  },\n  {\n    \"name\": \"id-card-lanyard\",\n    \"categories\": [\"security\",\"account\"],\n    \"tags\": [\"id-card\",\"id-card-lanyard\",\"identity\",\"employee\",\"gate-pass\",\"badge\"]\n  },\n  {\n    \"name\": \"id-card\",\n    \"categories\": [\"security\",\"account\"],\n    \"tags\": [\"card\",\"badge\",\"identity\",\"authentication\",\"secure\"]\n  },\n  {\n    \"name\": \"image-down\",\n    \"categories\": [\"photography\",\"text\",\"multimedia\",\"files\"],\n    \"tags\": [\"picture\",\"photo\",\"download\",\"save\",\"export\"]\n  },\n  {\n    \"name\": \"image-minus\",\n    \"categories\": [\"photography\",\"multimedia\",\"files\"],\n    \"tags\": [\"remove\",\"delete\"]\n  },\n  {\n    \"name\": \"image-off\",\n    \"categories\": [\"photography\",\"multimedia\",\"files\"],\n    \"tags\": [\"picture\",\"photo\"]\n  },\n  {\n    \"name\": \"image-play\",\n    \"categories\": [\"photography\",\"text\",\"multimedia\",\"files\"],\n    \"tags\": [\"picture\",\"gif\",\"photo\"]\n  },\n  {\n    \"name\": \"image-plus\",\n    \"categories\": [\"photography\",\"multimedia\",\"files\"],\n    \"tags\": [\"add\",\"create\",\"picture\"]\n  },\n  {\n    \"name\": \"image-up\",\n    \"categories\": [\"photography\",\"text\",\"multimedia\",\"files\"],\n    \"tags\": [\"picture\",\"photo\",\"upload\",\"import\"]\n  },\n  {\n    \"name\": \"image-upscale\",\n    \"categories\": [\"photography\",\"multimedia\"],\n    \"tags\": [\"resize\",\"picture\",\"sharpen\",\"increase\"]\n  },\n  {\n    \"name\": \"image\",\n    \"categories\": [\"photography\",\"text\",\"multimedia\",\"files\"],\n    \"tags\": [\"picture\",\"photo\"]\n  },\n  {\n    \"name\": \"images\",\n    \"categories\": [\"photography\",\"text\",\"multimedia\",\"files\"],\n    \"tags\": [\"picture\",\"photo\",\"multiple\",\"copy\",\"gallery\",\"album\",\"collection\",\"slideshow\",\"showcase\"]\n  },\n  {\n    \"name\": \"import\",\n    \"categories\": [\"arrows\",\"files\"],\n    \"tags\": [\"save\"]\n  },\n  {\n    \"name\": \"inbox\",\n    \"categories\": [\"account\",\"mail\"],\n    \"tags\": [\"email\"]\n  },\n  {\n    \"name\": \"indian-rupee\",\n    \"categories\": [\"finance\"],\n    \"tags\": [\"currency\",\"money\",\"payment\"]\n  },\n  {\n    \"name\": \"infinity\",\n    \"categories\": [\"multimedia\"],\n    \"tags\": [\"unlimited\",\"forever\",\"loop\",\"math\"]\n  },\n  {\n    \"name\": \"info\",\n    \"categories\": [\"accessibility\",\"notifications\"],\n    \"tags\": [\"about\",\"advice\",\"clue\",\"details\",\"help\",\"hint\",\"indicator\",\"information\",\"knowledge\",\"notice\",\"status\",\"support\",\"tooltip\"]\n  },\n  {\n    \"name\": \"inspection-panel\",\n    \"categories\": [\"tools\"],\n    \"tags\": [\"access\",\"cover\",\"tile\",\"metal\",\"materials\",\"screws\"]\n  },\n  {\n    \"name\": \"italic\",\n    \"categories\": [\"text\"],\n    \"tags\": [\"oblique\",\"text\",\"format\"]\n  },\n  {\n    \"name\": \"iteration-ccw\",\n    \"categories\": [\"arrows\",\"design\"],\n    \"tags\": [\"arrow\",\"right\"]\n  },\n  {\n    \"name\": \"iteration-cw\",\n    \"categories\": [\"arrows\",\"design\"],\n    \"tags\": [\"arrow\",\"left\"]\n  },\n  {\n    \"name\": \"japanese-yen\",\n    \"categories\": [\"finance\"],\n    \"tags\": [\"currency\",\"money\",\"payment\"]\n  },\n  {\n    \"name\": \"joystick\",\n    \"categories\": [\"gaming\",\"devices\"],\n    \"tags\": [\"game\",\"console\",\"control stick\"]\n  },\n  {\n    \"name\": \"kanban\",\n    \"categories\": [\"charts\",\"development\",\"design\"],\n    \"tags\": [\"projects\",\"manage\",\"overview\",\"board\",\"tickets\",\"issues\",\"roadmap\",\"plan\",\"intentions\",\"productivity\",\"work\",\"agile\",\"code\",\"coding\"]\n  },\n  {\n    \"name\": \"kayak\",\n    \"categories\": [\"transportation\"],\n    \"tags\": [\"kayak\",\"boat\",\"paddle\",\"water\",\"sport\",\"recreation\",\"adventure\",\"outdoors\",\"equipment\",\"lake\",\"ocean\"]\n  },\n  {\n    \"name\": \"key-round\",\n    \"categories\": [\"security\",\"account\"],\n    \"tags\": [\"password\",\"login\",\"authentication\",\"secure\",\"unlock\"]\n  },\n  {\n    \"name\": \"key-square\",\n    \"categories\": [\"security\",\"account\"],\n    \"tags\": [\"password\",\"login\",\"authentication\",\"secure\",\"unlock\",\"car key\"]\n  },\n  {\n    \"name\": \"key\",\n    \"categories\": [\"security\",\"account\"],\n    \"tags\": [\"password\",\"login\",\"authentication\",\"secure\",\"unlock\",\"keychain\",\"key ring\",\"fob\"]\n  },\n  {\n    \"name\": \"keyboard-music\",\n    \"categories\": [\"multimedia\",\"devices\"],\n    \"tags\": [\"music\",\"audio\",\"sound\",\"noise\",\"notes\",\"keys\",\"chord\",\"octave\",\"midi\",\"controller\",\"instrument\",\"electric\",\"signal\",\"digital\",\"studio\",\"production\",\"producer\",\"pianist\",\"piano\",\"play\",\"performance\",\"concert\"]\n  },\n  {\n    \"name\": \"keyboard-off\",\n    \"categories\": [\"devices\",\"text\",\"development\"],\n    \"tags\": [\"unkeys\",\"layout\",\"spell\",\"settings\",\"mouse\"]\n  },\n  {\n    \"name\": \"keyboard\",\n    \"categories\": [\"text\",\"devices\",\"development\"],\n    \"tags\": [\"layout\",\"spell\",\"settings\",\"mouse\"]\n  },\n  {\n    \"name\": \"lamp-ceiling\",\n    \"categories\": [\"home\"],\n    \"tags\": [\"lighting\",\"household\",\"home\",\"furniture\"]\n  },\n  {\n    \"name\": \"lamp-desk\",\n    \"categories\": [\"home\"],\n    \"tags\": [\"lighting\",\"household\",\"office\",\"desk\",\"home\",\"furniture\"]\n  },\n  {\n    \"name\": \"lamp-floor\",\n    \"categories\": [\"home\"],\n    \"tags\": [\"lighting\",\"household\",\"floor\",\"home\",\"furniture\"]\n  },\n  {\n    \"name\": \"lamp-wall-down\",\n    \"categories\": [\"home\"],\n    \"tags\": [\"lighting\",\"household\",\"wall\",\"home\",\"furniture\"]\n  },\n  {\n    \"name\": \"lamp-wall-up\",\n    \"categories\": [\"home\"],\n    \"tags\": [\"lighting\",\"household\",\"wall\",\"home\",\"furniture\"]\n  },\n  {\n    \"name\": \"lamp\",\n    \"categories\": [\"home\"],\n    \"tags\": [\"lighting\",\"household\",\"home\",\"furniture\"]\n  },\n  {\n    \"name\": \"land-plot\",\n    \"categories\": [\"design\",\"tools\",\"math\",\"sports\",\"gaming\"],\n    \"tags\": [\"area\",\"surface\",\"square metres\",\"allotment\",\"parcel\",\"property\",\"plane\",\"acres\",\"measure\",\"distance\",\"isometric\",\"flag\",\"golf course\",\"hole\"]\n  },\n  {\n    \"name\": \"landmark\",\n    \"categories\": [\"finance\",\"navigation\",\"buildings\"],\n    \"tags\": [\"bank\",\"building\",\"capitol\",\"finance\",\"money\",\"museum\",\"art gallery\",\"hall\",\"institute\",\"pediment\",\"portico\",\"doric\",\"columns\",\"pillars\",\"classical\",\"architecture\",\"government\",\"institution\",\"monument\",\"site\",\"history\",\"historic\",\"library\",\"temple\",\"ancient\",\"structure\"]\n  },\n  {\n    \"name\": \"languages\",\n    \"categories\": [\"text\"],\n    \"tags\": [\"translate\"]\n  },\n  {\n    \"name\": \"laptop-minimal-check\",\n    \"categories\": [\"devices\",\"notifications\"],\n    \"tags\": [\"computer\",\"screen\",\"remote\",\"success\",\"done\",\"todo\",\"tick\",\"complete\",\"task\"]\n  },\n  {\n    \"name\": \"laptop-minimal\",\n    \"categories\": [\"devices\"],\n    \"tags\": [\"computer\",\"screen\",\"remote\"]\n  },\n  {\n    \"name\": \"laptop\",\n    \"categories\": [\"devices\"],\n    \"tags\": [\"computer\",\"screen\",\"remote\"]\n  },\n  {\n    \"name\": \"lasso-select\",\n    \"categories\": [\"arrows\",\"design\",\"cursors\"],\n    \"tags\": [\"select\",\"cursor\"]\n  },\n  {\n    \"name\": \"lasso\",\n    \"categories\": [\"design\",\"cursors\"],\n    \"tags\": [\"select\",\"cursor\"]\n  },\n  {\n    \"name\": \"laugh\",\n    \"categories\": [\"emoji\"],\n    \"tags\": [\"emoji\",\"face\",\"happy\",\"good\",\"emotion\"]\n  },\n  {\n    \"name\": \"layers-2\",\n    \"categories\": [\"design\",\"layout\"],\n    \"tags\": [\"stack\",\"pile\",\"pages\",\"sheets\",\"paperwork\",\"copies\",\"copy\",\"duplicate\",\"double\",\"shortcuts\"]\n  },\n  {\n    \"name\": \"layers-minus\",\n    \"categories\": [\"design\",\"layout\"],\n    \"tags\": [\"stack\",\"pile\",\"pages\",\"sheets\",\"paperwork\",\"copies\",\"copy\",\"layers\",\"remove\",\"delete\"]\n  },\n  {\n    \"name\": \"layers-plus\",\n    \"categories\": [\"design\",\"layout\"],\n    \"tags\": [\"stack\",\"layers\",\"add\",\"new\",\"increase\",\"create\",\"positive\",\"copy\",\"upgrade\"]\n  },\n  {\n    \"name\": \"layers\",\n    \"categories\": [\"design\",\"layout\"],\n    \"tags\": [\"stack\",\"pile\",\"pages\",\"sheets\",\"paperwork\",\"copies\",\"copy\"]\n  },\n  {\n    \"name\": \"layout-dashboard\",\n    \"categories\": [\"design\",\"layout\"],\n    \"tags\": [\"masonry\",\"brick\"]\n  },\n  {\n    \"name\": \"layout-grid\",\n    \"categories\": [\"design\",\"layout\"],\n    \"tags\": [\"app\",\"home\",\"start\"]\n  },\n  {\n    \"name\": \"layout-list\",\n    \"categories\": [\"design\",\"layout\",\"photography\",\"text\"],\n    \"tags\": [\"todo\",\"tasks\",\"items\",\"pending\",\"image\",\"photo\"]\n  },\n  {\n    \"name\": \"layout-panel-left\",\n    \"categories\": [\"design\",\"layout\"],\n    \"tags\": [\"app\",\"home\",\"start\",\"grid\"]\n  },\n  {\n    \"name\": \"layout-panel-top\",\n    \"categories\": [\"layout\"],\n    \"tags\": [\"window\",\"webpage\",\"block\",\"section\",\"grid\",\"template\",\"structure\"]\n  },\n  {\n    \"name\": \"layout-template\",\n    \"categories\": [\"layout\"],\n    \"tags\": [\"window\",\"webpage\",\"block\",\"section\"]\n  },\n  {\n    \"name\": \"leaf\",\n    \"categories\": [\"nature\",\"sustainability\",\"seasons\"],\n    \"tags\": [\"sustainability\",\"nature\",\"energy\",\"plant\",\"autumn\"]\n  },\n  {\n    \"name\": \"leafy-green\",\n    \"categories\": [\"food-beverage\",\"emoji\",\"sustainability\"],\n    \"tags\": [\"salad\",\"lettuce\",\"vegetable\",\"chard\",\"cabbage\",\"bok choy\"]\n  },\n  {\n    \"name\": \"lectern\",\n    \"categories\": [\"communication\",\"multimedia\"],\n    \"tags\": [\"pulpit\",\"podium\",\"stand\"]\n  },\n  {\n    \"name\": \"lens-concave\",\n    \"categories\": [\"science\",\"tools\",\"shapes\"],\n    \"tags\": [\"concave\",\"lens\",\"optics\",\"light\",\"magnification\",\"curved\",\"focus\",\"refraction\",\"science\",\"physics\",\"eyeglass\",\"telescope\",\"microscope\"]\n  },\n  {\n    \"name\": \"lens-convex\",\n    \"categories\": [\"science\",\"tools\",\"shapes\"],\n    \"tags\": [\"convex\",\"lens\",\"optics\",\"magnification\",\"focus\",\"light\",\"refraction\",\"physics\",\"eyeglass\",\"telescope\",\"microscope\",\"curved\",\"science\"]\n  },\n  {\n    \"name\": \"library-big\",\n    \"categories\": [\"text\",\"photography\",\"multimedia\",\"navigation\",\"development\"],\n    \"tags\": [\"books\",\"reading\",\"written\",\"authors\",\"stories\",\"fiction\",\"novels\",\"information\",\"knowledge\",\"education\",\"high school\",\"university\",\"college\",\"academy\",\"learning\",\"study\",\"research\",\"collection\",\"vinyl\",\"records\",\"albums\",\"music\",\"package\"]\n  },\n  {\n    \"name\": \"library\",\n    \"categories\": [\"text\",\"photography\",\"multimedia\",\"navigation\",\"development\"],\n    \"tags\": [\"books\",\"reading\",\"written\",\"authors\",\"stories\",\"fiction\",\"novels\",\"information\",\"knowledge\",\"education\",\"high school\",\"university\",\"college\",\"academy\",\"learning\",\"study\",\"research\",\"collection\",\"vinyl\",\"records\",\"albums\",\"music\",\"package\"]\n  },\n  {\n    \"name\": \"life-buoy\",\n    \"categories\": [\"accessibility\",\"medical\"],\n    \"tags\": [\"preserver\",\"life belt\",\"lifesaver\",\"help\",\"rescue\",\"ship\",\"ring\",\"raft\",\"inflatable\",\"wheel\",\"donut\"]\n  },\n  {\n    \"name\": \"ligature\",\n    \"categories\": [\"text\"],\n    \"tags\": [\"text\",\"font\",\"typography\",\"alternates\",\"alternatives\"]\n  },\n  {\n    \"name\": \"lightbulb-off\",\n    \"categories\": [\"photography\"],\n    \"tags\": [\"lights\"]\n  },\n  {\n    \"name\": \"lightbulb\",\n    \"categories\": [\"photography\"],\n    \"tags\": [\"idea\",\"bright\",\"lights\"]\n  },\n  {\n    \"name\": \"line-dot-right-horizontal\",\n    \"categories\": [\"development\",\"navigation\"],\n    \"tags\": [\"code\",\"version control\",\"waypoint\",\"stop\",\"station\",\"last\",\"end\"]\n  },\n  {\n    \"name\": \"line-squiggle\",\n    \"categories\": [\"shapes\",\"math\",\"design\"],\n    \"tags\": [\"line\",\"snakes\",\"annotate\",\"curve\",\"doodle\",\"stroke\",\"pen\",\"tool\",\"gesture\",\"draw\",\"wave\",\"art\",\"road\"]\n  },\n  {\n    \"name\": \"line-style\",\n    \"categories\": [\"design\",\"tools\"],\n    \"tags\": [\"line\",\"stroke\",\"style\",\"dashed\",\"border\"]\n  },\n  {\n    \"name\": \"link-2-off\",\n    \"categories\": [\"text\"],\n    \"tags\": [\"unchain\",\"chain\"]\n  },\n  {\n    \"name\": \"link-2\",\n    \"categories\": [\"text\",\"account\"],\n    \"tags\": [\"chain\",\"url\"]\n  },\n  {\n    \"name\": \"link\",\n    \"categories\": [\"text\",\"account\"],\n    \"tags\": [\"chain\",\"url\"]\n  },\n  {\n    \"name\": \"list-check\",\n    \"categories\": [\"text\"],\n    \"tags\": [\"done\",\"check\",\"tick\",\"complete\",\"list\",\"to-do\",\"bom\"]\n  },\n  {\n    \"name\": \"list-checks\",\n    \"categories\": [\"text\"],\n    \"tags\": [\"todo\",\"done\",\"check\",\"tick\",\"complete\",\"tasks\",\"items\",\"pending\"]\n  },\n  {\n    \"name\": \"list-chevrons-down-up\",\n    \"categories\": [\"text\",\"arrows\"],\n    \"tags\": [\"options\",\"items\",\"collapse\",\"expand\",\"details\",\"disclosure\",\"show\",\"hide\",\"toggle\",\"accordion\",\"more\",\"less\",\"fold\",\"unfold\",\"vertical\"]\n  },\n  {\n    \"name\": \"list-chevrons-up-down\",\n    \"categories\": [\"text\",\"arrows\"],\n    \"tags\": [\"options\",\"items\",\"collapse\",\"expand\",\"details\",\"disclosure\",\"show\",\"hide\",\"toggle\",\"accordion\",\"more\",\"less\",\"fold\",\"unfold\",\"vertical\"]\n  },\n  {\n    \"name\": \"list-collapse\",\n    \"categories\": [\"text\"],\n    \"tags\": [\"items\",\"collapse\",\"expand\",\"details\",\"disclosure\",\"show\",\"hide\",\"toggle\",\"accordion\",\"more\",\"less\",\"fold\",\"unfold\"]\n  },\n  {\n    \"name\": \"list-end\",\n    \"categories\": [\"multimedia\",\"text\"],\n    \"tags\": [\"queue\",\"bottom\",\"end\",\"playlist\"]\n  },\n  {\n    \"name\": \"list-filter-plus\",\n    \"categories\": [\"text\",\"layout\"],\n    \"tags\": [\"filter\",\"plus\",\"options\",\"add\"]\n  },\n  {\n    \"name\": \"list-filter\",\n    \"categories\": [\"text\"],\n    \"tags\": [\"options\"]\n  },\n  {\n    \"name\": \"list-indent-decrease\",\n    \"categories\": [\"text\",\"development\"],\n    \"tags\": [\"text\",\"tab\"]\n  },\n  {\n    \"name\": \"list-indent-increase\",\n    \"categories\": [\"text\",\"development\"],\n    \"tags\": [\"text\",\"tab\"]\n  },\n  {\n    \"name\": \"list-minus\",\n    \"categories\": [\"multimedia\",\"text\"],\n    \"tags\": [\"playlist\",\"remove\",\"song\",\"subtract\",\"delete\",\"unqueue\"]\n  },\n  {\n    \"name\": \"list-music\",\n    \"categories\": [\"multimedia\"],\n    \"tags\": [\"playlist\",\"queue\",\"music\",\"audio\",\"playback\"]\n  },\n  {\n    \"name\": \"list-ordered\",\n    \"categories\": [\"text\"],\n    \"tags\": [\"number\",\"order\",\"queue\"]\n  },\n  {\n    \"name\": \"list-plus\",\n    \"categories\": [\"multimedia\",\"text\"],\n    \"tags\": [\"playlist\",\"add\",\"song\",\"track\",\"new\"]\n  },\n  {\n    \"name\": \"list-restart\",\n    \"categories\": [\"multimedia\",\"text\"],\n    \"tags\": [\"reset\",\"refresh\",\"reload\",\"playlist\",\"replay\"]\n  },\n  {\n    \"name\": \"list-sort-ascending\",\n    \"categories\": [\"text\",\"layout\"],\n    \"tags\": [\"list\",\"order\",\"arrangement\",\"organization\",\"sequence\",\"ranking\",\"categories\",\"presentation\",\"filter\",\"sort\",\"ascending\",\"descending\",\"increasing\",\"decreasing\",\"rising\",\"falling\"]\n  },\n  {\n    \"name\": \"list-sort-descending\",\n    \"categories\": [\"text\",\"layout\"],\n    \"tags\": [\"list\",\"order\",\"arrangement\",\"organization\",\"sequence\",\"ranking\",\"categories\",\"presentation\",\"filter\",\"sort\",\"ascending\",\"descending\",\"increasing\",\"decreasing\",\"rising\",\"falling\"]\n  },\n  {\n    \"name\": \"list-start\",\n    \"categories\": [\"multimedia\",\"text\"],\n    \"tags\": [\"queue\",\"top\",\"start\",\"next\",\"playlist\"]\n  },\n  {\n    \"name\": \"list-todo\",\n    \"categories\": [\"text\"],\n    \"tags\": [\"todo\",\"done\",\"check\",\"tick\",\"complete\",\"tasks\",\"items\",\"pending\"]\n  },\n  {\n    \"name\": \"list-tree\",\n    \"categories\": [\"files\",\"text\",\"layout\"],\n    \"tags\": [\"tree\",\"browser\"]\n  },\n  {\n    \"name\": \"list-video\",\n    \"categories\": [\"multimedia\"],\n    \"tags\": [\"playlist\",\"video\",\"playback\"]\n  },\n  {\n    \"name\": \"list-x\",\n    \"categories\": [\"multimedia\",\"text\"],\n    \"tags\": [\"playlist\",\"subtract\",\"remove\",\"delete\",\"unqueue\"]\n  },\n  {\n    \"name\": \"list\",\n    \"categories\": [\"text\"],\n    \"tags\": [\"options\"]\n  },\n  {\n    \"name\": \"loader-circle\",\n    \"categories\": [\"cursors\",\"multimedia\",\"layout\"],\n    \"tags\": [\"loading\",\"wait\",\"busy\",\"progress\",\"spinner\",\"spinning\",\"throbber\",\"circle\"]\n  },\n  {\n    \"name\": \"loader-pinwheel\",\n    \"categories\": [\"cursors\",\"design\"],\n    \"tags\": [\"loading\",\"wait\",\"busy\",\"progress\",\"throbber\",\"spinner\",\"spinning\",\"beach ball\",\"frozen\",\"freeze\"]\n  },\n  {\n    \"name\": \"loader\",\n    \"categories\": [\"cursors\",\"multimedia\",\"layout\",\"design\"],\n    \"tags\": [\"loading\",\"wait\",\"busy\",\"progress\",\"spinner\",\"spinning\",\"throbber\"]\n  },\n  {\n    \"name\": \"locate-fixed\",\n    \"categories\": [\"navigation\"],\n    \"tags\": [\"map\",\"gps\",\"location\",\"cross\"]\n  },\n  {\n    \"name\": \"locate-off\",\n    \"categories\": [\"navigation\"],\n    \"tags\": [\"map\",\"gps\",\"location\",\"cross\"]\n  },\n  {\n    \"name\": \"locate\",\n    \"categories\": [\"navigation\"],\n    \"tags\": [\"map\",\"gps\",\"location\",\"cross\"]\n  },\n  {\n    \"name\": \"lock-keyhole-open\",\n    \"categories\": [\"security\"],\n    \"tags\": [\"security\"]\n  },\n  {\n    \"name\": \"lock-keyhole\",\n    \"categories\": [\"security\"],\n    \"tags\": [\"security\",\"password\",\"secure\",\"admin\"]\n  },\n  {\n    \"name\": \"lock-open\",\n    \"categories\": [\"security\"],\n    \"tags\": [\"security\"]\n  },\n  {\n    \"name\": \"lock\",\n    \"categories\": [\"security\"],\n    \"tags\": [\"security\",\"password\",\"secure\",\"admin\"]\n  },\n  {\n    \"name\": \"log-in\",\n    \"categories\": [\"arrows\",\"account\"],\n    \"tags\": [\"sign in\",\"arrow\",\"enter\",\"auth\"]\n  },\n  {\n    \"name\": \"log-out\",\n    \"categories\": [\"arrows\",\"account\"],\n    \"tags\": [\"sign out\",\"arrow\",\"exit\",\"auth\"]\n  },\n  {\n    \"name\": \"logs\",\n    \"categories\": [\"text\"],\n    \"tags\": [\"options\",\"list\",\"menu\",\"order\",\"queue\",\"tasks\",\"logs\"]\n  },\n  {\n    \"name\": \"lollipop\",\n    \"categories\": [\"food-beverage\"],\n    \"tags\": [\"lolly\",\"candy\",\"sugar\",\"food\",\"sweet\",\"dessert\",\"spiral\"]\n  },\n  {\n    \"name\": \"luggage\",\n    \"categories\": [\"travel\",\"transportation\"],\n    \"tags\": [\"baggage\",\"luggage\",\"travel\",\"suitcase\"]\n  },\n  {\n    \"name\": \"magnet\",\n    \"categories\": [\"design\"],\n    \"tags\": [\"horseshoe\",\"lock\",\"science\",\"snap\"]\n  },\n  {\n    \"name\": \"mail-check\",\n    \"categories\": [\"mail\"],\n    \"tags\": [\"email\",\"message\",\"letter\",\"subscribe\",\"delivered\",\"success\",\"read\",\"done\",\"todo\",\"tick\",\"complete\",\"task\"]\n  },\n  {\n    \"name\": \"mail-minus\",\n    \"categories\": [\"mail\"],\n    \"tags\": [\"email\",\"message\",\"letter\",\"remove\",\"delete\"]\n  },\n  {\n    \"name\": \"mail-open\",\n    \"categories\": [\"mail\"],\n    \"tags\": [\"email\",\"message\",\"letter\",\"read\"]\n  },\n  {\n    \"name\": \"mail-plus\",\n    \"categories\": [\"mail\"],\n    \"tags\": [\"email\",\"message\",\"letter\",\"add\",\"create\",\"new\",\"compose\"]\n  },\n  {\n    \"name\": \"mail-question-mark\",\n    \"categories\": [\"mail\"],\n    \"tags\": [\"email\",\"message\",\"letter\",\"delivery\",\"undelivered\"]\n  },\n  {\n    \"name\": \"mail-search\",\n    \"categories\": [\"mail\"],\n    \"tags\": [\"email\",\"message\",\"letter\",\"search\",\"lens\"]\n  },\n  {\n    \"name\": \"mail-warning\",\n    \"categories\": [\"mail\"],\n    \"tags\": [\"email\",\"message\",\"letter\",\"delivery error\",\"exclamation mark\"]\n  },\n  {\n    \"name\": \"mail-x\",\n    \"categories\": [\"mail\"],\n    \"tags\": [\"email\",\"message\",\"letter\",\"remove\",\"delete\"]\n  },\n  {\n    \"name\": \"mail\",\n    \"categories\": [\"text\",\"account\",\"mail\"],\n    \"tags\": [\"email\",\"message\",\"letter\",\"unread\"]\n  },\n  {\n    \"name\": \"mailbox\",\n    \"categories\": [\"mail\"],\n    \"tags\": [\"emails\",\"messages\",\"letters\",\"mailing list\",\"newsletter\"]\n  },\n  {\n    \"name\": \"mails\",\n    \"categories\": [\"mail\"],\n    \"tags\": [\"emails\",\"messages\",\"letters\",\"multiple\",\"mailing list\",\"newsletter\",\"copy\"]\n  },\n  {\n    \"name\": \"map-minus\",\n    \"categories\": [\"navigation\",\"travel\"],\n    \"tags\": [\"location\",\"navigation\",\"travel\",\"drop\",\"delete\",\"remove\",\"erase\"]\n  },\n  {\n    \"name\": \"map-pin-check-inside\",\n    \"categories\": [\"navigation\",\"travel\",\"account\"],\n    \"tags\": [\"location\",\"waypoint\",\"marker\",\"drop\",\"done\",\"tick\",\"complete\",\"task\",\"added\"]\n  },\n  {\n    \"name\": \"map-pin-check\",\n    \"categories\": [\"navigation\",\"travel\",\"account\"],\n    \"tags\": [\"location\",\"waypoint\",\"marker\",\"drop\",\"done\",\"tick\",\"complete\",\"task\",\"added\"]\n  },\n  {\n    \"name\": \"map-pin-house\",\n    \"categories\": [\"navigation\",\"travel\",\"account\"],\n    \"tags\": [\"location\",\"waypoint\",\"marker\",\"drop\",\"home\",\"living\",\"building\",\"residence\",\"architecture\",\"address\",\"poi\",\"real estate\",\"property\",\"navigation\",\"destination\",\"geolocation\",\"place\",\"landmark\"]\n  },\n  {\n    \"name\": \"map-pin-minus-inside\",\n    \"categories\": [\"navigation\",\"travel\",\"account\"],\n    \"tags\": [\"location\",\"waypoint\",\"marker\",\"drop\",\"delete\",\"remove\",\"erase\"]\n  },\n  {\n    \"name\": \"map-pin-minus\",\n    \"categories\": [\"navigation\",\"travel\",\"account\"],\n    \"tags\": [\"location\",\"waypoint\",\"marker\",\"drop\",\"delete\",\"remove\",\"erase\"]\n  },\n  {\n    \"name\": \"map-pin-off\",\n    \"categories\": [\"navigation\",\"travel\"],\n    \"tags\": [\"location\",\"waypoint\",\"marker\",\"remove\"]\n  },\n  {\n    \"name\": \"map-pin-pen\",\n    \"categories\": [\"navigation\",\"travel\",\"account\"],\n    \"tags\": [\"location\",\"waypoint\",\"marker\",\"drop\",\"edit\"]\n  },\n  {\n    \"name\": \"map-pin-plus-inside\",\n    \"categories\": [\"navigation\",\"travel\",\"account\"],\n    \"tags\": [\"location\",\"waypoint\",\"marker\",\"drop\",\"add\",\"create\",\"new\"]\n  },\n  {\n    \"name\": \"map-pin-plus\",\n    \"categories\": [\"navigation\",\"travel\",\"account\"],\n    \"tags\": [\"location\",\"waypoint\",\"marker\",\"drop\",\"add\",\"create\",\"new\"]\n  },\n  {\n    \"name\": \"map-pin-search\",\n    \"categories\": [\"text\",\"navigation\",\"travel\",\"account\"],\n    \"tags\": [\"location\",\"navigation\",\"travel\",\"waypoint\",\"marker\",\"drop\"]\n  },\n  {\n    \"name\": \"map-pin-x-inside\",\n    \"categories\": [\"navigation\",\"travel\",\"account\"],\n    \"tags\": [\"location\",\"waypoint\",\"marker\",\"drop\",\"delete\",\"remove\",\"erase\"]\n  },\n  {\n    \"name\": \"map-pin-x\",\n    \"categories\": [\"navigation\",\"travel\",\"account\"],\n    \"tags\": [\"location\",\"waypoint\",\"marker\",\"drop\",\"delete\",\"remove\",\"erase\"]\n  },\n  {\n    \"name\": \"map-pin\",\n    \"categories\": [\"navigation\",\"travel\",\"account\"],\n    \"tags\": [\"location\",\"waypoint\",\"marker\",\"drop\"]\n  },\n  {\n    \"name\": \"map-pinned\",\n    \"categories\": [\"navigation\",\"travel\",\"account\"],\n    \"tags\": [\"location\",\"waypoint\",\"marker\",\"drop\"]\n  },\n  {\n    \"name\": \"map-plus\",\n    \"categories\": [\"navigation\"],\n    \"tags\": [\"location\",\"navigation\",\"travel\",\"new\",\"add\",\"create\"]\n  },\n  {\n    \"name\": \"map\",\n    \"categories\": [\"text\",\"navigation\"],\n    \"tags\": [\"location\",\"navigation\",\"travel\"]\n  },\n  {\n    \"name\": \"mars-stroke\",\n    \"categories\": [\"medical\"],\n    \"tags\": [\"gender\",\"androgyne\",\"transgender\"]\n  },\n  {\n    \"name\": \"mars\",\n    \"categories\": [\"medical\"],\n    \"tags\": [\"gender\",\"sex\",\"male\",\"masculine\",\"man\",\"boy\"]\n  },\n  {\n    \"name\": \"martini\",\n    \"categories\": [\"food-beverage\"],\n    \"tags\": [\"cocktail\",\"alcohol\",\"beverage\",\"bar\",\"drink\",\"glass\",\"spirit\",\"party\",\"celebration\",\"mixer\"]\n  },\n  {\n    \"name\": \"maximize-2\",\n    \"categories\": [\"arrows\",\"layout\",\"design\"],\n    \"tags\": [\"fullscreen\",\"arrows\",\"expand\"]\n  },\n  {\n    \"name\": \"maximize\",\n    \"categories\": [\"layout\",\"design\"],\n    \"tags\": [\"fullscreen\",\"expand\",\"dashed\"]\n  },\n  {\n    \"name\": \"medal\",\n    \"categories\": [\"sports\",\"gaming\"],\n    \"tags\": [\"prize\",\"sports\",\"winner\",\"trophy\",\"award\",\"achievement\"]\n  },\n  {\n    \"name\": \"megaphone-off\",\n    \"categories\": [\"multimedia\",\"notifications\"],\n    \"tags\": [\"advertisement\",\"announcement\",\"attention\",\"alert\",\"loudspeaker\",\"megaphone\",\"notification\",\"disable\",\"silent\"]\n  },\n  {\n    \"name\": \"megaphone\",\n    \"categories\": [\"multimedia\",\"notifications\"],\n    \"tags\": [\"advertisement\",\"announcement\",\"attention\",\"alert\",\"loudspeaker\",\"megaphone\",\"notification\"]\n  },\n  {\n    \"name\": \"meh\",\n    \"categories\": [\"emoji\"],\n    \"tags\": [\"emoji\",\"face\",\"neutral\",\"emotion\"]\n  },\n  {\n    \"name\": \"memory-stick\",\n    \"categories\": [\"devices\",\"gaming\"],\n    \"tags\": [\"ram\",\"random access\",\"technology\",\"computer\",\"chip\",\"circuit\",\"specs\",\"capacity\",\"gigabytes\",\"gb\"]\n  },\n  {\n    \"name\": \"menu\",\n    \"categories\": [\"layout\",\"account\"],\n    \"tags\": [\"bars\",\"navigation\",\"hamburger\",\"options\"]\n  },\n  {\n    \"name\": \"merge\",\n    \"categories\": [\"development\",\"arrows\"],\n    \"tags\": [\"combine\",\"join\",\"unite\"]\n  },\n  {\n    \"name\": \"message-circle-check\",\n    \"categories\": [\"social\",\"account\"],\n    \"tags\": [\"comment\",\"chat\",\"conversation\",\"dialog\",\"feedback\",\"speech bubble\",\"moderate\",\"check\",\"done\",\"todo\",\"complete\"]\n  },\n  {\n    \"name\": \"message-circle-code\",\n    \"categories\": [\"development\",\"social\"],\n    \"tags\": [\"comment\",\"chat\",\"conversation\",\"dialog\",\"feedback\",\"speech bubble\",\"code review\",\"coding\"]\n  },\n  {\n    \"name\": \"message-circle-dashed\",\n    \"categories\": [\"social\"],\n    \"tags\": [\"comment\",\"chat\",\"conversation\",\"dialog\",\"feedback\",\"speech bubble\",\"draft\"]\n  },\n  {\n    \"name\": \"message-circle-heart\",\n    \"categories\": [\"social\"],\n    \"tags\": [\"comment\",\"chat\",\"conversation\",\"dialog\",\"feedback\",\"positive\",\"like\",\"love\",\"interest\",\"valentine\",\"dating\",\"date\",\"speech bubble\"]\n  },\n  {\n    \"name\": \"message-circle-more\",\n    \"categories\": [\"social\"],\n    \"tags\": [\"comment\",\"chat\",\"conversation\",\"dialog\",\"feedback\",\"speech bubble\",\"typing\",\"writing\",\"responding\",\"ellipsis\",\"etc\",\"et cetera\",\"...\",\"…\"]\n  },\n  {\n    \"name\": \"message-circle-off\",\n    \"categories\": [\"social\"],\n    \"tags\": [\"comment\",\"chat\",\"conversation\",\"dialog\",\"feedback\",\"speech bubble\",\"clear\",\"close\",\"delete\",\"remove\",\"cancel\",\"silence\",\"mute\",\"moderate\"]\n  },\n  {\n    \"name\": \"message-circle-plus\",\n    \"categories\": [\"social\"],\n    \"tags\": [\"comment\",\"chat\",\"conversation\",\"dialog\",\"feedback\",\"speech bubble\",\"add\"]\n  },\n  {\n    \"name\": \"message-circle-question-mark\",\n    \"categories\": [\"social\"],\n    \"tags\": [\"comment\",\"chat\",\"conversation\",\"dialog\",\"feedback\",\"speech bubble\",\"help\"]\n  },\n  {\n    \"name\": \"message-circle-reply\",\n    \"categories\": [\"social\"],\n    \"tags\": [\"comment\",\"chat\",\"conversation\",\"dialog\",\"feedback\",\"speech bubble\",\"reply\",\"response\"]\n  },\n  {\n    \"name\": \"message-circle-warning\",\n    \"categories\": [\"social\",\"notifications\"],\n    \"tags\": [\"comment\",\"chat\",\"conversation\",\"dialog\",\"feedback\",\"speech bubble\",\"report\",\"abuse\",\"offense\",\"alert\",\"danger\",\"caution\",\"protected\",\"exclamation mark\"]\n  },\n  {\n    \"name\": \"message-circle-x\",\n    \"categories\": [\"account\",\"social\"],\n    \"tags\": [\"comment\",\"chat\",\"conversation\",\"dialog\",\"feedback\",\"speech bubble\",\"clear\",\"close\",\"delete\",\"remove\",\"cancel\",\"silence\",\"mute\",\"moderate\"]\n  },\n  {\n    \"name\": \"message-circle\",\n    \"categories\": [\"social\"],\n    \"tags\": [\"comment\",\"chat\",\"conversation\",\"dialog\",\"feedback\",\"speech bubble\"]\n  },\n  {\n    \"name\": \"message-square-check\",\n    \"categories\": [\"social\",\"account\"],\n    \"tags\": [\"comment\",\"chat\",\"conversation\",\"dialog\",\"feedback\",\"speech bubble\",\"moderate\",\"check\",\"done\",\"todo\",\"complete\"]\n  },\n  {\n    \"name\": \"message-square-code\",\n    \"categories\": [\"development\",\"social\"],\n    \"tags\": [\"comment\",\"chat\",\"conversation\",\"dialog\",\"feedback\",\"speech bubble\",\"code review\",\"coding\"]\n  },\n  {\n    \"name\": \"message-square-dashed\",\n    \"categories\": [\"social\"],\n    \"tags\": [\"comment\",\"chat\",\"conversation\",\"dialog\",\"feedback\",\"speech bubble\",\"draft\"]\n  },\n  {\n    \"name\": \"message-square-diff\",\n    \"categories\": [\"development\",\"files\",\"social\"],\n    \"tags\": [\"comment\",\"chat\",\"conversation\",\"dialog\",\"feedback\",\"speech bubble\",\"add\",\"patch\",\"difference\",\"plus\",\"minus\",\"plus-minus\",\"math\",\"code review\",\"coding\",\"version control\",\"git\"]\n  },\n  {\n    \"name\": \"message-square-dot\",\n    \"categories\": [\"social\",\"notifications\"],\n    \"tags\": [\"unread\",\"unresolved\",\"comment\",\"chat\",\"conversation\",\"dialog\",\"feedback\",\"speech bubble\"]\n  },\n  {\n    \"name\": \"message-square-heart\",\n    \"categories\": [\"social\"],\n    \"tags\": [\"comment\",\"chat\",\"conversation\",\"dialog\",\"feedback\",\"positive\",\"like\",\"love\",\"interest\",\"valentine\",\"dating\",\"date\",\"speech bubble\"]\n  },\n  {\n    \"name\": \"message-square-lock\",\n    \"categories\": [\"social\"],\n    \"tags\": [\"comment\",\"chat\",\"conversation\",\"dialog\",\"feedback\",\"speech bubble\",\"secure\",\"encrypted\"]\n  },\n  {\n    \"name\": \"message-square-more\",\n    \"categories\": [\"social\"],\n    \"tags\": [\"comment\",\"chat\",\"conversation\",\"dialog\",\"feedback\",\"speech bubble\",\"typing\",\"writing\",\"responding\",\"ellipsis\",\"etc\",\"et cetera\",\"...\",\"…\"]\n  },\n  {\n    \"name\": \"message-square-off\",\n    \"categories\": [\"social\"],\n    \"tags\": [\"comment\",\"chat\",\"conversation\",\"dialog\",\"feedback\",\"speech bubble\",\"clear\",\"close\",\"delete\",\"remove\",\"cancel\",\"silence\",\"mute\",\"moderate\"]\n  },\n  {\n    \"name\": \"message-square-plus\",\n    \"categories\": [\"social\"],\n    \"tags\": [\"comment\",\"chat\",\"conversation\",\"dialog\",\"feedback\",\"speech bubble\",\"add\"]\n  },\n  {\n    \"name\": \"message-square-quote\",\n    \"categories\": [\"social\",\"text\"],\n    \"tags\": [\"comment\",\"chat\",\"conversation\",\"dialog\",\"feedback\",\"speech bubble\",\"blockquote\",\"quotation\",\"indent\",\"reply\",\"response\"]\n  },\n  {\n    \"name\": \"message-square-reply\",\n    \"categories\": [\"social\"],\n    \"tags\": [\"comment\",\"chat\",\"conversation\",\"dialog\",\"feedback\",\"speech bubble\",\"reply\",\"response\"]\n  },\n  {\n    \"name\": \"message-square-share\",\n    \"categories\": [\"social\"],\n    \"tags\": [\"comment\",\"chat\",\"conversation\",\"dialog\",\"feedback\",\"speech bubble\",\"network\",\"forward\"]\n  },\n  {\n    \"name\": \"message-square-text\",\n    \"categories\": [\"social\"],\n    \"tags\": [\"comment\",\"chat\",\"conversation\",\"dialog\",\"feedback\",\"speech bubble\"]\n  },\n  {\n    \"name\": \"message-square-warning\",\n    \"categories\": [\"social\",\"notifications\"],\n    \"tags\": [\"comment\",\"chat\",\"conversation\",\"dialog\",\"feedback\",\"speech bubble\",\"report\",\"abuse\",\"offense\",\"alert\",\"danger\",\"caution\",\"protected\",\"exclamation mark\"]\n  },\n  {\n    \"name\": \"message-square-x\",\n    \"categories\": [\"social\"],\n    \"tags\": [\"comment\",\"chat\",\"conversation\",\"dialog\",\"feedback\",\"speech bubble\",\"clear\",\"close\",\"delete\",\"remove\",\"cancel\",\"silence\",\"mute\",\"moderate\"]\n  },\n  {\n    \"name\": \"message-square\",\n    \"categories\": [\"social\"],\n    \"tags\": [\"comment\",\"chat\",\"conversation\",\"dialog\",\"feedback\",\"speech bubble\"]\n  },\n  {\n    \"name\": \"messages-square\",\n    \"categories\": [\"social\"],\n    \"tags\": [\"comment\",\"chat\",\"conversation\",\"dialog\",\"feedback\",\"speech bubbles\",\"copy\",\"multiple\",\"discussion\",\"interview\",\"debate\"]\n  },\n  {\n    \"name\": \"metronome\",\n    \"categories\": [\"multimedia\",\"time\"],\n    \"tags\": [\"metronome\",\"tempo\",\"rhythm\",\"beat\",\"bpm\",\"music\",\"audio\",\"sound\",\"practice\",\"timing\",\"timer\",\"time\",\"pulse\",\"sync\",\"cadence\",\"control\",\"playback\",\"studio\",\"tool\"]\n  },\n  {\n    \"name\": \"mic-off\",\n    \"categories\": [\"devices\",\"communication\",\"connectivity\",\"multimedia\"],\n    \"tags\": [\"record\",\"sound\",\"mute\",\"microphone\"]\n  },\n  {\n    \"name\": \"mic-vocal\",\n    \"categories\": [\"devices\",\"multimedia\"],\n    \"tags\": [\"lyrics\",\"voice\",\"listen\",\"sound\",\"music\",\"radio\",\"podcast\",\"karaoke\",\"singing\",\"microphone\"]\n  },\n  {\n    \"name\": \"mic\",\n    \"categories\": [\"devices\",\"communication\",\"connectivity\",\"multimedia\"],\n    \"tags\": [\"record\",\"sound\",\"listen\",\"radio\",\"podcast\",\"microphone\"]\n  },\n  {\n    \"name\": \"microchip\",\n    \"categories\": [\"devices\"],\n    \"tags\": [\"processor\",\"cores\",\"technology\",\"computer\",\"chip\",\"integrated circuit\",\"memory\",\"ram\",\"specs\",\"gpu\",\"gigahertz\",\"ghz\"]\n  },\n  {\n    \"name\": \"microscope\",\n    \"categories\": [\"science\",\"medical\"],\n    \"tags\": [\"medical\",\"education\",\"science\",\"imaging\",\"research\"]\n  },\n  {\n    \"name\": \"microwave\",\n    \"categories\": [\"food-beverage\",\"home\"],\n    \"tags\": [\"oven\",\"cooker\",\"toaster oven\",\"bake\"]\n  },\n  {\n    \"name\": \"milestone\",\n    \"categories\": [\"arrows\",\"navigation\",\"development\",\"gaming\"],\n    \"tags\": [\"signpost\",\"direction\",\"right\",\"east\",\"forward\",\"version control\",\"waypoint\"]\n  },\n  {\n    \"name\": \"milk-off\",\n    \"categories\": [\"food-beverage\"],\n    \"tags\": [\"lactose free\",\"bottle\",\"beverage\",\"drink\",\"water\",\"allergy\",\"intolerance\",\"diet\"]\n  },\n  {\n    \"name\": \"milk\",\n    \"categories\": [\"food-beverage\"],\n    \"tags\": [\"lactose\",\"bottle\",\"beverage\",\"drink\",\"water\",\"diet\"]\n  },\n  {\n    \"name\": \"minimize-2\",\n    \"categories\": [\"arrows\",\"layout\",\"design\"],\n    \"tags\": [\"exit fullscreen\",\"arrows\",\"close\",\"shrink\"]\n  },\n  {\n    \"name\": \"minimize\",\n    \"categories\": [\"layout\",\"design\"],\n    \"tags\": [\"exit fullscreen\",\"close\",\"shrink\"]\n  },\n  {\n    \"name\": \"minus\",\n    \"categories\": [\"math\",\"development\",\"text\",\"tools\"],\n    \"tags\": [\"subtract\",\"remove\",\"decrease\",\"decrement\",\"reduce\",\"negative\",\"calculate\",\"line\",\"divider\",\"separator\",\"horizontal rule\",\"hr\",\"html\",\"markup\",\"markdown\",\"---\",\"toolbar\",\"operator\",\"code\",\"coding\",\"minimum\",\"downgrade\"]\n  },\n  {\n    \"name\": \"mirror-rectangular\",\n    \"categories\": [\"science\",\"home\",\"tools\"],\n    \"tags\": [\"reflection\",\"optics\",\"glass\",\"surface\",\"image\",\"physics\",\"science\",\"bathroom\",\"decor\",\"cosmetic\",\"shiny\",\"periscope\",\"vanity\"]\n  },\n  {\n    \"name\": \"mirror-round\",\n    \"categories\": [\"science\",\"home\",\"tools\"],\n    \"tags\": [\"reflection\",\"optics\",\"glass\",\"surface\",\"image\",\"physics\",\"science\",\"bathroom\",\"vanity\",\"makeup\",\"decor\",\"cosmetic\",\"shiny\",\"periscope\"]\n  },\n  {\n    \"name\": \"monitor-check\",\n    \"categories\": [\"connectivity\",\"devices\"],\n    \"tags\": [\"tv\",\"screen\",\"display\",\"desktop\",\"running\",\"active\",\"virtual machine\",\"vm\"]\n  },\n  {\n    \"name\": \"monitor-cloud\",\n    \"categories\": [\"connectivity\",\"devices\",\"development\"],\n    \"tags\": [\"virtual machine\",\"virtual desktop\",\"vm\",\"vdi\",\"computing\",\"remote work\",\"monitoring\",\"infrastructure\",\"software as a service\",\"saas\",\"workstation\",\"environment\",\"tv\",\"screen\",\"display\"]\n  },\n  {\n    \"name\": \"monitor-cog\",\n    \"categories\": [\"connectivity\",\"devices\"],\n    \"tags\": [\"tv\",\"screen\",\"display\",\"virtual machine\",\"vm\",\"executable\",\"settings\",\"cog\",\"edit\",\"gear\",\"configuration\",\"preferences\",\"system\",\"control panel\",\"network\",\"computing\"]\n  },\n  {\n    \"name\": \"monitor-dot\",\n    \"categories\": [\"connectivity\",\"devices\"],\n    \"tags\": [\"tv\",\"screen\",\"display\",\"desktop\",\"running\",\"active\",\"virtual machine\",\"vm\"]\n  },\n  {\n    \"name\": \"monitor-down\",\n    \"categories\": [\"connectivity\",\"devices\"],\n    \"tags\": [\"tv\",\"screen\",\"display\",\"desktop\",\"download\"]\n  },\n  {\n    \"name\": \"monitor-off\",\n    \"categories\": [\"connectivity\",\"devices\"],\n    \"tags\": [\"share\"]\n  },\n  {\n    \"name\": \"monitor-pause\",\n    \"categories\": [\"connectivity\",\"devices\",\"multimedia\"],\n    \"tags\": [\"tv\",\"screen\",\"display\",\"desktop\",\"video\",\"movie\",\"film\",\"suspend\",\"hibernate\",\"boot\",\"virtual machine\",\"vm\"]\n  },\n  {\n    \"name\": \"monitor-play\",\n    \"categories\": [\"connectivity\",\"devices\",\"multimedia\"],\n    \"tags\": [\"tv\",\"screen\",\"display\",\"desktop\",\"video\",\"movie\",\"film\",\"running\",\"start\",\"boot\",\"virtual machine\",\"vm\"]\n  },\n  {\n    \"name\": \"monitor-smartphone\",\n    \"categories\": [\"connectivity\",\"devices\"],\n    \"tags\": [\"smartphone\",\"phone\",\"cellphone\",\"device\",\"mobile\",\"desktop\",\"monitor\",\"responsive\",\"screens\"]\n  },\n  {\n    \"name\": \"monitor-speaker\",\n    \"categories\": [\"connectivity\",\"devices\"],\n    \"tags\": [\"devices\",\"connect\",\"cast\"]\n  },\n  {\n    \"name\": \"monitor-stop\",\n    \"categories\": [\"connectivity\",\"devices\",\"multimedia\"],\n    \"tags\": [\"tv\",\"screen\",\"display\",\"desktop\",\"video\",\"movie\",\"film\",\"stop\",\"shutdown\",\"virtual machine\",\"vm\"]\n  },\n  {\n    \"name\": \"monitor-up\",\n    \"categories\": [\"connectivity\",\"devices\"],\n    \"tags\": [\"tv\",\"screen\",\"display\",\"upload\",\"connect\",\"remote\",\"screen share\"]\n  },\n  {\n    \"name\": \"monitor-x\",\n    \"categories\": [\"connectivity\",\"devices\"],\n    \"tags\": [\"tv\",\"screen\",\"display\",\"desktop\",\"virtual machine\",\"vm\",\"close\",\"stop\",\"suspend\",\"remove\",\"delete\"]\n  },\n  {\n    \"name\": \"monitor\",\n    \"categories\": [\"connectivity\",\"devices\"],\n    \"tags\": [\"tv\",\"screen\",\"display\",\"virtual machine\",\"vm\"]\n  },\n  {\n    \"name\": \"moon-star\",\n    \"categories\": [\"accessibility\",\"weather\"],\n    \"tags\": [\"dark\",\"night\",\"star\"]\n  },\n  {\n    \"name\": \"moon\",\n    \"categories\": [\"accessibility\"],\n    \"tags\": [\"dark\",\"night\"]\n  },\n  {\n    \"name\": \"motorbike\",\n    \"categories\": [\"transportation\"],\n    \"tags\": [\"moto\",\"motorcycle\",\"transport\",\"vehicle\",\"drive\",\"ride\",\"trip\",\"race\",\"racing\",\"journey\",\"delivery\"]\n  },\n  {\n    \"name\": \"mountain-snow\",\n    \"categories\": [\"nature\"],\n    \"tags\": [\"alpine\",\"climb\",\"snow\"]\n  },\n  {\n    \"name\": \"mountain\",\n    \"categories\": [\"nature\",\"gaming\"],\n    \"tags\": [\"climb\",\"hike\",\"rock\"]\n  },\n  {\n    \"name\": \"mouse-left\",\n    \"categories\": [\"devices\"],\n    \"tags\": [\"device\",\"scroll\",\"click\"]\n  },\n  {\n    \"name\": \"mouse-off\",\n    \"categories\": [\"devices\"],\n    \"tags\": [\"device\",\"scroll\",\"click\",\"disabled\"]\n  },\n  {\n    \"name\": \"mouse-pointer-2-off\",\n    \"categories\": [\"arrows\",\"cursors\"],\n    \"tags\": [\"pointer\",\"mouse\",\"cursor\",\"off\",\"disable\",\"arrow\",\"navigation\",\"selection\",\"select\",\"click\",\"no-click\",\"interaction\"]\n  },\n  {\n    \"name\": \"mouse-pointer-2\",\n    \"categories\": [\"arrows\",\"cursors\"],\n    \"tags\": [\"click\",\"select\"]\n  },\n  {\n    \"name\": \"mouse-pointer-ban\",\n    \"categories\": [\"arrows\",\"cursors\"],\n    \"tags\": [\"wait\",\"busy\",\"loading\",\"blocked\",\"frozen\",\"freeze\"]\n  },\n  {\n    \"name\": \"mouse-pointer-click\",\n    \"categories\": [\"arrows\",\"cursors\"],\n    \"tags\": [\"click\",\"select\"]\n  },\n  {\n    \"name\": \"mouse-pointer\",\n    \"categories\": [\"arrows\",\"cursors\"],\n    \"tags\": [\"click\",\"select\"]\n  },\n  {\n    \"name\": \"mouse-right\",\n    \"categories\": [\"devices\"],\n    \"tags\": [\"device\",\"scroll\",\"click\"]\n  },\n  {\n    \"name\": \"mouse\",\n    \"categories\": [\"devices\"],\n    \"tags\": [\"device\",\"scroll\",\"click\"]\n  },\n  {\n    \"name\": \"move-3d\",\n    \"categories\": [\"design\"],\n    \"tags\": [\"arrows\",\"axis\",\"gizmo\",\"coordinates\",\"transform\",\"translate\"]\n  },\n  {\n    \"name\": \"move-diagonal-2\",\n    \"categories\": [\"arrows\",\"cursors\"],\n    \"tags\": [\"double\",\"arrow\"]\n  },\n  {\n    \"name\": \"move-diagonal\",\n    \"categories\": [\"arrows\",\"cursors\"],\n    \"tags\": [\"double\",\"arrow\"]\n  },\n  {\n    \"name\": \"move-down-left\",\n    \"categories\": [\"arrows\"],\n    \"tags\": [\"arrow\",\"direction\"]\n  },\n  {\n    \"name\": \"move-down-right\",\n    \"categories\": [\"arrows\"],\n    \"tags\": [\"arrow\",\"direction\"]\n  },\n  {\n    \"name\": \"move-down\",\n    \"categories\": [\"arrows\"],\n    \"tags\": [\"arrow\",\"direction\",\"downwards\",\"south\"]\n  },\n  {\n    \"name\": \"move-horizontal\",\n    \"categories\": [\"arrows\",\"cursors\"],\n    \"tags\": [\"double\",\"arrow\"]\n  },\n  {\n    \"name\": \"move-left\",\n    \"categories\": [\"arrows\"],\n    \"tags\": [\"arrow\",\"direction\",\"back\",\"west\"]\n  },\n  {\n    \"name\": \"move-right\",\n    \"categories\": [\"arrows\"],\n    \"tags\": [\"arrow\",\"direction\",\"trend flat\",\"east\"]\n  },\n  {\n    \"name\": \"move-up-left\",\n    \"categories\": [\"arrows\"],\n    \"tags\": [\"arrow\",\"direction\"]\n  },\n  {\n    \"name\": \"move-up-right\",\n    \"categories\": [\"arrows\"],\n    \"tags\": [\"arrow\",\"direction\"]\n  },\n  {\n    \"name\": \"move-up\",\n    \"categories\": [\"arrows\"],\n    \"tags\": [\"arrow\",\"direction\",\"upwards\",\"north\"]\n  },\n  {\n    \"name\": \"move-vertical\",\n    \"categories\": [\"arrows\",\"cursors\"],\n    \"tags\": [\"double\",\"arrow\"]\n  },\n  {\n    \"name\": \"move\",\n    \"categories\": [\"arrows\",\"cursors\"],\n    \"tags\": [\"arrows\"]\n  },\n  {\n    \"name\": \"music-2\",\n    \"categories\": [\"multimedia\",\"files\"],\n    \"tags\": [\"quaver\",\"eighth note\",\"note\"]\n  },\n  {\n    \"name\": \"music-3\",\n    \"categories\": [\"multimedia\",\"files\"],\n    \"tags\": [\"crotchet\",\"minim\",\"quarter note\",\"half note\",\"note\"]\n  },\n  {\n    \"name\": \"music-4\",\n    \"categories\": [\"multimedia\",\"files\"],\n    \"tags\": [\"semiquaver\",\"sixteenth note\",\"note\"]\n  },\n  {\n    \"name\": \"music\",\n    \"categories\": [\"multimedia\",\"files\"],\n    \"tags\": [\"note\",\"quaver\",\"eighth note\"]\n  },\n  {\n    \"name\": \"navigation-2-off\",\n    \"categories\": [\"navigation\"],\n    \"tags\": [\"location\",\"travel\"]\n  },\n  {\n    \"name\": \"navigation-2\",\n    \"categories\": [\"navigation\"],\n    \"tags\": [\"location\",\"travel\"]\n  },\n  {\n    \"name\": \"navigation-off\",\n    \"categories\": [\"navigation\"],\n    \"tags\": [\"location\",\"travel\"]\n  },\n  {\n    \"name\": \"navigation\",\n    \"categories\": [\"navigation\"],\n    \"tags\": [\"location\",\"travel\"]\n  },\n  {\n    \"name\": \"network\",\n    \"categories\": [\"development\"],\n    \"tags\": [\"tree\"]\n  },\n  {\n    \"name\": \"newspaper\",\n    \"categories\": [\"multimedia\",\"communication\"],\n    \"tags\": [\"news\",\"feed\",\"home\",\"magazine\",\"article\",\"headline\"]\n  },\n  {\n    \"name\": \"nfc\",\n    \"categories\": [\"communication\",\"finance\",\"devices\"],\n    \"tags\": [\"contactless\",\"payment\",\"near-field communication\"]\n  },\n  {\n    \"name\": \"non-binary\",\n    \"categories\": [\"medical\"],\n    \"tags\": [\"gender\",\"nonbinary\",\"enby\"]\n  },\n  {\n    \"name\": \"notebook-pen\",\n    \"categories\": [\"text\",\"social\"],\n    \"tags\": [\"pencil\",\"notepad\",\"notes\",\"noted\",\"stationery\",\"sketchbook\",\"organizer\",\"organiser\",\"planner\",\"diary\",\"journal\",\"writing\",\"write\",\"written\",\"reading\",\"high school\",\"university\",\"college\",\"academy\",\"student\",\"study\",\"research\",\"homework\",\"eraser\",\"rubber\"]\n  },\n  {\n    \"name\": \"notebook-tabs\",\n    \"categories\": [\"account\",\"communication\",\"social\"],\n    \"tags\": [\"notepad\",\"notes\",\"people\",\"family\",\"friends\",\"acquaintances\",\"contacts\",\"details\",\"addresses\",\"phone numbers\",\"directory\",\"listing\",\"networking\",\"alphabetical\",\"a-z\",\"organizer\",\"organiser\",\"planner\",\"diary\",\"stationery\"]\n  },\n  {\n    \"name\": \"notebook-text\",\n    \"categories\": [\"text\",\"social\"],\n    \"tags\": [\"notepad\",\"notes\",\"pages\",\"paper\",\"stationery\",\"sketchbook\",\"organizer\",\"organiser\",\"planner\",\"diary\",\"journal\",\"writing\",\"write\",\"written\",\"reading\",\"high school\",\"university\",\"college\",\"academy\",\"student\",\"study\",\"research\",\"homework\",\"lines\",\"opened\"]\n  },\n  {\n    \"name\": \"notebook\",\n    \"categories\": [\"text\",\"communication\",\"social\",\"design\"],\n    \"tags\": [\"notepad\",\"notes\",\"stationery\",\"sketchbook\",\"moleskine\",\"closure\",\"strap\",\"band\",\"elastic\",\"organizer\",\"organiser\",\"planner\",\"diary\",\"journal\",\"writing\",\"written\",\"writer\",\"reading\",\"high school\",\"university\",\"college\",\"academy\",\"student\",\"study\",\"homework\",\"research\"]\n  },\n  {\n    \"name\": \"notepad-text-dashed\",\n    \"categories\": [\"text\",\"social\"],\n    \"tags\": [\"notebook\",\"notes\",\"pages\",\"paper\",\"stationery\",\"diary\",\"journal\",\"writing\",\"write\",\"written\",\"draft\",\"template\",\"lines\"]\n  },\n  {\n    \"name\": \"notepad-text\",\n    \"categories\": [\"text\",\"social\"],\n    \"tags\": [\"notebook\",\"notes\",\"pages\",\"paper\",\"stationery\",\"sketchbook\",\"organizer\",\"organiser\",\"planner\",\"diary\",\"journal\",\"writing\",\"write\",\"written\",\"reading\",\"high school\",\"university\",\"college\",\"academy\",\"student\",\"study\",\"homework\",\"research\",\"lines\",\"opened\"]\n  },\n  {\n    \"name\": \"nut-off\",\n    \"categories\": [\"food-beverage\"],\n    \"tags\": [\"hazelnut\",\"acorn\",\"food\",\"allergy\",\"intolerance\",\"diet\"]\n  },\n  {\n    \"name\": \"nut\",\n    \"categories\": [\"food-beverage\"],\n    \"tags\": [\"hazelnut\",\"acorn\",\"food\",\"diet\"]\n  },\n  {\n    \"name\": \"octagon-alert\",\n    \"categories\": [\"notifications\",\"shapes\"],\n    \"tags\": [\"warning\",\"alert\",\"danger\",\"exclamation mark\"]\n  },\n  {\n    \"name\": \"octagon-minus\",\n    \"categories\": [\"transportation\"],\n    \"tags\": [\"stop\",\"forbidden\",\"subtract\",\"remove\",\"decrease\",\"reduce\",\"-\",\"traffic\",\"halt\",\"restricted\"]\n  },\n  {\n    \"name\": \"octagon-pause\",\n    \"categories\": [\"multimedia\",\"shapes\"],\n    \"tags\": [\"music\",\"audio\",\"stop\"]\n  },\n  {\n    \"name\": \"octagon-x\",\n    \"categories\": [\"math\",\"notifications\"],\n    \"tags\": [\"delete\",\"stop\",\"alert\",\"warning\",\"times\",\"clear\",\"math\"]\n  },\n  {\n    \"name\": \"octagon\",\n    \"categories\": [\"shapes\"],\n    \"tags\": [\"stop\",\"shape\"]\n  },\n  {\n    \"name\": \"omega\",\n    \"categories\": [\"math\",\"development\",\"text\",\"science\"],\n    \"tags\": [\"greek\",\"symbol\",\"mathematics\",\"education\",\"physics\",\"engineering\",\"ohms\",\"electrical resistance\",\"angular frequency\",\"dynamical systems\",\"astronomy\",\"constellations\",\"philosophy\"]\n  },\n  {\n    \"name\": \"option\",\n    \"categories\": [\"development\"],\n    \"tags\": [\"keyboard\",\"key\",\"mac\",\"alt\",\"button\"]\n  },\n  {\n    \"name\": \"orbit\",\n    \"categories\": [\"science\"],\n    \"tags\": [\"planet\",\"space\",\"physics\",\"satellites\",\"moons\"]\n  },\n  {\n    \"name\": \"origami\",\n    \"categories\": [\"animals\",\"design\"],\n    \"tags\": [\"paper\",\"bird\"]\n  },\n  {\n    \"name\": \"package-2\",\n    \"categories\": [\"files\",\"development\"],\n    \"tags\": [\"box\",\"container\",\"storage\",\"sealed\",\"packed\",\"unopened\",\"undelivered\",\"archive\",\"zip\"]\n  },\n  {\n    \"name\": \"package-check\",\n    \"categories\": [\"development\"],\n    \"tags\": [\"confirm\",\"verified\",\"done\",\"todo\",\"tick\",\"complete\",\"task\",\"delivered\"]\n  },\n  {\n    \"name\": \"package-minus\",\n    \"categories\": [\"development\"],\n    \"tags\": [\"delete\",\"remove\"]\n  },\n  {\n    \"name\": \"package-open\",\n    \"categories\": [\"files\",\"development\"],\n    \"tags\": [\"box\",\"container\",\"storage\",\"unpack\",\"unarchive\",\"unzip\",\"opened\",\"delivered\"]\n  },\n  {\n    \"name\": \"package-plus\",\n    \"categories\": [\"development\"],\n    \"tags\": [\"new\",\"add\",\"create\"]\n  },\n  {\n    \"name\": \"package-search\",\n    \"categories\": [\"files\",\"development\"],\n    \"tags\": [\"find\",\"product process\",\"lens\"]\n  },\n  {\n    \"name\": \"package-x\",\n    \"categories\": [\"development\"],\n    \"tags\": [\"delete\",\"remove\"]\n  },\n  {\n    \"name\": \"package\",\n    \"categories\": [\"files\",\"development\"],\n    \"tags\": [\"box\",\"container\",\"storage\",\"sealed\",\"delivery\",\"undelivered\",\"unopened\",\"packed\",\"archive\",\"zip\",\"module\"]\n  },\n  {\n    \"name\": \"paint-bucket\",\n    \"categories\": [\"design\",\"tools\"],\n    \"tags\": [\"fill\",\"paint\",\"bucket\",\"color\",\"colour\"]\n  },\n  {\n    \"name\": \"paint-roller\",\n    \"categories\": [\"text\",\"design\",\"home\",\"tools\"],\n    \"tags\": [\"brush\",\"color\",\"colour\",\"decoration\",\"diy\"]\n  },\n  {\n    \"name\": \"paintbrush-vertical\",\n    \"categories\": [\"text\",\"design\",\"photography\",\"home\",\"tools\"],\n    \"tags\": [\"brush\",\"paintbrush\",\"design\",\"color\",\"colour\",\"decoration\",\"diy\"]\n  },\n  {\n    \"name\": \"paintbrush\",\n    \"categories\": [\"text\",\"design\",\"photography\",\"home\",\"tools\"],\n    \"tags\": [\"brush\",\"paintbrush\",\"design\",\"color\",\"colour\",\"decoration\",\"diy\"]\n  },\n  {\n    \"name\": \"palette\",\n    \"categories\": [\"text\",\"design\",\"photography\"],\n    \"tags\": [\"colors\",\"colours\",\"theme\",\"scheme\",\"paint\",\"watercolor\",\"watercolour\",\"artist\"]\n  },\n  {\n    \"name\": \"panda\",\n    \"categories\": [\"animals\"],\n    \"tags\": [\"animal\",\"wildlife\",\"bear\",\"zoo\",\"bamboo\"]\n  },\n  {\n    \"name\": \"panel-bottom-close\",\n    \"categories\": [\"layout\",\"arrows\"],\n    \"tags\": [\"drawer\",\"dock\",\"hide\",\"chevron\",\"down\"]\n  },\n  {\n    \"name\": \"panel-bottom-dashed\",\n    \"categories\": [\"layout\"],\n    \"tags\": [\"drawer\",\"dock\",\"show\",\"reveal\",\"padding\",\"margin\",\"guide\",\"layout\",\"bleed\"]\n  },\n  {\n    \"name\": \"panel-bottom-open\",\n    \"categories\": [\"layout\",\"arrows\"],\n    \"tags\": [\"drawer\",\"dock\",\"show\",\"reveal\",\"chevron\",\"up\"]\n  },\n  {\n    \"name\": \"panel-bottom\",\n    \"categories\": [\"layout\"],\n    \"tags\": [\"drawer\",\"dock\"]\n  },\n  {\n    \"name\": \"panel-left-close\",\n    \"categories\": [\"layout\",\"arrows\"],\n    \"tags\": [\"primary\",\"drawer\",\"hide\",\"chevron\",\"<\"]\n  },\n  {\n    \"name\": \"panel-left-dashed\",\n    \"categories\": [\"layout\"],\n    \"tags\": [\"sidebar\",\"primary\",\"drawer\",\"show\",\"reveal\",\"padding\",\"margin\",\"guide\",\"layout\",\"bleed\"]\n  },\n  {\n    \"name\": \"panel-left-open\",\n    \"categories\": [\"layout\",\"arrows\"],\n    \"tags\": [\"primary\",\"drawer\",\"show\",\"reveal\",\"chevron\",\"right\",\">\"]\n  },\n  {\n    \"name\": \"panel-left-right-dashed\",\n    \"categories\": [\"layout\"],\n    \"tags\": [\"sidebar\",\"primary\",\"drawer\",\"show\",\"reveal\",\"padding\",\"margin\",\"guide\",\"layout\",\"vertical\",\"bleed\"]\n  },\n  {\n    \"name\": \"panel-left\",\n    \"categories\": [\"layout\"],\n    \"tags\": [\"primary\",\"drawer\"]\n  },\n  {\n    \"name\": \"panel-right-close\",\n    \"categories\": [\"layout\",\"arrows\"],\n    \"tags\": [\"sidebar\",\"secondary\",\"drawer\",\"hide\",\"chevron\",\">\"]\n  },\n  {\n    \"name\": \"panel-right-dashed\",\n    \"categories\": [\"layout\"],\n    \"tags\": [\"sidebar\",\"secondary\",\"drawer\",\"show\",\"reveal\",\"padding\",\"margin\",\"guide\",\"layout\",\"bleed\"]\n  },\n  {\n    \"name\": \"panel-right-open\",\n    \"categories\": [\"layout\",\"arrows\"],\n    \"tags\": [\"sidebar\",\"secondary\",\"drawer\",\"show\",\"reveal\",\"chevron\",\"left\",\"<\"]\n  },\n  {\n    \"name\": \"panel-right\",\n    \"categories\": [\"layout\"],\n    \"tags\": [\"sidebar\",\"secondary\",\"drawer\"]\n  },\n  {\n    \"name\": \"panel-top-bottom-dashed\",\n    \"categories\": [\"layout\"],\n    \"tags\": [\"sidebar\",\"primary\",\"drawer\",\"show\",\"reveal\",\"padding\",\"margin\",\"guide\",\"layout\",\"horizontal\",\"bleed\"]\n  },\n  {\n    \"name\": \"panel-top-close\",\n    \"categories\": [\"layout\",\"arrows\"],\n    \"tags\": [\"menu bar\",\"drawer\",\"hide\",\"chevron\",\"up\"]\n  },\n  {\n    \"name\": \"panel-top-dashed\",\n    \"categories\": [\"layout\"],\n    \"tags\": [\"menu bar\",\"drawer\",\"show\",\"reveal\",\"padding\",\"margin\",\"guide\",\"layout\",\"bleed\"]\n  },\n  {\n    \"name\": \"panel-top-open\",\n    \"categories\": [\"layout\",\"arrows\"],\n    \"tags\": [\"menu bar\",\"drawer\",\"show\",\"reveal\",\"chevron\",\"down\"]\n  },\n  {\n    \"name\": \"panel-top\",\n    \"categories\": [\"layout\",\"design\",\"development\"],\n    \"tags\": [\"drawer\",\"browser\",\"webpage\"]\n  },\n  {\n    \"name\": \"panels-left-bottom\",\n    \"categories\": [\"layout\"],\n    \"tags\": [\"drawers\",\"sidebar\",\"primary\"]\n  },\n  {\n    \"name\": \"panels-right-bottom\",\n    \"categories\": [\"layout\"],\n    \"tags\": [\"drawers\",\"sidebar\",\"secondary\"]\n  },\n  {\n    \"name\": \"panels-top-left\",\n    \"categories\": [\"layout\",\"design\",\"development\"],\n    \"tags\": [\"menu bar\",\"sidebar\",\"primary\",\"drawers\",\"window\",\"webpage\",\"projects\",\"overview\"]\n  },\n  {\n    \"name\": \"paper-bag\",\n    \"categories\": [\"food-beverage\",\"shopping\"],\n    \"tags\": [\"storage\",\"package\",\"lunch\",\"takeout\",\"eco-friendly\",\"kraft\",\"retail\",\"doggybag\"]\n  },\n  {\n    \"name\": \"paperclip\",\n    \"categories\": [\"text\",\"design\",\"files\",\"mail\"],\n    \"tags\": [\"attachment\",\"file\"]\n  },\n  {\n    \"name\": \"parasol\",\n    \"categories\": [\"travel\",\"weather\"],\n    \"tags\": [\"umbrella\",\"sunshade\",\"beach\",\"shade\",\"sun\",\"protection\",\"cover\",\"canopy\",\"garden\",\"outdoors\",\"resort\",\"travel\",\"vacation\",\"holiday\",\"summer\",\"apparel\",\"accessory\",\"sunbathing\",\"relax\",\"tropical\"]\n  },\n  {\n    \"name\": \"parentheses\",\n    \"categories\": [\"development\",\"files\",\"math\"],\n    \"tags\": [\"code\",\"token\",\"parenthesis\",\"parens\",\"brackets\",\"parameters\",\"arguments\",\"args\",\"input\",\"call\",\"math\",\"formula\",\"function\",\"(\",\")\"]\n  },\n  {\n    \"name\": \"parking-meter\",\n    \"categories\": [\"transportation\",\"navigation\"],\n    \"tags\": [\"driving\",\"car park\",\"pay\",\"sidewalk\",\"pavement\"]\n  },\n  {\n    \"name\": \"party-popper\",\n    \"categories\": [\"emoji\"],\n    \"tags\": [\"emoji\",\"congratulations\",\"celebration\",\"party\",\"tada\",\"🎉\",\"🎊\",\"excitement\",\"exciting\",\"excites\",\"confetti\"]\n  },\n  {\n    \"name\": \"pause\",\n    \"categories\": [\"multimedia\"],\n    \"tags\": [\"music\",\"stop\"]\n  },\n  {\n    \"name\": \"paw-print\",\n    \"categories\": [\"animals\"],\n    \"tags\": [\"pets\",\"vets\",\"veterinarian\",\"domesticated\",\"cat\",\"dog\",\"bear\"]\n  },\n  {\n    \"name\": \"pc-case\",\n    \"categories\": [\"devices\",\"gaming\"],\n    \"tags\": [\"computer\",\"chassis\"]\n  },\n  {\n    \"name\": \"pen-line\",\n    \"categories\": [\"text\",\"design\",\"tools\"],\n    \"tags\": [\"pencil\",\"change\",\"create\",\"draw\",\"writer\",\"writing\",\"biro\",\"ink\",\"marker\",\"felt tip\",\"stationery\",\"artist\"]\n  },\n  {\n    \"name\": \"pen-off\",\n    \"categories\": [\"text\",\"design\",\"tools\"],\n    \"tags\": [\"disabled\",\"inactive\",\"non-editable\",\"locked\",\"read-only\",\"unmodifiable\",\"frozen\",\"restricted\",\"pencil\",\"change\",\"create\",\"draw\",\"writer\",\"writing\",\"biro\",\"ink\",\"marker\",\"felt tip\",\"stationery\",\"artist\"]\n  },\n  {\n    \"name\": \"pen-tool\",\n    \"categories\": [\"text\",\"design\",\"cursors\"],\n    \"tags\": [\"vector\",\"drawing\",\"path\"]\n  },\n  {\n    \"name\": \"pen\",\n    \"categories\": [\"text\",\"design\",\"tools\"],\n    \"tags\": [\"pencil\",\"change\",\"create\",\"draw\",\"writer\",\"writing\",\"biro\",\"ink\",\"marker\",\"felt tip\",\"stationery\",\"artist\"]\n  },\n  {\n    \"name\": \"pencil-line\",\n    \"categories\": [\"text\",\"design\",\"tools\"],\n    \"tags\": [\"pencil\",\"change\",\"create\",\"draw\",\"sketch\",\"draft\",\"writer\",\"writing\",\"biro\",\"ink\",\"marker\",\"felt tip\",\"stationery\",\"artist\"]\n  },\n  {\n    \"name\": \"pencil-off\",\n    \"categories\": [\"design\",\"cursors\",\"tools\",\"text\"],\n    \"tags\": [\"disabled\",\"inactive\",\"non-editable\",\"locked\",\"read-only\",\"unmodifiable\",\"frozen\",\"restricted\",\"rubber\",\"edit\",\"create\",\"draw\",\"sketch\",\"draft\",\"writer\",\"writing\",\"stationery\",\"artist\"]\n  },\n  {\n    \"name\": \"pencil-ruler\",\n    \"categories\": [\"tools\",\"design\",\"layout\",\"text\"],\n    \"tags\": [\"edit\",\"create\",\"draw\",\"sketch\",\"draft\",\"writer\",\"writing\",\"stationery\",\"artist\",\"measurements\",\"centimeters\",\"cm\",\"millimeters\",\"mm\",\"metre\",\"foot\",\"feet\",\"inches\",\"units\",\"size\",\"length\",\"width\",\"height\",\"dimensions\",\"depth\",\"breadth\",\"extent\"]\n  },\n  {\n    \"name\": \"pencil-sparkles\",\n    \"categories\": [\"design\",\"cursors\",\"tools\",\"text\",\"photography\"],\n    \"tags\": [\"edit\",\"ai\",\"tools\",\"smart\",\"create\",\"draw\",\"sketch\",\"draft\",\"writer\",\"writing\",\"stationery\",\"artist\",\"magic\",\"wizard\",\"magician\"]\n  },\n  {\n    \"name\": \"pencil\",\n    \"categories\": [\"design\",\"cursors\",\"tools\",\"text\"],\n    \"tags\": [\"rubber\",\"edit\",\"create\",\"draw\",\"sketch\",\"draft\",\"writer\",\"writing\",\"stationery\",\"artist\"]\n  },\n  {\n    \"name\": \"pentagon\",\n    \"categories\": [\"shapes\"],\n    \"tags\": [\"shape\"]\n  },\n  {\n    \"name\": \"percent\",\n    \"categories\": [\"math\",\"development\",\"finance\",\"shopping\"],\n    \"tags\": [\"percentage\",\"modulo\",\"modulus\",\"remainder\",\"%\",\"sale\",\"discount\",\"offer\",\"marketing\"]\n  },\n  {\n    \"name\": \"person-standing\",\n    \"categories\": [\"accessibility\",\"people\"],\n    \"tags\": [\"people\",\"human\",\"accessibility\",\"stick figure\"]\n  },\n  {\n    \"name\": \"phi\",\n    \"categories\": [\"math\",\"science\"],\n    \"tags\": [\"math\",\"golden-ratio\",\"symbol\",\"greek\",\"letter\",\"typography\",\"constant\",\"flux\",\"magnetic-flux\"]\n  },\n  {\n    \"name\": \"philippine-peso\",\n    \"categories\": [\"finance\"],\n    \"tags\": [\"currency\",\"peso\",\"money\",\"php\"]\n  },\n  {\n    \"name\": \"phone-call\",\n    \"categories\": [\"connectivity\",\"devices\",\"communication\"],\n    \"tags\": [\"ring\"]\n  },\n  {\n    \"name\": \"phone-forwarded\",\n    \"categories\": [\"arrows\",\"connectivity\",\"devices\",\"communication\"],\n    \"tags\": [\"call\"]\n  },\n  {\n    \"name\": \"phone-incoming\",\n    \"categories\": [\"arrows\",\"connectivity\",\"devices\",\"communication\"],\n    \"tags\": [\"call\"]\n  },\n  {\n    \"name\": \"phone-missed\",\n    \"categories\": [\"connectivity\",\"devices\",\"communication\"],\n    \"tags\": [\"call\"]\n  },\n  {\n    \"name\": \"phone-off\",\n    \"categories\": [\"connectivity\",\"devices\",\"communication\"],\n    \"tags\": [\"call\",\"mute\"]\n  },\n  {\n    \"name\": \"phone-outgoing\",\n    \"categories\": [\"arrows\",\"connectivity\",\"devices\",\"communication\"],\n    \"tags\": [\"call\"]\n  },\n  {\n    \"name\": \"phone\",\n    \"categories\": [\"text\",\"connectivity\",\"devices\",\"communication\"],\n    \"tags\": [\"call\"]\n  },\n  {\n    \"name\": \"pi\",\n    \"categories\": [\"development\",\"math\"],\n    \"tags\": [\"constant\",\"code\",\"coding\",\"programming\",\"symbol\",\"trigonometry\",\"geometry\",\"formula\"]\n  },\n  {\n    \"name\": \"piano\",\n    \"categories\": [\"multimedia\",\"devices\"],\n    \"tags\": [\"music\",\"audio\",\"sound\",\"noise\",\"notes\",\"chord\",\"keys\",\"octave\",\"acoustic\",\"instrument\",\"play\",\"pianist\",\"performance\",\"concert\"]\n  },\n  {\n    \"name\": \"pickaxe\",\n    \"categories\": [\"tools\",\"gaming\"],\n    \"tags\": [\"mining\",\"mine\",\"land worker\",\"extraction\",\"labor\",\"construction\",\"progress\",\"advancement\",\"crafting\",\"building\",\"creation\"]\n  },\n  {\n    \"name\": \"picture-in-picture-2\",\n    \"categories\": [\"multimedia\"],\n    \"tags\": [\"display\",\"play\",\"video\",\"pop out\",\"always on top\",\"window\",\"inset\",\"multitask\"]\n  },\n  {\n    \"name\": \"picture-in-picture\",\n    \"categories\": [\"multimedia\"],\n    \"tags\": [\"display\",\"play\",\"video\",\"pop out\",\"always on top\",\"window\",\"inset\",\"multitask\"]\n  },\n  {\n    \"name\": \"piggy-bank\",\n    \"categories\": [\"finance\"],\n    \"tags\": [\"money\",\"savings\"]\n  },\n  {\n    \"name\": \"pilcrow-left\",\n    \"categories\": [\"text\"],\n    \"tags\": [\"direction\",\"paragraph\",\"mark\",\"paraph\",\"blind\",\"typography\",\"type\",\"text\",\"prose\",\"symbol\"]\n  },\n  {\n    \"name\": \"pilcrow-right\",\n    \"categories\": [\"text\"],\n    \"tags\": [\"direction\",\"paragraph\",\"mark\",\"paraph\",\"blind\",\"typography\",\"type\",\"text\",\"prose\",\"symbol\"]\n  },\n  {\n    \"name\": \"pilcrow\",\n    \"categories\": [\"text\"],\n    \"tags\": [\"paragraph\",\"mark\",\"paraph\",\"blind\",\"typography\",\"type\",\"text\",\"prose\",\"symbol\"]\n  },\n  {\n    \"name\": \"pill-bottle\",\n    \"categories\": [\"medical\"],\n    \"tags\": [\"medicine\",\"medication\",\"prescription\",\"drug\",\"supplement\",\"vitamin\",\"capsule\",\"jar\",\"container\",\"healthcare\",\"pharmaceutical\",\"tablet\"]\n  },\n  {\n    \"name\": \"pill\",\n    \"categories\": [\"medical\"],\n    \"tags\": [\"medicine\",\"medication\",\"drug\",\"prescription\",\"tablet\",\"pharmacy\"]\n  },\n  {\n    \"name\": \"pin-off\",\n    \"categories\": [\"navigation\"],\n    \"tags\": [\"unpin\",\"map\",\"unlock\",\"unfix\",\"unsave\",\"remove\"]\n  },\n  {\n    \"name\": \"pin\",\n    \"categories\": [\"navigation\",\"account\"],\n    \"tags\": [\"save\",\"map\",\"lock\",\"fix\"]\n  },\n  {\n    \"name\": \"pipette\",\n    \"categories\": [\"text\",\"design\",\"science\"],\n    \"tags\": [\"eye dropper\",\"color picker\",\"lab\",\"chemistry\"]\n  },\n  {\n    \"name\": \"pizza\",\n    \"categories\": [\"food-beverage\"],\n    \"tags\": [\"pie\",\"quiche\",\"food\"]\n  },\n  {\n    \"name\": \"plane-landing\",\n    \"categories\": [\"transportation\",\"travel\"],\n    \"tags\": [\"arrival\",\"plane\",\"trip\",\"airplane\",\"landing\"]\n  },\n  {\n    \"name\": \"plane-takeoff\",\n    \"categories\": [\"transportation\",\"travel\"],\n    \"tags\": [\"departure\",\"plane\",\"trip\",\"airplane\",\"takeoff\"]\n  },\n  {\n    \"name\": \"plane\",\n    \"categories\": [\"transportation\",\"travel\",\"navigation\"],\n    \"tags\": [\"plane\",\"trip\",\"airplane\"]\n  },\n  {\n    \"name\": \"play-off\",\n    \"categories\": [\"multimedia\"],\n    \"tags\": [\"audio\",\"video\",\"music\",\"start\",\"run\",\"off\",\"disabled\",\"blocked\",\"forbidden\"]\n  },\n  {\n    \"name\": \"play\",\n    \"categories\": [\"arrows\",\"multimedia\"],\n    \"tags\": [\"music\",\"audio\",\"video\",\"start\",\"run\"]\n  },\n  {\n    \"name\": \"plug-2\",\n    \"categories\": [\"devices\",\"development\"],\n    \"tags\": [\"electricity\",\"energy\",\"socket\",\"outlet\"]\n  },\n  {\n    \"name\": \"plug-zap\",\n    \"categories\": [\"devices\"],\n    \"tags\": [\"electricity\",\"energy\",\"electronics\",\"charge\",\"charging\",\"battery\",\"connect\"]\n  },\n  {\n    \"name\": \"plug\",\n    \"categories\": [\"devices\",\"development\"],\n    \"tags\": [\"electricity\",\"energy\",\"electronics\",\"socket\",\"outlet\",\"power\",\"voltage\",\"current\",\"charger\"]\n  },\n  {\n    \"name\": \"plus\",\n    \"categories\": [\"math\",\"tools\",\"development\",\"text\",\"cursors\",\"gaming\"],\n    \"tags\": [\"add\",\"new\",\"increase\",\"increment\",\"positive\",\"calculate\",\"toolbar\",\"crosshair\",\"aim\",\"target\",\"scope\",\"sight\",\"reticule\",\"maximum\",\"upgrade\",\"extra\",\"+\"]\n  },\n  {\n    \"name\": \"pocket-knife\",\n    \"categories\": [\"tools\"],\n    \"tags\": [\"swiss army knife\",\"penknife\",\"multi-tool\",\"multitask\",\"blade\",\"cutter\",\"gadget\",\"corkscrew\"]\n  },\n  {\n    \"name\": \"podcast\",\n    \"categories\": [\"multimedia\",\"social\"],\n    \"tags\": [\"audio\",\"music\",\"mic\",\"talk\",\"voice\",\"subscribe\",\"subscription\",\"stream\"]\n  },\n  {\n    \"name\": \"podium\",\n    \"categories\": [\"sports\",\"gaming\"],\n    \"tags\": [\"award\",\"stage\",\"winner\",\"celebration\",\"performance\",\"medal\",\"success\",\"achievement\",\"highlight\",\"ranking\",\"winning\",\"place\",\"placing\",\"leaderboard\",\"first\",\"second\",\"third\",\"gold\",\"silver\",\"bronze\"]\n  },\n  {\n    \"name\": \"pointer-off\",\n    \"categories\": [\"cursors\"],\n    \"tags\": [\"mouse\"]\n  },\n  {\n    \"name\": \"pointer\",\n    \"categories\": [\"cursors\"],\n    \"tags\": [\"mouse\"]\n  },\n  {\n    \"name\": \"popcorn\",\n    \"categories\": [\"food-beverage\",\"multimedia\"],\n    \"tags\": [\"cinema\",\"movies\",\"films\",\"salted\",\"sweet\",\"sugar\",\"candy\",\"snack\"]\n  },\n  {\n    \"name\": \"popsicle\",\n    \"categories\": [\"food-beverage\"],\n    \"tags\": [\"ice lolly\",\"ice cream\",\"sweet\",\"food\"]\n  },\n  {\n    \"name\": \"pound-sterling\",\n    \"categories\": [\"finance\"],\n    \"tags\": [\"currency\",\"money\",\"payment\"]\n  },\n  {\n    \"name\": \"power-off\",\n    \"categories\": [\"connectivity\"],\n    \"tags\": [\"on\",\"off\",\"device\",\"switch\"]\n  },\n  {\n    \"name\": \"power\",\n    \"categories\": [\"connectivity\"],\n    \"tags\": [\"on\",\"off\",\"device\",\"switch\",\"toggle\",\"binary\",\"boolean\",\"reboot\",\"restart\",\"button\",\"keyboard\",\"troubleshoot\"]\n  },\n  {\n    \"name\": \"presentation\",\n    \"categories\": [\"multimedia\",\"photography\",\"devices\",\"communication\",\"design\"],\n    \"tags\": [\"screen\",\"whiteboard\",\"marker pens\",\"markers\",\"blackboard\",\"chalk\",\"easel\",\"school\",\"learning\",\"lesson\",\"office\",\"meeting\",\"project\",\"planning\"]\n  },\n  {\n    \"name\": \"printer-check\",\n    \"categories\": [\"devices\"],\n    \"tags\": [\"fax\",\"office\",\"device\",\"success\",\"printed\"]\n  },\n  {\n    \"name\": \"printer-x\",\n    \"categories\": [\"devices\"],\n    \"tags\": [\"fax\",\"office\",\"device\",\"cross\",\"cancel\",\"remove\",\"error\"]\n  },\n  {\n    \"name\": \"printer\",\n    \"categories\": [\"devices\"],\n    \"tags\": [\"fax\",\"office\",\"device\"]\n  },\n  {\n    \"name\": \"projector\",\n    \"categories\": [\"multimedia\",\"photography\",\"devices\",\"communication\"],\n    \"tags\": [\"cinema\",\"film\",\"movie\",\"home video\",\"presentation\",\"slideshow\",\"office\",\"meeting\",\"project\",\"planning\"]\n  },\n  {\n    \"name\": \"proportions\",\n    \"categories\": [\"layout\",\"design\",\"photography\",\"devices\"],\n    \"tags\": [\"screens\",\"sizes\",\"rotate\",\"rotation\",\"adjust\",\"aspect ratio\",\"16:9\",\"widescreen\",\"4:3\",\"resolution\",\"responsive\",\"mobile\",\"desktop\",\"dimensions\",\"monitor\",\"orientation\",\"portrait\",\"landscape\"]\n  },\n  {\n    \"name\": \"puzzle\",\n    \"categories\": [\"development\",\"gaming\"],\n    \"tags\": [\"component\",\"module\",\"part\",\"piece\"]\n  },\n  {\n    \"name\": \"pyramid\",\n    \"categories\": [\"shapes\",\"math\",\"travel\"],\n    \"tags\": [\"prism\",\"triangle\",\"triangular\",\"hierarchy\",\"structure\",\"geometry\",\"ancient\",\"egyptian\",\"landmark\",\"tourism\"]\n  },\n  {\n    \"name\": \"qr-code\",\n    \"categories\": [\"development\",\"social\"],\n    \"tags\": [\"barcode\",\"scan\",\"link\",\"url\",\"information\",\"digital\"]\n  },\n  {\n    \"name\": \"quote\",\n    \"categories\": [\"text\"],\n    \"tags\": [\"quotation\"]\n  },\n  {\n    \"name\": \"rabbit\",\n    \"categories\": [\"animals\"],\n    \"tags\": [\"animal\",\"rodent\",\"pet\",\"pest\",\"bunny\",\"hare\",\"fast\",\"speed\",\"hop\"]\n  },\n  {\n    \"name\": \"radar\",\n    \"categories\": [\"navigation\",\"security\",\"communication\"],\n    \"tags\": [\"scan\",\"sonar\",\"detect\",\"find\",\"locate\"]\n  },\n  {\n    \"name\": \"radiation\",\n    \"categories\": [\"science\"],\n    \"tags\": [\"radioactive\",\"nuclear\",\"fallout\",\"waste\",\"atomic\",\"physics\",\"particle\",\"element\",\"molecule\"]\n  },\n  {\n    \"name\": \"radical\",\n    \"categories\": [\"development\",\"math\"],\n    \"tags\": [\"calculate\",\"formula\",\"math\",\"operator\",\"root\",\"square\",\"symbol\"]\n  },\n  {\n    \"name\": \"radio-off\",\n    \"categories\": [\"devices\",\"multimedia\",\"social\"],\n    \"tags\": [\"signal\",\"broadcast\",\"connectivity\",\"live\",\"frequency\"]\n  },\n  {\n    \"name\": \"radio-receiver\",\n    \"categories\": [\"devices\"],\n    \"tags\": [\"device\",\"music\",\"connect\"]\n  },\n  {\n    \"name\": \"radio-tower\",\n    \"categories\": [\"devices\",\"multimedia\",\"social\"],\n    \"tags\": [\"signal\",\"broadcast\",\"connectivity\",\"live\",\"frequency\"]\n  },\n  {\n    \"name\": \"radio\",\n    \"categories\": [\"devices\",\"multimedia\",\"social\"],\n    \"tags\": [\"signal\",\"broadcast\",\"connectivity\",\"live\",\"frequency\"]\n  },\n  {\n    \"name\": \"radius\",\n    \"categories\": [\"shapes\",\"math\",\"design\",\"tools\"],\n    \"tags\": [\"shape\",\"circle\",\"geometry\",\"trigonometry\",\"radii\",\"calculate\",\"measure\",\"size\"]\n  },\n  {\n    \"name\": \"rainbow\",\n    \"categories\": [\"weather\"],\n    \"tags\": [\"colors\",\"colours\",\"spectrum\",\"light\",\"prism\",\"arc\",\"clear\",\"sunshine\"]\n  },\n  {\n    \"name\": \"rat\",\n    \"categories\": [\"animals\"],\n    \"tags\": [\"mouse\",\"mice\",\"gerbil\",\"rodent\",\"pet\",\"pest\",\"plague\",\"disease\"]\n  },\n  {\n    \"name\": \"ratio\",\n    \"categories\": [\"layout\",\"design\",\"photography\"],\n    \"tags\": [\"screens\",\"sizes\",\"rotate\",\"rotation\",\"adjust\",\"aspect ratio\",\"proportions\",\"16:9\",\"widescreen\",\"4:3\",\"resolution\",\"responsive\",\"mobile\",\"desktop\",\"dimensions\",\"monitor\",\"orientation\",\"portrait\",\"landscape\"]\n  },\n  {\n    \"name\": \"receipt-cent\",\n    \"categories\": [\"finance\",\"travel\"],\n    \"tags\": [\"bill\",\"voucher\",\"slip\",\"check\",\"counterfoil\",\"currency\",\"cents\",\"dollar\",\"usd\",\"$\",\"¢\"]\n  },\n  {\n    \"name\": \"receipt-euro\",\n    \"categories\": [\"finance\",\"travel\"],\n    \"tags\": [\"bill\",\"voucher\",\"slip\",\"check\",\"counterfoil\",\"currency\",\"€\"]\n  },\n  {\n    \"name\": \"receipt-indian-rupee\",\n    \"categories\": [\"finance\",\"travel\"],\n    \"tags\": [\"bill\",\"voucher\",\"slip\",\"check\",\"counterfoil\",\"currency\",\"inr\",\"₹\"]\n  },\n  {\n    \"name\": \"receipt-japanese-yen\",\n    \"categories\": [\"finance\",\"travel\"],\n    \"tags\": [\"bill\",\"voucher\",\"slip\",\"check\",\"counterfoil\",\"currency\",\"jpy\",\"¥\"]\n  },\n  {\n    \"name\": \"receipt-pound-sterling\",\n    \"categories\": [\"finance\",\"travel\"],\n    \"tags\": [\"bill\",\"voucher\",\"slip\",\"check\",\"counterfoil\",\"british\",\"currency\",\"gbp\",\"£\"]\n  },\n  {\n    \"name\": \"receipt-russian-ruble\",\n    \"categories\": [\"finance\",\"travel\"],\n    \"tags\": [\"bill\",\"voucher\",\"slip\",\"check\",\"counterfoil\",\"currency\",\"rub\",\"₽\"]\n  },\n  {\n    \"name\": \"receipt-swiss-franc\",\n    \"categories\": [\"finance\",\"travel\"],\n    \"tags\": [\"bill\",\"voucher\",\"slip\",\"check\",\"counterfoil\",\"currency\",\"chf\",\"₣\"]\n  },\n  {\n    \"name\": \"receipt-text\",\n    \"categories\": [\"finance\",\"travel\"],\n    \"tags\": [\"bill\",\"voucher\",\"slip\",\"check\",\"counterfoil\",\"details\",\"small print\",\"terms\",\"conditions\",\"contract\"]\n  },\n  {\n    \"name\": \"receipt-turkish-lira\",\n    \"categories\": [\"finance\",\"travel\"],\n    \"tags\": [\"bill\",\"voucher\",\"slip\",\"check\",\"counterfoil\",\"currency\",\"try\",\"₺\"]\n  },\n  {\n    \"name\": \"receipt\",\n    \"categories\": [\"finance\",\"travel\"],\n    \"tags\": [\"bill\",\"voucher\",\"slip\",\"check\",\"counterfoil\",\"currency\",\"dollar\",\"usd\",\"$\"]\n  },\n  {\n    \"name\": \"rectangle-circle\",\n    \"categories\": [\"development\",\"text\"],\n    \"tags\": [\"compose\",\"keyboard\",\"key\",\"button\"]\n  },\n  {\n    \"name\": \"rectangle-ellipsis\",\n    \"categories\": [\"text\",\"development\"],\n    \"tags\": [\"login\",\"password\",\"authenticate\",\"2fa\",\"field\",\"fill\",\"ellipsis\",\"et cetera\",\"etc\",\"loader\",\"loading\",\"progress\",\"pending\",\"throbber\",\"menu\",\"options\",\"operator\",\"code\",\"spread\",\"rest\",\"more\",\"further\",\"extra\",\"overflow\",\"dots\",\"…\",\"...\"]\n  },\n  {\n    \"name\": \"rectangle-goggles\",\n    \"categories\": [\"devices\",\"gaming\",\"multimedia\",\"connectivity\"],\n    \"tags\": [\"vr\",\"virtual\",\"augmented\",\"reality\",\"headset\",\"goggles\"]\n  },\n  {\n    \"name\": \"rectangle-horizontal\",\n    \"categories\": [\"shapes\",\"design\"],\n    \"tags\": [\"rectangle\",\"aspect ratio\",\"16:9\",\"horizontal\",\"shape\"]\n  },\n  {\n    \"name\": \"rectangle-vertical\",\n    \"categories\": [\"shapes\",\"design\"],\n    \"tags\": [\"rectangle\",\"aspect ratio\",\"9:16\",\"vertical\",\"shape\"]\n  },\n  {\n    \"name\": \"recycle\",\n    \"categories\": [\"sustainability\"],\n    \"tags\": [\"sustainability\",\"salvage\",\"arrows\"]\n  },\n  {\n    \"name\": \"redo-2\",\n    \"categories\": [\"text\",\"arrows\"],\n    \"tags\": [\"undo\",\"rerun\",\"history\"]\n  },\n  {\n    \"name\": \"redo-dot\",\n    \"categories\": [\"text\",\"arrows\"],\n    \"tags\": [\"redo\",\"history\",\"step\",\"over\",\"forward\"]\n  },\n  {\n    \"name\": \"redo\",\n    \"categories\": [\"text\",\"arrows\"],\n    \"tags\": [\"undo\",\"rerun\",\"history\"]\n  },\n  {\n    \"name\": \"refresh-ccw-dot\",\n    \"categories\": [\"arrows\",\"development\"],\n    \"tags\": [\"arrows\",\"rotate\",\"reload\",\"synchronise\",\"synchronize\",\"circular\",\"cycle\",\"issue\",\"code\",\"coding\",\"version control\"]\n  },\n  {\n    \"name\": \"refresh-ccw\",\n    \"categories\": [\"arrows\"],\n    \"tags\": [\"arrows\",\"rotate\",\"reload\",\"rerun\",\"synchronise\",\"synchronize\",\"circular\",\"cycle\"]\n  },\n  {\n    \"name\": \"refresh-cw-off\",\n    \"categories\": [\"arrows\"],\n    \"tags\": [\"rotate\",\"reload\",\"rerun\",\"synchronise\",\"synchronize\",\"arrows\",\"circular\",\"cycle\",\"cancel\",\"no\",\"stop\",\"error\",\"disconnect\",\"ignore\"]\n  },\n  {\n    \"name\": \"refresh-cw\",\n    \"categories\": [\"arrows\"],\n    \"tags\": [\"rotate\",\"reload\",\"rerun\",\"synchronise\",\"synchronize\",\"arrows\",\"circular\",\"cycle\"]\n  },\n  {\n    \"name\": \"refrigerator\",\n    \"categories\": [\"food-beverage\",\"home\"],\n    \"tags\": [\"frigerator\",\"fridge\",\"freezer\",\"cooler\",\"icebox\",\"chiller\",\"cold storage\"]\n  },\n  {\n    \"name\": \"regex\",\n    \"categories\": [\"text\",\"development\"],\n    \"tags\": [\"search\",\"text\",\"code\"]\n  },\n  {\n    \"name\": \"remove-formatting\",\n    \"categories\": [\"text\"],\n    \"tags\": [\"text\",\"font\",\"typography\",\"format\",\"x\",\"remove\",\"delete\",\"times\",\"clear\"]\n  },\n  {\n    \"name\": \"repeat-1\",\n    \"categories\": [\"multimedia\"],\n    \"tags\": [\"replay\"]\n  },\n  {\n    \"name\": \"repeat-2\",\n    \"categories\": [\"arrows\",\"social\",\"multimedia\"],\n    \"tags\": [\"arrows\",\"retweet\",\"repost\",\"share\",\"repeat\",\"loop\"]\n  },\n  {\n    \"name\": \"repeat-off\",\n    \"categories\": [\"arrows\",\"multimedia\"],\n    \"tags\": [\"loop\",\"arrows\",\"recurring\",\"again\"]\n  },\n  {\n    \"name\": \"repeat\",\n    \"categories\": [\"arrows\",\"multimedia\"],\n    \"tags\": [\"loop\",\"arrows\"]\n  },\n  {\n    \"name\": \"replace-all\",\n    \"categories\": [\"text\"],\n    \"tags\": [\"search\",\"substitute\",\"swap\",\"change\"]\n  },\n  {\n    \"name\": \"replace\",\n    \"categories\": [\"text\"],\n    \"tags\": [\"search\",\"substitute\",\"swap\",\"change\"]\n  },\n  {\n    \"name\": \"reply-all\",\n    \"categories\": [\"mail\"],\n    \"tags\": [\"email\"]\n  },\n  {\n    \"name\": \"reply\",\n    \"categories\": [\"mail\"],\n    \"tags\": [\"email\"]\n  },\n  {\n    \"name\": \"rewind\",\n    \"categories\": [\"arrows\",\"multimedia\"],\n    \"tags\": [\"music\"]\n  },\n  {\n    \"name\": \"ribbon\",\n    \"categories\": [\"social\",\"medical\",\"emoji\"],\n    \"tags\": [\"awareness\",\"strip\",\"band\",\"tape\",\"strap\",\"cordon\"]\n  },\n  {\n    \"name\": \"road\",\n    \"categories\": [\"transportation\"],\n    \"tags\": [\"road\",\"street\",\"highway\",\"route\",\"path\",\"transport\",\"traffic\",\"drive\",\"map\"]\n  },\n  {\n    \"name\": \"rocket\",\n    \"categories\": [\"gaming\",\"development\"],\n    \"tags\": [\"release\",\"boost\",\"launch\",\"space\",\"version\"]\n  },\n  {\n    \"name\": \"rocking-chair\",\n    \"categories\": [\"home\"],\n    \"tags\": [\"chair\",\"furniture\",\"seat\",\"comfort\",\"relax\"]\n  },\n  {\n    \"name\": \"roller-coaster\",\n    \"categories\": [\"navigation\"],\n    \"tags\": [\"attraction\",\"entertainment\",\"amusement park\",\"theme park\",\"funfair\"]\n  },\n  {\n    \"name\": \"rose\",\n    \"categories\": [\"nature\",\"seasons\",\"sustainability\",\"home\",\"social\"],\n    \"tags\": [\"roses\",\"thorns\",\"petals\",\"plant\",\"stem\",\"leaves\",\"spring\",\"bloom\",\"blossom\",\"gardening\",\"botanical\",\"flora\",\"florist\",\"bouquet\",\"bunch\",\"gift\",\"date\",\"romance\",\"romantic\",\"valentines day\",\"special occasion\"]\n  },\n  {\n    \"name\": \"rotate-3d\",\n    \"categories\": [\"design\"],\n    \"tags\": [\"gizmo\",\"transform\",\"orientation\",\"orbit\",\"axis\"]\n  },\n  {\n    \"name\": \"rotate-ccw-key\",\n    \"categories\": [\"security\",\"account\"],\n    \"tags\": [\"password\",\"key\",\"refresh\",\"change\"]\n  },\n  {\n    \"name\": \"rotate-ccw-square\",\n    \"categories\": [\"layout\",\"design\",\"photography\",\"tools\",\"arrows\"],\n    \"tags\": [\"left\",\"counter-clockwise\",\"rotate\",\"image\",\"90\",\"45\",\"degrees\",\"°\"]\n  },\n  {\n    \"name\": \"rotate-ccw\",\n    \"categories\": [\"arrows\",\"design\",\"photography\"],\n    \"tags\": [\"arrow\",\"left\",\"counter-clockwise\",\"restart\",\"reload\",\"rerun\",\"refresh\",\"backup\",\"undo\",\"replay\",\"redo\",\"retry\",\"rewind\",\"reverse\"]\n  },\n  {\n    \"name\": \"rotate-cw-square\",\n    \"categories\": [\"layout\",\"design\",\"photography\",\"tools\",\"arrows\"],\n    \"tags\": [\"right\",\"clockwise\",\"rotate\",\"image\",\"90\",\"45\",\"degrees\",\"°\"]\n  },\n  {\n    \"name\": \"rotate-cw\",\n    \"categories\": [\"arrows\",\"design\",\"photography\"],\n    \"tags\": [\"arrow\",\"right\",\"clockwise\",\"refresh\",\"reload\",\"rerun\",\"redo\"]\n  },\n  {\n    \"name\": \"route-off\",\n    \"categories\": [\"navigation\"],\n    \"tags\": [\"path\",\"journey\",\"planner\",\"points\",\"stops\",\"stations\",\"reset\",\"clear\",\"cancelled\",\"closed\",\"blocked\"]\n  },\n  {\n    \"name\": \"route\",\n    \"categories\": [\"navigation\"],\n    \"tags\": [\"path\",\"journey\",\"planner\",\"points\",\"stops\",\"stations\"]\n  },\n  {\n    \"name\": \"router\",\n    \"categories\": [\"development\",\"devices\",\"connectivity\",\"home\"],\n    \"tags\": [\"computer\",\"server\",\"cloud\"]\n  },\n  {\n    \"name\": \"rows-2\",\n    \"categories\": [\"layout\",\"design\",\"text\"],\n    \"tags\": [\"lines\",\"list\",\"queue\",\"preview\",\"panel\",\"paragraphs\",\"parallel\",\"series\",\"split\",\"vertical\",\"horizontal\",\"half\",\"center\",\"middle\",\"even\",\"drawer\"]\n  },\n  {\n    \"name\": \"rows-3\",\n    \"categories\": [\"layout\",\"design\",\"text\"],\n    \"tags\": [\"lines\",\"list\",\"queue\",\"preview\",\"paragraphs\",\"parallel\",\"series\",\"split\",\"vertical\",\"horizontal\",\"half\",\"center\",\"middle\",\"even\",\"drawers\"]\n  },\n  {\n    \"name\": \"rows-4\",\n    \"categories\": [\"layout\",\"design\",\"text\"],\n    \"tags\": [\"lines\",\"list\",\"queue\",\"preview\",\"paragraphs\",\"parallel\",\"series\",\"split\",\"vertical\",\"horizontal\",\"half\",\"center\",\"middle\",\"even\",\"drawers\",\"grill\"]\n  },\n  {\n    \"name\": \"rss\",\n    \"categories\": [\"development\",\"social\"],\n    \"tags\": [\"feed\",\"subscribe\",\"news\",\"updates\",\"notifications\",\"content\",\"blog\",\"articles\",\"broadcast\",\"syndication\",\"reader\",\"channels\",\"posts\",\"publishing\",\"digest\",\"alert\",\"following\",\"inbox\",\"newsletter\",\"weblog\",\"podcast\"]\n  },\n  {\n    \"name\": \"ruler-dimension-line\",\n    \"categories\": [\"tools\",\"design\",\"layout\"],\n    \"tags\": [\"measurements\",\"centimeters\",\"cm\",\"millimeters\",\"mm\",\"metre\",\"foot\",\"feet\",\"inches\",\"units\",\"size\",\"length\",\"width\",\"height\",\"dimensions\",\"depth\",\"breadth\",\"extent\",\"stationery\"]\n  },\n  {\n    \"name\": \"ruler\",\n    \"categories\": [\"tools\",\"design\",\"layout\"],\n    \"tags\": [\"measurements\",\"centimeters\",\"cm\",\"millimeters\",\"mm\",\"metre\",\"foot\",\"feet\",\"inches\",\"units\",\"size\",\"length\",\"width\",\"height\",\"dimensions\",\"depth\",\"breadth\",\"extent\",\"stationery\"]\n  },\n  {\n    \"name\": \"russian-ruble\",\n    \"categories\": [\"finance\"],\n    \"tags\": [\"currency\",\"money\",\"payment\"]\n  },\n  {\n    \"name\": \"sailboat\",\n    \"categories\": [\"transportation\",\"travel\"],\n    \"tags\": [\"ship\",\"boat\",\"harbor\",\"harbour\",\"dock\"]\n  },\n  {\n    \"name\": \"salad\",\n    \"categories\": [\"food-beverage\",\"emoji\"],\n    \"tags\": [\"food\",\"vegetarian\",\"dish\",\"restaurant\",\"course\",\"meal\",\"side\",\"vegetables\",\"health\"]\n  },\n  {\n    \"name\": \"sandwich\",\n    \"categories\": [\"food-beverage\"],\n    \"tags\": [\"food\",\"snack\",\"dish\",\"restaurant\",\"lunch\",\"meal\"]\n  },\n  {\n    \"name\": \"satellite-dish\",\n    \"categories\": [\"connectivity\",\"devices\",\"multimedia\"],\n    \"tags\": [\"antenna\",\"receiver\",\"dish aerial\",\"saucer\"]\n  },\n  {\n    \"name\": \"satellite\",\n    \"categories\": [\"connectivity\",\"science\"],\n    \"tags\": [\"space station\",\"orbit\",\"transmitter\"]\n  },\n  {\n    \"name\": \"saudi-riyal\",\n    \"categories\": [\"finance\"],\n    \"tags\": [\"currency\",\"money\",\"payment\"]\n  },\n  {\n    \"name\": \"save-all\",\n    \"categories\": [\"text\",\"files\"],\n    \"tags\": [\"floppy disks\",\"copy\"]\n  },\n  {\n    \"name\": \"save-check\",\n    \"categories\": [\"text\",\"files\",\"development\"],\n    \"tags\": [\"save\",\"save-check\",\"floppy-disk\",\"saved\",\"check\",\"save-success\"]\n  },\n  {\n    \"name\": \"save-off\",\n    \"categories\": [\"text\",\"files\"],\n    \"tags\": [\"floppy disk\",\"unsalvageable\"]\n  },\n  {\n    \"name\": \"save-pen\",\n    \"categories\": [\"text\",\"files\"],\n    \"tags\": [\"floppy disk\",\"directory\",\"rename\"]\n  },\n  {\n    \"name\": \"save-plus\",\n    \"categories\": [\"text\",\"files\"],\n    \"tags\": [\"floppy disk\",\"save\",\"plus\",\"add\",\"update\",\"create\"]\n  },\n  {\n    \"name\": \"save\",\n    \"categories\": [\"text\",\"files\"],\n    \"tags\": [\"floppy disk\"]\n  },\n  {\n    \"name\": \"scale-3d\",\n    \"categories\": [\"design\"],\n    \"tags\": [\"gizmo\",\"transform\",\"size\",\"axis\"]\n  },\n  {\n    \"name\": \"scale\",\n    \"categories\": [\"navigation\",\"science\",\"finance\"],\n    \"tags\": [\"balance\",\"legal\",\"license\",\"right\",\"rule\",\"law\",\"justice\",\"weight\",\"measure\",\"compare\",\"judge\",\"fair\",\"ethics\",\"decision\"]\n  },\n  {\n    \"name\": \"scaling\",\n    \"categories\": [\"design\"],\n    \"tags\": [\"scale\",\"resize\",\"design\"]\n  },\n  {\n    \"name\": \"scan-barcode\",\n    \"categories\": [\"shopping\",\"devices\"],\n    \"tags\": [\"checkout\",\"till\",\"cart\",\"transaction\",\"purchase\",\"buy\",\"product\",\"packaging\",\"retail\",\"consumer\"]\n  },\n  {\n    \"name\": \"scan-box\",\n    \"categories\": [\"design\",\"devices\",\"shopping\",\"gaming\"],\n    \"tags\": [\"ar\",\"augmented reality\",\"3d\",\"object detection\",\"object recognition\",\"tracking\",\"spatial computing\",\"capture\",\"cube\",\"bounding box\",\"camera\",\"frame\",\"shape\",\"boundary\",\"lidar\",\"depth\",\"scanning\",\"mapping\",\"placement\"]\n  },\n  {\n    \"name\": \"scan-eye\",\n    \"categories\": [\"photography\",\"multimedia\",\"accessibility\",\"security\",\"devices\",\"account\"],\n    \"tags\": [\"preview\",\"zoom\",\"expand\",\"fullscreen\",\"gallery\",\"image\",\"camera\",\"watch\",\"surveillance\",\"retina\",\"focus\",\"lens\",\"biometric\",\"identification\",\"authentication\",\"access\",\"login\"]\n  },\n  {\n    \"name\": \"scan-face\",\n    \"categories\": [\"account\",\"security\",\"devices\",\"social\"],\n    \"tags\": [\"face\",\"biometric\",\"identification\",\"authentication\",\"2fa\",\"access\",\"login\",\"dashed\"]\n  },\n  {\n    \"name\": \"scan-heart\",\n    \"categories\": [\"medical\"],\n    \"tags\": [\"health\",\"heart rate\",\"pulse\",\"monitoring\",\"healthiness\",\"screening\",\"dashed\"]\n  },\n  {\n    \"name\": \"scan-line\",\n    \"categories\": [\"devices\",\"shopping\"],\n    \"tags\": [\"checkout\",\"till\",\"cart\",\"transaction\",\"purchase\",\"buy\",\"product\",\"packaging\",\"retail\",\"consumer\",\"qr-code\",\"dashed\"]\n  },\n  {\n    \"name\": \"scan-qr-code\",\n    \"categories\": [\"account\",\"shopping\",\"devices\",\"security\"],\n    \"tags\": [\"barcode\",\"scan\",\"qrcode\",\"url\",\"information\",\"digital\",\"scanner\"]\n  },\n  {\n    \"name\": \"scan-search\",\n    \"categories\": [\"photography\",\"multimedia\",\"accessibility\"],\n    \"tags\": [\"preview\",\"zoom\",\"expand\",\"fullscreen\",\"gallery\",\"image\",\"focus\",\"lens\"]\n  },\n  {\n    \"name\": \"scan-text\",\n    \"categories\": [\"text\",\"devices\"],\n    \"tags\": [\"recognition\",\"read\",\"translate\",\"copy\",\"lines\"]\n  },\n  {\n    \"name\": \"scan\",\n    \"categories\": [\"devices\",\"shopping\",\"security\",\"social\",\"gaming\"],\n    \"tags\": [\"qr-code\",\"barcode\",\"checkout\",\"augmented reality\",\"ar\",\"target\",\"surveillance\",\"camera\",\"lens\",\"focus\",\"frame\",\"select\",\"box\",\"boundary\",\"bounds\",\"area\",\"square\",\"dashed\"]\n  },\n  {\n    \"name\": \"school\",\n    \"categories\": [\"buildings\",\"navigation\"],\n    \"tags\": [\"building\",\"education\",\"childhood\",\"university\",\"learning\",\"campus\",\"scholar\",\"student\",\"lecture\",\"degree\",\"course\",\"academia\",\"study\",\"knowledge\",\"classroom\",\"research\",\"diploma\",\"graduation\",\"professor\",\"tutorial\",\"homework\",\"assignment\",\"exam\"]\n  },\n  {\n    \"name\": \"scissors-line-dashed\",\n    \"categories\": [\"design\",\"tools\"],\n    \"tags\": [\"cut here\",\"along\",\"snip\",\"chop\",\"stationery\",\"crafts\",\"instructions\",\"diagram\"]\n  },\n  {\n    \"name\": \"scissors\",\n    \"categories\": [\"text\",\"design\",\"tools\"],\n    \"tags\": [\"cut\",\"snip\",\"chop\",\"stationery\",\"crafts\"]\n  },\n  {\n    \"name\": \"scooter\",\n    \"categories\": [\"transportation\"],\n    \"tags\": [\"vehicle\",\"drive\",\"trip\",\"journey\",\"transport\",\"electric\",\"ride\",\"urban\",\"commute\",\"speed\"]\n  },\n  {\n    \"name\": \"screen-share-off\",\n    \"categories\": [\"connectivity\",\"devices\",\"communication\"],\n    \"tags\": [\"desktop\",\"disconnect\",\"monitor\"]\n  },\n  {\n    \"name\": \"screen-share\",\n    \"categories\": [\"connectivity\",\"devices\",\"communication\"],\n    \"tags\": [\"host\",\"desktop\",\"monitor\"]\n  },\n  {\n    \"name\": \"scroll-text\",\n    \"categories\": [\"gaming\",\"development\",\"text\"],\n    \"tags\": [\"paper\",\"log\",\"scripture\",\"document\",\"notes\",\"parchment\",\"list\",\"long\",\"script\",\"story\",\"code\",\"coding\"]\n  },\n  {\n    \"name\": \"scroll\",\n    \"categories\": [\"gaming\",\"development\",\"text\"],\n    \"tags\": [\"paper\",\"log\",\"scripture\",\"document\",\"notes\",\"parchment\",\"list\",\"long\",\"script\",\"story\",\"code\",\"coding\"]\n  },\n  {\n    \"name\": \"search-alert\",\n    \"categories\": [\"text\",\"social\"],\n    \"tags\": [\"find\",\"scan\",\"magnifier\",\"magnifying glass\",\"stop\",\"warning\",\"alert\",\"error\",\"anomaly\",\"lens\",\"locate\",\"explore\",\"discover\",\"enlarge\",\"zoom\"]\n  },\n  {\n    \"name\": \"search-check\",\n    \"categories\": [\"text\",\"social\"],\n    \"tags\": [\"find\",\"scan\",\"magnifier\",\"magnifying glass\",\"found\",\"correct\",\"complete\",\"tick\",\"lens\",\"locate\",\"explore\",\"discover\",\"enlarge\",\"zoom\"]\n  },\n  {\n    \"name\": \"search-code\",\n    \"categories\": [\"text\",\"social\",\"development\"],\n    \"tags\": [\"find\",\"scan\",\"magnifier\",\"magnifying glass\",\"grep\",\"chevrons\",\"<>\",\"lens\",\"locate\",\"explore\",\"discover\",\"enlarge\",\"zoom\"]\n  },\n  {\n    \"name\": \"search-slash\",\n    \"categories\": [\"text\",\"social\"],\n    \"tags\": [\"find\",\"scan\",\"magnifier\",\"magnifying glass\",\"stop\",\"clear\",\"cancel\",\"abort\",\"/\",\"lens\",\"locate\",\"explore\",\"discover\",\"enlarge\",\"zoom\"]\n  },\n  {\n    \"name\": \"search-x\",\n    \"categories\": [\"text\",\"social\"],\n    \"tags\": [\"find\",\"scan\",\"magnifier\",\"magnifying glass\",\"stop\",\"clear\",\"cancel\",\"abort\",\"lens\",\"locate\",\"explore\",\"discover\",\"enlarge\",\"zoom\"]\n  },\n  {\n    \"name\": \"search\",\n    \"categories\": [\"text\",\"social\"],\n    \"tags\": [\"find\",\"scan\",\"magnifier\",\"magnifying glass\",\"lens\",\"locate\",\"explore\",\"discover\",\"enlarge\",\"zoom\"]\n  },\n  {\n    \"name\": \"section\",\n    \"categories\": [\"text\"],\n    \"tags\": [\"mark\",\"typography\",\"punctuation\",\"legal\",\"type\",\"text\",\"prose\",\"symbol\"]\n  },\n  {\n    \"name\": \"send-horizontal\",\n    \"categories\": [\"mail\",\"communication\",\"connectivity\"],\n    \"tags\": [\"email\",\"message\",\"mail\",\"paper airplane\",\"paper aeroplane\",\"submit\"]\n  },\n  {\n    \"name\": \"send-to-back\",\n    \"categories\": [\"design\",\"layout\"],\n    \"tags\": [\"bring\",\"send\",\"move\",\"under\",\"back\",\"backwards\",\"overlap\",\"layer\",\"order\"]\n  },\n  {\n    \"name\": \"send\",\n    \"categories\": [\"mail\",\"communication\",\"connectivity\"],\n    \"tags\": [\"email\",\"message\",\"mail\",\"paper airplane\",\"paper aeroplane\",\"submit\"]\n  },\n  {\n    \"name\": \"separator-horizontal\",\n    \"categories\": [\"text\",\"arrows\",\"layout\"],\n    \"tags\": [\"move\",\"split\"]\n  },\n  {\n    \"name\": \"separator-vertical\",\n    \"categories\": [\"text\",\"arrows\",\"layout\"],\n    \"tags\": [\"move\",\"split\"]\n  },\n  {\n    \"name\": \"server-cog\",\n    \"categories\": [\"development\",\"devices\"],\n    \"tags\": [\"cloud\",\"storage\",\"computing\",\"cog\",\"gear\"]\n  },\n  {\n    \"name\": \"server-crash\",\n    \"categories\": [\"development\",\"devices\"],\n    \"tags\": [\"cloud\",\"storage\",\"problem\",\"error\"]\n  },\n  {\n    \"name\": \"server-off\",\n    \"categories\": [\"development\",\"devices\"],\n    \"tags\": [\"cloud\",\"storage\"]\n  },\n  {\n    \"name\": \"server-plus\",\n    \"categories\": [\"development\",\"devices\"],\n    \"tags\": [\"add\",\"create\",\"new\",\"cloud\",\"storage\",\"computing\"]\n  },\n  {\n    \"name\": \"server\",\n    \"categories\": [\"development\",\"devices\"],\n    \"tags\": [\"cloud\",\"storage\"]\n  },\n  {\n    \"name\": \"settings-2\",\n    \"categories\": [\"account\"],\n    \"tags\": [\"cog\",\"edit\",\"gear\",\"preferences\",\"slider\"]\n  },\n  {\n    \"name\": \"settings\",\n    \"categories\": [\"account\"],\n    \"tags\": [\"cog\",\"edit\",\"gear\",\"preferences\"]\n  },\n  {\n    \"name\": \"shapes\",\n    \"categories\": [\"shapes\",\"gaming\"],\n    \"tags\": [\"triangle\",\"equilateral\",\"square\",\"circle\",\"classification\",\"different\",\"collection\",\"toy\",\"blocks\",\"learning\"]\n  },\n  {\n    \"name\": \"share-2\",\n    \"categories\": [\"account\",\"social\"],\n    \"tags\": [\"network\",\"connections\"]\n  },\n  {\n    \"name\": \"share\",\n    \"categories\": [\"account\",\"social\"],\n    \"tags\": [\"network\",\"connections\"]\n  },\n  {\n    \"name\": \"sheet\",\n    \"categories\": [\"text\",\"files\"],\n    \"tags\": [\"spreadsheets\",\"table\",\"excel\"]\n  },\n  {\n    \"name\": \"shell\",\n    \"categories\": [\"animals\",\"development\",\"nature\",\"science\",\"travel\",\"food-beverage\",\"home\"],\n    \"tags\": [\"beach\",\"sand\",\"holiday\",\"sealife\",\"fossil\",\"ammonite\",\"biology\",\"ocean\",\"terminal\",\"command line\",\"session\",\"bash\",\"zsh\",\"roll\",\"wrap\",\"chewing gum\",\"bubble gum\",\"sweet\",\"sugar\",\"hosepipe\",\"carpet\",\"string\",\"spiral\",\"spinner\",\"hypnotise\",\"hypnosis\"]\n  },\n  {\n    \"name\": \"shelving-unit\",\n    \"categories\": [\"home\"],\n    \"tags\": [\"ledge\",\"rack\",\"storage\",\"inventory\",\"furniture\",\"sill\",\"shelves\",\"shelf\",\"organize\",\"display\",\"store\",\"arrange\",\"unit\",\"cabinet\",\"fixture\",\"retail\",\"warehouse\"]\n  },\n  {\n    \"name\": \"shield-alert\",\n    \"categories\": [\"account\",\"security\",\"development\",\"notifications\",\"gaming\"],\n    \"tags\": [\"unshielded\",\"cybersecurity\",\"insecure\",\"unsecured\",\"safety\",\"unsafe\",\"protection\",\"unprotected\",\"guardian\",\"unguarded\",\"unarmored\",\"unarmoured\",\"defenseless\",\"defenceless\",\"undefended\",\"defender\",\"blocked\",\"stopped\",\"intercepted\",\"interception\",\"saved\",\"thwarted\",\"threat\",\"prevention\",\"unprevented\",\"antivirus\",\"vigilance\",\"vigilant\",\"detection\",\"detected\",\"scanned\",\"found\",\"exploit\",\"vulnerability\",\"vulnerable\",\"weakness\",\"infection\",\"infected\",\"comprimised\",\"data leak\",\"audited\",\"admin\",\"verification\",\"unverified\",\"uncertified\",\"warning\",\"emergency\",\"attention\",\"urgent\",\"alarm\",\"crest\",\"bravery\",\"strength\",\"tough\",\"attacked\",\"damaged\",\"injured\",\"hit\",\"expired\",\"disabled\",\"inactive\",\"error\",\"exclamation mark\",\"!\"]\n  },\n  {\n    \"name\": \"shield-ban\",\n    \"categories\": [\"account\",\"security\",\"development\",\"gaming\"],\n    \"tags\": [\"unshielded\",\"cybersecurity\",\"insecure\",\"unsecured\",\"safety\",\"unsafe\",\"protection\",\"unprotected\",\"guardian\",\"unguarded\",\"unarmored\",\"unarmoured\",\"defenseless\",\"defenceless\",\"undefended\",\"defender\",\"blocked\",\"stopped\",\"intercepted\",\"interception\",\"saved\",\"thwarted\",\"threat\",\"prevention\",\"unprevented\",\"antivirus\",\"vigilance\",\"vigilant\",\"detection\",\"detected\",\"scanned\",\"found\",\"exploit\",\"vulnerability\",\"vulnerable\",\"weakness\",\"infection\",\"infected\",\"comprimised\",\"data leak\",\"audited\",\"admin\",\"verification\",\"unverified\",\"uncertified\",\"cancel\",\"error\",\"crest\",\"bravery\",\"attacked\",\"damaged\",\"injured\",\"hit\",\"expired\",\"eliminated\",\"disabled\",\"inactive\",\"/\"]\n  },\n  {\n    \"name\": \"shield-check\",\n    \"categories\": [\"account\",\"security\",\"development\",\"gaming\"],\n    \"tags\": [\"cybersecurity\",\"secured\",\"safety\",\"protection\",\"protected\",\"guardian\",\"guarded\",\"armored\",\"armoured\",\"defense\",\"defence\",\"defended\",\"blocked\",\"threat\",\"prevention\",\"prevented\",\"antivirus\",\"vigilance\",\"vigilant\",\"active\",\"activated\",\"enabled\",\"detection\",\"scanned\",\"found\",\"strength\",\"strong\",\"tough\",\"invincible\",\"invincibility\",\"invulnerable\",\"undamaged\",\"audited\",\"admin\",\"verification\",\"verified\",\"certification\",\"certified\",\"tested\",\"passed\",\"qualified\",\"cleared\",\"cleaned\",\"disinfected\",\"uninfected\",\"task\",\"completed\",\"todo\",\"done\",\"ticked\",\"checked\",\"crest\",\"bravery\"]\n  },\n  {\n    \"name\": \"shield-cog-corner\",\n    \"categories\": [\"account\",\"security\",\"development\",\"gaming\",\"shapes\"],\n    \"tags\": [\"cybersecurity\",\"secure\",\"safety\",\"protection\",\"guardian\",\"armored\",\"armoured\",\"defense\",\"defence\",\"defender\",\"block\",\"threat\",\"prevention\",\"antivirus\",\"vigilance\",\"vigilant\",\"detection\",\"scan\",\"find\",\"strength\",\"strong\",\"tough\",\"invincible\",\"invincibility\",\"invulnerable\",\"undamaged\",\"audit\",\"admin\",\"verification\",\"crest\",\"shieldcog\",\"bravery\",\"knight\",\"foot soldier\",\"infantry\",\"trooper\",\"pawn\",\"battle\",\"war\",\"military\",\"army\",\"cadet\",\"scout\"]\n  },\n  {\n    \"name\": \"shield-cog\",\n    \"categories\": [\"account\",\"security\",\"development\",\"gaming\",\"shapes\"],\n    \"tags\": [\"cybersecurity\",\"secure\",\"safety\",\"protection\",\"guardian\",\"armored\",\"armoured\",\"defense\",\"defence\",\"defender\",\"block\",\"threat\",\"prevention\",\"antivirus\",\"vigilance\",\"vigilant\",\"detection\",\"scan\",\"find\",\"strength\",\"strong\",\"tough\",\"invincible\",\"invincibility\",\"invulnerable\",\"undamaged\",\"audit\",\"admin\",\"verification\",\"crest\",\"bravery\",\"knight\",\"foot soldier\",\"infantry\",\"trooper\",\"pawn\",\"battle\",\"war\",\"military\",\"army\",\"cadet\",\"scout\"]\n  },\n  {\n    \"name\": \"shield-ellipsis\",\n    \"categories\": [\"account\",\"security\",\"development\",\"gaming\"],\n    \"tags\": [\"cybersecurity\",\"securing\",\"protecting\",\"guarding\",\"armoring\",\"armouring\",\"defending\",\"blocking\",\"preventing\",\"antivirus\",\"detecting\",\"scanning\",\"finding\",\"auditing\",\"admin\",\"verifying\",\"crest\",\"upgrading\",\"loader\",\"loading\",\"throbber\",\"progress\",\"dots\",\"more\",\"etc\",\"...\",\"…\"]\n  },\n  {\n    \"name\": \"shield-half\",\n    \"categories\": [\"account\",\"security\",\"development\",\"gaming\"],\n    \"tags\": [\"cybersecurity\",\"secure\",\"safety\",\"protection\",\"guardian\",\"armored\",\"armoured\",\"defense\",\"defence\",\"defender\",\"block\",\"threat\",\"prevention\",\"antivirus\",\"vigilance\",\"vigilant\",\"detection\",\"scan\",\"strength\",\"strong\",\"tough\",\"invincible\",\"invincibility\",\"invulnerable\",\"undamaged\",\"audit\",\"admin\",\"verification\",\"crest\",\"logo\",\"sigil\",\"flag\",\"team\",\"faction\",\"fraternity\",\"university\",\"college\",\"academy\",\"school\",\"education\",\"uniform\",\"bravery\",\"knight\",\"foot soldier\",\"infantry\",\"trooper\",\"pawn\",\"battle\",\"war\",\"military\",\"ranking\",\"army\",\"cadet\",\"scout\"]\n  },\n  {\n    \"name\": \"shield-minus\",\n    \"categories\": [\"account\",\"security\",\"development\",\"gaming\"],\n    \"tags\": [\"unshield\",\"cybersecurity\",\"unsecure\",\"unguard\",\"unblock\",\"antivirus\",\"clean\",\"clear\",\"disinfect\",\"patch\",\"fix\",\"stop\",\"cancel\",\"remove\",\"relax\",\"admin\",\"crest\",\"bravery\",\"weakened\",\"damaged\",\"hit\",\"unarm\",\"disable\",\"deactivate\",\"decommission\",\"downgraded\",\"minimum\",\"-\"]\n  },\n  {\n    \"name\": \"shield-off\",\n    \"categories\": [\"account\",\"security\",\"development\",\"gaming\"],\n    \"tags\": [\"unshielded\",\"cybersecurity\",\"insecure\",\"unsecured\",\"safety\",\"unsafe\",\"protection\",\"unprotected\",\"guardian\",\"unguarded\",\"unarmored\",\"unarmoured\",\"defenseless\",\"defenceless\",\"undefended\",\"defender\",\"interception\",\"threat\",\"prevention\",\"unprevented\",\"antivirus\",\"detection\",\"undetected\",\"exploit\",\"vulnerability\",\"vulnerable\",\"weakness\",\"infected\",\"infection\",\"comprimised\",\"data leak\",\"unaudited\",\"admin\",\"verification\",\"unverified\",\"inactive\",\"cancelled\",\"error\",\"crest\",\"bravery\",\"damaged\",\"injured\",\"hit\",\"expired\",\"eliminated\"]\n  },\n  {\n    \"name\": \"shield-plus\",\n    \"categories\": [\"account\",\"security\",\"development\",\"gaming\",\"medical\"],\n    \"tags\": [\"cybersecurity\",\"secure\",\"safety\",\"protection\",\"guardian\",\"armored\",\"armoured\",\"defense\",\"defence\",\"defender\",\"block\",\"threat\",\"prevention\",\"antivirus\",\"vigilance\",\"vigilant\",\"detection\",\"scan\",\"strength\",\"strong\",\"tough\",\"invincible\",\"invincibility\",\"invulnerable\",\"undamaged\",\"extra\",\"added\",\"professional\",\"enterprise\",\"full\",\"maximum\",\"upgraded\",\"ultra\",\"activate\",\"enable\",\"audit\",\"admin\",\"verification\",\"crest\",\"medic\",\"+\"]\n  },\n  {\n    \"name\": \"shield-question-mark\",\n    \"categories\": [\"account\",\"security\",\"development\",\"gaming\"],\n    \"tags\": [\"unshielded\",\"cybersecurity\",\"insecure\",\"unsecured\",\"safety\",\"unsafe\",\"protection\",\"unprotected\",\"guardian\",\"unguarded\",\"unarmored\",\"unarmoured\",\"defenseless\",\"defenceless\",\"undefended\",\"defender\",\"threat\",\"prevention\",\"unprevented\",\"antivirus\",\"vigilance\",\"vigilant\",\"detection\",\"undetected\",\"scan\",\"find\",\"exploit\",\"vulnerability\",\"vulnerable\",\"weakness\",\"infection\",\"comprimised\",\"data leak\",\"audit\",\"admin\",\"verification\",\"unverified\",\"uncertified\",\"uncertain\",\"unknown\",\"inactive\",\"crest\",\"question mark\",\"?\"]\n  },\n  {\n    \"name\": \"shield-user\",\n    \"categories\": [\"account\",\"security\",\"development\"],\n    \"tags\": [\"shield\",\"user\",\"admin\",\"protection\",\"protected\",\"safety\",\"guard\"]\n  },\n  {\n    \"name\": \"shield-x\",\n    \"categories\": [\"account\",\"security\",\"development\",\"gaming\"],\n    \"tags\": [\"unshielded\",\"cybersecurity\",\"insecure\",\"unsecured\",\"safety\",\"unsafe\",\"protection\",\"unprotected\",\"guardian\",\"unguarded\",\"unarmored\",\"unarmoured\",\"defenseless\",\"defenceless\",\"undefended\",\"defender\",\"blocked\",\"stopped\",\"intercepted\",\"interception\",\"saved\",\"thwarted\",\"threat\",\"prevention\",\"prevented\",\"antivirus\",\"vigilance\",\"vigilant\",\"detection\",\"detected\",\"scanned\",\"found\",\"exploit\",\"vulnerability\",\"vulnerable\",\"weakness\",\"infection\",\"infected\",\"comprimised\",\"data leak\",\"audited\",\"admin\",\"verification\",\"unverified\",\"inactive\",\"cancel\",\"error\",\"wrong\",\"false\",\"crest\",\"bravery\",\"attacked\",\"damaged\",\"injured\",\"hit\",\"dead\",\"deceased\",\"expired\",\"eliminated\",\"exterminated\"]\n  },\n  {\n    \"name\": \"shield\",\n    \"categories\": [\"account\",\"security\",\"development\",\"gaming\",\"shapes\"],\n    \"tags\": [\"cybersecurity\",\"secure\",\"safety\",\"protection\",\"guardian\",\"armored\",\"armoured\",\"defense\",\"defence\",\"defender\",\"block\",\"threat\",\"prevention\",\"antivirus\",\"vigilance\",\"vigilant\",\"detection\",\"scan\",\"find\",\"strength\",\"strong\",\"tough\",\"invincible\",\"invincibility\",\"invulnerable\",\"undamaged\",\"audit\",\"admin\",\"verification\",\"crest\",\"bravery\",\"knight\",\"foot soldier\",\"infantry\",\"trooper\",\"pawn\",\"battle\",\"war\",\"military\",\"army\",\"cadet\",\"scout\"]\n  },\n  {\n    \"name\": \"ship-wheel\",\n    \"categories\": [\"transportation\",\"navigation\",\"travel\"],\n    \"tags\": [\"steering\",\"rudder\",\"boat\",\"knots\",\"nautical mile\",\"maritime\",\"sailing\",\"yacht\",\"cruise\",\"ocean liner\",\"tanker\",\"vessel\",\"navy\",\"trip\"]\n  },\n  {\n    \"name\": \"ship\",\n    \"categories\": [\"transportation\",\"navigation\",\"travel\"],\n    \"tags\": [\"boat\",\"knots\",\"nautical mile\",\"maritime\",\"sailing\",\"yacht\",\"cruise\",\"ocean liner\",\"tanker\",\"vessel\",\"navy\",\"trip\",\"releases\"]\n  },\n  {\n    \"name\": \"shirt\",\n    \"categories\": [\"shopping\"],\n    \"tags\": [\"t-shirt\",\"shopping\",\"store\",\"clothing\",\"clothes\"]\n  },\n  {\n    \"name\": \"shopping-bag\",\n    \"categories\": [\"shopping\"],\n    \"tags\": [\"ecommerce\",\"cart\",\"purchase\",\"store\"]\n  },\n  {\n    \"name\": \"shopping-basket\",\n    \"categories\": [\"shopping\"],\n    \"tags\": [\"cart\",\"e-commerce\",\"store\",\"purchase\",\"products\",\"items\",\"ingredients\"]\n  },\n  {\n    \"name\": \"shopping-cart\",\n    \"categories\": [\"shopping\"],\n    \"tags\": [\"trolley\",\"cart\",\"basket\",\"e-commerce\",\"store\",\"purchase\",\"products\",\"items\",\"ingredients\"]\n  },\n  {\n    \"name\": \"shovel\",\n    \"categories\": [\"nature\",\"tools\",\"gaming\"],\n    \"tags\": [\"dig\",\"spade\",\"treasure\"]\n  },\n  {\n    \"name\": \"shower-head\",\n    \"categories\": [\"home\",\"travel\"],\n    \"tags\": [\"shower\",\"bath\",\"bathroom\",\"amenities\",\"services\"]\n  },\n  {\n    \"name\": \"shredder\",\n    \"categories\": [\"mail\",\"files\"],\n    \"tags\": [\"file\",\"paper\",\"tear\",\"cut\",\"delete\",\"destroy\",\"remove\",\"erase\",\"document\",\"destruction\",\"secure\",\"security\",\"confidential\",\"data\",\"trash\",\"dispose\",\"disposal\",\"information\",\"waste\",\"permanent\"]\n  },\n  {\n    \"name\": \"shrimp\",\n    \"categories\": [\"animals\"],\n    \"tags\": [\"seafood\",\"shellfish\",\"crustacean\",\"prawn\",\"scallop\",\"whelk\",\"arthropod\",\"littleneck\",\"quahog\",\"cherrystone\"]\n  },\n  {\n    \"name\": \"shrink\",\n    \"categories\": [\"layout\",\"arrows\"],\n    \"tags\": [\"scale\",\"fullscreen\"]\n  },\n  {\n    \"name\": \"shrub\",\n    \"categories\": [\"nature\"],\n    \"tags\": [\"forest\",\"undergrowth\",\"park\",\"nature\"]\n  },\n  {\n    \"name\": \"shuffle\",\n    \"categories\": [\"multimedia\",\"arrows\"],\n    \"tags\": [\"music\",\"random\",\"reorder\"]\n  },\n  {\n    \"name\": \"sigma\",\n    \"categories\": [\"text\",\"math\",\"science\"],\n    \"tags\": [\"sum\",\"calculate\",\"formula\",\"math\",\"enumeration\",\"enumerate\"]\n  },\n  {\n    \"name\": \"signal-high\",\n    \"categories\": [\"connectivity\"],\n    \"tags\": [\"connection\",\"wireless\",\"gsm\",\"phone\",\"2g\",\"3g\",\"4g\",\"5g\"]\n  },\n  {\n    \"name\": \"signal-low\",\n    \"categories\": [\"connectivity\"],\n    \"tags\": [\"connection\",\"wireless\",\"gsm\",\"phone\",\"2g\",\"3g\",\"4g\",\"5g\"]\n  },\n  {\n    \"name\": \"signal-medium\",\n    \"categories\": [\"connectivity\"],\n    \"tags\": [\"connection\",\"wireless\",\"gsm\",\"phone\",\"2g\",\"3g\",\"4g\",\"5g\"]\n  },\n  {\n    \"name\": \"signal-zero\",\n    \"categories\": [\"connectivity\"],\n    \"tags\": [\"connection\",\"wireless\",\"gsm\",\"phone\",\"2g\",\"3g\",\"4g\",\"5g\",\"lost\"]\n  },\n  {\n    \"name\": \"signal\",\n    \"categories\": [\"connectivity\"],\n    \"tags\": [\"connection\",\"wireless\",\"gsm\",\"phone\",\"2g\",\"3g\",\"4g\",\"5g\"]\n  },\n  {\n    \"name\": \"signature\",\n    \"categories\": [\"text\"],\n    \"tags\": [\"text\",\"format\",\"input\",\"contract\",\"autograph\",\"handwriting\",\"sign\",\"cursive\",\"ink\",\"scribble\",\"authorize\",\"personal\",\"agreement\",\"legal\",\"document\",\"identity\",\"authentic\",\"approval\",\"verification\",\"unique\"]\n  },\n  {\n    \"name\": \"signpost-big\",\n    \"categories\": [\"arrows\",\"navigation\",\"development\",\"gaming\"],\n    \"tags\": [\"bidirectional\",\"left\",\"right\",\"east\",\"west\"]\n  },\n  {\n    \"name\": \"signpost\",\n    \"categories\": [\"arrows\",\"navigation\",\"development\",\"gaming\"],\n    \"tags\": [\"navigation\",\"direction\",\"arrow\",\"wayfinding\",\"guide\",\"location\",\"pointer\",\"route\",\"indicator\",\"marker\",\"bidirectional\",\"left\",\"right\",\"east\",\"west\"]\n  },\n  {\n    \"name\": \"siren\",\n    \"categories\": [\"medical\"],\n    \"tags\": [\"police\",\"ambulance\",\"emergency\",\"security\",\"alert\",\"alarm\",\"light\"]\n  },\n  {\n    \"name\": \"skip-back\",\n    \"categories\": [\"multimedia\",\"arrows\"],\n    \"tags\": [\"arrow\",\"previous\",\"music\"]\n  },\n  {\n    \"name\": \"skip-forward\",\n    \"categories\": [\"multimedia\",\"arrows\"],\n    \"tags\": [\"arrow\",\"skip\",\"next\",\"music\"]\n  },\n  {\n    \"name\": \"skull\",\n    \"categories\": [\"gaming\"],\n    \"tags\": [\"death\",\"danger\",\"bone\"]\n  },\n  {\n    \"name\": \"slash\",\n    \"categories\": [\"development\",\"math\"],\n    \"tags\": [\"divide\",\"division\",\"or\",\"/\"]\n  },\n  {\n    \"name\": \"slice\",\n    \"categories\": [\"design\"],\n    \"tags\": [\"cutter\",\"scalpel\",\"knife\"]\n  },\n  {\n    \"name\": \"sliders-horizontal\",\n    \"categories\": [\"account\"],\n    \"tags\": [\"settings\",\"filters\",\"controls\"]\n  },\n  {\n    \"name\": \"sliders-vertical\",\n    \"categories\": [\"account\"],\n    \"tags\": [\"settings\",\"controls\"]\n  },\n  {\n    \"name\": \"smartphone-charging\",\n    \"categories\": [\"connectivity\",\"devices\"],\n    \"tags\": [\"phone\",\"cellphone\",\"device\",\"power\",\"screen\"]\n  },\n  {\n    \"name\": \"smartphone-nfc\",\n    \"categories\": [\"communication\",\"finance\",\"devices\"],\n    \"tags\": [\"contactless\",\"payment\",\"near-field communication\",\"screen\"]\n  },\n  {\n    \"name\": \"smartphone\",\n    \"categories\": [\"connectivity\",\"devices\"],\n    \"tags\": [\"phone\",\"cellphone\",\"device\",\"screen\"]\n  },\n  {\n    \"name\": \"smile-plus\",\n    \"categories\": [\"emoji\",\"social\",\"notifications\",\"communication\"],\n    \"tags\": [\"emoji\",\"face\",\"happy\",\"good\",\"emotion\",\"react\",\"reaction\",\"add\"]\n  },\n  {\n    \"name\": \"smile\",\n    \"categories\": [\"emoji\",\"account\"],\n    \"tags\": [\"emoji\",\"face\",\"happy\",\"good\",\"emotion\"]\n  },\n  {\n    \"name\": \"snail\",\n    \"categories\": [\"animals\",\"food-beverage\"],\n    \"tags\": [\"animal\",\"insect\",\"slow\",\"speed\",\"delicacy\",\"spiral\"]\n  },\n  {\n    \"name\": \"snowflake\",\n    \"categories\": [\"weather\",\"seasons\"],\n    \"tags\": [\"cold\",\"weather\",\"freeze\",\"snow\",\"winter\"]\n  },\n  {\n    \"name\": \"soap-dispenser-droplet\",\n    \"categories\": [\"home\",\"travel\"],\n    \"tags\": [\"wash\",\"bath\",\"water\",\"liquid\",\"fluid\",\"wet\",\"moisture\",\"damp\",\"bead\",\"globule\"]\n  },\n  {\n    \"name\": \"sofa\",\n    \"categories\": [\"home\"],\n    \"tags\": [\"armchair\",\"furniture\",\"leisure\",\"lounge\",\"loveseat\",\"couch\"]\n  },\n  {\n    \"name\": \"solar-panel\",\n    \"categories\": [\"home\",\"science\",\"sustainability\",\"weather\"],\n    \"tags\": [\"solar panel\",\"solar\",\"panel\",\"sun\",\"energy\",\"electricity\",\"light\"]\n  },\n  {\n    \"name\": \"soup\",\n    \"categories\": [\"food-beverage\"],\n    \"tags\": [\"food\",\"dish\",\"restaurant\",\"course\",\"meal\",\"bowl\",\"starter\"]\n  },\n  {\n    \"name\": \"space\",\n    \"categories\": [\"text\"],\n    \"tags\": [\"text\",\"selection\",\"letters\",\"characters\",\"font\",\"typography\"]\n  },\n  {\n    \"name\": \"spade\",\n    \"categories\": [\"shapes\",\"gaming\"],\n    \"tags\": [\"shape\",\"suit\",\"playing\",\"cards\"]\n  },\n  {\n    \"name\": \"sparkle\",\n    \"categories\": [\"shapes\"],\n    \"tags\": [\"star\",\"effect\",\"filter\",\"night\",\"magic\",\"shiny\",\"glitter\",\"twinkle\",\"celebration\"]\n  },\n  {\n    \"name\": \"sparkles\",\n    \"categories\": [\"cursors\",\"multimedia\",\"gaming\",\"weather\"],\n    \"tags\": [\"stars\",\"effect\",\"filter\",\"night\",\"magic\"]\n  },\n  {\n    \"name\": \"speaker\",\n    \"categories\": [\"multimedia\",\"devices\"],\n    \"tags\": [\"sound\",\"audio\",\"music\",\"tweeter\",\"subwoofer\",\"bass\",\"production\",\"producer\",\"dj\"]\n  },\n  {\n    \"name\": \"speech\",\n    \"categories\": [\"accessibility\",\"communication\"],\n    \"tags\": [\"disability\",\"disabled\",\"dda\",\"human\",\"accessibility\",\"people\",\"sound\"]\n  },\n  {\n    \"name\": \"spell-check-2\",\n    \"categories\": [\"text\",\"development\"],\n    \"tags\": [\"spelling\",\"error\",\"mistake\",\"oversight\",\"typo\",\"correction\",\"code\",\"linter\",\"a\"]\n  },\n  {\n    \"name\": \"spell-check\",\n    \"categories\": [\"text\",\"development\"],\n    \"tags\": [\"spelling\",\"error\",\"mistake\",\"oversight\",\"typo\",\"correction\",\"code\",\"linter\",\"a\"]\n  },\n  {\n    \"name\": \"spline-pointer\",\n    \"categories\": [\"arrows\",\"cursors\",\"design\",\"tools\"],\n    \"tags\": [\"path\",\"tool\",\"curve\",\"node\",\"click\",\"pointer\",\"target\",\"vector\"]\n  },\n  {\n    \"name\": \"spline\",\n    \"categories\": [\"design\"],\n    \"tags\": [\"path\",\"pen\",\"tool\",\"shape\",\"curve\",\"draw\"]\n  },\n  {\n    \"name\": \"split\",\n    \"categories\": [\"development\",\"arrows\"],\n    \"tags\": [\"break\",\"disband\",\"divide\",\"separate\",\"branch\",\"disunite\"]\n  },\n  {\n    \"name\": \"spool\",\n    \"categories\": [\"communication\",\"tools\",\"social\"],\n    \"tags\": [\"bobbin\",\"spindle\",\"yarn\",\"thread\",\"string\",\"sewing\",\"needlework\"]\n  },\n  {\n    \"name\": \"sport-shoe\",\n    \"categories\": [\"sports\"],\n    \"tags\": [\"footwear\",\"sports\",\"running\",\"athletic\",\"shoe\",\"sneaker\",\"training\",\"exercise\",\"fitness\"]\n  },\n  {\n    \"name\": \"spotlight\",\n    \"categories\": [\"devices\",\"photography\",\"multimedia\",\"communication\"],\n    \"tags\": [\"winner\",\"soapbox\",\"stage\",\"entertainment\",\"drama\",\"podium\",\"actor\",\"actress\",\"singer\",\"light\",\"beam\",\"play\",\"theatre\",\"show\",\"focus\",\"concert\",\"performance\",\"lens\",\"leaderboard\",\"followspot\",\"best\",\"highlight\"]\n  },\n  {\n    \"name\": \"spray-can\",\n    \"categories\": [\"design\",\"tools\"],\n    \"tags\": [\"paint\",\"color\",\"graffiti\",\"decoration\",\"aerosol\",\"deodorant\",\"shaving foam\",\"air freshener\"]\n  },\n  {\n    \"name\": \"sprout\",\n    \"categories\": [\"nature\",\"gaming\",\"sustainability\"],\n    \"tags\": [\"eco\",\"green\",\"growth\",\"leaf\",\"nature\",\"plant\",\"seed\",\"spring\",\"sustainability\"]\n  },\n  {\n    \"name\": \"square-activity\",\n    \"categories\": [\"medical\",\"social\",\"science\",\"multimedia\"],\n    \"tags\": [\"pulse\",\"action\",\"motion\",\"movement\",\"exercise\",\"fitness\",\"healthcare\",\"heart rate monitor\",\"vital signs\",\"vitals\",\"emergency room\",\"er\",\"intensive care\",\"hospital\",\"defibrillator\",\"earthquake\",\"siesmic\",\"magnitude\",\"richter scale\",\"aftershock\",\"tremor\",\"shockwave\",\"audio\",\"waveform\",\"synthesizer\",\"synthesiser\",\"music\"]\n  },\n  {\n    \"name\": \"square-arrow-down-left\",\n    \"categories\": [\"arrows\",\"gaming\"],\n    \"tags\": [\"direction\",\"south-west\",\"diagonal\",\"sign\",\"turn\",\"keyboard\",\"button\"]\n  },\n  {\n    \"name\": \"square-arrow-down-right\",\n    \"categories\": [\"arrows\",\"gaming\"],\n    \"tags\": [\"direction\",\"south-east\",\"diagonal\",\"sign\",\"turn\",\"keyboard\",\"button\"]\n  },\n  {\n    \"name\": \"square-arrow-down\",\n    \"categories\": [\"arrows\",\"gaming\"],\n    \"tags\": [\"backwards\",\"reverse\",\"direction\",\"south\",\"sign\",\"keyboard\",\"button\"]\n  },\n  {\n    \"name\": \"square-arrow-left\",\n    \"categories\": [\"arrows\"],\n    \"tags\": [\"previous\",\"back\",\"direction\",\"west\",\"sign\",\"keyboard\",\"button\",\"<-\"]\n  },\n  {\n    \"name\": \"square-arrow-out-down-left\",\n    \"categories\": [\"arrows\"],\n    \"tags\": [\"outwards\",\"direction\",\"south-west\",\"diagonal\"]\n  },\n  {\n    \"name\": \"square-arrow-out-down-right\",\n    \"categories\": [\"arrows\"],\n    \"tags\": [\"outwards\",\"direction\",\"south-east\",\"diagonal\"]\n  },\n  {\n    \"name\": \"square-arrow-out-up-left\",\n    \"categories\": [\"arrows\"],\n    \"tags\": [\"outwards\",\"direction\",\"north-west\",\"diagonal\"]\n  },\n  {\n    \"name\": \"square-arrow-out-up-right\",\n    \"categories\": [\"arrows\",\"social\"],\n    \"tags\": [\"outwards\",\"direction\",\"north-east\",\"diagonal\",\"share\",\"open\",\"external\",\"link\"]\n  },\n  {\n    \"name\": \"square-arrow-right-enter\",\n    \"categories\": [\"arrows\",\"shapes\",\"layout\",\"multimedia\"],\n    \"tags\": [\"left\",\"in\",\"inside\",\"input\",\"insert\",\"source\",\"import\",\"place\",\"->\"]\n  },\n  {\n    \"name\": \"square-arrow-right-exit\",\n    \"categories\": [\"arrows\",\"shapes\",\"layout\",\"multimedia\"],\n    \"tags\": [\"out\",\"outside\",\"output\",\"export\",\"->\"]\n  },\n  {\n    \"name\": \"square-arrow-right\",\n    \"categories\": [\"arrows\"],\n    \"tags\": [\"next\",\"forward\",\"direction\",\"west\",\"sign\",\"keyboard\",\"button\",\"->\"]\n  },\n  {\n    \"name\": \"square-arrow-up-left\",\n    \"categories\": [\"arrows\"],\n    \"tags\": [\"direction\",\"north-west\",\"diagonal\",\"sign\",\"keyboard\",\"button\"]\n  },\n  {\n    \"name\": \"square-arrow-up-right\",\n    \"categories\": [\"arrows\",\"social\"],\n    \"tags\": [\"direction\",\"north-east\",\"diagonal\",\"sign\",\"keyboard\",\"button\",\"share\"]\n  },\n  {\n    \"name\": \"square-arrow-up\",\n    \"categories\": [\"arrows\"],\n    \"tags\": [\"forward\",\"direction\",\"north\",\"sign\",\"keyboard\",\"button\"]\n  },\n  {\n    \"name\": \"square-asterisk\",\n    \"categories\": [\"text\",\"security\",\"math\",\"development\"],\n    \"tags\": [\"password\",\"secret\",\"access\",\"key\",\"multiply\",\"multiplication\",\"glob pattern\",\"wildcard\",\"*\"]\n  },\n  {\n    \"name\": \"square-bottom-dashed-scissors\",\n    \"categories\": [\"text\",\"design\",\"tools\",\"files\",\"development\"],\n    \"tags\": [\"cut\",\"snippet\",\"chop\",\"stationery\",\"crafts\"]\n  },\n  {\n    \"name\": \"square-centerline-dashed-horizontal\",\n    \"categories\": [\"design\",\"photography\"],\n    \"tags\": [\"reflect\",\"mirror\",\"alignment\",\"dashed\"]\n  },\n  {\n    \"name\": \"square-centerline-dashed-vertical\",\n    \"categories\": [\"design\",\"photography\"],\n    \"tags\": [\"reflect\",\"mirror\",\"alignment\",\"dashed\"]\n  },\n  {\n    \"name\": \"square-chart-gantt\",\n    \"categories\": [\"charts\",\"time\",\"development\",\"design\"],\n    \"tags\": [\"projects\",\"manage\",\"overview\",\"roadmap\",\"plan\",\"intentions\",\"timeline\",\"deadline\",\"date\",\"event\",\"range\",\"period\",\"productivity\",\"work\",\"agile\",\"code\",\"coding\",\"toolbar\",\"button\"]\n  },\n  {\n    \"name\": \"square-check-big\",\n    \"categories\": [\"notifications\"],\n    \"tags\": [\"done\",\"todo\",\"tick\",\"complete\",\"task\"]\n  },\n  {\n    \"name\": \"square-check\",\n    \"categories\": [\"notifications\"],\n    \"tags\": [\"done\",\"todo\",\"tick\",\"complete\",\"task\"]\n  },\n  {\n    \"name\": \"square-chevron-down\",\n    \"categories\": [\"arrows\",\"navigation\"],\n    \"tags\": [\"back\",\"menu\",\"panel\"]\n  },\n  {\n    \"name\": \"square-chevron-left\",\n    \"categories\": [\"arrows\",\"navigation\"],\n    \"tags\": [\"back\",\"previous\",\"less than\",\"fewer\",\"menu\",\"panel\",\"button\",\"keyboard\",\"<\"]\n  },\n  {\n    \"name\": \"square-chevron-right\",\n    \"categories\": [\"arrows\",\"navigation\",\"development\"],\n    \"tags\": [\"forward\",\"next\",\"more than\",\"greater\",\"menu\",\"panel\",\"code\",\"coding\",\"command line\",\"terminal\",\"prompt\",\"shell\",\"console\",\">\"]\n  },\n  {\n    \"name\": \"square-chevron-up\",\n    \"categories\": [\"arrows\",\"navigation\",\"math\"],\n    \"tags\": [\"caret\",\"keyboard\",\"button\",\"mac\",\"control\",\"ctrl\",\"superscript\",\"exponential\",\"power\",\"ahead\",\"menu\",\"panel\",\"^\"]\n  },\n  {\n    \"name\": \"square-code\",\n    \"categories\": [\"text\",\"development\"],\n    \"tags\": [\"gist\",\"source\",\"programming\",\"html\",\"xml\",\"coding\"]\n  },\n  {\n    \"name\": \"square-dashed-bottom-code\",\n    \"categories\": [\"development\",\"files\"],\n    \"tags\": [\"rectangle\",\"aspect ratio\",\"1:1\",\"shape\",\"snippet\",\"code\",\"coding\"]\n  },\n  {\n    \"name\": \"square-dashed-bottom\",\n    \"categories\": [\"development\",\"files\"],\n    \"tags\": [\"rectangle\",\"aspect ratio\",\"1:1\",\"shape\",\"snippet\",\"code\",\"coding\"]\n  },\n  {\n    \"name\": \"square-dashed-kanban\",\n    \"categories\": [\"charts\",\"development\",\"design\"],\n    \"tags\": [\"projects\",\"manage\",\"overview\",\"board\",\"tickets\",\"issues\",\"roadmap\",\"plan\",\"intentions\",\"productivity\",\"work\",\"agile\",\"draft\",\"template\",\"boilerplate\",\"code\",\"coding\"]\n  },\n  {\n    \"name\": \"square-dashed-mouse-pointer\",\n    \"categories\": [\"arrows\",\"cursors\",\"development\",\"tools\"],\n    \"tags\": [\"inspector\",\"element\",\"mouse\",\"click\",\"pointer\",\"box\",\"browser\",\"selector\",\"target\",\"dom\",\"node\"]\n  },\n  {\n    \"name\": \"square-dashed-text\",\n    \"categories\": [\"text\",\"cursors\"],\n    \"tags\": [\"find\",\"search\",\"selection\",\"dashed\"]\n  },\n  {\n    \"name\": \"square-dashed-top-solid\",\n    \"categories\": [\"design\",\"development\",\"layout\"],\n    \"tags\": [\"square\",\"border\",\"width\",\"layout\",\"style\",\"design\",\"rectangular\",\"marquee\",\"dashed\",\"box\",\"rectangle\",\"aspect ratio\",\"1:1\"]\n  },\n  {\n    \"name\": \"square-dashed\",\n    \"categories\": [\"text\",\"design\"],\n    \"tags\": [\"selection\",\"square\",\"rectangular\",\"marquee\",\"tool\",\"dashed\",\"box\"]\n  },\n  {\n    \"name\": \"square-divide\",\n    \"categories\": [\"math\"],\n    \"tags\": [\"calculate\",\"math\",\"÷\",\"/\"]\n  },\n  {\n    \"name\": \"square-dot\",\n    \"categories\": [\"development\"],\n    \"tags\": [\"git\",\"diff\",\"modified\",\".\"]\n  },\n  {\n    \"name\": \"square-equal\",\n    \"categories\": [\"math\"],\n    \"tags\": [\"calculate\",\"=\"]\n  },\n  {\n    \"name\": \"square-function\",\n    \"categories\": [\"development\",\"math\"],\n    \"tags\": [\"programming\",\"code\",\"automation\",\"math\"]\n  },\n  {\n    \"name\": \"square-kanban\",\n    \"categories\": [\"charts\",\"development\",\"design\"],\n    \"tags\": [\"projects\",\"manage\",\"overview\",\"board\",\"tickets\",\"issues\",\"roadmap\",\"plan\",\"intentions\",\"productivity\",\"work\",\"agile\",\"code\",\"coding\",\"toolbar\",\"button\"]\n  },\n  {\n    \"name\": \"square-library\",\n    \"categories\": [\"text\",\"photography\",\"multimedia\",\"navigation\",\"development\"],\n    \"tags\": [\"books\",\"reading\",\"written\",\"authors\",\"stories\",\"fiction\",\"novels\",\"information\",\"knowledge\",\"education\",\"high school\",\"university\",\"college\",\"academy\",\"learning\",\"study\",\"research\",\"collection\",\"vinyl\",\"records\",\"albums\",\"music\",\"package\"]\n  },\n  {\n    \"name\": \"square-m\",\n    \"categories\": [\"transportation\",\"navigation\"],\n    \"tags\": [\"metro\",\"subway\",\"underground\",\"track\",\"line\"]\n  },\n  {\n    \"name\": \"square-menu\",\n    \"categories\": [\"layout\"],\n    \"tags\": [\"bars\",\"navigation\",\"hamburger\",\"options\",\"menu bar\",\"panel\"]\n  },\n  {\n    \"name\": \"square-minus\",\n    \"categories\": [\"math\",\"development\",\"text\",\"tools\",\"devices\"],\n    \"tags\": [\"subtract\",\"remove\",\"decrease\",\"reduce\",\"calculator\",\"button\",\"keyboard\",\"line\",\"divider\",\"separator\",\"horizontal rule\",\"hr\",\"html\",\"markup\",\"markdown\",\"---\",\"toolbar\",\"operator\",\"code\",\"coding\",\"minimum\",\"downgrade\"]\n  },\n  {\n    \"name\": \"square-mouse-pointer\",\n    \"categories\": [\"arrows\",\"cursors\",\"development\",\"tools\"],\n    \"tags\": [\"inspector\",\"element\",\"mouse\",\"click\",\"pointer\",\"box\",\"browser\",\"selector\",\"target\",\"dom\",\"node\"]\n  },\n  {\n    \"name\": \"square-parking-off\",\n    \"categories\": [\"transportation\",\"navigation\"],\n    \"tags\": [\"parking lot\",\"car park\",\"no parking\"]\n  },\n  {\n    \"name\": \"square-parking\",\n    \"categories\": [\"transportation\",\"navigation\"],\n    \"tags\": [\"parking lot\",\"car park\"]\n  },\n  {\n    \"name\": \"square-pause\",\n    \"categories\": [\"multimedia\"],\n    \"tags\": [\"music\",\"audio\",\"stop\"]\n  },\n  {\n    \"name\": \"square-pen\",\n    \"categories\": [\"text\"],\n    \"tags\": [\"pencil\",\"edit\",\"change\",\"create\",\"draw\",\"sketch\",\"draft\",\"writer\",\"writing\",\"biro\",\"ink\",\"marker\",\"felt tip\",\"stationery\",\"artist\"]\n  },\n  {\n    \"name\": \"square-percent\",\n    \"categories\": [\"social\",\"finance\",\"shopping\",\"math\"],\n    \"tags\": [\"verified\",\"unverified\",\"sale\",\"discount\",\"offer\",\"marketing\",\"sticker\",\"price tag\"]\n  },\n  {\n    \"name\": \"square-pi\",\n    \"categories\": [\"development\",\"math\"],\n    \"tags\": [\"constant\",\"code\",\"coding\",\"programming\",\"symbol\",\"trigonometry\",\"geometry\",\"formula\"]\n  },\n  {\n    \"name\": \"square-pilcrow\",\n    \"categories\": [\"text\"],\n    \"tags\": [\"paragraph\",\"mark\",\"paraph\",\"blind\",\"typography\",\"type\",\"text\",\"prose\",\"symbol\"]\n  },\n  {\n    \"name\": \"square-play\",\n    \"categories\": [\"arrows\",\"multimedia\"],\n    \"tags\": [\"music\",\"audio\",\"video\",\"start\",\"run\"]\n  },\n  {\n    \"name\": \"square-plus\",\n    \"categories\": [\"math\",\"tools\",\"development\",\"text\"],\n    \"tags\": [\"add\",\"new\",\"increase\",\"increment\",\"positive\",\"calculate\",\"calculator\",\"button\",\"keyboard\",\"toolbar\",\"maximum\",\"upgrade\",\"extra\",\"operator\",\"join\",\"concatenate\",\"code\",\"coding\",\"+\"]\n  },\n  {\n    \"name\": \"square-power\",\n    \"categories\": [\"connectivity\"],\n    \"tags\": [\"on\",\"off\",\"device\",\"switch\",\"toggle\",\"binary\",\"boolean\",\"reboot\",\"restart\",\"button\",\"keyboard\",\"troubleshoot\"]\n  },\n  {\n    \"name\": \"square-radical\",\n    \"categories\": [\"development\",\"math\"],\n    \"tags\": [\"calculate\",\"formula\",\"math\",\"operator\",\"root\",\"square\",\"symbol\"]\n  },\n  {\n    \"name\": \"square-round-corner\",\n    \"categories\": [\"design\",\"development\",\"layout\"],\n    \"tags\": [\"border\",\"radius\",\"style\",\"design\",\"corner\",\"layout\",\"round\",\"rounded\"]\n  },\n  {\n    \"name\": \"square-scissors\",\n    \"categories\": [\"text\",\"design\",\"tools\",\"files\",\"development\"],\n    \"tags\": [\"cut\",\"snippet\",\"chop\",\"stationery\",\"crafts\",\"toolbar\",\"button\"]\n  },\n  {\n    \"name\": \"square-sigma\",\n    \"categories\": [\"text\",\"math\"],\n    \"tags\": [\"sum\",\"calculate\",\"formula\",\"math\",\"enumeration\",\"enumerate\"]\n  },\n  {\n    \"name\": \"square-slash\",\n    \"categories\": [\"development\",\"math\"],\n    \"tags\": [\"git\",\"diff\",\"ignored\",\"divide\",\"division\",\"shortcut\",\"or\",\"/\"]\n  },\n  {\n    \"name\": \"square-split-horizontal\",\n    \"categories\": [\"layout\"],\n    \"tags\": [\"split\",\"divide\"]\n  },\n  {\n    \"name\": \"square-split-vertical\",\n    \"categories\": [\"layout\"],\n    \"tags\": [\"split\",\"divide\"]\n  },\n  {\n    \"name\": \"square-square\",\n    \"categories\": [\"layout\"],\n    \"tags\": [\"float\",\"center\",\"rectangle\"]\n  },\n  {\n    \"name\": \"square-stack\",\n    \"categories\": [\"text\",\"files\",\"development\"],\n    \"tags\": [\"versions\",\"clone\",\"copy\",\"duplicate\",\"multiple\",\"revisions\",\"version control\",\"backup\",\"history\"]\n  },\n  {\n    \"name\": \"square-star\",\n    \"categories\": [\"sports\",\"gaming\"],\n    \"tags\": [\"badge\",\"medal\",\"honour\",\"decoration\",\"order\",\"pin\",\"laurel\",\"trophy\",\"medallion\",\"insignia\",\"bronze\",\"silver\",\"gold\"]\n  },\n  {\n    \"name\": \"square-stop\",\n    \"categories\": [\"multimedia\"],\n    \"tags\": [\"media\",\"music\"]\n  },\n  {\n    \"name\": \"square-terminal\",\n    \"categories\": [\"development\"],\n    \"tags\": [\"code\",\"command line\",\"prompt\",\"shell\"]\n  },\n  {\n    \"name\": \"square-user-round\",\n    \"categories\": [\"account\"],\n    \"tags\": [\"person\",\"account\",\"contact\"]\n  },\n  {\n    \"name\": \"square-user\",\n    \"categories\": [\"account\"],\n    \"tags\": [\"person\",\"account\",\"contact\"]\n  },\n  {\n    \"name\": \"square-x\",\n    \"categories\": [\"math\",\"notifications\"],\n    \"tags\": [\"cancel\",\"close\",\"delete\",\"remove\",\"times\",\"clear\",\"math\",\"multiply\",\"multiplication\"]\n  },\n  {\n    \"name\": \"square\",\n    \"categories\": [\"shapes\",\"multimedia\"],\n    \"tags\": [\"stop\",\"playback\",\"music\",\"audio\",\"video\",\"rectangle\",\"aspect ratio\",\"1:1\",\"shape\"]\n  },\n  {\n    \"name\": \"squares-exclude\",\n    \"categories\": [\"design\"],\n    \"tags\": [\"square\",\"pathfinder\",\"path\",\"exclude\",\"invert\",\"xor\",\"shape\",\"vector\"]\n  },\n  {\n    \"name\": \"squares-intersect\",\n    \"categories\": [\"design\"],\n    \"tags\": [\"square\",\"pathfinder\",\"path\",\"intersect\",\"shape\",\"include\",\"vector\"]\n  },\n  {\n    \"name\": \"squares-subtract\",\n    \"categories\": [\"design\"],\n    \"tags\": [\"square\",\"pathfinder\",\"path\",\"minus\",\"subtract\",\"subtraction\",\"shape\",\"front\",\"vector\"]\n  },\n  {\n    \"name\": \"squares-unite\",\n    \"categories\": [\"design\"],\n    \"tags\": [\"square\",\"pathfinder\",\"path\",\"unite\",\"union\",\"shape\",\"merge\",\"vector\"]\n  },\n  {\n    \"name\": \"squircle-dashed\",\n    \"categories\": [\"development\",\"shapes\",\"design\"],\n    \"tags\": [\"shape\",\"pending\",\"progress\",\"issue\",\"draft\",\"code\",\"coding\",\"version control\"]\n  },\n  {\n    \"name\": \"squircle\",\n    \"categories\": [\"shapes\"],\n    \"tags\": [\"shape\"]\n  },\n  {\n    \"name\": \"squirrel\",\n    \"categories\": [\"animals\"],\n    \"tags\": [\"animal\",\"rodent\",\"pet\",\"pest\",\"nuts\",\"retrieve\",\"updates\",\"storage\",\"stash\"]\n  },\n  {\n    \"name\": \"stamp\",\n    \"categories\": [\"design\",\"cursors\",\"tools\"],\n    \"tags\": [\"mark\",\"print\",\"clone\",\"loyalty\",\"library\"]\n  },\n  {\n    \"name\": \"star-check\",\n    \"categories\": [\"account\",\"social\",\"shapes\",\"multimedia\",\"weather\",\"emoji\",\"gaming\"],\n    \"tags\": [\"bookmark\",\"favorite\",\"like\",\"review\",\"rating\",\"check\",\"star\"]\n  },\n  {\n    \"name\": \"star-half\",\n    \"categories\": [\"social\",\"multimedia\"],\n    \"tags\": [\"bookmark\",\"favorite\",\"like\",\"review\",\"rating\"]\n  },\n  {\n    \"name\": \"star-minus\",\n    \"categories\": [\"account\",\"social\",\"shapes\",\"multimedia\",\"weather\",\"emoji\",\"gaming\"],\n    \"tags\": [\"bookmark\",\"favorite\",\"like\",\"review\",\"rating\",\"minus\",\"remove\",\"deselect\",\"star\"]\n  },\n  {\n    \"name\": \"star-off\",\n    \"categories\": [\"multimedia\",\"social\"],\n    \"tags\": [\"dislike\",\"unlike\",\"remove\",\"unrate\"]\n  },\n  {\n    \"name\": \"star-plus\",\n    \"categories\": [\"account\",\"social\",\"shapes\",\"multimedia\",\"weather\",\"emoji\",\"gaming\"],\n    \"tags\": [\"bookmark\",\"favorite\",\"like\",\"review\",\"rating\",\"plus\",\"add\",\"join\",\"star\"]\n  },\n  {\n    \"name\": \"star-x\",\n    \"categories\": [\"account\",\"social\",\"shapes\",\"multimedia\",\"weather\",\"emoji\",\"gaming\"],\n    \"tags\": [\"mark\",\"symbol\",\"shape\",\"vector\",\"design\",\"graphic\",\"bookmark\",\"favorite\",\"like\",\"review\",\"rating\",\"x\",\"cancel\",\"reject\",\"star\"]\n  },\n  {\n    \"name\": \"star\",\n    \"categories\": [\"account\",\"social\",\"shapes\",\"multimedia\",\"weather\",\"emoji\",\"gaming\"],\n    \"tags\": [\"bookmark\",\"favorite\",\"like\",\"review\",\"rating\"]\n  },\n  {\n    \"name\": \"step-back\",\n    \"categories\": [\"multimedia\",\"arrows\"],\n    \"tags\": [\"arrow\",\"previous\",\"music\",\"left\",\"reverse\"]\n  },\n  {\n    \"name\": \"step-forward\",\n    \"categories\": [\"multimedia\",\"arrows\"],\n    \"tags\": [\"arrow\",\"next\",\"music\",\"right\",\"continue\"]\n  },\n  {\n    \"name\": \"stethoscope\",\n    \"categories\": [\"science\",\"medical\"],\n    \"tags\": [\"phonendoscope\",\"medical\",\"heart\",\"lungs\",\"sound\"]\n  },\n  {\n    \"name\": \"sticker\",\n    \"categories\": [\"social\"],\n    \"tags\": [\"reaction\",\"emotion\",\"smile\",\"happy\",\"feedback\"]\n  },\n  {\n    \"name\": \"sticky-note-check\",\n    \"categories\": [\"text\",\"social\"],\n    \"tags\": [\"post-it\",\"comment\",\"annotation\",\"reaction\",\"memo\",\"reminder\",\"todo\",\"task\",\"idea\",\"brainstorm\",\"document\",\"page\",\"paper\",\"sheet\",\"stationary\",\"office\",\"done\",\"complete\",\"success\",\"check\",\"verified\"]\n  },\n  {\n    \"name\": \"sticky-note-minus\",\n    \"categories\": [\"text\",\"social\"],\n    \"tags\": [\"post-it\",\"comment\",\"annotation\",\"reaction\",\"memo\",\"reminder\",\"todo\",\"task\",\"idea\",\"brainstorm\",\"document\",\"page\",\"paper\",\"sheet\",\"stationary\",\"office\",\"remove\",\"delete\",\"minus\"]\n  },\n  {\n    \"name\": \"sticky-note-off\",\n    \"categories\": [\"text\",\"social\"],\n    \"tags\": [\"post-it\",\"comment\",\"annotation\",\"reaction\",\"memo\",\"reminder\",\"todo\",\"task\",\"idea\",\"brainstorm\",\"document\",\"page\",\"paper\",\"sheet\",\"stationary\",\"office\",\"disabled\",\"hidden\",\"mute\",\"inactive\"]\n  },\n  {\n    \"name\": \"sticky-note-plus\",\n    \"categories\": [\"text\",\"social\"],\n    \"tags\": [\"post-it\",\"comment\",\"annotation\",\"reaction\",\"memo\",\"reminder\",\"todo\",\"task\",\"idea\",\"brainstorm\",\"document\",\"page\",\"paper\",\"sheet\",\"stationary\",\"office\",\"add\",\"create\",\"new\",\"plus\"]\n  },\n  {\n    \"name\": \"sticky-note-x\",\n    \"categories\": [\"text\",\"social\"],\n    \"tags\": [\"post-it\",\"comment\",\"annotation\",\"reaction\",\"memo\",\"reminder\",\"todo\",\"task\",\"idea\",\"brainstorm\",\"document\",\"page\",\"paper\",\"sheet\",\"stationary\",\"office\",\"close\",\"cancel\",\"delete\",\"remove\"]\n  },\n  {\n    \"name\": \"sticky-note\",\n    \"categories\": [\"text\",\"social\"],\n    \"tags\": [\"post-it\",\"comment\",\"annotation\",\"reaction\",\"memo\",\"reminder\",\"todo\",\"task\",\"idea\",\"brainstorm\",\"document\",\"page\",\"paper\",\"sheet\",\"stationary\",\"office\"]\n  },\n  {\n    \"name\": \"sticky-notes\",\n    \"categories\": [\"text\",\"social\"],\n    \"tags\": [\"post-it\",\"annotation\",\"memo\",\"reminder\",\"todo\",\"tasks\",\"ideas\",\"brainstorm\",\"documents\",\"notes\",\"multiple\",\"collection\",\"group\",\"stack\",\"clone\",\"duplicate\",\"copy\"]\n  },\n  {\n    \"name\": \"stone\",\n    \"categories\": [\"nature\"],\n    \"tags\": [\"mineral\",\"geology\",\"nature\",\"solid\",\"pebble\",\"crystal\",\"ore\",\"hard\",\"coal\",\"stone\",\"rock\",\"boulder\"]\n  },\n  {\n    \"name\": \"store\",\n    \"categories\": [\"buildings\",\"navigation\",\"shopping\"],\n    \"tags\": [\"shop\",\"supermarket\",\"stand\",\"boutique\",\"building\"]\n  },\n  {\n    \"name\": \"stretch-horizontal\",\n    \"categories\": [\"layout\"],\n    \"tags\": [\"items\",\"flex\",\"justify\",\"distribute\"]\n  },\n  {\n    \"name\": \"stretch-vertical\",\n    \"categories\": [\"layout\"],\n    \"tags\": [\"items\",\"flex\",\"justify\",\"distribute\"]\n  },\n  {\n    \"name\": \"strikethrough\",\n    \"categories\": [\"text\"],\n    \"tags\": [\"cross out\",\"delete\",\"remove\",\"format\"]\n  },\n  {\n    \"name\": \"subscript\",\n    \"categories\": [\"text\"],\n    \"tags\": [\"text\"]\n  },\n  {\n    \"name\": \"summary\",\n    \"categories\": [\"text\"],\n    \"tags\": [\"brief\",\"abstract\",\"synopsis\",\"report\",\"digest\",\"outline\",\"recap\",\"condensation\",\"summary\",\"ai\",\"text\",\"overview\"]\n  },\n  {\n    \"name\": \"sun-dim\",\n    \"categories\": [\"accessibility\",\"weather\"],\n    \"tags\": [\"brightness\",\"dim\",\"low\",\"brightness low\"]\n  },\n  {\n    \"name\": \"sun-medium\",\n    \"categories\": [\"accessibility\",\"weather\"],\n    \"tags\": [\"brightness\",\"medium\"]\n  },\n  {\n    \"name\": \"sun-moon\",\n    \"categories\": [\"accessibility\"],\n    \"tags\": [\"dark\",\"light\",\"moon\",\"sun\",\"brightness\",\"theme\",\"auto theme\",\"system theme\",\"appearance\"]\n  },\n  {\n    \"name\": \"sun-snow\",\n    \"categories\": [\"weather\"],\n    \"tags\": [\"weather\",\"air conditioning\",\"temperature\",\"hot\",\"cold\",\"seasons\"]\n  },\n  {\n    \"name\": \"sun\",\n    \"categories\": [\"accessibility\",\"weather\",\"seasons\",\"sustainability\"],\n    \"tags\": [\"brightness\",\"weather\",\"light\",\"summer\"]\n  },\n  {\n    \"name\": \"sunrise\",\n    \"categories\": [\"arrows\",\"weather\",\"time\"],\n    \"tags\": [\"weather\",\"time\",\"morning\",\"day\"]\n  },\n  {\n    \"name\": \"sunset\",\n    \"categories\": [\"arrows\",\"weather\"],\n    \"tags\": [\"weather\",\"time\",\"evening\",\"night\"]\n  },\n  {\n    \"name\": \"superscript\",\n    \"categories\": [\"text\"],\n    \"tags\": [\"text\",\"exponent\"]\n  },\n  {\n    \"name\": \"swatch-book\",\n    \"categories\": [\"design\",\"home\",\"photography\"],\n    \"tags\": [\"colors\",\"colours\",\"swatches\",\"pantone\",\"shades\",\"tint\",\"hue\",\"saturation\",\"brightness\",\"theme\",\"scheme\",\"palette\",\"samples\",\"textile\",\"carpet\"]\n  },\n  {\n    \"name\": \"swiss-franc\",\n    \"categories\": [\"finance\"],\n    \"tags\": [\"currency\",\"money\",\"payment\"]\n  },\n  {\n    \"name\": \"switch-camera\",\n    \"categories\": [\"communication\",\"devices\"],\n    \"tags\": [\"photo\",\"selfie\",\"front\",\"back\"]\n  },\n  {\n    \"name\": \"sword\",\n    \"categories\": [\"gaming\",\"tools\"],\n    \"tags\": [\"battle\",\"challenge\",\"game\",\"war\",\"weapon\"]\n  },\n  {\n    \"name\": \"swords\",\n    \"categories\": [\"gaming\",\"tools\"],\n    \"tags\": [\"battle\",\"challenge\",\"game\",\"war\",\"weapon\"]\n  },\n  {\n    \"name\": \"syringe\",\n    \"categories\": [\"science\",\"medical\"],\n    \"tags\": [\"medicine\",\"medical\",\"needle\",\"pump\",\"plunger\",\"nozzle\",\"blood\"]\n  },\n  {\n    \"name\": \"table-2\",\n    \"categories\": [\"text\",\"files\"],\n    \"tags\": [\"spreadsheet\",\"grid\"]\n  },\n  {\n    \"name\": \"table-cells-merge\",\n    \"categories\": [\"text\",\"files\"],\n    \"tags\": [\"spreadsheet\",\"grid\",\"row\"]\n  },\n  {\n    \"name\": \"table-cells-split\",\n    \"categories\": [\"text\",\"files\"],\n    \"tags\": [\"spreadsheet\",\"grid\",\"row\"]\n  },\n  {\n    \"name\": \"table-columns-split\",\n    \"categories\": [\"text\",\"files\"],\n    \"tags\": [\"spreadsheet\",\"grid\",\"cut\",\"break\",\"divide\",\"separate\",\"segment\"]\n  },\n  {\n    \"name\": \"table-of-contents\",\n    \"categories\": [\"text\"],\n    \"tags\": [\"toc\",\"outline\",\"navigation\",\"document structure\",\"index\",\"overview\",\"sections\",\"chapters\",\"content\",\"documentation\",\"manual\",\"knowledge base\",\"faq\"]\n  },\n  {\n    \"name\": \"table-properties\",\n    \"categories\": [\"text\",\"development\",\"files\"],\n    \"tags\": [\"property list\",\"plist\",\"spreadsheet\",\"grid\",\"dictionary\",\"object\",\"hash\"]\n  },\n  {\n    \"name\": \"table-rows-split\",\n    \"categories\": [\"text\",\"files\"],\n    \"tags\": [\"spreadsheet\",\"grid\",\"cut\",\"break\",\"divide\",\"separate\",\"segment\"]\n  },\n  {\n    \"name\": \"table\",\n    \"categories\": [\"text\",\"files\"],\n    \"tags\": [\"spreadsheet\",\"grid\"]\n  },\n  {\n    \"name\": \"tablet-smartphone\",\n    \"categories\": [\"devices\",\"design\",\"development\",\"tools\"],\n    \"tags\": [\"responsive\",\"screens\",\"browser\",\"testing\",\"mobile\"]\n  },\n  {\n    \"name\": \"tablet\",\n    \"categories\": [\"devices\"],\n    \"tags\": [\"device\"]\n  },\n  {\n    \"name\": \"tablets\",\n    \"categories\": [\"medical\"],\n    \"tags\": [\"medicine\",\"medication\",\"drug\",\"prescription\",\"pills\",\"pharmacy\"]\n  },\n  {\n    \"name\": \"tag-plus\",\n    \"categories\": [\"account\"],\n    \"tags\": [\"label\",\"badge\",\"ticket\",\"mark\",\"new\",\"add\",\"create\",\"+\"]\n  },\n  {\n    \"name\": \"tag-x\",\n    \"categories\": [\"account\"],\n    \"tags\": [\"label\",\"badge\",\"ticket\",\"mark\",\"x\",\"delete\",\"remove\"]\n  },\n  {\n    \"name\": \"tag\",\n    \"categories\": [\"account\"],\n    \"tags\": [\"label\",\"badge\",\"ticket\",\"mark\"]\n  },\n  {\n    \"name\": \"tags\",\n    \"categories\": [\"account\"],\n    \"tags\": [\"labels\",\"badges\",\"tickets\",\"marks\",\"copy\",\"multiple\"]\n  },\n  {\n    \"name\": \"tally-1\",\n    \"categories\": [\"math\",\"gaming\"],\n    \"tags\": [\"count\",\"score\",\"enumerate\",\"days\",\"one\",\"1\",\"first\",\"bar\",\"prison\",\"cell\",\"sentence\"]\n  },\n  {\n    \"name\": \"tally-2\",\n    \"categories\": [\"math\",\"gaming\"],\n    \"tags\": [\"count\",\"score\",\"enumerate\",\"days\",\"two\",\"2\",\"second\",\"double\",\"bars\",\"prison\",\"cell\",\"sentence\"]\n  },\n  {\n    \"name\": \"tally-3\",\n    \"categories\": [\"math\",\"gaming\"],\n    \"tags\": [\"count\",\"score\",\"enumerate\",\"days\",\"three\",\"3\",\"third\",\"triple\",\"bars\",\"prison\",\"cell\",\"sentence\"]\n  },\n  {\n    \"name\": \"tally-4\",\n    \"categories\": [\"math\",\"gaming\"],\n    \"tags\": [\"count\",\"score\",\"enumerate\",\"days\",\"4\",\"fourth\",\"quadruple\",\"bars\",\"prison\",\"cell\",\"sentence\"]\n  },\n  {\n    \"name\": \"tally-5\",\n    \"categories\": [\"math\",\"gaming\"],\n    \"tags\": [\"count\",\"score\",\"enumerate\",\"days\",\"five\",\"5\",\"fifth\",\"bars\",\"prison\",\"cell\",\"sentence\",\"slash\",\"/\"]\n  },\n  {\n    \"name\": \"tangent\",\n    \"categories\": [\"shapes\",\"math\",\"design\",\"tools\"],\n    \"tags\": [\"tangential\",\"shape\",\"circle\",\"geometry\",\"trigonometry\",\"bezier curve\"]\n  },\n  {\n    \"name\": \"target\",\n    \"categories\": [\"gaming\"],\n    \"tags\": [\"logo\",\"bullseye\",\"deadline\",\"projects\",\"overview\",\"work\",\"productivity\"]\n  },\n  {\n    \"name\": \"telescope\",\n    \"categories\": [\"science\",\"development\",\"tools\"],\n    \"tags\": [\"astronomy\",\"space\",\"discovery\",\"exploration\",\"explore\",\"vision\",\"perspective\",\"focus\",\"stargazing\",\"observe\",\"view\"]\n  },\n  {\n    \"name\": \"tent-tree\",\n    \"categories\": [\"travel\",\"nature\"],\n    \"tags\": [\"camping\",\"campsite\",\"holiday\",\"retreat\",\"nomadic\",\"wilderness\",\"outdoors\"]\n  },\n  {\n    \"name\": \"tent\",\n    \"categories\": [\"travel\",\"nature\",\"sustainability\"],\n    \"tags\": [\"tipi\",\"teepee\",\"wigwam\",\"lodge\",\"camping\",\"campsite\",\"holiday\",\"retreat\",\"nomadic\",\"native american\",\"indian\",\"wilderness\",\"outdoors\"]\n  },\n  {\n    \"name\": \"terminal\",\n    \"categories\": [\"development\"],\n    \"tags\": [\"code\",\"command line\",\"prompt\",\"shell\"]\n  },\n  {\n    \"name\": \"test-tube-diagonal\",\n    \"categories\": [\"science\"],\n    \"tags\": [\"tube\",\"vial\",\"phial\",\"flask\",\"ampoule\",\"ampule\",\"lab\",\"chemistry\",\"experiment\",\"test\"]\n  },\n  {\n    \"name\": \"test-tube\",\n    \"categories\": [\"science\"],\n    \"tags\": [\"tube\",\"vial\",\"phial\",\"flask\",\"ampoule\",\"ampule\",\"lab\",\"chemistry\",\"experiment\",\"test\"]\n  },\n  {\n    \"name\": \"test-tubes\",\n    \"categories\": [\"science\"],\n    \"tags\": [\"tubes\",\"vials\",\"phials\",\"flasks\",\"ampoules\",\"ampules\",\"lab\",\"chemistry\",\"experiment\",\"test\"]\n  },\n  {\n    \"name\": \"text-align-center\",\n    \"categories\": [\"text\"],\n    \"tags\": [\"text\",\"alignment\",\"center\"]\n  },\n  {\n    \"name\": \"text-align-end\",\n    \"categories\": [\"text\"],\n    \"tags\": [\"text\",\"alignment\",\"right\"]\n  },\n  {\n    \"name\": \"text-align-justify\",\n    \"categories\": [\"text\"],\n    \"tags\": [\"text\",\"alignment\",\"justified\",\"menu\",\"list\"]\n  },\n  {\n    \"name\": \"text-align-start\",\n    \"categories\": [\"text\"],\n    \"tags\": [\"text\",\"alignment\",\"left\",\"list\"]\n  },\n  {\n    \"name\": \"text-cursor-input\",\n    \"categories\": [\"text\",\"layout\"],\n    \"tags\": [\"select\"]\n  },\n  {\n    \"name\": \"text-cursor\",\n    \"categories\": [\"text\",\"cursors\"],\n    \"tags\": [\"select\",\"caret\",\"type\",\"typing\",\"write\",\"writing\",\"edit\",\"insert\",\"input\",\"textarea\"]\n  },\n  {\n    \"name\": \"text-initial\",\n    \"categories\": [\"text\"],\n    \"tags\": [\"drop cap\",\"text\",\"format\",\"typography\",\"letter\",\"font size\"]\n  },\n  {\n    \"name\": \"text-quote\",\n    \"categories\": [\"text\"],\n    \"tags\": [\"blockquote\",\"quotation\",\"indent\",\"reply\",\"response\"]\n  },\n  {\n    \"name\": \"text-search\",\n    \"categories\": [\"text\"],\n    \"tags\": [\"find\",\"data\",\"copy\",\"txt\",\"pdf\",\"document\",\"scan\",\"magnifier\",\"magnifying glass\",\"lens\"]\n  },\n  {\n    \"name\": \"text-wrap\",\n    \"categories\": [\"text\",\"arrows\"],\n    \"tags\": [\"words\",\"lines\",\"break\",\"paragraph\"]\n  },\n  {\n    \"name\": \"theater\",\n    \"categories\": [\"buildings\",\"social\"],\n    \"tags\": [\"theater\",\"theatre\",\"entertainment\",\"podium\",\"stage\",\"musical\"]\n  },\n  {\n    \"name\": \"thermometer-snowflake\",\n    \"categories\": [\"weather\"],\n    \"tags\": [\"temperature\",\"celsius\",\"fahrenheit\",\"weather\",\"cold\",\"freeze\",\"freezing\"]\n  },\n  {\n    \"name\": \"thermometer-sun\",\n    \"categories\": [\"weather\"],\n    \"tags\": [\"temperature\",\"celsius\",\"fahrenheit\",\"weather\",\"warm\",\"hot\"]\n  },\n  {\n    \"name\": \"thermometer\",\n    \"categories\": [\"weather\"],\n    \"tags\": [\"temperature\",\"celsius\",\"fahrenheit\",\"weather\"]\n  },\n  {\n    \"name\": \"thumbs-down\",\n    \"categories\": [\"account\",\"social\",\"emoji\"],\n    \"tags\": [\"dislike\",\"bad\",\"emotion\"]\n  },\n  {\n    \"name\": \"thumbs-up\",\n    \"categories\": [\"account\",\"social\",\"emoji\"],\n    \"tags\": [\"like\",\"good\",\"emotion\"]\n  },\n  {\n    \"name\": \"ticket-check\",\n    \"categories\": [\"transportation\"],\n    \"tags\": [\"entry\",\"pass\",\"voucher\",\"event\",\"concert\",\"show\",\"booked\",\"purchased\",\"receipt\",\"redeemed\",\"validated\",\"verified\",\"certified\",\"checked\",\"used\"]\n  },\n  {\n    \"name\": \"ticket-minus\",\n    \"categories\": [\"transportation\"],\n    \"tags\": [\"entry\",\"pass\",\"voucher\",\"event\",\"concert\",\"show\",\"remove\",\"cancel\",\"unbook\",\"subtract\",\"decrease\",\"-\"]\n  },\n  {\n    \"name\": \"ticket-percent\",\n    \"categories\": [\"transportation\",\"shopping\"],\n    \"tags\": [\"discount\",\"reduced\",\"offer\",\"voucher\",\"entry\",\"pass\",\"event\",\"concert\",\"show\",\"book\",\"purchase\",\"%\"]\n  },\n  {\n    \"name\": \"ticket-plus\",\n    \"categories\": [\"transportation\"],\n    \"tags\": [\"entry\",\"pass\",\"voucher\",\"event\",\"concert\",\"show\",\"book\",\"purchase\",\"add\",\"+\"]\n  },\n  {\n    \"name\": \"ticket-slash\",\n    \"categories\": [\"transportation\"],\n    \"tags\": [\"entry\",\"pass\",\"voucher\",\"event\",\"concert\",\"show\",\"redeemed\",\"used\",\"marked\",\"checked\",\"verified\",\"spoiled\",\"invalidated\",\"void\",\"denied\",\"refused\",\"banned\",\"barred\",\"forbidden\",\"prohibited\",\"cancelled\",\"cancellation\",\"refunded\",\"delete\",\"remove\",\"clear\",\"error\"]\n  },\n  {\n    \"name\": \"ticket-x\",\n    \"categories\": [\"transportation\"],\n    \"tags\": [\"entry\",\"pass\",\"voucher\",\"event\",\"concert\",\"show\",\"cancelled\",\"cancellation\",\"refunded\",\"used\",\"void\",\"invalidated\",\"spoiled\",\"denied\",\"refused\",\"banned\",\"barred\",\"forbidden\",\"prohibited\",\"delete\",\"remove\",\"clear\",\"error\",\"x\"]\n  },\n  {\n    \"name\": \"ticket\",\n    \"categories\": [\"account\",\"transportation\"],\n    \"tags\": [\"entry\",\"pass\",\"voucher\",\"event\",\"concert\",\"show\",\"perforated\",\"dashed\"]\n  },\n  {\n    \"name\": \"tickets-plane\",\n    \"categories\": [\"transportation\",\"travel\"],\n    \"tags\": [\"plane\",\"trip\",\"airplane\",\"flight\",\"travel\",\"fly\",\"takeoff\",\"vacation\",\"passenger\",\"pass\",\"check-in\",\"airport\"]\n  },\n  {\n    \"name\": \"tickets\",\n    \"categories\": [\"travel\",\"account\",\"transportation\"],\n    \"tags\": [\"trip\",\"travel\",\"pass\",\"entry\",\"voucher\",\"event\",\"concert\",\"show\",\"perforated\",\"dashed\"]\n  },\n  {\n    \"name\": \"timeline\",\n    \"categories\": [\"time\"],\n    \"tags\": [\"tags\",\"history\"]\n  },\n  {\n    \"name\": \"timer-off\",\n    \"categories\": [\"time\"],\n    \"tags\": [\"time\",\"timer\",\"stopwatch\"]\n  },\n  {\n    \"name\": \"timer-reset\",\n    \"categories\": [\"time\"],\n    \"tags\": [\"time\",\"timer\",\"stopwatch\"]\n  },\n  {\n    \"name\": \"timer\",\n    \"categories\": [\"time\"],\n    \"tags\": [\"time\",\"timer\",\"stopwatch\"]\n  },\n  {\n    \"name\": \"toggle-left\",\n    \"categories\": [\"layout\",\"account\",\"development\"],\n    \"tags\": [\"on\",\"off\",\"switch\",\"boolean\"]\n  },\n  {\n    \"name\": \"toggle-right\",\n    \"categories\": [\"layout\",\"account\",\"development\"],\n    \"tags\": [\"on\",\"off\",\"switch\",\"boolean\"]\n  },\n  {\n    \"name\": \"toilet\",\n    \"categories\": [\"devices\",\"home\"],\n    \"tags\": [\"toilet\",\"potty\",\"bathroom\",\"washroom\"]\n  },\n  {\n    \"name\": \"tool-case\",\n    \"categories\": [\"tools\",\"development\",\"home\"],\n    \"tags\": [\"tools\",\"maintenance\",\"repair\"]\n  },\n  {\n    \"name\": \"toolbox\",\n    \"categories\": [\"tools\",\"home\"],\n    \"tags\": [\"toolkit\",\"tools\",\"trunk\",\"chest\",\"box\",\"storage\",\"utility\",\"utilities\",\"container\",\"kit\",\"set\",\"repair\",\"fix\",\"service\",\"maintenance\",\"mechanic\",\"workshop\",\"construction\",\"hardware\",\"equipment\",\"gear\",\"handyman\",\"engineering\",\"craft\",\"diy\"]\n  },\n  {\n    \"name\": \"tornado\",\n    \"categories\": [\"weather\"],\n    \"tags\": [\"weather\",\"wind\",\"storm\",\"hurricane\"]\n  },\n  {\n    \"name\": \"torus\",\n    \"categories\": [\"shapes\",\"design\",\"tools\",\"food-beverage\"],\n    \"tags\": [\"donut\",\"doughnut\",\"ring\",\"hollow\",\"3d\",\"fast food\",\"junk food\",\"snack\",\"treat\",\"sweet\",\"sugar\",\"dessert\"]\n  },\n  {\n    \"name\": \"touchpad-off\",\n    \"categories\": [\"devices\"],\n    \"tags\": [\"trackpad\",\"cursor\"]\n  },\n  {\n    \"name\": \"touchpad\",\n    \"categories\": [\"devices\"],\n    \"tags\": [\"trackpad\",\"cursor\"]\n  },\n  {\n    \"name\": \"towel-rack\",\n    \"categories\": [\"home\",\"travel\"],\n    \"tags\": [\"flannel\",\"bathroom\",\"toiletries\",\"sanitation\",\"clean\",\"fresh\",\"dry\",\"laundry\",\"laundrette\",\"hospitality\",\"housekeeping\",\"room service\",\"spa break\",\"health club\",\"amenities\",\"hanging\"]\n  },\n  {\n    \"name\": \"tower-control\",\n    \"categories\": [\"travel\",\"transportation\"],\n    \"tags\": [\"airport\",\"travel\",\"tower\",\"transportation\",\"lighthouse\"]\n  },\n  {\n    \"name\": \"toy-brick\",\n    \"categories\": [\"gaming\",\"development\"],\n    \"tags\": [\"lego\",\"block\",\"addon\",\"plugin\",\"integration\"]\n  },\n  {\n    \"name\": \"tractor\",\n    \"categories\": [\"transportation\",\"sustainability\",\"food-beverage\"],\n    \"tags\": [\"farming\",\"farmer\",\"ranch\",\"harvest\",\"equipment\",\"vehicle\"]\n  },\n  {\n    \"name\": \"traffic-cone\",\n    \"categories\": [\"transportation\"],\n    \"tags\": [\"roadworks\",\"tarmac\",\"safety\",\"block\"]\n  },\n  {\n    \"name\": \"train-front-tunnel\",\n    \"categories\": [\"transportation\",\"navigation\"],\n    \"tags\": [\"railway\",\"metro\",\"subway\",\"underground\",\"speed\",\"bullet\",\"fast\",\"track\",\"line\"]\n  },\n  {\n    \"name\": \"train-front\",\n    \"categories\": [\"transportation\"],\n    \"tags\": [\"railway\",\"metro\",\"subway\",\"underground\",\"high-speed\",\"bullet\",\"fast\",\"track\",\"line\"]\n  },\n  {\n    \"name\": \"train-track\",\n    \"categories\": [\"transportation\",\"navigation\"],\n    \"tags\": [\"railway\",\"line\"]\n  },\n  {\n    \"name\": \"tram-front\",\n    \"categories\": [\"transportation\"],\n    \"tags\": [\"railway\",\"metro\",\"subway\",\"underground\",\"track\",\"line\",\"tourism\"]\n  },\n  {\n    \"name\": \"transgender\",\n    \"categories\": [\"medical\",\"accessibility\"],\n    \"tags\": [\"gender\",\"inclusive\"]\n  },\n  {\n    \"name\": \"trash-2\",\n    \"categories\": [\"files\",\"mail\"],\n    \"tags\": [\"garbage\",\"delete\",\"remove\",\"bin\"]\n  },\n  {\n    \"name\": \"trash\",\n    \"categories\": [\"files\",\"mail\"],\n    \"tags\": [\"empty\",\"deletion\",\"cleanup\",\"junk\",\"clear\",\"garbage\",\"delete\",\"remove\",\"bin\",\"waste\",\"recycle\",\"discard\",\"binoculars\",\"rubbish\"]\n  },\n  {\n    \"name\": \"tree-deciduous\",\n    \"categories\": [\"nature\",\"sustainability\"],\n    \"tags\": [\"tree\",\"forest\",\"park\",\"nature\"]\n  },\n  {\n    \"name\": \"tree-palm\",\n    \"categories\": [\"nature\",\"sustainability\"],\n    \"tags\": [\"vacation\",\"leisure\",\"island\"]\n  },\n  {\n    \"name\": \"tree-pine\",\n    \"categories\": [\"nature\",\"sustainability\"],\n    \"tags\": [\"tree\",\"pine\",\"forest\",\"park\",\"nature\"]\n  },\n  {\n    \"name\": \"trees\",\n    \"categories\": [\"nature\",\"sustainability\"],\n    \"tags\": [\"tree\",\"forest\",\"park\",\"nature\"]\n  },\n  {\n    \"name\": \"trending-down\",\n    \"categories\": [\"charts\",\"arrows\"],\n    \"tags\": [\"statistics\"]\n  },\n  {\n    \"name\": \"trending-up-down\",\n    \"categories\": [\"charts\",\"arrows\"],\n    \"tags\": [\"arrows\",\"estimated\",\"indeterminate\",\"data fluctuation\",\"uncertain\",\"forecast\",\"variable\",\"prediction\",\"dynamic\",\"volatile\"]\n  },\n  {\n    \"name\": \"trending-up\",\n    \"categories\": [\"charts\",\"arrows\"],\n    \"tags\": [\"statistics\"]\n  },\n  {\n    \"name\": \"triangle-alert\",\n    \"categories\": [\"notifications\",\"shapes\",\"development\"],\n    \"tags\": [\"warning\",\"alert\",\"danger\",\"exclamation mark\",\"linter\"]\n  },\n  {\n    \"name\": \"triangle-dashed\",\n    \"categories\": [\"shapes\"],\n    \"tags\": [\"equilateral\",\"delta\",\"shape\",\"pyramid\",\"hierarchy\",\"dashed\"]\n  },\n  {\n    \"name\": \"triangle-right\",\n    \"categories\": [\"shapes\",\"math\"],\n    \"tags\": [\"volume\",\"controls\",\"controller\",\"tv remote\",\"geometry\",\"delta\",\"ramp\",\"slope\",\"incline\",\"increase\"]\n  },\n  {\n    \"name\": \"triangle\",\n    \"categories\": [\"shapes\"],\n    \"tags\": [\"equilateral\",\"delta\",\"shape\",\"pyramid\",\"hierarchy\"]\n  },\n  {\n    \"name\": \"trophy\",\n    \"categories\": [\"sports\",\"gaming\"],\n    \"tags\": [\"prize\",\"sports\",\"winner\",\"achievement\",\"award\",\"champion\",\"celebration\",\"victory\"]\n  },\n  {\n    \"name\": \"truck-electric\",\n    \"categories\": [\"transportation\"],\n    \"tags\": [\"delivery\",\"van\",\"shipping\",\"haulage\",\"lorry\",\"electric\"]\n  },\n  {\n    \"name\": \"truck\",\n    \"categories\": [\"transportation\"],\n    \"tags\": [\"delivery\",\"van\",\"shipping\",\"haulage\",\"lorry\"]\n  },\n  {\n    \"name\": \"turkish-lira\",\n    \"categories\": [\"finance\"],\n    \"tags\": [\"currency\",\"money\",\"payment\"]\n  },\n  {\n    \"name\": \"turntable\",\n    \"categories\": [\"multimedia\",\"home\"],\n    \"tags\": [\"record player\",\"gramophone\",\"stereo\",\"phonograph\",\"vinyl\",\"lp\",\"disc\",\"platter\",\"cut\",\"music\",\"analog\",\"retro\",\"dj deck\",\"disc jockey\",\"scratch\",\"spinning\"]\n  },\n  {\n    \"name\": \"turtle\",\n    \"categories\": [\"animals\"],\n    \"tags\": [\"animal\",\"pet\",\"tortoise\",\"slow\",\"speed\"]\n  },\n  {\n    \"name\": \"tv-minimal-play\",\n    \"categories\": [\"devices\",\"multimedia\"],\n    \"tags\": [\"flatscreen\",\"television\",\"stream\",\"display\",\"widescreen\",\"high-definition\",\"hd\",\"1080p\",\"4k\",\"8k\",\"smart\",\"digital\",\"video\",\"movie\",\"live\",\"ott\",\"running\",\"start\",\"film\",\"home cinema\",\"entertainment\",\"showtime\",\"channels\",\"catchup\"]\n  },\n  {\n    \"name\": \"tv-minimal\",\n    \"categories\": [\"devices\",\"multimedia\"],\n    \"tags\": [\"flatscreen\",\"television\",\"stream\",\"display\",\"widescreen\",\"high-definition\",\"hd\",\"1080p\",\"4k\",\"8k\",\"smart\",\"digital\",\"video\",\"home cinema\",\"entertainment\",\"showtime\",\"channels\",\"catchup\"]\n  },\n  {\n    \"name\": \"tv\",\n    \"categories\": [\"devices\",\"multimedia\",\"communication\"],\n    \"tags\": [\"television\",\"stream\",\"display\",\"widescreen\",\"high-definition\",\"hd\",\"1080p\",\"4k\",\"8k\",\"smart\",\"digital\",\"video\",\"entertainment\",\"showtime\",\"channels\",\"terrestrial\",\"satellite\",\"cable\",\"broadcast\",\"live\",\"frequency\",\"tune\",\"scan\",\"aerial\",\"receiver\",\"transmission\",\"signal\",\"connection\",\"connectivity\"]\n  },\n  {\n    \"name\": \"type-outline\",\n    \"categories\": [\"text\"],\n    \"tags\": [\"text\",\"font\",\"typography\",\"silhouette\",\"profile\",\"contour\",\"stroke\",\"line\"]\n  },\n  {\n    \"name\": \"type\",\n    \"categories\": [\"text\"],\n    \"tags\": [\"text\",\"font\",\"typography\"]\n  },\n  {\n    \"name\": \"umbrella-off\",\n    \"categories\": [\"weather\"],\n    \"tags\": [\"rain\",\"weather\",\"uncovered\",\"uninsured\",\"antivirus\",\"unprotected\",\"risky\"]\n  },\n  {\n    \"name\": \"umbrella\",\n    \"categories\": [\"weather\"],\n    \"tags\": [\"rain\",\"weather\"]\n  },\n  {\n    \"name\": \"underline\",\n    \"categories\": [\"text\"],\n    \"tags\": [\"text\",\"format\"]\n  },\n  {\n    \"name\": \"undo-2\",\n    \"categories\": [\"text\",\"arrows\"],\n    \"tags\": [\"redo\",\"rerun\",\"history\",\"back\",\"return\",\"reverse\",\"revert\",\"direction\",\"u-turn\"]\n  },\n  {\n    \"name\": \"undo-dot\",\n    \"categories\": [\"text\",\"arrows\"],\n    \"tags\": [\"redo\",\"history\",\"step\",\"back\"]\n  },\n  {\n    \"name\": \"undo\",\n    \"categories\": [\"text\",\"arrows\"],\n    \"tags\": [\"redo\",\"rerun\",\"history\"]\n  },\n  {\n    \"name\": \"unfold-horizontal\",\n    \"categories\": [\"arrows\",\"layout\"],\n    \"tags\": [\"arrow\",\"collapse\",\"fold\",\"vertical\",\"dashed\"]\n  },\n  {\n    \"name\": \"unfold-vertical\",\n    \"categories\": [\"arrows\",\"layout\"],\n    \"tags\": [\"arrow\",\"expand\",\"vertical\",\"dashed\"]\n  },\n  {\n    \"name\": \"ungroup\",\n    \"categories\": [\"shapes\",\"files\"],\n    \"tags\": [\"cubes\",\"packages\",\"parts\",\"units\",\"collection\",\"cluster\",\"separate\"]\n  },\n  {\n    \"name\": \"university\",\n    \"categories\": [\"buildings\",\"navigation\"],\n    \"tags\": [\"building\",\"education\",\"childhood\",\"school\",\"college\",\"academy\",\"institute\"]\n  },\n  {\n    \"name\": \"unlink-2\",\n    \"categories\": [\"text\"],\n    \"tags\": [\"url\",\"unchain\"]\n  },\n  {\n    \"name\": \"unlink\",\n    \"categories\": [\"text\"],\n    \"tags\": [\"url\",\"unchain\"]\n  },\n  {\n    \"name\": \"unplug\",\n    \"categories\": [\"devices\",\"development\"],\n    \"tags\": [\"electricity\",\"energy\",\"electronics\",\"socket\",\"outlet\",\"disconnect\"]\n  },\n  {\n    \"name\": \"upload\",\n    \"categories\": [\"arrows\",\"files\"],\n    \"tags\": [\"file\"]\n  },\n  {\n    \"name\": \"usb\",\n    \"categories\": [\"devices\",\"multimedia\",\"home\"],\n    \"tags\": [\"universal\",\"serial\",\"bus\",\"controller\",\"connector\",\"interface\"]\n  },\n  {\n    \"name\": \"user-check\",\n    \"categories\": [\"account\"],\n    \"tags\": [\"followed\",\"subscribed\",\"done\",\"todo\",\"tick\",\"complete\",\"task\"]\n  },\n  {\n    \"name\": \"user-cog\",\n    \"categories\": [\"account\"],\n    \"tags\": [\"settings\",\"edit\",\"cog\",\"gear\"]\n  },\n  {\n    \"name\": \"user-key\",\n    \"categories\": [\"account\"],\n    \"tags\": [\"passkey\",\"password\",\"login\",\"authentication\",\"authorization\",\"roles\",\"permissions\",\"private\",\"public\",\"security\",\"person\",\"account\",\"contact\"]\n  },\n  {\n    \"name\": \"user-lock\",\n    \"categories\": [\"account\",\"security\"],\n    \"tags\": [\"person\",\"lock\",\"locked\",\"account\",\"secure\"]\n  },\n  {\n    \"name\": \"user-minus\",\n    \"categories\": [\"account\"],\n    \"tags\": [\"delete\",\"remove\",\"unfollow\",\"unsubscribe\"]\n  },\n  {\n    \"name\": \"user-pen\",\n    \"categories\": [\"account\"],\n    \"tags\": [\"person\",\"account\",\"contact\",\"profile\",\"edit\",\"change\"]\n  },\n  {\n    \"name\": \"user-plus\",\n    \"categories\": [\"account\"],\n    \"tags\": [\"new\",\"add\",\"create\",\"follow\",\"subscribe\"]\n  },\n  {\n    \"name\": \"user-round-arrow-left\",\n    \"categories\": [\"account\",\"people\",\"arrows\"],\n    \"tags\": [\"person\",\"assign\",\"move\",\"give\",\"setup\",\"self\",\"me\",\"myself\",\"profile\",\"avatar\",\"incoming\",\"recipient\",\"assignee\",\"inbound\"]\n  },\n  {\n    \"name\": \"user-round-check\",\n    \"categories\": [\"account\"],\n    \"tags\": [\"followed\",\"subscribed\",\"done\",\"todo\",\"tick\",\"complete\",\"task\"]\n  },\n  {\n    \"name\": \"user-round-cog\",\n    \"categories\": [\"account\"],\n    \"tags\": [\"settings\",\"edit\",\"cog\",\"gear\"]\n  },\n  {\n    \"name\": \"user-round-key\",\n    \"categories\": [\"account\"],\n    \"tags\": [\"passkey\",\"password\",\"login\",\"authentication\",\"authorization\",\"roles\",\"permissions\",\"private\",\"public\",\"security\",\"person\",\"account\",\"contact\"]\n  },\n  {\n    \"name\": \"user-round-minus\",\n    \"categories\": [\"account\"],\n    \"tags\": [\"delete\",\"remove\",\"unfollow\",\"unsubscribe\"]\n  },\n  {\n    \"name\": \"user-round-pen\",\n    \"categories\": [\"account\"],\n    \"tags\": [\"person\",\"account\",\"contact\",\"profile\",\"edit\",\"change\"]\n  },\n  {\n    \"name\": \"user-round-plus\",\n    \"categories\": [\"account\"],\n    \"tags\": [\"new\",\"add\",\"create\",\"follow\",\"subscribe\"]\n  },\n  {\n    \"name\": \"user-round-search\",\n    \"categories\": [\"account\",\"social\"],\n    \"tags\": [\"person\",\"account\",\"contact\",\"find\",\"scan\",\"magnifier\",\"magnifying glass\",\"lens\"]\n  },\n  {\n    \"name\": \"user-round-x\",\n    \"categories\": [\"account\"],\n    \"tags\": [\"delete\",\"remove\",\"unfollow\",\"unsubscribe\",\"unavailable\"]\n  },\n  {\n    \"name\": \"user-round\",\n    \"categories\": [\"account\"],\n    \"tags\": [\"person\",\"account\",\"contact\"]\n  },\n  {\n    \"name\": \"user-search\",\n    \"categories\": [\"account\",\"social\"],\n    \"tags\": [\"person\",\"account\",\"contact\",\"find\",\"scan\",\"magnifier\",\"magnifying glass\",\"lens\"]\n  },\n  {\n    \"name\": \"user-star\",\n    \"categories\": [\"account\"],\n    \"tags\": [\"person\",\"account\",\"favorite\",\"contact\",\"like\",\"review\",\"rating\",\"admin\"]\n  },\n  {\n    \"name\": \"user-x\",\n    \"categories\": [\"account\"],\n    \"tags\": [\"delete\",\"remove\",\"unfollow\",\"unsubscribe\",\"unavailable\"]\n  },\n  {\n    \"name\": \"user\",\n    \"categories\": [\"account\"],\n    \"tags\": [\"person\",\"account\",\"contact\"]\n  },\n  {\n    \"name\": \"users-round\",\n    \"categories\": [\"account\"],\n    \"tags\": [\"group\",\"people\"]\n  },\n  {\n    \"name\": \"users\",\n    \"categories\": [\"account\"],\n    \"tags\": [\"group\",\"people\"]\n  },\n  {\n    \"name\": \"utensils-crossed\",\n    \"categories\": [\"food-beverage\",\"travel\",\"navigation\"],\n    \"tags\": [\"fork\",\"knife\",\"cutlery\",\"flatware\",\"tableware\",\"silverware\",\"food\",\"restaurant\",\"meal\",\"breakfast\",\"dinner\",\"supper\"]\n  },\n  {\n    \"name\": \"utensils\",\n    \"categories\": [\"food-beverage\",\"travel\",\"navigation\"],\n    \"tags\": [\"fork\",\"knife\",\"cutlery\",\"flatware\",\"tableware\",\"silverware\",\"food\",\"restaurant\",\"meal\",\"breakfast\",\"dinner\",\"supper\"]\n  },\n  {\n    \"name\": \"utility-pole\",\n    \"categories\": [\"buildings\",\"home\",\"sustainability\"],\n    \"tags\": [\"electricity\",\"energy\",\"transmission line\",\"telegraph pole\",\"power lines\",\"phone\"]\n  },\n  {\n    \"name\": \"van\",\n    \"categories\": [\"transportation\"],\n    \"tags\": [\"minivan\",\"cart\",\"wagon\",\"truck\",\"lorry\",\"trailer\",\"camper\",\"vehicle\",\"drive\",\"trip\",\"journey\",\"van\",\"transport\",\"carriage\",\"delivery\",\"travel\"]\n  },\n  {\n    \"name\": \"variable\",\n    \"categories\": [\"development\",\"math\"],\n    \"tags\": [\"code\",\"coding\",\"programming\",\"symbol\",\"calculate\",\"algebra\",\"x\",\"parentheses\",\"parenthesis\",\"brackets\",\"parameter\",\"(\",\")\"]\n  },\n  {\n    \"name\": \"vault\",\n    \"categories\": [\"security\",\"travel\",\"home\"],\n    \"tags\": [\"safe\",\"lockbox\",\"deposit\",\"locker\",\"coffer\",\"strongbox\",\"safety\",\"secure\",\"storage\",\"valuables\",\"bank\"]\n  },\n  {\n    \"name\": \"vector-square\",\n    \"categories\": [\"shapes\",\"math\",\"design\",\"tools\"],\n    \"tags\": [\"shape\",\"geometry\",\"art\",\"width\",\"height\",\"size\",\"calculate\",\"measure\",\"select\",\"graphics\",\"box\"]\n  },\n  {\n    \"name\": \"vegan\",\n    \"categories\": [\"food-beverage\",\"sustainability\"],\n    \"tags\": [\"vegetarian\",\"fruitarian\",\"herbivorous\",\"animal rights\",\"diet\"]\n  },\n  {\n    \"name\": \"venetian-mask\",\n    \"categories\": [\"account\",\"gaming\"],\n    \"tags\": [\"mask\",\"masquerade\",\"impersonate\",\"secret\",\"incognito\"]\n  },\n  {\n    \"name\": \"venus-and-mars\",\n    \"categories\": [\"medical\"],\n    \"tags\": [\"gender\",\"sex\",\"intersex\",\"androgynous\",\"hermaphrodite\"]\n  },\n  {\n    \"name\": \"venus\",\n    \"categories\": [\"medical\"],\n    \"tags\": [\"gender\",\"sex\",\"female\",\"feminine\",\"woman\",\"girl\"]\n  },\n  {\n    \"name\": \"vibrate-off\",\n    \"categories\": [\"devices\",\"connectivity\",\"account\"],\n    \"tags\": [\"smartphone\",\"notification\",\"rumble\",\"haptic feedback\",\"notifications\",\"screen\"]\n  },\n  {\n    \"name\": \"vibrate\",\n    \"categories\": [\"devices\",\"connectivity\",\"account\",\"notifications\"],\n    \"tags\": [\"smartphone\",\"notification\",\"rumble\",\"haptic feedback\",\"screen\"]\n  },\n  {\n    \"name\": \"video-off\",\n    \"categories\": [\"devices\",\"communication\",\"connectivity\",\"photography\"],\n    \"tags\": [\"camera\",\"movie\",\"film\"]\n  },\n  {\n    \"name\": \"video\",\n    \"categories\": [\"devices\",\"communication\",\"connectivity\",\"photography\"],\n    \"tags\": [\"camera\",\"movie\",\"film\",\"recording\",\"motion picture\",\"camcorder\",\"reel\"]\n  },\n  {\n    \"name\": \"videotape\",\n    \"categories\": [\"devices\",\"communication\",\"connectivity\",\"photography\",\"files\"],\n    \"tags\": [\"vhs\",\"movie\",\"film\",\"recording\",\"motion picture\",\"showreel\",\"cassette\"]\n  },\n  {\n    \"name\": \"view\",\n    \"categories\": [\"design\",\"photography\"],\n    \"tags\": [\"eye\",\"look\"]\n  },\n  {\n    \"name\": \"voicemail\",\n    \"categories\": [\"connectivity\",\"devices\",\"social\"],\n    \"tags\": [\"phone\",\"cassette\",\"tape\",\"reel\",\"recording\",\"audio\"]\n  },\n  {\n    \"name\": \"volleyball\",\n    \"categories\": [\"sports\",\"gaming\",\"travel\"],\n    \"tags\": [\"beach\",\"sand\",\"net\",\"holiday\",\"vacation\",\"summer\",\"soccer\",\"football\",\"futbol\",\"kick\",\"pitch\",\"goal\",\"score\",\"bounce\",\"leather\",\"wool\",\"yarn\",\"knitting\",\"sewing\",\"thread\",\"embroidery\",\"textile\"]\n  },\n  {\n    \"name\": \"volume-1\",\n    \"categories\": [\"connectivity\",\"communication\",\"multimedia\"],\n    \"tags\": [\"music\",\"sound\",\"speaker\"]\n  },\n  {\n    \"name\": \"volume-2\",\n    \"categories\": [\"connectivity\",\"communication\",\"multimedia\"],\n    \"tags\": [\"music\",\"sound\",\"speaker\"]\n  },\n  {\n    \"name\": \"volume-off\",\n    \"categories\": [\"connectivity\",\"communication\",\"multimedia\"],\n    \"tags\": [\"music\",\"sound\",\"mute\",\"speaker\"]\n  },\n  {\n    \"name\": \"volume-x\",\n    \"categories\": [\"connectivity\",\"communication\",\"multimedia\"],\n    \"tags\": [\"music\",\"sound\",\"mute\",\"speaker\"]\n  },\n  {\n    \"name\": \"volume\",\n    \"categories\": [\"connectivity\",\"communication\",\"multimedia\"],\n    \"tags\": [\"music\",\"sound\",\"mute\",\"speaker\"]\n  },\n  {\n    \"name\": \"vote\",\n    \"categories\": [\"social\"],\n    \"tags\": [\"vote\",\"poll\",\"ballot\",\"political\",\"social\",\"check\",\"tick\"]\n  },\n  {\n    \"name\": \"wallet-cards\",\n    \"categories\": [\"account\",\"finance\"],\n    \"tags\": [\"wallet\",\"cards\",\"banking\",\"cash\",\"debit\",\"transport\",\"money\",\"finance\",\"pocket\",\"credit\",\"purchase\",\"payment\",\"shopping\",\"retail\",\"consumer\",\"cc\"]\n  },\n  {\n    \"name\": \"wallet-minimal\",\n    \"categories\": [\"account\",\"finance\"],\n    \"tags\": [\"finance\",\"pocket\"]\n  },\n  {\n    \"name\": \"wallet\",\n    \"categories\": [\"account\",\"finance\"],\n    \"tags\": [\"money\",\"finance\",\"pocket\"]\n  },\n  {\n    \"name\": \"wallpaper\",\n    \"categories\": [\"account\",\"devices\"],\n    \"tags\": [\"background\",\"texture\",\"image\",\"art\",\"design\",\"visual\",\"decor\",\"pattern\",\"screen\",\"cover\",\"lock screen\"]\n  },\n  {\n    \"name\": \"wand-sparkles\",\n    \"categories\": [\"design\",\"gaming\",\"cursors\",\"photography\"],\n    \"tags\": [\"magic\",\"wizard\",\"magician\"]\n  },\n  {\n    \"name\": \"wand\",\n    \"categories\": [\"design\",\"gaming\",\"cursors\",\"photography\"],\n    \"tags\": [\"magic\",\"selection\"]\n  },\n  {\n    \"name\": \"warehouse\",\n    \"categories\": [\"buildings\",\"navigation\"],\n    \"tags\": [\"storage\",\"storehouse\",\"depot\",\"depository\",\"repository\",\"stockroom\",\"logistics\",\"building\"]\n  },\n  {\n    \"name\": \"washing-machine\",\n    \"categories\": [\"home\",\"devices\",\"travel\"],\n    \"tags\": [\"tumble dryer\",\"amenities\",\"electronics\",\"cycle\",\"clothes\",\"rinse\",\"spin\",\"drum\"]\n  },\n  {\n    \"name\": \"watch\",\n    \"categories\": [\"time\"],\n    \"tags\": [\"clock\",\"time\"]\n  },\n  {\n    \"name\": \"waves-arrow-down\",\n    \"categories\": [\"weather\",\"sustainability\"],\n    \"tags\": [\"water\",\"sea\",\"level\",\"sound\",\"hertz\",\"wavelength\",\"vibrate\",\"low\",\"tide\",\"ocean\",\"rising\",\"down\",\"falling\"]\n  },\n  {\n    \"name\": \"waves-arrow-up\",\n    \"categories\": [\"weather\",\"sustainability\"],\n    \"tags\": [\"water\",\"sea\",\"level\",\"sound\",\"hertz\",\"wavelength\",\"vibrate\",\"high\",\"tide\",\"ocean\",\"rising\"]\n  },\n  {\n    \"name\": \"waves-horizontal\",\n    \"categories\": [\"weather\",\"navigation\",\"multimedia\",\"sustainability\"],\n    \"tags\": [\"water\",\"sea\",\"sound\",\"hertz\",\"wavelength\",\"vibrate\",\"ocean\",\"swimming\",\"frequency\"]\n  },\n  {\n    \"name\": \"waves-ladder\",\n    \"categories\": [\"sports\",\"home\"],\n    \"tags\": [\"swimming\",\"water\",\"pool\",\"lifeguard\",\"ocean\",\"🌊\",\"🏊‍♂️\",\"🏊‍♀️\",\"🏊\",\"🥽\"]\n  },\n  {\n    \"name\": \"waves-vertical\",\n    \"categories\": [\"weather\",\"sustainability\"],\n    \"tags\": [\"steam\",\"warmth\",\"temperature\",\"burn\",\"hot\",\"boiling\",\"heat\",\"smoke\",\"vapor\",\"smell\",\"aroma\",\"sauna\"]\n  },\n  {\n    \"name\": \"waypoints\",\n    \"categories\": [\"security\",\"account\",\"navigation\",\"development\",\"social\"],\n    \"tags\": [\"indirection\",\"vpn\",\"virtual private network\",\"proxy\",\"connections\",\"bounce\",\"reroute\",\"path\",\"journey\",\"planner\",\"stops\",\"stations\",\"shared\",\"spread\",\"viral\"]\n  },\n  {\n    \"name\": \"webcam-off\",\n    \"categories\": [\"connectivity\",\"devices\",\"communication\"],\n    \"tags\": [\"camera\",\"security\"]\n  },\n  {\n    \"name\": \"webcam\",\n    \"categories\": [\"connectivity\",\"devices\",\"communication\"],\n    \"tags\": [\"camera\",\"security\"]\n  },\n  {\n    \"name\": \"webhook-off\",\n    \"categories\": [\"development\",\"social\",\"account\"],\n    \"tags\": [\"push api\",\"interface\",\"callback\"]\n  },\n  {\n    \"name\": \"webhook\",\n    \"categories\": [\"development\",\"social\",\"account\"],\n    \"tags\": [\"push api\",\"interface\",\"callback\"]\n  },\n  {\n    \"name\": \"weight-tilde\",\n    \"categories\": [\"math\"],\n    \"tags\": [\"measure\",\"scale\",\"estimate\",\"load\",\"balance\",\"size\",\"measurement\",\"quantity\",\"mass\"]\n  },\n  {\n    \"name\": \"weight\",\n    \"categories\": [\"math\"],\n    \"tags\": [\"mass\",\"heavy\",\"lead\",\"metal\",\"measure\",\"geometry\",\"scales\",\"balance\"]\n  },\n  {\n    \"name\": \"wheat-off\",\n    \"categories\": [\"food-beverage\"],\n    \"tags\": [\"corn\",\"cereal\",\"grain\",\"gluten free\",\"allergy\",\"intolerance\",\"diet\"]\n  },\n  {\n    \"name\": \"wheat\",\n    \"categories\": [\"food-beverage\"],\n    \"tags\": [\"corn\",\"cereal\",\"grain\",\"gluten\"]\n  },\n  {\n    \"name\": \"whole-word\",\n    \"categories\": [\"text\"],\n    \"tags\": [\"text\",\"selection\",\"letters\",\"characters\",\"font\",\"typography\"]\n  },\n  {\n    \"name\": \"wifi-cog\",\n    \"categories\": [\"connectivity\",\"devices\",\"files\"],\n    \"tags\": [\"connection\",\"signal\",\"wireless\",\"directory\",\"settings\",\"control\",\"preferences\",\"cog\",\"edit\",\"gear\"]\n  },\n  {\n    \"name\": \"wifi-high\",\n    \"categories\": [\"connectivity\",\"devices\"],\n    \"tags\": [\"connection\",\"signal\",\"wireless\"]\n  },\n  {\n    \"name\": \"wifi-low\",\n    \"categories\": [\"connectivity\",\"devices\"],\n    \"tags\": [\"connection\",\"signal\",\"wireless\"]\n  },\n  {\n    \"name\": \"wifi-off\",\n    \"categories\": [\"connectivity\",\"devices\"],\n    \"tags\": [\"disabled\"]\n  },\n  {\n    \"name\": \"wifi-pen\",\n    \"categories\": [\"connectivity\",\"devices\"],\n    \"tags\": [\"edit\",\"wifi\",\"pen\",\"change\",\"network\"]\n  },\n  {\n    \"name\": \"wifi-sync\",\n    \"categories\": [\"connectivity\",\"devices\"],\n    \"tags\": [\"connection\",\"signal\",\"wireless\",\"synchronize\",\"reconnect\",\"reset\",\"restart\"]\n  },\n  {\n    \"name\": \"wifi-zero\",\n    \"categories\": [\"connectivity\",\"devices\"],\n    \"tags\": [\"connection\",\"signal\",\"wireless\"]\n  },\n  {\n    \"name\": \"wifi\",\n    \"categories\": [\"connectivity\",\"devices\"],\n    \"tags\": [\"connection\",\"signal\",\"wireless\"]\n  },\n  {\n    \"name\": \"wind-arrow-down\",\n    \"categories\": [\"weather\",\"sustainability\"],\n    \"tags\": [\"weather\",\"air\",\"pressure\",\"blow\"]\n  },\n  {\n    \"name\": \"wind\",\n    \"categories\": [\"weather\",\"sustainability\"],\n    \"tags\": [\"weather\",\"air\",\"blow\"]\n  },\n  {\n    \"name\": \"wine-off\",\n    \"categories\": [\"food-beverage\"],\n    \"tags\": [\"alcohol\",\"beverage\",\"drink\",\"glass\",\"alcohol free\",\"abstinence\",\"abstaining\",\"teetotalism\",\"allergy\",\"intolerance\"]\n  },\n  {\n    \"name\": \"wine\",\n    \"categories\": [\"food-beverage\"],\n    \"tags\": [\"alcohol\",\"beverage\",\"bar\",\"drink\",\"glass\",\"sommelier\",\"vineyard\",\"winery\"]\n  },\n  {\n    \"name\": \"workflow\",\n    \"categories\": [\"development\"],\n    \"tags\": [\"action\",\"continuous integration\",\"ci\",\"automation\",\"devops\",\"network\",\"node\",\"connection\"]\n  },\n  {\n    \"name\": \"worm\",\n    \"categories\": [\"animals\",\"security\"],\n    \"tags\": [\"invertebrate\",\"grub\",\"larva\",\"snake\",\"crawl\",\"wiggle\",\"slither\",\"pest control\",\"computer virus\",\"malware\"]\n  },\n  {\n    \"name\": \"wrench-off\",\n    \"categories\": [\"account\",\"development\",\"tools\"],\n    \"tags\": [\"account\",\"settings\",\"spanner\",\"diy\",\"toolbox\",\"build\",\"construction\",\"off\",\"service\",\"maintenance\",\"disabled\"]\n  },\n  {\n    \"name\": \"wrench\",\n    \"categories\": [\"account\",\"development\",\"tools\"],\n    \"tags\": [\"account\",\"settings\",\"spanner\",\"diy\",\"toolbox\",\"build\",\"construction\"]\n  },\n  {\n    \"name\": \"x-line-top\",\n    \"categories\": [\"notifications\",\"math\"],\n    \"tags\": [\"line\",\"top\",\"arrow\",\"navigation\",\"up\",\"pointer\",\"direction\",\"vector\",\"symbol\",\"cancel\",\"close\",\"delete\",\"remove\",\"times\",\"clear\",\"math\",\"multiply\",\"multiplication\",\"mean\",\"median\",\"average\",\"x̄\"]\n  },\n  {\n    \"name\": \"x\",\n    \"categories\": [\"notifications\",\"math\"],\n    \"tags\": [\"cancel\",\"close\",\"cross\",\"delete\",\"ex\",\"remove\",\"times\",\"clear\",\"math\",\"multiply\",\"multiplication\"]\n  },\n  {\n    \"name\": \"zap-off\",\n    \"categories\": [\"connectivity\",\"devices\",\"photography\",\"weather\"],\n    \"tags\": [\"flash\",\"camera\",\"lightning\",\"electricity\",\"energy\",\"power\"]\n  },\n  {\n    \"name\": \"zap\",\n    \"categories\": [\"connectivity\",\"devices\",\"photography\",\"weather\"],\n    \"tags\": [\"flash\",\"camera\",\"lightning\",\"electricity\",\"energy\",\"power\",\"quick\"]\n  },\n  {\n    \"name\": \"zodiac-aquarius\",\n    \"categories\": [\"social\",\"emoji\"],\n    \"tags\": [\"water bearer\",\"waves\",\"innovation\",\"air\",\"future\",\"astrology\",\"star sign\",\"horoscope\",\"constellation\",\"celestial\"]\n  },\n  {\n    \"name\": \"zodiac-aries\",\n    \"categories\": [\"social\",\"emoji\"],\n    \"tags\": [\"ram\",\"horns\",\"fire\",\"energy\",\"initiative\",\"astrology\",\"star sign\",\"horoscope\",\"constellation\",\"celestial\"]\n  },\n  {\n    \"name\": \"zodiac-cancer\",\n    \"categories\": [\"social\",\"emoji\"],\n    \"tags\": [\"crab\",\"shell\",\"protection\",\"water\",\"intuition\",\"astrology\",\"star sign\",\"horoscope\",\"constellation\",\"celestial\"]\n  },\n  {\n    \"name\": \"zodiac-capricorn\",\n    \"categories\": [\"social\",\"emoji\"],\n    \"tags\": [\"goat\",\"mountain\",\"ambition\",\"earth\",\"discipline\",\"astrology\",\"star sign\",\"horoscope\",\"constellation\",\"celestial\"]\n  },\n  {\n    \"name\": \"zodiac-gemini\",\n    \"categories\": [\"social\",\"emoji\"],\n    \"tags\": [\"twins\",\"duality\",\"communication\",\"air\",\"adaptability\",\"astrology\",\"star sign\",\"horoscope\",\"constellation\",\"celestial\"]\n  },\n  {\n    \"name\": \"zodiac-leo\",\n    \"categories\": [\"social\",\"emoji\"],\n    \"tags\": [\"lion\",\"crown\",\"leadership\",\"fire\",\"confidence\",\"astrology\",\"star sign\",\"horoscope\",\"constellation\",\"celestial\"]\n  },\n  {\n    \"name\": \"zodiac-libra\",\n    \"categories\": [\"social\",\"emoji\"],\n    \"tags\": [\"scales\",\"balance\",\"justice\",\"air\",\"harmony\",\"astrology\",\"star sign\",\"horoscope\",\"constellation\",\"celestial\"]\n  },\n  {\n    \"name\": \"zodiac-ophiuchus\",\n    \"categories\": [\"social\",\"emoji\"],\n    \"tags\": [\"serpent\",\"snake holder\",\"healing\",\"knowledge\",\"astronomy\",\"astrology\",\"star sign\",\"horoscope\",\"constellation\",\"celestial\"]\n  },\n  {\n    \"name\": \"zodiac-pisces\",\n    \"categories\": [\"social\",\"emoji\"],\n    \"tags\": [\"fish\",\"duality\",\"water\",\"dreams\",\"empathy\",\"astrology\",\"star sign\",\"horoscope\",\"constellation\",\"celestial\"]\n  },\n  {\n    \"name\": \"zodiac-sagittarius\",\n    \"categories\": [\"social\",\"emoji\"],\n    \"tags\": [\"archer\",\"arrow\",\"exploration\",\"fire\",\"philosophy\",\"astrology\",\"star sign\",\"horoscope\",\"constellation\",\"celestial\"]\n  },\n  {\n    \"name\": \"zodiac-scorpio\",\n    \"categories\": [\"social\",\"emoji\"],\n    \"tags\": [\"scorpion\",\"stinger\",\"intensity\",\"water\",\"transformation\",\"astrology\",\"star sign\",\"horoscope\",\"constellation\",\"celestial\"]\n  },\n  {\n    \"name\": \"zodiac-taurus\",\n    \"categories\": [\"social\",\"emoji\"],\n    \"tags\": [\"bull\",\"strength\",\"stability\",\"earth\",\"endurance\",\"astrology\",\"star sign\",\"horoscope\",\"constellation\",\"celestial\"]\n  },\n  {\n    \"name\": \"zodiac-virgo\",\n    \"categories\": [\"social\",\"emoji\"],\n    \"tags\": [\"virgin\",\"maiden\",\"harvest\",\"precision\",\"earth\",\"analysis\",\"astrology\",\"star sign\",\"horoscope\",\"constellation\",\"celestial\"]\n  },\n  {\n    \"name\": \"zoom-in\",\n    \"categories\": [\"accessibility\",\"layout\",\"design\",\"text\",\"photography\"],\n    \"tags\": [\"magnifying glass\",\"plus\"]\n  },\n  {\n    \"name\": \"zoom-out\",\n    \"categories\": [\"accessibility\",\"layout\",\"design\",\"text\",\"photography\"],\n    \"tags\": [\"magnifying glass\",\"plus\"]\n  }\n    ];",
      "type": "registry:component",
      "target": "components/ui/icons-data.ts"
    }
  ]
}