[
  {
    "path": ".browserslistrc",
    "content": "# https://github.com/browserslist/browserslist#readme\n\n>= 0.5%\nlast 2 major versions\nnot dead\nChrome >= 60\nFirefox >= 60\nFirefox ESR\niOS >= 12\nSafari >= 12\nnot Explorer <= 11\n"
  },
  {
    "path": ".editorconfig",
    "content": "# editorconfig.org\n\nroot = true\n\n[*]\ncharset = utf-8\nend_of_line = lf\nindent_size = 2\nindent_style = space\ninsert_final_newline = true\ntrim_trailing_whitespace = true\n"
  },
  {
    "path": ".fantasticonrc.js",
    "content": "'use strict'\n\nconst codepoints = require('./font/bootstrap-icons.json')\n\nmodule.exports = {\n  inputDir: './icons',\n  outputDir: './font',\n  fontTypes: ['woff2', 'woff'],\n  assetTypes: ['css', 'scss', 'json', 'ts'],\n  name: 'bootstrap-icons',\n  codepoints,\n  prefix: 'bi',\n  selector: '.bi',\n  fontsUrl: './fonts',\n  formatOptions: {\n    json: {\n      indent: 2\n    },\n    ts: {\n      types: ['literalId']\n    }\n  },\n  // Use our custom Handlebars templates\n  templates: {\n    css: './build/font/css.hbs',\n    scss: './build/font/scss.hbs'\n  },\n  pathOptions: {\n    json: './font/bootstrap-icons.json',\n    css: './font/bootstrap-icons.css',\n    scss: './font/bootstrap-icons.scss',\n    woff: './font/fonts/bootstrap-icons.woff',\n    woff2: './font/fonts/bootstrap-icons.woff2',\n    ts: './font/bootstrap-icons.ts'\n  }\n}\n"
  },
  {
    "path": ".gitattributes",
    "content": "# Enforce Unix newlines\n* text=auto eol=lf\n"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/bug_report.md",
    "content": "---\nname: Bug report\nabout: Report a problem with an icon or our documentation.\ntitle: ''\nlabels: bug\nassignees: ''\n\n---\n\nBefore opening, [search for duplicate or closed issues](https://github.com/twbs/icons/issues?utf8=%E2%9C%93&q=is%3Aissue).\n\nAs appropriate, please include:\n\n- Operating system and version (Windows, macOS, Android, iOS)\n- Browser and version (Chrome, Firefox, Safari, Microsoft Edge, Opera, Android Browser)\n- A [reduced test case](https://css-tricks.com/reduced-test-cases/) or suggested fix using [CodePen](https://codepen.io/) or [JS Bin](https://jsbin.com/)\n"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/icon-request.md",
    "content": "---\nname: Icon request\nabout: Suggest new icons to add to the project\ntitle: ''\nlabels: icon-request\nassignees: ''\n\n---\n\n\n"
  },
  {
    "path": ".github/codeql/codeql-config.yml",
    "content": "name: \"CodeQL config\"\npaths-ignore:\n  - \"**/vendor/**\"\n"
  },
  {
    "path": ".github/dependabot.yml",
    "content": "version: 2\nupdates:\n  - package-ecosystem: \"github-actions\"\n    directory: \"/\"\n    schedule:\n      interval: monthly\n    labels:\n      - dependencies\n      - github_actions\n    groups:\n      github-actions:\n        patterns:\n          - \"*\"\n  - package-ecosystem: \"npm\"\n    directory: \"/\"\n    schedule:\n      interval: monthly\n    labels:\n      - dependencies\n    versioning-strategy: increase\n    groups:\n      production-dependencies:\n        dependency-type: \"production\"\n      development-dependencies:\n        dependency-type: \"development\"\n"
  },
  {
    "path": ".github/release-drafter.yml",
    "content": "name-template: 'v$NEXT_PATCH_VERSION 🌈'\ntag-template: 'v$NEXT_PATCH_VERSION'\nprerelease: true\nexclude-labels:\n  - 'skip-changelog'\ncategories:\n  - title: '🚀 Features'\n    labels:\n      - 'new-feature'\n      - 'feature'\n      - 'enhancement'\n  - title: '🐛 Bug fixes'\n    labels:\n      - 'fix'\n      - 'bugfix'\n      - 'bug'\n  - title: '📖 Docs'\n    labels:\n      - 'docs'\n  - title: '🧰 Maintenance'\n    labels:\n      - 'build'\n      - 'meta'\n      - 'chore'\n      - 'CI'\n  - title: '📦 Dependencies'\n    labels:\n      - 'dependencies'\nchange-template: '- #$NUMBER: $TITLE'\ntemplate: |\n  ## Changes\n\n  $CHANGES\n"
  },
  {
    "path": ".github/workflows/codeql.yml",
    "content": "name: \"CodeQL\"\n\non:\n  push:\n    branches:\n      - main\n      - \"!dependabot/**\"\n  pull_request:\n    branches:\n      - main\n      - \"!dependabot/**\"\n  schedule:\n    - cron: \"0 0 * * 0\"\n  workflow_dispatch:\n\njobs:\n  analyze:\n    name: Analyze\n    runs-on: ubuntu-latest\n    permissions:\n      actions: read\n      contents: read\n      security-events: write\n\n    steps:\n      - name: Clone repository\n        uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2\n        with:\n          persist-credentials: false\n\n      - name: Initialize CodeQL\n        uses: github/codeql-action/init@b20883b0cd1f46c72ae0ba6d1090936928f9fa30 # v4.32.0\n        with:\n          config-file: ./.github/codeql/codeql-config.yml\n          languages: \"javascript\"\n          queries: +security-and-quality\n\n      - name: Autobuild\n        uses: github/codeql-action/autobuild@b20883b0cd1f46c72ae0ba6d1090936928f9fa30 # v4.32.0\n\n      - name: Perform CodeQL Analysis\n        uses: github/codeql-action/analyze@b20883b0cd1f46c72ae0ba6d1090936928f9fa30 # v4.32.0\n        with:\n          category: \"/language:javascript\"\n"
  },
  {
    "path": ".github/workflows/deploy.yml",
    "content": "name: Deploy\n\non:\n  release:\n    types:\n      - published\n  workflow_dispatch:\n\nenv:\n  FORCE_COLOR: 2\n  NODE: 24\n\npermissions:\n  contents: read\n\njobs:\n  build:\n    runs-on: ubuntu-latest\n    if: github.repository == 'twbs/icons' && startsWith(github.ref, 'refs/tags/v')\n\n    steps:\n      - name: Clone repository\n        uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2\n        with:\n          persist-credentials: false\n\n      - name: Set up Node.js\n        uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0\n        with:\n          node-version: \"${{ env.NODE }}\"\n          cache: npm\n\n      - name: Install npm dependencies\n        run: npm ci\n\n      - name: Prepare release\n        run: npm run release\n\n      - name: Deploy docs\n        uses: peaceiris/actions-gh-pages@4f9cc6602d3f66b9c108549d475ec49e8ef4d45e # v4.0.0\n        with:\n          allow_empty_commit: false\n          personal_token: ${{ secrets.PERSONAL_TOKEN }}\n          publish_branch: gh-pages\n          publish_dir: ./_site/\n\n  publish:\n    needs: build\n    runs-on: ubuntu-latest\n    if: github.repository == 'twbs/icons' && startsWith(github.ref, 'refs/tags/v')\n\n    steps:\n      - name: Clone repository\n        uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2\n        with:\n          persist-credentials: false\n\n      - uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0\n        with:\n          node-version: \"${{ env.NODE }}\"\n          registry-url: \"https://registry.npmjs.org\"\n\n      - name: Publish on npm\n        run: npm publish\n        env:\n          NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}\n"
  },
  {
    "path": ".github/workflows/lint.yml",
    "content": "name: Lint\n\non:\n  push:\n    branches:\n      - main\n  pull_request:\n  workflow_dispatch:\n\nenv:\n  FORCE_COLOR: 2\n  NODE: 24\n\npermissions:\n  contents: read\n\njobs:\n  lint:\n    runs-on: ubuntu-latest\n\n    steps:\n      - name: Clone repository\n        uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2\n        with:\n          persist-credentials: false\n\n      - name: Set up Node.js\n        uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0\n        with:\n          node-version: \"${{ env.NODE }}\"\n          cache: npm\n\n      - name: Install npm dependencies\n        run: npm ci\n\n      - name: Lint\n        run: npm run test\n"
  },
  {
    "path": ".github/workflows/release-notes.yml",
    "content": "name: Release notes\n\non:\n  push:\n    branches:\n      - main\n  workflow_dispatch:\n\npermissions:\n  contents: read\n\njobs:\n  update_release_draft:\n    permissions:\n      # allow release-drafter/release-drafter to create GitHub releases and add labels to PRs\n      contents: write\n      pull-requests: write\n    runs-on: ubuntu-latest\n    if: github.repository == 'twbs/icons'\n    steps:\n      - uses: release-drafter/release-drafter@6db134d15f3909ccc9eefd369f02bd1e9cffdf97 # v6.2.0\n        env:\n          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}\n"
  },
  {
    "path": ".github/workflows/test.yml",
    "content": "name: Tests\n\non:\n  push:\n    branches:\n      - main\n      - \"!dependabot/**\"\n  pull_request:\n  workflow_dispatch:\n\nenv:\n  FORCE_COLOR: 2\n  NODE: 24\n\npermissions:\n  contents: read\n\njobs:\n  test:\n    runs-on: ubuntu-latest\n\n    steps:\n      - name: Clone repository\n        uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2\n        with:\n          persist-credentials: false\n\n      - name: Set up Node.js\n        uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0\n        with:\n          node-version: \"${{ env.NODE }}\"\n          cache: npm\n\n      - run: java -version\n\n      - name: Install npm dependencies\n        run: npm ci\n\n      - name: Build the icons\n        run: npm run icons\n\n      - name: Build and test docs\n        run: npm run docs-test\n\n      - name: Run linkinator\n        uses: JustinBeckwith/linkinator-action@f62ba0c110a76effb2ee6022cc6ce4ab161085e3 # v2.4\n        with:\n          paths: _site\n          recurse: true\n          verbosity: error\n          skip: \"^(?!http://localhost)\"\n"
  },
  {
    "path": ".gitignore",
    "content": ".DS_Store\n/.hugo_build.lock\n/.cache/\n/_site/\n/node_modules/\n/resources/\n\n# Editor folders\n/.vscode/\n\n# Release zip files\nbootstrap-icons-*.zip\n"
  },
  {
    "path": ".stylelintrc.json",
    "content": "{\n  \"extends\": [\n    \"stylelint-config-twbs-bootstrap\"\n  ],\n  \"reportInvalidScopeDisables\": true,\n  \"reportNeedlessDisables\": true,\n  \"overrides\": [\n    {\n      \"files\": \"**/*.scss\",\n      \"rules\": {\n        \"scss/selector-no-union-class-name\": true\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2019-2024 The Bootstrap Authors\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n"
  },
  {
    "path": "README.md",
    "content": "<p align=\"center\">\n  <a href=\"https://getbootstrap.com/\">\n    <img src=\"https://getbootstrap.com/docs/5.2/assets/brand/bootstrap-logo-shadow.png\" alt=\"Bootstrap logo\" width=\"200\" height=\"165\">\n  </a>\n</p>\n\n<h3 align=\"center\">Bootstrap Icons</h3>\n\n<p align=\"center\">\n  Official open source SVG icon library for Bootstrap with over 2,000 icons.\n  <br>\n  <a href=\"https://icons.getbootstrap.com/\"><strong>Explore Bootstrap Icons »</strong></a>\n  <br>\n  <br>\n  <a href=\"https://getbootstrap.com/\">Bootstrap</a>\n  ·\n  <a href=\"https://themes.getbootstrap.com/\">Themes</a>\n  ·\n  <a href=\"https://blog.getbootstrap.com/\">Blog</a>\n  <br>\n</p>\n\n[![Bootstrap Icons preview](https://github.com/twbs/icons/blob/main/.github/preview.png)](https://icons.getbootstrap.com/)\n\n## Install\n\nBootstrap Icons are packaged up and published to npm. We only include the processed SVGs in this package—it's up to you and your team to implement. [Read our docs](https://icons.getbootstrap.com/) for usage instructions.\n\n```shell\nnpm i bootstrap-icons\n```\n\nFor those [using Packagist](https://packagist.org/packages/twbs/bootstrap-icons), you can also install Bootstrap Icons via Composer:\n\n```shell\ncomposer require twbs/bootstrap-icons\n```\n\n[Also available in Figma](https://www.figma.com/community/file/1042482994486402696/Bootstrap-Icons).\n\n## Usage\n\nDepending on your setup, you can include Bootstrap Icons in a handful of ways.\n\n- Copy-paste SVGs as embedded HTML\n- Reference via `<img>` element\n- Use the SVG sprite\n- Include via CSS\n\n[See the docs for more information](https://icons.getbootstrap.com/#usage).\n\n## Development\n\n[![Build Status](https://img.shields.io/github/actions/workflow/status/twbs/icons/test.yml?branch=main&label=Tests&logo=github)](https://github.com/twbs/icons/actions/workflows/test.yml?query=workflow%3ATests+branch%3Amain)\n[![npm version](https://img.shields.io/npm/v/bootstrap-icons?logo=npm&logoColor=fff)](https://www.npmjs.com/package/bootstrap-icons)\n\nClone the repo, install dependencies, and start the Hugo server locally.\n\n```shell\ngit clone https://github.com/twbs/icons/\ncd icons\nnpm i\nnpm start\n```\n\nThen open `http://localhost:4000` in your browser.\n\n### npm scripts\n\nHere are some key scripts you'll use during development. Be sure to look to our `package.json` or `npm run` output for a complete list of scripts.\n\n| Script       | Description                                                                   |\n|--------------|-------------------------------------------------------------------------------|\n| `start`      | Alias for running `docs-serve`                                                |\n| `docs-serve` | Starts a local Hugo server                                                    |\n| `pages`      | Generates permalink pages for each icon with template Markdown                |\n| `icons`      | Processes and optimizes SVGs in `icons` directory, generates fonts and sprite |\n\n## Adding SVGs\n\nIcons are typically only added by @mdo, but exceptions can be made. New glyphs are designed in Figma first on a 16x16px grid, then exported as flattened SVGs with `fill` (no stroke). Once a new SVG icon has been added to the `icons` directory, we use an npm script to:\n\n1. Optimize our SVGs with SVGO.\n2. Modify the SVGs source code, removing all attributes before setting new attributes and values in our preferred order.\n\nUse `npm run icons` to run the script, run `npm run pages` to build permalink pages, complete those pages, and, finally, commit the results in a new branch for updating.\n\n**Warning**: Please exclude any auto-generated files, like `font/**` and `bootstrap-icons.svg` from your branch because they cause conflicts, and we generally update the dist files before a release.\n\n## Publishing\n\nDocumentation is published automatically when a new Git tag is published. See our [GitHub Actions](https://github.com/twbs/icons/tree/main/.github/workflows) and [`package.json`](https://github.com/twbs/icons/blob/main/package.json) for more information.\n\n## License\n\n[MIT](LICENSE)\n\n## Author\n\n[@mdo](https://github.com/mdo)\n"
  },
  {
    "path": "build/build-pages.mjs",
    "content": "#!/usr/bin/env node\n\nimport fs from 'node:fs/promises'\nimport path from 'node:path'\nimport { fileURLToPath } from 'node:url'\nimport picocolors from 'picocolors'\n\nconst __filename = fileURLToPath(import.meta.url)\nconst __dirname = path.dirname(fileURLToPath(import.meta.url))\n\nconst iconsDir = path.join(__dirname, '../icons/')\nconst pagesDir = path.join(__dirname, '../docs/content/icons/')\n\nconst VERBOSE = process.argv.includes('--verbose')\n\nfunction capitalizeFirstLetter(string) {\n  return (string.charAt(0).toUpperCase() + string.slice(1)).split('-').join(' ')\n}\n\nasync function main(file) {\n  const iconBasename = path.basename(file, path.extname(file))\n  const iconTitle = capitalizeFirstLetter(iconBasename)\n  const pageName = path.join(pagesDir, `${iconBasename}.md`)\n\n  const pageTemplate = `---\ntitle: ${iconTitle}\ncategories:\ntags:\n---\n`\n\n  try {\n    await fs.access(pageName, fs.F_OK)\n\n    if (VERBOSE) {\n      console.log(`${picocolors.cyan(iconBasename)}: Page already exists; skipping`)\n    }\n  } catch {\n    await fs.writeFile(pageName, pageTemplate)\n    console.log(picocolors.green(`${iconBasename}: Page created`))\n  }\n}\n\n(async () => {\n  try {\n    const basename = path.basename(__filename)\n    const timeLabel = picocolors.cyan(`[${basename}] finished`)\n\n    console.log(picocolors.cyan(`[${basename}] started`))\n    console.time(timeLabel)\n\n    const files = await fs.readdir(iconsDir)\n\n    await Promise.all(files.map(file => main(file)))\n\n    const filesLength = files.length\n\n    console.log(picocolors.green('\\nSuccess, %s page%s prepared!'), filesLength, filesLength === 1 ? '' : 's')\n    console.timeEnd(timeLabel)\n  } catch (error) {\n    console.error(error)\n    process.exit(1)\n  }\n})()\n"
  },
  {
    "path": "build/build-svgs.mjs",
    "content": "#!/usr/bin/env node\n\nimport fs from 'node:fs/promises'\nimport path from 'node:path'\nimport process from 'node:process'\nimport { fileURLToPath } from 'node:url'\nimport picocolors from 'picocolors'\nimport { loadConfig, optimize } from 'svgo'\n\nconst __filename = fileURLToPath(import.meta.url)\nconst __dirname = path.dirname(fileURLToPath(import.meta.url))\n\nconst iconsDir = path.join(__dirname, '../icons/')\n\nconst VERBOSE = process.argv.includes('--verbose')\n\nasync function processFile(file, config) {\n  const filepath = path.join(iconsDir, file)\n  const basename = path.basename(file, '.svg')\n\n  const originalSvg = await fs.readFile(filepath, 'utf8')\n  const { data: optimizedSvg } = await optimize(originalSvg, { path: filepath, ...config })\n\n  // svgo will always add a final newline when in pretty mode\n  const resultSvg = optimizedSvg.trim()\n\n  if (resultSvg !== originalSvg) {\n    await fs.writeFile(filepath, resultSvg, 'utf8')\n  }\n\n  if (VERBOSE) {\n    console.log(`- ${basename}`)\n  }\n}\n\n(async () => {\n  try {\n    const basename = path.basename(__filename)\n    const timeLabel = picocolors.cyan(`[${basename}] finished`)\n\n    console.log(picocolors.cyan(`[${basename}] started`))\n    console.time(timeLabel)\n\n    const files = await fs.readdir(iconsDir)\n    const config = await loadConfig(path.join(__dirname, '../svgo.config.mjs'))\n\n    await Promise.all(files.map(file => processFile(file, config)))\n\n    const filesLength = files.length\n\n    console.log(picocolors.green('\\nSuccess, prepared %s icon%s!'), filesLength, filesLength === 1 ? '' : 's')\n    console.timeEnd(timeLabel)\n  } catch (error) {\n    console.error(error)\n    process.exit(1)\n  }\n})()\n"
  },
  {
    "path": "build/bump-version.mjs",
    "content": "#!/usr/bin/env node\n\n/*!\n * Script to update version number references in the project.\n * Copyright 2024 The Bootstrap Authors\n * Licensed under MIT (https://github.com/twbs/icons/blob/main/LICENSE)\n */\n\nimport { execFile } from 'node:child_process'\nimport fs from 'node:fs/promises'\n\nconst VERBOSE = process.argv.includes('--verbose')\nconst DRY_RUN = process.argv.includes('--dry') || process.argv.includes('--dry-run')\n\n// These are the files we only care about replacing the version\nconst FILES = [\n  'build/font/css.hbs',\n  'build/font/scss.hbs',\n  'hugo.yml'\n]\n\n// Blame TC39... https://github.com/benjamingr/RegExp.escape/issues/37\nfunction regExpQuote(string) {\n  return string.replace(/[$()*+-.?[\\\\\\]^{|}]/g, '\\\\$&')\n}\n\nfunction regExpQuoteReplacement(string) {\n  return string.replace(/\\$/g, '$$')\n}\n\nasync function replaceRecursively(file, oldVersion, newVersion) {\n  const originalString = await fs.readFile(file, 'utf8')\n  const newString = originalString.replace(\n    new RegExp(regExpQuote(oldVersion), 'g'),\n    regExpQuoteReplacement(newVersion)\n  )\n\n  // No need to move any further if the strings are identical\n  if (originalString === newString) {\n    return\n  }\n\n  if (VERBOSE) {\n    console.log(`Found ${oldVersion} in ${file}`)\n  }\n\n  if (DRY_RUN) {\n    return\n  }\n\n  await fs.writeFile(file, newString, 'utf8')\n}\n\nfunction bumpNpmVersion(newVersion) {\n  if (DRY_RUN) {\n    return\n  }\n\n  execFile('npm', ['version', newVersion, '--no-git-tag'], { shell: true }, (error) => {\n    if (error) {\n      console.error(error)\n      process.exit(1)\n    }\n  })\n}\n\nfunction showUsage(args) {\n  console.error('USAGE: change-version old_version new_version [--verbose] [--dry[-run]]')\n  console.error('Got arguments:', args)\n  process.exit(1)\n}\n\nasync function main(args) {\n  let [oldVersion, newVersion] = args\n\n  if (!oldVersion || !newVersion) {\n    showUsage(args)\n  }\n\n  // Strip any leading `v` from arguments because\n  // otherwise we will end up with duplicate `v`s\n  [oldVersion, newVersion] = [oldVersion, newVersion].map(arg => {\n    return arg.startsWith('v') ? arg.slice(1) : arg\n  })\n\n  if (oldVersion === newVersion) {\n    showUsage(args)\n  }\n\n  bumpNpmVersion(newVersion)\n\n  try {\n    await Promise.all(FILES.map(file => replaceRecursively(file, oldVersion, newVersion)))\n  } catch (error) {\n    console.error(error)\n    process.exit(1)\n  }\n}\n\nmain(process.argv.slice(2))\n"
  },
  {
    "path": "build/check-icons.mjs",
    "content": "#!/usr/bin/env node\n\nimport fs from 'node:fs/promises'\nimport path from 'node:path'\nimport process from 'node:process'\nimport { fileURLToPath } from 'node:url'\nimport picocolors from 'picocolors'\n\nconst __filename = fileURLToPath(import.meta.url)\nconst __dirname = path.dirname(fileURLToPath(import.meta.url))\n\nconst fontJsonPath = path.join(__dirname, '../font/bootstrap-icons.json')\nconst iconsDir = path.join(__dirname, '../icons/')\n\n;(async () => {\n  try {\n    const basename = path.basename(__filename)\n    const timeLabel = picocolors.cyan(`[${basename}] finished`)\n\n    console.log(picocolors.cyan(`[${basename}] started`))\n    console.time(timeLabel)\n\n    const fontJsonString = await fs.readFile(fontJsonPath, 'utf8')\n    const fontJson = JSON.parse(fontJsonString)\n    const svgFiles = await fs.readdir(iconsDir)\n\n    const jsonIconList = Object.keys(fontJson)\n    const svgIconList = svgFiles.map(svg => path.basename(svg, '.svg'))\n\n    const onlyInJson = jsonIconList.filter(icon => !svgIconList.includes(icon))\n    const onlyInSvg = svgIconList.filter(icon => !jsonIconList.includes(icon))\n\n    if (onlyInJson.length === 0 || onlyInSvg === 0) {\n      console.log(picocolors.green('Success, found no differences!'))\n      console.timeEnd(timeLabel)\n\n      return\n    }\n\n    if (onlyInJson.length > 0) {\n      console.error(picocolors.red(`Found additional icons in ${fontJsonPath}:`))\n\n      for (const icon of onlyInJson) {\n        console.log(`  - ${picocolors.red(icon)}`)\n      }\n    }\n\n    if (onlyInSvg.length > 0) {\n      console.error(picocolors.red('Found additional icons in SVG files:'))\n\n      for (const icon of onlyInSvg) {\n        console.log(`  - ${picocolors.red(icon)}`)\n      }\n    }\n\n    process.exit(1)\n  } catch (error) {\n    console.error(error)\n    process.exit(1)\n  }\n})()\n"
  },
  {
    "path": "build/font/css.hbs",
    "content": "/*!\n * Bootstrap Icons v1.13.1 (https://icons.getbootstrap.com/)\n * Copyright 2019-2024 The Bootstrap Authors\n * Licensed under MIT (https://github.com/twbs/icons/blob/main/LICENSE)\n */\n\n@font-face {\n  font-display: block;\n  font-family: \"{{ name }}\";\n  src: {{{ fontSrc }}};\n}\n\n.{{ prefix }}::before,\n[class^=\"{{ prefix }}-\"]::before,\n[class*=\" {{ prefix }}-\"]::before {\n  display: inline-block;\n  font-family: {{ name }} !important;\n  font-style: normal;\n  font-weight: normal !important;\n  font-variant: normal;\n  text-transform: none;\n  line-height: 1;\n  vertical-align: -.125em;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n{{# each codepoints }}\n.{{ ../prefix }}-{{ @key }}::before { content: \"\\\\{{ codepoint this }}\"; }\n{{/ each }}\n"
  },
  {
    "path": "build/font/scss.hbs",
    "content": "/*!\n * Bootstrap Icons v1.13.1 (https://icons.getbootstrap.com/)\n * Copyright 2019-2024 The Bootstrap Authors\n * Licensed under MIT (https://github.com/twbs/icons/blob/main/LICENSE)\n */\n\n${{ name }}-font: \"{{ name }}\" !default;\n${{ name }}-font-dir: \"{{ fontsUrl }}\" !default;\n${{ name }}-font-file: \"#{${{ name }}-font-dir}/#{${{ name }}-font}\" !default;\n${{ name }}-font-hash: \"24e3eb84d0bcaf83d77f904c78ac1f47\" !default;\n${{ name }}-font-src: url(\"#{${{ name }}-font-file}.woff2?#{${{ name }}-font-hash}\") format(\"woff2\"),\n                           url(\"#{${{ name }}-font-file}.woff?#{${{ name }}-font-hash}\") format(\"woff\") !default;\n\n@font-face {\n  font-display: block;\n  font-family: ${{ name }}-font;\n  src: ${{ name }}-font-src;\n}\n\n.{{ prefix }}::before,\n[class^=\"{{ prefix }}-\"]::before,\n[class*=\" {{ prefix }}-\"]::before {\n  display: inline-block;\n  font-family: ${{ name }}-font !important;\n  font-style: normal;\n  font-weight: normal !important;\n  font-variant: normal;\n  text-transform: none;\n  line-height: 1;\n  vertical-align: -.125em;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n${{ name }}-map: (\n{{# each codepoints }}\n  \"{{ @key }}\": \"\\\\{{ codepoint this }}\",\n{{/ each }}\n);\n\n@each $icon, $codepoint in ${{ name }}-map {\n  .{{ prefix }}-#{$icon}::before { content: $codepoint; }\n}\n"
  },
  {
    "path": "build/vnu-jar.mjs",
    "content": "#!/usr/bin/env node\n\n/*!\n * Script to run vnu-jar if Java is available.\n * Copyright 2017-2026 The Bootstrap Authors\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n */\n\nimport { execFile, spawn } from 'node:child_process'\nimport vnu from 'vnu-jar'\n\nexecFile('java', ['-version'], (error, _stdout, stderr) => {\n  if (error) {\n    console.error('Skipping vnu-jar test; Java is probably missing.')\n    console.error(error)\n    return\n  }\n\n  console.log('Running vnu-jar validation...')\n\n  const is32bitJava = !stderr.includes('64-Bit')\n\n  // vnu-jar accepts multiple ignores joined with a `|`.\n  // Also note that the ignores are string regular expressions.\n  const ignores = [\n  ].join('|')\n\n  const args = [\n    '-jar',\n    String(vnu),\n    '--asciiquotes',\n    '--skip-non-html',\n    '--Werror',\n    '--filterpattern',\n    ignores,\n    '_site/'\n  ]\n\n  // For the 32-bit Java we need to pass `-Xss512k`\n  if (is32bitJava) {\n    args.splice(0, 0, '-Xss512k')\n  }\n\n  console.log(`command used: java ${args.join(' ')}`)\n\n  return spawn('java', args, {\n    stdio: 'inherit'\n  })\n    .on('exit', process.exit)\n})\n"
  },
  {
    "path": "composer.json",
    "content": "{\n  \"name\": \"twbs/bootstrap-icons\",\n  \"description\": \"Official open source SVG icon library for Bootstrap\",\n  \"keywords\": [\n    \"bootstrap\",\n    \"icons\",\n    \"svg\",\n    \"icon font\"\n  ],\n  \"homepage\": \"https://icons.getbootstrap.com/\",\n  \"authors\": [\n    {\n      \"name\": \"Mark Otto\",\n      \"email\": \"markdotto@gmail.com\"\n    }\n  ],\n  \"support\": {\n    \"issues\": \"https://github.com/twbs/icons/issues\"\n  },\n  \"license\": \"MIT\"\n}\n"
  },
  {
    "path": "docs/assets/js/application.js",
    "content": "import ClipboardJS from 'clipboard'\n\n(function () {\n  const btnHtml = [\n  '<div class=\"bd-clipboard\">',\n    '<button type=\"button\" class=\"btn-clipboard\" title=\"Copy to clipboard\">',\n      '<i class=\"bi bi-clipboard\" aria-hidden=\"true\"></i>',\n    '</button>',\n  '</div>'].join('')\n\n  document.querySelectorAll('div.highlight')\n    .forEach(element => {\n      element.insertAdjacentHTML('beforebegin', btnHtml)\n    })\n\n  const clipboard = new ClipboardJS('.btn-clipboard', {\n    target(trigger) {\n      return trigger.parentNode.nextElementSibling\n    }\n  })\n\n  clipboard.on('success', event => {\n    const icon = event.trigger.querySelector('.bi')\n    const originalTitle = event.trigger.title\n\n    event.clearSelection()\n    icon.classList.replace('bi-clipboard', 'bi-check2')\n    event.trigger.title = 'Copied!'\n\n    setTimeout(() => {\n      icon.classList.replace('bi-check2', 'bi-clipboard')\n      event.trigger.title = originalTitle\n    }, 2000)\n  })\n\n  clipboard.on('error', () => {\n    const modifierKey = /mac/i.test(navigator.userAgent) ? '\\u2318' : 'Ctrl-'\n    const fallbackMsg = `Press ${modifierKey}C to copy`\n    const errorElement = document.getElementById('copy-error-callout')\n\n    if (!errorElement) {\n      return\n    }\n\n    errorElement.classList.remove('d-none')\n    errorElement.insertAdjacentHTML('afterbegin', fallbackMsg)\n  })\n\n  const searchInput = document.getElementById('search')\n  if (searchInput) {\n    searchInput.addEventListener('keydown', event => {\n      if (event.key === 'Enter') {\n        event.preventDefault()\n      }\n    })\n  }\n\n  // Disable empty links in docs\n  document.querySelectorAll('[href=\"#\"]')\n    .forEach(link => {\n      link.addEventListener('click', event => {\n        event.preventDefault()\n      })\n    })\n})()\n"
  },
  {
    "path": "docs/assets/js/color-modes.js",
    "content": "/*!\n * Color mode toggler for Bootstrap's docs (https://getbootstrap.com/)\n * Copyright 2011-2023 The Bootstrap Authors\n * Licensed under the Creative Commons Attribution 3.0 Unported License.\n */\n\n(() => {\n  const getStoredTheme = () => localStorage.getItem('theme')\n  const setStoredTheme = theme => localStorage.setItem('theme', theme)\n\n  const getPreferredTheme = () => {\n    const storedTheme = getStoredTheme()\n    if (storedTheme) {\n      return storedTheme\n    }\n\n    return window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light'\n  }\n\n  const setTheme = theme => {\n    if (theme === 'auto') {\n      document.documentElement.setAttribute('data-bs-theme', (window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light'))\n    } else {\n      document.documentElement.setAttribute('data-bs-theme', theme)\n    }\n  }\n\n  setTheme(getPreferredTheme())\n\n  const showActiveTheme = (theme, focus = false) => {\n    const themeSwitcher = document.querySelector('#bd-theme')\n\n    if (!themeSwitcher) {\n      return\n    }\n\n    const themeSwitcherText = document.querySelector('#bd-theme-text')\n    const activeThemeIcon = document.querySelector('.theme-icon-active use')\n    const btnToActive = document.querySelector(`[data-bs-theme-value=\"${theme}\"]`)\n    const svgOfActiveBtn = btnToActive.querySelector('svg use').getAttribute('href')\n\n    document.querySelectorAll('[data-bs-theme-value]').forEach(element => {\n      element.classList.remove('active')\n      element.setAttribute('aria-pressed', 'false')\n    })\n\n    btnToActive.classList.add('active')\n    btnToActive.setAttribute('aria-pressed', 'true')\n    activeThemeIcon.setAttribute('href', svgOfActiveBtn)\n    const themeSwitcherLabel = `${themeSwitcherText.textContent} (${btnToActive.dataset.bsThemeValue})`\n    themeSwitcher.setAttribute('aria-label', themeSwitcherLabel)\n\n    if (focus) {\n      themeSwitcher.focus()\n    }\n  }\n\n  window.matchMedia('(prefers-color-scheme: dark)').addEventListener('change', () => {\n    const storedTheme = getStoredTheme()\n    if (storedTheme !== 'light' && storedTheme !== 'dark') {\n      setTheme(getPreferredTheme())\n    }\n  })\n\n  window.addEventListener('DOMContentLoaded', () => {\n    showActiveTheme(getPreferredTheme())\n\n    document.querySelectorAll('[data-bs-theme-value]')\n      .forEach(toggle => {\n        toggle.addEventListener('click', () => {\n          const theme = toggle.getAttribute('data-bs-theme-value')\n          localStorage.setItem('theme', theme)\n          setStoredTheme(theme)\n          setTheme(theme)\n          showActiveTheme(theme, true)\n        })\n      })\n  })\n})()\n"
  },
  {
    "path": "docs/assets/js/search.js",
    "content": "import Fuse from 'fuse.js'\n\n(function () {\n  const iconsBody = document.querySelector('#icons-body')\n\n  if (!iconsBody) return\n\n  const searchInput = iconsBody.querySelector('#search')\n  const iconListContainer = iconsBody.querySelector('#icons-list')\n  const iconElementList = Array.from(iconListContainer.children)\n\n  const iconDataList = iconElementList.map(element => ({\n    name: element.dataset.name || '',\n    categories: element.dataset.categories ? element.dataset.categories.split(' ') : [],\n    tags: element.dataset.tags ? element.dataset.tags.split(' ') : []\n  }))\n\n  const fuse = new Fuse(iconDataList, {\n    ignoreLocation: true,\n    useExtendedSearch: true,\n    shouldSort: false,\n    keys: ['name', 'categories', 'tags'],\n    threshold: 0\n  })\n\n  function search(searchTerm) {\n    const trimmedSearchTerm = searchTerm ? searchTerm.trim() : ''\n\n    iconListContainer.innerHTML = ''\n    if (trimmedSearchTerm.length > 0) {\n      const searchResult = fuse.search(trimmedSearchTerm)\n      const resultElements = searchResult.map(result => iconElementList[result.refIndex])\n      iconListContainer.append(...resultElements)\n    } else {\n      iconListContainer.append(...iconElementList)\n    }\n\n    const newUrl = new URL(window.location)\n    if (trimmedSearchTerm.length > 0) {\n      newUrl.searchParams.set('q', trimmedSearchTerm)\n    } else {\n      newUrl.searchParams.delete('q')\n    }\n\n    window.history.replaceState(null, null, newUrl)\n  }\n\n  let timeout\n  searchInput.addEventListener('input', () => {\n    clearTimeout(timeout)\n    timeout = setTimeout(() => {\n      search(searchInput.value)\n    }, 250)\n  })\n\n  const query = new URLSearchParams(window.location.search).get('q')\n  if (!query || query.length === 0) return\n\n  const trimmedQuery = query.trim()\n  search(trimmedQuery)\n  searchInput.value = trimmedQuery\n  document.querySelector('#content').scrollIntoView()\n})()\n"
  },
  {
    "path": "docs/assets/scss/_ads.scss",
    "content": "// stylelint-disable-next-line selector-max-id\n#carbonads {\n  max-width: 28rem;\n  padding: .75rem;\n  margin-right: auto;\n  margin-left: auto;\n  overflow: auto;\n  background-color: var(--bs-tertiary-bg);\n  border-radius: .25rem;\n\n  @media (min-width: 992px) {\n    margin-right: 0;\n    margin-left: 0;\n  }\n}\n\n.carbon-img {\n  float: left;\n  margin-right: .75rem;\n\n  @media (min-width: 768px) {\n    margin-bottom: .5rem;\n  }\n\n  @media (min-width: 992px) {\n    margin-bottom: 0;\n  }\n}\n\n.carbon-text,\n.carbon-poweredby {\n  display: block;\n  color: var(--bs-body-color);\n\n  &:hover,\n  &:focus {\n    color: var(--bs-body-color);\n    text-decoration: none;\n  }\n}\n\n.carbon-text {\n  margin-bottom: .5rem;\n  text-decoration: none;\n\n  @media (min-width: 768px) {\n    font-size: .875rem;\n  }\n}\n\n.carbon-poweredby {\n  margin-top: .75rem;\n  font-size: .875rem;\n}\n"
  },
  {
    "path": "docs/assets/scss/_buttons.scss",
    "content": "// Buttons\n//\n// Custom buttons for the docs.\n\n// scss-docs-start btn-css-vars-example\n.btn-bd-primary {\n  --bs-btn-font-weight: 600;\n  --bs-btn-color: var(--bs-white);\n  --bs-btn-bg: var(--bd-violet);\n  --bs-btn-border-color: var(--bd-violet);\n  --bs-btn-border-radius: .5rem;\n  --bs-btn-hover-color: var(--bs-white);\n  --bs-btn-hover-bg: #{shade-color($bd-violet, 10%)};\n  --bs-btn-hover-border-color: #{shade-color($bd-violet, 10%)};\n  --bs-btn-focus-shadow-rgb: var(--bd-violet-rgb);\n  --bs-btn-active-color: var(--bs-btn-hover-color);\n  --bs-btn-active-bg: #{shade-color($bd-violet, 20%)};\n  --bs-btn-active-border-color: #{shade-color($bd-violet, 20%)};\n}\n// scss-docs-end btn-css-vars-example\n\n.btn-bd-accent {\n  --bs-btn-font-weight: 600;\n  --bs-btn-color: var(--bd-accent);\n  --bs-btn-border-color: var(--bd-accent);\n  --bs-btn-hover-color: var(--bd-dark);\n  --bs-btn-hover-bg: var(--bd-accent);\n  --bs-btn-hover-border-color: var(--bd-accent);\n  --bs-btn-focus-shadow-rgb: var(--bd-accent-rgb);\n  --bs-btn-active-color: var(--bs-btn-hover-color);\n  --bs-btn-active-bg: var(--bs-btn-hover-bg);\n  --bs-btn-active-border-color: var(--bs-btn-hover-border-color);\n}\n\n.btn-bd-light {\n  --bs-btn-color: var(--bs-gray-600);\n  --bs-btn-border-color: var(--bs-gray-400);\n  --bs-btn-hover-color: var(--bd-violet);\n  --bs-btn-hover-border-color: var(--bd-violet);\n  --bs-btn-active-color: var(--bd-violet);\n  --bs-btn-active-bg: var(--bs-white);\n  --bs-btn-active-border-color: var(--bd-violet);\n  --bs-btn-focus-border-color: var(--bd-violet);\n  --bs-btn-focus-shadow-rgb: var(--bd-violet-rgb);\n}\n"
  },
  {
    "path": "docs/assets/scss/_clipboard-js.scss",
    "content": "// clipboard.js\n//\n// JS-based `Copy` buttons for code snippets.\n\n.bd-clipboard {\n  position: relative;\n  display: none;\n  float: right;\n\n  + .highlight {\n    margin-top: 0;\n  }\n\n  @media (min-width: 768px) {\n    display: block;\n  }\n}\n\n.btn-clipboard {\n  position: absolute;\n  top: .75em;\n  right: .5em;\n  z-index: 10;\n  display: block;\n  padding: .5em .75em .625em;\n  line-height: 1;\n  color: var(--bs-body-color);\n  background-color: var(--bs-tertiary-bg);\n  border: 0;\n  border-radius: .25rem;\n\n  &:hover {\n    color: var(--bs-link-hover-color);\n  }\n}\n"
  },
  {
    "path": "docs/assets/scss/_footer.scss",
    "content": "//\n// Footer\n//\n\n.bd-footer {\n  a {\n    color: var(--bs-body-color);\n    text-decoration: none;\n\n    &:hover,\n    &:focus {\n      color: var(--bs-link-hover-color);\n      text-decoration: underline;\n    }\n  }\n}\n"
  },
  {
    "path": "docs/assets/scss/_navbar.scss",
    "content": ".bd-navbar {\n  padding: .75rem 0;\n  background-color: transparent;\n  background-image: linear-gradient(to bottom, rgba(var(--bd-violet-rgb), 1), rgba(var(--bd-violet-rgb), .95));\n  box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15), inset 0 -1px 0 rgba(0, 0, 0, .15);\n\n  .bi {\n    width: 1em;\n    height: 1em;\n  }\n\n  .navbar-toggler {\n    padding: 0;\n    margin-right: -.5rem;\n    border: 0;\n\n    &:first-child {\n      margin-left: -.5rem;\n    }\n\n    .bi {\n      width: 1.5rem;\n      height: 1.5rem;\n    }\n\n    &:focus {\n      box-shadow: none;\n    }\n  }\n\n  .navbar-brand {\n    transition: .2s ease-in-out transform;\n\n    &:hover {\n      transform: rotate(-5deg) scale(1.1);\n    }\n  }\n\n  .navbar-toggler,\n  .nav-link {\n    padding-right: $spacer * .25;\n    padding-left: $spacer * .25;\n    color: rgba($white, .85);\n\n    &:hover,\n    &:focus {\n      color: $white;\n    }\n\n    &.active {\n      font-weight: 600;\n      color: $white;\n    }\n  }\n\n  .navbar-nav-svg {\n    display: inline-block;\n    vertical-align: -.125rem;\n  }\n\n  .offcanvas-lg {\n    background-color: var(--bd-violet);\n    border-left: 0;\n\n    @media (max-width: 992px) {\n      box-shadow: $box-shadow-lg;\n    }\n  }\n\n  .dropdown-menu {\n    --bs-dropdown-min-width: 12rem;\n    --bs-dropdown-padding-x: .25rem;\n    --bs-dropdown-padding-y: .25rem;\n    --bs-dropdown-link-hover-bg: rgba(var(--bd-violet-rgb), .1);\n    --bs-dropdown-link-active-bg: rgba(var(--bd-violet-rgb), 1);\n    @include rfs(.875rem, --bs-dropdown-font-size);\n    @include font-size(.875rem);\n    @include border-radius(.5rem);\n    box-shadow: $dropdown-box-shadow;\n\n    li + li {\n      margin-top: .125rem;\n    }\n\n    .dropdown-item {\n      @include border-radius(.25rem);\n\n      &:active {\n        .bi {\n          color: inherit !important; // stylelint-disable-line declaration-no-important\n        }\n      }\n    }\n\n    .active {\n      font-weight: 600;\n\n      .bi {\n        display: block !important; // stylelint-disable-line declaration-no-important\n      }\n    }\n  }\n\n  .dropdown-menu-end {\n    --bs-dropdown-min-width: 8rem;\n  }\n}\n\n@include color-mode(dark) {\n  .bd-navbar {\n    box-shadow: 0 .5rem 1rem rgba($black, .15), inset 0 -1px 0 rgba($white, .15);\n  }\n}\n"
  },
  {
    "path": "docs/assets/scss/_skippy.scss",
    "content": ".skippy {\n  display: block;\n  padding: 1em;\n  color: #fff;\n  text-align: center;\n  background-color: $bd-purple;\n  outline: 0;\n\n  &:hover {\n    color: #fff;\n  }\n}\n\n.skippy-text {\n  padding: .5em;\n  outline: 1px dotted;\n}\n"
  },
  {
    "path": "docs/assets/scss/_syntax.scss",
    "content": ":root,\n[data-bs-theme=\"light\"] {\n  --base00: #fff;\n  --base01: #f5f5f5;\n  --base02: #c8c8fa;\n  --base03: #565c64;\n  --base04: #030303;\n  --base05: #333;\n  --base06: #fff;\n  --base07: #9a6700;\n  --base08: #bc4c00;\n  --base09: #087990;\n  --base0A: #795da3;\n  --base0B: #183691;\n  --base0C: #183691;\n  --base0D: #795da3;\n  --base0E: #a71d5d;\n  --base0F: #333;\n}\n\n@include color-mode(dark, true) {\n  --base00: #282c34;\n  --base01: #353b45;\n  --base02: #3e4451;\n  --base03: #868e96;\n  --base04: #565c64;\n  --base05: #abb2bf;\n  --base06: #b6bdca;\n  --base07: #d19a66;\n  --base08: #e06c75;\n  --base09: #d19a66;\n  --base0A: #e5c07b;\n  --base0B: #98c379;\n  --base0C: #56b6c2;\n  --base0D: #61afef;\n  --base0E: #c678dd;\n  --base0F: #be5046;\n}\n\n.hl { background-color: var(--base02); }\n.c { color: var(--base03); }\n.err { color: var(--base08); }\n.k { color: var(--base0E); }\n.l { color: var(----base09); }\n.n { color: var(--base08); }\n.o { color: var(--base05); }\n.p { color: var(--base05); }\n.cm { color: var(--base04); }\n.cp { color: var(--base08); }\n.c1 { color: var(--base03); }\n.cs { color: var(--base04); }\n.gd { color: var(--base08); }\n.ge { font-style: italic; }\n.gh {\n  font-weight: 600;\n  color: #fff;\n}\n.gi { color: var(--bs-success); }\n.gp {\n  font-weight: 600;\n  color: var(--base04);\n}\n.gs { font-weight: 600; }\n.gu {\n  font-weight: 600;\n  color: var(--base0C);\n}\n.kc { color: var(--base0E); }\n.kd { color: var(--base0E); }\n.kn { color: var(--base0C); }\n.kp { color: var(--base0E); }\n.kr { color: var(--base0E); }\n.kt { color: var(--base0A); }\n.ld { color: var(--base0C); }\n.m { color: var(--base09); }\n.s { color: var(--base0C); }\n.na { color: var(--base0A); }\n.nb { color: var(--base05); }\n.nc { color: var(--base07); }\n.no { color: var(--base08); }\n.nd { color: var(--base07); }\n.ni { color: var(--base08); }\n.ne { color: var(--base08); }\n.nf { color: var(--base0B); }\n.nl { color: var(--base05); }\n.nn { color: var(--base0A); }\n.nx { color: var(--base0A); }\n.py { color: var(--base08); }\n.nt { color: var(--base08); }\n.nv { color: var(--base08); }\n.ow { color: var(--base0C); }\n.w { color: #fff; }\n.mf { color: var(--base09); }\n.mh { color: var(--base09); }\n.mi { color: var(--base09); }\n.mo { color: var(--base09); }\n.sb { color: var(--base0C); }\n.sc { color: #fff; }\n.sd { color: var(--base04); }\n.s2 { color: var(--base0C); }\n.se { color: var(--base09); }\n.sh { color: var(--base0C); }\n.si { color: var(--base09); }\n.sx { color: var(--base0C); }\n.sr { color: var(--base0C); }\n.s1 { color: var(--base0C); }\n.ss { color: var(--base0C); }\n.bp { color: var(--base05); }\n.vc { color: var(--base08); }\n.vg { color: var(--base08); }\n.vi { color: var(--base08); }\n.il { color: var(--base09); }\n\n// Color commas in rgba() values\n.m + .o { color: var(--base03); }\n\n// Fix bash\n.language-sh .c { color: var(--base03); }\n\n.chroma {\n  .language-bash,\n  .language-sh {\n    .line::before {\n      color: var(--base03);\n      content: \"$ \";\n      user-select: none;\n    }\n  }\n\n  .language-powershell::before {\n    color: var(--base0C);\n    content: \"PM> \";\n    user-select: none;\n  }\n}\n"
  },
  {
    "path": "docs/assets/scss/_variables.scss",
    "content": "// Local docs variables\n$bd-purple: #4c0bce;\n$bd-violet: lighten(saturate($bd-purple, 5%), 15%);\n$bd-accent: #ffe484;\n$bd-gutter-x: 3rem;\n\n:root {\n  --bd-purple: #{$bd-purple};\n  --bd-violet: #{$bd-violet};\n  --bd-accent: #{$bd-accent};\n  --bd-violet-rgb: #{to-rgb($bd-violet)};\n  --bd-accent-rgb: #{to-rgb($bd-accent)};\n  --bd-pink-rgb: #{to-rgb($pink-500)};\n  --bd-teal-rgb: #{to-rgb($teal-500)};\n}\n"
  },
  {
    "path": "docs/assets/scss/docs.scss",
    "content": "@import \"bootstrap/functions\";\n@import \"bootstrap/variables\";\n@import \"bootstrap/variables-dark\";\n@import \"bootstrap/maps\";\n@import \"bootstrap/mixins\";\n@import \"bootstrap/utilities\";\n@import \"bootstrap/root\";\n@import \"bootstrap/reboot\";\n@import \"bootstrap/type\";\n@import \"bootstrap/images\";\n@import \"bootstrap/containers\";\n@import \"bootstrap/grid\";\n@import \"bootstrap/tables\";\n@import \"bootstrap/forms\";\n@import \"bootstrap/buttons\";\n@import \"bootstrap/transitions\";\n@import \"bootstrap/dropdown\";\n@import \"bootstrap/button-group\";\n@import \"bootstrap/nav\";\n@import \"bootstrap/navbar\";\n// @import \"bootstrap/card\";\n// @import \"bootstrap/accordion\";\n@import \"bootstrap/breadcrumb\";\n// @import \"bootstrap/pagination\";\n// @import \"bootstrap/badge\";\n// @import \"bootstrap/alert\";\n// @import \"bootstrap/progress\";\n// @import \"bootstrap/list-group\";\n@import \"bootstrap/close\";\n// @import \"bootstrap/toasts\";\n// @import \"bootstrap/modal\";\n// @import \"bootstrap/tooltip\";\n// @import \"bootstrap/popover\";\n// @import \"bootstrap/carousel\";\n// @import \"bootstrap/spinners\";\n@import \"bootstrap/offcanvas\";\n// @import \"bootstrap/placeholders\";\n@import \"bootstrap/helpers\";\n@import \"bootstrap/utilities/api\";\n\n@import \"variables\";\n@import \"buttons\";\n@import \"clipboard-js\";\n@import \"navbar\";\n@import \"skippy\";\n@import \"footer\";\n@import \"syntax\";\n@import \"ads\";\n\n:root {\n  color-scheme: light dark;\n}\n\n.bd-gutter {\n  --bs-gutter-x: #{$bd-gutter-x};\n}\n\n.bi {\n  display: inline-block;\n  vertical-align: -.125em;\n  fill: currentcolor;\n}\n\n.hero-notice {\n  color: var(--bs-info-text);\n  background-color: var(--bs-info-bg-subtle);\n  border: 1px solid var(--bs-info-border-subtle);\n\n  @media (min-width: 540px) {\n    border-radius: 5em !important; // stylelint-disable-line declaration-no-important\n  }\n}\n\n.btn-figma {\n  --bs-btn-color: var(--bs-emphasis-color);\n  --bs-btn-border-color: var(--bs-emphasis-color);\n  --bs-btn-hover-color: var(--bs-body-bg);\n  --bs-btn-hover-bg: var(--bs-emphasis-color);\n  --bs-btn-hover-border-color: var(--bs-btn-hover-bg);\n}\n\n.highlight {\n  position: relative;\n  padding: 1.25rem;\n  margin-bottom: 1rem;\n  background-color: var(--bs-tertiary-bg);\n  border-radius: var(--bs-border-radius);\n\n  pre {\n    padding: 0;\n    margin-bottom: 0;\n    white-space: pre;\n    background-color: transparent;\n    border: 0;\n  }\n\n  pre code {\n    @include font-size(inherit);\n    word-wrap: normal;\n  }\n}\n\n\n.bd-example {\n  padding: 1.25rem;\n  border: 1px solid var(--bs-border-color);\n  border-top-left-radius: .25rem;\n  border-top-right-radius: .25rem;\n\n  + .bd-clipboard + .highlight {\n    border: 1px solid var(--bs-border-color);\n    border-width: 0 1px 1px;\n    border-top-left-radius: 0;\n    border-top-right-radius: 0;\n  }\n}\n\n.f0 {\n  font-size: 2rem;\n\n  @media (min-width: 520px) {\n    font-size: 3rem;\n  }\n}\n.f3 {\n  font-size: 1.25rem;\n\n  @media (min-width: 520px) {\n    font-size: 1.5rem;\n  }\n}\n.f5 {\n  font-size: 1rem;\n}\n\n.hero {\n  border-bottom: 1px solid var(--bs-border-color-translucent);\n\n  .highlight {\n    margin-bottom: 0;\n    background-color: var(--bs-tertiary-bg);\n    border-radius: .5rem;\n\n    pre {\n      margin-bottom: 0;\n\n      @media (min-width: 768px) {\n        padding-right: 4em;\n      }\n    }\n  }\n\n  .btn-clipboard {\n    top: .5em;\n    background-color: var(--bs-tertiary-bg);\n  }\n\n  .btn {\n    padding: 1rem 1.25rem;\n    border-radius: .5rem;\n  }\n\n  hr {\n    max-width: 100px;\n  }\n}\n\n.icon-search {\n  @media (min-width: 768px) {\n    width: 35%;\n  }\n}\n\n.list {\n  font-size: 2rem;\n\n  // stylelint-disable  declaration-no-important\n  a:hover,\n  a:focus {\n    &,\n    .name {\n      color: var(--bs-link-hover-color) !important;\n    }\n  }\n  // stylelint-enable  declaration-no-important\n\n  &:empty::before {\n    display: block;\n    width: 100%;\n    padding: 100px 2rem;\n    margin-right: 15px;\n    margin-left: 15px;\n    color: var(--bs-secondary-color);\n    text-align: center;\n    content: \"Nothing found, try searching again.\";\n    background-color: var(--bs-secondary-bg);\n    border-radius: .5rem;\n  }\n}\n\n.btn-group > .btn {\n  flex-shrink: 0;\n}\n\n.name {\n  font-size: .8125rem;\n}\n\n@media (min-width: 1200px) {\n  .row-cols-xl-8 {\n    > * {\n      flex: 0 0 12.5%;\n      max-width: 12.5%;\n    }\n  }\n}\n\n.icon-demo {\n  background-color: var(--bs-tertiary-bg);\n  background-image: radial-gradient(circle, var(--bs-border-color) 1px, rgba(0, 0, 0, 0) 1px);\n  background-size: 1rem 1rem;\n}\n\n.icon-demo,\n.icon-demo-examples {\n  .bi {\n    width: 1em;\n    height: 1em;\n  }\n}\n\n// stylelint-disable declaration-no-important\n.py-6 {\n  padding-top: 4.5rem !important;\n  padding-bottom: 4.5rem !important;\n}\n// stylelint-enable declaration-no-important\n"
  },
  {
    "path": "docs/content/404.md",
    "content": "---\ntitle: \"404 - File not found\"\ndescription: \"\"\nlayout: 404\nurl: /404.html\nrobots: noindex,follow\nsitemap_exclude: true\n---\n\n<div class=\"text-center py-5\">\n  <h1 class=\"display-1\">404</h1>\n  <h2>File not found</h2>\n</div>\n"
  },
  {
    "path": "docs/content/_index.md",
    "content": "---\naliases:\n  - /font/\n---\n\n## Install\n\nBootstrap Icons are published to npm, but they can also be manually downloaded if needed.\n\n<div class=\"row my-4\">\n  <div class=\"col-md-4\">\n{{< md >}}\n### Package manager\nInstall [Bootstrap Icons](https://www.npmjs.com/package/bootstrap-icons)—including SVGs, icon sprite, and icon fonts—with npm or Composer. Then, choose how you'd like to include the icons with the [usage instructions](#usage).\n\n{{< highlight sh >}}\nnpm i bootstrap-icons\n{{< /highlight >}}\n{{< highlight sh >}}\ncomposer require twbs/bootstrap-icons\n{{< /highlight >}}\n{{< /md >}}\n  </div>\n  <div class=\"col-md-4\">\n{{< md >}}\n### Download\n[Releases are published on GitHub](https://github.com/twbs/icons/releases/) and include icon SVGs, fonts, license, and readme. Our `package.json` is also included, though our npm scripts are primarily available for our development workflows.\n\n<a class=\"btn btn-outline-primary\" href=\"https://github.com/twbs/icons/releases/latest/\">Download latest ZIP</a>\n{{< /md >}}\n  </div>\n  <div class=\"col-md-4\">\n{{< md >}}\n### CDN\nInclude the icon fonts stylesheet—in your website `<head>` or via `@import` in CSS—from jsDelivr and get started in seconds. [See icon font docs](#icon-font) for examples.\n\n{{< highlight html >}}\n<link rel=\"stylesheet\" href=\"https://cdn.jsdelivr.net/npm/bootstrap-icons@{{< param version >}}/font/bootstrap-icons.min.css\">\n{{< /highlight >}}\n\n{{< highlight css >}}\n@import url(\"https://cdn.jsdelivr.net/npm/bootstrap-icons@{{< param version >}}/font/bootstrap-icons.min.css\");\n{{< /highlight >}}\n{{< /md >}}\n  </div>\n</div>\n\n## Usage\n\nBootstrap Icons are SVGs, so you can include them into your HTML in a few ways depending on how your project is setup. We recommend using a `width: 1em` (and optionally `height: 1em`) for easy resizing via `font-size`.\n\n<div class=\"row my-4\">\n  <div class=\"col-md-4\">\n{{< md >}}\n### Embedded\nEmbed your icons within the HTML of your page (as opposed to an external image file). Here we've used a custom `width` and `height`.\n{{< /md >}}\n  </div>\n  <div class=\"col-md-8\">\n    {{< example >}}<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"currentColor\" class=\"bi bi-emoji-heart-eyes\" viewBox=\"0 0 16 16\"><path d=\"M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16z\"/><path d=\"M11.315 10.014a.5.5 0 0 1 .548.736A4.498 4.498 0 0 1 7.965 13a4.498 4.498 0 0 1-3.898-2.25.5.5 0 0 1 .548-.736h.005l.017.005.067.015.252.055c.215.046.515.108.857.169.693.124 1.522.242 2.152.242.63 0 1.46-.118 2.152-.242a26.58 26.58 0 0 0 1.109-.224l.067-.015.017-.004.005-.002zM4.756 4.566c.763-1.424 4.02-.12.952 3.434-4.496-1.596-2.35-4.298-.952-3.434zm6.488 0c1.398-.864 3.544 1.838-.952 3.434-3.067-3.554.19-4.858.952-3.434z\"/></svg>{{< /example >}}\n  </div>\n</div>\n\n<div class=\"row my-4\">\n  <div class=\"col-md-4\">\n{{< md >}}\n### Sprite\nUse the SVG sprite to insert any icon through the `<use>` element. Use the icon's filename as the fragment identifier (e.g., `toggles` is `#toggles`). SVG sprites allow you to reference an external file similar to an `<img>` element, but with the power of `currentColor` for easy theming.\n\n**Heads up!** There's an issue with Chrome where [`<use>` doesn't work across domains](https://bugs.chromium.org/p/chromium/issues/detail?id=470601).\n{{< /md >}}\n  </div>\n  <div class=\"col-md-8\">\n\n<div class=\"bd-example\" style=\"font-size: 32px;\">\n  <i class=\"bi bi-heart-fill\"></i>\n  <i class=\"bi bi-toggles\"></i>\n  <i class=\"bi bi-shop\"></i>\n</div>\n{{< highlight html >}}\n<svg class=\"bi\" width=\"32\" height=\"32\" fill=\"currentColor\">\n  <use xlink:href=\"bootstrap-icons.svg#heart-fill\"/>\n</svg>\n<svg class=\"bi\" width=\"32\" height=\"32\" fill=\"currentColor\">\n  <use xlink:href=\"bootstrap-icons.svg#toggles\"/>\n</svg>\n<svg class=\"bi\" width=\"32\" height=\"32\" fill=\"currentColor\">\n  <use xlink:href=\"bootstrap-icons.svg#shop\"/>\n</svg>\n{{< /highlight >}}\n  </div>\n</div>\n\n<div class=\"row my-4\">\n  <div class=\"col-md-4\">\n{{< md >}}\n### External image\nCopy the Bootstrap Icons SVGs to your directory of choice and reference them like normal images with the `<img>` element.\n{{< /md >}}\n  </div>\n  <div class=\"col-md-8\">\n    {{< example >}}<img src=\"/assets/icons/bootstrap.svg\" alt=\"Bootstrap\" width=\"32\" height=\"32\">{{< /example >}}\n  </div>\n</div>\n\n<div class=\"row my-4\">\n  <div class=\"col-md-4\">\n{{< md >}}\n### Icon font\nIcon fonts with classes for every icon are also included for Bootstrap Icons. Include the icon web fonts in your page via CSS, then reference the class names as needed in your HTML (e.g., `<i class=\"bi bi-alarm\"></i>`).\n\nUse `font-size` and `color` to change the icon appearance.\n{{< /md >}}\n  </div>\n  <div class=\"col-md-8\">\n    {{< example >}}<i class=\"bi bi-alarm\"></i>{{< /example >}}\n    {{< example >}}<i class=\"bi bi-alarm\" style=\"font-size: 2rem; color: cornflowerblue;\"></i>{{< /example >}}\n  </div>\n</div>\n\n<div class=\"row my-4\">\n  <div class=\"col-md-4\">\n{{< md >}}\n### Sass\nWhen using Bootstrap in a Sass project, you may need to adjust the `$bootstrap-icons-font-dir` variable to point to where your files are installed (most commonly `node_modules`, assuming you're using npm).\n\n**Heads up!** This is currently required [for Vite](https://github.com/vitejs/vite/issues/11012) and [Parcel](https://github.com/parcel-bundler/parcel/issues/6285) as their Sass compilers aren‘t happy with relative URLs.\n{{< /md >}}\n  </div>\n  <div class=\"col-md-8\">\n{{< highlight scss >}}\n// Update the import directory to point to it‘s location within node_modules\n$bootstrap-icons-font-dir: \"bootstrap-icons/font/fonts\";\n\n// Import the Sass files as usual\n@import \"bootstrap-icons/font/bootstrap-icons\";\n\n{{< /highlight >}}\n  </div>\n</div>\n\n<div class=\"row my-4\">\n  <div class=\"col-md-4\">\n{{< md >}}\n### CSS\nYou can also use the SVG within your CSS (**be sure to escape any characters**, such as `#` to `%23` when specifying hex color values). When no dimensions are specified via `width` and `height` on the `<svg>`, the icon will fill the available space.\n\nThe `viewBox` attribute is required if you wish to resize icons with `background-size`. Note that the `xmlns` attribute is required.\n{{< /md >}}\n  </div>\n  <div class=\"col-md-8\">\n{{< highlight css >}}\n.bi::before {\n  display: inline-block;\n  content: \"\";\n  vertical-align: -.125em;\n  background-image: url(\"data:image/svg+xml,<svg viewBox='0 0 16 16' fill='%23333' xmlns='http://www.w3.org/2000/svg'><path fill-rule='evenodd' d='M8 9.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3z' clip-rule='evenodd'/></svg>\");\n  background-repeat: no-repeat;\n  background-size: 1rem 1rem;\n}\n\n{{< /highlight >}}\n  </div>\n</div>\n\n<div class=\"row my-4\">\n  <div class=\"col-md-4\">\n{{< md >}}\n## Styling\nColor can be changed by setting a `.text-*` class or custom CSS:\n{{< /md >}}\n  </div>\n  <div class=\"col-md-8\">\n    <div class=\"bd-example\">\n      <svg class=\"bi bi-exclamation-triangle text-success\" width=\"32\" height=\"32\" fill=\"currentColor\" viewBox=\"0 0 16 16\" xmlns=\"http://www.w3.org/2000/svg\">\n        <path d=\"M7.938 2.016A.13.13 0 0 1 8.002 2a.13.13 0 0 1 .063.016.146.146 0 0 1 .054.057l6.857 11.667c.036.06.035.124.002.183a.163.163 0 0 1-.054.06.116.116 0 0 1-.066.017H1.146a.115.115 0 0 1-.066-.017.163.163 0 0 1-.054-.06.176.176 0 0 1 .002-.183L7.884 2.073a.147.147 0 0 1 .054-.057zm1.044-.45a1.13 1.13 0 0 0-1.96 0L.165 13.233c-.457.778.091 1.767.98 1.767h13.713c.889 0 1.438-.99.98-1.767L8.982 1.566z\"/>\n        <path d=\"M7.002 12a1 1 0 1 1 2 0 1 1 0 0 1-2 0zM7.1 5.995a.905.905 0 1 1 1.8 0l-.35 3.507a.552.552 0 0 1-1.1 0L7.1 5.995z\"/>\n      </svg>\n    </div>\n{{< highlight html >}}\n<svg class=\"bi bi-exclamation-triangle text-success\" width=\"32\" height=\"32\" fill=\"currentColor\" viewBox=\"0 0 16 16\" xmlns=\"http://www.w3.org/2000/svg\">\n  ...\n</svg>\n{{< /highlight >}}\n  </div>\n</div>\n\n<div class=\"row my-4\">\n  <div class=\"col-md-4\">\n{{< md >}}\n## Accessibility\nFor purely decorative icons, add `aria-hidden=\"true\"`. Otherwise, provide an appropriate text alternative. Depending on which method you're using to add the icons, and where you're using them (e.g. as standalone images, or as the only content of a button or similar control), there are various possible approaches. Here are a few examples:\n{{< /md >}}\n  </div>\n  <div class=\"col-md-8\">\n    <div class=\"bd-example\">\n      <img src=\"/assets/icons/bootstrap.svg\" alt=\"Bootstrap\" width=\"32\" height=\"32\">\n    </div>\n{{< highlight html >}}\n<!-- alt=\"...\" on <img> element -->\n<img src=\"/assets/icons/bootstrap.svg\" alt=\"Bootstrap\" ...>\n{{< /highlight >}}\n    <div class=\"bd-example\">\n      <i class=\"bi-github\" role=\"img\" style=\"font-size: 2em\" aria-label=\"GitHub\"></i>\n      <i class=\"bi-tools\" role=\"img\" style=\"font-size: 2em\" aria-label=\"Tools\"></i>\n    </div>\n{{< highlight html >}}\n<svg class=\"bi\" ... role=\"img\" aria-label=\"Tools\">\n  <use xlink:href=\"bootstrap-icons.svg#tools\"/>\n</svg>\n{{< /highlight >}}\n    <div class=\"bd-example\">\n      <button type=\"button\" class=\"btn btn-primary\" aria-label=\"Mute\">\n        <svg class=\"bi bi-volume-mute-fill\" width=\"32\" height=\"32\" viewBox=\"0 0 16 16\" fill=\"currentColor\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\"><path d=\"M6.717 3.55A.5.5 0 017 4v8a.5.5 0 01-.812.39L3.825 10.5H1.5A.5.5 0 011 10V6a.5.5 0 01.5-.5h2.325l2.363-1.89a.5.5 0 01.529-.06zm7.137 2.096a.5.5 0 010 .708L12.207 8l1.647 1.646a.5.5 0 01-.708.708L11.5 8.707l-1.646 1.647a.5.5 0 01-.708-.708L10.793 8 9.146 6.354a.5.5 0 11.708-.708L11.5 7.293l1.646-1.647a.5.5 0 01.708 0z\"></path></svg>\n      </button>\n    </div>\n{{< highlight html >}}\n<!-- aria-label=\"...\" on the control -->\n<button ... aria-label=\"Mute\">\n  <svg class=\"bi bi-volume-mute-fill\" aria-hidden=\"true\" ...>\n  ...\n  </svg>\n</button>\n{{< /highlight >}}\n  </div>\n</div>\n\n<div class=\"row my-4\">\n  <div class=\"col-md-4\">\n{{< md >}}\n## Working with SVGs\nSVGs are awesome to work with, but they do have some known quirks to work around. Given the numerous ways in which SVGs can be used, we haven't included these attributes and workarounds in our code.\n{{< /md >}}\n  </div>\n  <div class=\"col-md-8\">\n{{< md >}}\nKnown issues include:\n\n- **SVGs receive focus by default in Internet Explorer and Edge Legacy.** When embedding your SVGs, add `focusable=\"false\"` to the `<svg>` element. [Learn more on Stack Overflow.](https://stackoverflow.com/questions/18646111/disable-onfocus-event-for-svg-element)\n\n- **When using SVGs with `<img>` elements, screen readers may not announce them as images, or skip the image completely.** Include an additional `role=\"img\"` on the `<img>` element to avoid any issues. [See this article for details.](https://web.archive.org/web/20201112013541/https://simplyaccessible.com/article/7-solutions-svgs/#acc-heading-2)\n\n- **External SVG sprites may not function correctly in Internet Explorer.** Use the [svg4everybody](https://github.com/jonathantneal/svg4everybody) polyfill as needed.\n\nFound another issue with SVGs we should note? Please open [an issue]({{< param repo >}}/issues) to share details.\n{{< /md >}}\n  </div>\n</div>\n"
  },
  {
    "path": "docs/content/icons/0-circle-fill.md",
    "content": "---\ntitle: 0 circle fill\ncategories:\n  - Shapes\ntags:\n  - number\n  - numeral\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/0-circle.md",
    "content": "---\ntitle: 0 circle\ncategories:\n  - Shapes\ntags:\n  - number\n  - numeral\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/0-square-fill.md",
    "content": "---\ntitle: 0 square fill\ncategories:\n  - Shapes\ntags:\n  - number\n  - numeral\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/0-square.md",
    "content": "---\ntitle: 0 square\ncategories:\n  - Shapes\ntags:\n  - number\n  - numeral\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/1-circle-fill.md",
    "content": "---\ntitle: 1 circle fill\ncategories:\n  - Shapes\ntags:\n  - number\n  - numeral\n---\n"
  },
  {
    "path": "docs/content/icons/1-circle.md",
    "content": "---\ntitle: 1 circle\ncategories:\n  - Shapes\ntags:\n  - number\n  - numeral\n---\n"
  },
  {
    "path": "docs/content/icons/1-square-fill.md",
    "content": "---\ntitle: 1 square fill\ncategories:\n  - Shapes\ntags:\n  - number\n  - numeral\n---\n"
  },
  {
    "path": "docs/content/icons/1-square.md",
    "content": "---\ntitle: 1 square\ncategories:\n  - Shapes\ntags:\n  - number\n  - numeral\n---\n"
  },
  {
    "path": "docs/content/icons/123.md",
    "content": "---\ntitle: 123\ncategories:\n  - Typography\ntags:\n  - numbers\n---\n"
  },
  {
    "path": "docs/content/icons/2-circle-fill.md",
    "content": "---\ntitle: 2 circle fill\ncategories:\n  - Shapes\ntags:\n  - number\n  - numeral\n---\n"
  },
  {
    "path": "docs/content/icons/2-circle.md",
    "content": "---\ntitle: 2 circle\ncategories:\n  - Shapes\ntags:\n  - number\n  - numeral\n---\n"
  },
  {
    "path": "docs/content/icons/2-square-fill.md",
    "content": "---\ntitle: 2 square fill\ncategories:\n  - Shapes\ntags:\n  - number\n  - numeral\n---\n"
  },
  {
    "path": "docs/content/icons/2-square.md",
    "content": "---\ntitle: 2 square\ncategories:\n  - Shapes\ntags:\n  - number\n  - numeral\n---\n"
  },
  {
    "path": "docs/content/icons/3-circle-fill.md",
    "content": "---\ntitle: 3 circle fill\ncategories:\n  - Shapes\ntags:\n  - number\n  - numeral\n---\n"
  },
  {
    "path": "docs/content/icons/3-circle.md",
    "content": "---\ntitle: 3 circle\ncategories:\n  - Shapes\ntags:\n  - number\n  - numeral\n---\n"
  },
  {
    "path": "docs/content/icons/3-square-fill.md",
    "content": "---\ntitle: 3 square fill\ncategories:\n  - Shapes\ntags:\n  - number\n  - numeral\n---\n"
  },
  {
    "path": "docs/content/icons/3-square.md",
    "content": "---\ntitle: 3 square\ncategories:\n  - Shapes\ntags:\n  - number\n  - numeral\n---\n"
  },
  {
    "path": "docs/content/icons/4-circle-fill.md",
    "content": "---\ntitle: 4 circle fill\ncategories:\n  - Shapes\ntags:\n  - number\n  - numeral\n---\n"
  },
  {
    "path": "docs/content/icons/4-circle.md",
    "content": "---\ntitle: 4 circle\ncategories:\n  - Shapes\ntags:\n  - number\n  - numeral\n---\n"
  },
  {
    "path": "docs/content/icons/4-square-fill.md",
    "content": "---\ntitle: 4 square fill\ncategories:\n  - Shapes\ntags:\n  - number\n  - numeral\n---\n"
  },
  {
    "path": "docs/content/icons/4-square.md",
    "content": "---\ntitle: 4 square\ncategories:\n  - Shapes\ntags:\n  - number\n  - numeral\n---\n"
  },
  {
    "path": "docs/content/icons/5-circle-fill.md",
    "content": "---\ntitle: 5 circle fill\ncategories:\n  - Shapes\ntags:\n  - number\n  - numeral\n---\n"
  },
  {
    "path": "docs/content/icons/5-circle.md",
    "content": "---\ntitle: 5 circle\ncategories:\n  - Shapes\ntags:\n  - number\n  - numeral\n---\n"
  },
  {
    "path": "docs/content/icons/5-square-fill.md",
    "content": "---\ntitle: 5 square fill\ncategories:\n  - Shapes\ntags:\n  - number\n  - numeral\n---\n"
  },
  {
    "path": "docs/content/icons/5-square.md",
    "content": "---\ntitle: 5 square\ncategories:\n  - Shapes\ntags:\n  - number\n  - numeral\n---\n"
  },
  {
    "path": "docs/content/icons/6-circle-fill.md",
    "content": "---\ntitle: 6 circle fill\ncategories:\n  - Shapes\ntags:\n  - number\n  - numeral\n---\n"
  },
  {
    "path": "docs/content/icons/6-circle.md",
    "content": "---\ntitle: 6 circle\ncategories:\n  - Shapes\ntags:\n  - number\n  - numeral\n---\n"
  },
  {
    "path": "docs/content/icons/6-square-fill.md",
    "content": "---\ntitle: 6 square fill\ncategories:\n  - Shapes\ntags:\n  - number\n  - numeral\n---\n"
  },
  {
    "path": "docs/content/icons/6-square.md",
    "content": "---\ntitle: 6 square\ncategories:\n  - Shapes\ntags:\n  - number\n  - numeral\n---\n"
  },
  {
    "path": "docs/content/icons/7-circle-fill.md",
    "content": "---\ntitle: 7 circle fill\ncategories:\n  - Shapes\ntags:\n  - number\n  - numeral\n---\n"
  },
  {
    "path": "docs/content/icons/7-circle.md",
    "content": "---\ntitle: 7 circle\ncategories:\n  - Shapes\ntags:\n  - number\n  - numeral\n---\n"
  },
  {
    "path": "docs/content/icons/7-square-fill.md",
    "content": "---\ntitle: 7 square fill\ncategories:\n  - Shapes\ntags:\n  - number\n  - numeral\n---\n"
  },
  {
    "path": "docs/content/icons/7-square.md",
    "content": "---\ntitle: 7 square\ncategories:\n  - Shapes\ntags:\n  - number\n  - numeral\n---\n"
  },
  {
    "path": "docs/content/icons/8-circle-fill.md",
    "content": "---\ntitle: 8 circle fill\ncategories:\n  - Shapes\ntags:\n  - number\n  - numeral\n---\n"
  },
  {
    "path": "docs/content/icons/8-circle.md",
    "content": "---\ntitle: 8 circle\ncategories:\n  - Shapes\ntags:\n  - number\n  - numeral\n---\n"
  },
  {
    "path": "docs/content/icons/8-square-fill.md",
    "content": "---\ntitle: 8 square fill\ncategories:\n  - Shapes\ntags:\n  - number\n  - numeral\n---\n"
  },
  {
    "path": "docs/content/icons/8-square.md",
    "content": "---\ntitle: 8 square\ncategories:\n  - Shapes\ntags:\n  - number\n  - numeral\n---\n"
  },
  {
    "path": "docs/content/icons/9-circle-fill.md",
    "content": "---\ntitle: 9 circle fill\ncategories:\n  - Shapes\ntags:\n  - number\n  - numeral\n---\n"
  },
  {
    "path": "docs/content/icons/9-circle.md",
    "content": "---\ntitle: 9 circle\ncategories:\n  - Shapes\ntags:\n  - number\n  - numeral\n---\n"
  },
  {
    "path": "docs/content/icons/9-square-fill.md",
    "content": "---\ntitle: 9 square fill\ncategories:\n  - Shapes\ntags:\n  - number\n  - numeral\n---\n"
  },
  {
    "path": "docs/content/icons/9-square.md",
    "content": "---\ntitle: 9 square\ncategories:\n  - Shapes\ntags:\n  - number\n  - numeral\n---\n"
  },
  {
    "path": "docs/content/icons/activity.md",
    "content": "---\ntitle: Activity\ncategories:\n  - Data\ntags:\n  - pulse\n  - heartbeat\n  - rhythm\n---\n"
  },
  {
    "path": "docs/content/icons/airplane-engines-fill.md",
    "content": "---\ntitle: Airplane engines fill\ncategories:\n  - Transportation\ntags:\n  - flight\n  - flying\n  - plane\n  - air\n  - airport\n  - aircraft\n  - aeroplane\n---\n"
  },
  {
    "path": "docs/content/icons/airplane-engines.md",
    "content": "---\ntitle: Airplane engines\ncategories:\n  - Transportation\ntags:\n  - flight\n  - flying\n  - plane\n  - air\n  - airport\n  - aircraft\n  - aeroplane\n---\n"
  },
  {
    "path": "docs/content/icons/airplane-fill.md",
    "content": "---\ntitle: Airplane fill\ncategories:\n  - Transportation\ntags:\n  - flight\n  - flying\n  - plane\n  - air\n  - airport\n  - aircraft\n  - aeroplane\n---\n"
  },
  {
    "path": "docs/content/icons/airplane.md",
    "content": "---\ntitle: Airplane\ncategories:\n  - Transportation\ntags:\n  - flight\n  - flying\n  - plane\n  - air\n  - airport\n  - aircraft\n  - aeroplane\n---\n"
  },
  {
    "path": "docs/content/icons/alarm-fill.md",
    "content": "---\ntitle: Alarm Fill\ncategories:\n  - Devices\ntags:\n  - alarm\n  - clock\n  - time\n---\n"
  },
  {
    "path": "docs/content/icons/alarm.md",
    "content": "---\ntitle: Alarm\ncategories:\n  - Devices\ntags:\n  - alarm\n  - clock\n  - time\n---\n"
  },
  {
    "path": "docs/content/icons/alexa.md",
    "content": "---\ntitle: Alexa\ncategories:\n  - Brand\ntags:\n  - social\n  - assistant\n---\n"
  },
  {
    "path": "docs/content/icons/align-bottom.md",
    "content": "---\ntitle: Align bottom\ncategories:\n  - Graphics\ntags:\n  - space\n  - align\n  - distribute\n---\n"
  },
  {
    "path": "docs/content/icons/align-center.md",
    "content": "---\ntitle: Align center\ncategories:\n  - Graphics\ntags:\n  - space\n  - align\n  - distribute\n  - centre\n---\n"
  },
  {
    "path": "docs/content/icons/align-end.md",
    "content": "---\ntitle: Align end\ncategories:\n  - Graphics\ntags:\n  - space\n  - align\n  - distribute\n---\n"
  },
  {
    "path": "docs/content/icons/align-middle.md",
    "content": "---\ntitle: Align middle\ncategories:\n  - Graphics\ntags:\n  - space\n  - align\n  - distribute\n---\n"
  },
  {
    "path": "docs/content/icons/align-start.md",
    "content": "---\ntitle: Align start\ncategories:\n  - Graphics\ntags:\n  - space\n  - align\n  - distribute\n---\n"
  },
  {
    "path": "docs/content/icons/align-top.md",
    "content": "---\ntitle: Align top\ncategories:\n  - Graphics\ntags:\n  - space\n  - align\n  - distribute\n---\n"
  },
  {
    "path": "docs/content/icons/alipay.md",
    "content": "---\ntitle: Alipay\ncategories:\n  - Brand\ntags:\n  - payments\n---\n"
  },
  {
    "path": "docs/content/icons/alphabet-uppercase.md",
    "content": "---\ntitle: Alphabet uppercase\ncategories:\n  - Typography\ntags:\n  - letters\n  - abc\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/alphabet.md",
    "content": "---\ntitle: Alphabet\ncategories:\n  - Typography\ntags:\n  - letters\n  - abc\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/alt.md",
    "content": "---\ntitle: Alt\ncategories:\n  - UI and keyboard\ntags:\n  - key\n  - alt\n  - option\n---\n"
  },
  {
    "path": "docs/content/icons/amazon.md",
    "content": "---\ntitle: Amazon\ncategories:\n  - Brand\ntags:\n  - aws\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/amd.md",
    "content": "---\ntitle: Amd\ncategories:\n  - Brand\ntags:\n  - radeon\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/android.md",
    "content": "---\ntitle: Android\ncategories:\n  - Brand\ntags:\n  - google\n  - droid\n---\n"
  },
  {
    "path": "docs/content/icons/android2.md",
    "content": "---\ntitle: Android2\ncategories:\n  - Brand\ntags:\n  - google\n  - droid\n---\n"
  },
  {
    "path": "docs/content/icons/anthropic.md",
    "content": "---\ntitle: Anthropic\ncategories:\n  - Brand\ntags:\n  - ai\n  - claude\n  - agent\n  - \"artificial intelligence\"\n---\n"
  },
  {
    "path": "docs/content/icons/app-indicator.md",
    "content": "---\ntitle: App indicator\ncategories:\n  - Apps\ntags:\n  - app\n  - application\n  - ios\n  - android\n  - notification\n  - square\n---\n"
  },
  {
    "path": "docs/content/icons/app.md",
    "content": "---\ntitle: App\ncategories:\n  - Apps\ntags:\n  - app\n  - application\n  - ios\n  - android\n  - square\n---\n"
  },
  {
    "path": "docs/content/icons/apple-music.md",
    "content": "---\ntitle: Apple Music\ncategories:\n  - Brand\ntags:\n  - itunes\n---\n"
  },
  {
    "path": "docs/content/icons/apple.md",
    "content": "---\ntitle: Apple\ncategories:\n  - Brand\ntags:\n  - aapl\n  - mac\n  - macintosh\n---\n"
  },
  {
    "path": "docs/content/icons/archive-fill.md",
    "content": "---\ntitle: Archive fill\ncategories:\n  - Files and folders\ntags:\n  - box\n  - delete\n---\n"
  },
  {
    "path": "docs/content/icons/archive.md",
    "content": "---\ntitle: Archive\ncategories:\n  - Files and folders\ntags:\n  - box\n  - delete\n---\n"
  },
  {
    "path": "docs/content/icons/arrow-90deg-down.md",
    "content": "---\ntitle: Arrow 90deg down\ncategories:\n  - Arrows\ntags:\n  - arrow\n  - right-angle\n---\n"
  },
  {
    "path": "docs/content/icons/arrow-90deg-left.md",
    "content": "---\ntitle: Arrow 90deg left\ncategories:\n  - Arrows\ntags:\n  - arrow\n  - right-angle\n---\n"
  },
  {
    "path": "docs/content/icons/arrow-90deg-right.md",
    "content": "---\ntitle: Arrow 90deg right\ncategories:\n  - Arrows\ntags:\n  - arrow\n  - right-angle\n---\n"
  },
  {
    "path": "docs/content/icons/arrow-90deg-up.md",
    "content": "---\ntitle: Arrow 90deg up\ncategories:\n  - Arrows\ntags:\n  - arrow\n  - right-angle\n---\n"
  },
  {
    "path": "docs/content/icons/arrow-bar-down.md",
    "content": "---\ntitle: Arrow bar down\ncategories:\n  - Arrows\ntags:\n  - arrow\n---\n"
  },
  {
    "path": "docs/content/icons/arrow-bar-left.md",
    "content": "---\ntitle: Arrow bar left\ncategories:\n  - Arrows\ntags:\n  - arrow\n---\n"
  },
  {
    "path": "docs/content/icons/arrow-bar-right.md",
    "content": "---\ntitle: Arrow bar right\ncategories:\n  - Arrows\ntags:\n  - arrow\n---\n"
  },
  {
    "path": "docs/content/icons/arrow-bar-up.md",
    "content": "---\ntitle: Arrow bar up\ncategories:\n  - Arrows\ntags:\n  - arrow\n---\n"
  },
  {
    "path": "docs/content/icons/arrow-clockwise.md",
    "content": "---\ntitle: Arrow clockwise\ncategories:\n  - Arrows\ntags:\n  - arrow\n  - right\n  - spin\n  - turn\n  - around\n  - round\n  - rotate\n  - refresh\n  - reload\n  - redo\n---\n"
  },
  {
    "path": "docs/content/icons/arrow-counterclockwise.md",
    "content": "---\ntitle: Arrow counterclockwise\ncategories:\n  - Arrows\ntags:\n  - arrow\n  - left\n  - spin\n  - turn\n  - around\n  - round\n  - rotate\n  - undo\n---\n"
  },
  {
    "path": "docs/content/icons/arrow-down-circle-fill.md",
    "content": "---\ntitle: Arrow down circle fill\ncategories:\n  - Shape arrows\ntags:\n  - arrow\n  - circle\n---\n"
  },
  {
    "path": "docs/content/icons/arrow-down-circle.md",
    "content": "---\ntitle: Arrow down circle\ncategories:\n  - Shape arrows\ntags:\n  - arrow\n  - circle\n---\n"
  },
  {
    "path": "docs/content/icons/arrow-down-left-circle-fill.md",
    "content": "---\ntitle: Arrow down left circle fill\ncategories:\n  - Shape arrows\ntags:\n  - arrow\n  - circle\n---\n"
  },
  {
    "path": "docs/content/icons/arrow-down-left-circle.md",
    "content": "---\ntitle: Arrow down left circle\ncategories:\n  - Shape arrows\ntags:\n  - arrow\n  - circle\n---\n"
  },
  {
    "path": "docs/content/icons/arrow-down-left-square-fill.md",
    "content": "---\ntitle: Arrow down left square fill\ncategories:\n  - Shape arrows\ntags:\n  - arrow\n  - square\n---\n"
  },
  {
    "path": "docs/content/icons/arrow-down-left-square.md",
    "content": "---\ntitle: Arrow down left square\ncategories:\n  - Shape arrows\ntags:\n  - arrow\n  - square\n---\n"
  },
  {
    "path": "docs/content/icons/arrow-down-left.md",
    "content": "---\ntitle: Arrow down-left\ncategories:\n  - Arrows\ntags:\n  - arrow\n---\n"
  },
  {
    "path": "docs/content/icons/arrow-down-right-circle-fill.md",
    "content": "---\ntitle: Arrow down right circle fill\ncategories:\n  - Shape arrows\ntags:\n  - arrow\n  - circle\n---\n"
  },
  {
    "path": "docs/content/icons/arrow-down-right-circle.md",
    "content": "---\ntitle: Arrow down right circle\ncategories:\n  - Shape arrows\ntags:\n  - arrow\n  - circle\n---\n"
  },
  {
    "path": "docs/content/icons/arrow-down-right-square-fill.md",
    "content": "---\ntitle: Arrow down right square fill\ncategories:\n  - Shape arrows\ntags:\n  - arrow\n  - square\n---\n"
  },
  {
    "path": "docs/content/icons/arrow-down-right-square.md",
    "content": "---\ntitle: Arrow down right square\ncategories:\n  - Shape arrows\ntags:\n  - arrow\n  - square\n---\n"
  },
  {
    "path": "docs/content/icons/arrow-down-right.md",
    "content": "---\ntitle: Arrow down-right\ncategories:\n  - Arrows\ntags:\n  - arrow\n---\n"
  },
  {
    "path": "docs/content/icons/arrow-down-short.md",
    "content": "---\ntitle: Arrow down-short\ncategories:\n  - Arrows\ntags:\n  - arrow\n---\n"
  },
  {
    "path": "docs/content/icons/arrow-down-square-fill.md",
    "content": "---\ntitle: Arrow down square fill\ncategories:\n  - Shape arrows\ntags:\n  - arrow\n  - square\n---\n"
  },
  {
    "path": "docs/content/icons/arrow-down-square.md",
    "content": "---\ntitle: Arrow down square\ncategories:\n  - Shape arrows\ntags:\n  - arrow\n  - square\n---\n"
  },
  {
    "path": "docs/content/icons/arrow-down-up.md",
    "content": "---\ntitle: Arrow down-up\ncategories:\n  - Arrows\ntags:\n  - arrow\n---\n"
  },
  {
    "path": "docs/content/icons/arrow-down.md",
    "content": "---\ntitle: Arrow down\ncategories:\n  - Arrows\ntags:\n  - arrow\n---\n"
  },
  {
    "path": "docs/content/icons/arrow-left-circle-fill.md",
    "content": "---\ntitle: Arrow left circle fill\ncategories:\n  - Shape arrows\ntags:\n  - arrow\n  - circle\n---\n"
  },
  {
    "path": "docs/content/icons/arrow-left-circle.md",
    "content": "---\ntitle: Arrow left circle\ncategories:\n  - Shape arrows\ntags:\n  - arrow\n  - circle\n---\n"
  },
  {
    "path": "docs/content/icons/arrow-left-right.md",
    "content": "---\ntitle: Arrow left-right\ncategories:\n  - Arrows\ntags:\n  - arrow\n---\n"
  },
  {
    "path": "docs/content/icons/arrow-left-short.md",
    "content": "---\ntitle: Arrow left-short\ncategories:\n  - Arrows\ntags:\n  - arrow\n---\n"
  },
  {
    "path": "docs/content/icons/arrow-left-square-fill.md",
    "content": "---\ntitle: Arrow left square fill\ncategories:\n  - Shape arrows\ntags:\n  - arrow\n  - square\n---\n"
  },
  {
    "path": "docs/content/icons/arrow-left-square.md",
    "content": "---\ntitle: Arrow left square\ncategories:\n  - Shape arrows\ntags:\n  - arrow\n  - square\n---\n"
  },
  {
    "path": "docs/content/icons/arrow-left.md",
    "content": "---\ntitle: Arrow left\ncategories:\n  - Arrows\ntags:\n  - arrow\n---\n"
  },
  {
    "path": "docs/content/icons/arrow-repeat.md",
    "content": "---\ntitle: Arrow repeat\ncategories:\n  - Arrows\ntags:\n  - arrow\n  - spin\n  - turn\n  - around\n  - round\n  - rotate\n  - sync\n---\n"
  },
  {
    "path": "docs/content/icons/arrow-return-left.md",
    "content": "---\ntitle: Arrow return left\ncategories:\n  - Arrows\ntags:\n  - arrow\n  - return\n---\n"
  },
  {
    "path": "docs/content/icons/arrow-return-right.md",
    "content": "---\ntitle: Arrow return right\ncategories:\n  - Arrows\ntags:\n  - arrow\n  - return\n---\n"
  },
  {
    "path": "docs/content/icons/arrow-right-circle-fill.md",
    "content": "---\ntitle: Arrow right circle fill\ncategories:\n  - Shape arrows\ntags:\n  - arrow\n  - circle\n---\n"
  },
  {
    "path": "docs/content/icons/arrow-right-circle.md",
    "content": "---\ntitle: Arrow right circle\ncategories:\n  - Shape arrows\ntags:\n  - arrow\n  - circle\n---\n"
  },
  {
    "path": "docs/content/icons/arrow-right-short.md",
    "content": "---\ntitle: Arrow right-short\ncategories:\n  - Arrows\ntags:\n  - arrow\n---\n"
  },
  {
    "path": "docs/content/icons/arrow-right-square-fill.md",
    "content": "---\ntitle: Arrow right square fill\ncategories:\n  - Shape arrows\ntags:\n  - arrow\n  - square\n---\n"
  },
  {
    "path": "docs/content/icons/arrow-right-square.md",
    "content": "---\ntitle: Arrow right square\ncategories:\n  - Shape arrows\ntags:\n  - arrow\n  - square\n---\n"
  },
  {
    "path": "docs/content/icons/arrow-right.md",
    "content": "---\ntitle: Arrow right\ncategories:\n  - Arrows\ntags:\n  - arrow\n---\n"
  },
  {
    "path": "docs/content/icons/arrow-through-heart-fill.md",
    "content": "---\ntitle: Arrow through heart fill\ncategories:\n  - Arrows\n  - Love\ntags:\n  - cupid\n  - love\n  - valentine\n---\n"
  },
  {
    "path": "docs/content/icons/arrow-through-heart.md",
    "content": "---\ntitle: Arrow through heart\ncategories:\n  - Arrows\n  - Love\ntags:\n  - cupid\n  - love\n  - valentine\n---\n"
  },
  {
    "path": "docs/content/icons/arrow-up-circle-fill.md",
    "content": "---\ntitle: Arrow up circle fill\ncategories:\n  - Shape arrows\ntags:\n  - arrow\n  - circle\n---\n"
  },
  {
    "path": "docs/content/icons/arrow-up-circle.md",
    "content": "---\ntitle: Arrow up circle\ncategories:\n  - Shape arrows\ntags:\n  - arrow\n  - circle\n---\n"
  },
  {
    "path": "docs/content/icons/arrow-up-left-circle-fill.md",
    "content": "---\ntitle: Arrow up left circle fill\ncategories:\n  - Shape arrows\ntags:\n  - arrow\n  - circle\n---\n"
  },
  {
    "path": "docs/content/icons/arrow-up-left-circle.md",
    "content": "---\ntitle: Arrow up left circle\ncategories:\n  - Shape arrows\ntags:\n  - arrow\n  - circle\n---\n"
  },
  {
    "path": "docs/content/icons/arrow-up-left-square-fill.md",
    "content": "---\ntitle: Arrow up left square fill\ncategories:\n  - Shape arrows\ntags:\n  - arrow\n  - square\n---\n"
  },
  {
    "path": "docs/content/icons/arrow-up-left-square.md",
    "content": "---\ntitle: Arrow up left square\ncategories:\n  - Shape arrows\ntags:\n  - arrow\n  - square\n---\n"
  },
  {
    "path": "docs/content/icons/arrow-up-left.md",
    "content": "---\ntitle: Arrow up-left\ncategories:\n  - Arrows\ntags:\n  - arrow\n---\n"
  },
  {
    "path": "docs/content/icons/arrow-up-right-circle-fill.md",
    "content": "---\ntitle: Arrow up right circle fill\ncategories:\n  - Shape arrows\ntags:\n  - arrow\n  - circle\n---\n"
  },
  {
    "path": "docs/content/icons/arrow-up-right-circle.md",
    "content": "---\ntitle: Arrow up right circle\ncategories:\n  - Shape arrows\ntags:\n  - arrow\n  - circle\n---\n"
  },
  {
    "path": "docs/content/icons/arrow-up-right-square-fill.md",
    "content": "---\ntitle: Arrow up right square fill\ncategories:\n  - Shape arrows\ntags:\n  - arrow\n  - square\n---\n"
  },
  {
    "path": "docs/content/icons/arrow-up-right-square.md",
    "content": "---\ntitle: Arrow up right square\ncategories:\n  - Shape arrows\ntags:\n  - arrow\n  - square\n---\n"
  },
  {
    "path": "docs/content/icons/arrow-up-right.md",
    "content": "---\ntitle: Arrow up-right\ncategories:\n  - Arrows\ntags:\n  - arrow\n---\n"
  },
  {
    "path": "docs/content/icons/arrow-up-short.md",
    "content": "---\ntitle: Arrow up-short\ncategories:\n  - Arrows\ntags:\n  - arrow\n---\n"
  },
  {
    "path": "docs/content/icons/arrow-up-square-fill.md",
    "content": "---\ntitle: Arrow up square fill\ncategories:\n  - Shape arrows\ntags:\n  - arrow\n  - square\n---\n"
  },
  {
    "path": "docs/content/icons/arrow-up-square.md",
    "content": "---\ntitle: Arrow up square\ncategories:\n  - Shape arrows\ntags:\n  - arrow\n  - square\n---\n"
  },
  {
    "path": "docs/content/icons/arrow-up.md",
    "content": "---\ntitle: Arrow up\ncategories:\n  - Arrows\ntags:\n  - arrow\n---\n"
  },
  {
    "path": "docs/content/icons/arrows-angle-contract.md",
    "content": "---\ntitle: Arrows angle contract\ncategories:\n  - Arrows\ntags:\n  - arrow\n  - resize\n---\n"
  },
  {
    "path": "docs/content/icons/arrows-angle-expand.md",
    "content": "---\ntitle: Arrows angle expand\ncategories:\n  - Arrows\ntags:\n  - arrow\n  - resize\n---\n"
  },
  {
    "path": "docs/content/icons/arrows-collapse-vertical.md",
    "content": "---\ntitle: Arrows collapse vertical\ncategories:\n  - Arrows\ntags:\n  - arrow\n  - resize\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/arrows-collapse.md",
    "content": "---\ntitle: Arrows collapse\ncategories:\n  - Arrows\ntags:\n  - arrow\n---\n"
  },
  {
    "path": "docs/content/icons/arrows-expand-vertical.md",
    "content": "---\ntitle: Arrows expand vertical\ncategories:\n  - Arrows\ntags:\n  - arrow\n  - resize\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/arrows-expand.md",
    "content": "---\ntitle: Arrows expand\ncategories:\n  - Arrows\ntags:\n  - arrow\n---\n"
  },
  {
    "path": "docs/content/icons/arrows-fullscreen.md",
    "content": "---\ntitle: Arrows fullscreen\ncategories:\n  - Arrows\ntags:\n  - arrow\n---\n"
  },
  {
    "path": "docs/content/icons/arrows-move.md",
    "content": "---\ntitle: Arrows move\ncategories:\n  - Arrows\ntags:\n  - arrow\n  - cursor\n  - move\n---\n"
  },
  {
    "path": "docs/content/icons/arrows-vertical.md",
    "content": "---\ntitle: Arrows vertical\ncategories:\n  - Arrows\ntags:\n  - arrow\n  - resize\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/arrows.md",
    "content": "---\ntitle: Arrows\ncategories:\n  - Arrows\ntags:\n  - arrow\n  - resize\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/aspect-ratio-fill.md",
    "content": "---\ntitle: Aspect ratio fill\ncategories:\n  - Media\ntags:\n  - size\n  - resize\n  - crop\n  - dimensions\n---\n"
  },
  {
    "path": "docs/content/icons/aspect-ratio.md",
    "content": "---\ntitle: Aspect ratio\ncategories:\n  - Media\ntags:\n  - size\n  - resize\n  - crop\n  - dimensions\n---\n"
  },
  {
    "path": "docs/content/icons/asterisk.md",
    "content": "---\ntitle: Asterisk\ncategories:\n  - Typography\ntags:\n  - asterisks\n  - star\n  - math\n---\n"
  },
  {
    "path": "docs/content/icons/at.md",
    "content": "---\ntitle: At\ncategories:\n  - Communications\ntags:\n  - mention\n  - sign\n---\n"
  },
  {
    "path": "docs/content/icons/award-fill.md",
    "content": "---\ntitle: Award fill\ncategories:\n  - Real world\ntags:\n  - prize\n  - rosette\n---\n"
  },
  {
    "path": "docs/content/icons/award.md",
    "content": "---\ntitle: Award\ncategories:\n  - Real world\ntags:\n  - prize\n  - rosette\n---\n"
  },
  {
    "path": "docs/content/icons/back.md",
    "content": "---\ntitle: Back\ncategories:\n  - Graphics\ntags:\n  - backward\n  - layer\n---\n"
  },
  {
    "path": "docs/content/icons/backpack-fill.md",
    "content": "---\ntitle: Backpack fill\ncategories:\n  - Travel\ntags:\n  - luggage\n  - bags\n  - carry-on\n  - student\n  - education\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/backpack.md",
    "content": "---\ntitle: Backpack\ncategories:\n  - Travel\ntags:\n  - luggage\n  - bags\n  - carry-on\n  - student\n  - education\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/backpack2-fill.md",
    "content": "---\ntitle: Backpack2 fill\ncategories:\n  - Travel\ntags:\n  - luggage\n  - bags\n  - carry-on\n  - student\n  - education\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/backpack2.md",
    "content": "---\ntitle: Backpack2\ncategories:\n  - Travel\ntags:\n  - luggage\n  - bags\n  - carry-on\n  - student\n  - education\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/backpack3-fill.md",
    "content": "---\ntitle: Backpack3 fill\ncategories:\n  - Travel\ntags:\n  - luggage\n  - bags\n  - carry-on\n  - student\n  - education\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/backpack3.md",
    "content": "---\ntitle: Backpack3\ncategories:\n  - Travel\ntags:\n  - luggage\n  - bags\n  - carry-on\n  - student\n  - education\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/backpack4-fill.md",
    "content": "---\ntitle: Backpack4 fill\ncategories:\n  - Travel\ntags:\n  - luggage\n  - bags\n  - carry-on\n  - student\n  - education\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/backpack4.md",
    "content": "---\ntitle: Backpack4\ncategories:\n  - Travel\ntags:\n  - luggage\n  - bags\n  - carry-on\n  - student\n  - education\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/backspace-fill.md",
    "content": "---\ntitle: Backspace fill\ncategories:\n  - UI and keyboard\ntags:\n  - key\n---\n"
  },
  {
    "path": "docs/content/icons/backspace-reverse-fill.md",
    "content": "---\ntitle: Backspace reverse fill\ncategories:\n  - UI and keyboard\ntags:\n  - key\n---\n"
  },
  {
    "path": "docs/content/icons/backspace-reverse.md",
    "content": "---\ntitle: Backspace reverse\ncategories:\n  - UI and keyboard\ntags:\n  - key\n---\n"
  },
  {
    "path": "docs/content/icons/backspace.md",
    "content": "---\ntitle: Backspace\ncategories:\n  - UI and keyboard\ntags:\n  - key\n---\n"
  },
  {
    "path": "docs/content/icons/badge-3d-fill.md",
    "content": "---\ntitle: Badge 3d fill\ncategories:\n  - Badges\ntags:\n  - 3d\n  - display\n  - dimension\n---\n"
  },
  {
    "path": "docs/content/icons/badge-3d.md",
    "content": "---\ntitle: Badge 3d\ncategories:\n  - Badges\ntags:\n  - 3d\n  - display\n  - dimension\n---\n"
  },
  {
    "path": "docs/content/icons/badge-4k-fill.md",
    "content": "---\ntitle: Badge 4k fill\ncategories:\n  - Badges\ntags:\n  - 4k\n  - display\n  - resolution\n  - retina\n---\n"
  },
  {
    "path": "docs/content/icons/badge-4k.md",
    "content": "---\ntitle: Badge 4k\ncategories:\n  - Badges\ntags:\n  - 4k\n  - display\n  - resolution\n  - retina\n---\n"
  },
  {
    "path": "docs/content/icons/badge-8k-fill.md",
    "content": "---\ntitle: Badge 8k fill\ncategories:\n  - Badges\ntags:\n  - 4k\n  - display\n  - resolution\n  - retina\n---\n"
  },
  {
    "path": "docs/content/icons/badge-8k.md",
    "content": "---\ntitle: Badge 8k\ncategories:\n  - Badges\ntags:\n  - 4k\n  - display\n  - resolution\n  - retina\n---\n"
  },
  {
    "path": "docs/content/icons/badge-ad-fill.md",
    "content": "---\ntitle: Badge ad fill\ncategories:\n  - Badges\ntags:\n  - advertisement\n---\n"
  },
  {
    "path": "docs/content/icons/badge-ad.md",
    "content": "---\ntitle: Badge ad\ncategories:\n  - Badges\ntags:\n  - advertisement\n---\n"
  },
  {
    "path": "docs/content/icons/badge-ar-fill.md",
    "content": "---\ntitle: Badge ar fill\ncategories:\n  - Badges\ntags:\n  - augmented\n  - reality\n  - ar\n---\n"
  },
  {
    "path": "docs/content/icons/badge-ar.md",
    "content": "---\ntitle: Badge ar\ncategories:\n  - Badges\ntags:\n  - augmented\n  - reality\n  - ar\n---\n"
  },
  {
    "path": "docs/content/icons/badge-cc-fill.md",
    "content": "---\ntitle: Badge cc fill\ncategories:\n  - Badges\ntags:\n  - \"closed captioning\"\n---\n"
  },
  {
    "path": "docs/content/icons/badge-cc.md",
    "content": "---\ntitle: Badge cc\ncategories:\n  - Badges\ntags:\n  - \"closed captioning\"\n---\n"
  },
  {
    "path": "docs/content/icons/badge-hd-fill.md",
    "content": "---\ntitle: Badge hd fill\ncategories:\n  - Badges\ntags:\n  - display\n  - resolution\n  - \"high definition\"\n---\n"
  },
  {
    "path": "docs/content/icons/badge-hd.md",
    "content": "---\ntitle: Badge hd\ncategories:\n  - Badges\ntags:\n  - display\n  - resolution\n  - \"high definition\"\n---\n"
  },
  {
    "path": "docs/content/icons/badge-sd-fill.md",
    "content": "---\ntitle: Badge SD fill\ncategories:\n  - Badges\ntags:\n  - display\n  - resolution\n  - \"standard definition\"\n---\n"
  },
  {
    "path": "docs/content/icons/badge-sd.md",
    "content": "---\ntitle: Badge Sd\ncategories:\n  - Badges\ntags:\n  - display\n  - resolution\n  - \"standard definition\"\n---\n"
  },
  {
    "path": "docs/content/icons/badge-tm-fill.md",
    "content": "---\ntitle: Badge tm fill\ncategories:\n  - Badges\ntags:\n  - trademark\n---\n"
  },
  {
    "path": "docs/content/icons/badge-tm.md",
    "content": "---\ntitle: Badge tm\ncategories:\n  - Badges\ntags:\n  - trademark\n---\n"
  },
  {
    "path": "docs/content/icons/badge-vo-fill.md",
    "content": "---\ntitle: Badge vo fill\ncategories:\n  - Badges\ntags:\n  - voiceover\n  - accessibility\n---\n"
  },
  {
    "path": "docs/content/icons/badge-vo.md",
    "content": "---\ntitle: Badge vo\ncategories:\n  - Badges\ntags:\n  - voiceover\n  - accessibility\n---\n"
  },
  {
    "path": "docs/content/icons/badge-vr-fill.md",
    "content": "---\ntitle: Badge vr fill\ncategories:\n  - Badges\ntags:\n  - virtual\n  - reality\n  - vr\n---\n"
  },
  {
    "path": "docs/content/icons/badge-vr.md",
    "content": "---\ntitle: Badge vr\ncategories:\n  - Badges\ntags:\n  - virtual\n  - reality\n  - vr\n---\n"
  },
  {
    "path": "docs/content/icons/badge-wc-fill.md",
    "content": "---\ntitle: Badge wc fill\ncategories:\n  - Badges\ntags:\n  - wash closet\n  - wc\n---\n"
  },
  {
    "path": "docs/content/icons/badge-wc.md",
    "content": "---\ntitle: Badge wc\ncategories:\n  - Badges\ntags:\n  - wash closet\n  - wc\n---\n"
  },
  {
    "path": "docs/content/icons/bag-check-fill.md",
    "content": "---\ntitle: Bag check fill\ncategories:\n  - Commerce\ntags:\n  - shopping\n  - checkout\n  - check\n  - cart\n  - basket\n  - bag\n---\n"
  },
  {
    "path": "docs/content/icons/bag-check.md",
    "content": "---\ntitle: Bag check\ncategories:\n  - Commerce\ntags:\n  - shopping\n  - checkout\n  - check\n  - cart\n  - basket\n  - bag\n---\n"
  },
  {
    "path": "docs/content/icons/bag-dash-fill.md",
    "content": "---\ntitle: Bag dash fill\ncategories:\n  - Commerce\ntags:\n  - shopping\n  - checkout\n  - check\n  - cart\n  - basket\n  - bag\n---\n"
  },
  {
    "path": "docs/content/icons/bag-dash.md",
    "content": "---\ntitle: Bag dash\ncategories:\n  - Commerce\ntags:\n  - shopping\n  - checkout\n  - check\n  - cart\n  - basket\n  - bag\n---\n"
  },
  {
    "path": "docs/content/icons/bag-fill.md",
    "content": "---\ntitle: Bag fill\ncategories:\n  - Commerce\ntags:\n  - shopping\n  - cart\n  - purchase\n  - buy\n---\n"
  },
  {
    "path": "docs/content/icons/bag-heart-fill.md",
    "content": "---\ntitle: Bag heart fill\ncategories:\n  - Commerce\ntags:\n  - shopping\n  - cart\n  - purchase\n  - buy\n  - valentine\n  - love\n---\n"
  },
  {
    "path": "docs/content/icons/bag-heart.md",
    "content": "---\ntitle: Bag heart\ncategories:\n  - Commerce\ntags:\n  - shopping\n  - cart\n  - purchase\n  - buy\n  - valentine\n  - love\n---\n"
  },
  {
    "path": "docs/content/icons/bag-plus-fill.md",
    "content": "---\ntitle: Bag plus fill\ncategories:\n  - Commerce\ntags:\n  - shopping\n  - add\n  - cart\n  - basket\n  - bag\n---\n"
  },
  {
    "path": "docs/content/icons/bag-plus.md",
    "content": "---\ntitle: Bag plus\ncategories:\n  - Commerce\ntags:\n  - shopping\n  - checkout\n  - check\n  - cart\n  - basket\n  - bag\n---\n"
  },
  {
    "path": "docs/content/icons/bag-x-fill.md",
    "content": "---\ntitle: Bag x fill\ncategories:\n  - Commerce\ntags:\n  - shopping\n  - checkout\n  - check\n  - cart\n  - basket\n  - bag\n---\n"
  },
  {
    "path": "docs/content/icons/bag-x.md",
    "content": "---\ntitle: Bag x\ncategories:\n  - Commerce\ntags:\n  - shopping\n  - checkout\n  - check\n  - cart\n  - basket\n  - bag\n---\n"
  },
  {
    "path": "docs/content/icons/bag.md",
    "content": "---\ntitle: Bag\ncategories:\n  - Commerce\ntags:\n  - shopping\n  - cart\n  - purchase\n  - buy\n---\n"
  },
  {
    "path": "docs/content/icons/balloon-fill.md",
    "content": "---\ntitle: Balloon fill\ncategories:\n  - Real world\ntags:\n  - birthday\n---\n"
  },
  {
    "path": "docs/content/icons/balloon-heart-fill.md",
    "content": "---\ntitle: Balloon heart fill\ncategories:\n  - Real world\n  - Love\ntags:\n  - birthday\n  - valentine\n  - love\n---\n"
  },
  {
    "path": "docs/content/icons/balloon-heart.md",
    "content": "---\ntitle: Balloon heart\ncategories:\n  - Real world\n  - Love\ntags:\n  - birthday\n  - valentine\n  - love\n---\n"
  },
  {
    "path": "docs/content/icons/balloon.md",
    "content": "---\ntitle: Balloon\ncategories:\n  - Real world\ntags:\n  - birthday\n---\n"
  },
  {
    "path": "docs/content/icons/ban-fill.md",
    "content": "---\ntitle: Ban fill\ncategories:\n  - Real world\ntags:\n  - no\n  - \"not allowed\"\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/ban.md",
    "content": "---\ntitle: Ban\ncategories:\n  - Real world\ntags:\n  - no\n  - \"not allowed\"\n  - block\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/bandaid-fill.md",
    "content": "---\ntitle: Bandaid fill\ncategories:\n  - Real world\ntags:\n  - bandage\n  - health\n---\n"
  },
  {
    "path": "docs/content/icons/bandaid.md",
    "content": "---\ntitle: Bandaid\ncategories:\n  - Real world\ntags:\n  - bandage\n  - health\n---\n"
  },
  {
    "path": "docs/content/icons/bank.md",
    "content": "---\ntitle: Bank\ncategories:\n  - Commerce\ntags:\n  - money\n  - finance\n  - banking\n  - market\n  - temple\n---\n"
  },
  {
    "path": "docs/content/icons/bank2.md",
    "content": "---\ntitle: Bank2\ncategories:\n  - Commerce\ntags:\n  - money\n  - finance\n  - banking\n  - market\n  - temple\n---\n"
  },
  {
    "path": "docs/content/icons/bar-chart-fill.md",
    "content": "---\ntitle: Bar chart fill\ncategories:\n  - Data\ntags:\n  - chart\n  - graph\n  - analytics\n---\n"
  },
  {
    "path": "docs/content/icons/bar-chart-line-fill.md",
    "content": "---\ntitle: Bar chart line fill\ncategories:\n  - Data\ntags:\n  - chart\n  - graph\n  - analytics\n---\n"
  },
  {
    "path": "docs/content/icons/bar-chart-line.md",
    "content": "---\ntitle: Bar chart line\ncategories:\n  - Data\ntags:\n  - chart\n  - graph\n  - analytics\n---\n"
  },
  {
    "path": "docs/content/icons/bar-chart-steps.md",
    "content": "---\ntitle: Bar chart steps\ncategories:\n  - Data\ntags:\n  - chart\n  - graph\n  - analytics\n---\n"
  },
  {
    "path": "docs/content/icons/bar-chart.md",
    "content": "---\ntitle: Bar chart\ncategories:\n  - Data\ntags:\n  - chart\n  - graph\n  - analytics\n---\n"
  },
  {
    "path": "docs/content/icons/basket-fill.md",
    "content": "---\ntitle: Basket fill\ncategories:\n  - Commerce\ntags:\n  - shopping\n  - checkout\n  - check\n  - cart\n  - basket\n  - bag\n---\n"
  },
  {
    "path": "docs/content/icons/basket.md",
    "content": "---\ntitle: Basket\ncategories:\n  - Commerce\ntags:\n  - shopping\n  - checkout\n  - check\n  - cart\n  - basket\n  - bag\n---\n"
  },
  {
    "path": "docs/content/icons/basket2-fill.md",
    "content": "---\ntitle: Basket2 fill\ncategories:\n  - Commerce\ntags:\n  - shopping\n  - checkout\n  - check\n  - cart\n  - basket\n  - bag\n---\n"
  },
  {
    "path": "docs/content/icons/basket2.md",
    "content": "---\ntitle: Basket2\ncategories:\n  - Commerce\ntags:\n  - shopping\n  - checkout\n  - check\n  - cart\n  - basket\n  - bag\n---\n"
  },
  {
    "path": "docs/content/icons/basket3-fill.md",
    "content": "---\ntitle: Basket3 fill\ncategories:\n  - Commerce\ntags:\n  - shopping\n  - checkout\n  - check\n  - cart\n  - basket\n  - bag\n---\n"
  },
  {
    "path": "docs/content/icons/basket3.md",
    "content": "---\ntitle: Basket3\ncategories:\n  - Commerce\ntags:\n  - shopping\n  - checkout\n  - check\n  - cart\n  - basket\n  - bag\n---\n"
  },
  {
    "path": "docs/content/icons/battery-charging.md",
    "content": "---\ntitle: Battery charging\ncategories:\n  - Devices\ntags:\n  - power\n  - charge\n---\n"
  },
  {
    "path": "docs/content/icons/battery-full.md",
    "content": "---\ntitle: Battery full\ncategories:\n  - Devices\ntags:\n  - power\n  - charge\n---\n"
  },
  {
    "path": "docs/content/icons/battery-half.md",
    "content": "---\ntitle: Battery half\ncategories:\n  - Devices\ntags:\n  - power\n  - charge\n---\n"
  },
  {
    "path": "docs/content/icons/battery-low.md",
    "content": "---\ntitle: Battery low\ncategories:\n  - Devices\ntags:\n  - power\n  - charge\n---\n"
  },
  {
    "path": "docs/content/icons/battery.md",
    "content": "---\ntitle: Battery\ncategories:\n  - Devices\ntags:\n  - power\n  - charge\n---\n"
  },
  {
    "path": "docs/content/icons/beaker-fill.md",
    "content": "---\ntitle: Beaker fill\ncategories:\n  - Real world\ntags:\n  - beaker\n  - science\n  - measure\n  - experiment\n---\n"
  },
  {
    "path": "docs/content/icons/beaker.md",
    "content": "---\ntitle: Beaker\ncategories:\n  - Real world\ntags:\n  - beaker\n  - science\n  - measure\n  - experiment\n---\n"
  },
  {
    "path": "docs/content/icons/behance.md",
    "content": "---\ntitle: Behance\ncategories:\n  - Brand\ntags:\n  - social\n---\n"
  },
  {
    "path": "docs/content/icons/bell-fill.md",
    "content": "---\ntitle: Bell fill\ncategories:\n  - Communications\ntags:\n  - notification\n  - clock\n---\n"
  },
  {
    "path": "docs/content/icons/bell-slash-fill.md",
    "content": "---\ntitle: Bell slash fill\ncategories:\n  - Communications\ntags:\n  - notification\n  - silenced\n  - clock\n---\n"
  },
  {
    "path": "docs/content/icons/bell-slash.md",
    "content": "---\ntitle: Bell slash\ncategories:\n  - Communications\ntags:\n  - notification\n  - silenced\n  - clock\n---\n"
  },
  {
    "path": "docs/content/icons/bell.md",
    "content": "---\ntitle: Bell\ncategories:\n  - Communications\ntags:\n  - notification\n  - clock\n---\n"
  },
  {
    "path": "docs/content/icons/bezier.md",
    "content": "---\ntitle: Bezier\ncategories:\n  - Graphics\ntags:\n  - graphics\n  - vector\n  - pen\n---\n"
  },
  {
    "path": "docs/content/icons/bezier2.md",
    "content": "---\ntitle: Bezier2\ncategories:\n  - Graphics\ntags:\n  - graphics\n  - vector\n  - pen\n---\n"
  },
  {
    "path": "docs/content/icons/bicycle.md",
    "content": "---\ntitle: Bicycle\ncategories:\n  - Real world\ntags:\n  - bike\n  - riding\n  - bicycling\n---\n"
  },
  {
    "path": "docs/content/icons/bing.md",
    "content": "---\ntitle: Bing\ncategories:\n  - Brand\ntags:\n  - search\n  - microsoft\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/binoculars-fill.md",
    "content": "---\ntitle: Binoculars fill\ncategories:\n  - Real world\ntags:\n  - distance\n  - view\n  - search\n---\n"
  },
  {
    "path": "docs/content/icons/binoculars.md",
    "content": "---\ntitle: Binoculars\ncategories:\n  - Real world\ntags:\n  - distance\n  - view\n  - search\n---\n"
  },
  {
    "path": "docs/content/icons/blockquote-left.md",
    "content": "---\ntitle: Blockquote left\ncategories:\n  - Typography\ntags:\n  - text\n  - type\n---\n"
  },
  {
    "path": "docs/content/icons/blockquote-right.md",
    "content": "---\ntitle: Blockquote right\ncategories:\n  - Typography\ntags:\n  - text\n  - type\n---\n"
  },
  {
    "path": "docs/content/icons/bluesky.md",
    "content": "---\ntitle: Bluesky\ncategories:\n  - Brand\ntags:\n  - social\n  - chat\n  - bsky\n---\n"
  },
  {
    "path": "docs/content/icons/bluetooth.md",
    "content": "---\ntitle: Bluetooth\ncategories:\n  - Brand\ntags:\n  - wireless\n---\n"
  },
  {
    "path": "docs/content/icons/body-text.md",
    "content": "---\ntitle: Body text\ncategories:\n  - Typography\ntags:\n  - content\n---\n"
  },
  {
    "path": "docs/content/icons/book-fill.md",
    "content": "---\ntitle: Book fill\ncategories:\n  - Real world\ntags:\n  - novel\n  - read\n  - magazine\n---\n"
  },
  {
    "path": "docs/content/icons/book-half.md",
    "content": "---\ntitle: Book half\ncategories:\n  - Real world\ntags:\n  - novel\n  - read\n  - magazine\n---\n"
  },
  {
    "path": "docs/content/icons/book.md",
    "content": "---\ntitle: Book\ncategories:\n  - Real world\ntags:\n  - novel\n  - read\n  - magazine\n---\n"
  },
  {
    "path": "docs/content/icons/bookmark-check-fill.md",
    "content": "---\ntitle: Bookmark check fill\ncategories:\n  - Miscellaneous\ntags:\n  - reading\n  - book\n  - label\n  - tag\n  - category\n  - save\n---\n"
  },
  {
    "path": "docs/content/icons/bookmark-check.md",
    "content": "---\ntitle: Bookmark check\ncategories:\n  - Miscellaneous\ntags:\n  - reading\n  - book\n  - label\n  - tag\n  - category\n  - save\n---\n"
  },
  {
    "path": "docs/content/icons/bookmark-dash-fill.md",
    "content": "---\ntitle: Bookmark dash fill\ncategories:\n  - Miscellaneous\ntags:\n  - reading\n  - book\n  - label\n  - tag\n  - category\n  - save\n---\n"
  },
  {
    "path": "docs/content/icons/bookmark-dash.md",
    "content": "---\ntitle: Bookmark dash\ncategories:\n  - Miscellaneous\ntags:\n  - reading\n  - book\n  - label\n  - tag\n  - category\n  - save\n---\n"
  },
  {
    "path": "docs/content/icons/bookmark-fill.md",
    "content": "---\ntitle: Bookmark fill\ncategories:\n  - Miscellaneous\ntags:\n  - reading\n  - book\n  - label\n  - tag\n  - category\n  - save\n---\n"
  },
  {
    "path": "docs/content/icons/bookmark-heart-fill.md",
    "content": "---\ntitle: Bookmark heart fill\ncategories:\n  - Miscellaneous\ntags:\n  - reading\n  - book\n  - label\n  - tag\n  - category\n  - save\n---\n"
  },
  {
    "path": "docs/content/icons/bookmark-heart.md",
    "content": "---\ntitle: Bookmark heart\ncategories:\n  - Miscellaneous\ntags:\n  - reading\n  - book\n  - label\n  - tag\n  - category\n  - save\n---\n"
  },
  {
    "path": "docs/content/icons/bookmark-plus-fill.md",
    "content": "---\ntitle: Bookmark plus fill\ncategories:\n  - Miscellaneous\ntags:\n  - reading\n  - book\n  - label\n  - tag\n  - category\n  - save\n---\n"
  },
  {
    "path": "docs/content/icons/bookmark-plus.md",
    "content": "---\ntitle: Bookmark plus\ncategories:\n  - Miscellaneous\ntags:\n  - reading\n  - book\n  - label\n  - tag\n  - category\n  - save\n---\n"
  },
  {
    "path": "docs/content/icons/bookmark-star-fill.md",
    "content": "---\ntitle: Bookmark star fill\ncategories:\n  - Miscellaneous\ntags:\n  - reading\n  - book\n  - label\n  - tag\n  - category\n  - save\n---\n"
  },
  {
    "path": "docs/content/icons/bookmark-star.md",
    "content": "---\ntitle: Bookmark star\ncategories:\n  - Miscellaneous\ntags:\n  - reading\n  - book\n  - label\n  - tag\n  - category\n  - save\n---\n"
  },
  {
    "path": "docs/content/icons/bookmark-x-fill.md",
    "content": "---\ntitle: Bookmark x fill\ncategories:\n  - Miscellaneous\ntags:\n  - reading\n  - book\n  - label\n  - tag\n  - category\n  - save\n---\n"
  },
  {
    "path": "docs/content/icons/bookmark-x.md",
    "content": "---\ntitle: Bookmark x\ncategories:\n  - Miscellaneous\ntags:\n  - reading\n  - book\n  - label\n  - tag\n  - category\n  - save\n---\n"
  },
  {
    "path": "docs/content/icons/bookmark.md",
    "content": "---\ntitle: Bookmark\ncategories:\n  - Miscellaneous\ntags:\n  - reading\n  - book\n  - label\n  - tag\n  - category\n  - save\n---\n"
  },
  {
    "path": "docs/content/icons/bookmarks-fill.md",
    "content": "---\ntitle: Bookmarks fill\ncategories:\n  - Miscellaneous\ntags:\n  - reading\n  - book\n  - label\n  - tag\n  - category\n  - save\n---\n"
  },
  {
    "path": "docs/content/icons/bookmarks.md",
    "content": "---\ntitle: Bookmarks\ncategories:\n  - Miscellaneous\ntags:\n  - reading\n  - book\n  - label\n  - tag\n  - category\n  - save\n---\n"
  },
  {
    "path": "docs/content/icons/bookshelf.md",
    "content": "---\ntitle: Bookshelf\ncategories:\n  - Real world\ntags:\n  - shelf\n---\n"
  },
  {
    "path": "docs/content/icons/boombox-fill.md",
    "content": "---\ntitle: Boombox fill\ncategories:\n  - Real world\ntags:\n  - music\n---\n"
  },
  {
    "path": "docs/content/icons/boombox.md",
    "content": "---\ntitle: Boombox\ncategories:\n  - Real world\ntags:\n  - music\n---\n"
  },
  {
    "path": "docs/content/icons/bootstrap-fill.md",
    "content": "---\ntitle: Bootstrap fill\ncategories:\n  - Bootstrap\ntags:\n  - bootstrap\n---\n"
  },
  {
    "path": "docs/content/icons/bootstrap-reboot.md",
    "content": "---\ntitle: Bootstrap Reboot\ncategories:\n  - Bootstrap\ntags:\n  - bootstrap\n---\n"
  },
  {
    "path": "docs/content/icons/bootstrap.md",
    "content": "---\ntitle: Bootstrap\ncategories:\n  - Bootstrap\ntags:\n  - bootstrap\n---\n"
  },
  {
    "path": "docs/content/icons/border-all.md",
    "content": "---\ntitle: Border all\ncategories:\n  - UI and keyboard\ntags:\n  - borders\n---\n"
  },
  {
    "path": "docs/content/icons/border-bottom.md",
    "content": "---\ntitle: Border bottom\ncategories:\n  - UI and keyboard\ntags:\n  - borders\n---\n"
  },
  {
    "path": "docs/content/icons/border-center.md",
    "content": "---\ntitle: Border center\ncategories:\n  - UI and keyboard\ntags:\n  - borders\n  - centre\n---\n"
  },
  {
    "path": "docs/content/icons/border-inner.md",
    "content": "---\ntitle: Border inner\ncategories:\n  - UI and keyboard\ntags:\n  - borders\n---\n"
  },
  {
    "path": "docs/content/icons/border-left.md",
    "content": "---\ntitle: Border left\ncategories:\n  - UI and keyboard\ntags:\n  - borders\n---\n"
  },
  {
    "path": "docs/content/icons/border-middle.md",
    "content": "---\ntitle: Border middle\ncategories:\n  - UI and keyboard\ntags:\n  - borders\n---\n"
  },
  {
    "path": "docs/content/icons/border-outer.md",
    "content": "---\ntitle: Border outer\ncategories:\n  - UI and keyboard\ntags:\n  - borders\n---\n"
  },
  {
    "path": "docs/content/icons/border-right.md",
    "content": "---\ntitle: Border right\ncategories:\n  - UI and keyboard\ntags:\n  - borders\n---\n"
  },
  {
    "path": "docs/content/icons/border-style.md",
    "content": "---\ntitle: Border style\ncategories:\n  - Typography\ntags:\n  - borders\n  - wysiwyg\n---\n"
  },
  {
    "path": "docs/content/icons/border-top.md",
    "content": "---\ntitle: Border top\ncategories:\n  - UI and keyboard\ntags:\n  - borders\n---\n"
  },
  {
    "path": "docs/content/icons/border-width.md",
    "content": "---\ntitle: Border width\ncategories:\n  - Typography\ntags:\n  - borders\n  - wysiwyg\n---\n"
  },
  {
    "path": "docs/content/icons/border.md",
    "content": "---\ntitle: Border\ncategories:\n  - UI and keyboard\ntags:\n  - borders\n---\n"
  },
  {
    "path": "docs/content/icons/bounding-box-circles.md",
    "content": "---\ntitle: Bounding box circles\ncategories:\n  - Graphics\ntags:\n  - text\n  - shape\n  - resize\n  - dimensions\n---\n"
  },
  {
    "path": "docs/content/icons/bounding-box.md",
    "content": "---\ntitle: Bounding box\ncategories:\n  - Graphics\ntags:\n  - text\n  - shape\n  - resize\n  - dimensions\n---\n"
  },
  {
    "path": "docs/content/icons/box-arrow-down-left.md",
    "content": "---\ntitle: Box arrow bottom-left\ncategories:\n  - Box arrows\ntags:\n  - arrow\n---\n"
  },
  {
    "path": "docs/content/icons/box-arrow-down-right.md",
    "content": "---\ntitle: Box arrow bottom-right\ncategories:\n  - Box arrows\ntags:\n  - arrow\n---\n"
  },
  {
    "path": "docs/content/icons/box-arrow-down.md",
    "content": "---\ntitle: Box arrow down\ncategories:\n  - Box arrows\ntags:\n  - arrow\n  - download\n  - save\n---\n"
  },
  {
    "path": "docs/content/icons/box-arrow-in-down-left.md",
    "content": "---\ntitle: Box arrow in down left\ncategories:\n  - Box arrows\ntags:\n  - arrow\n---\n"
  },
  {
    "path": "docs/content/icons/box-arrow-in-down-right.md",
    "content": "---\ntitle: Box arrow in down right\ncategories:\n  - Box arrows\ntags:\n  - arrow\n---\n"
  },
  {
    "path": "docs/content/icons/box-arrow-in-down.md",
    "content": "---\ntitle: Box arrow in down\ncategories:\n  - Box arrows\ntags:\n  - arrow\n  - upload\n---\n"
  },
  {
    "path": "docs/content/icons/box-arrow-in-left.md",
    "content": "---\ntitle: Box arrow in left\ncategories:\n  - Box arrows\ntags:\n  - arrow\n  - login\n  - signin\n  - enter\n---\n"
  },
  {
    "path": "docs/content/icons/box-arrow-in-right.md",
    "content": "---\ntitle: Box arrow in right\ncategories:\n  - Box arrows\ntags:\n  - arrow\n  - login\n  - signin\n  - enter\n---\n"
  },
  {
    "path": "docs/content/icons/box-arrow-in-up-left.md",
    "content": "---\ntitle: Box arrow in up left\ncategories:\n  - Box arrows\ntags:\n  - arrow\n---\n"
  },
  {
    "path": "docs/content/icons/box-arrow-in-up-right.md",
    "content": "---\ntitle: Box arrow in up right\ncategories:\n  - Box arrows\ntags:\n  - arrow\n---\n"
  },
  {
    "path": "docs/content/icons/box-arrow-in-up.md",
    "content": "---\ntitle: Box arrow in up\ncategories:\n  - Box arrows\ntags:\n  - arrow\n---\n"
  },
  {
    "path": "docs/content/icons/box-arrow-left.md",
    "content": "---\ntitle: Box arrow left\ncategories:\n  - Box arrows\ntags:\n  - arrow\n  - logout\n  - signout\n  - exit\n---\n"
  },
  {
    "path": "docs/content/icons/box-arrow-right.md",
    "content": "---\ntitle: Box arrow right\ncategories:\n  - Box arrows\ntags:\n  - arrow\n  - logout\n  - signout\n  - exit\n---\n"
  },
  {
    "path": "docs/content/icons/box-arrow-up-left.md",
    "content": "---\ntitle: Box arrow up-left\ncategories:\n  - Box arrows\ntags:\n  - arrow\n  - external link\n---\n"
  },
  {
    "path": "docs/content/icons/box-arrow-up-right.md",
    "content": "---\ntitle: Box arrow up-right\ncategories:\n  - Box arrows\ntags:\n  - arrow\n  - external link\n---\n"
  },
  {
    "path": "docs/content/icons/box-arrow-up.md",
    "content": "---\ntitle: Box arrow up\ncategories:\n  - Box arrows\ntags:\n  - arrow\n---\n"
  },
  {
    "path": "docs/content/icons/box-fill.md",
    "content": "---\ntitle: Box fill\ncategories:\n  - Real world\ntags:\n  - cardboard\n  - package\n---\n"
  },
  {
    "path": "docs/content/icons/box-seam-fill.md",
    "content": "---\ntitle: Box seam fill\ncategories:\n  - Real world\ntags:\n  - cardboard\n  - package\n---\n"
  },
  {
    "path": "docs/content/icons/box-seam.md",
    "content": "---\ntitle: Box seam\ncategories:\n  - Real world\ntags:\n  - cardboard\n  - package\n---\n"
  },
  {
    "path": "docs/content/icons/box.md",
    "content": "---\ntitle: Box\ncategories:\n  - Real world\ntags:\n  - cardboard\n  - package\n  - cube\n---\n"
  },
  {
    "path": "docs/content/icons/box2-fill.md",
    "content": "---\ntitle: Box2 fill\ncategories:\n  - Real world\n  - Love\ntags:\n  - cardboard\n  - package\n  - cube\n---\n"
  },
  {
    "path": "docs/content/icons/box2-heart-fill.md",
    "content": "---\ntitle: Box2 heart fill\ncategories:\n  - Real world\n  - Love\ntags:\n  - cardboard\n  - package\n  - cube\n  - gift\n  - valentine\n  - love\n---\n"
  },
  {
    "path": "docs/content/icons/box2-heart.md",
    "content": "---\ntitle: Box2 heart\ncategories:\n  - Real world\n  - Love\ntags:\n  - cardboard\n  - package\n  - cube\n  - gift\n  - valentine\n  - love\n---\n"
  },
  {
    "path": "docs/content/icons/box2.md",
    "content": "---\ntitle: Box2\ncategories:\n  - Real world\ntags:\n  - cardboard\n  - package\n  - cube\n---\n"
  },
  {
    "path": "docs/content/icons/boxes.md",
    "content": "---\ntitle: Boxes\ncategories:\n  - Real world\ntags:\n  - cardboard\n  - package\n  - cube\n---\n"
  },
  {
    "path": "docs/content/icons/braces-asterisk.md",
    "content": "---\ntitle: Braces asterisk\ncategories:\n  - Typography\ntags:\n  - text\n  - type\n  - code\n  - developer\n  - development\n  - software\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/braces.md",
    "content": "---\ntitle: Braces\ncategories:\n  - Typography\ntags:\n  - text\n  - type\n  - code\n  - developer\n  - development\n  - software\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/bricks.md",
    "content": "---\ntitle: Bricks\ncategories:\n  - Real world\ntags:\n  - wall\n  - firewall\n---\n"
  },
  {
    "path": "docs/content/icons/briefcase-fill.md",
    "content": "---\ntitle: Briefcase fill\ncategories:\n  - Real world\ntags:\n  - business\n  - bag\n  - baggage\n---\n"
  },
  {
    "path": "docs/content/icons/briefcase.md",
    "content": "---\ntitle: Briefcase\ncategories:\n  - Real world\ntags:\n  - business\n  - bag\n  - baggage\n---\n"
  },
  {
    "path": "docs/content/icons/brightness-alt-high-fill.md",
    "content": "---\ntitle: Brightness alt high fill\ncategories:\n  - UI and keyboard\ntags:\n  - brightness\n  - sun\n  - weather\n---\n"
  },
  {
    "path": "docs/content/icons/brightness-alt-high.md",
    "content": "---\ntitle: Brightness alt high\ncategories:\n  - UI and keyboard\ntags:\n  - brightness\n  - sun\n  - weather\n---\n"
  },
  {
    "path": "docs/content/icons/brightness-alt-low-fill.md",
    "content": "---\ntitle: Brightness alt low fill\ncategories:\n  - UI and keyboard\ntags:\n  - brightness\n  - sun\n  - weather\n---\n"
  },
  {
    "path": "docs/content/icons/brightness-alt-low.md",
    "content": "---\ntitle: Brightness alt low\ncategories:\n  - UI and keyboard\ntags:\n  - brightness\n  - sun\n  - weather\n---\n"
  },
  {
    "path": "docs/content/icons/brightness-high-fill.md",
    "content": "---\ntitle: Brightness high fill\ncategories:\n  - UI and keyboard\ntags:\n  - brightness\n  - sun\n  - weather\n---\n"
  },
  {
    "path": "docs/content/icons/brightness-high.md",
    "content": "---\ntitle: Brightness high\ncategories:\n  - UI and keyboard\ntags:\n  - brightness\n  - sun\n  - weather\n---\n"
  },
  {
    "path": "docs/content/icons/brightness-low-fill.md",
    "content": "---\ntitle: Brightness low fill\ncategories:\n  - UI and keyboard\ntags:\n  - brightness\n  - sun\n  - weather\n---\n"
  },
  {
    "path": "docs/content/icons/brightness-low.md",
    "content": "---\ntitle: Brightness low\ncategories:\n  - UI and keyboard\ntags:\n  - brightness\n  - sun\n  - weather\n---\n"
  },
  {
    "path": "docs/content/icons/brilliance.md",
    "content": "---\ntitle: Brilliance\ncategories:\n  - Graphics\ntags:\n  - photo\n  - editing\n  - image\n  - picture\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/broadcast-pin.md",
    "content": "---\ntitle: Broadcast pin\ncategories:\n  - Communications\ntags:\n  - radio\n  - \"radio wave\"\n  - amplify\n  - wavelength\n  - podcast\n---\n"
  },
  {
    "path": "docs/content/icons/broadcast.md",
    "content": "---\ntitle: Broadcast\ncategories:\n  - Communications\ntags:\n  - radio\n  - \"radio wave\"\n  - amplify\n  - wavelength\n---\n"
  },
  {
    "path": "docs/content/icons/browser-chrome.md",
    "content": "---\ntitle: Browser Chrome\ncategories:\n  - Brand\ntags:\n  - google\n  - webkit\n  - blink\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/browser-edge.md",
    "content": "---\ntitle: Browser Edge\ncategories:\n  - Brand\ntags:\n  - microsoft\n  - webkit\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/browser-firefox.md",
    "content": "---\ntitle: Browser Firefox\ncategories:\n  - Brand\ntags:\n  - gecko\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/browser-safari.md",
    "content": "---\ntitle: Browser Safari\ncategories:\n  - Brand\ntags:\n  - webkit\n  - apple\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/brush-fill.md",
    "content": "---\ntitle: Brush fill\ncategories:\n  - Tools\ntags:\n  - paint\n  - art\n---\n"
  },
  {
    "path": "docs/content/icons/brush.md",
    "content": "---\ntitle: Brush\ncategories:\n  - Tools\ntags:\n  - paint\n  - art\n---\n"
  },
  {
    "path": "docs/content/icons/bucket-fill.md",
    "content": "---\ntitle: Bucket fill\ncategories:\n  - Tools\ntags:\n  - tool\n  - pail\n---\n"
  },
  {
    "path": "docs/content/icons/bucket.md",
    "content": "---\ntitle: Bucket\ncategories:\n  - Tools\ntags:\n  - tool\n  - pail\n---\n"
  },
  {
    "path": "docs/content/icons/bug-fill.md",
    "content": "---\ntitle: Bug fill\ncategories:\n  - Real world\ntags:\n  - insect\n  - error\n---\n"
  },
  {
    "path": "docs/content/icons/bug.md",
    "content": "---\ntitle: Bug\ncategories:\n  - Real world\ntags:\n  - insect\n  - error\n---\n"
  },
  {
    "path": "docs/content/icons/building-add.md",
    "content": "---\ntitle: Building add\ncategories:\n  - Buildings\ntags:\n  - company\n  - enterprise\n  - organization\n  - office\n  - business\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/building-check.md",
    "content": "---\ntitle: Building check\ncategories:\n  - Buildings\ntags:\n  - company\n  - enterprise\n  - organization\n  - office\n  - business\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/building-dash.md",
    "content": "---\ntitle: Building dash\ncategories:\n  - Buildings\ntags:\n  - company\n  - enterprise\n  - organization\n  - office\n  - business\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/building-down.md",
    "content": "---\ntitle: Building down\ncategories:\n  - Buildings\ntags:\n  - company\n  - enterprise\n  - organization\n  - office\n  - business\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/building-exclamation.md",
    "content": "---\ntitle: Building exclamation\ncategories:\n  - Buildings\ntags:\n  - company\n  - enterprise\n  - organization\n  - office\n  - business\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/building-fill-add.md",
    "content": "---\ntitle: Building fill add\ncategories:\n  - Buildings\ntags:\n  - company\n  - enterprise\n  - organization\n  - office\n  - business\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/building-fill-check.md",
    "content": "---\ntitle: Building fill check\ncategories:\n  - Buildings\ntags:\n  - company\n  - enterprise\n  - organization\n  - office\n  - business\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/building-fill-dash.md",
    "content": "---\ntitle: Building fill dash\ncategories:\n  - Buildings\ntags:\n  - company\n  - enterprise\n  - organization\n  - office\n  - business\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/building-fill-down.md",
    "content": "---\ntitle: Building fill down\ncategories:\n  - Buildings\ntags:\n  - company\n  - enterprise\n  - organization\n  - office\n  - business\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/building-fill-exclamation.md",
    "content": "---\ntitle: Building fill exclamation\ncategories:\n  - Buildings\ntags:\n  - company\n  - enterprise\n  - organization\n  - office\n  - business\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/building-fill-gear.md",
    "content": "---\ntitle: Building fill gear\ncategories:\n  - Buildings\ntags:\n  - company\n  - enterprise\n  - organization\n  - office\n  - business\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/building-fill-lock.md",
    "content": "---\ntitle: Building fill lock\ncategories:\n  - Buildings\ntags:\n  - company\n  - enterprise\n  - organization\n  - office\n  - business\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/building-fill-slash.md",
    "content": "---\ntitle: Building fill slash\ncategories:\n  - Buildings\ntags:\n  - company\n  - enterprise\n  - organization\n  - office\n  - business\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/building-fill-up.md",
    "content": "---\ntitle: Building fill up\ncategories:\n  - Buildings\ntags:\n  - company\n  - enterprise\n  - organization\n  - office\n  - business\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/building-fill-x.md",
    "content": "---\ntitle: Building fill x\ncategories:\n  - Buildings\ntags:\n  - company\n  - enterprise\n  - organization\n  - office\n  - business\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/building-fill.md",
    "content": "---\ntitle: Building fill\ncategories:\n  - Buildings\ntags:\n  - company\n  - enterprise\n  - organization\n  - office\n  - business\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/building-gear.md",
    "content": "---\ntitle: Building gear\ncategories:\n  - Buildings\ntags:\n  - company\n  - enterprise\n  - organization\n  - office\n  - business\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/building-lock.md",
    "content": "---\ntitle: Building lock\ncategories:\n  - Buildings\ntags:\n  - company\n  - enterprise\n  - organization\n  - office\n  - business\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/building-slash.md",
    "content": "---\ntitle: Building slash\ncategories:\n  - Buildings\ntags:\n  - company\n  - enterprise\n  - organization\n  - office\n  - business\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/building-up.md",
    "content": "---\ntitle: Building up\ncategories:\n  - Buildings\ntags:\n  - company\n  - enterprise\n  - organization\n  - office\n  - business\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/building-x.md",
    "content": "---\ntitle: Building x\ncategories:\n  - Buildings\ntags:\n  - company\n  - enterprise\n  - organization\n  - office\n  - business\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/building.md",
    "content": "---\ntitle: Building\ncategories:\n  - Buildings\ntags:\n  - company\n  - enterprise\n  - organization\n  - office\n  - business\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/buildings-fill.md",
    "content": "---\ntitle: Buildings fill\ncategories:\n  - Buildings\ntags:\n  - company\n  - enterprise\n  - organization\n  - office\n  - business\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/buildings.md",
    "content": "---\ntitle: Buildings\ncategories:\n  - Buildings\ntags:\n  - company\n  - enterprise\n  - organization\n  - office\n  - business\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/bullseye.md",
    "content": "---\ntitle: Bullseye\ncategories:\n  - Geo\ntags:\n  - target\n---\n"
  },
  {
    "path": "docs/content/icons/bus-front-fill.md",
    "content": "---\ntitle: Bus front fill\ncategories:\n  - Transportation\ntags:\n  - \"public transit\"\n  - commute\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/bus-front.md",
    "content": "---\ntitle: Bus front\ncategories:\n  - Transportation\ntags:\n  - \"public transit\"\n  - commute\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/c-circle-fill.md",
    "content": "---\ntitle: C circle fill\ncategories:\n  - Shapes\ntags:\n  - copyright\n---\n"
  },
  {
    "path": "docs/content/icons/c-circle.md",
    "content": "---\ntitle: C circle\ncategories:\n  - Shapes\ntags:\n  - copyright\n---\n"
  },
  {
    "path": "docs/content/icons/c-square-fill.md",
    "content": "---\ntitle: C square fill\ncategories:\n  - Shapes\ntags:\n  - copyright\n---\n"
  },
  {
    "path": "docs/content/icons/c-square.md",
    "content": "---\ntitle: C square\ncategories:\n  - Shapes\ntags:\n  - copyright\n---\n"
  },
  {
    "path": "docs/content/icons/cake-fill.md",
    "content": "---\ntitle: Cake fill\ncategories:\n  - Real world\ntags:\n  - birthday\n  - celebrate\n  - dessert\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/cake.md",
    "content": "---\ntitle: Cake\ncategories:\n  - Real world\ntags:\n  - birthday\n  - celebrate\n  - dessert\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/cake2-fill.md",
    "content": "---\ntitle: Cake2 fill\ncategories:\n  - Real world\ntags:\n  - birthday\n  - celebrate\n  - dessert\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/cake2.md",
    "content": "---\ntitle: Cake2\ncategories:\n  - Real world\ntags:\n  - birthday\n  - celebrate\n  - dessert\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/calculator-fill.md",
    "content": "---\ntitle: Calculator fill\ncategories:\n  - Devices\ntags:\n  - calculator\n  - math\n---\n"
  },
  {
    "path": "docs/content/icons/calculator.md",
    "content": "---\ntitle: Calculator\ncategories:\n  - Devices\ntags:\n  - calculator\n  - math\n---\n"
  },
  {
    "path": "docs/content/icons/calendar-check-fill.md",
    "content": "---\ntitle: Calendar check fill\ncategories:\n  - Date and time\ntags:\n  - date\n  - time\n  - month\n---\n"
  },
  {
    "path": "docs/content/icons/calendar-check.md",
    "content": "---\ntitle: Calendar check\ncategories:\n  - Date and time\ntags:\n  - date\n  - time\n  - month\n---\n"
  },
  {
    "path": "docs/content/icons/calendar-date-fill.md",
    "content": "---\ntitle: Calendar date fill\ncategories:\n  - Date and time\ntags:\n  - date\n  - time\n  - month\n---\n"
  },
  {
    "path": "docs/content/icons/calendar-date.md",
    "content": "---\ntitle: Calendar date\ncategories:\n  - Date and time\ntags:\n  - date\n  - time\n  - month\n---\n"
  },
  {
    "path": "docs/content/icons/calendar-day-fill.md",
    "content": "---\ntitle: Calendar day fill\ncategories:\n  - Date and time\ntags:\n  - date\n  - time\n  - month\n---\n"
  },
  {
    "path": "docs/content/icons/calendar-day.md",
    "content": "---\ntitle: Calendar day\ncategories:\n  - Date and time\ntags:\n  - date\n  - time\n  - month\n---\n"
  },
  {
    "path": "docs/content/icons/calendar-event-fill.md",
    "content": "---\ntitle: Calendar event fill\ncategories:\n  - Date and time\ntags:\n  - date\n  - time\n  - event\n  - invite\n---\n"
  },
  {
    "path": "docs/content/icons/calendar-event.md",
    "content": "---\ntitle: Calendar event\ncategories:\n  - Date and time\ntags:\n  - date\n  - time\n  - event\n  - invite\n---\n"
  },
  {
    "path": "docs/content/icons/calendar-fill.md",
    "content": "---\ntitle: Calendar fill\ncategories:\n  - Date and time\ntags:\n  - date\n  - time\n  - month\n---\n"
  },
  {
    "path": "docs/content/icons/calendar-heart-fill.md",
    "content": "---\ntitle: Calendar heart fill\ncategories:\n  - Date and time\n  - Love\ntags:\n  - date\n  - time\n  - month\n  - valentine\n  - date\n---\n"
  },
  {
    "path": "docs/content/icons/calendar-heart.md",
    "content": "---\ntitle: Calendar heart\ncategories:\n  - Date and time\n  - Love\ntags:\n  - date\n  - time\n  - month\n  - valentine\n  - date\n---\n"
  },
  {
    "path": "docs/content/icons/calendar-minus-fill.md",
    "content": "---\ntitle: Calendar minus fill\ncategories:\n  - Date and time\ntags:\n  - date\n  - time\n  - month\n---\n"
  },
  {
    "path": "docs/content/icons/calendar-minus.md",
    "content": "---\ntitle: Calendar minus\ncategories:\n  - Date and time\ntags:\n  - date\n  - time\n  - month\n---\n"
  },
  {
    "path": "docs/content/icons/calendar-month-fill.md",
    "content": "---\ntitle: Calendar month fill\ncategories:\n  - Date and time\ntags:\n  - date\n  - time\n  - month\n---\n"
  },
  {
    "path": "docs/content/icons/calendar-month.md",
    "content": "---\ntitle: Calendar month\ncategories:\n  - Date and time\ntags:\n  - date\n  - time\n  - month\n---\n"
  },
  {
    "path": "docs/content/icons/calendar-plus-fill.md",
    "content": "---\ntitle: Calendar plus fill\ncategories:\n  - Date and time\ntags:\n  - date\n  - time\n  - month\n---\n"
  },
  {
    "path": "docs/content/icons/calendar-plus.md",
    "content": "---\ntitle: Calendar plus\ncategories:\n  - Date and time\ntags:\n  - date\n  - time\n  - month\n---\n"
  },
  {
    "path": "docs/content/icons/calendar-range-fill.md",
    "content": "---\ntitle: Calendar range fill\ncategories:\n  - Date and time\ntags:\n  - dates\n  - timeline\n  - duration\n---\n"
  },
  {
    "path": "docs/content/icons/calendar-range.md",
    "content": "---\ntitle: Calendar range\ncategories:\n  - Date and time\ntags:\n  - dates\n  - timeline\n  - duration\n---\n"
  },
  {
    "path": "docs/content/icons/calendar-week-fill.md",
    "content": "---\ntitle: Calendar week fill\ncategories:\n  - Date and time\ntags:\n  - dates\n  - timeline\n  - duration\n  - week\n---\n"
  },
  {
    "path": "docs/content/icons/calendar-week.md",
    "content": "---\ntitle: Calendar week\ncategories:\n  - Date and time\ntags:\n  - dates\n  - timeline\n  - duration\n  - week\n---\n"
  },
  {
    "path": "docs/content/icons/calendar-x-fill.md",
    "content": "---\ntitle: Calendar x fill\ncategories:\n  - Date and time\ntags:\n  - date\n  - time\n  - month\n  - remove\n  - delete\n---\n"
  },
  {
    "path": "docs/content/icons/calendar-x.md",
    "content": "---\ntitle: Calendar x\ncategories:\n  - Date and time\ntags:\n  - date\n  - time\n  - month\n  - remove\n  - delete\n---\n"
  },
  {
    "path": "docs/content/icons/calendar.md",
    "content": "---\ntitle: Calendar\ncategories:\n  - Date and time\ntags:\n  - date\n  - time\n  - month\n---\n"
  },
  {
    "path": "docs/content/icons/calendar2-check-fill.md",
    "content": "---\ntitle: Calendar2 check fill\ncategories:\n  - Date and time\ntags:\n  - date\n  - time\n  - month\n---\n"
  },
  {
    "path": "docs/content/icons/calendar2-check.md",
    "content": "---\ntitle: Calendar2 check\ncategories:\n  - Date and time\ntags:\n  - date\n  - time\n  - month\n---\n"
  },
  {
    "path": "docs/content/icons/calendar2-date-fill.md",
    "content": "---\ntitle: Calendar2 date fill\ncategories:\n  - Date and time\ntags:\n  - date\n  - time\n  - month\n---\n"
  },
  {
    "path": "docs/content/icons/calendar2-date.md",
    "content": "---\ntitle: Calendar2 date\ncategories:\n  - Date and time\ntags:\n  - date\n  - time\n  - month\n---\n"
  },
  {
    "path": "docs/content/icons/calendar2-day-fill.md",
    "content": "---\ntitle: Calendar2 day fill\ncategories:\n  - Date and time\ntags:\n  - date\n  - time\n  - month\n---\n"
  },
  {
    "path": "docs/content/icons/calendar2-day.md",
    "content": "---\ntitle: Calendar2 day\ncategories:\n  - Date and time\ntags:\n  - date\n  - time\n  - month\n---\n"
  },
  {
    "path": "docs/content/icons/calendar2-event-fill.md",
    "content": "---\ntitle: Calendar2 event fill\ncategories:\n  - Date and time\ntags:\n  - date\n  - time\n  - event\n  - invite\n---\n"
  },
  {
    "path": "docs/content/icons/calendar2-event.md",
    "content": "---\ntitle: Calendar2 event\ncategories:\n  - Date and time\ntags:\n  - date\n  - time\n  - event\n  - invite\n---\n"
  },
  {
    "path": "docs/content/icons/calendar2-fill.md",
    "content": "---\ntitle: Calendar2 fill\ncategories:\n  - Date and time\ntags:\n  - date\n  - time\n  - month\n---\n"
  },
  {
    "path": "docs/content/icons/calendar2-heart-fill.md",
    "content": "---\ntitle: Calendar2 heart fill\ncategories:\n  - Date and time\n  - Love\ntags:\n  - date\n  - time\n  - month\n  - valentine\n  - date\n---\n"
  },
  {
    "path": "docs/content/icons/calendar2-heart.md",
    "content": "---\ntitle: Calendar2 heart\ncategories:\n  - Date and time\n  - Love\ntags:\n  - date\n  - time\n  - month\n  - valentine\n  - date\n---\n"
  },
  {
    "path": "docs/content/icons/calendar2-minus-fill.md",
    "content": "---\ntitle: Calendar2 minus fill\ncategories:\n  - Date and time\ntags:\n  - date\n  - time\n  - month\n---\n"
  },
  {
    "path": "docs/content/icons/calendar2-minus.md",
    "content": "---\ntitle: Calendar2 minus\ncategories:\n  - Date and time\ntags:\n  - date\n  - time\n  - month\n---\n"
  },
  {
    "path": "docs/content/icons/calendar2-month-fill.md",
    "content": "---\ntitle: Calendar2 month fill\ncategories:\n  - Date and time\ntags:\n  - date\n  - time\n  - month\n---\n"
  },
  {
    "path": "docs/content/icons/calendar2-month.md",
    "content": "---\ntitle: Calendar2 month\ncategories:\n  - Date and time\ntags:\n  - date\n  - time\n  - month\n---\n"
  },
  {
    "path": "docs/content/icons/calendar2-plus-fill.md",
    "content": "---\ntitle: Calendar2 plus fill\ncategories:\n  - Date and time\ntags:\n  - date\n  - time\n  - month\n---\n"
  },
  {
    "path": "docs/content/icons/calendar2-plus.md",
    "content": "---\ntitle: Calendar2 plus\ncategories:\n  - Date and time\ntags:\n  - date\n  - time\n  - month\n---\n"
  },
  {
    "path": "docs/content/icons/calendar2-range-fill.md",
    "content": "---\ntitle: Calendar2 range fill\ncategories:\n  - Date and time\ntags:\n  - dates\n  - timeline\n  - duration\n---\n"
  },
  {
    "path": "docs/content/icons/calendar2-range.md",
    "content": "---\ntitle: Calendar2 range\ncategories:\n  - Date and time\ntags:\n  - dates\n  - timeline\n  - duration\n\n---\n"
  },
  {
    "path": "docs/content/icons/calendar2-week-fill.md",
    "content": "---\ntitle: Calendar2 week fill\ncategories:\n  - Date and time\ntags:\n  - dates\n  - timeline\n  - duration\n  - week\n---\n"
  },
  {
    "path": "docs/content/icons/calendar2-week.md",
    "content": "---\ntitle: Calendar2 week\ncategories:\n  - Date and time\ntags:\n  - dates\n  - timeline\n  - duration\n  - week\n---\n"
  },
  {
    "path": "docs/content/icons/calendar2-x-fill.md",
    "content": "---\ntitle: Calendar2 x fill\ncategories:\n  - Date and time\ntags:\n  - date\n  - time\n  - month\n  - remove\n  - delete\n---\n"
  },
  {
    "path": "docs/content/icons/calendar2-x.md",
    "content": "---\ntitle: Calendar2 x\ncategories:\n  - Date and time\ntags:\n  - date\n  - time\n  - month\n  - remove\n  - delete\n---\n"
  },
  {
    "path": "docs/content/icons/calendar2.md",
    "content": "---\ntitle: Calendar2\ncategories:\n  - Date and time\ntags:\n  - date\n  - time\n  - month\n---\n"
  },
  {
    "path": "docs/content/icons/calendar3-event-fill.md",
    "content": "---\ntitle: Calendar3 event fill\ncategories:\n  - Date and time\ntags:\n  - date\n  - time\n  - event\n  - invite\n---\n"
  },
  {
    "path": "docs/content/icons/calendar3-event.md",
    "content": "---\ntitle: Calendar3 event\ncategories:\n  - Date and time\ntags:\n  - date\n  - time\n  - event\n  - invite\n---\n"
  },
  {
    "path": "docs/content/icons/calendar3-fill.md",
    "content": "---\ntitle: Calendar3 fill\ncategories:\n  - Date and time\ntags:\n  - date\n  - time\n  - month\n---\n"
  },
  {
    "path": "docs/content/icons/calendar3-range-fill.md",
    "content": "---\ntitle: Calendar3 range fill\ncategories:\n  - Date and time\ntags:\n  - dates\n  - timeline\n  - duration\n---\n"
  },
  {
    "path": "docs/content/icons/calendar3-range.md",
    "content": "---\ntitle: Calendar3 range\ncategories:\n  - Date and time\ntags:\n  - dates\n  - timeline\n  - duration\n---\n"
  },
  {
    "path": "docs/content/icons/calendar3-week-fill.md",
    "content": "---\ntitle: Calendar3 week fill\ncategories:\n  - Date and time\ntags:\n  - dates\n  - timeline\n  - duration\n  - week\n---\n"
  },
  {
    "path": "docs/content/icons/calendar3-week.md",
    "content": "---\ntitle: Calendar3 week\ncategories:\n  - Date and time\ntags:\n  - dates\n  - timeline\n  - duration\n  - week\n---\n"
  },
  {
    "path": "docs/content/icons/calendar3.md",
    "content": "---\ntitle: Calendar3\ncategories:\n  - Date and time\ntags:\n  - date\n  - time\n  - month\n---\n"
  },
  {
    "path": "docs/content/icons/calendar4-event.md",
    "content": "---\ntitle: Calendar4 event\ncategories:\n  - Date and time\ntags:\n  - date\n  - time\n  - event\n  - invite\n---\n"
  },
  {
    "path": "docs/content/icons/calendar4-range.md",
    "content": "---\ntitle: Calendar4 range\ncategories:\n  - Date and time\ntags:\n  - dates\n  - timeline\n  - duration\n---\n"
  },
  {
    "path": "docs/content/icons/calendar4-week.md",
    "content": "---\ntitle: Calendar4 week\ncategories:\n  - Date and time\ntags:\n  - dates\n  - timeline\n  - duration\n  - week\n---\n"
  },
  {
    "path": "docs/content/icons/calendar4.md",
    "content": "---\ntitle: Calendar4\ncategories:\n  - Date and time\ntags:\n  - date\n  - time\n  - month\n---\n"
  },
  {
    "path": "docs/content/icons/camera-fill.md",
    "content": "---\ntitle: Camera fill\ncategories:\n  - Devices\ntags:\n  - photos\n  - photography\n---\n"
  },
  {
    "path": "docs/content/icons/camera-reels-fill.md",
    "content": "---\ntitle: Camera reels fill\ncategories:\n  - Devices\ntags:\n  - av\n  - video\n  - film\n---\n"
  },
  {
    "path": "docs/content/icons/camera-reels.md",
    "content": "---\ntitle: Camera reels\ncategories:\n  - Devices\ntags:\n  - av\n  - video\n  - film\n---\n"
  },
  {
    "path": "docs/content/icons/camera-video-fill.md",
    "content": "---\ntitle: Camera video fill\ncategories:\n  - Devices\ntags:\n  - av\n  - video\n  - film\n---\n"
  },
  {
    "path": "docs/content/icons/camera-video-off-fill.md",
    "content": "---\ntitle: Camera video off fill\ncategories:\n  - Devices\ntags:\n  - av\n  - video\n  - film\n---\n"
  },
  {
    "path": "docs/content/icons/camera-video-off.md",
    "content": "---\ntitle: Camera video off\ncategories:\n  - Devices\ntags:\n  - av\n  - video\n  - film\n---\n"
  },
  {
    "path": "docs/content/icons/camera-video.md",
    "content": "---\ntitle: Camera video\ncategories:\n  - Devices\ntags:\n  - av\n  - video\n  - film\n---\n"
  },
  {
    "path": "docs/content/icons/camera.md",
    "content": "---\ntitle: Camera\ncategories:\n  - Devices\ntags:\n  - photos\n  - photography\n---\n"
  },
  {
    "path": "docs/content/icons/camera2.md",
    "content": "---\ntitle: Camera\ncategories:\n  - Devices\ntags:\n  - photos\n  - photography\n---\n"
  },
  {
    "path": "docs/content/icons/capslock-fill.md",
    "content": "---\ntitle: Capslock fill\ncategories:\n  - UI and keyboard\ntags:\n  - key\n---\n"
  },
  {
    "path": "docs/content/icons/capslock.md",
    "content": "---\ntitle: Capslock\ncategories:\n  - UI and keyboard\ntags:\n  - key\n---\n"
  },
  {
    "path": "docs/content/icons/capsule-pill.md",
    "content": "---\ntitle: Capsule pill\ncategories:\n  - Medical\ntags:\n  - rx\n  - pills\n  - capsules\n  - medicine\n---\n"
  },
  {
    "path": "docs/content/icons/capsule.md",
    "content": "---\ntitle: Capsule\ncategories:\n  - Medical\ntags:\n  - rx\n  - pills\n  - capsules\n  - medicine\n---\n"
  },
  {
    "path": "docs/content/icons/car-front-fill.md",
    "content": "---\ntitle: Car front fill\ncategories:\n  - Transportation\ntags:\n  - automobile\n  - automotive\n  - auto\n  - sedan\n  - drive\n  - driving\n  - vehicle\n---\n"
  },
  {
    "path": "docs/content/icons/car-front.md",
    "content": "---\ntitle: Car front\ncategories:\n  - Transportation\ntags:\n  - automobile\n  - automotive\n  - auto\n  - sedan\n  - drive\n  - driving\n  - vehicle\n---\n"
  },
  {
    "path": "docs/content/icons/card-checklist.md",
    "content": "---\ntitle: Card checklist\ncategories:\n  - Files and folders\ntags:\n  - note\n  - card\n  - notecard\n---\n"
  },
  {
    "path": "docs/content/icons/card-heading.md",
    "content": "---\ntitle: Card heading\ncategories:\n  - Files and folders\ntags:\n  - note\n  - card\n  - notecard\n---\n"
  },
  {
    "path": "docs/content/icons/card-image.md",
    "content": "---\ntitle: Card image\ncategories:\n  - Files and folders\ntags:\n  - note\n  - card\n  - notecard\n---\n"
  },
  {
    "path": "docs/content/icons/card-list.md",
    "content": "---\ntitle: Card list\ncategories:\n  - Files and folders\ntags:\n  - note\n  - card\n  - notecard\n---\n"
  },
  {
    "path": "docs/content/icons/card-text.md",
    "content": "---\ntitle: Card text\ncategories:\n  - Files and folders\ntags:\n  - note\n  - card\n  - notecard\n  - letter\n---\n"
  },
  {
    "path": "docs/content/icons/caret-down-fill.md",
    "content": "---\ntitle: Caret down fill\ncategories:\n  - Carets\ntags:\n  - caret\n  - arrow\n  - triangle\n---\n"
  },
  {
    "path": "docs/content/icons/caret-down-square-fill.md",
    "content": "---\ntitle: Caret down square fill\ncategories:\n  - Carets\ntags:\n  - caret\n  - arrow\n  - triangle\n---\n"
  },
  {
    "path": "docs/content/icons/caret-down-square.md",
    "content": "---\ntitle: Caret down square\ncategories:\n  - Carets\ntags:\n  - caret\n  - arrow\n  - triangle\n---\n"
  },
  {
    "path": "docs/content/icons/caret-down.md",
    "content": "---\ntitle: Caret down\ncategories:\n  - Carets\ntags:\n  - caret\n  - arrow\n  - triangle\n---\n"
  },
  {
    "path": "docs/content/icons/caret-left-fill.md",
    "content": "---\ntitle: Caret left fill\ncategories:\n  - Carets\ntags:\n  - caret\n  - arrow\n  - triangle\n---\n"
  },
  {
    "path": "docs/content/icons/caret-left-square-fill.md",
    "content": "---\ntitle: Caret left square fill\ncategories:\n  - Carets\ntags:\n  - caret\n  - arrow\n  - triangle\n---\n"
  },
  {
    "path": "docs/content/icons/caret-left-square.md",
    "content": "---\ntitle: Caret left square\ncategories:\n  - Carets\ntags:\n  - caret\n  - arrow\n  - triangle\n---\n"
  },
  {
    "path": "docs/content/icons/caret-left.md",
    "content": "---\ntitle: Caret left\ncategories:\n  - Carets\ntags:\n  - caret\n  - arrow\n  - triangle\n---\n"
  },
  {
    "path": "docs/content/icons/caret-right-fill.md",
    "content": "---\ntitle: Caret right fill\ncategories:\n  - Carets\ntags:\n  - caret\n  - arrow\n  - triangle\n---\n"
  },
  {
    "path": "docs/content/icons/caret-right-square-fill.md",
    "content": "---\ntitle: Caret right square fill\ncategories:\n  - Carets\ntags:\n  - caret\n  - arrow\n  - triangle\n---\n"
  },
  {
    "path": "docs/content/icons/caret-right-square.md",
    "content": "---\ntitle: Caret right square\ncategories:\n  - Carets\ntags:\n  - caret\n  - arrow\n  - triangle\n---\n"
  },
  {
    "path": "docs/content/icons/caret-right.md",
    "content": "---\ntitle: Caret right\ncategories:\n  - Carets\ntags:\n  - caret\n  - arrow\n  - triangle\n---\n"
  },
  {
    "path": "docs/content/icons/caret-up-fill.md",
    "content": "---\ntitle: Caret up fill\ncategories:\n  - Carets\ntags:\n  - caret\n  - arrow\n  - triangle\n---\n"
  },
  {
    "path": "docs/content/icons/caret-up-square-fill.md",
    "content": "---\ntitle: Caret up square fill\ncategories:\n  - Carets\ntags:\n  - caret\n  - arrow\n  - triangle\n---\n"
  },
  {
    "path": "docs/content/icons/caret-up-square.md",
    "content": "---\ntitle: Caret up square\ncategories:\n  - Carets\ntags:\n  - caret\n  - arrow\n  - triangle\n---\n"
  },
  {
    "path": "docs/content/icons/caret-up.md",
    "content": "---\ntitle: Caret up\ncategories:\n  - Carets\ntags:\n  - caret\n  - arrow\n  - triangle\n---\n"
  },
  {
    "path": "docs/content/icons/cart-check-fill.md",
    "content": "---\ntitle: Cart check fill\ncategories:\n  - Commerce\ntags:\n  - shopping\n  - checkout\n  - check\n  - cart\n  - basket\n  - bag\n---\n"
  },
  {
    "path": "docs/content/icons/cart-check.md",
    "content": "---\ntitle: Cart check\ncategories:\n  - Commerce\ntags:\n  - shopping\n  - checkout\n  - check\n  - cart\n  - basket\n  - bag\n---\n"
  },
  {
    "path": "docs/content/icons/cart-dash-fill.md",
    "content": "---\ntitle: Cart dash fill\ncategories:\n  - Commerce\ntags:\n  - shopping\n  - checkout\n  - check\n  - cart\n  - basket\n  - bag\n---\n"
  },
  {
    "path": "docs/content/icons/cart-dash.md",
    "content": "---\ntitle: Cart dash\ncategories:\n  - Commerce\ntags:\n  - shopping\n  - checkout\n  - check\n  - cart\n  - basket\n  - bag\n---\n"
  },
  {
    "path": "docs/content/icons/cart-fill.md",
    "content": "---\ntitle: Cart fill\ncategories:\n  - Commerce\ntags:\n  - shopping\n  - checkout\n  - check\n  - cart\n  - basket\n  - bag\n---\n"
  },
  {
    "path": "docs/content/icons/cart-plus-fill.md",
    "content": "---\ntitle: Cart plus fill\ncategories:\n  - Commerce\ntags:\n  - shopping\n  - checkout\n  - check\n  - cart\n  - basket\n  - bag\n---\n"
  },
  {
    "path": "docs/content/icons/cart-plus.md",
    "content": "---\ntitle: Cart plus\ncategories:\n  - Commerce\ntags:\n  - shopping\n  - checkout\n  - check\n  - cart\n  - basket\n  - bag\n---\n"
  },
  {
    "path": "docs/content/icons/cart-x-fill.md",
    "content": "---\ntitle: Cart x fill\ncategories:\n  - Commerce\ntags:\n  - shopping\n  - checkout\n  - check\n  - cart\n  - basket\n  - bag\n---\n"
  },
  {
    "path": "docs/content/icons/cart-x.md",
    "content": "---\ntitle: Cart x\ncategories:\n  - Commerce\ntags:\n  - shopping\n  - checkout\n  - check\n  - cart\n  - basket\n  - bag\n---\n"
  },
  {
    "path": "docs/content/icons/cart.md",
    "content": "---\ntitle: Cart\ncategories:\n  - Commerce\ntags:\n  - shopping\n  - checkout\n  - check\n  - cart\n  - basket\n  - bag\n---\n"
  },
  {
    "path": "docs/content/icons/cart2.md",
    "content": "---\ntitle: Cart2\ncategories:\n  - Commerce\ntags:\n  - shopping\n  - checkout\n  - check\n  - cart\n  - basket\n  - bag\n---\n"
  },
  {
    "path": "docs/content/icons/cart3.md",
    "content": "---\ntitle: Cart3\ncategories:\n  - Commerce\ntags:\n  - shopping\n  - checkout\n  - check\n  - cart\n  - basket\n  - bag\n---\n"
  },
  {
    "path": "docs/content/icons/cart4.md",
    "content": "---\ntitle: Cart4\ncategories:\n  - Commerce\ntags:\n  - shopping\n  - checkout\n  - check\n  - cart\n  - basket\n  - bag\n---\n"
  },
  {
    "path": "docs/content/icons/cash-coin.md",
    "content": "---\ntitle: Cash coin\ncategories:\n  - Commerce\ntags:\n  - money\n  - finance\n  - banking\n  - currency\n---\n"
  },
  {
    "path": "docs/content/icons/cash-stack.md",
    "content": "---\ntitle: Cash stack\ncategories:\n  - Commerce\ntags:\n  - money\n  - bills\n  - funds\n  - wallet\n  - currency\n---\n"
  },
  {
    "path": "docs/content/icons/cash.md",
    "content": "---\ntitle: Cash\ncategories:\n  - Commerce\ntags:\n  - money\n  - bills\n  - funds\n  - wallet\n  - currency\n---\n"
  },
  {
    "path": "docs/content/icons/cassette-fill.md",
    "content": "---\ntitle: Cassette fill\ncategories:\n  - Media\ntags:\n  - tape\n  - music\n  - audio\n---\n"
  },
  {
    "path": "docs/content/icons/cassette.md",
    "content": "---\ntitle: Cassette\ncategories:\n  - Media\ntags:\n  - tape\n  - music\n  - audio\n---\n"
  },
  {
    "path": "docs/content/icons/cast.md",
    "content": "---\ntitle: Cast\ncategories:\n  - Media\ntags:\n  - airplay\n  - project\n  - stream\n  - display\n---\n"
  },
  {
    "path": "docs/content/icons/cc-circle-fill.md",
    "content": "---\ntitle: CC circle fill\ncategories:\n  - Shapes\ntags:\n  - \"creative commons\"\n---\n"
  },
  {
    "path": "docs/content/icons/cc-circle.md",
    "content": "---\ntitle: CC circle\ncategories:\n  - Shapes\ntags:\n  - \"creative commons\"\n---\n"
  },
  {
    "path": "docs/content/icons/cc-square-fill.md",
    "content": "---\ntitle: CC square fill\ncategories:\n  - Shapes\ntags:\n  - \"creative commons\"\n---\n"
  },
  {
    "path": "docs/content/icons/cc-square.md",
    "content": "---\ntitle: CC square\ncategories:\n  - Shapes\ntags:\n  - \"creative commons\"\n---\n"
  },
  {
    "path": "docs/content/icons/chat-dots-fill.md",
    "content": "---\ntitle: Chat dots fill\ncategories:\n  - Communications\ntags:\n  - chat bubble\n  - text\n  - message\n  - typing\n  - comment\n---\n"
  },
  {
    "path": "docs/content/icons/chat-dots.md",
    "content": "---\ntitle: Chat dots\ncategories:\n  - Communications\ntags:\n  - chat bubble\n  - text\n  - message\n  - typing\n  - comment\n---\n"
  },
  {
    "path": "docs/content/icons/chat-fill.md",
    "content": "---\ntitle: Chat fill\ncategories:\n  - Communications\ntags:\n  - chat bubble\n  - text\n  - message\n  - comment\n---\n"
  },
  {
    "path": "docs/content/icons/chat-heart-fill.md",
    "content": "---\ntitle: Chat heart fill\ncategories:\n  - Communications\n  - Love\ntags:\n  - chat bubble\n  - text\n  - message\n  - valentine\n  - romance\n  - comment\n---\n"
  },
  {
    "path": "docs/content/icons/chat-heart.md",
    "content": "---\ntitle: Chat heart\ncategories:\n  - Communications\n  - Love\ntags:\n  - chat bubble\n  - text\n  - message\n  - valentine\n  - romance\n  - comment\n---\n"
  },
  {
    "path": "docs/content/icons/chat-left-dots-fill.md",
    "content": "---\ntitle: Chat left dots fill\ncategories:\n  - Communications\ntags:\n  - chat bubble\n  - text\n  - message\n  - typing\n  - comment\n---\n"
  },
  {
    "path": "docs/content/icons/chat-left-dots.md",
    "content": "---\ntitle: Chat left dots\ncategories:\n  - Communications\ntags:\n  - chat bubble\n  - text\n  - message\n  - typing\n  - comment\n---\n"
  },
  {
    "path": "docs/content/icons/chat-left-fill.md",
    "content": "---\ntitle: Chat left fill\ncategories:\n  - Communications\ntags:\n  - chat bubble\n  - text\n  - message\n  - comment\n---\n"
  },
  {
    "path": "docs/content/icons/chat-left-heart-fill.md",
    "content": "---\ntitle: Chat left heart fill\ncategories:\n  - Communications\n  - Love\ntags:\n  - chat bubble\n  - text\n  - message\n  - valentine\n  - romance\n  - comment\n---\n"
  },
  {
    "path": "docs/content/icons/chat-left-heart.md",
    "content": "---\ntitle: Chat left heart\ncategories:\n  - Communications\n  - Love\ntags:\n  - chat bubble\n  - text\n  - message\n  - valentine\n  - romance\n  - comment\n---\n"
  },
  {
    "path": "docs/content/icons/chat-left-quote-fill.md",
    "content": "---\ntitle: Chat left quote fill\ncategories:\n  - Communications\ntags:\n  - chat bubble\n  - text\n  - message\n  - quote\n  - comment\n---\n"
  },
  {
    "path": "docs/content/icons/chat-left-quote.md",
    "content": "---\ntitle: Chat left quote\ncategories:\n  - Communications\ntags:\n  - chat bubble\n  - text\n  - message\n  - quote\n  - comment\n---\n"
  },
  {
    "path": "docs/content/icons/chat-left-text-fill.md",
    "content": "---\ntitle: Chat left text fill\ncategories:\n  - Communications\ntags:\n  - chat bubble\n  - text\n  - message\n  - comment\n---\n"
  },
  {
    "path": "docs/content/icons/chat-left-text.md",
    "content": "---\ntitle: Chat left text\ncategories:\n  - Communications\ntags:\n  - chat bubble\n  - text\n  - message\n  - comment\n---\n"
  },
  {
    "path": "docs/content/icons/chat-left.md",
    "content": "---\ntitle: Chat left\ncategories:\n  - Communications\ntags:\n  - chat bubble\n  - text\n  - message\n  - comment\n---\n"
  },
  {
    "path": "docs/content/icons/chat-quote-fill.md",
    "content": "---\ntitle: Chat quote fill\ncategories:\n  - Communications\ntags:\n  - chat bubble\n  - text\n  - message\n  - quote\n  - comment\n---\n"
  },
  {
    "path": "docs/content/icons/chat-quote.md",
    "content": "---\ntitle: Chat quote\ncategories:\n  - Communications\ntags:\n  - chat bubble\n  - text\n  - message\n  - quote\n  - comment\n---\n"
  },
  {
    "path": "docs/content/icons/chat-right-dots-fill.md",
    "content": "---\ntitle: Chat right dots fill\ncategories:\n  - Communications\ntags:\n  - chat bubble\n  - text\n  - message\n  - typing\n  - comment\n---\n"
  },
  {
    "path": "docs/content/icons/chat-right-dots.md",
    "content": "---\ntitle: Chat right dots\ncategories:\n  - Communications\ntags:\n  - chat bubble\n  - text\n  - message\n  - typing\n  - comment\n---\n"
  },
  {
    "path": "docs/content/icons/chat-right-fill.md",
    "content": "---\ntitle: Chat right fill\ncategories:\n  - Communications\ntags:\n  - chat bubble\n  - text\n  - message\n  - comment\n---\n"
  },
  {
    "path": "docs/content/icons/chat-right-heart-fill.md",
    "content": "---\ntitle: Chat right heart fill\ncategories:\n  - Communications\n  - Love\ntags:\n  - chat bubble\n  - text\n  - message\n  - valentine\n  - romance\n  - comment\n---\n"
  },
  {
    "path": "docs/content/icons/chat-right-heart.md",
    "content": "---\ntitle: Chat right heart\ncategories:\n  - Communications\n  - Love\ntags:\n  - chat bubble\n  - text\n  - message\n  - valentine\n  - romance\n  - comment\n---\n"
  },
  {
    "path": "docs/content/icons/chat-right-quote-fill.md",
    "content": "---\ntitle: Chat right quote fill\ncategories:\n  - Communications\ntags:\n  - chat bubble\n  - text\n  - message\n  - quote\n  - comment\n---\n"
  },
  {
    "path": "docs/content/icons/chat-right-quote.md",
    "content": "---\ntitle: Chat right quote\ncategories:\n  - Communications\ntags:\n  - chat bubble\n  - text\n  - message\n  - quote\n  - comment\n---\n"
  },
  {
    "path": "docs/content/icons/chat-right-text-fill.md",
    "content": "---\ntitle: Chat right text fill\ncategories:\n  - Communications\ntags:\n  - chat bubble\n  - text\n  - message\n  - comment\n---\n"
  },
  {
    "path": "docs/content/icons/chat-right-text.md",
    "content": "---\ntitle: Chat right text\ncategories:\n  - Communications\ntags:\n  - chat bubble\n  - text\n  - message\n  - comment\n---\n"
  },
  {
    "path": "docs/content/icons/chat-right.md",
    "content": "---\ntitle: Chat right\ncategories:\n  - Communications\ntags:\n  - chat bubble\n  - text\n  - message\n  - comment\n---\n"
  },
  {
    "path": "docs/content/icons/chat-square-dots-fill.md",
    "content": "---\ntitle: Chat square dots fill\ncategories:\n  - Communications\ntags:\n  - chat bubble\n  - text\n  - message\n  - typing\n  - comment\n---\n"
  },
  {
    "path": "docs/content/icons/chat-square-dots.md",
    "content": "---\ntitle: Chat square dots\ncategories:\n  - Communications\ntags:\n  - chat bubble\n  - text\n  - message\n  - typing\n  - comment\n---\n"
  },
  {
    "path": "docs/content/icons/chat-square-fill.md",
    "content": "---\ntitle: Chat square fill\ncategories:\n  - Communications\ntags:\n  - chat bubble\n  - text\n  - message\n  - comment\n---\n"
  },
  {
    "path": "docs/content/icons/chat-square-heart-fill.md",
    "content": "---\ntitle: Chat square heart fill\ncategories:\n  - Communications\n  - Love\ntags:\n  - chat bubble\n  - text\n  - message\n  - valentine\n  - romance\n  - comment\n---\n"
  },
  {
    "path": "docs/content/icons/chat-square-heart.md",
    "content": "---\ntitle: Chat square heart\ncategories:\n  - Communications\n  - Love\ntags:\n  - chat bubble\n  - text\n  - message\n  - valentine\n  - romance\n  - comment\n---\n"
  },
  {
    "path": "docs/content/icons/chat-square-quote-fill.md",
    "content": "---\ntitle: Chat square quote fill\ncategories:\n  - Communications\ntags:\n  - chat bubble\n  - text\n  - message\n  - quote\n  - comment\n---\n"
  },
  {
    "path": "docs/content/icons/chat-square-quote.md",
    "content": "---\ntitle: Chat square quote\ncategories:\n  - Communications\ntags:\n  - chat bubble\n  - text\n  - message\n  - quote\n  - comment\n---\n"
  },
  {
    "path": "docs/content/icons/chat-square-text-fill.md",
    "content": "---\ntitle: Chat square text fill\ncategories:\n  - Communications\ntags:\n  - chat bubble\n  - text\n  - message\n  - comment\n---\n"
  },
  {
    "path": "docs/content/icons/chat-square-text.md",
    "content": "---\ntitle: Chat square text\ncategories:\n  - Communications\ntags:\n  - chat bubble\n  - text\n  - message\n  - comment\n---\n"
  },
  {
    "path": "docs/content/icons/chat-square.md",
    "content": "---\ntitle: Chat square\ncategories:\n  - Communications\ntags:\n  - chat bubble\n  - text\n  - message\n  - comment\n---\n"
  },
  {
    "path": "docs/content/icons/chat-text-fill.md",
    "content": "---\ntitle: Chat text fill\ncategories:\n  - Communications\ntags:\n  - chat bubble\n  - text\n  - message\n  - comment\n---\n"
  },
  {
    "path": "docs/content/icons/chat-text.md",
    "content": "---\ntitle: Chat text\ncategories:\n  - Communications\ntags:\n  - chat bubble\n  - text\n  - message\n  - comment\n---\n"
  },
  {
    "path": "docs/content/icons/chat.md",
    "content": "---\ntitle: Chat\ncategories:\n  - Communications\ntags:\n  - chat bubble\n  - text\n  - message\n  - comment\n---\n"
  },
  {
    "path": "docs/content/icons/check-all.md",
    "content": "---\ntitle: Check all\ncategories:\n  - UI and keyboard\ntags:\n  - checkmark\n  - todo\n  - done\n  - select\n---\n"
  },
  {
    "path": "docs/content/icons/check-circle-fill.md",
    "content": "---\ntitle: Check circle fill\ncategories:\n  - Alerts, warnings, and signs\ntags:\n  - checkmark\n  - confirm\n  - done\n---\n"
  },
  {
    "path": "docs/content/icons/check-circle.md",
    "content": "---\ntitle: Check circle\ncategories:\n  - Alerts, warnings, and signs\ntags:\n  - checkmark\n  - confirm\n  - done\n---\n"
  },
  {
    "path": "docs/content/icons/check-lg.md",
    "content": "---\ntitle: Check lg\ncategories:\n  - Alerts, warnings, and signs\ntags:\n  - checkmark\n  - confirm\n  - done\n---\n"
  },
  {
    "path": "docs/content/icons/check-square-fill.md",
    "content": "---\ntitle: Check square fill\ncategories:\n  - Alerts, warnings, and signs\ntags:\n  - checkmark\n  - confirm\n  - done\n---\n"
  },
  {
    "path": "docs/content/icons/check-square.md",
    "content": "---\ntitle: Check square\ncategories:\n  - Alerts, warnings, and signs\ntags:\n  - checkmark\n  - confirm\n  - done\n---\n"
  },
  {
    "path": "docs/content/icons/check.md",
    "content": "---\ntitle: Check\ncategories:\n  - Alerts, warnings, and signs\ntags:\n  - checkmark\n  - confirm\n  - done\n---\n"
  },
  {
    "path": "docs/content/icons/check2-all.md",
    "content": "---\ntitle: Check2 all\ncategories:\n  - UI and keyboard\ntags:\n  - checkmark\n  - todo\n  - select\n  - done\n  - checkbox\n---\n"
  },
  {
    "path": "docs/content/icons/check2-circle.md",
    "content": "---\ntitle: Check2 circle\ncategories:\n  - UI and keyboard\ntags:\n  - checkmark\n  - todo\n  - select\n  - done\n  - checkbox\n---\n"
  },
  {
    "path": "docs/content/icons/check2-square.md",
    "content": "---\ntitle: Check2 square\ncategories:\n  - UI and keyboard\ntags:\n  - checkmark\n  - todo\n  - select\n  - done\n  - checkbox\n---\n"
  },
  {
    "path": "docs/content/icons/check2.md",
    "content": "---\ntitle: Check2\ncategories:\n  - UI and keyboard\ntags:\n  - checkmark\n  - todo\n  - select\n  - done\n  - checkbox\n---\n"
  },
  {
    "path": "docs/content/icons/chevron-bar-contract.md",
    "content": "---\ntitle: Chevron bar contract\ncategories:\n  - Chevrons\ntags:\n  - chevron\n---\n"
  },
  {
    "path": "docs/content/icons/chevron-bar-down.md",
    "content": "---\ntitle: Chevron bar down\ncategories:\n  - Chevrons\ntags:\n  - chevron\n---\n"
  },
  {
    "path": "docs/content/icons/chevron-bar-expand.md",
    "content": "---\ntitle: Chevron bar expand\ncategories:\n  - Chevrons\ntags:\n  - chevron\n---\n"
  },
  {
    "path": "docs/content/icons/chevron-bar-left.md",
    "content": "---\ntitle: Chevron bar left\ncategories:\n  - Chevrons\ntags:\n  - chevron\n---\n"
  },
  {
    "path": "docs/content/icons/chevron-bar-right.md",
    "content": "---\ntitle: Chevron bar right\ncategories:\n  - Chevrons\ntags:\n  - chevron\n---\n"
  },
  {
    "path": "docs/content/icons/chevron-bar-up.md",
    "content": "---\ntitle: Chevron bar up\ncategories:\n  - Chevrons\ntags:\n  - chevron\n---\n"
  },
  {
    "path": "docs/content/icons/chevron-compact-down.md",
    "content": "---\ntitle: Chevron compact down\ncategories:\n  - Chevrons\ntags:\n  - chevron\n---\n"
  },
  {
    "path": "docs/content/icons/chevron-compact-left.md",
    "content": "---\ntitle: Chevron compact left\ncategories:\n  - Chevrons\ntags:\n  - chevron\n---\n"
  },
  {
    "path": "docs/content/icons/chevron-compact-right.md",
    "content": "---\ntitle: Chevron compact right\ncategories:\n  - Chevrons\ntags:\n  - chevron\n---\n"
  },
  {
    "path": "docs/content/icons/chevron-compact-up.md",
    "content": "---\ntitle: Chevron compact up\ncategories:\n  - Chevrons\ntags:\n  - chevron\n---\n"
  },
  {
    "path": "docs/content/icons/chevron-contract.md",
    "content": "---\ntitle: Chevron contract\ncategories:\n  - Chevrons\ntags:\n  - chevron\n---\n"
  },
  {
    "path": "docs/content/icons/chevron-double-down.md",
    "content": "---\ntitle: Chevron double down\ncategories:\n  - Chevrons\ntags:\n  - chevron\n---\n"
  },
  {
    "path": "docs/content/icons/chevron-double-left.md",
    "content": "---\ntitle: Chevron double left\ncategories:\n  - Chevrons\ntags:\n  - chevron\n---\n"
  },
  {
    "path": "docs/content/icons/chevron-double-right.md",
    "content": "---\ntitle: Chevron double right\ncategories:\n  - Chevrons\ntags:\n  - chevron\n---\n"
  },
  {
    "path": "docs/content/icons/chevron-double-up.md",
    "content": "---\ntitle: Chevron double up\ncategories:\n  - Chevrons\ntags:\n  - chevron\n---\n"
  },
  {
    "path": "docs/content/icons/chevron-down.md",
    "content": "---\ntitle: Chevron down\ncategories:\n  - Chevrons\ntags:\n  - chevron\n---\n"
  },
  {
    "path": "docs/content/icons/chevron-expand.md",
    "content": "---\ntitle: Chevron expand\ncategories:\n  - Chevrons\ntags:\n  - chevron\n---\n"
  },
  {
    "path": "docs/content/icons/chevron-left.md",
    "content": "---\ntitle: Chevron left\ncategories:\n  - Chevrons\ntags:\n  - chevron\n  - math\n---\n"
  },
  {
    "path": "docs/content/icons/chevron-right.md",
    "content": "---\ntitle: Chevron right\ncategories:\n  - Chevrons\ntags:\n  - chevron\n  - math\n---\n"
  },
  {
    "path": "docs/content/icons/chevron-up.md",
    "content": "---\ntitle: Chevron up\ncategories:\n  - Chevrons\ntags:\n  - chevron\n---\n"
  },
  {
    "path": "docs/content/icons/circle-fill.md",
    "content": "---\ntitle: Circle fill\ncategories:\n  - Shapes\ntags:\n  - shape\n---\n"
  },
  {
    "path": "docs/content/icons/circle-half.md",
    "content": "---\ntitle: Circle half fill\ncategories:\n  - Shapes\ntags:\n  - shape\n---\n"
  },
  {
    "path": "docs/content/icons/circle-square.md",
    "content": "---\ntitle: Circle square\ncategories:\n  - Graphics\ntags:\n  - graphics\n  - vector\n  - merge\n  - layers\n---\n"
  },
  {
    "path": "docs/content/icons/circle.md",
    "content": "---\ntitle: Circle\ncategories:\n  - Shapes\ntags:\n  - shape\n---\n"
  },
  {
    "path": "docs/content/icons/claude.md",
    "content": "---\ntitle: Claude\ncategories:\n  - Brand\ntags:\n  - ai\n  - anthropic\n  - agent\n  - \"artificial intelligence\"\n---\n"
  },
  {
    "path": "docs/content/icons/clipboard-check-fill.md",
    "content": "---\ntitle: Clipboard check fill\ncategories:\n  - Real world\ntags:\n  - copy\n  - paste\n---\n"
  },
  {
    "path": "docs/content/icons/clipboard-check.md",
    "content": "---\ntitle: Clipboard check\ncategories:\n  - Real world\ntags:\n  - copy\n  - paste\n---\n"
  },
  {
    "path": "docs/content/icons/clipboard-data-fill.md",
    "content": "---\ntitle: Clipboard data fill\ncategories:\n  - Real world\ntags:\n  - copy\n  - paste\n  - data\n  - analytics\n  - graph\n  - chart\n---\n"
  },
  {
    "path": "docs/content/icons/clipboard-data.md",
    "content": "---\ntitle: Clipboard data\ncategories:\n  - Real world\ntags:\n  - copy\n  - paste\n  - data\n  - analytics\n  - graph\n  - chart\n---\n"
  },
  {
    "path": "docs/content/icons/clipboard-fill.md",
    "content": "---\ntitle: Clipboard fill\ncategories:\n  - Real world\ntags:\n  - copy\n  - paste\n---\n"
  },
  {
    "path": "docs/content/icons/clipboard-heart-fill.md",
    "content": "---\ntitle: Clipboard heart fill\ncategories:\n  - Real world\ntags:\n  - copy\n  - paste\n---\n"
  },
  {
    "path": "docs/content/icons/clipboard-heart.md",
    "content": "---\ntitle: Clipboard heart\ncategories:\n  - Real world\ntags:\n  - copy\n  - paste\n---\n"
  },
  {
    "path": "docs/content/icons/clipboard-minus-fill.md",
    "content": "---\ntitle: Clipboard minus fill\ncategories:\n  - Real world\ntags:\n  - copy\n  - paste\n---\n"
  },
  {
    "path": "docs/content/icons/clipboard-minus.md",
    "content": "---\ntitle: Clipboard minus\ncategories:\n  - Real world\ntags:\n  - copy\n  - paste\n---\n"
  },
  {
    "path": "docs/content/icons/clipboard-plus-fill.md",
    "content": "---\ntitle: Clipboard plus fill\ncategories:\n  - Real world\ntags:\n  - copy\n  - paste\n---\n"
  },
  {
    "path": "docs/content/icons/clipboard-plus.md",
    "content": "---\ntitle: Clipboard plus\ncategories:\n  - Real world\ntags:\n  - copy\n  - paste\n---\n"
  },
  {
    "path": "docs/content/icons/clipboard-pulse.md",
    "content": "---\ntitle: Clipboard pulse\ncategories:\n  - Real world\ntags:\n  - copy\n  - paste\n---\n"
  },
  {
    "path": "docs/content/icons/clipboard-x-fill.md",
    "content": "---\ntitle: Clipboard x fill\ncategories:\n  - Real world\ntags:\n  - copy\n  - paste\n---\n"
  },
  {
    "path": "docs/content/icons/clipboard-x.md",
    "content": "---\ntitle: Clipboard x\ncategories:\n  - Real world\ntags:\n  - copy\n  - paste\n---\n"
  },
  {
    "path": "docs/content/icons/clipboard.md",
    "content": "---\ntitle: Clipboard\ncategories:\n  - Real world\ntags:\n  - copy\n  - paste\n---\n"
  },
  {
    "path": "docs/content/icons/clipboard2-check-fill.md",
    "content": "---\ntitle: Clipboard2 check fill\ncategories:\n  - Real world\ntags:\n  - copy\n  - paste\n---\n"
  },
  {
    "path": "docs/content/icons/clipboard2-check.md",
    "content": "---\ntitle: Clipboard2 check\ncategories:\n  - Real world\ntags:\n  - copy\n  - paste\n---\n"
  },
  {
    "path": "docs/content/icons/clipboard2-data-fill.md",
    "content": "---\ntitle: Clipboard2 data fill\ncategories:\n  - Real world\ntags:\n  - copy\n  - paste\n  - data\n  - analytics\n  - graph\n  - chart\n---\n"
  },
  {
    "path": "docs/content/icons/clipboard2-data.md",
    "content": "---\ntitle: Clipboard2 data\ncategories:\n  - Real world\ntags:\n  - copy\n  - paste\n  - data\n  - analytics\n  - graph\n  - chart\n---\n"
  },
  {
    "path": "docs/content/icons/clipboard2-fill.md",
    "content": "---\ntitle: Clipboard2 fill\ncategories:\n  - Real world\ntags:\n  - copy\n  - paste\n---\n"
  },
  {
    "path": "docs/content/icons/clipboard2-heart-fill.md",
    "content": "---\ntitle: Clipboard2 heart fill\ncategories:\n  - Real world\ntags:\n  - copy\n  - paste\n---\n"
  },
  {
    "path": "docs/content/icons/clipboard2-heart.md",
    "content": "---\ntitle: Clipboard2 heart\ncategories:\n  - Real world\ntags:\n  - copy\n  - paste\n---\n"
  },
  {
    "path": "docs/content/icons/clipboard2-minus-fill.md",
    "content": "---\ntitle: Clipboard2 minus fill\ncategories:\n  - Real world\ntags:\n  - copy\n  - paste\n---\n"
  },
  {
    "path": "docs/content/icons/clipboard2-minus.md",
    "content": "---\ntitle: Clipboard2 minus\ncategories:\n  - Real world\ntags:\n  - copy\n  - paste\n---\n"
  },
  {
    "path": "docs/content/icons/clipboard2-plus-fill.md",
    "content": "---\ntitle: Clipboard2 plus fill\ncategories:\n  - Real world\ntags:\n  - copy\n  - paste\n---\n"
  },
  {
    "path": "docs/content/icons/clipboard2-plus.md",
    "content": "---\ntitle: Clipboard2 plus\ncategories:\n  - Real world\ntags:\n  - copy\n  - paste\n---\n"
  },
  {
    "path": "docs/content/icons/clipboard2-pulse-fill.md",
    "content": "---\ntitle: Clipboard2 pulse fill\ncategories:\n  - Real world\n  - Medical\ntags:\n  - copy\n  - paste\n  - heartrate\n---\n"
  },
  {
    "path": "docs/content/icons/clipboard2-pulse.md",
    "content": "---\ntitle: Clipboard2 pulse\ncategories:\n  - Real world\n  - Medical\ntags:\n  - copy\n  - paste\n  - heartrate\n---\n"
  },
  {
    "path": "docs/content/icons/clipboard2-x-fill.md",
    "content": "---\ntitle: Clipboard2 x fill\ncategories:\n  - Real world\ntags:\n  - copy\n  - paste\n---\n"
  },
  {
    "path": "docs/content/icons/clipboard2-x.md",
    "content": "---\ntitle: Clipboard2 x\ncategories:\n  - Real world\ntags:\n  - copy\n  - paste\n---\n"
  },
  {
    "path": "docs/content/icons/clipboard2.md",
    "content": "---\ntitle: Clipboard2\ncategories:\n  - Real world\ntags:\n  - copy\n  - paste\n---\n"
  },
  {
    "path": "docs/content/icons/clock-fill.md",
    "content": "---\ntitle: Clock fill\ncategories:\n  - Miscellaneous\ntags:\n  - time\n---\n"
  },
  {
    "path": "docs/content/icons/clock-history.md",
    "content": "---\ntitle: Clock history\ncategories:\n  - Miscellaneous\ntags:\n  - time\n  - history\n---\n"
  },
  {
    "path": "docs/content/icons/clock.md",
    "content": "---\ntitle: Clock\ncategories:\n  - Miscellaneous\ntags:\n  - time\n---\n"
  },
  {
    "path": "docs/content/icons/cloud-arrow-down-fill.md",
    "content": "---\ntitle: Cloud arrow down fill\ncategories:\n  - Clouds\ntags:\n  - download\n---\n"
  },
  {
    "path": "docs/content/icons/cloud-arrow-down.md",
    "content": "---\ntitle: Cloud arrow down\ncategories:\n  - Clouds\ntags:\n  - download\n---\n"
  },
  {
    "path": "docs/content/icons/cloud-arrow-up-fill.md",
    "content": "---\ntitle: Cloud arrow up fill\ncategories:\n  - Clouds\ntags:\n  - upload\n---\n"
  },
  {
    "path": "docs/content/icons/cloud-arrow-up.md",
    "content": "---\ntitle: Cloud arrow up\ncategories:\n  - Clouds\ntags:\n  - upload\n---\n"
  },
  {
    "path": "docs/content/icons/cloud-check-fill.md",
    "content": "---\ntitle: Cloud check fill\ncategories:\n  - Clouds\ntags:\n  - checkmark\n---\n"
  },
  {
    "path": "docs/content/icons/cloud-check.md",
    "content": "---\ntitle: Cloud check\ncategories:\n  - Clouds\ntags:\n  - checkmark\n---\n"
  },
  {
    "path": "docs/content/icons/cloud-download-fill.md",
    "content": "---\ntitle: Cloud download fill\ncategories:\n  - Clouds\ntags:\n  - arrow\n  - save\n---\n"
  },
  {
    "path": "docs/content/icons/cloud-download.md",
    "content": "---\ntitle: Cloud download\ncategories:\n  - Clouds\ntags:\n  - arrow\n  - save\n---\n"
  },
  {
    "path": "docs/content/icons/cloud-drizzle-fill.md",
    "content": "---\ntitle: Cloud drizzle fill\ncategories:\n  - Weather\ntags:\n  - storm\n  - rain\n---\n"
  },
  {
    "path": "docs/content/icons/cloud-drizzle.md",
    "content": "---\ntitle: Cloud drizzle\ncategories:\n  - Weather\ntags:\n  - storm\n  - rain\n---\n"
  },
  {
    "path": "docs/content/icons/cloud-fill.md",
    "content": "---\ntitle: Cloud fill\ncategories:\n  - Clouds\ntags:\n  - weather\n---\n"
  },
  {
    "path": "docs/content/icons/cloud-fog-fill.md",
    "content": "---\ntitle: Cloud fog fill\ncategories:\n  - Weather\ntags:\n  - foggy\n---\n"
  },
  {
    "path": "docs/content/icons/cloud-fog.md",
    "content": "---\ntitle: Cloud fog\ncategories:\n  - Weather\ntags:\n  - foggy\n---\n"
  },
  {
    "path": "docs/content/icons/cloud-fog2-fill.md",
    "content": "---\ntitle: Cloud fog2 fill\ncategories:\n  - Weather\ntags:\n  - foggy\n---\n"
  },
  {
    "path": "docs/content/icons/cloud-fog2.md",
    "content": "---\ntitle: Cloud fog2\ncategories:\n  - Weather\ntags:\n  - foggy\n---\n"
  },
  {
    "path": "docs/content/icons/cloud-hail-fill.md",
    "content": "---\ntitle: Cloud hail fill\ncategories:\n  - Weather\ntags:\n  - storm\n---\n"
  },
  {
    "path": "docs/content/icons/cloud-hail.md",
    "content": "---\ntitle: Cloud hail\ncategories:\n  - Weather\ntags:\n  - storm\n---\n"
  },
  {
    "path": "docs/content/icons/cloud-haze-fill.md",
    "content": "---\ntitle: Cloud haze fill\ncategories:\n  - Weather\ntags:\n  - smog\n---\n"
  },
  {
    "path": "docs/content/icons/cloud-haze.md",
    "content": "---\ntitle: Cloud haze\ncategories:\n  - Weather\ntags:\n  - smog\n---\n"
  },
  {
    "path": "docs/content/icons/cloud-haze2-fill.md",
    "content": "---\ntitle: Cloud haze2 fill\ncategories:\n  - Weather\ntags:\n  - smog\n---\n"
  },
  {
    "path": "docs/content/icons/cloud-haze2.md",
    "content": "---\ntitle: Cloud haze2\ncategories:\n  - Weather\ntags:\n  - smog\n---\n"
  },
  {
    "path": "docs/content/icons/cloud-lightning-fill.md",
    "content": "---\ntitle: Cloud lightning fill\ncategories:\n  - Weather\ntags:\n  - thunder\n  - storm\n---\n"
  },
  {
    "path": "docs/content/icons/cloud-lightning-rain-fill.md",
    "content": "---\ntitle: Cloud lightning rain fill\ncategories:\n  - Weather\ntags:\n  - thunder\n  - storm\n---\n"
  },
  {
    "path": "docs/content/icons/cloud-lightning-rain.md",
    "content": "---\ntitle: Cloud lightning rain\ncategories:\n  - Weather\ntags:\n  - thunder\n  - storm\n---\n"
  },
  {
    "path": "docs/content/icons/cloud-lightning.md",
    "content": "---\ntitle: Cloud lightning\ncategories:\n  - Weather\ntags:\n  - thunder\n  - storm\n---\n"
  },
  {
    "path": "docs/content/icons/cloud-minus-fill.md",
    "content": "---\ntitle: Cloud minus fill\ncategories:\n  - Clouds\ntags:\n  - subtract\n---\n"
  },
  {
    "path": "docs/content/icons/cloud-minus.md",
    "content": "---\ntitle: Cloud minus\ncategories:\n  - Clouds\ntags:\n  - subtract\n---\n"
  },
  {
    "path": "docs/content/icons/cloud-moon-fill.md",
    "content": "---\ntitle: Cloud moon fill\ncategories:\n  - Weather\ntags:\n  - cloudy\n  - overcast\n---\n"
  },
  {
    "path": "docs/content/icons/cloud-moon.md",
    "content": "---\ntitle: Cloud moon\ncategories:\n  - Weather\ntags:\n  - cloudy\n  - overcast\n---\n"
  },
  {
    "path": "docs/content/icons/cloud-plus-fill.md",
    "content": "---\ntitle: Cloud plus fill\ncategories:\n  - Clouds\ntags:\n  - add\n  - new\n  - upload\n---\n"
  },
  {
    "path": "docs/content/icons/cloud-plus.md",
    "content": "---\ntitle: Cloud plus\ncategories:\n  - Clouds\ntags:\n  - add\n  - new\n  - upload\n---\n"
  },
  {
    "path": "docs/content/icons/cloud-rain-fill.md",
    "content": "---\ntitle: Cloud rain fill\ncategories:\n  - Weather\ntags:\n  - cloud\n  - rainstorm\n  - storm\n---\n"
  },
  {
    "path": "docs/content/icons/cloud-rain-heavy-fill.md",
    "content": "---\ntitle: Cloud rain heavy fill\ncategories:\n  - Weather\ntags:\n  - cloud\n  - rainstorm\n  - storm\n---\n"
  },
  {
    "path": "docs/content/icons/cloud-rain-heavy.md",
    "content": "---\ntitle: Cloud rain heavy\ncategories:\n  - Weather\ntags:\n  - cloud\n  - rainstorm\n  - storm\n---\n"
  },
  {
    "path": "docs/content/icons/cloud-rain.md",
    "content": "---\ntitle: Cloud rain\ncategories:\n  - Weather\ntags:\n  - cloud\n  - rainstorm\n  - storm\n---\n"
  },
  {
    "path": "docs/content/icons/cloud-slash-fill.md",
    "content": "---\ntitle: Cloud slash fill\ncategories:\n  - Clouds\ntags:\n  - cloud\n---\n"
  },
  {
    "path": "docs/content/icons/cloud-slash.md",
    "content": "---\ntitle: Cloud slash\ncategories:\n  - Clouds\ntags:\n  - cloud\n---\n"
  },
  {
    "path": "docs/content/icons/cloud-sleet-fill.md",
    "content": "---\ntitle: Cloud sleet fill\ncategories:\n  - Weather\ntags:\n  - cloud\n  - blizzard\n  - flurries\n---\n"
  },
  {
    "path": "docs/content/icons/cloud-sleet.md",
    "content": "---\ntitle: Cloud sleet\ncategories:\n  - Weather\ntags:\n  - cloud\n  - blizzard\n  - flurries\n---\n"
  },
  {
    "path": "docs/content/icons/cloud-snow-fill.md",
    "content": "---\ntitle: Cloud snow fill\ncategories:\n  - Weather\ntags:\n  - cloud\n  - blizzard\n  - flurries\n---\n"
  },
  {
    "path": "docs/content/icons/cloud-snow.md",
    "content": "---\ntitle: Cloud snow\ncategories:\n  - Weather\ntags:\n  - cloud\n  - blizzard\n  - flurries\n---\n"
  },
  {
    "path": "docs/content/icons/cloud-sun-fill.md",
    "content": "---\ntitle: Cloud sun fill\ncategories:\n  - Weather\ntags:\n  - cloudy\n  - overcast\n---\n"
  },
  {
    "path": "docs/content/icons/cloud-sun.md",
    "content": "---\ntitle: Cloud sun\ncategories:\n  - Weather\ntags:\n  - cloudy\n  - overcast\n---\n"
  },
  {
    "path": "docs/content/icons/cloud-upload-fill.md",
    "content": "---\ntitle: Cloud upload fill\ncategories:\n  - Clouds\ntags:\n  - cloud\n---\n"
  },
  {
    "path": "docs/content/icons/cloud-upload.md",
    "content": "---\ntitle: Cloud upload\ncategories:\n  - Clouds\ntags:\n  - cloud\n---\n"
  },
  {
    "path": "docs/content/icons/cloud.md",
    "content": "---\ntitle: Cloud\ncategories:\n  - Clouds\ntags:\n  - weather\n---\n"
  },
  {
    "path": "docs/content/icons/clouds-fill.md",
    "content": "---\ntitle: Clouds fill\ncategories:\n  - Weather\ntags:\n  - clouds\n  - overcast\n---\n"
  },
  {
    "path": "docs/content/icons/clouds.md",
    "content": "---\ntitle: Clouds\ncategories:\n  - Weather\ntags:\n  - clouds\n  - overcast\n---\n"
  },
  {
    "path": "docs/content/icons/cloudy-fill.md",
    "content": "---\ntitle: Cloudy fill\ncategories:\n  - Weather\ntags:\n  - clouds\n  - overcast\n---\n"
  },
  {
    "path": "docs/content/icons/cloudy.md",
    "content": "---\ntitle: Cloudy\ncategories:\n  - Weather\ntags:\n  - clouds\n  - overcast\n---\n"
  },
  {
    "path": "docs/content/icons/code-slash.md",
    "content": "---\ntitle: Code slash\ncategories:\n  - Typography\ntags:\n  - text\n  - type\n  - code\n  - developer\n  - development\n  - software\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/code-square.md",
    "content": "---\ntitle: Code square\ncategories:\n  - Typography\ntags:\n  - text\n  - type\n  - code\n  - developer\n  - development\n  - software\n  - preformatted\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/code.md",
    "content": "---\ntitle: Code\ncategories:\n  - Typography\ntags:\n  - text\n  - type\n  - code\n  - developer\n  - development\n  - software\n---\n"
  },
  {
    "path": "docs/content/icons/coin.md",
    "content": "---\ntitle: Coin\ncategories:\n  - Commerce\ntags:\n  - money\n  - finance\n  - banking\n  - currency\n---\n"
  },
  {
    "path": "docs/content/icons/collection-fill.md",
    "content": "---\ntitle: Collection fill\ncategories:\n  - Media\ntags:\n  - library\n  - group\n---\n"
  },
  {
    "path": "docs/content/icons/collection-play-fill.md",
    "content": "---\ntitle: Collection play fill\ncategories:\n  - Media\ntags:\n  - library\n  - group\n  - play\n---\n"
  },
  {
    "path": "docs/content/icons/collection-play.md",
    "content": "---\ntitle: Collection play\ncategories:\n  - Media\ntags:\n  - library\n  - group\n  - play\n---\n"
  },
  {
    "path": "docs/content/icons/collection.md",
    "content": "---\ntitle: Collection\ncategories:\n  - Media\ntags:\n  - library\n  - group\n---\n"
  },
  {
    "path": "docs/content/icons/columns-gap.md",
    "content": "---\ntitle: Columns gap\ncategories:\n  - Layout\ntags:\n  - grid\n  - layout\n---\n"
  },
  {
    "path": "docs/content/icons/columns.md",
    "content": "---\ntitle: Columns\ncategories:\n  - Layout\ntags:\n  - grid\n  - layout\n---\n"
  },
  {
    "path": "docs/content/icons/command.md",
    "content": "---\ntitle: Command\ncategories:\n  - UI and keyboard\ntags:\n  - key\n  - mac\n---\n"
  },
  {
    "path": "docs/content/icons/compass-fill.md",
    "content": "---\ntitle: Compass fill\ncategories:\n  - Geo\ntags:\n  - direction\n  - map\n  - location\n---\n"
  },
  {
    "path": "docs/content/icons/compass.md",
    "content": "---\ntitle: Compass\ncategories:\n  - Geo\ntags:\n  - direction\n  - map\n  - location\n---\n"
  },
  {
    "path": "docs/content/icons/cone-striped.md",
    "content": "---\ntitle: Cone striped\ncategories:\n  - Real world\ntags:\n  - construction\n  - warning\n  - safety\n---\n"
  },
  {
    "path": "docs/content/icons/cone.md",
    "content": "---\ntitle: Cone\ncategories:\n  - Real world\ntags:\n  - construction\n  - warning\n  - safety\n---\n"
  },
  {
    "path": "docs/content/icons/controller.md",
    "content": "---\ntitle: Controller\ncategories:\n  - Devices\ntags:\n  - game\n  - gaming\n  - video-game\n---\n"
  },
  {
    "path": "docs/content/icons/cookie.md",
    "content": "---\ntitle: Cookie\ncategories:\n  - Real world\ntags:\n  - dessert\n  - biscuit\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/copy.md",
    "content": "---\ntitle: Copy\ncategories:\n  - UI and keyboard\ntags:\n  - paste\n  - clone\n  - cut\n  - duplicate\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/cpu-fill.md",
    "content": "---\ntitle: Cpu fill\ncategories:\n  - Devices\ntags:\n  - processor\n  - chip\n  - computer\n---\n"
  },
  {
    "path": "docs/content/icons/cpu.md",
    "content": "---\ntitle: CPU\ncategories:\n  - Devices\ntags:\n  - processor\n  - chip\n  - computer\n---\n"
  },
  {
    "path": "docs/content/icons/credit-card-2-back-fill.md",
    "content": "---\ntitle: Credit card 2 back fill\ncategories:\n  - Real world\ntags:\n  - debit\n  - card\n  - payment\n---\n"
  },
  {
    "path": "docs/content/icons/credit-card-2-back.md",
    "content": "---\ntitle: Credit card 2 back\ncategories:\n  - Real world\ntags:\n  - debit\n  - card\n  - payment\n---\n"
  },
  {
    "path": "docs/content/icons/credit-card-2-front-fill.md",
    "content": "---\ntitle: Credit card 2 front fill\ncategories:\n  - Real world\ntags:\n  - debit\n  - card\n  - payment\n---\n"
  },
  {
    "path": "docs/content/icons/credit-card-2-front.md",
    "content": "---\ntitle: Credit card 2 front\ncategories:\n  - Real world\ntags:\n  - debit\n  - card\n  - payment\n---\n"
  },
  {
    "path": "docs/content/icons/credit-card-fill.md",
    "content": "---\ntitle: Credit card fill\ncategories:\n  - Real world\ntags:\n  - debit\n  - card\n  - payment\n---\n"
  },
  {
    "path": "docs/content/icons/credit-card.md",
    "content": "---\ntitle: Credit card\ncategories:\n  - Real world\ntags:\n  - debit\n  - card\n  - payment\n---\n"
  },
  {
    "path": "docs/content/icons/crop.md",
    "content": "---\ntitle: Crop\ncategories:\n  - Graphics\ntags:\n  - crop\n---\n"
  },
  {
    "path": "docs/content/icons/crosshair.md",
    "content": "---\ntitle: Crosshair\ncategories:\n  - Geo\ntags:\n  - geography\n  - map\n  - pin\n  - location\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/crosshair2.md",
    "content": "---\ntitle: Crosshair2\ncategories:\n  - Geo\ntags:\n  - geography\n  - map\n  - pin\n  - location\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/css.md",
    "content": "---\ntitle: CSS\ncategories:\n  - Brand\ntags:\n  - frontend\n  - stylesheet\n  - web\n---\n"
  },
  {
    "path": "docs/content/icons/cup-fill.md",
    "content": "---\ntitle: Cup fill\ncategories:\n  - Real world\ntags:\n  - mug\n---\n"
  },
  {
    "path": "docs/content/icons/cup-hot-fill.md",
    "content": "---\ntitle: Cup hot fill\ncategories:\n  - Real world\ntags:\n  - mug\n  - steam\n  - coffee\n  - tea\n---\n"
  },
  {
    "path": "docs/content/icons/cup-hot.md",
    "content": "---\ntitle: Cup hot\ncategories:\n  - Real world\ntags:\n  - mug\n  - steam\n  - coffee\n  - tea\n---\n"
  },
  {
    "path": "docs/content/icons/cup-straw.md",
    "content": "---\ntitle: Cup straw\ncategories:\n  - Real world\ntags:\n  - mug\n  - glass\n  - drink\n---\n"
  },
  {
    "path": "docs/content/icons/cup.md",
    "content": "---\ntitle: Cup\ncategories:\n  - Real world\ntags:\n  - mug\n---\n"
  },
  {
    "path": "docs/content/icons/currency-bitcoin.md",
    "content": "---\ntitle: Currency bitcoin\ncategories:\n  - Commerce\ntags:\n  - money\n  - finance\n  - crypto\n---\n"
  },
  {
    "path": "docs/content/icons/currency-dollar.md",
    "content": "---\ntitle: Currency dollar\ncategories:\n  - Commerce\ntags:\n  - money\n  - finance\n  - usd\n---\n"
  },
  {
    "path": "docs/content/icons/currency-euro.md",
    "content": "---\ntitle: Currency euro\ncategories:\n  - Commerce\ntags:\n  - money\n  - finance\n---\n"
  },
  {
    "path": "docs/content/icons/currency-exchange.md",
    "content": "---\ntitle: Currency exchange\ncategories:\n  - Commerce\ntags:\n  - money\n  - finance\n---\n"
  },
  {
    "path": "docs/content/icons/currency-pound.md",
    "content": "---\ntitle: Currency pound\ncategories:\n  - Commerce\ntags:\n  - money\n  - finance\n---\n"
  },
  {
    "path": "docs/content/icons/currency-rupee.md",
    "content": "---\ntitle: Currency rupee\ncategories:\n  - Commerce\ntags:\n  - money\n  - finance\n---\n"
  },
  {
    "path": "docs/content/icons/currency-yen.md",
    "content": "---\ntitle: Currency yen\ncategories:\n  - Commerce\ntags:\n  - money\n  - finance\n---\n"
  },
  {
    "path": "docs/content/icons/cursor-fill.md",
    "content": "---\ntitle: Cursor fill\ncategories:\n  - Geo\ntags:\n  - pointer\n---\n"
  },
  {
    "path": "docs/content/icons/cursor-text.md",
    "content": "---\ntitle: Cursor text\ncategories:\n  - Typography\ntags:\n  - text\n  - type\n  - cursor\n---\n"
  },
  {
    "path": "docs/content/icons/cursor.md",
    "content": "---\ntitle: Cursor\ncategories:\n  - Geo\ntags:\n  - pointer\n---\n"
  },
  {
    "path": "docs/content/icons/dash-circle-dotted.md",
    "content": "---\ntitle: Dash circle dotted\ncategories:\n  - Alerts, warnings, and signs\ntags:\n  - minus\n---\n"
  },
  {
    "path": "docs/content/icons/dash-circle-fill.md",
    "content": "---\ntitle: Dash circle fill\ncategories:\n  - Alerts, warnings, and signs\ntags:\n  - minus\n---\n"
  },
  {
    "path": "docs/content/icons/dash-circle.md",
    "content": "---\ntitle: Dash circle\ncategories:\n  - Alerts, warnings, and signs\ntags:\n  - minus\n---\n"
  },
  {
    "path": "docs/content/icons/dash-lg.md",
    "content": "---\ntitle: Dash lg\ncategories:\n  - Alerts, warnings, and signs\ntags:\n  - minus\n  - math\n---\n"
  },
  {
    "path": "docs/content/icons/dash-square-dotted.md",
    "content": "---\ntitle: Dash square dotted\ncategories:\n  - Alerts, warnings, and signs\ntags:\n  - minus\n---\n"
  },
  {
    "path": "docs/content/icons/dash-square-fill.md",
    "content": "---\ntitle: Dash square fill\ncategories:\n  - Alerts, warnings, and signs\ntags:\n  - minus\n---\n"
  },
  {
    "path": "docs/content/icons/dash-square.md",
    "content": "---\ntitle: Dash square\ncategories:\n  - Alerts, warnings, and signs\ntags:\n  - minus\n---\n"
  },
  {
    "path": "docs/content/icons/dash.md",
    "content": "---\ntitle: Dash\ncategories:\n  - Alerts, warnings, and signs\ntags:\n  - minus\n  - math\n---\n"
  },
  {
    "path": "docs/content/icons/database-add.md",
    "content": "---\ntitle: Database add\ncategories:\n  - Devices\ntags:\n  - server\n  - data\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/database-check.md",
    "content": "---\ntitle: Database check\ncategories:\n  - Devices\ntags:\n  - server\n  - data\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/database-dash.md",
    "content": "---\ntitle: Database dash\ncategories:\n  - Devices\ntags:\n  - server\n  - data\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/database-down.md",
    "content": "---\ntitle: Database down\ncategories:\n  - Devices\ntags:\n  - server\n  - data\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/database-exclamation.md",
    "content": "---\ntitle: Database exclamation\ncategories:\n  - Devices\ntags:\n  - server\n  - data\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/database-fill-add.md",
    "content": "---\ntitle: Database fill add\ncategories:\n  - Devices\ntags:\n  - server\n  - data\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/database-fill-check.md",
    "content": "---\ntitle: Database fill check\ncategories:\n  - Devices\ntags:\n  - server\n  - data\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/database-fill-dash.md",
    "content": "---\ntitle: Database fill dash\ncategories:\n  - Devices\ntags:\n  - server\n  - data\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/database-fill-down.md",
    "content": "---\ntitle: Database fill down\ncategories:\n  - Devices\ntags:\n  - server\n  - data\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/database-fill-exclamation.md",
    "content": "---\ntitle: Database fill exclamation\ncategories:\n  - Devices\ntags:\n  - server\n  - data\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/database-fill-gear.md",
    "content": "---\ntitle: Database fill gear\ncategories:\n  - Devices\ntags:\n  - server\n  - data\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/database-fill-lock.md",
    "content": "---\ntitle: Database fill lock\ncategories:\n  - Devices\ntags:\n  - server\n  - data\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/database-fill-slash.md",
    "content": "---\ntitle: Database fill slash\ncategories:\n  - Devices\ntags:\n  - server\n  - data\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/database-fill-up.md",
    "content": "---\ntitle: Database fill up\ncategories:\n  - Devices\ntags:\n  - server\n  - data\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/database-fill-x.md",
    "content": "---\ntitle: Database fill x\ncategories:\n  - Devices\ntags:\n  - server\n  - data\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/database-fill.md",
    "content": "---\ntitle: Database fill\ncategories:\n  - Devices\ntags:\n  - server\n  - data\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/database-gear.md",
    "content": "---\ntitle: Database gear\ncategories:\n  - Devices\ntags:\n  - server\n  - data\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/database-lock.md",
    "content": "---\ntitle: Database lock\ncategories:\n  - Devices\ntags:\n  - server\n  - data\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/database-slash.md",
    "content": "---\ntitle: Database slash\ncategories:\n  - Devices\ntags:\n  - server\n  - data\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/database-up.md",
    "content": "---\ntitle: Database up\ncategories:\n  - Devices\ntags:\n  - server\n  - data\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/database-x.md",
    "content": "---\ntitle: Database x\ncategories:\n  - Devices\ntags:\n  - server\n  - data\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/database.md",
    "content": "---\ntitle: Database\ncategories:\n  - Devices\ntags:\n  - server\n  - data\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/device-hdd-fill.md",
    "content": "---\ntitle: Device HDD fill\ncategories:\n  - Devices\ntags:\n  - drive\n  - \"hard drive\"\n---\n"
  },
  {
    "path": "docs/content/icons/device-hdd.md",
    "content": "---\ntitle: Device HDD\ncategories:\n  - Devices\ntags:\n  - drive\n  - \"hard drive\"\n---\n"
  },
  {
    "path": "docs/content/icons/device-ssd-fill.md",
    "content": "---\ntitle: Device SSD fill\ncategories:\n  - Devices\ntags:\n  - \"solid state\"\n  - drive\n---\n"
  },
  {
    "path": "docs/content/icons/device-ssd.md",
    "content": "---\ntitle: Device SSD\ncategories:\n  - Devices\ntags:\n  - \"solid state\"\n  - drive\n---\n"
  },
  {
    "path": "docs/content/icons/diagram-2-fill.md",
    "content": "---\ntitle: Diagram 2 fill\ncategories:\n  - Graphics\ntags:\n  - node\n  - diagram\n  - sitemap\n  - children\n  - \"org chart\"\n---\n"
  },
  {
    "path": "docs/content/icons/diagram-2.md",
    "content": "---\ntitle: Diagram 2\ncategories:\n  - Graphics\ntags:\n  - node\n  - diagram\n  - sitemap\n  - children\n  - \"org chart\"\n---\n"
  },
  {
    "path": "docs/content/icons/diagram-3-fill.md",
    "content": "---\ntitle: Diagram 3 fill\ncategories:\n  - Graphics\ntags:\n  - node\n  - diagram\n  - sitemap\n  - children\n  - \"org chart\"\n---\n"
  },
  {
    "path": "docs/content/icons/diagram-3.md",
    "content": "---\ntitle: Diagram 3\ncategories:\n  - Graphics\ntags:\n  - node\n  - diagram\n  - sitemap\n  - children\n  - \"org chart\"\n---\n"
  },
  {
    "path": "docs/content/icons/diamond-fill.md",
    "content": "---\ntitle: Diamond fill\ncategories:\n  - Shapes\ntags:\n  - shape\n---\n"
  },
  {
    "path": "docs/content/icons/diamond-half.md",
    "content": "---\ntitle: Diamond half fill\ncategories:\n  - Shapes\ntags:\n  - shape\n---\n"
  },
  {
    "path": "docs/content/icons/diamond.md",
    "content": "---\ntitle: Diamond\ncategories:\n  - Shapes\ntags:\n  - shape\n---\n"
  },
  {
    "path": "docs/content/icons/dice-1-fill.md",
    "content": "---\ntitle: Dice 1 fill\ncategories:\n  - Entertainment\ntags:\n  - dice\n  - die\n  - games\n  - gaming\n  - gambling\n---\n"
  },
  {
    "path": "docs/content/icons/dice-1.md",
    "content": "---\ntitle: Dice 1\ncategories:\n  - Entertainment\ntags:\n  - dice\n  - die\n  - games\n  - gaming\n  - gambling\n---\n"
  },
  {
    "path": "docs/content/icons/dice-2-fill.md",
    "content": "---\ntitle: Dice 2 fill\ncategories:\n  - Entertainment\ntags:\n  - dice\n  - die\n  - games\n  - gaming\n  - gambling\n---\n"
  },
  {
    "path": "docs/content/icons/dice-2.md",
    "content": "---\ntitle: Dice 2\ncategories:\n  - Entertainment\ntags:\n  - dice\n  - die\n  - games\n  - gaming\n  - gambling\n---\n"
  },
  {
    "path": "docs/content/icons/dice-3-fill.md",
    "content": "---\ntitle: Dice 3 fill\ncategories:\n  - Entertainment\ntags:\n  - dice\n  - die\n  - games\n  - gaming\n  - gambling\n---\n"
  },
  {
    "path": "docs/content/icons/dice-3.md",
    "content": "---\ntitle: Dice 3\ncategories:\n  - Entertainment\ntags:\n  - dice\n  - die\n  - games\n  - gaming\n  - gambling\n---\n"
  },
  {
    "path": "docs/content/icons/dice-4-fill.md",
    "content": "---\ntitle: Dice 4 fill\ncategories:\n  - Entertainment\ntags:\n  - dice\n  - die\n  - games\n  - gaming\n  - gambling\n---\n"
  },
  {
    "path": "docs/content/icons/dice-4.md",
    "content": "---\ntitle: Dice 4\ncategories:\n  - Entertainment\ntags:\n  - dice\n  - die\n  - games\n  - gaming\n  - gambling\n---\n"
  },
  {
    "path": "docs/content/icons/dice-5-fill.md",
    "content": "---\ntitle: Dice 5 fill\ncategories:\n  - Entertainment\ntags:\n  - dice\n  - die\n  - games\n  - gaming\n  - gambling\n---\n"
  },
  {
    "path": "docs/content/icons/dice-5.md",
    "content": "---\ntitle: Dice 5\ncategories:\n  - Entertainment\ntags:\n  - dice\n  - die\n  - games\n  - gaming\n  - gambling\n---\n"
  },
  {
    "path": "docs/content/icons/dice-6-fill.md",
    "content": "---\ntitle: Dice 6 fill\ncategories:\n  - Entertainment\ntags:\n  - dice\n  - die\n  - games\n  - gaming\n  - gambling\n---\n"
  },
  {
    "path": "docs/content/icons/dice-6.md",
    "content": "---\ntitle: Dice 6\ncategories:\n  - Entertainment\ntags:\n  - dice\n  - die\n  - games\n  - gaming\n  - gambling\n---\n"
  },
  {
    "path": "docs/content/icons/disc-fill.md",
    "content": "---\ntitle: Disc fill\ncategories:\n  - Media\ntags:\n  - cd\n  - compact disc\n  - bluray\n  - dvd\n---\n"
  },
  {
    "path": "docs/content/icons/disc.md",
    "content": "---\ntitle: Disc\ncategories:\n  - Media\ntags:\n  - cd\n  - compact disc\n  - bluray\n  - dvd\n---\n"
  },
  {
    "path": "docs/content/icons/discord.md",
    "content": "---\ntitle: Discord\ncategories:\n  - Brand\ntags:\n  - social\n  - chat\n---\n"
  },
  {
    "path": "docs/content/icons/display-fill.md",
    "content": "---\ntitle: Display fill\ncategories:\n  - Devices\ntags:\n  - monitor\n  - external\n---\n"
  },
  {
    "path": "docs/content/icons/display.md",
    "content": "---\ntitle: Display\ncategories:\n  - Devices\ntags:\n  - monitor\n  - external\n---\n"
  },
  {
    "path": "docs/content/icons/displayport-fill.md",
    "content": "---\ntitle: DisplayPort fill\ncategories:\n  - Devices\ntags:\n  - video\n  - input\n---\n"
  },
  {
    "path": "docs/content/icons/displayport.md",
    "content": "---\ntitle: DisplayPort\ncategories:\n  - Devices\ntags:\n  - video\n  - input\n---\n"
  },
  {
    "path": "docs/content/icons/distribute-horizontal.md",
    "content": "---\ntitle: Distribute horizontal\ncategories:\n  - Graphics\ntags:\n  - space\n  - align\n---\n"
  },
  {
    "path": "docs/content/icons/distribute-vertical.md",
    "content": "---\ntitle: Distribute vertical\ncategories:\n  - Graphics\ntags:\n  - space\n  - align\n---\n"
  },
  {
    "path": "docs/content/icons/door-closed-fill.md",
    "content": "---\ntitle: Door closed fill\ncategories:\n  - Real world\ntags:\n  - door\n  - logout\n  - signout\n---\n"
  },
  {
    "path": "docs/content/icons/door-closed.md",
    "content": "---\ntitle: Door closed\ncategories:\n  - Real world\ntags:\n  - door\n  - logout\n  - signout\n---\n"
  },
  {
    "path": "docs/content/icons/door-open-fill.md",
    "content": "---\ntitle: Door open fill\ncategories:\n  - Real world\ntags:\n  - door\n  - login\n  - signin\n---\n"
  },
  {
    "path": "docs/content/icons/door-open.md",
    "content": "---\ntitle: Door open\ncategories:\n  - Real world\ntags:\n  - door\n  - login\n  - signin\n---\n"
  },
  {
    "path": "docs/content/icons/dot.md",
    "content": "---\ntitle: Dot\ncategories:\n  - UI and keyboard\ntags:\n  - middot\n  - math\n---\n"
  },
  {
    "path": "docs/content/icons/download.md",
    "content": "---\ntitle: Download\ncategories:\n  - Miscellaneous\ntags:\n  - arrow\n  - network\n  - save\n---\n"
  },
  {
    "path": "docs/content/icons/dpad-fill.md",
    "content": "---\ntitle: Dpad fill\ncategories:\n  - Entertainment\ntags:\n  - gaming\n  - controller\n  - direction\n---\n"
  },
  {
    "path": "docs/content/icons/dpad.md",
    "content": "---\ntitle: Dpad\ncategories:\n  - Entertainment\ntags:\n  - gaming\n  - controller\n  - direction\n---\n"
  },
  {
    "path": "docs/content/icons/dribbble.md",
    "content": "---\ntitle: Dribbble\ncategories:\n  - Brand\ntags:\n  - social\n---\n"
  },
  {
    "path": "docs/content/icons/dropbox.md",
    "content": "---\ntitle: Dropbox\ncategories:\n  - Brand\ntags:\n  - dropbox\n---\n"
  },
  {
    "path": "docs/content/icons/droplet-fill.md",
    "content": "---\ntitle: Droplet fill\ncategories:\n  - Graphics\ntags:\n  - water-drop\n  - paint\n  - ink\n  - liquid\n---\n"
  },
  {
    "path": "docs/content/icons/droplet-half.md",
    "content": "---\ntitle: Droplet half\ncategories:\n  - Graphics\ntags:\n  - water-drop\n  - paint\n  - ink\n  - liquid\n---\n"
  },
  {
    "path": "docs/content/icons/droplet.md",
    "content": "---\ntitle: Droplet\ncategories:\n  - Graphics\ntags:\n  - water-drop\n  - paint\n  - ink\n  - liquid\n---\n"
  },
  {
    "path": "docs/content/icons/duffle-fill.md",
    "content": "---\ntitle: Duffle fill\ncategories:\n  - Travel\ntags:\n  - luggage\n  - bags\n  - carry-on\n  - student\n  - education\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/duffle.md",
    "content": "---\ntitle: Duffle\ncategories:\n  - Travel\ntags:\n  - luggage\n  - bags\n  - carry-on\n  - student\n  - education\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/ear-fill.md",
    "content": "---\ntitle: Ear fill\ncategories:\n  - Real world\ntags:\n  - hearing\n  - sound\n  - listen\n---\n"
  },
  {
    "path": "docs/content/icons/ear.md",
    "content": "---\ntitle: Ear\ncategories:\n  - Real world\ntags:\n  - hearing\n  - sound\n  - listen\n---\n"
  },
  {
    "path": "docs/content/icons/earbuds.md",
    "content": "---\ntitle: Earbuds\ncategories:\n  - Devices\ntags:\n  - headphones\n---\n"
  },
  {
    "path": "docs/content/icons/easel-fill.md",
    "content": "---\ntitle: Easel fill\ncategories:\n  - Graphics\ntags:\n  - paint\n  - draw\n  - art\n  - present\n---\n"
  },
  {
    "path": "docs/content/icons/easel.md",
    "content": "---\ntitle: Easel\ncategories:\n  - Graphics\ntags:\n  - paint\n  - draw\n  - art\n  - present\n---\n"
  },
  {
    "path": "docs/content/icons/easel2-fill.md",
    "content": "---\ntitle: Easel2 fill\ncategories:\n  - Graphics\ntags:\n  - paint\n  - draw\n  - art\n  - present\n---\n"
  },
  {
    "path": "docs/content/icons/easel2.md",
    "content": "---\ntitle: Easel2\ncategories:\n  - Graphics\ntags:\n  - paint\n  - draw\n  - art\n  - present\n---\n"
  },
  {
    "path": "docs/content/icons/easel3-fill.md",
    "content": "---\ntitle: Easel3 fill\ncategories:\n  - Graphics\ntags:\n  - paint\n  - draw\n  - art\n  - present\n---\n"
  },
  {
    "path": "docs/content/icons/easel3.md",
    "content": "---\ntitle: Easel3\ncategories:\n  - Graphics\ntags:\n  - paint\n  - draw\n  - art\n  - present\n---\n"
  },
  {
    "path": "docs/content/icons/egg-fill.md",
    "content": "---\ntitle: Egg fill\ncategories:\n  - Real world\ntags:\n  - food\n---\n"
  },
  {
    "path": "docs/content/icons/egg-fried.md",
    "content": "---\ntitle: Egg fried\ncategories:\n  - Real world\ntags:\n  - food\n---\n"
  },
  {
    "path": "docs/content/icons/egg.md",
    "content": "---\ntitle: Egg\ncategories:\n  - Real world\ntags:\n  - food\n---\n"
  },
  {
    "path": "docs/content/icons/eject-fill.md",
    "content": "---\ntitle: Eject fill\ncategories:\n  - UI and keyboard\ntags:\n  - disc\n  - cd\n  - dvd\n---\n"
  },
  {
    "path": "docs/content/icons/eject.md",
    "content": "---\ntitle: Eject\ncategories:\n  - UI and keyboard\ntags:\n  - disc\n  - cd\n  - dvd\n---\n"
  },
  {
    "path": "docs/content/icons/emoji-angry-fill.md",
    "content": "---\ntitle: Emoji angry fill\ncategories:\n  - Emoji\ntags:\n  - emoticon\n  - anger\n  - upset\n---\n"
  },
  {
    "path": "docs/content/icons/emoji-angry.md",
    "content": "---\ntitle: Emoji angry\ncategories:\n  - Emoji\ntags:\n  - emoticon\n  - anger\n  - upset\n---\n"
  },
  {
    "path": "docs/content/icons/emoji-astonished-fill.md",
    "content": "---\ntitle: Emoji astonished fill\ncategories:\n  - Emoji\ntags:\n  - emoticon\n  - surprised\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/emoji-astonished.md",
    "content": "---\ntitle: Emoji astonished\ncategories:\n  - Emoji\ntags:\n  - emoticon\n  - surprised\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/emoji-dizzy-fill.md",
    "content": "---\ntitle: Emoji dizzy fill\ncategories:\n  - Emoji\ntags:\n  - emoticon\n---\n"
  },
  {
    "path": "docs/content/icons/emoji-dizzy.md",
    "content": "---\ntitle: Emoji dizzy\ncategories:\n  - Emoji\ntags:\n  - emoticon\n---\n"
  },
  {
    "path": "docs/content/icons/emoji-expressionless-fill.md",
    "content": "---\ntitle: Emoji expressionless fill\ncategories:\n  - Emoji\ntags:\n  - emoticon\n  - neutral\n  - unphased\n---\n"
  },
  {
    "path": "docs/content/icons/emoji-expressionless.md",
    "content": "---\ntitle: Emoji expressionless\ncategories:\n  - Emoji\ntags:\n  - emoticon\n  - neutral\n  - unphased\n---\n"
  },
  {
    "path": "docs/content/icons/emoji-frown-fill.md",
    "content": "---\ntitle: Emoji frown fill\ncategories:\n  - Emoji\ntags:\n  - emoticon\n  - sad\n---\n"
  },
  {
    "path": "docs/content/icons/emoji-frown.md",
    "content": "---\ntitle: Emoji frown\ncategories:\n  - Emoji\ntags:\n  - emoticon\n  - sad\n---\n"
  },
  {
    "path": "docs/content/icons/emoji-grimace-fill.md",
    "content": "---\ntitle: Emoji grimace fill\ncategories:\n  - Emoji\ntags:\n  - emoticon\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/emoji-grimace.md",
    "content": "---\ntitle: Emoji grimace\ncategories:\n  - Emoji\ntags:\n  - emoticon\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/emoji-grin-fill.md",
    "content": "---\ntitle: Emoji grin fill\ncategories:\n  - Emoji\ntags:\n  - emoticon\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/emoji-grin.md",
    "content": "---\ntitle: Emoji grin\ncategories:\n  - Emoji\ntags:\n  - emoticon\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/emoji-heart-eyes-fill.md",
    "content": "---\ntitle: Emoji heart eyes fill\ncategories:\n  - Emoji\ntags:\n  - emoticon\n  - heart\n  - love\n---\n"
  },
  {
    "path": "docs/content/icons/emoji-heart-eyes.md",
    "content": "---\ntitle: Emoji heart eyes\ncategories:\n  - Emoji\ntags:\n  - emoticon\n  - heart\n  - love\n---\n"
  },
  {
    "path": "docs/content/icons/emoji-kiss-fill.md",
    "content": "---\ntitle: Emoji kiss fill\ncategories:\n  - Emoji\ntags:\n  - emoticon\n  - heart\n  - love\n---\n"
  },
  {
    "path": "docs/content/icons/emoji-kiss.md",
    "content": "---\ntitle: Emoji kiss\ncategories:\n  - Emoji\ntags:\n  - emoticon\n  - heart\n  - love\n---\n"
  },
  {
    "path": "docs/content/icons/emoji-laughing-fill.md",
    "content": "---\ntitle: Emoji laughing fill\ncategories:\n  - Emoji\ntags:\n  - emoticon\n  - happy\n---\n"
  },
  {
    "path": "docs/content/icons/emoji-laughing.md",
    "content": "---\ntitle: Emoji laughing\ncategories:\n  - Emoji\ntags:\n  - emoticon\n  - happy\n---\n"
  },
  {
    "path": "docs/content/icons/emoji-neutral-fill.md",
    "content": "---\ntitle: Emoji neutral fill\ncategories:\n  - Emoji\ntags:\n  - emoticon\n  - expressionless\n---\n"
  },
  {
    "path": "docs/content/icons/emoji-neutral.md",
    "content": "---\ntitle: Emoji neutral\ncategories:\n  - Emoji\ntags:\n  - emoticon\n  - expressionless\n---\n"
  },
  {
    "path": "docs/content/icons/emoji-smile-fill.md",
    "content": "---\ntitle: Emoji smile fill\ncategories:\n  - Emoji\ntags:\n  - emoticon\n  - happy\n---\n"
  },
  {
    "path": "docs/content/icons/emoji-smile-upside-down-fill.md",
    "content": "---\ntitle: Emoji smile upside down fill\ncategories:\n  - Emoji\ntags:\n  - emoticon\n  - sarcasm\n---\n"
  },
  {
    "path": "docs/content/icons/emoji-smile-upside-down.md",
    "content": "---\ntitle: Emoji smile upside down\ncategories:\n  - Emoji\ntags:\n  - emoticon\n  - sarcasm\n---\n"
  },
  {
    "path": "docs/content/icons/emoji-smile.md",
    "content": "---\ntitle: Emoji smile\ncategories:\n  - Emoji\ntags:\n  - emoticon\n  - happy\n---\n"
  },
  {
    "path": "docs/content/icons/emoji-sunglasses-fill.md",
    "content": "---\ntitle: Emoji sunglasses fill\ncategories:\n  - Emoji\ntags:\n  - emoticon\n  - cool\n---\n"
  },
  {
    "path": "docs/content/icons/emoji-sunglasses.md",
    "content": "---\ntitle: Emoji sunglasses\ncategories:\n  - Emoji\ntags:\n  - emoticon\n  - cool\n---\n"
  },
  {
    "path": "docs/content/icons/emoji-surprise-fill.md",
    "content": "---\ntitle: Emoji surprise fill\ncategories:\n  - Emoji\ntags:\n  - emoticon\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/emoji-surprise.md",
    "content": "---\ntitle: Emoji surprise\ncategories:\n  - Emoji\ntags:\n  - emoticon\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/emoji-tear-fill.md",
    "content": "---\ntitle: Emoji tear fill\ncategories:\n  - Emoji\ntags:\n  - emoticon\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/emoji-tear.md",
    "content": "---\ntitle: Emoji tear\ncategories:\n  - Emoji\ntags:\n  - emoticon\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/emoji-wink-fill.md",
    "content": "---\ntitle: Emoji wink fill\ncategories:\n  - Emoji\ntags:\n  - emoticon\n---\n"
  },
  {
    "path": "docs/content/icons/emoji-wink.md",
    "content": "---\ntitle: Emoji wink\ncategories:\n  - Emoji\ntags:\n  - emoticon\n---\n"
  },
  {
    "path": "docs/content/icons/envelope-arrow-down-fill.md",
    "content": "---\ntitle: Envelope arrow down fill\ncategories:\n  - Communications\ntags:\n  - email\n  - message\n  - mail\n  - letter\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/envelope-arrow-down.md",
    "content": "---\ntitle: Envelope arrow down\ncategories:\n  - Communications\ntags:\n  - email\n  - message\n  - mail\n  - letter\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/envelope-arrow-up-fill.md",
    "content": "---\ntitle: Envelope arrow up fill\ncategories:\n  - Communications\ntags:\n  - email\n  - message\n  - mail\n  - letter\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/envelope-arrow-up.md",
    "content": "---\ntitle: Envelope arrow up\ncategories:\n  - Communications\ntags:\n  - email\n  - message\n  - mail\n  - letter\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/envelope-at-fill.md",
    "content": "---\ntitle: Envelope at fill\ncategories:\n  - Communications\ntags:\n  - email\n  - message\n  - mail\n  - letter\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/envelope-at.md",
    "content": "---\ntitle: Envelope at\ncategories:\n  - Communications\ntags:\n  - email\n  - message\n  - mail\n  - letter\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/envelope-check-fill.md",
    "content": "---\ntitle: Envelope check fill\ncategories:\n  - Communications\ntags:\n  - email\n  - message\n  - mail\n  - letter\n---\n"
  },
  {
    "path": "docs/content/icons/envelope-check.md",
    "content": "---\ntitle: Envelope check\ncategories:\n  - Communications\ntags:\n  - email\n  - message\n  - mail\n  - letter\n---\n"
  },
  {
    "path": "docs/content/icons/envelope-dash-fill.md",
    "content": "---\ntitle: Envelope dash fill\ncategories:\n  - Communications\ntags:\n  - email\n  - message\n  - mail\n  - letter\n---\n"
  },
  {
    "path": "docs/content/icons/envelope-dash.md",
    "content": "---\ntitle: Envelope dash\ncategories:\n  - Communications\ntags:\n  - email\n  - message\n  - mail\n  - letter\n---\n"
  },
  {
    "path": "docs/content/icons/envelope-exclamation-fill.md",
    "content": "---\ntitle: Envelope exclamation fill\ncategories:\n  - Communications\ntags:\n  - email\n  - message\n  - mail\n  - letter\n---\n"
  },
  {
    "path": "docs/content/icons/envelope-exclamation.md",
    "content": "---\ntitle: Envelope exclamation\ncategories:\n  - Communications\ntags:\n  - email\n  - message\n  - mail\n  - letter\n---\n"
  },
  {
    "path": "docs/content/icons/envelope-fill.md",
    "content": "---\ntitle: Envelope fill\ncategories:\n  - Communications\ntags:\n  - email\n  - message\n  - mail\n  - letter\n---\n"
  },
  {
    "path": "docs/content/icons/envelope-heart-fill.md",
    "content": "---\ntitle: Envelope heart fill\ncategories:\n  - Communications\ntags:\n  - email\n  - message\n  - mail\n  - letter\n  - love\n  - valentine\n  - romance\n---\n"
  },
  {
    "path": "docs/content/icons/envelope-heart.md",
    "content": "---\ntitle: Envelope heart\ncategories:\n  - Communications\ntags:\n  - email\n  - message\n  - mail\n  - letter\n  - love\n  - valentine\n  - romance\n---\n"
  },
  {
    "path": "docs/content/icons/envelope-open-fill.md",
    "content": "---\ntitle: Envelope open fill\ncategories:\n  - Communications\ntags:\n  - email\n  - message\n  - mail\n  - letter\n---\n"
  },
  {
    "path": "docs/content/icons/envelope-open-heart-fill.md",
    "content": "---\ntitle: Envelope open heart fill\ncategories:\n  - Communications\ntags:\n  - email\n  - message\n  - mail\n  - letter\n  - love\n  - valentine\n  - romance\n---\n"
  },
  {
    "path": "docs/content/icons/envelope-open-heart.md",
    "content": "---\ntitle: Envelope open heart\ncategories:\n  - Communications\ntags:\n  - email\n  - message\n  - mail\n  - letter\n  - love\n  - valentine\n  - romance\n---\n"
  },
  {
    "path": "docs/content/icons/envelope-open.md",
    "content": "---\ntitle: Envelope open\ncategories:\n  - Communications\ntags:\n  - email\n  - message\n  - mail\n  - letter\n---\n"
  },
  {
    "path": "docs/content/icons/envelope-paper-fill.md",
    "content": "---\ntitle: Envelope paper fill\ncategories:\n  - Communications\ntags:\n  - email\n  - message\n  - mail\n  - letter\n---\n"
  },
  {
    "path": "docs/content/icons/envelope-paper-heart-fill.md",
    "content": "---\ntitle: Envelope paper heart fill\ncategories:\n  - Communications\ntags:\n  - email\n  - message\n  - mail\n  - letter\n  - love\n  - valentine\n  - romance\n---\n"
  },
  {
    "path": "docs/content/icons/envelope-paper-heart.md",
    "content": "---\ntitle: Envelope paper heart\ncategories:\n  - Communications\ntags:\n  - email\n  - message\n  - mail\n  - letter\n  - love\n  - valentine\n  - romance\n---\n"
  },
  {
    "path": "docs/content/icons/envelope-paper.md",
    "content": "---\ntitle: Envelope paper\ncategories:\n  - Communications\ntags:\n  - email\n  - message\n  - mail\n  - letter\n---\n"
  },
  {
    "path": "docs/content/icons/envelope-plus-fill.md",
    "content": "---\ntitle: Envelope plus fill\ncategories:\n  - Communications\ntags:\n  - email\n  - message\n  - mail\n  - letter\n---\n"
  },
  {
    "path": "docs/content/icons/envelope-plus.md",
    "content": "---\ntitle: Envelope plus\ncategories:\n  - Communications\ntags:\n  - email\n  - message\n  - mail\n  - letter\n---\n"
  },
  {
    "path": "docs/content/icons/envelope-slash-fill.md",
    "content": "---\ntitle: Envelope slash fill\ncategories:\n  - Communications\ntags:\n  - email\n  - message\n  - mail\n  - letter\n---\n"
  },
  {
    "path": "docs/content/icons/envelope-slash.md",
    "content": "---\ntitle: Envelope slash\ncategories:\n  - Communications\ntags:\n  - email\n  - message\n  - mail\n  - letter\n---\n"
  },
  {
    "path": "docs/content/icons/envelope-x-fill.md",
    "content": "---\ntitle: Envelope x fill\ncategories:\n  - Communications\ntags:\n  - email\n  - message\n  - mail\n  - letter\n---\n"
  },
  {
    "path": "docs/content/icons/envelope-x.md",
    "content": "---\ntitle: Envelope x\ncategories:\n  - Communications\ntags:\n  - email\n  - message\n  - mail\n  - letter\n---\n"
  },
  {
    "path": "docs/content/icons/envelope.md",
    "content": "---\ntitle: Envelope\ncategories:\n  - Communications\ntags:\n  - email\n  - message\n  - mail\n  - letter\n---\n"
  },
  {
    "path": "docs/content/icons/eraser-fill.md",
    "content": "---\ntitle: Eraser fill\ncategories:\n  - Graphics\ntags:\n  - erase\n  - remove\n---\n"
  },
  {
    "path": "docs/content/icons/eraser.md",
    "content": "---\ntitle: Eraser\ncategories:\n  - Graphics\ntags:\n  - erase\n  - remove\n---\n"
  },
  {
    "path": "docs/content/icons/escape.md",
    "content": "---\ntitle: Escape\ncategories:\n  - UI and Keyboard\ntags:\n  - esc\n  - quit\n  - exit\n---\n"
  },
  {
    "path": "docs/content/icons/ethernet.md",
    "content": "---\ntitle: Ethernet\ncategories:\n  - Devices\ntags:\n  - internet\n  - connection\n  - port\n  - plug\n---\n"
  },
  {
    "path": "docs/content/icons/ev-front-fill.md",
    "content": "---\ntitle: Ev front fill\ncategories:\n  - Transportation\ntags:\n  - car\n  - automobile\n  - automotive\n  - auto\n  - sedan\n  - drive\n  - driving\n  - electric vehicle\n  - charging\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/ev-front.md",
    "content": "---\ntitle: Ev front\ncategories:\n  - Transportation\ntags:\n  - car\n  - automobile\n  - automotive\n  - auto\n  - sedan\n  - drive\n  - driving\n  - electric vehicle\n  - charging\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/ev-station-fill.md",
    "content": "---\ntitle: EV station fill\ncategories:\n  - Transportation\ntags:\n  - charging\n  - electric vehicle\n---\n"
  },
  {
    "path": "docs/content/icons/ev-station.md",
    "content": "---\ntitle: EV station\ncategories:\n  - Transportation\ntags:\n  - charging\n  - electric vehicle\n---\n"
  },
  {
    "path": "docs/content/icons/exclamation-circle-fill.md",
    "content": "---\ntitle: Exclamation circle fill\ncategories:\n  - Alerts, warnings, and signs\ntags:\n  - alert\n  - warning\n---\n"
  },
  {
    "path": "docs/content/icons/exclamation-circle.md",
    "content": "---\ntitle: Exclamation circle\ncategories:\n  - Alerts, warnings, and signs\ntags:\n  - alert\n  - warning\n---\n"
  },
  {
    "path": "docs/content/icons/exclamation-diamond-fill.md",
    "content": "---\ntitle: Exclamation diamond fill\ncategories:\n  - Alerts, warnings, and signs\ntags:\n  - alert\n  - warning\n---\n"
  },
  {
    "path": "docs/content/icons/exclamation-diamond.md",
    "content": "---\ntitle: Exclamation diamond\ncategories:\n  - Alerts, warnings, and signs\ntags:\n  - alert\n  - warning\n---\n"
  },
  {
    "path": "docs/content/icons/exclamation-lg.md",
    "content": "---\ntitle: Exclamation lg\ncategories:\n  - Alerts, warnings, and signs\ntags:\n  - alert\n  - warning\n---\n"
  },
  {
    "path": "docs/content/icons/exclamation-octagon-fill.md",
    "content": "---\ntitle: Exclamation octagon fill\ncategories:\n  - Alerts, warnings, and signs\ntags:\n  - alert\n  - warning\n---\n"
  },
  {
    "path": "docs/content/icons/exclamation-octagon.md",
    "content": "---\ntitle: Exclamation octagon\ncategories:\n  - Alerts, warnings, and signs\ntags:\n  - alert\n  - warning\n---\n"
  },
  {
    "path": "docs/content/icons/exclamation-square-fill.md",
    "content": "---\ntitle: Exclamation square fill\ncategories:\n  - Alerts, warnings, and signs\ntags:\n  - alert\n  - warning\n---\n"
  },
  {
    "path": "docs/content/icons/exclamation-square.md",
    "content": "---\ntitle: Exclamation square\ncategories:\n  - Alerts, warnings, and signs\ntags:\n  - alert\n  - warning\n---\n"
  },
  {
    "path": "docs/content/icons/exclamation-triangle-fill.md",
    "content": "---\ntitle: Exclamation triangle fill\ncategories:\n  - Alerts, warnings, and signs\ntags:\n  - alert\n  - warning\n---\n"
  },
  {
    "path": "docs/content/icons/exclamation-triangle.md",
    "content": "---\ntitle: Exclamation triangle\ncategories:\n  - Alerts, warnings, and signs\ntags:\n  - alert\n  - warning\n---\n"
  },
  {
    "path": "docs/content/icons/exclamation.md",
    "content": "---\ntitle: Exclamation\ncategories:\n  - Alerts, warnings, and signs\ntags:\n  - alert\n  - warning\n---\n"
  },
  {
    "path": "docs/content/icons/exclude.md",
    "content": "---\ntitle: Exclude\ncategories:\n  - Graphics\ntags:\n  - graphics\n  - vector\n  - merge\n  - layers\n---\n"
  },
  {
    "path": "docs/content/icons/explicit-fill.md",
    "content": "---\ntitle: Explicit fill\ncategories:\n  - Badges\ntags:\n  - r18\n---\n"
  },
  {
    "path": "docs/content/icons/explicit.md",
    "content": "---\ntitle: Explicit\ncategories:\n  - Badges\ntags:\n  - r18\n---\n"
  },
  {
    "path": "docs/content/icons/exposure.md",
    "content": "---\ntitle: Exposure\ncategories:\n  - Graphics\ntags:\n  - photo\n  - editing\n  - image\n  - picture\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/eye-fill.md",
    "content": "---\ntitle: Eye fill\ncategories:\n  - Real world\ntags:\n  - eyeball\n  - look\n  - see\n---\n"
  },
  {
    "path": "docs/content/icons/eye-slash-fill.md",
    "content": "---\ntitle: Eye slash fill\ncategories:\n  - Real world\ntags:\n  - eyeball\n  - look\n  - see\n---\n"
  },
  {
    "path": "docs/content/icons/eye-slash.md",
    "content": "---\ntitle: Eye slash\ncategories:\n  - Real world\ntags:\n  - eyeball\n  - look\n  - see\n---\n"
  },
  {
    "path": "docs/content/icons/eye.md",
    "content": "---\ntitle: Eye\ncategories:\n  - Real world\ntags:\n  - eyeball\n  - look\n  - see\n---\n"
  },
  {
    "path": "docs/content/icons/eyedropper.md",
    "content": "---\ntitle: Eyedropper\ncategories:\n  - Graphics\ntags:\n  - color\n  - picker\n  - colour\n---\n"
  },
  {
    "path": "docs/content/icons/eyeglasses.md",
    "content": "---\ntitle: Eyeglasses\ncategories:\n  - Real world\ntags:\n  - eyeball\n  - look\n  - see\n  - glasses\n  - reading\n---\n"
  },
  {
    "path": "docs/content/icons/facebook.md",
    "content": "---\ntitle: Facebook\ncategories:\n  - Brand\ntags:\n  - social\n---\n"
  },
  {
    "path": "docs/content/icons/fan.md",
    "content": "---\ntitle: Fan\ncategories:\n  - Real world\ntags:\n  - fan\n  - vent\n  - airflow\n---\n"
  },
  {
    "path": "docs/content/icons/fast-forward-btn-fill.md",
    "content": "---\ntitle: Fast forward btn fill\ncategories:\n  - Media\ntags:\n  - audio\n  - video\n  - av\n---\n"
  },
  {
    "path": "docs/content/icons/fast-forward-btn.md",
    "content": "---\ntitle: Fast forward btn\ncategories:\n  - Media\ntags:\n  - audio\n  - video\n  - av\n---\n"
  },
  {
    "path": "docs/content/icons/fast-forward-circle-fill.md",
    "content": "---\ntitle: Fast forward circle fill\ncategories:\n  - Media\ntags:\n  - audio\n  - video\n  - av\n---\n"
  },
  {
    "path": "docs/content/icons/fast-forward-circle.md",
    "content": "---\ntitle: Fast forward circle\ncategories:\n  - Media\ntags:\n  - audio\n  - video\n  - av\n---\n"
  },
  {
    "path": "docs/content/icons/fast-forward-fill.md",
    "content": "---\ntitle: Fast forward fill\ncategories:\n  - Media\ntags:\n  - audio\n  - video\n  - av\n---\n"
  },
  {
    "path": "docs/content/icons/fast-forward.md",
    "content": "---\ntitle: Fast forward\ncategories:\n  - Media\ntags:\n  - audio\n  - video\n  - av\n---\n"
  },
  {
    "path": "docs/content/icons/feather.md",
    "content": "---\ntitle: Feather\ncategories:\n  - Real world\ntags:\n  - bird\n  - flight\n  - light\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/feather2.md",
    "content": "---\ntitle: Feather2\ncategories:\n  - Real world\ntags:\n  - bird\n  - flight\n  - light\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/file-arrow-down-fill.md",
    "content": "---\ntitle: File arrow down fill\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n  - download\n---\n"
  },
  {
    "path": "docs/content/icons/file-arrow-down.md",
    "content": "---\ntitle: File arrow down\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n  - download\n---\n"
  },
  {
    "path": "docs/content/icons/file-arrow-up-fill.md",
    "content": "---\ntitle: File arrow up fill\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n  - upload\n---\n"
  },
  {
    "path": "docs/content/icons/file-arrow-up.md",
    "content": "---\ntitle: File arrow up\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n  - upload\n---\n"
  },
  {
    "path": "docs/content/icons/file-bar-graph-fill.md",
    "content": "---\ntitle: File bar graph fill\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n  - data\n  - chart\n---\n"
  },
  {
    "path": "docs/content/icons/file-bar-graph.md",
    "content": "---\ntitle: File bar graph\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n  - data\n  - chart\n---\n"
  },
  {
    "path": "docs/content/icons/file-binary-fill.md",
    "content": "---\ntitle: File binary fill\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n  - binary\n  - source\n---\n"
  },
  {
    "path": "docs/content/icons/file-binary.md",
    "content": "---\ntitle: File binary\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n  - binary\n  - source\n---\n"
  },
  {
    "path": "docs/content/icons/file-break-fill.md",
    "content": "---\ntitle: File break fill\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n  - page-break\n---\n"
  },
  {
    "path": "docs/content/icons/file-break.md",
    "content": "---\ntitle: File break\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n  - page-break\n---\n"
  },
  {
    "path": "docs/content/icons/file-check-fill.md",
    "content": "---\ntitle: File check fill\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n  - check\n  - verified\n---\n"
  },
  {
    "path": "docs/content/icons/file-check.md",
    "content": "---\ntitle: File check\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n  - check\n  - verified\n---\n"
  },
  {
    "path": "docs/content/icons/file-code-fill.md",
    "content": "---\ntitle: File code fill\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n  - code\n  - development\n---\n"
  },
  {
    "path": "docs/content/icons/file-code.md",
    "content": "---\ntitle: File code\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n  - code\n  - development\n---\n"
  },
  {
    "path": "docs/content/icons/file-diff-fill.md",
    "content": "---\ntitle: File diff fill\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n  - version\n  - development\n---\n"
  },
  {
    "path": "docs/content/icons/file-diff.md",
    "content": "---\ntitle: File diff\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n  - version\n  - development\n---\n"
  },
  {
    "path": "docs/content/icons/file-earmark-arrow-down-fill.md",
    "content": "---\ntitle: File earmark arrow down fill\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n  - download\n---\n"
  },
  {
    "path": "docs/content/icons/file-earmark-arrow-down.md",
    "content": "---\ntitle: File earmark arrow down\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n  - download\n---\n"
  },
  {
    "path": "docs/content/icons/file-earmark-arrow-up-fill.md",
    "content": "---\ntitle: File earmark arrow up fill\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n  - upload\n---\n"
  },
  {
    "path": "docs/content/icons/file-earmark-arrow-up.md",
    "content": "---\ntitle: File earmark arrow up\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n  - upload\n---\n"
  },
  {
    "path": "docs/content/icons/file-earmark-bar-graph-fill.md",
    "content": "---\ntitle: File earmark bar graph fill\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n  - data\n  - chart\n---\n"
  },
  {
    "path": "docs/content/icons/file-earmark-bar-graph.md",
    "content": "---\ntitle: File earmark bar graph\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n  - data\n  - chart\n---\n"
  },
  {
    "path": "docs/content/icons/file-earmark-binary-fill.md",
    "content": "---\ntitle: File earmark binary fill\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n  - binary\n  - source\n---\n"
  },
  {
    "path": "docs/content/icons/file-earmark-binary.md",
    "content": "---\ntitle: File earmark binary\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n  - binary\n  - source\n---\n"
  },
  {
    "path": "docs/content/icons/file-earmark-break-fill.md",
    "content": "---\ntitle: File earmark break fill\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n  - page-break\n---\n"
  },
  {
    "path": "docs/content/icons/file-earmark-break.md",
    "content": "---\ntitle: File earmark break\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n  - page-break\n---\n"
  },
  {
    "path": "docs/content/icons/file-earmark-check-fill.md",
    "content": "---\ntitle: File earmark check fill\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n  - check\n  - verified\n---\n"
  },
  {
    "path": "docs/content/icons/file-earmark-check.md",
    "content": "---\ntitle: File earmark check\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n  - check\n  - verified\n---\n"
  },
  {
    "path": "docs/content/icons/file-earmark-code-fill.md",
    "content": "---\ntitle: File earmark code fill\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n  - code\n  - development\n---\n"
  },
  {
    "path": "docs/content/icons/file-earmark-code.md",
    "content": "---\ntitle: File earmark code\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n  - code\n  - development\n---\n"
  },
  {
    "path": "docs/content/icons/file-earmark-diff-fill.md",
    "content": "---\ntitle: File earmark diff fill\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n  - version\n  - development\n---\n"
  },
  {
    "path": "docs/content/icons/file-earmark-diff.md",
    "content": "---\ntitle: File earmark diff\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n  - version\n  - development\n---\n"
  },
  {
    "path": "docs/content/icons/file-earmark-easel-fill.md",
    "content": "---\ntitle: File earmark easel fill\ncategories:\n  - Files and folders\ntags:\n  - slides\n  - presentation\n  - powerpoint\n  - keynote\n---\n"
  },
  {
    "path": "docs/content/icons/file-earmark-easel.md",
    "content": "---\ntitle: File earmark easel\ncategories:\n  - Files and folders\ntags:\n  - slides\n  - presentation\n  - powerpoint\n  - keynote\n---\n"
  },
  {
    "path": "docs/content/icons/file-earmark-excel-fill.md",
    "content": "---\ntitle: File earmark excel fill\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n  - spreadsheet\n  - excel\n  - table\n---\n"
  },
  {
    "path": "docs/content/icons/file-earmark-excel.md",
    "content": "---\ntitle: File earmark excel\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n  - spreadsheet\n  - excel\n  - table\n---\n"
  },
  {
    "path": "docs/content/icons/file-earmark-fill.md",
    "content": "---\ntitle: File earmark fill\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n  - page\n---\n"
  },
  {
    "path": "docs/content/icons/file-earmark-font-fill.md",
    "content": "---\ntitle: File earmark font fill\ncategories:\n  - Files and folders\ntags:\n  - ttf\n  - otf\n---\n"
  },
  {
    "path": "docs/content/icons/file-earmark-font.md",
    "content": "---\ntitle: File earmark font\ncategories:\n  - Files and folders\ntags:\n  - ttf\n  - otf\n---\n"
  },
  {
    "path": "docs/content/icons/file-earmark-image-fill.md",
    "content": "---\ntitle: File earmark image fill\ncategories:\n  - Files and folders\ntags:\n  - photo\n  - picture\n---\n"
  },
  {
    "path": "docs/content/icons/file-earmark-image.md",
    "content": "---\ntitle: File earmark image\ncategories:\n  - Files and folders\ntags:\n  - photo\n  - picture\n---\n"
  },
  {
    "path": "docs/content/icons/file-earmark-lock-fill.md",
    "content": "---\ntitle: File earmark lock fill\ncategories:\n  - Files and folders\ntags:\n  - lock\n  - private\n  - secure\n---\n"
  },
  {
    "path": "docs/content/icons/file-earmark-lock.md",
    "content": "---\ntitle: File earmark lock\ncategories:\n  - Files and folders\ntags:\n  - lock\n  - private\n  - secure\n---\n"
  },
  {
    "path": "docs/content/icons/file-earmark-lock2-fill.md",
    "content": "---\ntitle: File earmark lock2 fill\ncategories:\n  - Files and folders\ntags:\n  - lock\n  - private\n  - secure\n---\n"
  },
  {
    "path": "docs/content/icons/file-earmark-lock2.md",
    "content": "---\ntitle: File earmark lock2\ncategories:\n  - Files and folders\ntags:\n  - lock\n  - private\n  - secure\n---\n"
  },
  {
    "path": "docs/content/icons/file-earmark-medical-fill.md",
    "content": "---\ntitle: File earmark medical fill\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n  - medical\n  - hospital\n  - health\n---\n"
  },
  {
    "path": "docs/content/icons/file-earmark-medical.md",
    "content": "---\ntitle: File earmark medical\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n  - medical\n  - hospital\n  - health\n---\n"
  },
  {
    "path": "docs/content/icons/file-earmark-minus-fill.md",
    "content": "---\ntitle: File earmark minus fill\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n  - delete\n  - remove\n---\n"
  },
  {
    "path": "docs/content/icons/file-earmark-minus.md",
    "content": "---\ntitle: File earmark minus\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n  - delete\n  - remove\n---\n"
  },
  {
    "path": "docs/content/icons/file-earmark-music-fill.md",
    "content": "---\ntitle: File earmark music fill\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n  - music\n  - audio\n  - playlist\n  - songs\n---\n"
  },
  {
    "path": "docs/content/icons/file-earmark-music.md",
    "content": "---\ntitle: File earmark music\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n  - music\n  - audio\n  - playlist\n  - songs\n---\n"
  },
  {
    "path": "docs/content/icons/file-earmark-pdf-fill.md",
    "content": "---\ntitle: File earmark PDF fill\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n  - adobe\n  - acrobat\n---\n"
  },
  {
    "path": "docs/content/icons/file-earmark-pdf.md",
    "content": "---\ntitle: File earmark PDF\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n  - adobe\n  - acrobat\n---\n"
  },
  {
    "path": "docs/content/icons/file-earmark-person-fill.md",
    "content": "---\ntitle: File earmark person fill\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n  - personal\n  - cv\n  - resume\n  - about\n---\n"
  },
  {
    "path": "docs/content/icons/file-earmark-person.md",
    "content": "---\ntitle: File earmark person\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n  - personal\n  - cv\n  - resume\n  - about\n---\n"
  },
  {
    "path": "docs/content/icons/file-earmark-play-fill.md",
    "content": "---\ntitle: File earmark play fill\ncategories:\n  - Files and folders\ntags:\n  - video\n  - present\n---\n"
  },
  {
    "path": "docs/content/icons/file-earmark-play.md",
    "content": "---\ntitle: File earmark play\ncategories:\n  - Files and folders\ntags:\n  - video\n  - present\n---\n"
  },
  {
    "path": "docs/content/icons/file-earmark-plus-fill.md",
    "content": "---\ntitle: File earmark plus fill\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n  - add\n  - new\n---\n"
  },
  {
    "path": "docs/content/icons/file-earmark-plus.md",
    "content": "---\ntitle: File earmark plus\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n  - add\n  - new\n---\n"
  },
  {
    "path": "docs/content/icons/file-earmark-post-fill.md",
    "content": "---\ntitle: File earmark post fill\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n  - post\n---\n"
  },
  {
    "path": "docs/content/icons/file-earmark-post.md",
    "content": "---\ntitle: File earmark post\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n  - post\n---\n"
  },
  {
    "path": "docs/content/icons/file-earmark-ppt-fill.md",
    "content": "---\ntitle: File earmark ppt fill\ncategories:\n  - Files and folders\ntags:\n  - slides\n  - presentation\n  - powerpoint\n  - keynote\n---\n"
  },
  {
    "path": "docs/content/icons/file-earmark-ppt.md",
    "content": "---\ntitle: File earmark ppt\ncategories:\n  - Files and folders\ntags:\n  - slides\n  - presentation\n  - powerpoint\n  - keynote\n---\n"
  },
  {
    "path": "docs/content/icons/file-earmark-richtext-fill.md",
    "content": "---\ntitle: File earmark richtext fill\ncategories:\n  - Files and folders\ntags:\n  - text\n  - doc\n  - document\n---\n"
  },
  {
    "path": "docs/content/icons/file-earmark-richtext.md",
    "content": "---\ntitle: File earmark richtext\ncategories:\n  - Files and folders\ntags:\n  - text\n  - doc\n  - document\n---\n"
  },
  {
    "path": "docs/content/icons/file-earmark-ruled-fill.md",
    "content": "---\ntitle: File earmark ruled fill\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n---\n"
  },
  {
    "path": "docs/content/icons/file-earmark-ruled.md",
    "content": "---\ntitle: File earmark ruled\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n---\n"
  },
  {
    "path": "docs/content/icons/file-earmark-slides-fill.md",
    "content": "---\ntitle: File earmark slides fill\ncategories:\n  - Files and folders\ntags:\n  - presentation\n  - keynote\n  - powerpoint\n---\n"
  },
  {
    "path": "docs/content/icons/file-earmark-slides.md",
    "content": "---\ntitle: File earmark slides\ncategories:\n  - Files and folders\ntags:\n  - presentation\n  - keynote\n  - powerpoint\n---\n"
  },
  {
    "path": "docs/content/icons/file-earmark-spreadsheet-fill.md",
    "content": "---\ntitle: File earmark spreadsheet fill\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n  - excel\n  - table\n---\n"
  },
  {
    "path": "docs/content/icons/file-earmark-spreadsheet.md",
    "content": "---\ntitle: File earmark spreadsheet\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n  - excel\n  - table\n---\n"
  },
  {
    "path": "docs/content/icons/file-earmark-text-fill.md",
    "content": "---\ntitle: File earmark text fill\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n---\n"
  },
  {
    "path": "docs/content/icons/file-earmark-text.md",
    "content": "---\ntitle: File earmark text\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n---\n"
  },
  {
    "path": "docs/content/icons/file-earmark-word-fill.md",
    "content": "---\ntitle: File earmark word fill\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n---\n"
  },
  {
    "path": "docs/content/icons/file-earmark-word.md",
    "content": "---\ntitle: File earmark word\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n---\n"
  },
  {
    "path": "docs/content/icons/file-earmark-x-fill.md",
    "content": "---\ntitle: File earmark x fill\ncategories:\n  - Files and folders\ntags:\n  - document\n  - remove\n  - delete\n---\n"
  },
  {
    "path": "docs/content/icons/file-earmark-x.md",
    "content": "---\ntitle: File earmark x\ncategories:\n  - Files and folders\ntags:\n  - document\n  - remove\n  - delete\n---\n"
  },
  {
    "path": "docs/content/icons/file-earmark-zip-fill.md",
    "content": "---\ntitle: File earmark zip fill\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n  - zip\n  - archive\n  - compress\n---\n"
  },
  {
    "path": "docs/content/icons/file-earmark-zip.md",
    "content": "---\ntitle: File earmark zip\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n  - zip\n  - archive\n  - compress\n---\n"
  },
  {
    "path": "docs/content/icons/file-earmark.md",
    "content": "---\ntitle: File earmark\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n  - page\n---\n"
  },
  {
    "path": "docs/content/icons/file-easel-fill.md",
    "content": "---\ntitle: File easel fill\ncategories:\n  - Files and folders\ntags:\n  - slides\n  - presentation\n  - powerpoint\n  - keynote\n---\n"
  },
  {
    "path": "docs/content/icons/file-easel.md",
    "content": "---\ntitle: File easel\ncategories:\n  - Files and folders\ntags:\n  - slides\n  - presentation\n  - powerpoint\n  - keynote\n---\n"
  },
  {
    "path": "docs/content/icons/file-excel-fill.md",
    "content": "---\ntitle: File excel fill\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n  - spreadsheet\n  - excel\n  - table\n---\n"
  },
  {
    "path": "docs/content/icons/file-excel.md",
    "content": "---\ntitle: File excel\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n  - spreadsheet\n  - excel\n  - table\n---\n"
  },
  {
    "path": "docs/content/icons/file-fill.md",
    "content": "---\ntitle: File fill\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n  - page\n---\n"
  },
  {
    "path": "docs/content/icons/file-font-fill.md",
    "content": "---\ntitle: File font fill\ncategories:\n  - Files and folders\ntags:\n  - ttf\n  - otf\n---\n"
  },
  {
    "path": "docs/content/icons/file-font.md",
    "content": "---\ntitle: File font\ncategories:\n  - Files and folders\ntags:\n  - ttf\n  - otf\n---\n"
  },
  {
    "path": "docs/content/icons/file-image-fill.md",
    "content": "---\ntitle: File image fill\ncategories:\n  - Files and folders\ntags:\n  - photo\n  - picture\n---\n"
  },
  {
    "path": "docs/content/icons/file-image.md",
    "content": "---\ntitle: File image\ncategories:\n  - Files and folders\ntags:\n  - photo\n  - picture\n---\n"
  },
  {
    "path": "docs/content/icons/file-lock-fill.md",
    "content": "---\ntitle: File lock fill\ncategories:\n  - Files and folders\ntags:\n  - lock\n  - private\n  - secure\n---\n"
  },
  {
    "path": "docs/content/icons/file-lock.md",
    "content": "---\ntitle: File lock\ncategories:\n  - Files and folders\ntags:\n  - lock\n  - private\n  - secure\n---\n"
  },
  {
    "path": "docs/content/icons/file-lock2-fill.md",
    "content": "---\ntitle: File lock2 fill\ncategories:\n  - Files and folders\ntags:\n  - lock\n  - private\n  - secure\n---\n"
  },
  {
    "path": "docs/content/icons/file-lock2.md",
    "content": "---\ntitle: File lock2\ncategories:\n  - Files and folders\ntags:\n  - lock\n  - private\n  - secure\n---\n"
  },
  {
    "path": "docs/content/icons/file-medical-fill.md",
    "content": "---\ntitle: File medical fill\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n  - medical\n  - hospital\n  - health\n---\n"
  },
  {
    "path": "docs/content/icons/file-medical.md",
    "content": "---\ntitle: File medical\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n  - medical\n  - hospital\n  - health\n---\n"
  },
  {
    "path": "docs/content/icons/file-minus-fill.md",
    "content": "---\ntitle: File minus fill\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n  - delete\n  - remove\n---\n"
  },
  {
    "path": "docs/content/icons/file-minus.md",
    "content": "---\ntitle: File minus\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n  - delete\n  - remove\n---\n"
  },
  {
    "path": "docs/content/icons/file-music-fill.md",
    "content": "---\ntitle: File music fill\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n  - music\n  - audio\n  - playlist\n  - songs\n---\n"
  },
  {
    "path": "docs/content/icons/file-music.md",
    "content": "---\ntitle: File music\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n  - music\n  - audio\n  - playlist\n  - songs\n---\n"
  },
  {
    "path": "docs/content/icons/file-pdf-fill.md",
    "content": "---\ntitle: File PDF fill\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n  - adobe\n  - acrobat\n---\n"
  },
  {
    "path": "docs/content/icons/file-pdf.md",
    "content": "---\ntitle: File PDF\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n  - adobe\n  - acrobat\n---\n"
  },
  {
    "path": "docs/content/icons/file-person-fill.md",
    "content": "---\ntitle: File person fill\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n  - personal\n  - cv\n  - resume\n  - about\n---\n"
  },
  {
    "path": "docs/content/icons/file-person.md",
    "content": "---\ntitle: File person\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n  - personal\n  - cv\n  - resume\n  - about\n---\n"
  },
  {
    "path": "docs/content/icons/file-play-fill.md",
    "content": "---\ntitle: File play fill\ncategories:\n  - Files and folders\ntags:\n  - video\n  - present\n---\n"
  },
  {
    "path": "docs/content/icons/file-play.md",
    "content": "---\ntitle: File play\ncategories:\n  - Files and folders\ntags:\n  - video\n  - present\n---\n"
  },
  {
    "path": "docs/content/icons/file-plus-fill.md",
    "content": "---\ntitle: File plus fill\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n  - add\n  - new\n---\n"
  },
  {
    "path": "docs/content/icons/file-plus.md",
    "content": "---\ntitle: File plus\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n  - add\n  - new\n---\n"
  },
  {
    "path": "docs/content/icons/file-post-fill.md",
    "content": "---\ntitle: File post fill\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n  - post\n---\n"
  },
  {
    "path": "docs/content/icons/file-post.md",
    "content": "---\ntitle: File post\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n  - post\n---\n"
  },
  {
    "path": "docs/content/icons/file-ppt-fill.md",
    "content": "---\ntitle: File ppt fill\ncategories:\n  - Files and folders\ntags:\n  - slides\n  - presentation\n  - powerpoint\n  - keynote\n---\n"
  },
  {
    "path": "docs/content/icons/file-ppt.md",
    "content": "---\ntitle: File ppt\ncategories:\n  - Files and folders\ntags:\n  - slides\n  - presentation\n  - powerpoint\n  - keynote\n---\n"
  },
  {
    "path": "docs/content/icons/file-richtext-fill.md",
    "content": "---\ntitle: File richtext fill\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n  - richtext\n---\n"
  },
  {
    "path": "docs/content/icons/file-richtext.md",
    "content": "---\ntitle: File rich text\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n  - richtext\n---\n"
  },
  {
    "path": "docs/content/icons/file-ruled-fill.md",
    "content": "---\ntitle: File ruled fill\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n---\n"
  },
  {
    "path": "docs/content/icons/file-ruled.md",
    "content": "---\ntitle: File ruled\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n---\n"
  },
  {
    "path": "docs/content/icons/file-slides-fill.md",
    "content": "---\ntitle: File slides fill\ncategories:\n  - Files and folders\ntags:\n  - presentation\n  - keynote\n  - powerpoint\n---\n"
  },
  {
    "path": "docs/content/icons/file-slides.md",
    "content": "---\ntitle: File slides\ncategories:\n  - Files and folders\ntags:\n  - presentation\n  - keynote\n  - powerpoint\n---\n"
  },
  {
    "path": "docs/content/icons/file-spreadsheet-fill.md",
    "content": "---\ntitle: File spreadsheet fill\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n  - excel\n  - table\n---\n"
  },
  {
    "path": "docs/content/icons/file-spreadsheet.md",
    "content": "---\ntitle: File spreadsheet\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n  - excel\n  - table\n---\n"
  },
  {
    "path": "docs/content/icons/file-text-fill.md",
    "content": "---\ntitle: File text fill\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n  - letter\n---\n"
  },
  {
    "path": "docs/content/icons/file-text.md",
    "content": "---\ntitle: File text\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n  - letter\n---\n"
  },
  {
    "path": "docs/content/icons/file-word-fill.md",
    "content": "---\ntitle: File word fill\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n---\n"
  },
  {
    "path": "docs/content/icons/file-word.md",
    "content": "---\ntitle: File word\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n---\n"
  },
  {
    "path": "docs/content/icons/file-x-fill.md",
    "content": "---\ntitle: File x fill\ncategories:\n  - Files and folders\ntags:\n  - document\n  - remove\n  - delete\n---\n"
  },
  {
    "path": "docs/content/icons/file-x.md",
    "content": "---\ntitle: File x\ncategories:\n  - Files and folders\ntags:\n  - document\n  - remove\n  - delete\n---\n"
  },
  {
    "path": "docs/content/icons/file-zip-fill.md",
    "content": "---\ntitle: File zip fill\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n  - zip\n  - archive\n  - compress\n---\n"
  },
  {
    "path": "docs/content/icons/file-zip.md",
    "content": "---\ntitle: File zip\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n  - zip\n  - archive\n  - compress\n---\n"
  },
  {
    "path": "docs/content/icons/file.md",
    "content": "---\ntitle: File\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n  - page\n---\n"
  },
  {
    "path": "docs/content/icons/files-alt.md",
    "content": "---\ntitle: Files alt\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n---\n"
  },
  {
    "path": "docs/content/icons/files.md",
    "content": "---\ntitle: Files\ncategories:\n  - Files and folders\ntags:\n  - doc\n  - document\n---\n"
  },
  {
    "path": "docs/content/icons/filetype-aac.md",
    "content": "---\ntitle: Filetype aac\ncategories:\n  - Files and folders\ntags:\n  - file\n  - \"file type\"\n  - extension\n---\n"
  },
  {
    "path": "docs/content/icons/filetype-ai.md",
    "content": "---\ntitle: Filetype ai\ncategories:\n  - Files and folders\ntags:\n  - file\n  - \"file type\"\n  - extension\n---\n"
  },
  {
    "path": "docs/content/icons/filetype-bmp.md",
    "content": "---\ntitle: Filetype bmp\ncategories:\n  - Files and folders\ntags:\n  - file\n  - \"file type\"\n  - extension\n---\n"
  },
  {
    "path": "docs/content/icons/filetype-cs.md",
    "content": "---\ntitle: Filetype cs\ncategories:\n  - Files and folders\ntags:\n  - file\n  - \"file type\"\n  - extension\n  - code\n---\n"
  },
  {
    "path": "docs/content/icons/filetype-css.md",
    "content": "---\ntitle: Filetype css\ncategories:\n  - Files and folders\ntags:\n  - file\n  - \"file type\"\n  - extension\n  - code\n  - stylesheet\n---\n"
  },
  {
    "path": "docs/content/icons/filetype-csv.md",
    "content": "---\ntitle: Filetype csv\ncategories:\n  - Files and folders\ntags:\n  - file\n  - \"file type\"\n  - extension\n---\n"
  },
  {
    "path": "docs/content/icons/filetype-doc.md",
    "content": "---\ntitle: Filetype doc\ncategories:\n  - Files and folders\ntags:\n  - file\n  - \"file type\"\n  - extension\n---\n"
  },
  {
    "path": "docs/content/icons/filetype-docx.md",
    "content": "---\ntitle: Filetype docx\ncategories:\n  - Files and folders\ntags:\n  - file\n  - \"file type\"\n  - extension\n---\n"
  },
  {
    "path": "docs/content/icons/filetype-exe.md",
    "content": "---\ntitle: Filetype exe\ncategories:\n  - Files and folders\ntags:\n  - file\n  - \"file type\"\n  - extension\n---\n"
  },
  {
    "path": "docs/content/icons/filetype-gif.md",
    "content": "---\ntitle: Filetype gif\ncategories:\n  - Files and folders\ntags:\n  - file\n  - \"file type\"\n  - extension\n---\n"
  },
  {
    "path": "docs/content/icons/filetype-heic.md",
    "content": "---\ntitle: Filetype heic\ncategories:\n  - Files and folders\ntags:\n  - file\n  - \"file type\"\n  - extension\n---\n"
  },
  {
    "path": "docs/content/icons/filetype-html.md",
    "content": "---\ntitle: Filetype html\ncategories:\n  - Files and folders\ntags:\n  - file\n  - \"file type\"\n  - extension\n  - code\n  - html\n---\n"
  },
  {
    "path": "docs/content/icons/filetype-java.md",
    "content": "---\ntitle: Filetype java\ncategories:\n  - Files and folders\ntags:\n  - file\n  - \"file type\"\n  - extension\n  - code\n  - java\n---\n"
  },
  {
    "path": "docs/content/icons/filetype-jpg.md",
    "content": "---\ntitle: Filetype jpg\ncategories:\n  - Files and folders\ntags:\n  - file\n  - \"file type\"\n  - extension\n---\n"
  },
  {
    "path": "docs/content/icons/filetype-js.md",
    "content": "---\ntitle: Filetype js\ncategories:\n  - Files and folders\ntags:\n  - file\n  - \"file type\"\n  - extension\n  - code\n  - javascript\n---\n"
  },
  {
    "path": "docs/content/icons/filetype-json.md",
    "content": "---\ntitle: Filetype json\ncategories:\n  - Files and folders\ntags:\n  - file\n  - \"file type\"\n  - extension\n  - code\n  - javascript\n---\n"
  },
  {
    "path": "docs/content/icons/filetype-jsx.md",
    "content": "---\ntitle: Filetype jsx\ncategories:\n  - Files and folders\ntags:\n  - file\n  - \"file type\"\n  - extension\n  - code\n  - javascript\n  - react\n---\n"
  },
  {
    "path": "docs/content/icons/filetype-key.md",
    "content": "---\ntitle: Filetype key\ncategories:\n  - Files and folders\ntags:\n  - file\n  - \"file type\"\n  - extension\n  - keynote\n---\n"
  },
  {
    "path": "docs/content/icons/filetype-m4p.md",
    "content": "---\ntitle: Filetype m4p\ncategories:\n  - Files and folders\ntags:\n  - file\n  - \"file type\"\n  - extension\n---\n"
  },
  {
    "path": "docs/content/icons/filetype-md.md",
    "content": "---\ntitle: Filetype md\ncategories:\n  - Files and folders\ntags:\n  - file\n  - \"file type\"\n  - extension\n  - code\n  - markdown\n---\n"
  },
  {
    "path": "docs/content/icons/filetype-mdx.md",
    "content": "---\ntitle: Filetype mdx\ncategories:\n  - Files and folders\ntags:\n  - file\n  - \"file type\"\n  - extension\n---\n"
  },
  {
    "path": "docs/content/icons/filetype-mov.md",
    "content": "---\ntitle: Filetype mov\ncategories:\n  - Files and folders\ntags:\n  - file\n  - \"file type\"\n  - extension\n---\n"
  },
  {
    "path": "docs/content/icons/filetype-mp3.md",
    "content": "---\ntitle: Filetype mp3\ncategories:\n  - Files and folders\ntags:\n  - file\n  - \"file type\"\n  - extension\n---\n"
  },
  {
    "path": "docs/content/icons/filetype-mp4.md",
    "content": "---\ntitle: Filetype mp4\ncategories:\n  - Files and folders\ntags:\n  - file\n  - \"file type\"\n  - extension\n---\n"
  },
  {
    "path": "docs/content/icons/filetype-otf.md",
    "content": "---\ntitle: Filetype otf\ncategories:\n  - Files and folders\ntags:\n  - file\n  - \"file type\"\n  - extension\n  - font\n  - type\n---\n"
  },
  {
    "path": "docs/content/icons/filetype-pdf.md",
    "content": "---\ntitle: Filetype pdf\ncategories:\n  - Files and folders\ntags:\n  - file\n  - \"file type\"\n  - extension\n---\n"
  },
  {
    "path": "docs/content/icons/filetype-php.md",
    "content": "---\ntitle: Filetype php\ncategories:\n  - Files and folders\ntags:\n  - file\n  - \"file type\"\n  - extension\n  - code\n---\n"
  },
  {
    "path": "docs/content/icons/filetype-png.md",
    "content": "---\ntitle: Filetype png\ncategories:\n  - Files and folders\ntags:\n  - file\n  - \"file type\"\n  - extension\n---\n"
  },
  {
    "path": "docs/content/icons/filetype-ppt.md",
    "content": "---\ntitle: Filetype ppt\ncategories:\n  - Files and folders\ntags:\n  - file\n  - \"file type\"\n  - extension\n  - powerpoint\n---\n"
  },
  {
    "path": "docs/content/icons/filetype-pptx.md",
    "content": "---\ntitle: Filetype pptx\ncategories:\n  - Files and folders\ntags:\n  - file\n  - \"file type\"\n  - extension\n  - powerpoint\n---\n"
  },
  {
    "path": "docs/content/icons/filetype-psd.md",
    "content": "---\ntitle: Filetype psd\ncategories:\n  - Files and folders\ntags:\n  - file\n  - \"file type\"\n  - extension\n---\n"
  },
  {
    "path": "docs/content/icons/filetype-py.md",
    "content": "---\ntitle: Filetype py\ncategories:\n  - Files and folders\ntags:\n  - file\n  - \"file type\"\n  - extension\n  - code\n  - python\n---\n"
  },
  {
    "path": "docs/content/icons/filetype-raw.md",
    "content": "---\ntitle: Filetype raw\ncategories:\n  - Files and folders\ntags:\n  - file\n  - \"file type\"\n  - extension\n---\n"
  },
  {
    "path": "docs/content/icons/filetype-rb.md",
    "content": "---\ntitle: Filetype rb\ncategories:\n  - Files and folders\ntags:\n  - file\n  - \"file type\"\n  - extension\n  - code\n  - ruby\n---\n"
  },
  {
    "path": "docs/content/icons/filetype-sass.md",
    "content": "---\ntitle: Filetype sass\ncategories:\n  - Files and folders\ntags:\n  - file\n  - \"file type\"\n  - extension\n  - code\n  - css\n  - stylesheet\n---\n"
  },
  {
    "path": "docs/content/icons/filetype-scss.md",
    "content": "---\ntitle: Filetype scss\ncategories:\n  - Files and folders\ntags:\n  - file\n  - \"file type\"\n  - extension\n  - code\n  - css\n  - stylesheet\n---\n"
  },
  {
    "path": "docs/content/icons/filetype-sh.md",
    "content": "---\ntitle: Filetype sh\ncategories:\n  - Files and folders\ntags:\n  - file\n  - \"file type\"\n  - extension\n  - code\n  - shell\n---\n"
  },
  {
    "path": "docs/content/icons/filetype-sql.md",
    "content": "---\ntitle: Filetype SQL\ncategories:\n  - Files and folders\ntags:\n  - file\n  - \"file type\"\n  - extension\n  - mysql\n---\n"
  },
  {
    "path": "docs/content/icons/filetype-svg.md",
    "content": "---\ntitle: Filetype svg\ncategories:\n  - Files and folders\ntags:\n  - file\n  - \"file type\"\n  - extension\n  - code\n---\n"
  },
  {
    "path": "docs/content/icons/filetype-tiff.md",
    "content": "---\ntitle: Filetype tiff\ncategories:\n  - Files and folders\ntags:\n  - file\n  - \"file type\"\n  - extension\n---\n"
  },
  {
    "path": "docs/content/icons/filetype-tsx.md",
    "content": "---\ntitle: Filetype tsx\ncategories:\n  - Files and folders\ntags:\n  - file\n  - \"file type\"\n  - extension\n  - code\n  - typescript\n---\n"
  },
  {
    "path": "docs/content/icons/filetype-ttf.md",
    "content": "---\ntitle: Filetype ttf\ncategories:\n  - Files and folders\ntags:\n  - file\n  - \"file type\"\n  - extension\n  - font\n  - type\n---\n"
  },
  {
    "path": "docs/content/icons/filetype-txt.md",
    "content": "---\ntitle: Filetype txt\ncategories:\n  - Files and folders\ntags:\n  - file\n  - \"file type\"\n  - extension\n---\n"
  },
  {
    "path": "docs/content/icons/filetype-wav.md",
    "content": "---\ntitle: Filetype wav\ncategories:\n  - Files and folders\ntags:\n  - file\n  - \"file type\"\n  - extension\n---\n"
  },
  {
    "path": "docs/content/icons/filetype-woff.md",
    "content": "---\ntitle: Filetype woff\ncategories:\n  - Files and folders\ntags:\n  - file\n  - \"file type\"\n  - extension\n  - font\n  - type\n---\n"
  },
  {
    "path": "docs/content/icons/filetype-xls.md",
    "content": "---\ntitle: Filetype xls\ncategories:\n  - Files and folders\ntags:\n  - file\n  - \"file type\"\n  - extension\n  - spreadsheet\n---\n"
  },
  {
    "path": "docs/content/icons/filetype-xlsx.md",
    "content": "---\ntitle: Filetype xlsx\ncategories:\n  - Files and folders\ntags:\n  - file\n  - \"file type\"\n  - extension\n  - spreadsheet\n---\n"
  },
  {
    "path": "docs/content/icons/filetype-xml.md",
    "content": "---\ntitle: Filetype xml\ncategories:\n  - Files and folders\ntags:\n  - file\n  - \"file type\"\n  - extension\n  - code\n---\n"
  },
  {
    "path": "docs/content/icons/filetype-yml.md",
    "content": "---\ntitle: Filetype yml\ncategories:\n  - Files and folders\ntags:\n  - file\n  - \"file type\"\n  - extension\n  - code\n  - yaml\n---\n"
  },
  {
    "path": "docs/content/icons/film.md",
    "content": "---\ntitle: Film\ncategories:\n  - Media\ntags:\n  - video\n  - movie\n---\n"
  },
  {
    "path": "docs/content/icons/filter-circle-fill.md",
    "content": "---\ntitle: Filter circle fill\ncategories:\n  - Sort and filter\ntags:\n  - sort\n  - filter\n  - organize\n---\n"
  },
  {
    "path": "docs/content/icons/filter-circle.md",
    "content": "---\ntitle: Filter circle\ncategories:\n  - Sort and filter\ntags:\n  - sort\n  - filter\n  - organize\n---\n"
  },
  {
    "path": "docs/content/icons/filter-left.md",
    "content": "---\ntitle: Filter left\ncategories:\n  - Sort and filter\ntags:\n  - sort\n  - filter\n  - organize\n---\n"
  },
  {
    "path": "docs/content/icons/filter-right.md",
    "content": "---\ntitle: Filter right\ncategories:\n  - Sort and filter\ntags:\n  - sort\n  - filter\n  - organize\n---\n"
  },
  {
    "path": "docs/content/icons/filter-square-fill.md",
    "content": "---\ntitle: Filter square fill\ncategories:\n  - Sort and filter\ntags:\n  - sort\n  - filter\n  - organize\n---\n"
  },
  {
    "path": "docs/content/icons/filter-square.md",
    "content": "---\ntitle: Filter square\ncategories:\n  - Sort and filter\ntags:\n  - sort\n  - filter\n  - organize\n---\n"
  },
  {
    "path": "docs/content/icons/filter.md",
    "content": "---\ntitle: Filter\ncategories:\n  - UI and keyboard\ntags:\n  - sort\n---\n"
  },
  {
    "path": "docs/content/icons/fingerprint.md",
    "content": "---\ntitle: Fingerprint\ncategories:\n  - Security\ntags:\n  - \"touch ID\"\n  - secure\n  - biometric\n---\n"
  },
  {
    "path": "docs/content/icons/fire.md",
    "content": "---\ntitle: Fire\ncategories:\n  - Real world\ntags:\n  - burning\n  - smoke\n---\n"
  },
  {
    "path": "docs/content/icons/flag-fill.md",
    "content": "---\ntitle: Flag fill\ncategories:\n  - Communications\ntags:\n  - report\n---\n"
  },
  {
    "path": "docs/content/icons/flag.md",
    "content": "---\ntitle: Flag\ncategories:\n  - Communications\ntags:\n  - report\n---\n"
  },
  {
    "path": "docs/content/icons/flask-fill.md",
    "content": "---\ntitle: Flask fill\ncategories:\n  - Real world\ntags:\n  - beaker\n  - science\n  - measure\n  - experiment\n---\n"
  },
  {
    "path": "docs/content/icons/flask-florence-fill.md",
    "content": "---\ntitle: Flask florence fill\ncategories:\n  - Real world\ntags:\n  - beaker\n  - science\n  - measure\n  - experiment\n---\n"
  },
  {
    "path": "docs/content/icons/flask-florence.md",
    "content": "---\ntitle: Flask florence\ncategories:\n  - Real world\ntags:\n  - beaker\n  - science\n  - measure\n  - experiment\n---\n"
  },
  {
    "path": "docs/content/icons/flask.md",
    "content": "---\ntitle: Flask\ncategories:\n  - Real world\ntags:\n  - beaker\n  - science\n  - measure\n  - experiment\n---\n"
  },
  {
    "path": "docs/content/icons/floppy-fill.md",
    "content": "---\ntitle: Floppy fill\ncategories:\n  - Devices\ntags:\n  - save\n  - storage\n  - disk\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/floppy.md",
    "content": "---\ntitle: Floppy\ncategories:\n  - Devices\ntags:\n  - save\n  - storage\n  - disk\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/floppy2-fill.md",
    "content": "---\ntitle: Floppy2 fill\ncategories:\n  - Devices\ntags:\n  - save\n  - storage\n  - disk\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/floppy2.md",
    "content": "---\ntitle: Floppy2\ncategories:\n  - Devices\ntags:\n  - save\n  - storage\n  - disk\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/flower1.md",
    "content": "---\ntitle: Flower1\ncategories:\n  - Real world\ntags:\n  - plant\n  - bloom\n  - flower\n---\n"
  },
  {
    "path": "docs/content/icons/flower2.md",
    "content": "---\ntitle: Flower2\ncategories:\n  - Real world\ntags:\n  - plant\n  - bloom\n  - flower\n---\n"
  },
  {
    "path": "docs/content/icons/flower3.md",
    "content": "---\ntitle: Flower3\ncategories:\n  - Real world\ntags:\n  - plant\n  - bloom\n  - flower\n---\n"
  },
  {
    "path": "docs/content/icons/folder-check.md",
    "content": "---\ntitle: Folder check\ncategories:\n  - Files and folders\ntags:\n  - directory\n  - check\n  - verified\n---\n"
  },
  {
    "path": "docs/content/icons/folder-fill.md",
    "content": "---\ntitle: Folder fill\ncategories:\n  - Files and folders\ntags:\n  - directory\n---\n"
  },
  {
    "path": "docs/content/icons/folder-minus.md",
    "content": "---\ntitle: Folder minus\ncategories:\n  - Files and folders\ntags:\n  - directory\n  - delete\n  - remove\n---\n"
  },
  {
    "path": "docs/content/icons/folder-plus.md",
    "content": "---\ntitle: Folder plus\ncategories:\n  - Files and folders\ntags:\n  - directory\n  - delete\n  - add\n  - new\n---\n"
  },
  {
    "path": "docs/content/icons/folder-symlink-fill.md",
    "content": "---\ntitle: Folder symlink fill\ncategories:\n  - Files and folders\ntags:\n  - directory\n  - symbolic-link\n---\n"
  },
  {
    "path": "docs/content/icons/folder-symlink.md",
    "content": "---\ntitle: Folder symlink\ncategories:\n  - Files and folders\ntags:\n  - directory\n  - symbolic-link\n---\n"
  },
  {
    "path": "docs/content/icons/folder-x.md",
    "content": "---\ntitle: Folder x\ncategories:\n  - Files and folders\ntags:\n  - directory\n  - remove\n  - delete\n---\n"
  },
  {
    "path": "docs/content/icons/folder.md",
    "content": "---\ntitle: Folder\ncategories:\n  - Files and folders\ntags:\n  - directory\n---\n"
  },
  {
    "path": "docs/content/icons/folder2-open.md",
    "content": "---\ntitle: Folder2 open\ncategories:\n  - Files and folders\ntags:\n  - directory\n---\n"
  },
  {
    "path": "docs/content/icons/folder2.md",
    "content": "---\ntitle: Folder2\ncategories:\n  - Files and folders\ntags:\n  - directory\n---\n"
  },
  {
    "path": "docs/content/icons/fonts.md",
    "content": "---\ntitle: Fonts\ncategories:\n  - Typography\ntags:\n  - text\n  - type\n---\n"
  },
  {
    "path": "docs/content/icons/fork-knife.md",
    "content": "---\ntitle: Fork knife\ncategories:\n  - Real world\ntags:\n  - food\n  - restaurant\n  - breakfast\n  - lunch\n  - dinner\n  - utensils\n  - cutlery\n---\n"
  },
  {
    "path": "docs/content/icons/forward-fill.md",
    "content": "---\ntitle: Forward fill\ncategories:\n  - Communications\ntags:\n  - mail\n  - email\n---\n"
  },
  {
    "path": "docs/content/icons/forward.md",
    "content": "---\ntitle: Forward\ncategories:\n  - Communications\ntags:\n  - mail\n  - email\n---\n"
  },
  {
    "path": "docs/content/icons/front.md",
    "content": "---\ntitle: Front\ncategories:\n  - Graphics\ntags:\n  - forward\n  - layer\n---\n"
  },
  {
    "path": "docs/content/icons/fuel-pump-diesel-fill.md",
    "content": "---\ntitle: Fuel pump diesel fill\ncategories:\n  - Transportation\ntags:\n  - gas\n  - petrol\n  - fuel\n  - \"gas station\"\n---\n"
  },
  {
    "path": "docs/content/icons/fuel-pump-diesel.md",
    "content": "---\ntitle: Fuel pump diesel\ncategories:\n  - Transportation\ntags:\n  - gas\n  - petrol\n  - fuel\n  - \"gas station\"\n---\n"
  },
  {
    "path": "docs/content/icons/fuel-pump-fill.md",
    "content": "---\ntitle: Fuel pump fill\ncategories:\n  - Transportation\ntags:\n  - gas\n  - petrol\n  - fuel\n  - \"gas station\"\n---\n"
  },
  {
    "path": "docs/content/icons/fuel-pump.md",
    "content": "---\ntitle: Fuel pump\ncategories:\n  - Transportation\ntags:\n  - gas\n  - petrol\n  - fuel\n  - \"gas station\"\n---\n"
  },
  {
    "path": "docs/content/icons/fullscreen-exit.md",
    "content": "---\ntitle: Fullscreen exit\ncategories:\n  - UI and keyboard\ntags:\n  - window\n  - minimize\n---\n"
  },
  {
    "path": "docs/content/icons/fullscreen.md",
    "content": "---\ntitle: Fullscreen\ncategories:\n  - UI and keyboard\ntags:\n  - window\n  - maximize\n---\n"
  },
  {
    "path": "docs/content/icons/funnel-fill.md",
    "content": "---\ntitle: Funnel fill\ncategories:\n  - Real world\ntags:\n  - sort\n  - filter\n---\n"
  },
  {
    "path": "docs/content/icons/funnel.md",
    "content": "---\ntitle: Funnel\ncategories:\n  - Real world\ntags:\n  - sort\n  - filter\n---\n"
  },
  {
    "path": "docs/content/icons/gear-fill.md",
    "content": "---\ntitle: Gear fill\ncategories:\n  - Tools\ntags:\n  - tool\n  - settings\n  - preferences\n---\n"
  },
  {
    "path": "docs/content/icons/gear-wide-connected.md",
    "content": "---\ntitle: Gear wide connected\ncategories:\n  - Tools\ntags:\n  - tool\n  - settings\n  - preferences\n---\n"
  },
  {
    "path": "docs/content/icons/gear-wide.md",
    "content": "---\ntitle: Gear wide\ncategories:\n  - Tools\ntags:\n  - tool\n  - settings\n  - preferences\n---\n"
  },
  {
    "path": "docs/content/icons/gear.md",
    "content": "---\ntitle: Gear\ncategories:\n  - Tools\ntags:\n  - tool\n  - settings\n  - preferences\n---\n"
  },
  {
    "path": "docs/content/icons/gem.md",
    "content": "---\ntitle: Gem\ncategories:\n  - Shapes\ntags:\n  - shape\n  - diamond\n---\n"
  },
  {
    "path": "docs/content/icons/gender-ambiguous.md",
    "content": "---\ntitle: Gender ambiguous\ncategories:\n  - People\ntags:\n  - gender\n  - identity\n---\n"
  },
  {
    "path": "docs/content/icons/gender-female.md",
    "content": "---\ntitle: Gender female\ncategories:\n  - People\ntags:\n  - gender\n  - identity\n---\n"
  },
  {
    "path": "docs/content/icons/gender-male.md",
    "content": "---\ntitle: Gender male\ncategories:\n  - People\ntags:\n  - gender\n  - identity\n---\n"
  },
  {
    "path": "docs/content/icons/gender-neuter.md",
    "content": "---\ntitle: Gender neuter\ncategories:\n  - People\ntags:\n  - gender\n  - identity\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/gender-trans.md",
    "content": "---\ntitle: Gender trans\ncategories:\n  - People\ntags:\n  - gender\n  - identity\n---\n"
  },
  {
    "path": "docs/content/icons/geo-alt-fill.md",
    "content": "---\ntitle: Geo alt fill\ncategories:\n  - Geo\ntags:\n  - geography\n  - map\n  - pin\n  - location\n---\n"
  },
  {
    "path": "docs/content/icons/geo-alt.md",
    "content": "---\ntitle: Geo alt\ncategories:\n  - Geo\ntags:\n  - geography\n  - map\n  - pin\n  - location\n---\n"
  },
  {
    "path": "docs/content/icons/geo-fill.md",
    "content": "---\ntitle: Geo fill\ncategories:\n  - Geo\ntags:\n  - geography\n  - map\n  - pin\n  - location\n---\n"
  },
  {
    "path": "docs/content/icons/geo.md",
    "content": "---\ntitle: Geo\ncategories:\n  - Geo\ntags:\n  - geography\n  - map\n  - pin\n  - location\n---\n"
  },
  {
    "path": "docs/content/icons/gift-fill.md",
    "content": "---\ntitle: Gift fill\ncategories:\n  - Real world\ntags:\n  - present\n  - gift\n---\n"
  },
  {
    "path": "docs/content/icons/gift.md",
    "content": "---\ntitle: Gift\ncategories:\n  - Real world\ntags:\n  - present\n  - gift\n---\n"
  },
  {
    "path": "docs/content/icons/git.md",
    "content": "---\ntitle: Git\ncategories:\n  - Brand\ntags:\n  - \"version control\"\n  - vcs\n  - github\n  - version\n---\n"
  },
  {
    "path": "docs/content/icons/github.md",
    "content": "---\ntitle: GitHub\ncategories:\n  - Brand\ntags:\n  - social\n  - microsoft\n  - vcs\n  - git\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/gitlab.md",
    "content": "---\ntitle: Gitlab\ncategories:\n  - Brand\ntags:\n  - social\n  - vcs\n  - git\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/globe-americas-fill.md",
    "content": "---\ntitle: Globe Americas fill\ncategories:\n  - Geo\ntags:\n  - geography\n  - earth\n  - world\n  - map\n---\n"
  },
  {
    "path": "docs/content/icons/globe-americas.md",
    "content": "---\ntitle: Globe Americas\ncategories:\n  - Geo\ntags:\n  - geography\n  - earth\n  - world\n  - map\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/globe-asia-australia-fill.md",
    "content": "---\ntitle: Globe Asia Australia fill\ncategories:\ntags:\n---\n"
  },
  {
    "path": "docs/content/icons/globe-asia-australia.md",
    "content": "---\ntitle: Globe Asia Australia\ncategories:\n  - Geo\ntags:\n  - geography\n  - earth\n  - world\n  - map\n---\n"
  },
  {
    "path": "docs/content/icons/globe-central-south-asia-fill.md",
    "content": "---\ntitle: Globe Central South Asia fill\ncategories:\n  - Geo\ntags:\n  - geography\n  - earth\n  - world\n  - map\n---\n"
  },
  {
    "path": "docs/content/icons/globe-central-south-asia.md",
    "content": "---\ntitle: Globe Central South Asia\ncategories:\n  - Geo\ntags:\n  - geography\n  - earth\n  - world\n  - map\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/globe-europe-africa-fill.md",
    "content": "---\ntitle: Globe Europe Africa fill\ncategories:\n  - Geo\ntags:\n  - geography\n  - earth\n  - world\n  - map\n---\n"
  },
  {
    "path": "docs/content/icons/globe-europe-africa.md",
    "content": "---\ntitle: Globe Europe Africa\ncategories:\n  - Geo\ntags:\n  - geography\n  - earth\n  - world\n  - map\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/globe.md",
    "content": "---\ntitle: Globe\ncategories:\n  - Communications\ntags:\n  - world\n  - translate\n  - global\n  - international\n---\n"
  },
  {
    "path": "docs/content/icons/globe2.md",
    "content": "---\ntitle: Globe2\ncategories:\n  - Communications\ntags:\n  - world\n  - translate\n  - global\n  - international\n---\n"
  },
  {
    "path": "docs/content/icons/google-play.md",
    "content": "---\ntitle: Google Play\ncategories:\n  - Brand\ntags:\n  - \"app store\"\n  - apps\n  - store\n  - android\n---\n"
  },
  {
    "path": "docs/content/icons/google.md",
    "content": "---\ntitle: Google\ncategories:\n  - Brand\ntags:\n  - social\n  - search\n---\n"
  },
  {
    "path": "docs/content/icons/gpu-card.md",
    "content": "---\ntitle: GPU card\ncategories:\n  - Devices\ntags:\n  - video\n  - output\n  - graphics\n---\n"
  },
  {
    "path": "docs/content/icons/graph-down-arrow.md",
    "content": "---\ntitle: Graph down arrow\ncategories:\n  - Data\ntags:\n  - chart\n  - graph\n  - analytics\n---\n"
  },
  {
    "path": "docs/content/icons/graph-down.md",
    "content": "---\ntitle: Graph down\ncategories:\n  - Data\ntags:\n  - chart\n  - graph\n  - analytics\n---\n"
  },
  {
    "path": "docs/content/icons/graph-up-arrow.md",
    "content": "---\ntitle: Graph up arrow\ncategories:\n  - Data\ntags:\n  - chart\n  - graph\n  - analytics\n---\n"
  },
  {
    "path": "docs/content/icons/graph-up.md",
    "content": "---\ntitle: Graph up\ncategories:\n  - Data\ntags:\n  - chart\n  - graph\n  - analytics\n---\n"
  },
  {
    "path": "docs/content/icons/grid-1x2-fill.md",
    "content": "---\ntitle: Grid 1x2 fill\ncategories:\n  - Layout\ntags:\n  - grid\n  - layout\n---\n"
  },
  {
    "path": "docs/content/icons/grid-1x2.md",
    "content": "---\ntitle: Grid 1x2\ncategories:\n  - Layout\ntags:\n  - grid\n  - layout\n---\n"
  },
  {
    "path": "docs/content/icons/grid-3x2-gap-fill.md",
    "content": "---\ntitle: Grid 3x2 gap fill\ncategories:\n  - Layout\ntags:\n  - grid\n  - layout\n---\n"
  },
  {
    "path": "docs/content/icons/grid-3x2-gap.md",
    "content": "---\ntitle: Grid 3x2 gap\ncategories:\n  - Layout\ntags:\n  - grid\n  - layout\n---\n"
  },
  {
    "path": "docs/content/icons/grid-3x2.md",
    "content": "---\ntitle: Grid 3x2\ncategories:\n  - Layout\ntags:\n  - grid\n  - layout\n---\n"
  },
  {
    "path": "docs/content/icons/grid-3x3-gap-fill.md",
    "content": "---\ntitle: Grid 3x3 gap fill\ncategories:\n  - Layout\ntags:\n  - grid\n  - layout\n---\n"
  },
  {
    "path": "docs/content/icons/grid-3x3-gap.md",
    "content": "---\ntitle: Grid 3x3 gap\ncategories:\n  - Layout\ntags:\n  - grid\n  - layout\n---\n"
  },
  {
    "path": "docs/content/icons/grid-3x3.md",
    "content": "---\ntitle: Grid 3x3\ncategories:\n  - Layout\ntags:\n  - grid\n  - layout\n---\n"
  },
  {
    "path": "docs/content/icons/grid-fill.md",
    "content": "---\ntitle: Grid fill\ncategories:\n  - Layout\ntags:\n  - grid\n  - layout\n---\n"
  },
  {
    "path": "docs/content/icons/grid.md",
    "content": "---\ntitle: Grid\ncategories:\n  - Layout\ntags:\n  - grid\n  - layout\n---\n"
  },
  {
    "path": "docs/content/icons/grip-horizontal.md",
    "content": "---\ntitle: Grip horizontal\ncategories:\n  - UI and keyboard\ntags:\n  - drag\n  - grab\n---\n"
  },
  {
    "path": "docs/content/icons/grip-vertical.md",
    "content": "---\ntitle: Grip vertical\ncategories:\n  - UI and keyboard\ntags:\n  - drag\n  - grab\n---\n"
  },
  {
    "path": "docs/content/icons/h-circle-fill.md",
    "content": "---\ntitle: H circle fill\ncategories:\n  - Shapes\ntags:\n  - hospital\n  - helicopter\n---\n"
  },
  {
    "path": "docs/content/icons/h-circle.md",
    "content": "---\ntitle: H circle\ncategories:\n  - Shapes\ntags:\n  - hospital\n  - helicopter\n---\n"
  },
  {
    "path": "docs/content/icons/h-square-fill.md",
    "content": "---\ntitle: H square fill\ncategories:\n  - Shapes\ntags:\n  - hospital\n  - helicopter\n---\n"
  },
  {
    "path": "docs/content/icons/h-square.md",
    "content": "---\ntitle: H square\ncategories:\n  - Shapes\ntags:\n  - hospital\n  - helicopter\n---\n"
  },
  {
    "path": "docs/content/icons/hammer.md",
    "content": "---\ntitle: Hammer\ncategories:\n  - Tools\ntags:\n  - tool\n---\n"
  },
  {
    "path": "docs/content/icons/hand-index-fill.md",
    "content": "---\ntitle: Hand index fill\ncategories:\n  - Hands\ntags:\n  - hand\n  - pointer\n  - cursor\n---\n"
  },
  {
    "path": "docs/content/icons/hand-index-thumb-fill.md",
    "content": "---\ntitle: Hand index thumb fill\ncategories:\n  - Hands\ntags:\n  - hand\n  - pointer\n  - cursor\n---\n"
  },
  {
    "path": "docs/content/icons/hand-index-thumb.md",
    "content": "---\ntitle: Hand index thumb\ncategories:\n  - Hands\ntags:\n  - hand\n  - pointer\n  - cursor\n---\n"
  },
  {
    "path": "docs/content/icons/hand-index.md",
    "content": "---\ntitle: Hand index\ncategories:\n  - Hands\ntags:\n  - hand\n  - pointer\n  - cursor\n---\n"
  },
  {
    "path": "docs/content/icons/hand-thumbs-down-fill.md",
    "content": "---\ntitle: Hand thumbs down fill\ncategories:\n  - Hands\ntags:\n  - hand\n  - pointer\n  - thumbs-down\n  - \"-1\"\n---\n"
  },
  {
    "path": "docs/content/icons/hand-thumbs-down.md",
    "content": "---\ntitle: Hand thumbs down\ncategories:\n  - Hands\ntags:\n  - hand\n  - pointer\n  - thumbs-down\n  - \"-1\"\n---\n"
  },
  {
    "path": "docs/content/icons/hand-thumbs-up-fill.md",
    "content": "---\ntitle: Hand thumbs up fill\ncategories:\n  - Hands\ntags:\n  - hand\n  - pointer\n  - like\n  - okay\n  - thumbs-up\n  - \"+1\"\n---\n"
  },
  {
    "path": "docs/content/icons/hand-thumbs-up.md",
    "content": "---\ntitle: Hand thumbs up\ncategories:\n  - Hands\ntags:\n  - hand\n  - pointer\n  - like\n  - okay\n  - thumbs-up\n  - \"+1\"\n---\n"
  },
  {
    "path": "docs/content/icons/handbag-fill.md",
    "content": "---\ntitle: Handbag fill\ncategories:\n  - Real world\ntags:\n  - purse\n  - tote\n---\n"
  },
  {
    "path": "docs/content/icons/handbag.md",
    "content": "---\ntitle: Handbag\ncategories:\n  - Real world\ntags:\n  - purse\n  - tote\n---\n"
  },
  {
    "path": "docs/content/icons/hash.md",
    "content": "---\ntitle: Hash\ncategories:\n  - Typography\ntags:\n  - text\n  - type\n---\n"
  },
  {
    "path": "docs/content/icons/hdd-fill.md",
    "content": "---\ntitle: Hdd fill\ncategories:\n  - Devices\ntags:\n  - \"hard drive\"\n  - \"hard disk\"\n  - ssd\n  - drive\n  - server\n---\n"
  },
  {
    "path": "docs/content/icons/hdd-network-fill.md",
    "content": "---\ntitle: Hdd network fill\ncategories:\n  - Devices\ntags:\n  - \"hard drive\"\n  - \"hard disk\"\n  - ssd\n  - drive\n  - server\n---\n"
  },
  {
    "path": "docs/content/icons/hdd-network.md",
    "content": "---\ntitle: Hdd network\ncategories:\n  - Devices\ntags:\n  - \"hard drive\"\n  - \"hard disk\"\n  - ssd\n  - drive\n  - server\n---\n"
  },
  {
    "path": "docs/content/icons/hdd-rack-fill.md",
    "content": "---\ntitle: Hdd rack fill\ncategories:\n  - Devices\ntags:\n  - \"hard drive\"\n  - \"hard disk\"\n  - ssd\n  - drive\n  - server\n---\n"
  },
  {
    "path": "docs/content/icons/hdd-rack.md",
    "content": "---\ntitle: Hdd rack\ncategories:\n  - Devices\ntags:\n  - \"hard drive\"\n  - \"hard disk\"\n  - ssd\n  - drive\n  - server\n---\n"
  },
  {
    "path": "docs/content/icons/hdd-stack-fill.md",
    "content": "---\ntitle: Hdd stack fill\ncategories:\n  - Devices\ntags:\n  - \"hard drive\"\n  - \"hard disk\"\n  - ssd\n  - drive\n  - server\n---\n"
  },
  {
    "path": "docs/content/icons/hdd-stack.md",
    "content": "---\ntitle: Hdd stack\ncategories:\n  - Devices\ntags:\n  - \"hard drive\"\n  - \"hard disk\"\n  - ssd\n  - drive\n  - server\n---\n"
  },
  {
    "path": "docs/content/icons/hdd.md",
    "content": "---\ntitle: Hdd\ncategories:\n  - Devices\ntags:\n  - \"hard drive\"\n  - \"hard disk\"\n  - ssd\n  - drive\n  - server\n---\n"
  },
  {
    "path": "docs/content/icons/hdmi-fill.md",
    "content": "---\ntitle: HDMI fill\ncategories:\n  - Devices\ntags:\n  - video\n  - input\n---\n"
  },
  {
    "path": "docs/content/icons/hdmi.md",
    "content": "---\ntitle: HDMI\ncategories:\n  - Devices\ntags:\n  - video\n  - input\n---\n"
  },
  {
    "path": "docs/content/icons/headphones.md",
    "content": "---\ntitle: Headphones\ncategories:\n  - Devices\ntags:\n  - headphones\n---\n"
  },
  {
    "path": "docs/content/icons/headset-vr.md",
    "content": "---\ntitle: Headset VR\ncategories:\n  - Devices\ntags:\n  - \"virual reality\"\n  - oculus\n  - hololens\n---\n"
  },
  {
    "path": "docs/content/icons/headset.md",
    "content": "---\ntitle: Headset\ncategories:\n  - Devices\ntags:\n  - headphones\n  - microphone\n---\n"
  },
  {
    "path": "docs/content/icons/heart-arrow.md",
    "content": "---\ntitle: Heart arrow\ncategories:\n  - Love\ntags:\n  - romance\n  - cupid\n  - valentine\n---\n"
  },
  {
    "path": "docs/content/icons/heart-fill.md",
    "content": "---\ntitle: Heart fill\ncategories:\n  - Shapes\ntags:\n  - love\n  - favorite\n---\n"
  },
  {
    "path": "docs/content/icons/heart-half.md",
    "content": "---\ntitle: Heart half\ncategories:\n  - Shapes\ntags:\n  - love\n  - favorite\n---\n"
  },
  {
    "path": "docs/content/icons/heart-pulse-fill.md",
    "content": "---\ntitle: Heart pulse fill\ncategories:\n  - Medical\ntags:\n  - heartbeat\n---\n"
  },
  {
    "path": "docs/content/icons/heart-pulse.md",
    "content": "---\ntitle: Heart pulse\ncategories:\n  - Medical\ntags:\n  - heartbeat\n---\n"
  },
  {
    "path": "docs/content/icons/heart.md",
    "content": "---\ntitle: Heart\ncategories:\n  - Shapes\ntags:\n  - love\n  - favorite\n---\n"
  },
  {
    "path": "docs/content/icons/heartbreak-fill.md",
    "content": "---\ntitle: Heartbreak fill\ncategories:\n  - Emoji\n  - Love\ntags:\n  - love\n  - valentine\n  - romance\n---\n"
  },
  {
    "path": "docs/content/icons/heartbreak.md",
    "content": "---\ntitle: Heartbreak\ncategories:\n  - Emoji\n  - Love\ntags:\n  - love\n  - valentine\n  - romance\n---\n"
  },
  {
    "path": "docs/content/icons/hearts.md",
    "content": "---\ntitle: Hearts\ncategories:\n  - Love\ntags:\n  - romance\n  - valentine\n---\n"
  },
  {
    "path": "docs/content/icons/heptagon-fill.md",
    "content": "---\ntitle: Heptagon fill\ncategories:\n  - Shapes\ntags:\n  - shape\n  - polygon\n---\n"
  },
  {
    "path": "docs/content/icons/heptagon-half.md",
    "content": "---\ntitle: Heptagon half\ncategories:\n  - Shapes\ntags:\n  - shape\n  - polygon\n---\n"
  },
  {
    "path": "docs/content/icons/heptagon.md",
    "content": "---\ntitle: Heptagon\ncategories:\n  - Shapes\ntags:\n  - shape\n  - polygon\n---\n"
  },
  {
    "path": "docs/content/icons/hexagon-fill.md",
    "content": "---\ntitle: Hexagon fill\ncategories:\n  - Shapes\ntags:\n  - shape\n  - polygon\n---\n"
  },
  {
    "path": "docs/content/icons/hexagon-half.md",
    "content": "---\ntitle: Hexagon half\ncategories:\n  - Shapes\ntags:\n  - shape\n  - polygon\n---\n"
  },
  {
    "path": "docs/content/icons/hexagon.md",
    "content": "---\ntitle: Hexagon\ncategories:\n  - Shapes\ntags:\n  - shape\n  - polygon\n---\n"
  },
  {
    "path": "docs/content/icons/highlighter.md",
    "content": "---\ntitle: Highlighter\ncategories:\n  - Tools\ntags:\n  - text\n  - study\n  - highlight\n  - marker\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/highlights.md",
    "content": "---\ntitle: Highlights\ncategories:\n  - Graphics\ntags:\n  - photo\n  - editing\n  - image\n  - picture\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/hospital-fill.md",
    "content": "---\ntitle: Hospital fill\ncategories:\n  - Medical\ntags:\n  - health\n  - \"emergency room\"\n---\n"
  },
  {
    "path": "docs/content/icons/hospital.md",
    "content": "---\ntitle: Hospital\ncategories:\n  - Medical\ntags:\n  - health\n  - \"emergency room\"\n---\n"
  },
  {
    "path": "docs/content/icons/hourglass-bottom.md",
    "content": "---\ntitle: Hourglass bottom\ncategories:\n  - Real world\ntags:\n  - time\n  - history\n  - wait\n  - sand\n  - clock\n---\n"
  },
  {
    "path": "docs/content/icons/hourglass-split.md",
    "content": "---\ntitle: Hourglass split\ncategories:\n  - Real world\ntags:\n  - time\n  - history\n  - wait\n  - sand\n  - clock\n---\n"
  },
  {
    "path": "docs/content/icons/hourglass-top.md",
    "content": "---\ntitle: Hourglass top\ncategories:\n  - Real world\ntags:\n  - time\n  - history\n  - wait\n  - sand\n  - clock\n---\n"
  },
  {
    "path": "docs/content/icons/hourglass.md",
    "content": "---\ntitle: Hourglass\ncategories:\n  - Real world\ntags:\n  - time\n  - history\n  - wait\n  - sand\n  - clock\n---\n"
  },
  {
    "path": "docs/content/icons/house-add-fill.md",
    "content": "---\ntitle: House add fill\ncategories:\n  - Real world\ntags:\n  - home\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/house-add.md",
    "content": "---\ntitle: House add\ncategories:\n  - Real world\ntags:\n  - home\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/house-check-fill.md",
    "content": "---\ntitle: House check fill\ncategories:\n  - Real world\ntags:\n  - home\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/house-check.md",
    "content": "---\ntitle: House check\ncategories:\n  - Real world\ntags:\n  - home\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/house-dash-fill.md",
    "content": "---\ntitle: House dash fill\ncategories:\n  - Real world\ntags:\n  - home\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/house-dash.md",
    "content": "---\ntitle: House dash\ncategories:\n  - Real world\ntags:\n  - home\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/house-door-fill.md",
    "content": "---\ntitle: House door fill\ncategories:\n  - Real world\ntags:\n  - home\n---\n"
  },
  {
    "path": "docs/content/icons/house-door.md",
    "content": "---\ntitle: House door\ncategories:\n  - Real world\ntags:\n  - home\n---\n"
  },
  {
    "path": "docs/content/icons/house-down-fill.md",
    "content": "---\ntitle: House down fill\ncategories:\n  - Real world\ntags:\n  - home\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/house-down.md",
    "content": "---\ntitle: House down\ncategories:\n  - Real world\ntags:\n  - home\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/house-exclamation-fill.md",
    "content": "---\ntitle: House exclamation fill\ncategories:\n  - Real world\ntags:\n  - home\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/house-exclamation.md",
    "content": "---\ntitle: House exclamation\ncategories:\n  - Real world\ntags:\n  - home\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/house-fill.md",
    "content": "---\ntitle: House fill\ncategories:\n  - Real world\ntags:\n  - home\n---\n"
  },
  {
    "path": "docs/content/icons/house-gear-fill.md",
    "content": "---\ntitle: House gear fill\ncategories:\n  - Real world\ntags:\n  - home\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/house-gear.md",
    "content": "---\ntitle: House gear\ncategories:\n  - Real world\ntags:\n  - home\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/house-heart-fill.md",
    "content": "---\ntitle: House heart fill\ncategories:\n  - Real world\ntags:\n  - home\n  - love\n  - romance\n---\n"
  },
  {
    "path": "docs/content/icons/house-heart.md",
    "content": "---\ntitle: House heart\ncategories:\n  - Real world\ntags:\n  - home\n  - love\n  - romance\n---\n"
  },
  {
    "path": "docs/content/icons/house-lock-fill.md",
    "content": "---\ntitle: House lock fill\ncategories:\n  - Real world\ntags:\n  - home\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/house-lock.md",
    "content": "---\ntitle: House lock\ncategories:\n  - Real world\ntags:\n  - home\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/house-slash-fill.md",
    "content": "---\ntitle: House slash fill\ncategories:\n  - Real world\ntags:\n  - home\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/house-slash.md",
    "content": "---\ntitle: House slash\ncategories:\n  - Real world\ntags:\n  - home\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/house-up-fill.md",
    "content": "---\ntitle: House up fill\ncategories:\n  - Real world\ntags:\n  - home\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/house-up.md",
    "content": "---\ntitle: House up\ncategories:\n  - Real world\ntags:\n  - home\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/house-x-fill.md",
    "content": "---\ntitle: House x fill\ncategories:\n  - Real world\ntags:\n  - home\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/house-x.md",
    "content": "---\ntitle: House x\ncategories:\n  - Real world\ntags:\n  - home\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/house.md",
    "content": "---\ntitle: House\ncategories:\n  - Real world\ntags:\n  - home\n---\n"
  },
  {
    "path": "docs/content/icons/houses-fill.md",
    "content": "---\ntitle: Houses fill\ncategories:\n  - Real world\ntags:\n  - home\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/houses.md",
    "content": "---\ntitle: Houses\ncategories:\n  - Real world\ntags:\n  - home\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/hr.md",
    "content": "---\ntitle: HR\ncategories:\n  - Typography\ntags:\n  - divider\n  - horizonal-rule\n---\n"
  },
  {
    "path": "docs/content/icons/hurricane.md",
    "content": "---\ntitle: Hurricane\ncategories:\n  - Weather\ntags:\n  - storm\n---\n"
  },
  {
    "path": "docs/content/icons/hypnotize.md",
    "content": "---\ntitle: Hypnotize\ncategories:\n  - Real world\ntags:\n  - hypnosis\n  - sleepy\n---\n"
  },
  {
    "path": "docs/content/icons/image-alt.md",
    "content": "---\ntitle: Image alt\ncategories:\n  - Files and folders\ntags:\n  - picture\n  - photo\n---\n"
  },
  {
    "path": "docs/content/icons/image-fill.md",
    "content": "---\ntitle: Image fill\ncategories:\n  - Files and folders\ntags:\n  - picture\n  - photo\n---\n"
  },
  {
    "path": "docs/content/icons/image.md",
    "content": "---\ntitle: Image\ncategories:\n  - Files and folders\ntags:\n  - picture\n  - photo\n---\n"
  },
  {
    "path": "docs/content/icons/images.md",
    "content": "---\ntitle: Images\ncategories:\n  - Files and folders\ntags:\n  - picture\n  - photo\n---\n"
  },
  {
    "path": "docs/content/icons/inbox-fill.md",
    "content": "---\ntitle: Inbox fill\ncategories:\n  - Communications\ntags:\n  - mail\n  - email\n  - letter tray\n---\n"
  },
  {
    "path": "docs/content/icons/inbox.md",
    "content": "---\ntitle: Inbox\ncategories:\n  - Communications\ntags:\n  - mail\n  - email\n  - letter tray\n---\n"
  },
  {
    "path": "docs/content/icons/inboxes-fill.md",
    "content": "---\ntitle: Inboxes fill\ncategories:\n  - Communications\ntags:\n  - mail\n  - email\n  - letter tray\n---\n"
  },
  {
    "path": "docs/content/icons/inboxes.md",
    "content": "---\ntitle: Inboxes fill\ncategories:\n  - Communications\ntags:\n  - mail\n  - email\n  - letter tray\n---\n"
  },
  {
    "path": "docs/content/icons/incognito.md",
    "content": "---\ntitle: Incognito\ncategories:\n  - Miscellaneous\ntags:\n  - private\n  - investigator\n  - secret\n---\n"
  },
  {
    "path": "docs/content/icons/indent.md",
    "content": "---\ntitle: Indent\ncategories:\n  - UI and Keyboard\ntags:\n  - tab\n  - indent\n---\n"
  },
  {
    "path": "docs/content/icons/infinity.md",
    "content": "---\ntitle: Infinity\ncategories:\n  - Typography\ntags:\n  - math\n  - infinite\n---\n"
  },
  {
    "path": "docs/content/icons/info-circle-fill.md",
    "content": "---\ntitle: Info fill\ncategories:\n  - Alerts, warnings, and signs\ntags:\n  - information\n  - help\n---\n"
  },
  {
    "path": "docs/content/icons/info-circle.md",
    "content": "---\ntitle: Info circle\ncategories:\n  - Alerts, warnings, and signs\ntags:\n  - information\n  - help\n---\n"
  },
  {
    "path": "docs/content/icons/info-lg.md",
    "content": "---\ntitle: Info lg\ncategories:\n  - Alerts, warnings, and signs\ntags:\n  - information\n  - help\n---\n"
  },
  {
    "path": "docs/content/icons/info-square-fill.md",
    "content": "---\ntitle: Info square fill\ncategories:\n  - Alerts, warnings, and signs\ntags:\n  - information\n  - help\n---\n"
  },
  {
    "path": "docs/content/icons/info-square.md",
    "content": "---\ntitle: Info square\ncategories:\n  - Alerts, warnings, and signs\ntags:\n  - information\n  - help\n---\n"
  },
  {
    "path": "docs/content/icons/info.md",
    "content": "---\ntitle: Info\ncategories:\n  - Alerts, warnings, and signs\ntags:\n  - information\n  - help\n---\n"
  },
  {
    "path": "docs/content/icons/input-cursor-text.md",
    "content": "---\ntitle: Input cursor text\ncategories:\n  - Graphics\ntags:\n  - textarea\n  - form\n  - input\n---\n"
  },
  {
    "path": "docs/content/icons/input-cursor.md",
    "content": "---\ntitle: Input cursor\ncategories:\n  - Graphics\ntags:\n  - textarea\n  - form\n  - input\n---\n"
  },
  {
    "path": "docs/content/icons/instagram.md",
    "content": "---\ntitle: Instagram\ncategories:\n  - Brand\ntags:\n  - social\n  - chat\n---\n"
  },
  {
    "path": "docs/content/icons/intersect.md",
    "content": "---\ntitle: Intersect\ncategories:\n  - Graphics\ntags:\n  - graphics\n  - vector\n  - merge\n  - layers\n---\n"
  },
  {
    "path": "docs/content/icons/javascript.md",
    "content": "---\ntitle: JavaScript\ncategories:\n  - Brand\ntags:\n  - frontend\n  - js\n  - web\n---\n"
  },
  {
    "path": "docs/content/icons/journal-album.md",
    "content": "---\ntitle: Journal album\ncategories:\n  - Files and folders\ntags:\n  - file\n  - folder\n  - journal\n  - notebook\n---\n"
  },
  {
    "path": "docs/content/icons/journal-arrow-down.md",
    "content": "---\ntitle: Journal arrow down\ncategories:\n  - Files and folders\ntags:\n  - file\n  - folder\n  - journal\n  - notebook\n---\n"
  },
  {
    "path": "docs/content/icons/journal-arrow-up.md",
    "content": "---\ntitle: Journal arrow up\ncategories:\n  - Files and folders\ntags:\n  - file\n  - folder\n  - journal\n  - notebook\n---\n"
  },
  {
    "path": "docs/content/icons/journal-bookmark-fill.md",
    "content": "---\ntitle: Journal bookmark fill\ncategories:\n  - Files and folders\ntags:\n  - file\n  - folder\n  - journal\n  - notebook\n---\n"
  },
  {
    "path": "docs/content/icons/journal-bookmark.md",
    "content": "---\ntitle: Journal bookmark\ncategories:\n  - Files and folders\ntags:\n  - file\n  - folder\n  - journal\n  - notebook\n---\n"
  },
  {
    "path": "docs/content/icons/journal-check.md",
    "content": "---\ntitle: Journal check\ncategories:\n  - Files and folders\ntags:\n  - file\n  - folder\n  - journal\n  - notebook\n---\n"
  },
  {
    "path": "docs/content/icons/journal-code.md",
    "content": "---\ntitle: Journal code\ncategories:\n  - Files and folders\ntags:\n  - file\n  - folder\n  - journal\n  - notebook\n---\n"
  },
  {
    "path": "docs/content/icons/journal-medical.md",
    "content": "---\ntitle: Journal medical\ncategories:\n  - Files and folders\ntags:\n  - file\n  - folder\n  - journal\n  - notebook\n---\n"
  },
  {
    "path": "docs/content/icons/journal-minus.md",
    "content": "---\ntitle: Journal minus\ncategories:\n  - Files and folders\ntags:\n  - file\n  - folder\n  - journal\n  - notebook\n---\n"
  },
  {
    "path": "docs/content/icons/journal-plus.md",
    "content": "---\ntitle: Journal plus\ncategories:\n  - Files and folders\ntags:\n  - file\n  - folder\n  - journal\n  - notebook\n---\n"
  },
  {
    "path": "docs/content/icons/journal-richtext.md",
    "content": "---\ntitle: Journal richtext\ncategories:\n  - Files and folders\ntags:\n  - file\n  - folder\n  - journal\n  - notebook\n---\n"
  },
  {
    "path": "docs/content/icons/journal-text.md",
    "content": "---\ntitle: Journal text\ncategories:\n  - Files and folders\ntags:\n  - file\n  - folder\n  - journal\n  - notebook\n---\n"
  },
  {
    "path": "docs/content/icons/journal-x.md",
    "content": "---\ntitle: Journal x\ncategories:\n  - Files and folders\ntags:\n  - file\n  - folder\n  - journal\n  - notebook\n  - remove\n  - delete\n---\n"
  },
  {
    "path": "docs/content/icons/journal.md",
    "content": "---\ntitle: Journal\ncategories:\n  - Files and folders\ntags:\n  - file\n  - folder\n  - journal\n  - notebook\n---\n"
  },
  {
    "path": "docs/content/icons/journals.md",
    "content": "---\ntitle: Journals\ncategories:\n  - Files and folders\ntags:\n  - file\n  - folder\n  - journal\n  - notebook\n---\n"
  },
  {
    "path": "docs/content/icons/joystick.md",
    "content": "---\ntitle: Joystick\ncategories:\n  - Entertainment\ntags:\n  - gaming\n  - game\n  - \"video games\"\n---\n"
  },
  {
    "path": "docs/content/icons/justify-left.md",
    "content": "---\ntitle: Justify left\ncategories:\n  - Typography\ntags:\n  - text\n  - type\n  - justify\n  - alignment\n---\n"
  },
  {
    "path": "docs/content/icons/justify-right.md",
    "content": "---\ntitle: Justify right\ncategories:\n  - Typography\ntags:\n  - text\n  - type\n  - justify\n  - alignment\n---\n"
  },
  {
    "path": "docs/content/icons/justify.md",
    "content": "---\ntitle: Justify\ncategories:\n  - Typography\ntags:\n  - text\n  - type\n  - justify\n  - alignment\n---\n"
  },
  {
    "path": "docs/content/icons/kanban-fill.md",
    "content": "---\ntitle: Kanban fill\ncategories:\n  - Miscellaneous\ntags:\n  - board\n  - project-management\n---\n"
  },
  {
    "path": "docs/content/icons/kanban.md",
    "content": "---\ntitle: Kanban\ncategories:\n  - Miscellaneous\ntags:\n  - board\n  - project-management\n---\n"
  },
  {
    "path": "docs/content/icons/key-fill.md",
    "content": "---\ntitle: Key fill\ncategories:\n  - Real world\ntags:\n  - lock\n  - secure\n---\n"
  },
  {
    "path": "docs/content/icons/key.md",
    "content": "---\ntitle: Key\ncategories:\n  - Real world\ntags:\n  - lock\n  - secure\n---\n"
  },
  {
    "path": "docs/content/icons/keyboard-fill.md",
    "content": "---\ntitle: Keyboard fill\ncategories:\n  - Devices\ntags:\n  - keyboard\n  - keys\n  - typing\n---\n"
  },
  {
    "path": "docs/content/icons/keyboard.md",
    "content": "---\ntitle: Keyboard\ncategories:\n  - Devices\ntags:\n  - keyboard\n  - keys\n  - typing\n---\n"
  },
  {
    "path": "docs/content/icons/ladder.md",
    "content": "---\ntitle: Ladder\ncategories:\n  - Real world\ntags:\n  - climb\n  - ladder\n---\n"
  },
  {
    "path": "docs/content/icons/lamp-fill.md",
    "content": "---\ntitle: Lamp fill\ncategories:\n  - Real world\ntags:\n  - light\n  - lamp\n---\n"
  },
  {
    "path": "docs/content/icons/lamp.md",
    "content": "---\ntitle: Lamp\ncategories:\n  - Real world\ntags:\n  - light\n  - lamp\n---\n"
  },
  {
    "path": "docs/content/icons/laptop-fill.md",
    "content": "---\ntitle: Laptop fill\ncategories:\n  - Devices\ntags:\n  - computer\n---\n"
  },
  {
    "path": "docs/content/icons/laptop.md",
    "content": "---\ntitle: Laptop\ncategories:\n  - Devices\ntags:\n  - computer\n---\n"
  },
  {
    "path": "docs/content/icons/layer-backward.md",
    "content": "---\ntitle: Layer backward\ncategories:\n  - Graphics\ntags:\n  - arrange\n  - layers\n  - back\n---\n"
  },
  {
    "path": "docs/content/icons/layer-forward.md",
    "content": "---\ntitle: Layer forward\ncategories:\n  - Graphics\ntags:\n  - arrange\n  - layers\n  - front\n---\n"
  },
  {
    "path": "docs/content/icons/layers-fill.md",
    "content": "---\ntitle: Layers fill\ncategories:\n  - Graphics\ntags:\n  - perspective\n  - stacked\n---\n"
  },
  {
    "path": "docs/content/icons/layers-half.md",
    "content": "---\ntitle: Layers half\ncategories:\n  - Graphics\ntags:\n  - perspective\n  - stacked\n---\n"
  },
  {
    "path": "docs/content/icons/layers.md",
    "content": "---\ntitle: Layers\ncategories:\n  - Graphics\ntags:\n  - perspective\n  - stacked\n---\n"
  },
  {
    "path": "docs/content/icons/layout-sidebar-inset-reverse.md",
    "content": "---\ntitle: Layout sidebar inset reverse\ncategories:\n  - Layout\ntags:\n  - layout\n  - columns\n---\n"
  },
  {
    "path": "docs/content/icons/layout-sidebar-inset.md",
    "content": "---\ntitle: Layout sidebar nested\ncategories:\n  - Layout\ntags:\n  - layout\n  - columns\n---\n"
  },
  {
    "path": "docs/content/icons/layout-sidebar-reverse.md",
    "content": "---\ntitle: Layout sidebar reverse\ncategories:\n  - Layout\ntags:\n  - grid\n  - layout\n  - sidebar\n---\n"
  },
  {
    "path": "docs/content/icons/layout-sidebar.md",
    "content": "---\ntitle: Layout sidebar\ncategories:\n  - Layout\ntags:\n  - grid\n  - layout\n  - sidebar\n---\n"
  },
  {
    "path": "docs/content/icons/layout-split.md",
    "content": "---\ntitle: Layout split\ncategories:\n  - Layout\ntags:\n  - grid\n  - layout\n  - sidebar\n---\n"
  },
  {
    "path": "docs/content/icons/layout-text-sidebar-reverse.md",
    "content": "---\ntitle: Layout text sidebar reverse\ncategories:\n  - Layout\ntags:\n  - layout\n  - columns\n---\n"
  },
  {
    "path": "docs/content/icons/layout-text-sidebar.md",
    "content": "---\ntitle: Layout text sidebar\ncategories:\n  - Layout\ntags:\n  - layout\n  - columns\n---\n"
  },
  {
    "path": "docs/content/icons/layout-text-window-reverse.md",
    "content": "---\ntitle: Layout text window reverse\ncategories:\n  - Layout\ntags:\n  - layout\n  - columns\n---\n"
  },
  {
    "path": "docs/content/icons/layout-text-window.md",
    "content": "---\ntitle: Layout text window\ncategories:\n  - Layout\ntags:\n  - layout\n  - columns\n---\n"
  },
  {
    "path": "docs/content/icons/layout-three-columns.md",
    "content": "---\ntitle: Layout three columns\ncategories:\n  - Layout\ntags:\n  - layout\n  - columns\n---\n"
  },
  {
    "path": "docs/content/icons/layout-wtf.md",
    "content": "---\ntitle: Layout WTF\ncategories:\n  - Layout\ntags:\n  - layout\n  - broken\n---\n"
  },
  {
    "path": "docs/content/icons/leaf-fill.md",
    "content": "---\ntitle: Leaf fill\ntags:\n  - nature\n  - science\n  - eco\n  - environment\n  - green\n---\n"
  },
  {
    "path": "docs/content/icons/leaf.md",
    "content": "---\ntitle: Leaf\ncategories:\n  - Real world\ntags:\n  - nature\n  - science\n  - eco\n  - environment\n  - green\n---\n"
  },
  {
    "path": "docs/content/icons/life-preserver.md",
    "content": "---\ntitle: Life preserver\ncategories:\n  - Real world\ntags:\n  - lifesaver\n  - water\n---\n"
  },
  {
    "path": "docs/content/icons/lightbulb-fill.md",
    "content": "---\ntitle: Lightbulb fill\ncategories:\n  - Real world\ntags:\n  - lights\n  - lamp\n---\n"
  },
  {
    "path": "docs/content/icons/lightbulb-off-fill.md",
    "content": "---\ntitle: Lightbulb off fill\ncategories:\n  - Real world\ntags:\n  - lights\n  - lamp\n---\n"
  },
  {
    "path": "docs/content/icons/lightbulb-off.md",
    "content": "---\ntitle: Lightbulb off\ncategories:\n  - Real world\ntags:\n  - lights\n  - lamp\n---\n"
  },
  {
    "path": "docs/content/icons/lightbulb.md",
    "content": "---\ntitle: Lightbulb\ncategories:\n  - Real world\ntags:\n  - lights\n  - lamp\n---\n"
  },
  {
    "path": "docs/content/icons/lightning-charge-fill.md",
    "content": "---\ntitle: Lightning charge fill\ncategories:\n  - Miscellaneous\ntags:\n  - weather\n  - storm\n  - thunder\n  - bolt\n---\n"
  },
  {
    "path": "docs/content/icons/lightning-charge.md",
    "content": "---\ntitle: Lightning charge\ncategories:\n  - Miscellaneous\ntags:\n  - weather\n  - storm\n  - thunder\n  - bolt\n---\n"
  },
  {
    "path": "docs/content/icons/lightning-fill.md",
    "content": "---\ntitle: Lightning fill\ncategories:\n  - Weather\ntags:\n  - storm\n  - thunder\n  - bolt\n---\n"
  },
  {
    "path": "docs/content/icons/lightning.md",
    "content": "---\ntitle: Lightning\ncategories:\n  - Weather\ntags:\n  - storm\n  - thunder\n  - bolt\n---\n"
  },
  {
    "path": "docs/content/icons/line.md",
    "content": "---\ntitle: Line\ncategories:\n  - Brand\ntags:\n  - social\n---\n"
  },
  {
    "path": "docs/content/icons/link-45deg.md",
    "content": "---\ntitle: Link 45deg\ncategories:\n  - UI and keyboard\ntags:\n  - anchor\n  - hyperlink\n  - href\n---\n"
  },
  {
    "path": "docs/content/icons/link.md",
    "content": "---\ntitle: Link\ncategories:\n  - UI and keyboard\ntags:\n  - anchor\n  - hyperlink\n  - href\n---\n"
  },
  {
    "path": "docs/content/icons/linkedin.md",
    "content": "---\ntitle: Linkedin\ncategories:\n  - Brand\ntags:\n  - social\n  - microsoft\n---\n"
  },
  {
    "path": "docs/content/icons/list-check.md",
    "content": "---\ntitle: List checked\ncategories:\n  - Typography\ntags:\n  - text\n  - type\n  - justify\n  - alignment\n  - checklist\n  - done\n---\n"
  },
  {
    "path": "docs/content/icons/list-columns-reverse.md",
    "content": "---\ntitle: List columns reverse\ncategories:\n  - Typography\ntags:\n  - text\n  - type\n  - alignment\n---\n"
  },
  {
    "path": "docs/content/icons/list-columns.md",
    "content": "---\ntitle: List columns\ncategories:\n  - Typography\ntags:\n  - text\n  - type\n  - alignment\n---\n"
  },
  {
    "path": "docs/content/icons/list-nested.md",
    "content": "---\ntitle: List nested\ncategories:\n  - Typography\ntags:\n  - text\n  - type\n  - alignment\n  - children\n---\n"
  },
  {
    "path": "docs/content/icons/list-ol.md",
    "content": "---\ntitle: List OL\ncategories:\n  - Typography\ntags:\n  - text\n  - type\n  - justify\n  - alignment\n  - ordered-list\n  - numbered-list\n  - numbered\n---\n"
  },
  {
    "path": "docs/content/icons/list-stars.md",
    "content": "---\ntitle: List stars\ncategories:\n  - Typography\ntags:\n  - text\n  - type\n  - starred\n---\n"
  },
  {
    "path": "docs/content/icons/list-task.md",
    "content": "---\ntitle: List task\ncategories:\n  - Typography\ntags:\n  - text\n  - type\n  - justify\n  - alignment\n  - todos\n  - task\n---\n"
  },
  {
    "path": "docs/content/icons/list-ul.md",
    "content": "---\ntitle: List UL\ncategories:\n  - Typography\ntags:\n  - text\n  - type\n  - justify\n  - alignment\n  - unordered-list\n---\n"
  },
  {
    "path": "docs/content/icons/list.md",
    "content": "---\ntitle: List\ncategories:\n  - Typography\ntags:\n  - text\n  - type\n  - justify\n  - alignment\n  - menu\n  - hamburger\n---\n"
  },
  {
    "path": "docs/content/icons/lock-fill.md",
    "content": "---\ntitle: Lock fill\ncategories:\n  - Security\ntags:\n  - privacy\n  - security\n---\n"
  },
  {
    "path": "docs/content/icons/lock.md",
    "content": "---\ntitle: Lock\ncategories:\n  - Security\ntags:\n  - privacy\n  - security\n---\n"
  },
  {
    "path": "docs/content/icons/luggage-fill.md",
    "content": "---\ntitle: Luggage fill\ncategories:\n  - Travel\ntags:\n  - luggage\n  - bags\n  - carry-on\n  - student\n  - education\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/luggage.md",
    "content": "---\ntitle: Luggage\ncategories:\n  - Travel\ntags:\n  - luggage\n  - bags\n  - carry-on\n  - student\n  - education\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/lungs-fill.md",
    "content": "---\ntitle: Lungs fill\ncategories:\n  - Medical\ntags:\n  - medicine\n  - health\n  - breathing\n---\n"
  },
  {
    "path": "docs/content/icons/lungs.md",
    "content": "---\ntitle: Lungs\ncategories:\n  - Medical\ntags:\n  - medicine\n  - health\n  - breathing\n---\n"
  },
  {
    "path": "docs/content/icons/magic.md",
    "content": "---\ntitle: Magic\ncategories:\n  - Real world\ntags:\n  - \"magic stick\"\n---\n"
  },
  {
    "path": "docs/content/icons/magnet-fill.md",
    "content": "---\ntitle: Magnet fill\ncategories:\n  - Real world\ntags:\n  - magnetic\n---\n"
  },
  {
    "path": "docs/content/icons/magnet.md",
    "content": "---\ntitle: Magnet\ncategories:\n  - Real world\ntags:\n  - magnetic\n---\n"
  },
  {
    "path": "docs/content/icons/mailbox-flag.md",
    "content": "---\ntitle: Mailbox flag\ncategories:\n  - Real world\ntags:\n  - post\n  - postal\n  - postbox\n  - letterbox\n---\n"
  },
  {
    "path": "docs/content/icons/mailbox.md",
    "content": "---\ntitle: Mailbox\ncategories:\n  - Real world\ntags:\n  - post\n  - postal\n  - postbox\n  - letterbox\n---\n"
  },
  {
    "path": "docs/content/icons/mailbox2-flag.md",
    "content": "---\ntitle: Mailbox2 flag\ncategories:\n  - Real world\ntags:\n  - post\n  - postal\n  - postbox\n  - letterbox\n---\n"
  },
  {
    "path": "docs/content/icons/mailbox2.md",
    "content": "---\ntitle: Mailbox2\ncategories:\n  - Real world\ntags:\n  - post\n  - postal\n  - postbox\n  - letterbox\n---\n"
  },
  {
    "path": "docs/content/icons/map-fill.md",
    "content": "---\ntitle: Map fill\ncategories:\n  - Geo\ntags:\n  - geography\n  - directions\n  - location\n---\n"
  },
  {
    "path": "docs/content/icons/map.md",
    "content": "---\ntitle: Map\ncategories:\n  - Geo\ntags:\n  - geography\n  - directions\n  - location\n---\n"
  },
  {
    "path": "docs/content/icons/markdown-fill.md",
    "content": "---\ntitle: Markdown fill\ncategories:\n  - Badges\ntags:\n  - markdown\n  - md\n  - content\n  - writing\n---\n"
  },
  {
    "path": "docs/content/icons/markdown.md",
    "content": "---\ntitle: Markdown\ncategories:\n  - Badges\ntags:\n  - markdown\n  - md\n  - content\n  - writing\n---\n"
  },
  {
    "path": "docs/content/icons/marker-tip.md",
    "content": "---\ntitle: Marker tip\ncategories:\n  - Tools\ntags:\n  - text\n  - study\n  - highlight\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/mask.md",
    "content": "---\ntitle: Mask\ncategories:\n  - Graphics\ntags:\n  - mask\n---\n"
  },
  {
    "path": "docs/content/icons/mastodon.md",
    "content": "---\ntitle: Mastodon\ncategories:\n  - Brand\ntags:\n  - social\n---\n"
  },
  {
    "path": "docs/content/icons/measuring-cup-fill.md",
    "content": "---\ntitle: Measuring cup fill\ncategories:\n  - Real world\ntags:\n  - baking\n  - cooking\n  - measure\n---\n"
  },
  {
    "path": "docs/content/icons/measuring-cup.md",
    "content": "---\ntitle: Measuring cup\ncategories:\n  - Real world\ntags:\n  - baking\n  - cooking\n  - measure\n---\n"
  },
  {
    "path": "docs/content/icons/medium.md",
    "content": "---\ntitle: Medium\ncategories:\n  - Brand\ntags:\n  - social\n---\n"
  },
  {
    "path": "docs/content/icons/megaphone-fill.md",
    "content": "---\ntitle: Megaphone fill\ncategories:\n  - Real world\ntags:\n  - loudspeaker\n  - announcement\n---\n"
  },
  {
    "path": "docs/content/icons/megaphone.md",
    "content": "---\ntitle: Megaphone\ncategories:\n  - Real world\ntags:\n  - loudspeaker\n  - announcement\n---\n"
  },
  {
    "path": "docs/content/icons/memory.md",
    "content": "---\ntitle: Memory\ncategories:\n  - Devices\ntags:\n  - ram\n---\n"
  },
  {
    "path": "docs/content/icons/menu-app-fill.md",
    "content": "---\ntitle: Menu app fill\ncategories:\n  - Controls\ntags:\n  - dropdown\n  - menu\n  - context\n  - app\n  - ui\n---\n"
  },
  {
    "path": "docs/content/icons/menu-app.md",
    "content": "---\ntitle: Menu app\ncategories:\n  - Controls\ntags:\n  - dropdown\n  - menu\n  - context\n  - app\n  - ui\n---\n"
  },
  {
    "path": "docs/content/icons/menu-button-fill.md",
    "content": "---\ntitle: Menu button fill\ncategories:\n  - Controls\ntags:\n  - dropdown\n  - menu\n  - context\n  - app\n  - ui\n---\n"
  },
  {
    "path": "docs/content/icons/menu-button-wide-fill.md",
    "content": "---\ntitle: Menu button wide fill\ncategories:\n  - Controls\ntags:\n  - dropdown\n  - menu\n  - context\n  - app\n  - ui\n---\n"
  },
  {
    "path": "docs/content/icons/menu-button-wide.md",
    "content": "---\ntitle: Menu button wide\ncategories:\n  - Controls\ntags:\n  - dropdown\n  - menu\n  - context\n  - app\n  - ui\n---\n"
  },
  {
    "path": "docs/content/icons/menu-button.md",
    "content": "---\ntitle: Menu button\ncategories:\n  - Controls\ntags:\n  - dropdown\n  - menu\n  - context\n  - app\n  - ui\n---\n"
  },
  {
    "path": "docs/content/icons/menu-down.md",
    "content": "---\ntitle: Menu down\ncategories:\n  - Controls\ntags:\n  - dropdown\n  - menu\n  - context\n  - app\n  - ui\n---\n"
  },
  {
    "path": "docs/content/icons/menu-up.md",
    "content": "---\ntitle: Menu up\ncategories:\n  - Controls\ntags:\n  - dropdown\n  - menu\n  - context\n  - app\n  - ui\n---\n"
  },
  {
    "path": "docs/content/icons/messenger.md",
    "content": "---\ntitle: Messenger\ncategories:\n  - Brand\ntags:\n  - social\n  - facebook\n  - chat\n---\n"
  },
  {
    "path": "docs/content/icons/meta.md",
    "content": "---\ntitle: Meta\ncategories:\n  - Brand\ntags:\n  - facebook\n  - fb\n---\n"
  },
  {
    "path": "docs/content/icons/mic-fill.md",
    "content": "---\ntitle: Mic fill\ncategories:\n  - Media\ntags:\n  - audio\n  - video\n  - av\n  - sound\n  - input\n  - microphone\n  - podcast\n---\n"
  },
  {
    "path": "docs/content/icons/mic-mute-fill.md",
    "content": "---\ntitle: Mic mute fill\ncategories:\n  - Media\ntags:\n  - audio\n  - video\n  - av\n  - sound\n  - input\n  - microphone\n---\n"
  },
  {
    "path": "docs/content/icons/mic-mute.md",
    "content": "---\ntitle: Mic mute\ncategories:\n  - Media\ntags:\n  - audio\n  - video\n  - av\n  - sound\n  - input\n  - microphone\n---\n"
  },
  {
    "path": "docs/content/icons/mic.md",
    "content": "---\ntitle: Mic\ncategories:\n  - Media\ntags:\n  - audio\n  - video\n  - av\n  - sound\n  - input\n  - microphone\n  - podcast\n---\n"
  },
  {
    "path": "docs/content/icons/microsoft-teams.md",
    "content": "---\ntitle: Microsoft Teams\ncategories:\n  - Brand\ntags:\n  - social\n  - messaging\n---\n"
  },
  {
    "path": "docs/content/icons/microsoft.md",
    "content": "---\ntitle: Microsoft\ncategories:\n  - Brand\ntags:\n  - msft\n  - windows\n---\n"
  },
  {
    "path": "docs/content/icons/minecart-loaded.md",
    "content": "---\ntitle: Minecart loaded\ncategories:\n  - Real world\ntags:\n  - mining\n  - cart\n---\n"
  },
  {
    "path": "docs/content/icons/minecart.md",
    "content": "---\ntitle: Minecart\ncategories:\n  - Real world\ntags:\n  - mining\n  - cart\n---\n"
  },
  {
    "path": "docs/content/icons/modem-fill.md",
    "content": "---\ntitle: Modem fill\ncategories:\n  - Devices\ntags:\n  - internet\n  - cable\n---\n"
  },
  {
    "path": "docs/content/icons/modem.md",
    "content": "---\ntitle: Modem\ncategories:\n  - Devices\ntags:\n  - internet\n  - cable\n---\n"
  },
  {
    "path": "docs/content/icons/moisture.md",
    "content": "---\ntitle: Moisture\ncategories:\n  - Weather\ntags:\n  - water\n  - droplets\n  - humidity\n---\n"
  },
  {
    "path": "docs/content/icons/moon-fill.md",
    "content": "---\ntitle: Moon fill\ncategories:\n  - Weather\ntags:\n  - night\n  - sky\n---\n"
  },
  {
    "path": "docs/content/icons/moon-stars-fill.md",
    "content": "---\ntitle: Moon stars fill\ncategories:\n  - Weather\ntags:\n  - night\n  - sky\n---\n"
  },
  {
    "path": "docs/content/icons/moon-stars.md",
    "content": "---\ntitle: Moon stars\ncategories:\n  - Weather\ntags:\n  - night\n  - sky\n---\n"
  },
  {
    "path": "docs/content/icons/moon.md",
    "content": "---\ntitle: Moon\ncategories:\n  - Real world\ntags:\n  - lunar\n  - weather\n  - night\n---\n"
  },
  {
    "path": "docs/content/icons/mortarboard-fill.md",
    "content": "---\ntitle: Mortarboard fill\ncategories:\n  - Real world\ntags:\n  - graduation\n  - cap\naliases:\n  - /icons/mortorboard-fill/\n---\n"
  },
  {
    "path": "docs/content/icons/mortarboard.md",
    "content": "---\ntitle: Mortarboard\ncategories:\n  - Real world\ntags:\n  - graduation\n  - cap\naliases:\n  - /icons/mortorboard/\n---\n"
  },
  {
    "path": "docs/content/icons/motherboard-fill.md",
    "content": "---\ntitle: Motherboard fill\ncategories:\n  - Devices\ntags:\n  - mobo\n  - computer\n  - hardware\n---\n"
  },
  {
    "path": "docs/content/icons/motherboard.md",
    "content": "---\ntitle: Motherboard\ncategories:\n  - Devices\ntags:\n  - mobo\n  - computer\n  - hardware\n---\n"
  },
  {
    "path": "docs/content/icons/mouse-fill.md",
    "content": "---\ntitle: Mouse fill\ncategories:\n  - Devices\ntags:\n  - mice\n  - input\n---\n"
  },
  {
    "path": "docs/content/icons/mouse.md",
    "content": "---\ntitle: Mouse\ncategories:\n  - Devices\ntags:\n  - mice\n  - input\n---\n"
  },
  {
    "path": "docs/content/icons/mouse2-fill.md",
    "content": "---\ntitle: Mouse2 fill\ncategories:\n  - Devices\ntags:\n  - mice\n  - input\n---\n"
  },
  {
    "path": "docs/content/icons/mouse2.md",
    "content": "---\ntitle: Mouse2\ncategories:\n  - Devices\ntags:\n  - mice\n  - input\n---\n"
  },
  {
    "path": "docs/content/icons/mouse3-fill.md",
    "content": "---\ntitle: Mouse3 fill\ncategories:\n  - Devices\ntags:\n  - mice\n  - input\n---\n"
  },
  {
    "path": "docs/content/icons/mouse3.md",
    "content": "---\ntitle: Mouse3\ncategories:\n  - Devices\ntags:\n  - mice\n  - input\n---\n"
  },
  {
    "path": "docs/content/icons/music-note-beamed.md",
    "content": "---\ntitle: Music note beamed\ncategories:\n  - Media\ntags:\n  - music\n  - notes\n  - audio\n  - sound\n---\n"
  },
  {
    "path": "docs/content/icons/music-note-list.md",
    "content": "---\ntitle: Music note list\ncategories:\n  - Media\ntags:\n  - music\n  - notes\n  - audio\n  - sound\n  - playlist\n  - library\n---\n"
  },
  {
    "path": "docs/content/icons/music-note.md",
    "content": "---\ntitle: Music note\ncategories:\n  - Media\ntags:\n  - music\n  - notes\n  - audio\n  - sound\n---\n"
  },
  {
    "path": "docs/content/icons/music-player-fill.md",
    "content": "---\ntitle: Music player fill\ncategories:\n  - Devices\ntags:\n  - ipod\n  - mp3\n---\n"
  },
  {
    "path": "docs/content/icons/music-player.md",
    "content": "---\ntitle: Music player\ncategories:\n  - Devices\ntags:\n  - ipod\n  - mp3\n---\n"
  },
  {
    "path": "docs/content/icons/newspaper.md",
    "content": "---\ntitle: Newspaper\ncategories:\n  - Real world\ntags:\n  - news\n  - paper\n---\n"
  },
  {
    "path": "docs/content/icons/nintendo-switch.md",
    "content": "---\ntitle: Nintendo Switch\ncategories:\n  - Brand\ntags:\n  - gaming\n---\n"
  },
  {
    "path": "docs/content/icons/node-minus-fill.md",
    "content": "---\ntitle: Node minus fill\ncategories:\n  - Graphics\ntags:\n  - add\n  - new\n  - node\n  - diagram\n---\n"
  },
  {
    "path": "docs/content/icons/node-minus.md",
    "content": "---\ntitle: Node minus\ncategories:\n  - Graphics\ntags:\n  - add\n  - new\n  - node\n  - diagram\n---\n"
  },
  {
    "path": "docs/content/icons/node-plus-fill.md",
    "content": "---\ntitle: Node plus fill\ncategories:\n  - Graphics\ntags:\n  - add\n  - new\n  - node\n  - diagram\n---\n"
  },
  {
    "path": "docs/content/icons/node-plus.md",
    "content": "---\ntitle: Node plus\ncategories:\n  - Graphics\ntags:\n  - add\n  - new\n  - node\n  - diagram\n---\n"
  },
  {
    "path": "docs/content/icons/noise-reduction.md",
    "content": "---\ntitle: Noise reduction\ncategories:\n  - Graphics\ntags:\n  - photo\n  - editing\n  - image\n  - picture\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/nut-fill.md",
    "content": "---\ntitle: Nut fill\ncategories:\n  - Tools\ntags:\n  - nut\n  - bolt\n  - hexagon\n  - tools\n---\n"
  },
  {
    "path": "docs/content/icons/nut.md",
    "content": "---\ntitle: Nut\ncategories:\n  - Tools\ntags:\n  - nut\n  - bolt\n  - hexagon\n  - tools\n---\n"
  },
  {
    "path": "docs/content/icons/nvidia.md",
    "content": "---\ntitle: Nvidia\ncategories:\n  - Brand\ntags:\n  - gpu\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/nvme-fill.md",
    "content": "---\ntitle: Nvme fill\ncategories:\n  - Devices\ntags:\n  - ssd\n  - \"hard drive\"\n  - \"hard disk\"\n  - storage\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/nvme.md",
    "content": "---\ntitle: Nvme\ncategories:\n  - Devices\ntags:\n  - ssd\n  - \"hard drive\"\n  - \"hard disk\"\n  - storage\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/octagon-fill.md",
    "content": "---\ntitle: Octagon fill\ncategories:\n  - Shapes\ntags:\n  - shape\n  - polygon\n---\n"
  },
  {
    "path": "docs/content/icons/octagon-half.md",
    "content": "---\ntitle: Octagon half\ncategories:\n  - Shapes\ntags:\n  - shape\n  - polygon\n---\n"
  },
  {
    "path": "docs/content/icons/octagon.md",
    "content": "---\ntitle: Octagon\ncategories:\n  - Shapes\ntags:\n  - shape\n  - polygon\n---\n"
  },
  {
    "path": "docs/content/icons/openai.md",
    "content": "---\ntitle: OpenAI\ncategories:\n  - Brand\ntags:\n  - ai\n  - chatgpt\n  - agent\n  - \"artificial intelligence\"\n---\n"
  },
  {
    "path": "docs/content/icons/opencollective.md",
    "content": "---\ntitle: Opencollective\ncategories:\n  - Brand\ntags:\n  - social\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/optical-audio-fill.md",
    "content": "---\ntitle: Optical audio fill\ncategories:\n  - Devices\ntags:\n  - port\n  - plug\n  - sound\n---\n"
  },
  {
    "path": "docs/content/icons/optical-audio.md",
    "content": "---\ntitle: Optical audio\ncategories:\n  - Devices\ntags:\n  - port\n  - plug\n  - sound\n---\n"
  },
  {
    "path": "docs/content/icons/option.md",
    "content": "---\ntitle: Option\ncategories:\n  - UI and keyboard\ntags:\n  - key\n  - mac\n---\n"
  },
  {
    "path": "docs/content/icons/outlet.md",
    "content": "---\ntitle: Outlet\ncategories:\n  - Real world\ntags:\n  - plug\n  - power\n---\n"
  },
  {
    "path": "docs/content/icons/p-circle-fill.md",
    "content": "---\ntitle: P circle fill\ncategories:\n  - Shapes\ntags:\n  - parking\n---\n"
  },
  {
    "path": "docs/content/icons/p-circle.md",
    "content": "---\ntitle: P circle\ncategories:\n  - Shapes\ntags:\n  - parking\n---\n"
  },
  {
    "path": "docs/content/icons/p-square-fill.md",
    "content": "---\ntitle: P square fill\ncategories:\n  - Shapes\ntags:\n  - parking\n---\n"
  },
  {
    "path": "docs/content/icons/p-square.md",
    "content": "---\ntitle: P square\ncategories:\n  - Shapes\ntags:\n  - parking\n---\n"
  },
  {
    "path": "docs/content/icons/paint-bucket.md",
    "content": "---\ntitle: Paint bucket\ncategories:\n  - Graphics\ntags:\n  - color\n  - paint\n  - fill\n  - palette\n  - color\n---\n"
  },
  {
    "path": "docs/content/icons/palette-fill.md",
    "content": "---\ntitle: Palette fill\ncategories:\n  - Graphics\ntags:\n  - color\n  - paint\n  - fill\n  - palette\n  - colour\n---\n"
  },
  {
    "path": "docs/content/icons/palette.md",
    "content": "---\ntitle: Palette\ncategories:\n  - Graphics\ntags:\n  - color\n  - paint\n  - fill\n  - palette\n  - colour\n---\n"
  },
  {
    "path": "docs/content/icons/palette2.md",
    "content": "---\ntitle: Palette2\ncategories:\n  - Graphics\ntags:\n  - color\n  - paint\n  - fill\n  - palette\n  - colour\n---\n"
  },
  {
    "path": "docs/content/icons/paperclip.md",
    "content": "---\ntitle: Paperclip\ncategories:\n  - Real world\ntags:\n  - attachment\n---\n"
  },
  {
    "path": "docs/content/icons/paragraph.md",
    "content": "---\ntitle: Paragraph\ncategories:\n  - Typography\ntags:\n  - paragraph\n  - text\n  - body\n  - content\n---\n"
  },
  {
    "path": "docs/content/icons/pass-fill.md",
    "content": "---\ntitle: Pass fill\ncategories:\n- Real world\ntags:\n- pass\n---\n"
  },
  {
    "path": "docs/content/icons/pass.md",
    "content": "---\ntitle: Pass\ncategories:\n- Real world\ntags:\n- pass\n---\n"
  },
  {
    "path": "docs/content/icons/passport-fill.md",
    "content": "---\ntitle: Passport fill\ncategories:\n  - Travel\ntags:\n  - visa\n  - foreign\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/passport.md",
    "content": "---\ntitle: Passport\ncategories:\n  - Travel\ntags:\n  - visa\n  - foreign\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/patch-check-fill.md",
    "content": "---\ntitle: Patch check fill\ncategories:\n  - Badges\ntags:\n  - verified\n  - checkmark\n  - certified\naliases:\n  - /icons/patch-check-fll/\n---\n"
  },
  {
    "path": "docs/content/icons/patch-check.md",
    "content": "---\ntitle: Patch check\ncategories:\n  - Badges\ntags:\n  - verified\n  - checkmark\n  - certified\n---\n"
  },
  {
    "path": "docs/content/icons/patch-exclamation-fill.md",
    "content": "---\ntitle: Patch exclamation fill\ncategories:\n  - Badges\ntags:\n  - excited\n  - certified\naliases:\n  - /icons/patch-exclamation-fll/\n---\n"
  },
  {
    "path": "docs/content/icons/patch-exclamation.md",
    "content": "---\ntitle: Patch exclamation\ncategories:\n  - Badges\ntags:\n  - excited\n  - certified\n---\n"
  },
  {
    "path": "docs/content/icons/patch-minus-fill.md",
    "content": "---\ntitle: Patch minus fill\ncategories:\n  - Badges\ntags:\n  - subtract\naliases:\n  - /icons/patch-minus-fll/\n---\n"
  },
  {
    "path": "docs/content/icons/patch-minus.md",
    "content": "---\ntitle: Patch minus\ncategories:\n  - Badges\ntags:\n  - subtract\n---\n"
  },
  {
    "path": "docs/content/icons/patch-plus-fill.md",
    "content": "---\ntitle: Patch plus fill\ncategories:\n  - Badges\ntags:\n  - add\naliases:\n  - /icons/patch-plus-fll/\n---\n"
  },
  {
    "path": "docs/content/icons/patch-plus.md",
    "content": "---\ntitle: Patch plus\ncategories:\n  - Badges\ntags:\n  - add\n---\n"
  },
  {
    "path": "docs/content/icons/patch-question-fill.md",
    "content": "---\ntitle: Patch question fill\ncategories:\n  - Badges\ntags:\n  - help\n  - unknown\naliases:\n  - /icons/patch-question-fll/\n---\n"
  },
  {
    "path": "docs/content/icons/patch-question.md",
    "content": "---\ntitle: Patch question\ncategories:\n  - Badges\ntags:\n  - help\n  - unknown\n---\n"
  },
  {
    "path": "docs/content/icons/pause-btn-fill.md",
    "content": "---\ntitle: Pause btn fill\ncategories:\n  - Media\ntags:\n  - audio\n  - video\n  - av\n---\n"
  },
  {
    "path": "docs/content/icons/pause-btn.md",
    "content": "---\ntitle: Pause btn\ncategories:\n  - Media\ntags:\n  - audio\n  - video\n  - av\n---\n"
  },
  {
    "path": "docs/content/icons/pause-circle-fill.md",
    "content": "---\ntitle: Pause circle fill\ncategories:\n  - Media\ntags:\n  - audio\n  - video\n  - av\n---\n"
  },
  {
    "path": "docs/content/icons/pause-circle.md",
    "content": "---\ntitle: Pause circle\ncategories:\n  - Media\ntags:\n  - audio\n  - video\n  - av\n---\n"
  },
  {
    "path": "docs/content/icons/pause-fill.md",
    "content": "---\ntitle: Pause fill\ncategories:\n  - Media\ntags:\n  - audio\n  - video\n  - av\n---\n"
  },
  {
    "path": "docs/content/icons/pause.md",
    "content": "---\ntitle: Pause\ncategories:\n  - Media\ntags:\n  - audio\n  - video\n  - av\n---\n"
  },
  {
    "path": "docs/content/icons/paypal.md",
    "content": "---\ntitle: Paypal\ncategories:\n  - Brand\ntags:\n  - social\n---\n"
  },
  {
    "path": "docs/content/icons/pc-display-horizontal.md",
    "content": "---\ntitle: PC display horizontal\ncategories:\n  - Devices\ntags:\n  - computer\n  - workstation\n  - desktop\n---\n"
  },
  {
    "path": "docs/content/icons/pc-display.md",
    "content": "---\ntitle: PC display\ncategories:\n  - Devices\ntags:\n  - computer\n  - workstation\n  - desktop\n---\n"
  },
  {
    "path": "docs/content/icons/pc-horizontal.md",
    "content": "---\ntitle: PC horizontal\ncategories:\n  - Devices\ntags:\n  - computer\n  - workstation\n  - desktop\n---\n"
  },
  {
    "path": "docs/content/icons/pc.md",
    "content": "---\ntitle: PC\ncategories:\n  - Devices\ntags:\n  - computer\n  - workstation\n  - desktop\n---\n"
  },
  {
    "path": "docs/content/icons/pci-card-network.md",
    "content": "---\ntitle: PCI card network\ncategories:\n  - Devices\ntags:\n  - card\n  - expansion\n  - ethernet\n  - wifi\n  - internet\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/pci-card-sound.md",
    "content": "---\ntitle: PCI card sound\ncategories:\n  - Devices\ntags:\n  - card\n  - expansion\n  - audio\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/pci-card.md",
    "content": "---\ntitle: PCI card\ncategories:\n  - Devices\ntags:\n  - card\n  - expansion\n---\n"
  },
  {
    "path": "docs/content/icons/peace-fill.md",
    "content": "---\ntitle: Peace fill\ncategories:\n  - Miscellaneous\ntags:\n  - peace\n  - love\n---\n"
  },
  {
    "path": "docs/content/icons/peace.md",
    "content": "---\ntitle: Peace\ncategories:\n  - Miscellaneous\ntags:\n  - peace\n  - love\n---\n"
  },
  {
    "path": "docs/content/icons/pen-fill.md",
    "content": "---\ntitle: Pen fill\ncategories:\n  - Tools\ntags:\n  - edit\n  - write\n  - ballpoint\n---\n"
  },
  {
    "path": "docs/content/icons/pen.md",
    "content": "---\ntitle: Pen\ncategories:\n  - Tools\ntags:\n  - edit\n  - write\n  - ballpoint\n---\n"
  },
  {
    "path": "docs/content/icons/pencil-fill.md",
    "content": "---\ntitle: Pencil fill\ncategories:\n  - Tools\ntags:\n  - edit\n  - write\n---\n"
  },
  {
    "path": "docs/content/icons/pencil-square.md",
    "content": "---\ntitle: Pencil square\ncategories:\n  - Tools\ntags:\n  - edit\n  - write\n---\n"
  },
  {
    "path": "docs/content/icons/pencil.md",
    "content": "---\ntitle: Pencil\ncategories:\n  - Tools\ntags:\n  - edit\n  - write\n---\n"
  },
  {
    "path": "docs/content/icons/pentagon-fill.md",
    "content": "---\ntitle: Pentagon fill\ncategories:\n  - Shapes\ntags:\n  - shape\n  - polygon\n---\n"
  },
  {
    "path": "docs/content/icons/pentagon-half.md",
    "content": "---\ntitle: Pentagon half\ncategories:\n  - Shapes\ntags:\n  - shape\n  - polygon\n---\n"
  },
  {
    "path": "docs/content/icons/pentagon.md",
    "content": "---\ntitle: Pentagon\ncategories:\n  - Shapes\ntags:\n  - shape\n  - polygon\n---\n"
  },
  {
    "path": "docs/content/icons/people-fill.md",
    "content": "---\ntitle: People fill\ncategories:\n  - People\ntags:\n  - member\n  - humans\n  - organization\n  - avatar\n  - users\n  - profile\n---\n"
  },
  {
    "path": "docs/content/icons/people.md",
    "content": "---\ntitle: People\ncategories:\n  - People\ntags:\n  - member\n  - humans\n  - organization\n  - avatar\n  - users\n  - profile\n---\n"
  },
  {
    "path": "docs/content/icons/percent.md",
    "content": "---\ntitle: Percent\ncategories:\n  - Typography\ntags:\n  - percentage\n  - math\n  - fraction\n---\n"
  },
  {
    "path": "docs/content/icons/perplexity.md",
    "content": "---\ntitle: Perplexity\ncategories:\n  - Brand\ntags:\n  - ai\n  - agent\n  - \"artificial intelligence\"\n---\n"
  },
  {
    "path": "docs/content/icons/person-add.md",
    "content": "---\ntitle: Person add\ncategories:\n  - People\ntags:\n  - member\n  - human\n  - individual\n  - avatar\n  - user\n  - account\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/person-arms-up.md",
    "content": "---\ntitle: Person arms up\ncategories:\n  - People\ntags:\n  - human\n  - man\n  - woman\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/person-badge-fill.md",
    "content": "---\ntitle: Person badge fill\ncategories:\n  - People\ntags:\n  - member\n  - human\n  - individual\n  - avatar\n  - user\n  - badge\n  - id\n  - card\n  - account\n---\n"
  },
  {
    "path": "docs/content/icons/person-badge.md",
    "content": "---\ntitle: Person badge\ncategories:\n  - People\ntags:\n  - member\n  - human\n  - individual\n  - avatar\n  - user\n  - badge\n  - id\n  - card\n  - account\n  - profile\n---\n"
  },
  {
    "path": "docs/content/icons/person-bounding-box.md",
    "content": "---\ntitle: Person bounding box\ncategories:\n  - People\ntags:\n  - member\n  - human\n  - individual\n  - avatar\n  - user\n  - crop\n  - account\n  - profile\n---\n"
  },
  {
    "path": "docs/content/icons/person-check-fill.md",
    "content": "---\ntitle: Person check fill\ncategories:\n  - People\ntags:\n  - member\n  - human\n  - individual\n  - avatar\n  - user\n  - verified\n  - account\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/person-check.md",
    "content": "---\ntitle: Person check\ncategories:\n  - People\ntags:\n  - member\n  - human\n  - individual\n  - avatar\n  - user\n  - verified\n  - account\n  - profile\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/person-circle.md",
    "content": "---\ntitle: People circle\ncategories:\n  - People\ntags:\n  - member\n  - humans\n  - organization\n  - avatar\n  - user\n  - account\n  - profile\n---\n"
  },
  {
    "path": "docs/content/icons/person-dash-fill.md",
    "content": "---\ntitle: Person dash fill\ncategories:\n  - People\ntags:\n  - member\n  - human\n  - individual\n  - avatar\n  - user\n  - remove\n  - delete\n  - account\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/person-dash.md",
    "content": "---\ntitle: Person dash\ncategories:\n  - People\ntags:\n  - member\n  - human\n  - individual\n  - avatar\n  - user\n  - remove\n  - delete\n  - account\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/person-down.md",
    "content": "---\ntitle: Person down\ncategories:\n  - People\ntags:\n  - member\n  - human\n  - individual\n  - avatar\n  - user\n  - account\n---\n"
  },
  {
    "path": "docs/content/icons/person-exclamation.md",
    "content": "---\ntitle: Person exclamation\ncategories:\n  - People\ntags:\n  - member\n  - human\n  - individual\n  - avatar\n  - user\n  - account\n---\n"
  },
  {
    "path": "docs/content/icons/person-fill-add.md",
    "content": "---\ntitle: Person fill add\ncategories:\n  - People\ntags:\n  - member\n  - human\n  - individual\n  - avatar\n  - user\n  - account\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/person-fill-check.md",
    "content": "---\ntitle: Person fill check\ncategories:\n  - People\ntags:\n  - member\n  - human\n  - individual\n  - avatar\n  - user\n  - account\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/person-fill-dash.md",
    "content": "---\ntitle: Person fill dash\ncategories:\n  - People\ntags:\n  - member\n  - human\n  - individual\n  - avatar\n  - user\n  - account\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/person-fill-down.md",
    "content": "---\ntitle: Person fill down\ncategories:\n  - People\ntags:\n  - member\n  - human\n  - individual\n  - avatar\n  - user\n  - account\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/person-fill-exclamation.md",
    "content": "---\ntitle: Person fill exclamation\ncategories:\n  - People\ntags:\n  - member\n  - human\n  - individual\n  - avatar\n  - user\n  - account\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/person-fill-gear.md",
    "content": "---\ntitle: Person fill gear\ncategories:\n  - People\ntags:\n  - member\n  - human\n  - individual\n  - avatar\n  - user\n  - account\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/person-fill-lock.md",
    "content": "---\ntitle: Person fill lock\ncategories:\n  - People\ntags:\n  - member\n  - human\n  - individual\n  - avatar\n  - user\n  - account\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/person-fill-slash.md",
    "content": "---\ntitle: Person fill slash\ncategories:\n  - People\ntags:\n  - member\n  - human\n  - individual\n  - avatar\n  - user\n  - account\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/person-fill-up.md",
    "content": "---\ntitle: Person fill up\ncategories:\n  - People\ntags:\n  - member\n  - human\n  - individual\n  - avatar\n  - user\n  - account\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/person-fill-x.md",
    "content": "---\ntitle: Person fill x\ncategories:\n  - People\ntags:\n  - member\n  - human\n  - individual\n  - avatar\n  - user\n  - account\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/person-fill.md",
    "content": "---\ntitle: Person fill\ncategories:\n  - People\ntags:\n  - member\n  - human\n  - individual\n  - avatar\n  - user\n  - account\n  - profile\n---\n"
  },
  {
    "path": "docs/content/icons/person-gear.md",
    "content": "---\ntitle: Person gear\ncategories:\n  - People\ntags:\n  - member\n  - human\n  - individual\n  - avatar\n  - user\n  - account\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/person-heart.md",
    "content": "---\ntitle: Person heart\ncategories:\n  - People\ntags:\n  - member\n  - human\n  - individual\n  - avatar\n  - user\n  - account\n  - love\n  - valentine\n  - romance\n---\n"
  },
  {
    "path": "docs/content/icons/person-hearts.md",
    "content": "---\ntitle: Person hearts\ncategories:\n  - People\ntags:\n  - member\n  - human\n  - individual\n  - avatar\n  - user\n  - account\n  - love\n  - valentine\n  - romance\n---\n"
  },
  {
    "path": "docs/content/icons/person-lines-fill.md",
    "content": "---\ntitle: Person lines fill\ncategories:\n  - People\ntags:\n  - member\n  - human\n  - individual\n  - avatar\n  - user\n  - contact\n  - list\n  - account\n  - profile\n---\n"
  },
  {
    "path": "docs/content/icons/person-lock.md",
    "content": "---\ntitle: Person lock\ncategories:\n  - People\ntags:\n  - member\n  - human\n  - individual\n  - avatar\n  - user\n  - account\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/person-plus-fill.md",
    "content": "---\ntitle: Person plus fill\ncategories:\n  - People\ntags:\n  - member\n  - human\n  - individual\n  - avatar\n  - user\n  - new\n  - add\n  - account\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/person-plus.md",
    "content": "---\ntitle: Person plus\ncategories:\n  - People\ntags:\n  - member\n  - human\n  - individual\n  - avatar\n  - user\n  - new\n  - add\n  - account\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/person-raised-hand.md",
    "content": "---\ntitle: Person raised hand\ncategories:\n  - People\ntags:\n  - human\n  - man\n  - woman\n  - question\n  - help\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/person-rolodex.md",
    "content": "---\ntitle: Person rolodex\ncategories:\n  - People\ntags:\n  - member\n  - human\n  - individual\n  - avatar\n  - user\n  - account\n  - contact\n---\n"
  },
  {
    "path": "docs/content/icons/person-slash.md",
    "content": "---\ntitle: Person slash\ncategories:\n  - People\ntags:\n  - member\n  - human\n  - individual\n  - avatar\n  - user\n  - account\n---\n"
  },
  {
    "path": "docs/content/icons/person-square.md",
    "content": "---\ntitle: Person square\ncategories:\n  - People\ntags:\n  - member\n  - human\n  - individual\n  - avatar\n  - user\n  - account\n  - profile\n---\n"
  },
  {
    "path": "docs/content/icons/person-standing-dress.md",
    "content": "---\ntitle: Person standing dress\ncategories:\n  - People\ntags:\n  - human\n  - man\n  - woman\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/person-standing.md",
    "content": "---\ntitle: Person standing\ncategories:\n  - People\ntags:\n  - human\n  - man\n  - woman\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/person-up.md",
    "content": "---\ntitle: Person up\ncategories:\n  - People\ntags:\n  - member\n  - human\n  - individual\n  - avatar\n  - user\n  - account\n---\n"
  },
  {
    "path": "docs/content/icons/person-vcard-fill.md",
    "content": "---\ntitle: Person vcard fill\ncategories:\n  - People\ntags:\n  - human\n  - individual\n  - avatar\n  - user\n  - account\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/person-vcard.md",
    "content": "---\ntitle: Person vcard\ncategories:\n  - People\ntags:\n  - human\n  - individual\n  - avatar\n  - user\n  - account\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/person-video.md",
    "content": "---\ntitle: Person video\ncategories:\n  - People\ntags:\n  - human\n  - individual\n  - avatar\n  - user\n  - wfh\n---\n"
  },
  {
    "path": "docs/content/icons/person-video2.md",
    "content": "---\ntitle: Person video2\ncategories:\n  - People\ntags:\n  - human\n  - individual\n  - avatar\n  - user\n  - wfh\n---\n"
  },
  {
    "path": "docs/content/icons/person-video3.md",
    "content": "---\ntitle: Person video3\ncategories:\n  - People\ntags:\n  - human\n  - individual\n  - avatar\n  - user\n  - wfh\n---\n"
  },
  {
    "path": "docs/content/icons/person-walking.md",
    "content": "---\ntitle: Person walking\ncategories:\n  - People\ntags:\n  - human\n  - man\n  - woman\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/person-wheelchair.md",
    "content": "---\ntitle: Person wheelchair\ncategories:\n  - People\ntags:\n  - human\n  - man\n  - woman\n  - accessibility\n  - a11y\n  - handicap\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/person-workspace.md",
    "content": "---\ntitle: Person workspace\ncategories:\n  - People\ntags:\n  - human\n  - individual\n  - avatar\n  - user\n  - wfh\n---\n"
  },
  {
    "path": "docs/content/icons/person-x-fill.md",
    "content": "---\ntitle: Person x fill\ncategories:\n  - People\ntags:\n  - member\n  - human\n  - individual\n  - avatar\n  - user\n  - remove\n  - delete\n  - account\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/person-x.md",
    "content": "---\ntitle: Person x\ncategories:\n  - People\ntags:\n  - member\n  - human\n  - individual\n  - avatar\n  - user\n  - remove\n  - delete\n  - account\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/person.md",
    "content": "---\ntitle: Person\ncategories:\n  - People\ntags:\n  - member\n  - human\n  - individual\n  - avatar\n  - user\n  - account\n  - profile\n---\n"
  },
  {
    "path": "docs/content/icons/phone-fill.md",
    "content": "---\ntitle: Phone fill\ncategories:\n  - Devices\ntags:\n  - mobile\n  - telephone\n---\n"
  },
  {
    "path": "docs/content/icons/phone-flip.md",
    "content": "---\ntitle: Phone flip\ncategories:\n  - Devices\ntags:\n  - mobile\n  - telephone\n---\n"
  },
  {
    "path": "docs/content/icons/phone-landscape-fill.md",
    "content": "---\ntitle: Phone landscape fill\ncategories:\n  - Devices\ntags:\n  - mobile\n  - telephone\n---\n"
  },
  {
    "path": "docs/content/icons/phone-landscape.md",
    "content": "---\ntitle: Phone landscape\ncategories:\n  - Devices\ntags:\n  - mobile\n  - telephone\n---\n"
  },
  {
    "path": "docs/content/icons/phone-vibrate-fill.md",
    "content": "---\ntitle: Phone vibrate fill\ncategories:\n  - Devices\ntags:\n  - mobile\n  - telephone\n  - haptic\n---\n"
  },
  {
    "path": "docs/content/icons/phone-vibrate.md",
    "content": "---\ntitle: Phone vibrate\ncategories:\n  - Devices\ntags:\n  - mobile\n  - telephone\n  - haptic\n---\n"
  },
  {
    "path": "docs/content/icons/phone.md",
    "content": "---\ntitle: Phone\ncategories:\n  - Devices\ntags:\n  - mobile\n  - telephone\n---\n"
  },
  {
    "path": "docs/content/icons/pie-chart-fill.md",
    "content": "---\ntitle: Pie chart fill\ncategories:\n  - Data\ntags:\n  - chart\n  - graph\n  - analytics\n---\n"
  },
  {
    "path": "docs/content/icons/pie-chart.md",
    "content": "---\ntitle: Pie chart\ncategories:\n  - Data\ntags:\n  - chart\n  - graph\n  - analytics\n---\n"
  },
  {
    "path": "docs/content/icons/piggy-bank-fill.md",
    "content": "---\ntitle: Piggy bank fill\ncategories:\n  - Commerce\ntags:\n  - money\n  - finance\n  - banking\n  - savings\n---\n"
  },
  {
    "path": "docs/content/icons/piggy-bank.md",
    "content": "---\ntitle: Piggy bank\ncategories:\n  - Commerce\ntags:\n  - money\n  - finance\n  - banking\n  - savings\n---\n"
  },
  {
    "path": "docs/content/icons/pin-angle-fill.md",
    "content": "---\ntitle: Pin angle fill\ncategories:\n  - Real world\ntags:\n  - pushpin\n  - thumbtack\n---\n"
  },
  {
    "path": "docs/content/icons/pin-angle.md",
    "content": "---\ntitle: Pin angle\ncategories:\n  - Real world\ntags:\n  - pushpin\n  - thumbtack\n---\n"
  },
  {
    "path": "docs/content/icons/pin-fill.md",
    "content": "---\ntitle: Pin fill\ncategories:\n  - Real world\ntags:\n  - pushpin\n  - thumbtack\n---\n"
  },
  {
    "path": "docs/content/icons/pin-map-fill.md",
    "content": "---\ntitle: Pin map fill\ncategories:\n  - Geo\ntags:\n  - geography\n  - map\n  - pin\n  - location\n---\n"
  },
  {
    "path": "docs/content/icons/pin-map.md",
    "content": "---\ntitle: Pin map\ncategories:\n  - Geo\ntags:\n  - geography\n  - map\n  - pin\n  - location\n---\n"
  },
  {
    "path": "docs/content/icons/pin.md",
    "content": "---\ntitle: Pin\ncategories:\n  - Real world\ntags:\n  - pushpin\n  - thumbtack\n---\n"
  },
  {
    "path": "docs/content/icons/pinterest.md",
    "content": "---\ntitle: Pinterest\ncategories:\n  - Brand\ntags:\n  - social\n---\n"
  },
  {
    "path": "docs/content/icons/pip-fill.md",
    "content": "---\ntitle: Pip fill\ncategories:\n  - Media\ntags:\n  - picture\n  - tv\n  - television\n  - display\n  - nested\n---\n"
  },
  {
    "path": "docs/content/icons/pip.md",
    "content": "---\ntitle: Pip\ncategories:\n  - Media\ntags:\n  - picture\n  - tv\n  - television\n  - display\n  - nested\n---\n"
  },
  {
    "path": "docs/content/icons/play-btn-fill.md",
    "content": "---\ntitle: Play btn fill\ncategories:\n  - Media\ntags:\n  - audio\n  - video\n  - av\n---\n"
  },
  {
    "path": "docs/content/icons/play-btn.md",
    "content": "---\ntitle: Play btn\ncategories:\n  - Media\ntags:\n  - audio\n  - video\n  - av\n---\n"
  },
  {
    "path": "docs/content/icons/play-circle-fill.md",
    "content": "---\ntitle: Play circle fill\ncategories:\n  - Media\ntags:\n  - audio\n  - video\n  - av\n---\n"
  },
  {
    "path": "docs/content/icons/play-circle.md",
    "content": "---\ntitle: Play circle\ncategories:\n  - Media\ntags:\n  - audio\n  - video\n  - av\n---\n"
  },
  {
    "path": "docs/content/icons/play-fill.md",
    "content": "---\ntitle: Play fill\ncategories:\n  - Media\ntags:\n  - audio\n  - video\n  - av\n---\n"
  },
  {
    "path": "docs/content/icons/play.md",
    "content": "---\ntitle: Play\ncategories:\n  - Media\ntags:\n  - audio\n  - video\n  - av\n---\n"
  },
  {
    "path": "docs/content/icons/playstation.md",
    "content": "---\ntitle: Playstation\ncategories:\n  - Brand\ntags:\n  - sony\n  - gaming\n---\n"
  },
  {
    "path": "docs/content/icons/plug-fill.md",
    "content": "---\ntitle: Plug fill\ncategories:\n  - Real world\ntags:\n  - power\n  - outlet\n---\n"
  },
  {
    "path": "docs/content/icons/plug.md",
    "content": "---\ntitle: Plug\ncategories:\n  - Real world\ntags:\n  - power\n  - outlet\n---\n"
  },
  {
    "path": "docs/content/icons/plugin.md",
    "content": "---\ntitle: Plugin\ncategories:\n  - UI and Keyboard\ntags:\n  - addon\n  - software\n---\n"
  },
  {
    "path": "docs/content/icons/plus-circle-dotted.md",
    "content": "---\ntitle: Plus circle dotted\ncategories:\n  - Alerts, warnings, and signs\ntags:\n  - add\n  - new\n---\n"
  },
  {
    "path": "docs/content/icons/plus-circle-fill.md",
    "content": "---\ntitle: Plus circle fill\ncategories:\n  - Alerts, warnings, and signs\ntags:\n  - add\n  - new\n---\n"
  },
  {
    "path": "docs/content/icons/plus-circle.md",
    "content": "---\ntitle: Plus circle\ncategories:\n  - Alerts, warnings, and signs\ntags:\n  - add\n  - new\n---\n"
  },
  {
    "path": "docs/content/icons/plus-lg.md",
    "content": "---\ntitle: Plus lg\ncategories:\n  - Alerts, warnings, and signs\ntags:\n  - add\n  - new\n  - math\n---\n"
  },
  {
    "path": "docs/content/icons/plus-slash-minus.md",
    "content": "---\ntitle: Plus slash minus\ncategories:\n  - Typography\ntags:\n  - difference\n  - add\n  - subtract\n  - math\n---\n"
  },
  {
    "path": "docs/content/icons/plus-square-dotted.md",
    "content": "---\ntitle: Plus square dotted\ncategories:\n  - Alerts, warnings, and signs\ntags:\n  - add\n  - new\n---\n"
  },
  {
    "path": "docs/content/icons/plus-square-fill.md",
    "content": "---\ntitle: Plus square fill\ncategories:\n  - Alerts, warnings, and signs\ntags:\n  - add\n  - new\n---\n"
  },
  {
    "path": "docs/content/icons/plus-square.md",
    "content": "---\ntitle: Plus square\ncategories:\n  - Alerts, warnings, and signs\ntags:\n  - add\n  - new\n---\n"
  },
  {
    "path": "docs/content/icons/plus.md",
    "content": "---\ntitle: Plus\ncategories:\n  - Alerts, warnings, and signs\ntags:\n  - add\n  - new\n  - math\n---\n"
  },
  {
    "path": "docs/content/icons/postage-fill.md",
    "content": "---\ntitle: Postage fill\ncategories:\n  - Real world\ntags:\n  - mail\n  - stamp\n  - shipping\n---\n"
  },
  {
    "path": "docs/content/icons/postage-heart-fill.md",
    "content": "---\ntitle: Postage heart fill\ncategories:\n  - Real world\n  - Love\ntags:\n  - mail\n  - stamp\n  - love\n  - valentine\n  - romance\n---\n"
  },
  {
    "path": "docs/content/icons/postage-heart.md",
    "content": "---\ntitle: Postage heart\ncategories:\n  - Real world\n  - Love\ntags:\n  - mail\n  - stamp\n  - love\n  - valentine\n  - romance\n---\n"
  },
  {
    "path": "docs/content/icons/postage.md",
    "content": "---\ntitle: Postage\ncategories:\n  - Real world\ntags:\n  - stamp\n  - shipping\n---\n"
  },
  {
    "path": "docs/content/icons/postcard-fill.md",
    "content": "---\ntitle: Postcard fill\ncategories:\n  - Real world\ntags:\n  - mail\n  - letter\n---\n"
  },
  {
    "path": "docs/content/icons/postcard-heart-fill.md",
    "content": "---\ntitle: Postcard heart fill\ncategories:\n  - Real world\n  - Love\ntags:\n  - mail\n  - letter\n  - love\n  - valentine\n  - romance\n---\n"
  },
  {
    "path": "docs/content/icons/postcard-heart.md",
    "content": "---\ntitle: Postcard heart\ncategories:\n  - Real world\n  - Love\ntags:\n  - mail\n  - letter\n  - love\n  - valentine\n  - romance\n---\n"
  },
  {
    "path": "docs/content/icons/postcard.md",
    "content": "---\ntitle: Postcard\ncategories:\n  - Real world\ntags:\n  - mail\n  - letter\n---\n"
  },
  {
    "path": "docs/content/icons/power.md",
    "content": "---\ntitle: Power\ncategories:\n  - UI and keyboard\ntags:\n  - off\n  - on\n---\n"
  },
  {
    "path": "docs/content/icons/prescription.md",
    "content": "---\ntitle: Prescription\ncategories:\n  - Medical\ntags:\n  - rx\n  - pills\n  - capsules\n  - medicine\n---\n"
  },
  {
    "path": "docs/content/icons/prescription2.md",
    "content": "---\ntitle: Prescription2\ncategories:\n  - Medical\ntags:\n  - rx\n  - pills\n  - capsules\n  - medicine\n---\n"
  },
  {
    "path": "docs/content/icons/printer-fill.md",
    "content": "---\ntitle: Printer fill\ncategories:\n  - Devices\ntags:\n  - print\n---\n"
  },
  {
    "path": "docs/content/icons/printer.md",
    "content": "---\ntitle: Printer\ncategories:\n  - Devices\ntags:\n  - print\n---\n"
  },
  {
    "path": "docs/content/icons/projector-fill.md",
    "content": "---\ntitle: Projector fill\ncategories:\n  - Devices\ntags:\n  - projection\n  - present\n  - screen\n---\n"
  },
  {
    "path": "docs/content/icons/projector.md",
    "content": "---\ntitle: Projector\ncategories:\n  - Devices\ntags:\n  - projection\n  - present\n  - screen\n---\n"
  },
  {
    "path": "docs/content/icons/puzzle-fill.md",
    "content": "---\ntitle: Puzzle fill\ncategories:\n  - Miscellaneous\ntags:\n  - puzzle\n  - piece\n---\n"
  },
  {
    "path": "docs/content/icons/puzzle.md",
    "content": "---\ntitle: Puzzle\ncategories:\n  - Miscellaneous\ntags:\n  - puzzle\n  - piece\n---\n"
  },
  {
    "path": "docs/content/icons/qr-code-scan.md",
    "content": "---\ntitle: QR code scan\ncategories:\n  - Communications\ntags:\n  - scan\n---\n"
  },
  {
    "path": "docs/content/icons/qr-code.md",
    "content": "---\ntitle: QR code\ncategories:\n  - Communications\ntags:\n  - scan\n---\n"
  },
  {
    "path": "docs/content/icons/question-circle-fill.md",
    "content": "---\ntitle: Question fill\ncategories:\n  - Alerts, warnings, and signs\ntags:\n  - help\n  - unknown\n---\n"
  },
  {
    "path": "docs/content/icons/question-circle.md",
    "content": "---\ntitle: Question circle\ncategories:\n  - Alerts, warnings, and signs\ntags:\n  - help\n  - unknown\n---\n"
  },
  {
    "path": "docs/content/icons/question-diamond-fill.md",
    "content": "---\ntitle: Question diamond fill\ncategories:\n  - Alerts, warnings, and signs\ntags:\n  - help\n  - unknown\n---\n"
  },
  {
    "path": "docs/content/icons/question-diamond.md",
    "content": "---\ntitle: Question diamond\ncategories:\n  - Alerts, warnings, and signs\ntags:\n  - help\n  - unknown\n---\n"
  },
  {
    "path": "docs/content/icons/question-lg.md",
    "content": "---\ntitle: Question lg\ncategories:\n  - Alerts, warnings, and signs\ntags:\n  - help\n  - unknown\n---\n"
  },
  {
    "path": "docs/content/icons/question-octagon-fill.md",
    "content": "---\ntitle: Question octagon fill\ncategories:\n  - Alerts, warnings, and signs\ntags:\n  - help\n  - unknown\n---\n"
  },
  {
    "path": "docs/content/icons/question-octagon.md",
    "content": "---\ntitle: Question octagon\ncategories:\n  - Alerts, warnings, and signs\ntags:\n  - help\n  - unknown\n---\n"
  },
  {
    "path": "docs/content/icons/question-square-fill.md",
    "content": "---\ntitle: Question square fill\ncategories:\n  - Alerts, warnings, and signs\ntags:\n  - help\n  - unknown\n---\n"
  },
  {
    "path": "docs/content/icons/question-square.md",
    "content": "---\ntitle: Question square\ncategories:\n  - Alerts, warnings, and signs\ntags:\n  - help\n  - unknown\n---\n"
  },
  {
    "path": "docs/content/icons/question.md",
    "content": "---\ntitle: Question\ncategories:\n  - Alerts, warnings, and signs\ntags:\n  - help\n  - unknown\n---\n"
  },
  {
    "path": "docs/content/icons/quora.md",
    "content": "---\ntitle: Quora\ncategories:\n  - Brand\ntags:\n  - social\n---\n"
  },
  {
    "path": "docs/content/icons/quote.md",
    "content": "---\ntitle: Quote\ncategories:\n  - Typography\ntags:\n  - blockquote\n  - quotes\n  - quotation\n---\n"
  },
  {
    "path": "docs/content/icons/r-circle-fill.md",
    "content": "---\ntitle: R circle fill\ncategories:\n  - Shapes\ntags:\n  - registered\n  - trademark\n---\n"
  },
  {
    "path": "docs/content/icons/r-circle.md",
    "content": "---\ntitle: R circle\ncategories:\n  - Shapes\ntags:\n  - registered\n  - trademark\n---\n"
  },
  {
    "path": "docs/content/icons/r-square-fill.md",
    "content": "---\ntitle: R square fill\ncategories:\n  - Shapes\ntags:\n  - registered\n  - trademark\n---\n"
  },
  {
    "path": "docs/content/icons/r-square.md",
    "content": "---\ntitle: R square\ncategories:\n  - Shapes\ntags:\n  - registered\n  - trademark\n---\n"
  },
  {
    "path": "docs/content/icons/radar.md",
    "content": "---\ntitle: Radar\ncategories:\n  - Geo\ntags:\n  - geography\n  - map\n  - pin\n  - location\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/radioactive.md",
    "content": "---\ntitle: Radioactive\ncategories:\n  - Real world\ntags:\n  - radiation\n  - nuclear\n  - danger\n---\n"
  },
  {
    "path": "docs/content/icons/rainbow.md",
    "content": "---\ntitle: Rainbow\ncategories:\n  - Weather\ntags:\n  - colors\n  - arches\n  - colour\n---\n"
  },
  {
    "path": "docs/content/icons/receipt-cutoff.md",
    "content": "---\ntitle: Receipt cutoff\ncategories:\n  - Commerce\ntags:\n  - receipt\n  - invoice\n  - sale\n  - purchase\n  - bill\n---\n"
  },
  {
    "path": "docs/content/icons/receipt.md",
    "content": "---\ntitle: Receipt\ncategories:\n  - Commerce\ntags:\n  - receipt\n  - invoice\n  - sale\n  - purchase\n  - bill\n---\n"
  },
  {
    "path": "docs/content/icons/reception-0.md",
    "content": "---\ntitle: Reception 0\ncategories:\n  - Communications\ntags:\n  - reception\n  - cellphone\n  - mobile\n  - carrier\n  - network\n  - signal\n---\n"
  },
  {
    "path": "docs/content/icons/reception-1.md",
    "content": "---\ntitle: Reception 1\ncategories:\n  - Communications\ntags:\n  - reception\n  - cellphone\n  - mobile\n  - carrier\n  - network\n  - signal\n---\n"
  },
  {
    "path": "docs/content/icons/reception-2.md",
    "content": "---\ntitle: Reception 2\ncategories:\n  - Communications\ntags:\n  - reception\n  - cellphone\n  - mobile\n  - carrier\n  - network\n  - signal\n---\n"
  },
  {
    "path": "docs/content/icons/reception-3.md",
    "content": "---\ntitle: Reception 3\ncategories:\n  - Communications\ntags:\n  - reception\n  - cellphone\n  - mobile\n  - carrier\n  - network\n  - signal\n---\n"
  },
  {
    "path": "docs/content/icons/reception-4.md",
    "content": "---\ntitle: Reception 4\ncategories:\n  - Communications\ntags:\n  - reception\n  - cellphone\n  - mobile\n  - carrier\n  - network\n  - signal\n---\n"
  },
  {
    "path": "docs/content/icons/record-btn-fill.md",
    "content": "---\ntitle: Record btn fill\ncategories:\n  - Media\ntags:\n  - audio\n  - video\n  - av\n---\n"
  },
  {
    "path": "docs/content/icons/record-btn.md",
    "content": "---\ntitle: Record btn\ncategories:\n  - Media\ntags:\n  - audio\n  - video\n  - av\n---\n"
  },
  {
    "path": "docs/content/icons/record-circle-fill.md",
    "content": "---\ntitle: Record circle fill\ncategories:\n  - Media\ntags:\n  - audio\n  - video\n  - av\n---\n"
  },
  {
    "path": "docs/content/icons/record-circle.md",
    "content": "---\ntitle: Record circle\ncategories:\n  - Media\ntags:\n  - audio\n  - video\n  - av\n---\n"
  },
  {
    "path": "docs/content/icons/record-fill.md",
    "content": "---\ntitle: Record fill\ncategories:\n  - Media\ntags:\n  - audio\n  - video\n  - av\n---\n"
  },
  {
    "path": "docs/content/icons/record.md",
    "content": "---\ntitle: Record\ncategories:\n  - Media\ntags:\n  - audio\n  - video\n  - av\n---\n"
  },
  {
    "path": "docs/content/icons/record2-fill.md",
    "content": "---\ntitle: Record2 fill\ncategories:\n  - Media\ntags:\n  - audio\n  - video\n  - av\n---\n"
  },
  {
    "path": "docs/content/icons/record2.md",
    "content": "---\ntitle: Record2\ncategories:\n  - Media\ntags:\n  - audio\n  - video\n  - av\n---\n"
  },
  {
    "path": "docs/content/icons/recycle.md",
    "content": "---\ntitle: Recycle\ncategories:\n  - Arrows\ntags:\n  - recyling\n  - trash\n---\n"
  },
  {
    "path": "docs/content/icons/reddit.md",
    "content": "---\ntitle: Reddit\ncategories:\n  - Brand\ntags:\n  - social\n---\n"
  },
  {
    "path": "docs/content/icons/regex.md",
    "content": "---\ntitle: Regex\ncategories:\n  - Typography\ntags:\n  - text\n  - type\n  - code\n  - developer\n  - development\n  - software\n  - \"regular expression\"\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/repeat-1.md",
    "content": "---\ntitle: Repeat 1\ncategories:\n  - Media\ntags:\n  - audio\n  - video\n  - av\n---\n"
  },
  {
    "path": "docs/content/icons/repeat.md",
    "content": "---\ntitle: Repeat\ncategories:\n  - Media\ntags:\n  - audio\n  - video\n  - av\n---\n"
  },
  {
    "path": "docs/content/icons/reply-all-fill.md",
    "content": "---\ntitle: Reply all fill\ncategories:\n  - Communications\ntags:\n  - mail\n  - email\n---\n"
  },
  {
    "path": "docs/content/icons/reply-all.md",
    "content": "---\ntitle: Reply all\ncategories:\n  - Communications\ntags:\n  - mail\n  - email\n---\n"
  },
  {
    "path": "docs/content/icons/reply-fill.md",
    "content": "---\ntitle: Reply fill\ncategories:\n  - Communications\ntags:\n  - mail\n  - email\n---\n"
  },
  {
    "path": "docs/content/icons/reply.md",
    "content": "---\ntitle: Reply\ncategories:\n  - Communications\ntags:\n  - mail\n  - email\n---\n"
  },
  {
    "path": "docs/content/icons/rewind-btn-fill.md",
    "content": "---\ntitle: Rewind btn fill\ncategories:\n  - Media\ntags:\n  - audio\n  - video\n  - av\n---\n"
  },
  {
    "path": "docs/content/icons/rewind-btn.md",
    "content": "---\ntitle: Rewind btn\ncategories:\n  - Media\ntags:\n  - audio\n  - video\n  - av\n---\n"
  },
  {
    "path": "docs/content/icons/rewind-circle-fill.md",
    "content": "---\ntitle: Rewind circle fill\ncategories:\n  - Media\ntags:\n  - audio\n  - video\n  - av\n---\n"
  },
  {
    "path": "docs/content/icons/rewind-circle.md",
    "content": "---\ntitle: Rewind circle\ncategories:\n  - Media\ntags:\n  - audio\n  - video\n  - av\n---\n"
  },
  {
    "path": "docs/content/icons/rewind-fill.md",
    "content": "---\ntitle: Rewind fill\ncategories:\n  - Media\ntags:\n  - audio\n  - video\n  - av\n---\n"
  },
  {
    "path": "docs/content/icons/rewind.md",
    "content": "---\ntitle: Rewind\ncategories:\n  - Media\ntags:\n  - audio\n  - video\n  - av\n---\n"
  },
  {
    "path": "docs/content/icons/robot.md",
    "content": "---\ntitle: Robot\ncategories:\n  - Devices\ntags:\n  - bot\n---\n"
  },
  {
    "path": "docs/content/icons/rocket-fill.md",
    "content": "---\ntitle: Rocket fill\ncategories:\n  - Real world\ntags:\n  - ship\n  - rocketship\n  - spaceship\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/rocket-takeoff-fill.md",
    "content": "---\ntitle: Rocket takeoff fill\ncategories:\n  - Real world\ntags:\n  - ship\n  - rocketship\n  - spaceship\n  - launch\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/rocket-takeoff.md",
    "content": "---\ntitle: Rocket takeoff\ncategories:\n  - Real world\ntags:\n  - ship\n  - rocketship\n  - spaceship\n  - launch\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/rocket.md",
    "content": "---\ntitle: Rocket\ncategories:\n  - Real world\ntags:\n  - ship\n  - rocketship\n  - spaceship\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/router-fill.md",
    "content": "---\ntitle: Router fill\ncategories:\n  - Devices\ntags:\n  - wifi\n  - internet\n  - wireless\n  - network\n---\n"
  },
  {
    "path": "docs/content/icons/router.md",
    "content": "---\ntitle: Router\ncategories:\n  - Devices\ntags:\n  - wifi\n  - internet\n  - wireless\n  - network\n---\n"
  },
  {
    "path": "docs/content/icons/rss-fill.md",
    "content": "---\ntitle: RSS fill\ncategories:\n  - Communications\ntags:\n  - atom\n  - feed\n  - xml\n---\n"
  },
  {
    "path": "docs/content/icons/rss.md",
    "content": "---\ntitle: RSS\ncategories:\n  - Communications\ntags:\n  - atom\n  - feed\n  - xml\n---\n"
  },
  {
    "path": "docs/content/icons/rulers.md",
    "content": "---\ntitle: Rulers\ncategories:\n  - Graphics\ntags:\n  - measure\n  - guide\n---\n"
  },
  {
    "path": "docs/content/icons/safe-fill.md",
    "content": "---\ntitle: Safe fill\ncategories:\n  - Real world\ntags:\n  - vault\n  - bank\n  - finance\n---\n"
  },
  {
    "path": "docs/content/icons/safe.md",
    "content": "---\ntitle: Safe\ncategories:\n  - Real world\ntags:\n  - vault\n  - bank\n  - finance\n---\n"
  },
  {
    "path": "docs/content/icons/safe2-fill.md",
    "content": "---\ntitle: Safe2 fill\ncategories:\n  - Real world\ntags:\n  - vault\n  - bank\n  - finance\n---\n"
  },
  {
    "path": "docs/content/icons/safe2.md",
    "content": "---\ntitle: Safe2\ncategories:\n  - Real world\ntags:\n  - vault\n  - bank\n  - finance\n---\n"
  },
  {
    "path": "docs/content/icons/save-fill.md",
    "content": "---\ntitle: Save fill\ncategories:\n  - UI and keyboard\ntags:\n  - save\n  - floppy\n---\n"
  },
  {
    "path": "docs/content/icons/save.md",
    "content": "---\ntitle: Save\ncategories:\n  - UI and keyboard\ntags:\n  - save\n  - floppy\n---\n"
  },
  {
    "path": "docs/content/icons/save2-fill.md",
    "content": "---\ntitle: Save2 fill\ncategories:\n  - UI and keyboard\ntags:\n  - save\n  - floppy\n---\n"
  },
  {
    "path": "docs/content/icons/save2.md",
    "content": "---\ntitle: Save2\ncategories:\n  - UI and keyboard\ntags:\n  - save\n  - floppy\n---\n"
  },
  {
    "path": "docs/content/icons/scissors.md",
    "content": "---\ntitle: Scissors\ncategories:\n  - Real world\ntags:\n  - cut\n  - shears\n---\n"
  },
  {
    "path": "docs/content/icons/scooter.md",
    "content": "---\ntitle: Scooter\ncategories:\n  - Transportation\ntags:\n  - riding\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/screwdriver.md",
    "content": "---\ntitle: Screwdriver\ncategories:\n  - Tools\ntags:\n  - tool\n---\n"
  },
  {
    "path": "docs/content/icons/sd-card-fill.md",
    "content": "---\ntitle: SD card fill\ncategories:\n  - Devices\ntags:\n  - storage\n  - microsd\n  - chip\n  - memory\n---\n"
  },
  {
    "path": "docs/content/icons/sd-card.md",
    "content": "---\ntitle: SD card\ncategories:\n  - Devices\ntags:\n  - storage\n  - microsd\n  - chip\n  - memory\n---\n"
  },
  {
    "path": "docs/content/icons/search-heart-fill.md",
    "content": "---\ntitle: Search heart fill\ncategories:\n  - Communications\n  - Love\ntags:\n  - magnifying-glass\n  - look\n  - love\n  - romance\n  - valentine\n  - lens\n---\n"
  },
  {
    "path": "docs/content/icons/search-heart.md",
    "content": "---\ntitle: Search heart\ncategories:\n  - Communications\n  - Love\ntags:\n  - magnifying-glass\n  - look\n  - love\n  - romance\n  - valentine\n  - lens\n---\n"
  },
  {
    "path": "docs/content/icons/search.md",
    "content": "---\ntitle: Search\ncategories:\n  - Communications\ntags:\n  - magnifying-glass\n  - look\n  - lens\n---\n"
  },
  {
    "path": "docs/content/icons/segmented-nav.md",
    "content": "---\ntitle: Segmented nav\ncategories:\n  - Controls\ntags:\n  - nav\n  - tabs\n  - tabbed\n  - app\n  - ui\n---\n"
  },
  {
    "path": "docs/content/icons/send-arrow-down-fill.md",
    "content": "---\ntitle: Send arrow down fill\ncategories:\n  - Communications\ntags:\n  - message\n  - sending\n  - sent\n  - paper-plane\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/send-arrow-down.md",
    "content": "---\ntitle: Send arrow down\ncategories:\n  - Communications\ntags:\n  - message\n  - sending\n  - sent\n  - paper-plane\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/send-arrow-up-fill.md",
    "content": "---\ntitle: Send arrow up fill\ncategories:\n  - Communications\ntags:\n  - message\n  - sending\n  - sent\n  - paper-plane\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/send-arrow-up.md",
    "content": "---\ntitle: Send arrow up\ncategories:\n  - Communications\ntags:\n  - message\n  - sending\n  - sent\n  - paper-plane\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/send-check-fill.md",
    "content": "---\ntitle: Send check fill\ncategories:\n  - Communications\ntags:\n  - message\n  - sending\n  - sent\n  - paper-plane\n---\n"
  },
  {
    "path": "docs/content/icons/send-check.md",
    "content": "---\ntitle: Send check\ncategories:\n  - Communications\ntags:\n  - message\n  - sending\n  - sent\n  - paper-plane\n---\n"
  },
  {
    "path": "docs/content/icons/send-dash-fill.md",
    "content": "---\ntitle: Send dash fill\ncategories:\n  - Communications\ntags:\n  - message\n  - sending\n  - sent\n  - paper-plane\n---\n"
  },
  {
    "path": "docs/content/icons/send-dash.md",
    "content": "---\ntitle: Send dash\ncategories:\n  - Communications\ntags:\n  - message\n  - sending\n  - sent\n  - paper-plane\n---\n"
  },
  {
    "path": "docs/content/icons/send-exclamation-fill.md",
    "content": "---\ntitle: Send exclamation fill\ncategories:\n  - Communications\ntags:\n  - message\n  - sending\n  - sent\n  - paper-plane\n---\n"
  },
  {
    "path": "docs/content/icons/send-exclamation.md",
    "content": "---\ntitle: Send exclamation\ncategories:\n  - Communications\ntags:\n  - message\n  - sending\n  - sent\n  - paper-plane\n---\n"
  },
  {
    "path": "docs/content/icons/send-fill.md",
    "content": "---\ntitle: Send fill\ncategories:\n  - Communications\ntags:\n  - message\n  - sending\n  - sent\n  - paper-plane\n---\n"
  },
  {
    "path": "docs/content/icons/send-plus-fill.md",
    "content": "---\ntitle: Send plus fill\ncategories:\n  - Communications\ntags:\n  - message\n  - sending\n  - sent\n  - paper-plane\n---\n"
  },
  {
    "path": "docs/content/icons/send-plus.md",
    "content": "---\ntitle: Send plus\ncategories:\n  - Communications\ntags:\n  - message\n  - sending\n  - sent\n  - paper-plane\n---\n"
  },
  {
    "path": "docs/content/icons/send-slash-fill.md",
    "content": "---\ntitle: Send slash fill\ncategories:\n  - Communications\ntags:\n  - message\n  - sending\n  - sent\n  - paper-plane\n---\n"
  },
  {
    "path": "docs/content/icons/send-slash.md",
    "content": "---\ntitle: Send slash\ncategories:\n  - Communications\ntags:\n  - message\n  - sending\n  - sent\n  - paper-plane\n---\n"
  },
  {
    "path": "docs/content/icons/send-x-fill.md",
    "content": "---\ntitle: Send x fill\ncategories:\n  - Communications\ntags:\n  - message\n  - sending\n  - sent\n  - paper-plane\n---\n"
  },
  {
    "path": "docs/content/icons/send-x.md",
    "content": "---\ntitle: Send x\ncategories:\n  - Communications\ntags:\n  - message\n  - sending\n  - sent\n  - paper-plane\n---\n"
  },
  {
    "path": "docs/content/icons/send.md",
    "content": "---\ntitle: Send\ncategories:\n  - Communications\ntags:\n  - message\n  - sending\n  - sent\n  - paper-plane\n---\n"
  },
  {
    "path": "docs/content/icons/server.md",
    "content": "---\ntitle: Server\ncategories:\n  - Devices\ntags:\n  - server\n  - network\n---\n"
  },
  {
    "path": "docs/content/icons/shadows.md",
    "content": "---\ntitle: Shadows\ncategories:\n  - Graphics\ntags:\n  - photo\n  - editing\n  - image\n  - picture\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/share-fill.md",
    "content": "---\ntitle: Share fill\ncategories:\n  - Communications\ntags:\n  - share\n  - link\n---\n"
  },
  {
    "path": "docs/content/icons/share.md",
    "content": "---\ntitle: Share\ncategories:\n  - Communications\ntags:\n  - share\n  - link\n---\n"
  },
  {
    "path": "docs/content/icons/shield-check.md",
    "content": "---\ntitle: Shield check\ncategories:\n  - Security\ntags:\n  - privacy\n  - security\n---\n"
  },
  {
    "path": "docs/content/icons/shield-exclamation.md",
    "content": "---\ntitle: Shield exclamation\ncategories:\n  - Security\ntags:\n  - privacy\n  - security\n---\n"
  },
  {
    "path": "docs/content/icons/shield-fill-check.md",
    "content": "---\ntitle: Shield fill check\ncategories:\n  - Security\ntags:\n  - privacy\n  - security\n---\n"
  },
  {
    "path": "docs/content/icons/shield-fill-exclamation.md",
    "content": "---\ntitle: Shield fill exclamation\ncategories:\n  - Security\ntags:\n  - privacy\n  - security\n---\n"
  },
  {
    "path": "docs/content/icons/shield-fill-minus.md",
    "content": "---\ntitle: Shield fill minus\ncategories:\n  - Security\ntags:\n  - privacy\n  - security\n---\n"
  },
  {
    "path": "docs/content/icons/shield-fill-plus.md",
    "content": "---\ntitle: Shield fill plus\ncategories:\n  - Security\ntags:\n  - privacy\n  - security\n---\n"
  },
  {
    "path": "docs/content/icons/shield-fill-x.md",
    "content": "---\ntitle: Shield fill x\ncategories:\n  - Security\ntags:\n  - privacy\n  - security\n  - remove\n  - delete\n---\n"
  },
  {
    "path": "docs/content/icons/shield-fill.md",
    "content": "---\ntitle: Shield fill\ncategories:\n  - Security\ntags:\n  - privacy\n  - security\n---\n"
  },
  {
    "path": "docs/content/icons/shield-lock-fill.md",
    "content": "---\ntitle: Shield lock fill\ncategories:\n  - Security\ntags:\n  - privacy\n  - security\n  - lock\n---\n"
  },
  {
    "path": "docs/content/icons/shield-lock.md",
    "content": "---\ntitle: Shield lock\ncategories:\n  - Security\ntags:\n  - privacy\n  - security\n  - lock\n---\n"
  },
  {
    "path": "docs/content/icons/shield-minus.md",
    "content": "---\ntitle: Shield minus\ncategories:\n  - Security\ntags:\n  - privacy\n  - security\n---\n"
  },
  {
    "path": "docs/content/icons/shield-plus.md",
    "content": "---\ntitle: Shield plus\ncategories:\n  - Security\ntags:\n  - privacy\n  - security\n---\n"
  },
  {
    "path": "docs/content/icons/shield-shaded.md",
    "content": "---\ntitle: Shield shaded\ncategories:\n  - Security\ntags:\n  - privacy\n  - security\n---\n"
  },
  {
    "path": "docs/content/icons/shield-slash-fill.md",
    "content": "---\ntitle: Shield slash fill\ncategories:\n  - Security\ntags:\n  - shield\n  - badge\n---\n"
  },
  {
    "path": "docs/content/icons/shield-slash.md",
    "content": "---\ntitle: Shield slash\ncategories:\n  - Security\ntags:\n  - shield\n  - badge\n---\n"
  },
  {
    "path": "docs/content/icons/shield-x.md",
    "content": "---\ntitle: Shield x\ncategories:\n  - Security\ntags:\n  - privacy\n  - security\n  - remove\n  - delete\n---\n"
  },
  {
    "path": "docs/content/icons/shield.md",
    "content": "---\ntitle: Shield\ncategories:\n  - Security\ntags:\n  - privacy\n  - security\n---\n"
  },
  {
    "path": "docs/content/icons/shift-fill.md",
    "content": "---\ntitle: Shift fill\ncategories:\n  - UI and keyboard\ntags:\n  - key\n---\n"
  },
  {
    "path": "docs/content/icons/shift.md",
    "content": "---\ntitle: Shift\ncategories:\n  - UI and keyboard\ntags:\n  - key\n---\n"
  },
  {
    "path": "docs/content/icons/shop-window.md",
    "content": "---\ntitle: Shop window\ncategories:\n  - Commerce\ntags:\n  - shop\n  - store\n  - market\n  - marketplace\n  - shopping\n  - retail\n---\n"
  },
  {
    "path": "docs/content/icons/shop.md",
    "content": "---\ntitle: Shop\ncategories:\n  - Commerce\ntags:\n  - shop\n  - store\n  - market\n  - marketplace\n  - shopping\n  - retail\n---\n"
  },
  {
    "path": "docs/content/icons/shuffle.md",
    "content": "---\ntitle: Shuffle\ncategories:\n  - Arrows\ntags:\n  - shuffle\n  - random\n---\n"
  },
  {
    "path": "docs/content/icons/sign-dead-end-fill.md",
    "content": "---\ntitle: Sign dead end fill\ncategories:\n  - Transportation\ntags:\n  - road\n  - driving\n  - directions\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/sign-dead-end.md",
    "content": "---\ntitle: Sign dead end\ncategories:\n  - Transportation\ntags:\n  - road\n  - driving\n  - directions\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/sign-do-not-enter-fill.md",
    "content": "---\ntitle: Sign do not enter fill\ncategories:\n  - Transportation\ntags:\n  - road\n  - driving\n  - directions\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/sign-do-not-enter.md",
    "content": "---\ntitle: Sign do not enter\ncategories:\n  - Transportation\ntags:\n  - road\n  - driving\n  - directions\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/sign-intersection-fill.md",
    "content": "---\ntitle: Sign intersection fill\ncategories:\n  - Transportation\ntags:\n  - road\n  - driving\n  - directions\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/sign-intersection-side-fill.md",
    "content": "---\ntitle: Sign intersection side fill\ncategories:\n  - Transportation\ntags:\n  - road\n  - driving\n  - directions\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/sign-intersection-side.md",
    "content": "---\ntitle: Sign intersection side\ncategories:\n  - Transportation\ntags:\n  - road\n  - driving\n  - directions\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/sign-intersection-t-fill.md",
    "content": "---\ntitle: Sign intersection t fill\ncategories:\n  - Transportation\ntags:\n  - road\n  - driving\n  - directions\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/sign-intersection-t.md",
    "content": "---\ntitle: Sign intersection t\ncategories:\n  - Transportation\ntags:\n  - road\n  - driving\n  - directions\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/sign-intersection-y-fill.md",
    "content": "---\ntitle: Sign intersection y fill\ncategories:\n  - Transportation\ntags:\n  - road\n  - driving\n  - directions\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/sign-intersection-y.md",
    "content": "---\ntitle: Sign intersection y\ncategories:\n  - Transportation\ntags:\n  - road\n  - driving\n  - directions\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/sign-intersection.md",
    "content": "---\ntitle: Sign intersection\ncategories:\n  - Transportation\ntags:\n  - road\n  - driving\n  - directions\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/sign-merge-left-fill.md",
    "content": "---\ntitle: Sign merge left fill\ncategories:\n  - Transportation\ntags:\n  - road\n  - driving\n  - directions\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/sign-merge-left.md",
    "content": "---\ntitle: Sign merge left\ncategories:\n  - Transportation\ntags:\n  - road\n  - driving\n  - directions\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/sign-merge-right-fill.md",
    "content": "---\ntitle: Sign merge right fill\ncategories:\n  - Transportation\ntags:\n  - road\n  - driving\n  - directions\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/sign-merge-right.md",
    "content": "---\ntitle: Sign merge right\ncategories:\n  - Transportation\ntags:\n  - road\n  - driving\n  - directions\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/sign-no-left-turn-fill.md",
    "content": "---\ntitle: Sign no left turn fill\ncategories:\n  - Transportation\ntags:\n  - road\n  - driving\n  - directions\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/sign-no-left-turn.md",
    "content": "---\ntitle: Sign no left turn\ncategories:\n  - Transportation\ntags:\n  - road\n  - driving\n  - directions\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/sign-no-parking-fill.md",
    "content": "---\ntitle: Sign no parking fill\ncategories:\n  - Transportation\ntags:\n  - road\n  - driving\n  - directions\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/sign-no-parking.md",
    "content": "---\ntitle: Sign no parking\ncategories:\n  - Transportation\ntags:\n  - road\n  - driving\n  - directions\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/sign-no-right-turn-fill.md",
    "content": "---\ntitle: Sign no right turn fill\ncategories:\n  - Transportation\ntags:\n  - road\n  - driving\n  - directions\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/sign-no-right-turn.md",
    "content": "---\ntitle: Sign no right turn\ncategories:\n  - Transportation\ntags:\n  - road\n  - driving\n  - directions\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/sign-railroad-fill.md",
    "content": "---\ntitle: Sign railroad fill\ncategories:\n  - Transportation\ntags:\n  - road\n  - driving\n  - train\n  - tracks\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/sign-railroad.md",
    "content": "---\ntitle: Sign railroad\ncategories:\n  - Transportation\ntags:\n  - road\n  - driving\n  - train\n  - tracks\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/sign-stop-fill.md",
    "content": "---\ntitle: Sign stop fill\ncategories:\n  - Transportation\ntags:\n  - \"stop sign\"\n  - intersection\n  - road\n  - driving\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/sign-stop-lights-fill.md",
    "content": "---\ntitle: Sign stop lights fill\ncategories:\n  - Transportation\ntags:\n  - \"stop sign\"\n  - intersection\n  - road\n  - driving\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/sign-stop-lights.md",
    "content": "---\ntitle: Sign stop lights\ncategories:\n  - Transportation\ntags:\n  - \"stop sign\"\n  - intersection\n  - road\n  - driving\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/sign-stop.md",
    "content": "---\ntitle: Sign stop\ncategories:\n  - Transportation\ntags:\n  - \"stop sign\"\n  - intersection\n  - road\n  - driving\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/sign-turn-left-fill.md",
    "content": "---\ntitle: Sign turn left fill\ncategories:\n  - Transportation\ntags:\n  - road\n  - driving\n  - navigate\n  - navigation\n  - route\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/sign-turn-left.md",
    "content": "---\ntitle: Sign turn left\ncategories:\n  - Transportation\ntags:\n  - road\n  - driving\n  - navigate\n  - navigation\n  - route\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/sign-turn-right-fill.md",
    "content": "---\ntitle: Sign turn right fill\ncategories:\n  - Transportation\ntags:\n  - road\n  - driving\n  - navigate\n  - navigation\n  - route\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/sign-turn-right.md",
    "content": "---\ntitle: Sign turn right\ncategories:\n  - Transportation\ntags:\n  - road\n  - driving\n  - navigate\n  - navigation\n  - route\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/sign-turn-slight-left-fill.md",
    "content": "---\ntitle: Sign turn slight left fill\ncategories:\n  - Transportation\ntags:\n  - road\n  - driving\n  - navigate\n  - navigation\n  - route\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/sign-turn-slight-left.md",
    "content": "---\ntitle: Sign turn slight left\ncategories:\n  - Transportation\ntags:\n  - road\n  - driving\n  - navigate\n  - navigation\n  - route\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/sign-turn-slight-right-fill.md",
    "content": "---\ntitle: Sign turn slight right fill\ncategories:\n  - Transportation\ntags:\n  - road\n  - driving\n  - navigate\n  - navigation\n  - route\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/sign-turn-slight-right.md",
    "content": "---\ntitle: Sign turn slight right\ncategories:\n  - Transportation\ntags:\n  - road\n  - driving\n  - navigate\n  - navigation\n  - route\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/sign-yield-fill.md",
    "content": "---\ntitle: Sign yield fill\ncategories:\n  - Transportation\ntags:\n  - road\n  - driving\n  - intersection\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/sign-yield.md",
    "content": "---\ntitle: Sign yield\ncategories:\n  - Transportation\ntags:\n  - road\n  - driving\n  - intersection\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/signal.md",
    "content": "---\ntitle: Signal\ncategories:\n  - Brand\ntags:\n  - social\n---\n"
  },
  {
    "path": "docs/content/icons/signpost-2-fill.md",
    "content": "---\ntitle: Signpost 2 fill\ncategories:\n  - Real world\ntags:\n  - milestone\n  - sign\n  - road sign\n  - street sign\n  - directions\n---\n"
  },
  {
    "path": "docs/content/icons/signpost-2.md",
    "content": "---\ntitle: Signpost 2\ncategories:\n  - Real world\ntags:\n  - milestone\n  - sign\n  - road sign\n  - street sign\n  - directions\n---\n"
  },
  {
    "path": "docs/content/icons/signpost-fill.md",
    "content": "---\ntitle: Signpost fill\ncategories:\n  - Real world\ntags:\n  - milestone\n  - sign\n  - road sign\n  - street sign\n  - directions\n---\n"
  },
  {
    "path": "docs/content/icons/signpost-split-fill.md",
    "content": "---\ntitle: Signpost split fill\ncategories:\n  - Real world\ntags:\n  - milestone\n  - sign\n  - road sign\n  - street sign\n  - directions\n---\n"
  },
  {
    "path": "docs/content/icons/signpost-split.md",
    "content": "---\ntitle: Signpost split\ncategories:\n  - Real world\ntags:\n  - milestone\n  - sign\n  - road sign\n  - street sign\n  - directions\n---\n"
  },
  {
    "path": "docs/content/icons/signpost.md",
    "content": "---\ntitle: Signpost\ncategories:\n  - Real world\ntags:\n  - milestone\n  - sign\n  - road sign\n  - street sign\n  - directions\n---\n"
  },
  {
    "path": "docs/content/icons/sim-fill.md",
    "content": "---\ntitle: Sim fill\ncategories:\n  - Devices\ntags:\n  - mobile\n  - carrier\n---\n"
  },
  {
    "path": "docs/content/icons/sim-slash-fill.md",
    "content": "---\ntitle: Sim slash fill\ncategories:\n  - Devices\ntags:\n  - mobile\n  - carrier\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/sim-slash.md",
    "content": "---\ntitle: Sim slash\ncategories:\n  - Devices\ntags:\n  - mobile\n  - carrier\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/sim.md",
    "content": "---\ntitle: Sim\ncategories:\n  - Devices\ntags:\n  - mobile\n  - carrier\n---\n"
  },
  {
    "path": "docs/content/icons/sina-weibo.md",
    "content": "---\ntitle: Sina Weibo\ncategories:\n  - Brand\ntags:\n  - social\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/skip-backward-btn-fill.md",
    "content": "---\ntitle: Skip backward btn fill\ncategories:\n  - Media\ntags:\n  - audio\n  - video\n  - av\n---\n"
  },
  {
    "path": "docs/content/icons/skip-backward-btn.md",
    "content": "---\ntitle: Skip backward btn\ncategories:\n  - Media\ntags:\n  - audio\n  - video\n  - av\n---\n"
  },
  {
    "path": "docs/content/icons/skip-backward-circle-fill.md",
    "content": "---\ntitle: Skip backward circle fill\ncategories:\n  - Media\ntags:\n  - audio\n  - video\n  - av\n---\n"
  },
  {
    "path": "docs/content/icons/skip-backward-circle.md",
    "content": "---\ntitle: Skip backward circle\ncategories:\n  - Media\ntags:\n  - audio\n  - video\n  - av\n---\n"
  },
  {
    "path": "docs/content/icons/skip-backward-fill.md",
    "content": "---\ntitle: Skip backward fill\ncategories:\n  - Media\ntags:\n  - audio\n  - video\n  - av\n---\n"
  },
  {
    "path": "docs/content/icons/skip-backward.md",
    "content": "---\ntitle: Skip backward\ncategories:\n  - Media\ntags:\n  - audio\n  - video\n  - av\n---\n"
  },
  {
    "path": "docs/content/icons/skip-end-btn-fill.md",
    "content": "---\ntitle: Skip end btn fill\ncategories:\n  - Media\ntags:\n  - audio\n  - video\n  - av\n---\n"
  },
  {
    "path": "docs/content/icons/skip-end-btn.md",
    "content": "---\ntitle: Skip end btn\ncategories:\n  - Media\ntags:\n  - audio\n  - video\n  - av\n---\n"
  },
  {
    "path": "docs/content/icons/skip-end-circle-fill.md",
    "content": "---\ntitle: Skip end circle fill\ncategories:\n  - Media\ntags:\n  - audio\n  - video\n  - av\n---\n"
  },
  {
    "path": "docs/content/icons/skip-end-circle.md",
    "content": "---\ntitle: Skip end circle\ncategories:\n  - Media\ntags:\n  - audio\n  - video\n  - av\n---\n"
  },
  {
    "path": "docs/content/icons/skip-end-fill.md",
    "content": "---\ntitle: Skip end fill\ncategories:\n  - Media\ntags:\n  - audio\n  - video\n  - av\n---\n"
  },
  {
    "path": "docs/content/icons/skip-end.md",
    "content": "---\ntitle: Skip end\ncategories:\n  - Media\ntags:\n  - audio\n  - video\n  - av\n---\n"
  },
  {
    "path": "docs/content/icons/skip-forward-btn-fill.md",
    "content": "---\ntitle: Skip forward btn fill\ncategories:\n  - Media\ntags:\n  - audio\n  - video\n  - av\n---\n"
  },
  {
    "path": "docs/content/icons/skip-forward-btn.md",
    "content": "---\ntitle: Skip forward btn\ncategories:\n  - Media\ntags:\n  - audio\n  - video\n  - av\n---\n"
  },
  {
    "path": "docs/content/icons/skip-forward-circle-fill.md",
    "content": "---\ntitle: Skip forward circle fill\ncategories:\n  - Media\ntags:\n  - audio\n  - video\n  - av\n---\n"
  },
  {
    "path": "docs/content/icons/skip-forward-circle.md",
    "content": "---\ntitle: Skip forward circle\ncategories:\n  - Media\ntags:\n  - audio\n  - video\n  - av\n---\n"
  },
  {
    "path": "docs/content/icons/skip-forward-fill.md",
    "content": "---\ntitle: Skip forward fill\ncategories:\n  - Media\ntags:\n  - audio\n  - video\n  - av\n---\n"
  },
  {
    "path": "docs/content/icons/skip-forward.md",
    "content": "---\ntitle: Skip forward\ncategories:\n  - Media\ntags:\n  - audio\n  - video\n  - av\n---\n"
  },
  {
    "path": "docs/content/icons/skip-start-btn-fill.md",
    "content": "---\ntitle: Skip start btn fill\ncategories:\n  - Media\ntags:\n  - audio\n  - video\n  - av\n---\n"
  },
  {
    "path": "docs/content/icons/skip-start-btn.md",
    "content": "---\ntitle: Skip start btn\ncategories:\n  - Media\ntags:\n  - audio\n  - video\n  - av\n---\n"
  },
  {
    "path": "docs/content/icons/skip-start-circle-fill.md",
    "content": "---\ntitle: Skip start circle fill\ncategories:\n  - Media\ntags:\n  - audio\n  - video\n  - av\n---\n"
  },
  {
    "path": "docs/content/icons/skip-start-circle.md",
    "content": "---\ntitle: Skip start circle\ncategories:\n  - Media\ntags:\n  - audio\n  - video\n  - av\n---\n"
  },
  {
    "path": "docs/content/icons/skip-start-fill.md",
    "content": "---\ntitle: Skip start fill\ncategories:\n  - Media\ntags:\n  - audio\n  - video\n  - av\n---\n"
  },
  {
    "path": "docs/content/icons/skip-start.md",
    "content": "---\ntitle: Skip start\ncategories:\n  - Media\ntags:\n  - audio\n  - video\n  - av\n---\n"
  },
  {
    "path": "docs/content/icons/skype.md",
    "content": "---\ntitle: Skype\ncategories:\n  - Brand\ntags:\n  - social\n  - microsoft\n---\n"
  },
  {
    "path": "docs/content/icons/slack.md",
    "content": "---\ntitle: Slack\ncategories:\n  - Brand\ntags:\n  - social\n---\n"
  },
  {
    "path": "docs/content/icons/slash-circle-fill.md",
    "content": "---\ntitle: Slash circle fill\ncategories:\n  - Alerts, warnings, and signs\ntags:\n  - shape\n  - stop\n  - ban\n  - no\n---\n"
  },
  {
    "path": "docs/content/icons/slash-circle.md",
    "content": "---\ntitle: Circle slash\ncategories:\n  - Alerts, warnings, and signs\ntags:\n  - shape\n  - stop\n  - ban\n  - no\n---\n"
  },
  {
    "path": "docs/content/icons/slash-lg.md",
    "content": "---\ntitle: Slash lg\ncategories:\n  - Alerts, warnings, and signs\ntags:\n  - shape\n  - stop\n  - ban\n  - no\n  - math\n---\n"
  },
  {
    "path": "docs/content/icons/slash-square-fill.md",
    "content": "---\ntitle: Slash square fill\ncategories:\n  - Alerts, warnings, and signs\ntags:\n  - shape\n  - stop\n  - ban\n  - no\n---\n"
  },
  {
    "path": "docs/content/icons/slash-square.md",
    "content": "---\ntitle: Slash square\ncategories:\n  - Alerts, warnings, and signs\ntags:\n  - shape\n  - stop\n  - ban\n  - no\n---\n"
  },
  {
    "path": "docs/content/icons/slash.md",
    "content": "---\ntitle: Slash\ncategories:\n  - Alerts, warnings, and signs\ntags:\n  - shape\n  - stop\n  - ban\n  - no\n  - math\n---\n"
  },
  {
    "path": "docs/content/icons/sliders.md",
    "content": "---\ntitle: Sliders\ncategories:\n  - Graphics\ntags:\n  - equalizer\n  - settings\n  - preferences\n  - dials\n---\n"
  },
  {
    "path": "docs/content/icons/sliders2-vertical.md",
    "content": "---\ntitle: Sliders2 vertical\ncategories:\n  - Graphics\ntags:\n  - equalizer\n  - settings\n  - preferences\n  - dials\n---\n"
  },
  {
    "path": "docs/content/icons/sliders2.md",
    "content": "---\ntitle: Sliders2\ncategories:\n  - Graphics\ntags:\n  - equalizer\n  - settings\n  - preferences\n  - dials\n---\n"
  },
  {
    "path": "docs/content/icons/smartwatch.md",
    "content": "---\ntitle: Smartwatch\ncategories:\n  - Devices\ntags:\n  - watch\n  - wearables\n---\n"
  },
  {
    "path": "docs/content/icons/snapchat.md",
    "content": "---\ntitle: Snapchat\ncategories:\n  - Brand\ntags:\n  - social\n---\n"
  },
  {
    "path": "docs/content/icons/snow.md",
    "content": "---\ntitle: Snow\ncategories:\n  - Weather\ntags:\n  - blizzard\n  - flurries\n---\n"
  },
  {
    "path": "docs/content/icons/snow2.md",
    "content": "---\ntitle: Snow2\ncategories:\n  - Weather\ntags:\n  - blizzard\n  - flurries\n---\n"
  },
  {
    "path": "docs/content/icons/snow3.md",
    "content": "---\ntitle: Snow3\ncategories:\n  - Weather\ntags:\n  - blizzard\n  - flurries\n---\n"
  },
  {
    "path": "docs/content/icons/sort-alpha-down-alt.md",
    "content": "---\ntitle: Sort alpha down alt\ncategories:\n  - Sort and filter\ntags:\n  - sort\n  - filter\n  - organize\n---\n"
  },
  {
    "path": "docs/content/icons/sort-alpha-down.md",
    "content": "---\ntitle: Sort alpha down\ncategories:\n  - Sort and filter\ntags:\n  - sort\n  - filter\n  - organize\n---\n"
  },
  {
    "path": "docs/content/icons/sort-alpha-up-alt.md",
    "content": "---\ntitle: Sort alpha up alt\ncategories:\n  - Sort and filter\ntags:\n  - sort\n  - filter\n  - organize\n---\n"
  },
  {
    "path": "docs/content/icons/sort-alpha-up.md",
    "content": "---\ntitle: Sort alpha up\ncategories:\n  - Sort and filter\ntags:\n  - sort\n  - filter\n  - organize\n---\n"
  },
  {
    "path": "docs/content/icons/sort-down-alt.md",
    "content": "---\ntitle: Sort down alt\ncategories:\n  - Sort and filter\ntags:\n  - sort\n  - filter\n  - organize\n---\n"
  },
  {
    "path": "docs/content/icons/sort-down.md",
    "content": "---\ntitle: Sort down\ncategories:\n  - Sort and filter\ntags:\n  - sort\n  - filter\n  - organize\n---\n"
  },
  {
    "path": "docs/content/icons/sort-numeric-down-alt.md",
    "content": "---\ntitle: Sort numeric down alt\ncategories:\n  - Sort and filter\ntags:\n  - sort\n  - filter\n  - organize\n---\n"
  },
  {
    "path": "docs/content/icons/sort-numeric-down.md",
    "content": "---\ntitle: Sort numeric down\ncategories:\n  - Sort and filter\ntags:\n  - sort\n  - filter\n  - organize\n---\n"
  },
  {
    "path": "docs/content/icons/sort-numeric-up-alt.md",
    "content": "---\ntitle: Sort numeric up alt\ncategories:\n  - Sort and filter\ntags:\n  - sort\n  - filter\n  - organize\n---\n"
  },
  {
    "path": "docs/content/icons/sort-numeric-up.md",
    "content": "---\ntitle: Sort numeric up\ncategories:\n  - Sort and filter\ntags:\n  - sort\n  - filter\n  - organize\n---\n"
  },
  {
    "path": "docs/content/icons/sort-up-alt.md",
    "content": "---\ntitle: Sort up alt\ncategories:\n  - Sort and filter\ntags:\n  - sort\n  - filter\n  - organize\n---\n"
  },
  {
    "path": "docs/content/icons/sort-up.md",
    "content": "---\ntitle: Sort up\ncategories:\n  - Sort and filter\ntags:\n  - sort\n  - filter\n  - organize\n---\n"
  },
  {
    "path": "docs/content/icons/soundwave.md",
    "content": "---\ntitle: Soundwave\ncategories:\n  - Media\ntags:\n  - audio\n  - sound\n  - wave\n---\n"
  },
  {
    "path": "docs/content/icons/sourceforge.md",
    "content": "---\ntitle: Sourceforge\ncategories:\n  - Brand\ntags:\n  - social\n  - vcs\n  - git\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/speaker-fill.md",
    "content": "---\ntitle: Speaker fill\ncategories:\n  - Devices\ntags:\n  - audio\n  - sound\n---\n"
  },
  {
    "path": "docs/content/icons/speaker.md",
    "content": "---\ntitle: Speaker\ncategories:\n  - Devices\ntags:\n  - audio\n  - sound\n---\n"
  },
  {
    "path": "docs/content/icons/speedometer.md",
    "content": "---\ntitle: Speedometer\ncategories:\n  - Real world\ntags:\n  - speed\n  - tachometer\n  - dashboard\n  - gauge\n---\n"
  },
  {
    "path": "docs/content/icons/speedometer2.md",
    "content": "---\ntitle: Speedometer2\ncategories:\n  - Real world\ntags:\n  - speed\n  - tachometer\n  - dashboard\n  - gauge\n---\n"
  },
  {
    "path": "docs/content/icons/spellcheck.md",
    "content": "---\ntitle: Spellcheck\ncategories:\n  - Typography\ntags:\n  - spelling\n  - grammar\n---\n"
  },
  {
    "path": "docs/content/icons/spotify.md",
    "content": "---\ntitle: Spotify\ncategories:\n  - Brand\ntags:\n  - social\n---\n"
  },
  {
    "path": "docs/content/icons/square-fill.md",
    "content": "---\ntitle: Square fill\ncategories:\n  - Shapes\ntags:\n  - shape\n  - rectangle\n---\n"
  },
  {
    "path": "docs/content/icons/square-half.md",
    "content": "---\ntitle: Square half fill\ncategories:\n  - Shapes\ntags:\n  - shape\n  - rectangle\n---\n"
  },
  {
    "path": "docs/content/icons/square.md",
    "content": "---\ntitle: Square\ncategories:\n  - Shapes\ntags:\n  - shape\n  - rectangle\n---\n"
  },
  {
    "path": "docs/content/icons/stack-overflow.md",
    "content": "---\ntitle: Stack overflow\ncategories:\n  - Brand\ntags:\n  - social\n---\n"
  },
  {
    "path": "docs/content/icons/stack.md",
    "content": "---\ntitle: Stack\ncategories:\n  - Graphics\ntags:\n  - layers\n---\n"
  },
  {
    "path": "docs/content/icons/star-fill.md",
    "content": "---\ntitle: Star fill\ncategories:\n  - Shapes\ntags:\n  - shape\n  - like\n  - favorite\n---\n"
  },
  {
    "path": "docs/content/icons/star-half.md",
    "content": "---\ntitle: Star half fill\ncategories:\n  - Shapes\ntags:\n  - shape\n  - like\n  - favorite\n---\n"
  },
  {
    "path": "docs/content/icons/star.md",
    "content": "---\ntitle: Star\ncategories:\n  - Shapes\ntags:\n  - shape\n  - like\n  - favorite\n---\n"
  },
  {
    "path": "docs/content/icons/stars.md",
    "content": "---\ntitle: Stars\ncategories:\n  - Weather\ntags:\n  - clear\n  - skies\n  - night\n---\n"
  },
  {
    "path": "docs/content/icons/steam.md",
    "content": "---\ntitle: Steam\ncategories:\n  - Brand\ntags:\n  - gaming\n---\n"
  },
  {
    "path": "docs/content/icons/stickies-fill.md",
    "content": "---\ntitle: Stickies fill\ncategories:\n  - Real world\ntags:\n  - postit\n  - note\n  - sticky\n---\n"
  },
  {
    "path": "docs/content/icons/stickies.md",
    "content": "---\ntitle: Stickies\ncategories:\n  - Real world\ntags:\n  - postit\n  - note\n  - sticky\n---\n"
  },
  {
    "path": "docs/content/icons/sticky-fill.md",
    "content": "---\ntitle: Sticky fill\ncategories:\n  - Real world\ntags:\n  - postit\n  - note\n  - sticky\n---\n"
  },
  {
    "path": "docs/content/icons/sticky.md",
    "content": "---\ntitle: Sticky\ncategories:\n  - Real world\ntags:\n  - postit\n  - note\n  - sticky\n---\n"
  },
  {
    "path": "docs/content/icons/stop-btn-fill.md",
    "content": "---\ntitle: Stop btn fill\ncategories:\n  - Media\ntags:\n  - audio\n  - video\n  - av\n---\n"
  },
  {
    "path": "docs/content/icons/stop-btn.md",
    "content": "---\ntitle: Stop btn\ncategories:\n  - Media\ntags:\n  - audio\n  - video\n  - av\n---\n"
  },
  {
    "path": "docs/content/icons/stop-circle-fill.md",
    "content": "---\ntitle: Stop circle fill\ncategories:\n  - Media\ntags:\n  - audio\n  - video\n  - av\n---\n"
  },
  {
    "path": "docs/content/icons/stop-circle.md",
    "content": "---\ntitle: Stop circle\ncategories:\n  - Media\ntags:\n  - audio\n  - video\n  - av\n---\n"
  },
  {
    "path": "docs/content/icons/stop-fill.md",
    "content": "---\ntitle: Stop fill\ncategories:\n  - Media\ntags:\n  - audio\n  - video\n  - av\n---\n"
  },
  {
    "path": "docs/content/icons/stop.md",
    "content": "---\ntitle: Stop\ncategories:\n  - Media\ntags:\n  - audio\n  - video\n  - av\n---\n"
  },
  {
    "path": "docs/content/icons/stoplights-fill.md",
    "content": "---\ntitle: Stoplights fill\ncategories:\n  - Real world\ntags:\n  - traffic\n  - lights\n  - intersection\n---\n"
  },
  {
    "path": "docs/content/icons/stoplights.md",
    "content": "---\ntitle: Stoplights\ncategories:\n  - Real world\ntags:\n  - traffic\n  - lights\n  - intersection\n---\n"
  },
  {
    "path": "docs/content/icons/stopwatch-fill.md",
    "content": "---\ntitle: Stopwatch fill\ncategories:\n  - Devices\ntags:\n  - time\n  - timer\n  - clock\n---\n"
  },
  {
    "path": "docs/content/icons/stopwatch.md",
    "content": "---\ntitle: Stopwatch\ncategories:\n  - Devices\ntags:\n  - time\n  - timer\n  - clock\n---\n"
  },
  {
    "path": "docs/content/icons/strava.md",
    "content": "---\ntitle: Strava\ncategories:\n  - Brand\ntags:\n  - social\n---\n"
  },
  {
    "path": "docs/content/icons/stripe.md",
    "content": "---\ntitle: Stripe\ncategories:\n  - Brand\ntags:\n  - payments\n  - commerce\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/subscript.md",
    "content": "---\ntitle: Subscript\ncategories:\n  - Typography\ntags:\n  - text\n  - type\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/substack.md",
    "content": "---\ntitle: Substack\ncategories:\n  - Brand\ntags:\n  - social\n  - blog\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/subtract.md",
    "content": "---\ntitle: Subtract\ncategories:\n  - Graphics\ntags:\n  - graphics\n  - vector\n  - merge\n  - layers\n---\n"
  },
  {
    "path": "docs/content/icons/suit-club-fill.md",
    "content": "---\ntitle: Suit club fill\ncategories:\n  - Entertainment\ntags:\n  - card\n  - cards\n  - suit\n  - deck\n  - gambling\n---\n"
  },
  {
    "path": "docs/content/icons/suit-club.md",
    "content": "---\ntitle: Suit club\ncategories:\n  - Entertainment\ntags:\n  - card\n  - cards\n  - suit\n  - deck\n  - gambling\n---\n"
  },
  {
    "path": "docs/content/icons/suit-diamond-fill.md",
    "content": "---\ntitle: Suit diamond fill\ncategories:\n  - Entertainment\ntags:\n  - card\n  - cards\n  - suit\n  - deck\n  - gambling\n---\n"
  },
  {
    "path": "docs/content/icons/suit-diamond.md",
    "content": "---\ntitle: Suit diamond\ncategories:\n  - Entertainment\ntags:\n  - card\n  - cards\n  - suit\n  - deck\n  - gambling\n---\n"
  },
  {
    "path": "docs/content/icons/suit-heart-fill.md",
    "content": "---\ntitle: Suit heart fill\ncategories:\n  - Entertainment\ntags:\n  - card\n  - cards\n  - suit\n  - deck\n  - gambling\n---\n"
  },
  {
    "path": "docs/content/icons/suit-heart.md",
    "content": "---\ntitle: Suit heart\ncategories:\n  - Entertainment\ntags:\n  - card\n  - cards\n  - suit\n  - deck\n  - gambling\n---\n"
  },
  {
    "path": "docs/content/icons/suit-spade-fill.md",
    "content": "---\ntitle: Suit spade fill\ncategories:\n  - Entertainment\ntags:\n  - card\n  - cards\n  - suit\n  - deck\n  - gambling\n---\n"
  },
  {
    "path": "docs/content/icons/suit-spade.md",
    "content": "---\ntitle: Suit spade\ncategories:\n  - Entertainment\ntags:\n  - card\n  - cards\n  - suit\n  - deck\n  - gambling\n---\n"
  },
  {
    "path": "docs/content/icons/suitcase-fill.md",
    "content": "---\ntitle: Suitcase fill\ncategories:\n  - Travel\ntags:\n  - luggage\n  - bags\n  - carry-on\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/suitcase-lg-fill.md",
    "content": "---\ntitle: Suitcase lg fill\ncategories:\n  - Travel\ntags:\n  - luggage\n  - bags\n  - carry-on\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/suitcase-lg.md",
    "content": "---\ntitle: Suitcase lg\ncategories:\n  - Travel\ntags:\n  - luggage\n  - bags\n  - carry-on\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/suitcase.md",
    "content": "---\ntitle: Suitcase\ncategories:\n  - Travel\ntags:\n  - luggage\n  - bags\n  - carry-on\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/suitcase2-fill.md",
    "content": "---\ntitle: Suitcase2 fill\ncategories:\n  - Travel\ntags:\n  - luggage\n  - bags\n  - carry-on\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/suitcase2.md",
    "content": "---\ntitle: Suitcase2\ncategories:\n  - Travel\ntags:\n  - luggage\n  - bags\n  - carry-on\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/sun-fill.md",
    "content": "---\ntitle: Sun fill\ncategories:\n  - Weather\ntags:\n  - solar\n  - weather\n---\n"
  },
  {
    "path": "docs/content/icons/sun.md",
    "content": "---\ntitle: Sun\ncategories:\n  - Weather\ntags:\n  - solar\n  - weather\n---\n"
  },
  {
    "path": "docs/content/icons/sunglasses.md",
    "content": "---\ntitle: Sunglasses\ncategories:\n  - Real world\ntags:\n  - shades\n  - cool\n  - aviators\n---\n"
  },
  {
    "path": "docs/content/icons/sunrise-fill.md",
    "content": "---\ntitle: Sunrise fill\ncategories:\n  - Weather\ntags:\n  - dawn\n---\n"
  },
  {
    "path": "docs/content/icons/sunrise.md",
    "content": "---\ntitle: Sunrise\ncategories:\n  - Weather\ntags:\n  - dawn\n---\n"
  },
  {
    "path": "docs/content/icons/sunset-fill.md",
    "content": "---\ntitle: Sunset fill\ncategories:\n  - Weather\ntags:\n  - dusk\n---\n"
  },
  {
    "path": "docs/content/icons/sunset.md",
    "content": "---\ntitle: Sunset\ncategories:\n  - Weather\ntags:\n  - dusk\n---\n"
  },
  {
    "path": "docs/content/icons/superscript.md",
    "content": "---\ntitle: Superscript\ncategories:\n  - Typography\ntags:\n  - text\n  - type\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/symmetry-horizontal.md",
    "content": "---\ntitle: Symmetry horizontal\ncategories:\n  - Graphics\ntags:\n  - align\n  - orientation\n  - mirror\n---\n"
  },
  {
    "path": "docs/content/icons/symmetry-vertical.md",
    "content": "---\ntitle: Symmetry vertical\ncategories:\n  - Graphics\ntags:\n  - align\n  - orientation\n  - mirror\n---\n"
  },
  {
    "path": "docs/content/icons/table.md",
    "content": "---\ntitle: Table\ncategories:\n  - Files and folders\ntags:\n  - spreadsheet\n---\n"
  },
  {
    "path": "docs/content/icons/tablet-fill.md",
    "content": "---\ntitle: Tablet fill\ncategories:\n  - Devices\ntags:\n  - mobile\n---\n"
  },
  {
    "path": "docs/content/icons/tablet-landscape-fill.md",
    "content": "---\ntitle: Tablet landscape fill\ncategories:\n  - Devices\ntags:\n  - mobile\n---\n"
  },
  {
    "path": "docs/content/icons/tablet-landscape.md",
    "content": "---\ntitle: Tablet landscape\ncategories:\n  - Devices\ntags:\n  - mobile\n---\n"
  },
  {
    "path": "docs/content/icons/tablet.md",
    "content": "---\ntitle: Tablet\ncategories:\n  - Devices\ntags:\n  - mobile\n---\n"
  },
  {
    "path": "docs/content/icons/tag-fill.md",
    "content": "---\ntitle: Tag fill\ncategories:\n  - Real world\ntags:\n  - price\n  - category\n  - taxonomy\n  - label\n---\n"
  },
  {
    "path": "docs/content/icons/tag.md",
    "content": "---\ntitle: Tag\ncategories:\n  - Real world\ntags:\n  - price\n  - category\n  - taxonomy\n  - label\n---\n"
  },
  {
    "path": "docs/content/icons/tags-fill.md",
    "content": "---\ntitle: Tags fill\ncategories:\n  - Real world\ntags:\n  - price\n  - category\n  - taxonomy\n  - label\n---\n"
  },
  {
    "path": "docs/content/icons/tags.md",
    "content": "---\ntitle: Tags\ncategories:\n  - Real world\ntags:\n  - price\n  - category\n  - taxonomy\n  - label\n---\n"
  },
  {
    "path": "docs/content/icons/taxi-front-fill.md",
    "content": "---\ntitle: Taxi front fill\ncategories:\n  - Transportation\ntags:\n  - cab\n  - uber\n  - lyft\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/taxi-front.md",
    "content": "---\ntitle: Taxi front\ncategories:\n  - Transportation\ntags:\n  - cab\n  - uber\n  - lyft\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/telegram.md",
    "content": "---\ntitle: Telegram\ncategories:\n  - Brand\ntags:\n  - social\n  - chat\n---\n"
  },
  {
    "path": "docs/content/icons/telephone-fill.md",
    "content": "---\ntitle: Telephone fill\ncategories:\n  - Communications\ntags:\n  - telephone\n  - phone\n  - call\n---\n"
  },
  {
    "path": "docs/content/icons/telephone-forward-fill.md",
    "content": "---\ntitle: Telephone forward fill\ncategories:\n  - Communications\ntags:\n  - telephone\n  - phone\n  - call\n---\n"
  },
  {
    "path": "docs/content/icons/telephone-forward.md",
    "content": "---\ntitle: Telephone forward\ncategories:\n  - Communications\ntags:\n  - telephone\n  - phone\n  - call\n---\n"
  },
  {
    "path": "docs/content/icons/telephone-inbound-fill.md",
    "content": "---\ntitle: Telephone inbound fill\ncategories:\n  - Communications\ntags:\n  - telephone\n  - phone\n  - call\n---\n"
  },
  {
    "path": "docs/content/icons/telephone-inbound.md",
    "content": "---\ntitle: Telephone inbound\ncategories:\n  - Communications\ntags:\n  - telephone\n  - phone\n  - call\n---\n"
  },
  {
    "path": "docs/content/icons/telephone-minus-fill.md",
    "content": "---\ntitle: Telephone minus fill\ncategories:\n  - Communications\ntags:\n  - telephone\n  - phone\n  - call\n---\n"
  },
  {
    "path": "docs/content/icons/telephone-minus.md",
    "content": "---\ntitle: Telephone minus\ncategories:\n  - Communications\ntags:\n  - telephone\n  - phone\n  - call\n---\n"
  },
  {
    "path": "docs/content/icons/telephone-outbound-fill.md",
    "content": "---\ntitle: Telephone outbound fill\ncategories:\n  - Communications\ntags:\n  - telephone\n  - phone\n  - call\n---\n"
  },
  {
    "path": "docs/content/icons/telephone-outbound.md",
    "content": "---\ntitle: Telephone outbound\ncategories:\n  - Communications\ntags:\n  - telephone\n  - phone\n  - call\n---\n"
  },
  {
    "path": "docs/content/icons/telephone-plus-fill.md",
    "content": "---\ntitle: Telephone plus fill\ncategories:\n  - Communications\ntags:\n  - telephone\n  - phone\n  - call\n---\n"
  },
  {
    "path": "docs/content/icons/telephone-plus.md",
    "content": "---\ntitle: Telephone plus\ncategories:\n  - Communications\ntags:\n  - telephone\n  - phone\n  - call\n---\n"
  },
  {
    "path": "docs/content/icons/telephone-x-fill.md",
    "content": "---\ntitle: Telephone x fill\ncategories:\n  - Communications\ntags:\n  - telephone\n  - phone\n  - call\n---\n"
  },
  {
    "path": "docs/content/icons/telephone-x.md",
    "content": "---\ntitle: Telephone x\ncategories:\n  - Communications\ntags:\n  - telephone\n  - phone\n  - call\n---\n"
  },
  {
    "path": "docs/content/icons/telephone.md",
    "content": "---\ntitle: Telephone\ncategories:\n  - Communications\ntags:\n  - telephone\n  - phone\n  - call\n---\n"
  },
  {
    "path": "docs/content/icons/tencent-qq.md",
    "content": "---\ntitle: Tencent QQ\ncategories:\n  - Brand\ntags:\n  - social\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/terminal-dash.md",
    "content": "---\ntitle: Terminal dash\ncategories:\n  - Apps\ntags:\n  - command-line\n  - cli\n  - command-prompt\n---\n"
  },
  {
    "path": "docs/content/icons/terminal-fill.md",
    "content": "---\ntitle: Terminal fill\ncategories:\n  - Apps\ntags:\n  - command-line\n  - cli\n  - command-prompt\n---\n"
  },
  {
    "path": "docs/content/icons/terminal-plus.md",
    "content": "---\ntitle: Terminal plus\ncategories:\n  - Apps\ntags:\n  - command-line\n  - cli\n  - command-prompt\n---\n"
  },
  {
    "path": "docs/content/icons/terminal-split.md",
    "content": "---\ntitle: Terminal split\ncategories:\n  - Apps\ntags:\n  - command-line\n  - cli\n  - command-prompt\n---\n"
  },
  {
    "path": "docs/content/icons/terminal-x.md",
    "content": "---\ntitle: Terminal x\ncategories:\n  - Apps\ntags:\n  - command-line\n  - cli\n  - command-prompt\n---\n"
  },
  {
    "path": "docs/content/icons/terminal.md",
    "content": "---\ntitle: Terminal\ncategories:\n  - Apps\ntags:\n  - command-line\n  - cli\n  - command-prompt\n---\n"
  },
  {
    "path": "docs/content/icons/text-center.md",
    "content": "---\ntitle: Text center\ncategories:\n  - Typography\ntags:\n  - text\n  - type\n  - justify\n  - alignment\n  - centre\n---\n"
  },
  {
    "path": "docs/content/icons/text-indent-left.md",
    "content": "---\ntitle: Text indent left\ncategories:\n  - Typography\ntags:\n  - text\n  - type\n  - justify\n  - alignment\n---\n"
  },
  {
    "path": "docs/content/icons/text-indent-right.md",
    "content": "---\ntitle: Text indent right\ncategories:\n  - Typography\ntags:\n  - text\n  - type\n  - justify\n  - alignment\n---\n"
  },
  {
    "path": "docs/content/icons/text-left.md",
    "content": "---\ntitle: Text left\ncategories:\n  - Typography\ntags:\n  - text\n  - type\n  - justify\n  - alignment\n---\n"
  },
  {
    "path": "docs/content/icons/text-paragraph.md",
    "content": "---\ntitle: Text paragraph\ncategories:\n  - Typography\ntags:\n  - text\n  - type\n  - paragraph\n  - copy\n---\n"
  },
  {
    "path": "docs/content/icons/text-right.md",
    "content": "---\ntitle: Text right\ncategories:\n  - Typography\ntags:\n  - text\n  - type\n  - justify\n  - alignment\n---\n"
  },
  {
    "path": "docs/content/icons/text-wrap.md",
    "content": "---\ntitle: Text wrap\ncategories:\n  - Typography\ntags:\n  - text\n  - type\n  - \"word wrap\"\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/textarea-resize.md",
    "content": "---\ntitle: Textarea resize\ncategories:\n  - Graphics\ntags:\n  - text\n  - form\n---\n"
  },
  {
    "path": "docs/content/icons/textarea-t.md",
    "content": "---\ntitle: Textarea t\ncategories:\n  - Graphics\ntags:\n  - text\n  - insert\n  - bounding-box\n---\n"
  },
  {
    "path": "docs/content/icons/textarea.md",
    "content": "---\ntitle: Textarea\ncategories:\n  - Graphics\ntags:\n  - text\n  - insert\n  - bounding-box\n---\n"
  },
  {
    "path": "docs/content/icons/thermometer-half.md",
    "content": "---\ntitle: Thermometer half\ncategories:\n  - Weather\ntags:\n  - temperature\n  - weather\n---\n"
  },
  {
    "path": "docs/content/icons/thermometer-high.md",
    "content": "---\ntitle: Thermometer high\ncategories:\n  - Weather\ntags:\n  - temperature\n  - weather\n---\n"
  },
  {
    "path": "docs/content/icons/thermometer-low.md",
    "content": "---\ntitle: Thermometer low\ncategories:\n  - Weather\ntags:\n  - temperature\n  - weather\n---\n"
  },
  {
    "path": "docs/content/icons/thermometer-snow.md",
    "content": "---\ntitle: Thermometer snow\ncategories:\n  - Weather\ntags:\n  - temperature\n  - weather\n---\n"
  },
  {
    "path": "docs/content/icons/thermometer-sun.md",
    "content": "---\ntitle: Thermometer sun\ncategories:\n  - Weather\ntags:\n  - temperature\n  - weather\n---\n"
  },
  {
    "path": "docs/content/icons/thermometer.md",
    "content": "---\ntitle: Thermometer\ncategories:\n  - Real world\ntags:\n  - temperature\n  - weather\n---\n"
  },
  {
    "path": "docs/content/icons/threads-fill.md",
    "content": "---\ntitle: Threads fill\ncategories:\n  - Brand\ntags:\n  - social\n  - chat\n  - instagram\n  - meta\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/threads.md",
    "content": "---\ntitle: Threads\ncategories:\n  - Brand\ntags:\n  - social\n  - chat\n  - instagram\n  - meta\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/three-dots-vertical.md",
    "content": "---\ntitle: Three dots vertical\ncategories:\n  - Controls\ntags:\n  - kebab\n  - more\n  - ellipsis\n  - overflow\n  - menu\n---\n"
  },
  {
    "path": "docs/content/icons/three-dots.md",
    "content": "---\ntitle: Three dots\ncategories:\n  - Controls\ntags:\n  - meatballs\n  - more\n  - ellipsis\n  - overflow\n  - menu\n---\n"
  },
  {
    "path": "docs/content/icons/thunderbolt-fill.md",
    "content": "---\ntitle: Thunderbolt fill\ncategories:\n  - Devices\ntags:\n  - plug\n  - port\n---\n"
  },
  {
    "path": "docs/content/icons/thunderbolt.md",
    "content": "---\ntitle: Thunderbolt\ncategories:\n  - Devices\ntags:\n  - plug\n  - port\n---\n"
  },
  {
    "path": "docs/content/icons/ticket-detailed-fill.md",
    "content": "---\ntitle: Ticket detailed fill\ncategories:\n  - Real world\ntags:\n  - tickets\n  - admission\n---\n"
  },
  {
    "path": "docs/content/icons/ticket-detailed.md",
    "content": "---\ntitle: Ticket detailed\ncategories:\n  - Real world\ntags:\n  - tickets\n  - admission\n---\n"
  },
  {
    "path": "docs/content/icons/ticket-fill.md",
    "content": "---\ntitle: Ticket fill\ncategories:\n  - Real world\ntags:\n  - tickets\n  - admission\n---\n"
  },
  {
    "path": "docs/content/icons/ticket-perforated-fill.md",
    "content": "---\ntitle: Ticket perforated fill\ncategories:\n  - Real world\ntags:\n  - tickets\n  - admission\n---\n"
  },
  {
    "path": "docs/content/icons/ticket-perforated.md",
    "content": "---\ntitle: Ticket perforated\ncategories:\n  - Real world\ntags:\n  - tickets\n  - admission\n---\n"
  },
  {
    "path": "docs/content/icons/ticket.md",
    "content": "---\ntitle: Ticket\ncategories:\n  - Real world\ntags:\n  - tickets\n  - admission\n---\n"
  },
  {
    "path": "docs/content/icons/tiktok.md",
    "content": "---\ntitle: Tiktok\ncategories:\n  - Brand\ntags:\n  - social\n---\n"
  },
  {
    "path": "docs/content/icons/toggle-off.md",
    "content": "---\ntitle: Toggle off\ncategories:\n  - Controls\ntags:\n  - toggle\n  - switch\n  - checkbox\n---\n"
  },
  {
    "path": "docs/content/icons/toggle-on.md",
    "content": "---\ntitle: Toggle on\ncategories:\n  - Controls\ntags:\n  - toggle\n  - switch\n  - checkbox\n---\n"
  },
  {
    "path": "docs/content/icons/toggle2-off.md",
    "content": "---\ntitle: Toggle2 off\ncategories:\n  - Controls\ntags:\n  - toggle\n  - switch\n  - checkbox\n---\n"
  },
  {
    "path": "docs/content/icons/toggle2-on.md",
    "content": "---\ntitle: Toggle2 on\ncategories:\n  - Controls\ntags:\n  - toggle\n  - switch\n  - checkbox\n---\n"
  },
  {
    "path": "docs/content/icons/toggles.md",
    "content": "---\ntitle: Toggles\ncategories:\n  - Controls\ntags:\n  - toggle\n  - switch\n  - checkbox\n---\n"
  },
  {
    "path": "docs/content/icons/toggles2.md",
    "content": "---\ntitle: Toggles2\ncategories:\n  - Controls\ntags:\n  - toggle\n  - switch\n  - checkbox\n---\n"
  },
  {
    "path": "docs/content/icons/tools.md",
    "content": "---\ntitle: Tools\ncategories:\n  - Tools\ntags:\n  - tool\n  - wrench\n  - screwdriver\n---\n"
  },
  {
    "path": "docs/content/icons/tornado.md",
    "content": "---\ntitle: Tornado\ncategories:\n  - Weather\ntags:\n  - wind\n---\n"
  },
  {
    "path": "docs/content/icons/train-freight-front-fill.md",
    "content": "---\ntitle: Train freight front fill\ncategories:\n  - Transportation\ntags:\n  - transit\n  - public\n  - rail\n---\n"
  },
  {
    "path": "docs/content/icons/train-freight-front.md",
    "content": "---\ntitle: Train freight front\ncategories:\n  - Transportation\ntags:\n  - transit\n  - public\n  - rail\n---\n"
  },
  {
    "path": "docs/content/icons/train-front-fill.md",
    "content": "---\ntitle: Train front fill\ncategories:\n  - Transportation\ntags:\n  - transit\n  - public\n  - rail\n---\n"
  },
  {
    "path": "docs/content/icons/train-front.md",
    "content": "---\ntitle: Train front\ncategories:\n  - Transportation\ntags:\n  - transit\n  - public\n  - rail\n---\n"
  },
  {
    "path": "docs/content/icons/train-lightrail-front-fill.md",
    "content": "---\ntitle: Train lightrail front fill\ncategories:\n  - Transportation\ntags:\n  - transit\n  - public\n  - rail\n---\n"
  },
  {
    "path": "docs/content/icons/train-lightrail-front.md",
    "content": "---\ntitle: Train lightrail front\ncategories:\n  - Transportation\ntags:\n  - transit\n  - public\n  - rail\n---\n"
  },
  {
    "path": "docs/content/icons/translate.md",
    "content": "---\ntitle: Translate\ncategories:\n  - Communications\ntags:\n  - translation\n  - languages\n  - language\n---\n"
  },
  {
    "path": "docs/content/icons/transparency.md",
    "content": "---\ntitle: Transparency\ncategories:\n  - Graphics\ntags:\n  - photo\n  - editing\n  - image\n  - picture\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/trash-fill.md",
    "content": "---\ntitle: Trash fill\ncategories:\n  - UI and keyboard\ntags:\n  - trash-can\n  - garbage\n  - delete\n  - remove\n---\n"
  },
  {
    "path": "docs/content/icons/trash.md",
    "content": "---\ntitle: Trash\ncategories:\n  - UI and keyboard\ntags:\n  - trash-can\n  - garbage\n  - delete\n  - remove\n---\n"
  },
  {
    "path": "docs/content/icons/trash2-fill.md",
    "content": "---\ntitle: Trash2 fill\ncategories:\n  - UI and keyboard\ntags:\n  - trash-can\n  - garbage\n  - delete\n  - remove\n---\n"
  },
  {
    "path": "docs/content/icons/trash2.md",
    "content": "---\ntitle: Trash2\ncategories:\n  - UI and keyboard\ntags:\n  - trash-can\n  - garbage\n  - delete\n  - remove\n---\n"
  },
  {
    "path": "docs/content/icons/trash3-fill.md",
    "content": "---\ntitle: Trash3 fill\ncategories:\n  - UI and keyboard\ntags:\n  - trash-can\n  - garbage\n  - delete\n  - remove\n---\n"
  },
  {
    "path": "docs/content/icons/trash3.md",
    "content": "---\ntitle: Trash3\ncategories:\n  - UI and keyboard\ntags:\n  - trash-can\n  - garbage\n  - delete\n  - remove\n---\n"
  },
  {
    "path": "docs/content/icons/tree-fill.md",
    "content": "---\ntitle: Tree fill\ncategories:\n  - Real world\ntags:\n  - tree\n  - forrest\n---\n"
  },
  {
    "path": "docs/content/icons/tree.md",
    "content": "---\ntitle: Tree\ncategories:\n  - Real world\ntags:\n  - tree\n  - forrest\n---\n"
  },
  {
    "path": "docs/content/icons/trello.md",
    "content": "---\ntitle: Trello\ncategories:\n  - Brand\ntags:\n  - kanban\n  - board\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/triangle-fill.md",
    "content": "---\ntitle: Triangle fill\ncategories:\n  - Shapes\ntags:\n  - shape\n---\n"
  },
  {
    "path": "docs/content/icons/triangle-half.md",
    "content": "---\ntitle: Triangle half fill\ncategories:\n  - Shapes\ntags:\n  - shape\n---\n"
  },
  {
    "path": "docs/content/icons/triangle.md",
    "content": "---\ntitle: Triangle\ncategories:\n  - Shapes\ntags:\n  - shape\n---\n"
  },
  {
    "path": "docs/content/icons/trophy-fill.md",
    "content": "---\ntitle: Trophy fill\ncategories:\n  - Real world\ntags:\n  - prize\n  - winning\n---\n"
  },
  {
    "path": "docs/content/icons/trophy.md",
    "content": "---\ntitle: Trophy\ncategories:\n  - Real world\ntags:\n  - prize\n  - winning\n---\n"
  },
  {
    "path": "docs/content/icons/tropical-storm.md",
    "content": "---\ntitle: Tropical storm\ncategories:\n  - Weather\ntags:\n  - hurricane\n---\n"
  },
  {
    "path": "docs/content/icons/truck-flatbed.md",
    "content": "---\ntitle: Truck flatbed\ncategories:\n  - Commerce\ntags:\n  - trucking\n  - shipping\n  - shipment\n  - transport\n  - deliver\n  - delivery\n  - vehicle\n---\n"
  },
  {
    "path": "docs/content/icons/truck-front-fill.md",
    "content": "---\ntitle: Truck front fill\ncategories:\n  - Transportation\ntags:\n  - vehicle\n  - shipping\n  - transit\n  - haul\n  - freight\n---\n"
  },
  {
    "path": "docs/content/icons/truck-front.md",
    "content": "---\ntitle: Truck front\ncategories:\n  - Transportation\ntags:\n  - vehicle\n  - shipping\n  - transit\n  - haul\n  - freight\n---\n"
  },
  {
    "path": "docs/content/icons/truck.md",
    "content": "---\ntitle: Truck\ncategories:\n  - Commerce\ntags:\n  - trucking\n  - shipping\n  - shipment\n  - transport\n  - deliver\n  - delivery\n  - vehicle\n---\n"
  },
  {
    "path": "docs/content/icons/tsunami.md",
    "content": "---\ntitle: Tsunami\ncategories:\n  - Weather\ntags:\n  - wave\n---\n"
  },
  {
    "path": "docs/content/icons/tux.md",
    "content": "---\ntitle: Tux\ncategories:\n  - Brand\ntags:\n  - linux\n  - penguin\n---\n"
  },
  {
    "path": "docs/content/icons/tv-fill.md",
    "content": "---\ntitle: TV fill\ncategories:\n  - Devices\ntags:\n  - television\n  - monitor\n  - display\n---\n"
  },
  {
    "path": "docs/content/icons/tv.md",
    "content": "---\ntitle: TV\ncategories:\n  - Devices\ntags:\n  - television\n  - monitor\n  - display\n---\n"
  },
  {
    "path": "docs/content/icons/twitch.md",
    "content": "---\ntitle: Twitch\ncategories:\n  - Brand\ntags:\n  - social\n---\n"
  },
  {
    "path": "docs/content/icons/twitter-x.md",
    "content": "---\ntitle: Twitter X\ncategories:\n  - Brand\ntags:\n  - social\n  - chat\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/twitter.md",
    "content": "---\ntitle: Twitter\ncategories:\n  - Brand\ntags:\n  - social\n  - chat\n---\n"
  },
  {
    "path": "docs/content/icons/type-bold.md",
    "content": "---\ntitle: Type bold\ncategories:\n  - Typography\ntags:\n  - text\n  - type\n---\n"
  },
  {
    "path": "docs/content/icons/type-h1.md",
    "content": "---\ntitle: Type H1\ncategories:\n  - Typography\ntags:\n  - text\n  - type\n  - heading\n---\n"
  },
  {
    "path": "docs/content/icons/type-h2.md",
    "content": "---\ntitle: Type H2\ncategories:\n  - Typography\ntags:\n  - text\n  - type\n  - heading\n---\n"
  },
  {
    "path": "docs/content/icons/type-h3.md",
    "content": "---\ntitle: Type H3\ncategories:\n  - Typography\ntags:\n  - text\n  - type\n  - heading\n---\n"
  },
  {
    "path": "docs/content/icons/type-h4.md",
    "content": "---\ntitle: Type h4\ncategories:\n  - Typography\ntags:\n  - text\n  - type\n  - heading\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/type-h5.md",
    "content": "---\ntitle: Type h5\ncategories:\n  - Typography\ntags:\n  - text\n  - type\n  - heading\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/type-h6.md",
    "content": "---\ntitle: Type h6\ncategories:\n  - Typography\ntags:\n  - text\n  - type\n  - heading\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/type-italic.md",
    "content": "---\ntitle: Type italic\ncategories:\n  - Typography\ntags:\n  - text\n  - type\n---\n"
  },
  {
    "path": "docs/content/icons/type-strikethrough.md",
    "content": "---\ntitle: Type strikethrough\ncategories:\n  - Typography\ntags:\n  - text\n  - type\n---\n"
  },
  {
    "path": "docs/content/icons/type-underline.md",
    "content": "---\ntitle: Type underline\ncategories:\n  - Typography\ntags:\n  - text\n  - type\n---\n"
  },
  {
    "path": "docs/content/icons/type.md",
    "content": "---\ntitle: Type\ncategories:\n  - Typography\ntags:\n  - text\n  - type\n---\n"
  },
  {
    "path": "docs/content/icons/typescript.md",
    "content": "---\ntitle: TypeScript\ncategories:\n  - Brand\ntags:\n  - frontend\n  - js\n  - ts\n  - web\n---\n"
  },
  {
    "path": "docs/content/icons/ubuntu.md",
    "content": "---\ntitle: Ubuntu\ncategories:\n  - Brand\ntags:\n  - linux\n  - distro\n---\n"
  },
  {
    "path": "docs/content/icons/ui-checks-grid.md",
    "content": "---\ntitle: UI checks grid\ncategories:\n  - Controls\ntags:\n  - checkbox\n  - form\n---\n"
  },
  {
    "path": "docs/content/icons/ui-checks.md",
    "content": "---\ntitle: UI checks\ncategories:\n  - Controls\ntags:\n  - checkbox\n  - form\n---\n"
  },
  {
    "path": "docs/content/icons/ui-radios-grid.md",
    "content": "---\ntitle: UI radios grid\ncategories:\n  - Controls\ntags:\n  - radio\n  - form\n---\n"
  },
  {
    "path": "docs/content/icons/ui-radios.md",
    "content": "---\ntitle: Ui radios\ncategories:\n  - Controls\ntags:\n  - radio\n  - form\n---\n"
  },
  {
    "path": "docs/content/icons/umbrella-fill.md",
    "content": "---\ntitle: Umbrella fill\ncategories:\n  - Weather\ntags:\n  - rain\n---\n"
  },
  {
    "path": "docs/content/icons/umbrella.md",
    "content": "---\ntitle: Umbrella\ncategories:\n  - Weather\ntags:\n  - rain\n---\n"
  },
  {
    "path": "docs/content/icons/unindent.md",
    "content": "---\ntitle: Unindent\ncategories:\n  - UI and Keyboard\ntags:\n  - tab\n  - indent\n---\n"
  },
  {
    "path": "docs/content/icons/union.md",
    "content": "---\ntitle: Union\ncategories:\n  - Graphics\ntags:\n  - graphics\n  - vector\n  - merge\n  - layers\n---\n"
  },
  {
    "path": "docs/content/icons/unity.md",
    "content": "---\ntitle: Unity\ncategories:\n  - Brand\ntags:\n  - gaming\n---\n"
  },
  {
    "path": "docs/content/icons/universal-access-circle.md",
    "content": "---\ntitle: Universal access circle\ncategories:\n  - UI and Keyboard\ntags:\n  - accessibility\n  - a11y\n---\n"
  },
  {
    "path": "docs/content/icons/universal-access.md",
    "content": "---\ntitle: Universal Access\ncategories:\n  - UI and Keyboard\ntags:\n  - accessibility\n  - a11y\n---\n"
  },
  {
    "path": "docs/content/icons/unlock-fill.md",
    "content": "---\ntitle: Unlock fill\ncategories:\n  - Security\ntags:\n  - privacy\n  - security\n---\n"
  },
  {
    "path": "docs/content/icons/unlock.md",
    "content": "---\ntitle: Unlock\ncategories:\n  - Security\ntags:\n  - privacy\n  - security\n---\n"
  },
  {
    "path": "docs/content/icons/unlock2-fill.md",
    "content": "---\ntitle: Unlock2 fill\ncategories:\n  - Security\ntags:\n  - privacy\n  - security\n---\n"
  },
  {
    "path": "docs/content/icons/unlock2.md",
    "content": "---\ntitle: Unlock2\ncategories:\n  - Security\ntags:\n  - privacy\n  - security\n---\n"
  },
  {
    "path": "docs/content/icons/upc-scan.md",
    "content": "---\ntitle: Upc scan\ncategories:\n  - Commerce\ntags:\n  - purchase\n  - barcode\n---\n"
  },
  {
    "path": "docs/content/icons/upc.md",
    "content": "---\ntitle: Upc\ncategories:\n  - Commerce\ntags:\n  - purchase\n  - barcode\n---\n"
  },
  {
    "path": "docs/content/icons/upload.md",
    "content": "---\ntitle: Upload\ncategories:\n  - Miscellaneous\ntags:\n  - arrow\n  - network\n---\n"
  },
  {
    "path": "docs/content/icons/usb-c-fill.md",
    "content": "---\ntitle: USB C fill\ncategories:\n  - Devices\ntags:\n  - port\n  - plug\n---\n"
  },
  {
    "path": "docs/content/icons/usb-c.md",
    "content": "---\ntitle: USB C\ncategories:\n  - Devices\ntags:\n  - port\n  - plug\n---\n"
  },
  {
    "path": "docs/content/icons/usb-drive-fill.md",
    "content": "---\ntitle: USB drive fill\ncategories:\n  - Devices\ntags:\n  - thumb-drive\n---\n"
  },
  {
    "path": "docs/content/icons/usb-drive.md",
    "content": "---\ntitle: USB drive\ncategories:\n  - Devices\ntags:\n  - thumb-drive\n---\n"
  },
  {
    "path": "docs/content/icons/usb-fill.md",
    "content": "---\ntitle: USB fill\ncategories:\n  - Devices\ntags:\n  - port\n  - plug\n---\n"
  },
  {
    "path": "docs/content/icons/usb-micro-fill.md",
    "content": "---\ntitle: USB micro fill\ncategories:\n  - Devices\ntags:\n  - port\n  - plug\n---\n"
  },
  {
    "path": "docs/content/icons/usb-micro.md",
    "content": "---\ntitle: USB micro\ncategories:\n  - Devices\ntags:\n  - port\n  - plug\n---\n"
  },
  {
    "path": "docs/content/icons/usb-mini-fill.md",
    "content": "---\ntitle: USB mini fill\ncategories:\n  - Devices\ntags:\n  - port\n  - plug\n---\n"
  },
  {
    "path": "docs/content/icons/usb-mini.md",
    "content": "---\ntitle: USB mini\ncategories:\n  - Devices\ntags:\n  - port\n  - plug\n---\n"
  },
  {
    "path": "docs/content/icons/usb-plug-fill.md",
    "content": "---\ntitle: USB plug fill\ncategories:\n  - Devices\ntags:\n  - port\n  - plug\n---\n"
  },
  {
    "path": "docs/content/icons/usb-plug.md",
    "content": "---\ntitle: USB plug\ncategories:\n  - Devices\ntags:\n  - port\n  - plug\n---\n"
  },
  {
    "path": "docs/content/icons/usb-symbol.md",
    "content": "---\ntitle: USB symbol\ncategories:\n  - Devices\ntags:\n  - port\n  - plug\n---\n"
  },
  {
    "path": "docs/content/icons/usb.md",
    "content": "---\ntitle: USB\ncategories:\n  - Devices\ntags:\n  - port\n  - plug\n---\n"
  },
  {
    "path": "docs/content/icons/valentine.md",
    "content": "---\ntitle: Valentine\ncategories:\n  - Love\ntags:\n  - love\n  - romance\n  - valentine\n---\n"
  },
  {
    "path": "docs/content/icons/valentine2.md",
    "content": "---\ntitle: Valentine2\ncategories:\n  - Love\ntags:\n  - love\n  - romance\n  - valentine\n---\n"
  },
  {
    "path": "docs/content/icons/vector-pen.md",
    "content": "---\ntitle: Vector pen\ncategories:\n  - Graphics\ntags:\n  - graphics\n  - vector\n  - pen\n---\n"
  },
  {
    "path": "docs/content/icons/view-list.md",
    "content": "---\ntitle: View list\ncategories:\n  - UI and keyboard\ntags:\n  - view\n  - rearrange\n---\n"
  },
  {
    "path": "docs/content/icons/view-stacked.md",
    "content": "---\ntitle: View stacked\ncategories:\n  - UI and keyboard\ntags:\n  - view\n  - rearrange\n---\n"
  },
  {
    "path": "docs/content/icons/vignette.md",
    "content": "---\ntitle: Vignette\ncategories:\n  - Graphics\ntags:\n  - photo\n  - editing\n  - image\n  - picture\nadded: 1.11.0\n---\n"
  },
  {
    "path": "docs/content/icons/vimeo.md",
    "content": "---\ntitle: Vimeo\ncategories:\n  - Brand\ntags:\n  - social\n---\n"
  },
  {
    "path": "docs/content/icons/vinyl-fill.md",
    "content": "---\ntitle: Vinyl fill\ncategories:\n  - Media\ntags:\n  - audio\n  - music\n  - record\n---\n"
  },
  {
    "path": "docs/content/icons/vinyl.md",
    "content": "---\ntitle: Vinyl\ncategories:\n  - Media\ntags:\n  - audio\n  - music\n  - record\n---\n"
  },
  {
    "path": "docs/content/icons/virus.md",
    "content": "---\ntitle: Virus\ncategories:\n  - Medical\ntags:\n  - covid\n  - viral\n---\n"
  },
  {
    "path": "docs/content/icons/virus2.md",
    "content": "---\ntitle: Virus2\ncategories:\n  - Medical\ntags:\n  - covid\n  - viral\n---\n"
  },
  {
    "path": "docs/content/icons/voicemail.md",
    "content": "---\ntitle: Voicemail\ncategories:\n  - Communications\ntags:\n  - voicemail\n  - message\n  - telephone\n---\n"
  },
  {
    "path": "docs/content/icons/volume-down-fill.md",
    "content": "---\ntitle: Volume down fill\ncategories:\n  - Media\ntags:\n  - audio\n  - video\n  - av\n  - sound\n---\n"
  },
  {
    "path": "docs/content/icons/volume-down.md",
    "content": "---\ntitle: Volume down\ncategories:\n  - Media\ntags:\n  - audio\n  - video\n  - av\n  - sound\n---\n"
  },
  {
    "path": "docs/content/icons/volume-mute-fill.md",
    "content": "---\ntitle: Volume mute fill\ncategories:\n  - Media\ntags:\n  - audio\n  - video\n  - av\n  - sound\n---\n"
  },
  {
    "path": "docs/content/icons/volume-mute.md",
    "content": "---\ntitle: Volume mute\ncategories:\n  - Media\ntags:\n  - audio\n  - video\n  - av\n  - sound\n---\n"
  },
  {
    "path": "docs/content/icons/volume-off-fill.md",
    "content": "---\ntitle: Volume off fill\ncategories:\n  - Media\ntags:\n  - audio\n  - video\n  - av\n  - sound\n---\n"
  },
  {
    "path": "docs/content/icons/volume-off.md",
    "content": "---\ntitle: Volume off\ncategories:\n  - Media\ntags:\n  - audio\n  - video\n  - av\n  - sound\n---\n"
  },
  {
    "path": "docs/content/icons/volume-up-fill.md",
    "content": "---\ntitle: Volume up fill\ncategories:\n  - Media\ntags:\n  - audio\n  - video\n  - av\n  - sound\n---\n"
  },
  {
    "path": "docs/content/icons/volume-up.md",
    "content": "---\ntitle: Volume up\ncategories:\n  - Media\ntags:\n  - audio\n  - video\n  - av\n  - sound\n---\n"
  },
  {
    "path": "docs/content/icons/vr.md",
    "content": "---\ntitle: VR\ncategories:\n  - Typography\ntags:\n  - divider\n  - vertical-rule\n---\n"
  },
  {
    "path": "docs/content/icons/wallet-fill.md",
    "content": "---\ntitle: Wallet fill\ncategories:\n  - Commerce\ntags:\n  - cards\n  - money\n  - funds\n  - cash\n  - payment\n---\n"
  },
  {
    "path": "docs/content/icons/wallet.md",
    "content": "---\ntitle: Wallet\ncategories:\n  - Commerce\ntags:\n  - cards\n  - money\n  - funds\n  - cash\n  - payment\n---\n"
  },
  {
    "path": "docs/content/icons/wallet2.md",
    "content": "---\ntitle: Wallet2\ncategories:\n  - Commerce\ntags:\n  - cards\n  - money\n  - funds\n  - cash\n  - payment\n---\n"
  },
  {
    "path": "docs/content/icons/watch.md",
    "content": "---\ntitle: Watch\ncategories:\n  - Devices\ntags:\n  - wearables\n  - clock\n---\n"
  },
  {
    "path": "docs/content/icons/water.md",
    "content": "---\ntitle: Water\ncategories:\n  - Weather\ntags:\n  - waves\n  - levels\n---\n"
  },
  {
    "path": "docs/content/icons/webcam-fill.md",
    "content": "---\ntitle: Webcam fill\ncategories:\n  - Devices\ntags:\n  - camera\n  - video\n---\n"
  },
  {
    "path": "docs/content/icons/webcam.md",
    "content": "---\ntitle: Webcam\ncategories:\n  - Devices\ntags:\n  - camera\n  - video\n---\n"
  },
  {
    "path": "docs/content/icons/wechat.md",
    "content": "---\ntitle: Wechat\ncategories:\n  - Brand\ntags:\n  - social\n  - messaging\n---\n"
  },
  {
    "path": "docs/content/icons/whatsapp.md",
    "content": "---\ntitle: Whatsapp\ncategories:\n  - Brand\ntags:\n  - social\n  - facebook\n  - chat\n---\n"
  },
  {
    "path": "docs/content/icons/wifi-1.md",
    "content": "---\ntitle: Wifi 1\ncategories:\n  - Communications\ntags:\n  - internet\n  - network\n  - wireless\n---\n"
  },
  {
    "path": "docs/content/icons/wifi-2.md",
    "content": "---\ntitle: Wifi 2\ncategories:\n  - Communications\ntags:\n  - internet\n  - network\n  - wireless\n---\n"
  },
  {
    "path": "docs/content/icons/wifi-off.md",
    "content": "---\ntitle: Wifi off\ncategories:\n  - Communications\ntags:\n  - internet\n  - network\n  - wireless\n---\n"
  },
  {
    "path": "docs/content/icons/wifi.md",
    "content": "---\ntitle: Wifi\ncategories:\n  - Communications\ntags:\n  - internet\n  - network\n  - wireless\n---\n"
  },
  {
    "path": "docs/content/icons/wikipedia.md",
    "content": "---\ntitle: Wikipedia\ncategories:\n  - Brand\ntags:\n  - encyclopedia\nadded: 1.10.0\n---\n"
  },
  {
    "path": "docs/content/icons/wind.md",
    "content": "---\ntitle: Wind\ncategories:\n  - Weather\ntags:\n  - windy\n  - breeze\n---\n"
  },
  {
    "path": "docs/content/icons/window-dash.md",
    "content": "---\ntitle: Window dash\ncategories:\n  - Apps\ntags:\n  - application\n  - desktop\n  - app\n---\n"
  },
  {
    "path": "docs/content/icons/window-desktop.md",
    "content": "---\ntitle: Window desktop\ncategories:\n  - Apps\ntags:\n  - application\n  - desktop\n  - app\n---\n"
  },
  {
    "path": "docs/content/icons/window-dock.md",
    "content": "---\ntitle: Window dock\ncategories:\n  - Apps\ntags:\n  - application\n  - desktop\n  - os\n---\n"
  },
  {
    "path": "docs/content/icons/window-fullscreen.md",
    "content": "---\ntitle: Window fullscreen\ncategories:\n  - Apps\ntags:\n  - application\n  - desktop\n  - app\n---\n"
  },
  {
    "path": "docs/content/icons/window-plus.md",
    "content": "---\ntitle: Window plus\ncategories:\n  - Apps\ntags:\n  - application\n  - desktop\n  - app\n---\n"
  },
  {
    "path": "docs/content/icons/window-sidebar.md",
    "content": "---\ntitle: Window sidebar\ncategories:\n  - Apps\ntags:\n  - application\n  - desktop\n---\n"
  },
  {
    "path": "docs/content/icons/window-split.md",
    "content": "---\ntitle: Window split\ncategories:\n  - Apps\ntags:\n  - application\n  - desktop\n  - app\n---\n"
  },
  {
    "path": "docs/content/icons/window-stack.md",
    "content": "---\ntitle: Window stack\ncategories:\n  - Apps\ntags:\n  - application\n  - desktop\n  - app\n  - windows\n---\n"
  },
  {
    "path": "docs/content/icons/window-x.md",
    "content": "---\ntitle: Window x\ncategories:\n  - Apps\ntags:\n  - application\n  - desktop\n  - app\n---\n"
  },
  {
    "path": "docs/content/icons/window.md",
    "content": "---\ntitle: Window\ncategories:\n  - Layout\ntags:\n  - app\n  - application\n---\n"
  },
  {
    "path": "docs/content/icons/windows.md",
    "content": "---\ntitle: Windows\ncategories:\n  - Brand\ntags:\n  - microsoft\n  - msft\n  - windows\n---\n"
  },
  {
    "path": "docs/content/icons/wordpress.md",
    "content": "---\ntitle: Wordpress\ncategories:\n  - Brand\ntags:\n  - social\n---\n"
  },
  {
    "path": "docs/content/icons/wrench-adjustable-circle-fill.md",
    "content": "---\ntitle: Wrench adjustable circle fill\ncategories:\n  - Tools\ntags:\n  - tool\n---\n"
  },
  {
    "path": "docs/content/icons/wrench-adjustable-circle.md",
    "content": "---\ntitle: Wrench adjustable circle\ncategories:\n  - Tools\ntags:\n  - tool\n---\n"
  },
  {
    "path": "docs/content/icons/wrench-adjustable.md",
    "content": "---\ntitle: Wrench adjustable\ncategories:\n  - Tools\ntags:\n  - tool\n---\n"
  },
  {
    "path": "docs/content/icons/wrench.md",
    "content": "---\ntitle: Wrench\ncategories:\n  - Tools\ntags:\n  - tool\n---\n"
  },
  {
    "path": "docs/content/icons/x-circle-fill.md",
    "content": "---\ntitle: X circle fill\ncategories:\n  - Alerts, warnings, and signs\ntags:\n  - x\n  - delete\n  - remove\n  - reset\n  - clear\n  - cancel\n  - close\n  - exit\n---\n"
  },
  {
    "path": "docs/content/icons/x-circle.md",
    "content": "---\ntitle: X circle\ncategories:\n  - Alerts, warnings, and signs\ntags:\n  - x\n  - delete\n  - remove\n  - reset\n  - clear\n  - cancel\n  - close\n  - exit\n---\n"
  },
  {
    "path": "docs/content/icons/x-diamond-fill.md",
    "content": "---\ntitle: X diamond fill\ncategories:\n  - Alerts, warnings, and signs\ntags:\n  - x\n  - delete\n  - reset\n  - clear\n  - cancel\n  - close\n  - exit\n---\n"
  },
  {
    "path": "docs/content/icons/x-diamond.md",
    "content": "---\ntitle: X diamond\ncategories:\n  - Alerts, warnings, and signs\ntags:\n  - x\n  - delete\n  - reset\n  - clear\n  - cancel\n  - close\n  - exit\n---\n"
  },
  {
    "path": "docs/content/icons/x-lg.md",
    "content": "---\ntitle: X lg\ncategories:\n  - Alerts, warnings, and signs\ntags:\n  - x\n  - delete\n  - remove\n  - reset\n  - clear\n  - cancel\n  - close\n  - exit\n  - math\n---\n"
  },
  {
    "path": "docs/content/icons/x-octagon-fill.md",
    "content": "---\ntitle: X octagon fill\ncategories:\n  - Alerts, warnings, and signs\ntags:\n  - x\n  - delete\n  - remove\n  - reset\n  - clear\n  - cancel\n  - close\n  - exit\n---\n"
  },
  {
    "path": "docs/content/icons/x-octagon.md",
    "content": "---\ntitle: X octagon\ncategories:\n  - Alerts, warnings, and signs\ntags:\n  - x\n  - delete\n  - remove\n  - reset\n  - clear\n  - cancel\n  - close\n  - exit\n---\n"
  },
  {
    "path": "docs/content/icons/x-square-fill.md",
    "content": "---\ntitle: X square fill\ncategories:\n  - Alerts, warnings, and signs\ntags:\n  - x\n  - delete\n  - remove\n  - reset\n  - clear\n  - cancel\n  - close\n  - exit\n---\n"
  },
  {
    "path": "docs/content/icons/x-square.md",
    "content": "---\ntitle: X square\ncategories:\n  - Alerts, warnings, and signs\ntags:\n  - x\n  - delete\n  - remove\n  - reset\n  - clear\n  - cancel\n  - close\n  - exit\n---\n"
  },
  {
    "path": "docs/content/icons/x.md",
    "content": "---\ntitle: X\ncategories:\n  - Alerts, warnings, and signs\ntags:\n  - x\n  - delete\n  - remove\n  - reset\n  - clear\n  - cancel\n  - close\n  - exit\n  - math\n---\n"
  },
  {
    "path": "docs/content/icons/xbox.md",
    "content": "---\ntitle: Xbox\ncategories:\n  - Brand\ntags:\n  - microsoft\n  - gaming\n---\n"
  },
  {
    "path": "docs/content/icons/yelp.md",
    "content": "---\ntitle: Yelp\ncategories:\n  - Brand\ntags:\n  - social\n  - reviews\n---\n"
  },
  {
    "path": "docs/content/icons/yin-yang.md",
    "content": "---\ntitle: Yin yang\ncategories:\n  - Real world\ntags:\n  - peace\n---\n"
  },
  {
    "path": "docs/content/icons/youtube.md",
    "content": "---\ntitle: Youtube\ncategories:\n  - Brand\ntags:\n  - social\n  - video\n  - google\n---\n"
  },
  {
    "path": "docs/content/icons/zoom-in.md",
    "content": "---\ntitle: Zoom in\ncategories:\n  - Graphics\ntags:\n  - magnify\n  - scale\n---\n"
  },
  {
    "path": "docs/content/icons/zoom-out.md",
    "content": "---\ntitle: Zoom out\ncategories:\n  - Graphics\ntags:\n  - minify\n  - scale\n---\n"
  },
  {
    "path": "docs/content/sprite.md",
    "content": "---\ntitle: Icon Sprite\ndescription: Use Bootstrap Icons as an SVG sprite, built from our SVGs and easily customized with CSS.\nlayout: sprite\n---\n"
  },
  {
    "path": "docs/layouts/_default/404.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n  <head>\n    {{ partial \"head\" . }}\n  </head>\n  <body class=\"d-flex flex-column min-vh-100\">\n    {{ partialCached \"skippy\" . }}\n    {{ partialCached \"navbar\" . }}\n\n    <main class=\"my-auto p-5\" id=\"content\">\n      {{ .Content }}\n    </main>\n\n    {{- partialCached \"scripts\" . \"default\" }}\n  </body>\n</html>\n"
  },
  {
    "path": "docs/layouts/_default/home.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n  <head>\n    {{ partial \"head\" . }}\n  </head>\n  <body id=\"icons-body\">\n    {{ partialCached \"skippy\" . }}\n    {{ partialCached \"navbar\" . }}\n    {{ partialCached \"home/hero\" . }}\n\n    <main class=\"container-xxl bd-gutter\" id=\"content\">\n      {{ partialCached \"icons\" . \"home\" }}\n      {{ .Content }}\n    </main>\n\n    {{- partialCached \"footer\" . }}\n    {{- partialCached \"scripts\" . \"home\" }}\n  </body>\n</html>\n"
  },
  {
    "path": "docs/layouts/_default/sprite.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n  <head>\n    {{ partial \"head\" . }}\n  </head>\n  <body id=\"icons-body\" class=\"text-center\">\n    {{ partialCached \"skippy\" . }}\n    {{ partialCached \"navbar\" . }}\n\n    <main class=\"container-xxl bd-gutter\" id=\"content\">\n      <nav aria-label=\"breadcrumb\">\n        <ol class=\"breadcrumb my-4 p-0\">\n          <li class=\"breadcrumb-item\"><a href=\"/\">Icons</a></li>\n          <li class=\"breadcrumb-item active\" aria-current=\"page\">SVG Sprite</li>\n        </ol>\n      </nav>\n      {{ partialCached \"icons\" . \"fonts\" }}\n\n      {{ .Content }}\n    </main>\n\n    {{- partialCached \"footer\" . }}\n    {{- partialCached \"scripts\" . \"fonts\" }}\n  </body>\n</html>\n"
  },
  {
    "path": "docs/layouts/alias.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n  <head>\n    <meta charset=\"utf-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n    <title>{{ .Permalink }}</title>\n    <link rel=\"canonical\" href=\"{{ .Permalink }}\">\n    <meta name=\"robots\" content=\"noindex\">\n    <meta http-equiv=\"refresh\" content=\"0; url={{ .Permalink }}\">\n  </head>\n</html>\n"
  },
  {
    "path": "docs/layouts/icons/list.html",
    "content": ""
  },
  {
    "path": "docs/layouts/icons/single.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n  <head>\n    {{ partial \"head\" . }}\n  </head>\n  <body id=\"icons-body\">\n    {{ partialCached \"skippy\" . }}\n    {{ partialCached \"navbar\" . }}\n\n    <main class=\"container icon-examples\" id=\"content\">\n      <nav aria-label=\"breadcrumb\">\n        <ol class=\"breadcrumb my-4 p-0\">\n          <li class=\"breadcrumb-item\"><a href=\"/\">Icons</a></li>\n          <li class=\"breadcrumb-item active\" aria-current=\"page\">{{ .Title }}</li>\n        </ol>\n      </nav>\n\n      <div class=\"row align-items-md-center\">\n        <div class=\"col-md-6 col-lg-8\">\n          <h1>{{ .Title }}</h1>\n\n          {{ if or .Params.tags .Params.categories -}}\n          <ul class=\"list-unstyled mb-3 mb-md-0\">\n            {{ with .Params.tags }}<li><strong>Tags:</strong> {{ delimit . \", \" }}</li>{{ end }}\n            {{ with .Params.categories }}<li><strong>Category:</strong> {{ delimit . \", \" }}</li>{{ end }}\n          </ul>\n          {{- end }}\n        </div>\n        <div class=\"col-md-6 col-lg-4\">\n          {{ partialCached \"ads\" . }}\n        </div>\n      </div>\n\n      <hr class=\"my-4\">\n\n      {{- $localSvgPath := printf \"/icons/%s.svg\" .File.TranslationBaseName -}}\n      {{- $svgPath := path.Join \"/assets/\" $localSvgPath -}}\n      {{- $svgHtml := readFile $localSvgPath | chomp | safeHTML -}}\n\n      <div class=\"row gx-lg-5\">\n        <div class=\"col-lg-8 mb-4\">\n          <div class=\"icon-demo mb-4 border rounded-3 d-flex align-items-center justify-content-center p-3 py-6\" style=\"font-size: 10em\" role=\"img\" aria-label=\"{{ .Title }} - large preview\">\n            {{ $svgHtml }}\n          </div>\n\n          <h2>Examples</h2>\n          <div class=\"p-3 p-md-4 border rounded-3 icon-demo-examples\">\n            <div class=\"fs-2 mb-3\">\n              {{ $svgHtml }}\n              Heading\n            </div>\n            <div class=\"fs-4 mb-3\">\n              {{ $svgHtml }}\n              Smaller heading\n            </div>\n            <p>\n              Inline text {{ $svgHtml }}\n            </p>\n            <p>\n              <a href=\"#\" class=\"text-decoration-none\">\n                Example link text\n                {{ $svgHtml }}\n              </a>\n            </p>\n            <div class=\"d-flex gap-2 mb-3\">\n              <button type=\"button\" class=\"btn btn-primary\">\n                {{ $svgHtml }}\n                Button\n              </button>\n              <button type=\"button\" class=\"btn btn-success\">\n                {{ $svgHtml }}\n                Button\n              </button>\n              <button type=\"button\" class=\"btn btn-outline-danger\">\n                {{ $svgHtml }}\n                Button\n              </button>\n            </div>\n            <div class=\"d-flex gap-2 mb-3\">\n              <button type=\"button\" class=\"btn btn-secondary\">\n                {{ $svgHtml }}\n              </button>\n              <div class=\"btn-group\">\n                <button type=\"button\" class=\"btn btn-outline-secondary\">\n                  {{ $svgHtml }}\n                  <span class=\"visually-hidden\">Button</span>\n                </button>\n                <button type=\"button\" class=\"btn btn-outline-secondary\">\n                  {{ $svgHtml }}\n                  <span class=\"visually-hidden\">Button</span>\n                </button>\n                <button type=\"button\" class=\"btn btn-outline-secondary\">\n                  {{ $svgHtml }}\n                  <span class=\"visually-hidden\">Button</span>\n                </button>\n              </div>\n            </div>\n            <div class=\"col-md-6\">\n              <div class=\"input-group\">\n                <span class=\"input-group-text\" id=\"basic-addon1\">\n                  {{ $svgHtml }}\n                </span>\n                <input type=\"text\" class=\"form-control\" placeholder=\"Input group example\" aria-label=\"Input group example\" aria-describedby=\"basic-addon1\">\n              </div>\n            </div>\n          </div>\n        </div>\n        <div class=\"col-lg-4 mb-4\">\n          <h2 class=\"fs-3\">Download</h2>\n          <p>Download the SVG to use or edit.</p>\n          <a href=\"{{ $svgPath }}\" class=\"btn btn-bd-primary mb-4\" download>Download SVG</a>\n\n          <h2 class=\"fs-3\">Icon font</h2>\n          <p>Using the web font? Copy, paste, and go.</p>\n\n          <div class=\"mb-4\">\n            {{ $iconFontSnippet := printf `<i class=\"bi bi-%s\"></i>` .File.TranslationBaseName -}}\n            {{- highlight $iconFontSnippet \"html\" \"\" }}\n          </div>\n\n          <h2 class=\"fs-3\">Code point</h2>\n          <div class=\"mb-4\">\n            {{ $codepointsResource := resources.Get \"font/bootstrap-icons.json\" -}}\n            {{ $codepoints := $codepointsResource | transform.Unmarshal -}}\n            {{ $hexCodepoint :=  printf \"%X\" (int (index $codepoints .File.TranslationBaseName)) }}\n            <ul class=\"list-unstyled\">\n              <li>\n                Unicode: <code>U+{{- $hexCodepoint}}</code>\n              </li>\n              <li>\n                CSS: <code>\\{{- $hexCodepoint}}</code>\n              </li>\n              <li>\n                JS: <code>\\u{{- $hexCodepoint}}</code>\n              </li>\n              <li>\n                HTML: <code>&amp;#x{{- $hexCodepoint}};</code>\n              </li>\n            </ul>\n          </div>\n\n          <h2 class=\"fs-3\">Copy HTML</h2>\n          <p>Paste the SVG right into your project's code.</p>\n\n          <div id=\"copy-error-callout\" class=\"alert alert-info d-none\" role=\"alert\"></div>\n\n          {{ highlight $svgHtml \"html\" \"\" }}\n        </div>\n      </div>\n    </main>\n\n    {{- partialCached \"footer\" . }}\n    {{- partialCached \"scripts\" . \"default\" }}\n  </body>\n</html>\n"
  },
  {
    "path": "docs/layouts/partials/ads.html",
    "content": "<script async src=\"https://cdn.carbonads.com/carbon.js?serve=CE7D4277&placement=iconsgetbootstrapcom\" id=\"_carbonads_js\"></script>\n"
  },
  {
    "path": "docs/layouts/partials/analytics.html",
    "content": "<script defer src=\"https://cdn.usefathom.com/script.js\" data-site=\"ITUSEYJG\"></script>\n"
  },
  {
    "path": "docs/layouts/partials/favicons.html",
    "content": "{{ \"<!-- Favicons -->\" | safeHTML }}\n<link rel=\"apple-touch-icon\" href=\"/assets/img/favicons/apple-touch-icon.png\" sizes=\"180x180\">\n<link rel=\"icon\" href=\"/assets/img/favicons/favicon-32x32.png\" sizes=\"32x32\" type=\"image/png\">\n<link rel=\"icon\" href=\"/assets/img/favicons/favicon-16x16.png\" sizes=\"16x16\" type=\"image/png\">\n<link rel=\"manifest\" href=\"/assets/img/favicons/manifest.json\">\n<link rel=\"mask-icon\" href=\"/assets/img/favicons/safari-pinned-tab.svg\" color=\"#712cf9\">\n<link rel=\"icon\" href=\"/assets/img/favicons/favicon.ico\">\n<meta name=\"theme-color\" content=\"#712cf9\">\n"
  },
  {
    "path": "docs/layouts/partials/footer.html",
    "content": "<footer class=\"bd-footer py-4 py-md-5 mt-5 bg-body-tertiary\">\n  <div class=\"container py-4 py-md-5 px-4 px-md-3 text-body-secondary\">\n    <div class=\"row\">\n      <div class=\"col-lg-3 mb-3\">\n        <a class=\"d-inline-flex align-items-center mb-2 text-body-secondary text-decoration-none\" href=\"/\" aria-label=\"Bootstrap\">\n          {{ partial \"icons/bootstrap-white-fill.svg\" (dict \"class\" \"d-block me-2\" \"width\" \"40\" \"height\" \"32\") }}\n          <span class=\"fs-5\">Bootstrap</span>\n        </a>\n        <ul class=\"list-unstyled small\">\n          <li class=\"mb-2\">Designed and built with all the love in the world by the <a href=\"{{ .Site.Params.main }}/docs/{{ .Site.Params.docs_version }}/about/team/\">Bootstrap team</a> with the help of <a href=\"{{ .Site.Params.repo }}/graphs/contributors\">our contributors</a>.</li>\n          <li class=\"mb-2\">Code licensed <a href=\"{{ .Site.Params.repo }}/blob/main/LICENSE\" target=\"_blank\" rel=\"license noopener\">MIT</a>, docs <a href=\"https://creativecommons.org/licenses/by/3.0/\" target=\"_blank\" rel=\"license noopener\">CC BY 3.0</a>.</li>\n        </ul>\n      </div>\n      <div class=\"col-6 col-lg-2 offset-lg-1 mb-3\">\n        <h5>Links</h5>\n        <ul class=\"list-unstyled\">\n          <li class=\"mb-2\"><a href=\"{{ .Site.Params.main }}/\">Home</a></li>\n          <li class=\"mb-2\"><a href=\"{{ .Site.Params.main }}/docs/{{ .Site.Params.docs_version }}/\">Docs</a></li>\n          <li class=\"mb-2\"><a href=\"{{ .Site.Params.main }}/docs/{{ .Site.Params.docs_version }}/examples/\">Examples</a></li>\n          <li class=\"mb-2\"><a href=\"{{ .Site.Params.icons }}\">Icons</a></li>\n          <li class=\"mb-2\"><a href=\"{{ .Site.Params.themes }}\">Themes</a></li>\n          <li class=\"mb-2\"><a href=\"{{ .Site.Params.blog }}\">Blog</a></li>\n          <li class=\"mb-2\"><a href=\"{{ .Site.Params.swag }}\">Swag Store</a></li>\n        </ul>\n      </div>\n      <div class=\"col-6 col-lg-2 mb-3\">\n        <h5>Guides</h5>\n        <ul class=\"list-unstyled\">\n          <li class=\"mb-2\"><a href=\"{{ .Site.Params.main }}/docs/{{ .Site.Params.docs_version }}/getting-started/\">Getting started</a></li>\n          <li class=\"mb-2\"><a href=\"{{ .Site.Params.main }}/docs/{{ .Site.Params.docs_version }}/examples/starter-template/\">Starter template</a></li>\n          <li class=\"mb-2\"><a href=\"{{ .Site.Params.main }}/docs/{{ .Site.Params.docs_version }}/getting-started/webpack/\">Webpack</a></li>\n          <li class=\"mb-2\"><a href=\"{{ .Site.Params.main }}/docs/{{ .Site.Params.docs_version }}/getting-started/parcel/\">Parcel</a></li>\n          <li class=\"mb-2\"><a href=\"{{ .Site.Params.main }}/docs/{{ .Site.Params.docs_version }}/getting-started/vite/\">Vite</a></li>\n        </ul>\n      </div>\n      <div class=\"col-6 col-lg-2 mb-3\">\n        <h5>Projects</h5>\n        <ul class=\"list-unstyled\">\n          <li class=\"mb-2\"><a href=\"{{ .Site.Params.github_org }}/bootstrap\">Bootstrap 5</a></li>\n          <li class=\"mb-2\"><a href=\"{{ .Site.Params.github_org }}/bootstrap/tree/v4-dev\">Bootstrap 4</a></li>\n          <li class=\"mb-2\"><a href=\"{{ .Site.Params.github_org }}/icons\">Icons</a></li>\n          <li class=\"mb-2\"><a href=\"{{ .Site.Params.github_org }}/rfs\">RFS</a></li>\n          <li class=\"mb-2\"><a href=\"{{ .Site.Params.github_org }}/bootstrap-npm-starter\">npm starter</a></li>\n        </ul>\n      </div>\n      <div class=\"col-6 col-lg-2 mb-3\">\n        <h5>Community</h5>\n        <ul class=\"list-unstyled\">\n          <li class=\"mb-2\"><a href=\"{{ .Site.Params.github_org }}/bootstrap/issues\">Issues</a></li>\n          <li class=\"mb-2\"><a href=\"{{ .Site.Params.github_org }}/bootstrap/discussions\">Discussions</a></li>\n          <li class=\"mb-2\"><a href=\"https://github.com/sponsors/twbs\">Corporate sponsors</a></li>\n          <li class=\"mb-2\"><a href=\"{{ .Site.Params.opencollective }}\">Open Collective</a></li>\n          <li class=\"mb-2\"><a href=\"https://stackoverflow.com/questions/tagged/bootstrap-5\">Stack Overflow</a></li>\n        </ul>\n      </div>\n    </div>\n  </div>\n</footer>\n"
  },
  {
    "path": "docs/layouts/partials/head.html",
    "content": "<meta charset=\"utf-8\">\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n<title>{{ if .IsHome }}{{ .Site.Title | markdownify }} · {{ .Site.Params.description | markdownify }}{{ else }}{{ .Title | markdownify }} · {{ .Site.Title | markdownify }}{{ end }}</title>\n<meta name=\"description\" content=\"{{ .Page.Params.description | default .Site.Params.description | markdownify }}\">\n<meta name=\"generator\" content=\"Hugo {{ hugo.Version }}\">\n\n<link rel=\"canonical\" href=\"{{ .Permalink }}\">\n\n{{- $colorModeJS := resources.Get \"js/color-modes.js\" | resources.Copy \"/assets/js/color-modes.js\" -}}\n<script src=\"{{ $colorModeJS.Permalink | relURL }}\"></script>\n\n{{ partialCached \"stylesheet\" . }}\n{{ partialCached \"favicons\" . }}\n{{ partial \"social\" . }}\n{{ partialCached \"analytics\" . }}\n"
  },
  {
    "path": "docs/layouts/partials/home/hero.html",
    "content": "<div class=\"hero py-5 text-center text-lg-start\">\n  <div class=\"container-xxl bd-gutter\">\n    <div class=\"row flex-lg-row-reverse\">\n      <div class=\"col-6 mx-auto col-lg-5 mx-lg-0\">\n        <img srcset=\"/assets/img/icons-hero.png, /assets/img/icons-hero@2x.png 2x\"\n             src=\"/assets/img/icons-hero.png\"\n             class=\"img-fluid my-3 mx-auto\"\n             alt=\"Bootstrap Icons\" width=\"450\" height=\"340\">\n      </div>\n      <div class=\"col-lg-7\">\n        <a class=\"d-block d-sm-inline-block py-1 px-3 mb-4 text-decoration-none rounded-3 hero-notice\" href=\"{{ .Site.Params.blog }}/2023/09/12/bootstrap-icons-1-11-0/\">\n          <strong>New in v1.11.0:</strong> 100 new icons!\n        </a>\n        <h1 class=\"f0\">Bootstrap Icons</h1>\n        <p class=\"mb-4 f3 font-weight-normal\">Free, high quality, open source icon library with over 2,000 icons. Include them anyway you like—SVGs, SVG sprite, or web fonts. Use them with or without <a href=\"{{ .Site.Params.main }}/\">Bootstrap</a> in any project.</p>\n\n        <div class=\"d-flex flex-column flex-md-row align-items-stretch justify-content-center justify-content-md-start mb-5 fs-5\">\n          <div class=\"fs-5 d-inline-block mb-3 me-md-3 mb-md-0\">\n            {{ highlight \"npm i bootstrap-icons\" \"sh\" \"\" }}\n          </div>\n          <a class=\"btn btn-lg btn-figma d-flex align-items-center justify-content-center\" href=\"{{ .Site.Params.icons_figma }}\" target=\"_blank\" rel=\"noopener\">\n            {{ partial \"icons/figma.svg\" (dict \"class\" \"me-2\" \"width\" \"18\" \"height\" \"24\") }}\n            Open in Figma\n          </a>\n        </div>\n\n        {{ partialCached \"ads\" . }}\n\n        <hr class=\"mx-auto mx-lg-0 my-5\">\n\n        <p class=\"text-muted\">\n          Currently <a href=\"{{ .Site.Params.icons_repo }}/releases/tag/v{{ .Site.Params.version }}\">v{{ .Site.Params.version }}</a>\n          <span class=\"px-1\">&#8226;</span>\n          <a href=\"#icons\">Icons</a>\n          <span class=\"px-1\">&#8226;</span>\n          <a href=\"/sprite/\">Icon Sprite</a>\n          <span class=\"px-1\">&#8226;</span>\n          <a href=\"#install\">Install</a>\n          <span class=\"px-1\">&#8226;</span>\n          <a href=\"#usage\">Usage</a>\n          <span class=\"px-1\">&#8226;</span>\n          <a href=\"#styling\">Styling</a>\n          <span class=\"px-1\">&#8226;</span>\n          <a href=\"#accessibility\">Accessibility</a>\n          <span class=\"px-1\">&#8226;</span>\n          <a href=\"{{ .Site.Params.icons_repo }}\">GitHub repo</a>\n        </p>\n      </div>\n    </div>\n  </div>\n</div>\n"
  },
  {
    "path": "docs/layouts/partials/icons.html",
    "content": "<div class=\"my-5\">\n  <div class=\"d-flex mb-4\">\n    <h2 id=\"icons\" class=\"mb-0\">Icons</h2>\n    <form class=\"subnav-search d-flex flex-nowrap ms-auto\">\n      <label for=\"search\" class=\"visually-hidden\">Search for icons</label>\n      <input class=\"form-control search mb-0\" id=\"search\" type=\"search\" placeholder=\"Start typing to filter...\" autocomplete=\"off\">\n    </form>\n  </div>\n  <ul id=\"icons-list\" class=\"row row-cols-3 row-cols-sm-4 row-cols-lg-6 row-cols-xl-8 list-unstyled list\">\n    {{ range (where .Site.RegularPages \"Type\" \"icons\") -}}\n      {{- $filename := .File.TranslationBaseName -}}\n      {{- with .Site.GetPage .File.Path }}\n      <li class=\"col mb-4\" data-name=\"{{ $filename }}\"{{ with .Params.tags }} data-tags=\"{{ delimit . \" \" }}\"{{ end }}{{ with .Params.categories }} data-categories=\"{{ delimit . \" \" | lower }}\"{{ end }}>\n        <a class=\"d-block text-body-emphasis text-decoration-none\" href=\"{{ .RelPermalink }}\">\n          <div class=\"px-3 py-4 mb-2 bg-body-secondary text-center rounded\">\n            {{ if $.IsHome -}}\n            <i class=\"bi bi-{{ $filename }}\"></i>\n            {{- else -}}\n            <svg class=\"bi\" width=\"1em\" height=\"1em\" fill=\"currentColor\">\n              <use xlink:href=\"../bootstrap-icons.svg#{{ $filename }}\"/>\n            </svg>\n            {{- end }}\n          </div>\n          <div class=\"name text-muted text-decoration-none text-center pt-1\">{{ $filename }}</div>\n        </a>\n      </li>\n      {{- end }}\n    {{- end }}\n  </ul>\n</div>\n"
  },
  {
    "path": "docs/layouts/partials/navbar.html",
    "content": "<header class=\"navbar navbar-expand-lg navbar-dark bd-navbar sticky-top\">\n  <nav class=\"container-xxl bd-gutter flex-wrap flex-lg-nowrap\" aria-label=\"Main navigation\">\n    <div class=\"d-lg-none\" style=\"width: 2.25rem;\"></div>\n\n    <a class=\"navbar-brand p-0 me-0 me-lg-2\" href=\"{{ .Site.Params.main }}/\" aria-label=\"Bootstrap\">\n      {{ partial \"icons/bootstrap-white-fill.svg\" (dict \"class\" \"d-block my-1\" \"width\" \"40\" \"height\" \"32\") }}\n    </a>\n\n    <button class=\"navbar-toggler d-flex d-lg-none order-3 p-2\" type=\"button\" data-bs-toggle=\"offcanvas\" data-bs-target=\"#bdNavbar\" aria-controls=\"bdNavbar\" aria-expanded=\"false\" aria-label=\"Toggle navigation\">\n      <i class=\"bi bi-three-dots\" aria-hidden=\"true\"></i>\n    </button>\n\n    <div class=\"offcanvas-lg offcanvas-end flex-grow-1\" id=\"bdNavbar\" aria-labelledby=\"bdNavbarOffcanvasLabel\">\n      <div class=\"offcanvas-header px-4 pb-0\">\n        <h5 class=\"offcanvas-title text-white\" id=\"bdNavbarOffcanvasLabel\">Bootstrap</h5>\n        <button type=\"button\" class=\"btn-close btn-close-white\" data-bs-dismiss=\"offcanvas\" aria-label=\"Close\" data-bs-target=\"#bdNavbar\"></button>\n      </div>\n\n      <div class=\"offcanvas-body p-4 pt-0 p-lg-0\">\n        <hr class=\"d-lg-none text-white-50\">\n        <ul class=\"navbar-nav flex-row flex-wrap bd-navbar-nav\">\n          <li class=\"nav-item col-6 col-lg-auto\">\n            <a class=\"nav-link py-2 px-0 px-lg-2\" href=\"{{ .Site.Params.main }}/docs/{{ .Site.Params.docs_version }}/getting-started/introduction/\" target=\"_blank\" rel=\"noopener\">Docs</a>\n          </li>\n          <li class=\"nav-item col-6 col-lg-auto\">\n            <a class=\"nav-link py-2 px-0 px-lg-2\" href=\"{{ .Site.Params.main }}/docs/{{ .Site.Params.docs_version }}/examples/\" target=\"_blank\" rel=\"noopener\">Examples</a>\n          </li>\n          <li class=\"nav-item col-6 col-lg-auto\">\n            <a class=\"nav-link py-2 px-0 px-lg-2 active\" href=\"/\">Icons</a>\n          </li>\n          <li class=\"nav-item col-6 col-lg-auto\">\n            <a class=\"nav-link py-2 px-0 px-lg-2\" href=\"{{ .Site.Params.themes }}\" target=\"_blank\" rel=\"noopener\">Themes</a>\n          </li>\n          <li class=\"nav-item col-6 col-lg-auto\">\n            <a class=\"nav-link py-2 px-0 px-lg-2\" href=\"{{ .Site.Params.blog }}\" target=\"_blank\" rel=\"noopener\">Blog</a>\n          </li>\n        </ul>\n\n        <hr class=\"d-lg-none text-white-50\">\n\n        <ul class=\"navbar-nav flex-row flex-wrap ms-md-auto\">\n          <li class=\"nav-item col-6 col-lg-auto\">\n            <a class=\"nav-link py-2 px-0 px-lg-2\" href=\"{{ .Site.Params.github_org }}\" target=\"_blank\" rel=\"noopener\">\n              {{ partial \"icons/github.svg\" (dict \"class\" \"navbar-nav-svg\" \"width\" \"16\" \"height\" \"16\") }}\n              <small class=\"d-lg-none ms-2\">GitHub</small>\n            </a>\n          </li>\n          <li class=\"nav-item col-6 col-lg-auto\">\n            <a class=\"nav-link py-2 px-0 px-lg-2\" href=\"https://twitter.com/{{ .Site.Params.twitter }}\" target=\"_blank\" rel=\"noopener\">\n              {{ partial \"icons/twitter.svg\" (dict \"class\" \"navbar-nav-svg\" \"width\" \"16\" \"height\" \"16\") }}\n              <small class=\"d-lg-none ms-2\">Twitter</small>\n            </a>\n          </li>\n          <li class=\"nav-item col-6 col-lg-auto\">\n            <a class=\"nav-link py-2 px-0 px-lg-2\" href=\"{{ .Site.Params.opencollective }}\" target=\"_blank\" rel=\"noopener\">\n              {{ partial \"icons/opencollective.svg\" (dict \"class\" \"navbar-nav-svg\" \"width\" \"16\" \"height\" \"16\") }}\n              <small class=\"d-lg-none ms-2\">Open Collective</small>\n            </a>\n          </li>\n\n          <li class=\"nav-item py-2 py-lg-1 col-12 col-lg-auto\">\n            <div class=\"vr d-none d-lg-flex h-100 mx-lg-2 text-white\"></div>\n            <hr class=\"d-lg-none my-2 text-white-50\">\n          </li>\n\n          <li class=\"nav-item dropdown\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" style=\"display: none;\">\n              <symbol id=\"circle-half\" viewBox=\"0 0 16 16\">\n                <path d=\"M8 15A7 7 0 1 0 8 1v14zm0 1A8 8 0 1 1 8 0a8 8 0 0 1 0 16z\"/>\n              </symbol>\n              <symbol id=\"moon-stars-fill\" viewBox=\"0 0 16 16\">\n                <path d=\"M6 .278a.768.768 0 0 1 .08.858 7.208 7.208 0 0 0-.878 3.46c0 4.021 3.278 7.277 7.318 7.277.527 0 1.04-.055 1.533-.16a.787.787 0 0 1 .81.316.733.733 0 0 1-.031.893A8.349 8.349 0 0 1 8.344 16C3.734 16 0 12.286 0 7.71 0 4.266 2.114 1.312 5.124.06A.752.752 0 0 1 6 .278z\"/>\n                <path d=\"M10.794 3.148a.217.217 0 0 1 .412 0l.387 1.162c.173.518.579.924 1.097 1.097l1.162.387a.217.217 0 0 1 0 .412l-1.162.387a1.734 1.734 0 0 0-1.097 1.097l-.387 1.162a.217.217 0 0 1-.412 0l-.387-1.162A1.734 1.734 0 0 0 9.31 6.593l-1.162-.387a.217.217 0 0 1 0-.412l1.162-.387a1.734 1.734 0 0 0 1.097-1.097l.387-1.162zM13.863.099a.145.145 0 0 1 .274 0l.258.774c.115.346.386.617.732.732l.774.258a.145.145 0 0 1 0 .274l-.774.258a1.156 1.156 0 0 0-.732.732l-.258.774a.145.145 0 0 1-.274 0l-.258-.774a1.156 1.156 0 0 0-.732-.732l-.774-.258a.145.145 0 0 1 0-.274l.774-.258c.346-.115.617-.386.732-.732L13.863.1z\"/>\n              </symbol>\n              <symbol id=\"sun-fill\" viewBox=\"0 0 16 16\">\n                <path d=\"M8 12a4 4 0 1 0 0-8 4 4 0 0 0 0 8zM8 0a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-1 0v-2A.5.5 0 0 1 8 0zm0 13a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-1 0v-2A.5.5 0 0 1 8 13zm8-5a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1 0-1h2a.5.5 0 0 1 .5.5zM3 8a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1 0-1h2A.5.5 0 0 1 3 8zm10.657-5.657a.5.5 0 0 1 0 .707l-1.414 1.415a.5.5 0 1 1-.707-.708l1.414-1.414a.5.5 0 0 1 .707 0zm-9.193 9.193a.5.5 0 0 1 0 .707L3.05 13.657a.5.5 0 0 1-.707-.707l1.414-1.414a.5.5 0 0 1 .707 0zm9.193 2.121a.5.5 0 0 1-.707 0l-1.414-1.414a.5.5 0 0 1 .707-.707l1.414 1.414a.5.5 0 0 1 0 .707zM4.464 4.465a.5.5 0 0 1-.707 0L2.343 3.05a.5.5 0 1 1 .707-.707l1.414 1.414a.5.5 0 0 1 0 .708z\"/>\n              </symbol>\n            </svg>\n\n            <button class=\"btn btn-link nav-link py-2 px-0 px-lg-2 dropdown-toggle d-flex align-items-center\"\n                    id=\"bd-theme\"\n                    type=\"button\"\n                    aria-expanded=\"false\"\n                    data-bs-toggle=\"dropdown\"\n                    data-bs-display=\"static\"\n                    aria-label=\"Toggle theme (auto)\">\n              <svg class=\"bi my-1 theme-icon-active\"><use href=\"#circle-half\"></use></svg>\n              <span class=\"d-lg-none ms-2\" id=\"bd-theme-text\">Toggle theme</span>\n            </button>\n            <ul class=\"dropdown-menu dropdown-menu-end\" aria-labelledby=\"bd-theme-text\">\n              <li>\n                <button type=\"button\" class=\"dropdown-item d-flex align-items-center\" data-bs-theme-value=\"light\" aria-pressed=\"false\">\n                  <svg class=\"bi me-2 opacity-50 theme-icon\"><use href=\"#sun-fill\"></use></svg>\n                  Light\n                  <svg class=\"bi ms-auto d-none\"><use href=\"#check2\"></use></svg>\n                </button>\n              </li>\n              <li>\n                <button type=\"button\" class=\"dropdown-item d-flex align-items-center\" data-bs-theme-value=\"dark\" aria-pressed=\"false\">\n                  <svg class=\"bi me-2 opacity-50 theme-icon\"><use href=\"#moon-stars-fill\"></use></svg>\n                  Dark\n                  <svg class=\"bi ms-auto d-none\"><use href=\"#check2\"></use></svg>\n                </button>\n              </li>\n              <li>\n                <button type=\"button\" class=\"dropdown-item d-flex align-items-center active\" data-bs-theme-value=\"auto\" aria-pressed=\"true\">\n                  <svg class=\"bi me-2 opacity-50 theme-icon\"><use href=\"#circle-half\"></use></svg>\n                  Auto\n                  <svg class=\"bi ms-auto d-none\"><use href=\"#check2\"></use></svg>\n                </button>\n              </li>\n            </ul>\n          </li>\n\n        </ul>\n      </div>\n    </div>\n  </nav>\n</header>\n"
  },
  {
    "path": "docs/layouts/partials/scripts.html",
    "content": "<script async src=\"/assets/js/vendor/bootstrap.bundle.min.js\"></script>\n\n{{- $esbuildOptions := dict \"target\" \"es2019\" -}}\n\n{{- if eq hugo.Environment \"production\" -}}\n  {{- $esbuildOptions = merge $esbuildOptions (dict \"minify\" \"true\") -}}\n{{- end -}}\n\n{{- if or .IsHome (eq .Page.Layout \"sprite\") -}}\n  {{- $searchJs := resources.Get \"js/search.js\" | js.Build $esbuildOptions | resources.Copy \"/assets/js/search.js\" -}}\n  <script async src=\"{{ $searchJs.Permalink | relURL }}\"></script>\n{{- end }}\n\n{{- $application := resources.Get \"js/application.js\" | js.Build $esbuildOptions | resources.Copy \"/assets/js/application.js\" -}}\n<script async src=\"{{ $application.Permalink | relURL }}\"></script>\n"
  },
  {
    "path": "docs/layouts/partials/skippy.html",
    "content": "<a class=\"skippy visually-hidden-focusable\" href=\"#content\">\n  <span class=\"skippy-text\">Skip to main content</span>\n</a>\n"
  },
  {
    "path": "docs/layouts/partials/social.html",
    "content": "{{ \"<!-- Twitter -->\" | safeHTML }}\n<meta name=\"twitter:card\" content=\"{{ if .IsHome }}summary_large_image{{ else }}summary{{ end }}\">\n<meta name=\"twitter:site\" content=\"@{{ .Site.Params.twitter }}\">\n<meta name=\"twitter:creator\" content=\"@{{ .Site.Params.twitter }}\">\n<meta name=\"twitter:title\" content=\"{{ .Title | default .Site.Title | markdownify }}\">\n<meta name=\"twitter:description\" content=\"{{ .Page.Params.description | default .Site.Params.description | markdownify }}\">\n<meta name=\"twitter:image\" content=\"{{ .Site.Params.social_image_path | absURL }}\">\n\n{{ \"<!-- Facebook -->\" | safeHTML }}\n<meta property=\"og:url\" content=\"{{ .Permalink }}\">\n<meta property=\"og:title\" content=\"{{ .Title | default .Site.Title | markdownify }}\">\n<meta property=\"og:description\" content=\"{{ .Page.Params.description | default .Site.Params.description | markdownify }}\">\n<meta property=\"og:type\" content=\"{{ if .IsPage }}article{{ else }}website{{ end }}\">\n<meta property=\"og:image\" content=\"{{ .Site.Params.social_image_path | absURL }}\">\n<meta property=\"og:image:type\" content=\"image/png\">\n<meta property=\"og:image:width\" content=\"1000\">\n<meta property=\"og:image:height\" content=\"500\">\n"
  },
  {
    "path": "docs/layouts/partials/stylesheet.html",
    "content": "<link rel=\"stylesheet\" href=\"/assets/font/bootstrap-icons.min.css\">\n\n{{- $sassOptions := dict \"targetPath\" \"assets/css/docs.css\" \"precision\" 6 -}}\n{{- $postcssOptions := dict \"use\" \"autoprefixer\" \"noMap\" true -}}\n\n{{- if eq hugo.Environment \"production\" -}}\n  {{- $sassOptions = merge $sassOptions (dict \"outputStyle\" \"compressed\") -}}\n{{- end -}}\n\n{{- $style := resources.Get \"scss/docs.scss\" | toCSS $sassOptions | postCSS $postcssOptions -}}\n\n<link rel=\"stylesheet\" href=\"{{ $style.Permalink | relURL }}\">\n"
  },
  {
    "path": "docs/layouts/robots.txt",
    "content": "# www.robotstxt.org\n\n{{- $isProduction := eq hugo.Environment \"production\" -}}\n{{- $isNetlify := eq (getenv \"NETLIFY\") \"true\" -}}\n{{- $allowCrawling := and (not $isNetlify) $isProduction -}}\n\n{{ if $allowCrawling }}\n# Allow crawling of all content\n{{- end }}\nUser-agent: *\nDisallow:{{ if not $allowCrawling }} /{{ end }}\nSitemap: {{ \"/sitemap.xml\" | absURL }}\n"
  },
  {
    "path": "docs/layouts/shortcodes/example.html",
    "content": "{{- /*\n  Usage: `example [args]`\n\n  `args` are optional and can be one of the following:\n    id: the `div`'s id - default: \"\"\n    class: any extra class(es) to be added to the `div` - default \"\"\n    show_preview: if the preview should be output in the HTML - default: `true`\n    show_markup: if the markup should be output in the HTML - default: `true`\n*/ -}}\n\n{{- $show_preview := .Get \"show_preview\" | default true -}}\n{{- $show_markup := .Get \"show_markup\" | default true -}}\n{{- $input := .Inner -}}\n\n{{- if eq $show_preview true -}}\n<div{{ with .Get \"id\" }} id=\"{{ . }}\"{{ end }} class=\"bd-example{{ with .Get \"class\" }} {{ . }}{{ end }}\">\n  {{- $input -}}\n</div>\n{{- end -}}\n\n{{- if eq $show_markup true -}}\n  {{- $content := replaceRE `<svg class=\"bd\\-placeholder\\-img(?:\\-lg)?(?: *?bd\\-placeholder\\-img\\-lg)? ?(.*?)\".*?<\\/svg>\\n` `<img src=\"...\" class=\"$1\" alt=\"...\">` $input -}}\n  {{- $content = replaceRE `(class=\" *?\")` \"\" $content -}}\n  {{- highlight (trim $content \"\\n\") \"html\" \"\" -}}\n{{- end -}}\n"
  },
  {
    "path": "docs/layouts/shortcodes/md.html",
    "content": "{{- .Inner | markdownify -}}\n"
  },
  {
    "path": "docs/layouts/sitemap.xml",
    "content": "{{ printf \"<?xml version=\\\"1.0\\\" encoding=\\\"utf-8\\\" standalone=\\\"yes\\\"?>\" | safeHTML }}\n<urlset xmlns=\"http://www.sitemaps.org/schemas/sitemap/0.9\" xmlns:xhtml=\"http://www.w3.org/1999/xhtml\">\n  {{- range .Data.Pages -}}{{ if ne .Params.sitemap_exclude true }}\n  <url>\n    <loc>{{ .Permalink }}</loc>{{ if not .Lastmod.IsZero }}\n    <lastmod>{{ safeHTML (.Lastmod.Format \"2006-01-02T15:04:05-07:00\") }}</lastmod>{{ end }}{{ with .Sitemap.ChangeFreq }}\n    <changefreq>{{ . }}</changefreq>{{ end }}{{ if ge .Sitemap.Priority 0.0 }}\n    <priority>{{ .Sitemap.Priority }}</priority>{{ end }}\n  </url>{{ end }}{{ end }}\n</urlset>\n"
  },
  {
    "path": "docs/static/CNAME",
    "content": "icons.getbootstrap.com\n"
  },
  {
    "path": "docs/static/assets/img/favicons/manifest.json",
    "content": "{\n  \"name\": \"Bootstrap Icons\",\n  \"short_name\": \"Bootstrap Icons\",\n  \"icons\": [\n    {\n      \"src\": \"/assets/img/favicons/android-chrome-192x192.png\",\n      \"sizes\": \"192x192\",\n      \"type\": \"image/png\"\n    },\n    {\n      \"src\": \"/assets/img/favicons/android-chrome-512x512.png\",\n      \"sizes\": \"512x512\",\n      \"type\": \"image/png\"\n    }\n  ],\n  \"start_url\": \"/?utm_source=a2hs\",\n  \"theme_color\": \"#7952b3\",\n  \"background_color\": \"#7952b3\",\n  \"display\": \"standalone\"\n}\n"
  },
  {
    "path": "eslint.config.mjs",
    "content": "import js from '@eslint/js'\nimport globals from 'globals'\n\n/** @type {import('eslint').Linter.FlatConfig[]} */\nexport default [\n  // global ignores\n  {\n    ignores: [\n      '**/*.min.js',\n      '**/dist/**',\n      '**/vendor/**',\n      '_site/**',\n      'node_modules/**',\n      'resources/**',\n      '**/.fantasticonrc.js'\n    ],\n  },\n  {\n    languageOptions: {\n      ecmaVersion: 2020,\n      sourceType: 'module',\n      globals: {\n        ...globals.nodeBuiltin\n      }\n    },\n    linterOptions: {\n      reportUnusedDisableDirectives: 'error'\n    }\n  },\n  js.configs.recommended,\n  {\n    files: [\n      '**/*.js',\n      '**/*.mjs'\n    ],\n    rules: {\n      'no-return-await': 'error',\n      'object-curly-spacing': [\n        'error',\n        'always'\n      ],\n      'prefer-template': 'error',\n      semi: [\n        'error',\n        'never'\n      ],\n      strict: 'error'\n    }\n  },\n  {\n    files: [\n      'docs/assets/js/**'\n    ],\n    languageOptions: {\n      globals: {\n        ...globals.browser\n      }\n    }\n  }\n]\n"
  },
  {
    "path": "font/bootstrap-icons.css",
    "content": "/*!\n * Bootstrap Icons v1.13.1 (https://icons.getbootstrap.com/)\n * Copyright 2019-2024 The Bootstrap Authors\n * Licensed under MIT (https://github.com/twbs/icons/blob/main/LICENSE)\n */\n\n@font-face {\n  font-display: block;\n  font-family: \"bootstrap-icons\";\n  src: url(\"./fonts/bootstrap-icons.woff2?e34853135f9e39acf64315236852cd5a\") format(\"woff2\"),\nurl(\"./fonts/bootstrap-icons.woff?e34853135f9e39acf64315236852cd5a\") format(\"woff\");\n}\n\n.bi::before,\n[class^=\"bi-\"]::before,\n[class*=\" bi-\"]::before {\n  display: inline-block;\n  font-family: bootstrap-icons !important;\n  font-style: normal;\n  font-weight: normal !important;\n  font-variant: normal;\n  text-transform: none;\n  line-height: 1;\n  vertical-align: -.125em;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n.bi-123::before { content: \"\\f67f\"; }\n.bi-alarm-fill::before { content: \"\\f101\"; }\n.bi-alarm::before { content: \"\\f102\"; }\n.bi-align-bottom::before { content: \"\\f103\"; }\n.bi-align-center::before { content: \"\\f104\"; }\n.bi-align-end::before { content: \"\\f105\"; }\n.bi-align-middle::before { content: \"\\f106\"; }\n.bi-align-start::before { content: \"\\f107\"; }\n.bi-align-top::before { content: \"\\f108\"; }\n.bi-alt::before { content: \"\\f109\"; }\n.bi-app-indicator::before { content: \"\\f10a\"; }\n.bi-app::before { content: \"\\f10b\"; }\n.bi-archive-fill::before { content: \"\\f10c\"; }\n.bi-archive::before { content: \"\\f10d\"; }\n.bi-arrow-90deg-down::before { content: \"\\f10e\"; }\n.bi-arrow-90deg-left::before { content: \"\\f10f\"; }\n.bi-arrow-90deg-right::before { content: \"\\f110\"; }\n.bi-arrow-90deg-up::before { content: \"\\f111\"; }\n.bi-arrow-bar-down::before { content: \"\\f112\"; }\n.bi-arrow-bar-left::before { content: \"\\f113\"; }\n.bi-arrow-bar-right::before { content: \"\\f114\"; }\n.bi-arrow-bar-up::before { content: \"\\f115\"; }\n.bi-arrow-clockwise::before { content: \"\\f116\"; }\n.bi-arrow-counterclockwise::before { content: \"\\f117\"; }\n.bi-arrow-down-circle-fill::before { content: \"\\f118\"; }\n.bi-arrow-down-circle::before { content: \"\\f119\"; }\n.bi-arrow-down-left-circle-fill::before { content: \"\\f11a\"; }\n.bi-arrow-down-left-circle::before { content: \"\\f11b\"; }\n.bi-arrow-down-left-square-fill::before { content: \"\\f11c\"; }\n.bi-arrow-down-left-square::before { content: \"\\f11d\"; }\n.bi-arrow-down-left::before { content: \"\\f11e\"; }\n.bi-arrow-down-right-circle-fill::before { content: \"\\f11f\"; }\n.bi-arrow-down-right-circle::before { content: \"\\f120\"; }\n.bi-arrow-down-right-square-fill::before { content: \"\\f121\"; }\n.bi-arrow-down-right-square::before { content: \"\\f122\"; }\n.bi-arrow-down-right::before { content: \"\\f123\"; }\n.bi-arrow-down-short::before { content: \"\\f124\"; }\n.bi-arrow-down-square-fill::before { content: \"\\f125\"; }\n.bi-arrow-down-square::before { content: \"\\f126\"; }\n.bi-arrow-down-up::before { content: \"\\f127\"; }\n.bi-arrow-down::before { content: \"\\f128\"; }\n.bi-arrow-left-circle-fill::before { content: \"\\f129\"; }\n.bi-arrow-left-circle::before { content: \"\\f12a\"; }\n.bi-arrow-left-right::before { content: \"\\f12b\"; }\n.bi-arrow-left-short::before { content: \"\\f12c\"; }\n.bi-arrow-left-square-fill::before { content: \"\\f12d\"; }\n.bi-arrow-left-square::before { content: \"\\f12e\"; }\n.bi-arrow-left::before { content: \"\\f12f\"; }\n.bi-arrow-repeat::before { content: \"\\f130\"; }\n.bi-arrow-return-left::before { content: \"\\f131\"; }\n.bi-arrow-return-right::before { content: \"\\f132\"; }\n.bi-arrow-right-circle-fill::before { content: \"\\f133\"; }\n.bi-arrow-right-circle::before { content: \"\\f134\"; }\n.bi-arrow-right-short::before { content: \"\\f135\"; }\n.bi-arrow-right-square-fill::before { content: \"\\f136\"; }\n.bi-arrow-right-square::before { content: \"\\f137\"; }\n.bi-arrow-right::before { content: \"\\f138\"; }\n.bi-arrow-up-circle-fill::before { content: \"\\f139\"; }\n.bi-arrow-up-circle::before { content: \"\\f13a\"; }\n.bi-arrow-up-left-circle-fill::before { content: \"\\f13b\"; }\n.bi-arrow-up-left-circle::before { content: \"\\f13c\"; }\n.bi-arrow-up-left-square-fill::before { content: \"\\f13d\"; }\n.bi-arrow-up-left-square::before { content: \"\\f13e\"; }\n.bi-arrow-up-left::before { content: \"\\f13f\"; }\n.bi-arrow-up-right-circle-fill::before { content: \"\\f140\"; }\n.bi-arrow-up-right-circle::before { content: \"\\f141\"; }\n.bi-arrow-up-right-square-fill::before { content: \"\\f142\"; }\n.bi-arrow-up-right-square::before { content: \"\\f143\"; }\n.bi-arrow-up-right::before { content: \"\\f144\"; }\n.bi-arrow-up-short::before { content: \"\\f145\"; }\n.bi-arrow-up-square-fill::before { content: \"\\f146\"; }\n.bi-arrow-up-square::before { content: \"\\f147\"; }\n.bi-arrow-up::before { content: \"\\f148\"; }\n.bi-arrows-angle-contract::before { content: \"\\f149\"; }\n.bi-arrows-angle-expand::before { content: \"\\f14a\"; }\n.bi-arrows-collapse::before { content: \"\\f14b\"; }\n.bi-arrows-expand::before { content: \"\\f14c\"; }\n.bi-arrows-fullscreen::before { content: \"\\f14d\"; }\n.bi-arrows-move::before { content: \"\\f14e\"; }\n.bi-aspect-ratio-fill::before { content: \"\\f14f\"; }\n.bi-aspect-ratio::before { content: \"\\f150\"; }\n.bi-asterisk::before { content: \"\\f151\"; }\n.bi-at::before { content: \"\\f152\"; }\n.bi-award-fill::before { content: \"\\f153\"; }\n.bi-award::before { content: \"\\f154\"; }\n.bi-back::before { content: \"\\f155\"; }\n.bi-backspace-fill::before { content: \"\\f156\"; }\n.bi-backspace-reverse-fill::before { content: \"\\f157\"; }\n.bi-backspace-reverse::before { content: \"\\f158\"; }\n.bi-backspace::before { content: \"\\f159\"; }\n.bi-badge-3d-fill::before { content: \"\\f15a\"; }\n.bi-badge-3d::before { content: \"\\f15b\"; }\n.bi-badge-4k-fill::before { content: \"\\f15c\"; }\n.bi-badge-4k::before { content: \"\\f15d\"; }\n.bi-badge-8k-fill::before { content: \"\\f15e\"; }\n.bi-badge-8k::before { content: \"\\f15f\"; }\n.bi-badge-ad-fill::before { content: \"\\f160\"; }\n.bi-badge-ad::before { content: \"\\f161\"; }\n.bi-badge-ar-fill::before { content: \"\\f162\"; }\n.bi-badge-ar::before { content: \"\\f163\"; }\n.bi-badge-cc-fill::before { content: \"\\f164\"; }\n.bi-badge-cc::before { content: \"\\f165\"; }\n.bi-badge-hd-fill::before { content: \"\\f166\"; }\n.bi-badge-hd::before { content: \"\\f167\"; }\n.bi-badge-tm-fill::before { content: \"\\f168\"; }\n.bi-badge-tm::before { content: \"\\f169\"; }\n.bi-badge-vo-fill::before { content: \"\\f16a\"; }\n.bi-badge-vo::before { content: \"\\f16b\"; }\n.bi-badge-vr-fill::before { content: \"\\f16c\"; }\n.bi-badge-vr::before { content: \"\\f16d\"; }\n.bi-badge-wc-fill::before { content: \"\\f16e\"; }\n.bi-badge-wc::before { content: \"\\f16f\"; }\n.bi-bag-check-fill::before { content: \"\\f170\"; }\n.bi-bag-check::before { content: \"\\f171\"; }\n.bi-bag-dash-fill::before { content: \"\\f172\"; }\n.bi-bag-dash::before { content: \"\\f173\"; }\n.bi-bag-fill::before { content: \"\\f174\"; }\n.bi-bag-plus-fill::before { content: \"\\f175\"; }\n.bi-bag-plus::before { content: \"\\f176\"; }\n.bi-bag-x-fill::before { content: \"\\f177\"; }\n.bi-bag-x::before { content: \"\\f178\"; }\n.bi-bag::before { content: \"\\f179\"; }\n.bi-bar-chart-fill::before { content: \"\\f17a\"; }\n.bi-bar-chart-line-fill::before { content: \"\\f17b\"; }\n.bi-bar-chart-line::before { content: \"\\f17c\"; }\n.bi-bar-chart-steps::before { content: \"\\f17d\"; }\n.bi-bar-chart::before { content: \"\\f17e\"; }\n.bi-basket-fill::before { content: \"\\f17f\"; }\n.bi-basket::before { content: \"\\f180\"; }\n.bi-basket2-fill::before { content: \"\\f181\"; }\n.bi-basket2::before { content: \"\\f182\"; }\n.bi-basket3-fill::before { content: \"\\f183\"; }\n.bi-basket3::before { content: \"\\f184\"; }\n.bi-battery-charging::before { content: \"\\f185\"; }\n.bi-battery-full::before { content: \"\\f186\"; }\n.bi-battery-half::before { content: \"\\f187\"; }\n.bi-battery::before { content: \"\\f188\"; }\n.bi-bell-fill::before { content: \"\\f189\"; }\n.bi-bell::before { content: \"\\f18a\"; }\n.bi-bezier::before { content: \"\\f18b\"; }\n.bi-bezier2::before { content: \"\\f18c\"; }\n.bi-bicycle::before { content: \"\\f18d\"; }\n.bi-binoculars-fill::before { content: \"\\f18e\"; }\n.bi-binoculars::before { content: \"\\f18f\"; }\n.bi-blockquote-left::before { content: \"\\f190\"; }\n.bi-blockquote-right::before { content: \"\\f191\"; }\n.bi-book-fill::before { content: \"\\f192\"; }\n.bi-book-half::before { content: \"\\f193\"; }\n.bi-book::before { content: \"\\f194\"; }\n.bi-bookmark-check-fill::before { content: \"\\f195\"; }\n.bi-bookmark-check::before { content: \"\\f196\"; }\n.bi-bookmark-dash-fill::before { content: \"\\f197\"; }\n.bi-bookmark-dash::before { content: \"\\f198\"; }\n.bi-bookmark-fill::before { content: \"\\f199\"; }\n.bi-bookmark-heart-fill::before { content: \"\\f19a\"; }\n.bi-bookmark-heart::before { content: \"\\f19b\"; }\n.bi-bookmark-plus-fill::before { content: \"\\f19c\"; }\n.bi-bookmark-plus::before { content: \"\\f19d\"; }\n.bi-bookmark-star-fill::before { content: \"\\f19e\"; }\n.bi-bookmark-star::before { content: \"\\f19f\"; }\n.bi-bookmark-x-fill::before { content: \"\\f1a0\"; }\n.bi-bookmark-x::before { content: \"\\f1a1\"; }\n.bi-bookmark::before { content: \"\\f1a2\"; }\n.bi-bookmarks-fill::before { content: \"\\f1a3\"; }\n.bi-bookmarks::before { content: \"\\f1a4\"; }\n.bi-bookshelf::before { content: \"\\f1a5\"; }\n.bi-bootstrap-fill::before { content: \"\\f1a6\"; }\n.bi-bootstrap-reboot::before { content: \"\\f1a7\"; }\n.bi-bootstrap::before { content: \"\\f1a8\"; }\n.bi-border-all::before { content: \"\\f1a9\"; }\n.bi-border-bottom::before { content: \"\\f1aa\"; }\n.bi-border-center::before { content: \"\\f1ab\"; }\n.bi-border-inner::before { content: \"\\f1ac\"; }\n.bi-border-left::before { content: \"\\f1ad\"; }\n.bi-border-middle::before { content: \"\\f1ae\"; }\n.bi-border-outer::before { content: \"\\f1af\"; }\n.bi-border-right::before { content: \"\\f1b0\"; }\n.bi-border-style::before { content: \"\\f1b1\"; }\n.bi-border-top::before { content: \"\\f1b2\"; }\n.bi-border-width::before { content: \"\\f1b3\"; }\n.bi-border::before { content: \"\\f1b4\"; }\n.bi-bounding-box-circles::before { content: \"\\f1b5\"; }\n.bi-bounding-box::before { content: \"\\f1b6\"; }\n.bi-box-arrow-down-left::before { content: \"\\f1b7\"; }\n.bi-box-arrow-down-right::before { content: \"\\f1b8\"; }\n.bi-box-arrow-down::before { content: \"\\f1b9\"; }\n.bi-box-arrow-in-down-left::before { content: \"\\f1ba\"; }\n.bi-box-arrow-in-down-right::before { content: \"\\f1bb\"; }\n.bi-box-arrow-in-down::before { content: \"\\f1bc\"; }\n.bi-box-arrow-in-left::before { content: \"\\f1bd\"; }\n.bi-box-arrow-in-right::before { content: \"\\f1be\"; }\n.bi-box-arrow-in-up-left::before { content: \"\\f1bf\"; }\n.bi-box-arrow-in-up-right::before { content: \"\\f1c0\"; }\n.bi-box-arrow-in-up::before { content: \"\\f1c1\"; }\n.bi-box-arrow-left::before { content: \"\\f1c2\"; }\n.bi-box-arrow-right::before { content: \"\\f1c3\"; }\n.bi-box-arrow-up-left::before { content: \"\\f1c4\"; }\n.bi-box-arrow-up-right::before { content: \"\\f1c5\"; }\n.bi-box-arrow-up::before { content: \"\\f1c6\"; }\n.bi-box-seam::before { content: \"\\f1c7\"; }\n.bi-box::before { content: \"\\f1c8\"; }\n.bi-braces::before { content: \"\\f1c9\"; }\n.bi-bricks::before { content: \"\\f1ca\"; }\n.bi-briefcase-fill::before { content: \"\\f1cb\"; }\n.bi-briefcase::before { content: \"\\f1cc\"; }\n.bi-brightness-alt-high-fill::before { content: \"\\f1cd\"; }\n.bi-brightness-alt-high::before { content: \"\\f1ce\"; }\n.bi-brightness-alt-low-fill::before { content: \"\\f1cf\"; }\n.bi-brightness-alt-low::before { content: \"\\f1d0\"; }\n.bi-brightness-high-fill::before { content: \"\\f1d1\"; }\n.bi-brightness-high::before { content: \"\\f1d2\"; }\n.bi-brightness-low-fill::before { content: \"\\f1d3\"; }\n.bi-brightness-low::before { content: \"\\f1d4\"; }\n.bi-broadcast-pin::before { content: \"\\f1d5\"; }\n.bi-broadcast::before { content: \"\\f1d6\"; }\n.bi-brush-fill::before { content: \"\\f1d7\"; }\n.bi-brush::before { content: \"\\f1d8\"; }\n.bi-bucket-fill::before { content: \"\\f1d9\"; }\n.bi-bucket::before { content: \"\\f1da\"; }\n.bi-bug-fill::before { content: \"\\f1db\"; }\n.bi-bug::before { content: \"\\f1dc\"; }\n.bi-building::before { content: \"\\f1dd\"; }\n.bi-bullseye::before { content: \"\\f1de\"; }\n.bi-calculator-fill::before { content: \"\\f1df\"; }\n.bi-calculator::before { content: \"\\f1e0\"; }\n.bi-calendar-check-fill::before { content: \"\\f1e1\"; }\n.bi-calendar-check::before { content: \"\\f1e2\"; }\n.bi-calendar-date-fill::before { content: \"\\f1e3\"; }\n.bi-calendar-date::before { content: \"\\f1e4\"; }\n.bi-calendar-day-fill::before { content: \"\\f1e5\"; }\n.bi-calendar-day::before { content: \"\\f1e6\"; }\n.bi-calendar-event-fill::before { content: \"\\f1e7\"; }\n.bi-calendar-event::before { content: \"\\f1e8\"; }\n.bi-calendar-fill::before { content: \"\\f1e9\"; }\n.bi-calendar-minus-fill::before { content: \"\\f1ea\"; }\n.bi-calendar-minus::before { content: \"\\f1eb\"; }\n.bi-calendar-month-fill::before { content: \"\\f1ec\"; }\n.bi-calendar-month::before { content: \"\\f1ed\"; }\n.bi-calendar-plus-fill::before { content: \"\\f1ee\"; }\n.bi-calendar-plus::before { content: \"\\f1ef\"; }\n.bi-calendar-range-fill::before { content: \"\\f1f0\"; }\n.bi-calendar-range::before { content: \"\\f1f1\"; }\n.bi-calendar-week-fill::before { content: \"\\f1f2\"; }\n.bi-calendar-week::before { content: \"\\f1f3\"; }\n.bi-calendar-x-fill::before { content: \"\\f1f4\"; }\n.bi-calendar-x::before { content: \"\\f1f5\"; }\n.bi-calendar::before { content: \"\\f1f6\"; }\n.bi-calendar2-check-fill::before { content: \"\\f1f7\"; }\n.bi-calendar2-check::before { content: \"\\f1f8\"; }\n.bi-calendar2-date-fill::before { content: \"\\f1f9\"; }\n.bi-calendar2-date::before { content: \"\\f1fa\"; }\n.bi-calendar2-day-fill::before { content: \"\\f1fb\"; }\n.bi-calendar2-day::before { content: \"\\f1fc\"; }\n.bi-calendar2-event-fill::before { content: \"\\f1fd\"; }\n.bi-calendar2-event::before { content: \"\\f1fe\"; }\n.bi-calendar2-fill::before { content: \"\\f1ff\"; }\n.bi-calendar2-minus-fill::before { content: \"\\f200\"; }\n.bi-calendar2-minus::before { content: \"\\f201\"; }\n.bi-calendar2-month-fill::before { content: \"\\f202\"; }\n.bi-calendar2-month::before { content: \"\\f203\"; }\n.bi-calendar2-plus-fill::before { content: \"\\f204\"; }\n.bi-calendar2-plus::before { content: \"\\f205\"; }\n.bi-calendar2-range-fill::before { content: \"\\f206\"; }\n.bi-calendar2-range::before { content: \"\\f207\"; }\n.bi-calendar2-week-fill::before { content: \"\\f208\"; }\n.bi-calendar2-week::before { content: \"\\f209\"; }\n.bi-calendar2-x-fill::before { content: \"\\f20a\"; }\n.bi-calendar2-x::before { content: \"\\f20b\"; }\n.bi-calendar2::before { content: \"\\f20c\"; }\n.bi-calendar3-event-fill::before { content: \"\\f20d\"; }\n.bi-calendar3-event::before { content: \"\\f20e\"; }\n.bi-calendar3-fill::before { content: \"\\f20f\"; }\n.bi-calendar3-range-fill::before { content: \"\\f210\"; }\n.bi-calendar3-range::before { content: \"\\f211\"; }\n.bi-calendar3-week-fill::before { content: \"\\f212\"; }\n.bi-calendar3-week::before { content: \"\\f213\"; }\n.bi-calendar3::before { content: \"\\f214\"; }\n.bi-calendar4-event::before { content: \"\\f215\"; }\n.bi-calendar4-range::before { content: \"\\f216\"; }\n.bi-calendar4-week::before { content: \"\\f217\"; }\n.bi-calendar4::before { content: \"\\f218\"; }\n.bi-camera-fill::before { content: \"\\f219\"; }\n.bi-camera-reels-fill::before { content: \"\\f21a\"; }\n.bi-camera-reels::before { content: \"\\f21b\"; }\n.bi-camera-video-fill::before { content: \"\\f21c\"; }\n.bi-camera-video-off-fill::before { content: \"\\f21d\"; }\n.bi-camera-video-off::before { content: \"\\f21e\"; }\n.bi-camera-video::before { content: \"\\f21f\"; }\n.bi-camera::before { content: \"\\f220\"; }\n.bi-camera2::before { content: \"\\f221\"; }\n.bi-capslock-fill::before { content: \"\\f222\"; }\n.bi-capslock::before { content: \"\\f223\"; }\n.bi-card-checklist::before { content: \"\\f224\"; }\n.bi-card-heading::before { content: \"\\f225\"; }\n.bi-card-image::before { content: \"\\f226\"; }\n.bi-card-list::before { content: \"\\f227\"; }\n.bi-card-text::before { content: \"\\f228\"; }\n.bi-caret-down-fill::before { content: \"\\f229\"; }\n.bi-caret-down-square-fill::before { content: \"\\f22a\"; }\n.bi-caret-down-square::before { content: \"\\f22b\"; }\n.bi-caret-down::before { content: \"\\f22c\"; }\n.bi-caret-left-fill::before { content: \"\\f22d\"; }\n.bi-caret-left-square-fill::before { content: \"\\f22e\"; }\n.bi-caret-left-square::before { content: \"\\f22f\"; }\n.bi-caret-left::before { content: \"\\f230\"; }\n.bi-caret-right-fill::before { content: \"\\f231\"; }\n.bi-caret-right-square-fill::before { content: \"\\f232\"; }\n.bi-caret-right-square::before { content: \"\\f233\"; }\n.bi-caret-right::before { content: \"\\f234\"; }\n.bi-caret-up-fill::before { content: \"\\f235\"; }\n.bi-caret-up-square-fill::before { content: \"\\f236\"; }\n.bi-caret-up-square::before { content: \"\\f237\"; }\n.bi-caret-up::before { content: \"\\f238\"; }\n.bi-cart-check-fill::before { content: \"\\f239\"; }\n.bi-cart-check::before { content: \"\\f23a\"; }\n.bi-cart-dash-fill::before { content: \"\\f23b\"; }\n.bi-cart-dash::before { content: \"\\f23c\"; }\n.bi-cart-fill::before { content: \"\\f23d\"; }\n.bi-cart-plus-fill::before { content: \"\\f23e\"; }\n.bi-cart-plus::before { content: \"\\f23f\"; }\n.bi-cart-x-fill::before { content: \"\\f240\"; }\n.bi-cart-x::before { content: \"\\f241\"; }\n.bi-cart::before { content: \"\\f242\"; }\n.bi-cart2::before { content: \"\\f243\"; }\n.bi-cart3::before { content: \"\\f244\"; }\n.bi-cart4::before { content: \"\\f245\"; }\n.bi-cash-stack::before { content: \"\\f246\"; }\n.bi-cash::before { content: \"\\f247\"; }\n.bi-cast::before { content: \"\\f248\"; }\n.bi-chat-dots-fill::before { content: \"\\f249\"; }\n.bi-chat-dots::before { content: \"\\f24a\"; }\n.bi-chat-fill::before { content: \"\\f24b\"; }\n.bi-chat-left-dots-fill::before { content: \"\\f24c\"; }\n.bi-chat-left-dots::before { content: \"\\f24d\"; }\n.bi-chat-left-fill::before { content: \"\\f24e\"; }\n.bi-chat-left-quote-fill::before { content: \"\\f24f\"; }\n.bi-chat-left-quote::before { content: \"\\f250\"; }\n.bi-chat-left-text-fill::before { content: \"\\f251\"; }\n.bi-chat-left-text::before { content: \"\\f252\"; }\n.bi-chat-left::before { content: \"\\f253\"; }\n.bi-chat-quote-fill::before { content: \"\\f254\"; }\n.bi-chat-quote::before { content: \"\\f255\"; }\n.bi-chat-right-dots-fill::before { content: \"\\f256\"; }\n.bi-chat-right-dots::before { content: \"\\f257\"; }\n.bi-chat-right-fill::before { content: \"\\f258\"; }\n.bi-chat-right-quote-fill::before { content: \"\\f259\"; }\n.bi-chat-right-quote::before { content: \"\\f25a\"; }\n.bi-chat-right-text-fill::before { content: \"\\f25b\"; }\n.bi-chat-right-text::before { content: \"\\f25c\"; }\n.bi-chat-right::before { content: \"\\f25d\"; }\n.bi-chat-square-dots-fill::before { content: \"\\f25e\"; }\n.bi-chat-square-dots::before { content: \"\\f25f\"; }\n.bi-chat-square-fill::before { content: \"\\f260\"; }\n.bi-chat-square-quote-fill::before { content: \"\\f261\"; }\n.bi-chat-square-quote::before { content: \"\\f262\"; }\n.bi-chat-square-text-fill::before { content: \"\\f263\"; }\n.bi-chat-square-text::before { content: \"\\f264\"; }\n.bi-chat-square::before { content: \"\\f265\"; }\n.bi-chat-text-fill::before { content: \"\\f266\"; }\n.bi-chat-text::before { content: \"\\f267\"; }\n.bi-chat::before { content: \"\\f268\"; }\n.bi-check-all::before { content: \"\\f269\"; }\n.bi-check-circle-fill::before { content: \"\\f26a\"; }\n.bi-check-circle::before { content: \"\\f26b\"; }\n.bi-check-square-fill::before { content: \"\\f26c\"; }\n.bi-check-square::before { content: \"\\f26d\"; }\n.bi-check::before { content: \"\\f26e\"; }\n.bi-check2-all::before { content: \"\\f26f\"; }\n.bi-check2-circle::before { content: \"\\f270\"; }\n.bi-check2-square::before { content: \"\\f271\"; }\n.bi-check2::before { content: \"\\f272\"; }\n.bi-chevron-bar-contract::before { content: \"\\f273\"; }\n.bi-chevron-bar-down::before { content: \"\\f274\"; }\n.bi-chevron-bar-expand::before { content: \"\\f275\"; }\n.bi-chevron-bar-left::before { content: \"\\f276\"; }\n.bi-chevron-bar-right::before { content: \"\\f277\"; }\n.bi-chevron-bar-up::before { content: \"\\f278\"; }\n.bi-chevron-compact-down::before { content: \"\\f279\"; }\n.bi-chevron-compact-left::before { content: \"\\f27a\"; }\n.bi-chevron-compact-right::before { content: \"\\f27b\"; }\n.bi-chevron-compact-up::before { content: \"\\f27c\"; }\n.bi-chevron-contract::before { content: \"\\f27d\"; }\n.bi-chevron-double-down::before { content: \"\\f27e\"; }\n.bi-chevron-double-left::before { content: \"\\f27f\"; }\n.bi-chevron-double-right::before { content: \"\\f280\"; }\n.bi-chevron-double-up::before { content: \"\\f281\"; }\n.bi-chevron-down::before { content: \"\\f282\"; }\n.bi-chevron-expand::before { content: \"\\f283\"; }\n.bi-chevron-left::before { content: \"\\f284\"; }\n.bi-chevron-right::before { content: \"\\f285\"; }\n.bi-chevron-up::before { content: \"\\f286\"; }\n.bi-circle-fill::before { content: \"\\f287\"; }\n.bi-circle-half::before { content: \"\\f288\"; }\n.bi-circle-square::before { content: \"\\f289\"; }\n.bi-circle::before { content: \"\\f28a\"; }\n.bi-clipboard-check::before { content: \"\\f28b\"; }\n.bi-clipboard-data::before { content: \"\\f28c\"; }\n.bi-clipboard-minus::before { content: \"\\f28d\"; }\n.bi-clipboard-plus::before { content: \"\\f28e\"; }\n.bi-clipboard-x::before { content: \"\\f28f\"; }\n.bi-clipboard::before { content: \"\\f290\"; }\n.bi-clock-fill::before { content: \"\\f291\"; }\n.bi-clock-history::before { content: \"\\f292\"; }\n.bi-clock::before { content: \"\\f293\"; }\n.bi-cloud-arrow-down-fill::before { content: \"\\f294\"; }\n.bi-cloud-arrow-down::before { content: \"\\f295\"; }\n.bi-cloud-arrow-up-fill::before { content: \"\\f296\"; }\n.bi-cloud-arrow-up::before { content: \"\\f297\"; }\n.bi-cloud-check-fill::before { content: \"\\f298\"; }\n.bi-cloud-check::before { content: \"\\f299\"; }\n.bi-cloud-download-fill::before { content: \"\\f29a\"; }\n.bi-cloud-download::before { content: \"\\f29b\"; }\n.bi-cloud-drizzle-fill::before { content: \"\\f29c\"; }\n.bi-cloud-drizzle::before { content: \"\\f29d\"; }\n.bi-cloud-fill::before { content: \"\\f29e\"; }\n.bi-cloud-fog-fill::before { content: \"\\f29f\"; }\n.bi-cloud-fog::before { content: \"\\f2a0\"; }\n.bi-cloud-fog2-fill::before { content: \"\\f2a1\"; }\n.bi-cloud-fog2::before { content: \"\\f2a2\"; }\n.bi-cloud-hail-fill::before { content: \"\\f2a3\"; }\n.bi-cloud-hail::before { content: \"\\f2a4\"; }\n.bi-cloud-haze-fill::before { content: \"\\f2a6\"; }\n.bi-cloud-haze::before { content: \"\\f2a7\"; }\n.bi-cloud-haze2-fill::before { content: \"\\f2a8\"; }\n.bi-cloud-lightning-fill::before { content: \"\\f2a9\"; }\n.bi-cloud-lightning-rain-fill::before { content: \"\\f2aa\"; }\n.bi-cloud-lightning-rain::before { content: \"\\f2ab\"; }\n.bi-cloud-lightning::before { content: \"\\f2ac\"; }\n.bi-cloud-minus-fill::before { content: \"\\f2ad\"; }\n.bi-cloud-minus::before { content: \"\\f2ae\"; }\n.bi-cloud-moon-fill::before { content: \"\\f2af\"; }\n.bi-cloud-moon::before { content: \"\\f2b0\"; }\n.bi-cloud-plus-fill::before { content: \"\\f2b1\"; }\n.bi-cloud-plus::before { content: \"\\f2b2\"; }\n.bi-cloud-rain-fill::before { content: \"\\f2b3\"; }\n.bi-cloud-rain-heavy-fill::before { content: \"\\f2b4\"; }\n.bi-cloud-rain-heavy::before { content: \"\\f2b5\"; }\n.bi-cloud-rain::before { content: \"\\f2b6\"; }\n.bi-cloud-slash-fill::before { content: \"\\f2b7\"; }\n.bi-cloud-slash::before { content: \"\\f2b8\"; }\n.bi-cloud-sleet-fill::before { content: \"\\f2b9\"; }\n.bi-cloud-sleet::before { content: \"\\f2ba\"; }\n.bi-cloud-snow-fill::before { content: \"\\f2bb\"; }\n.bi-cloud-snow::before { content: \"\\f2bc\"; }\n.bi-cloud-sun-fill::before { content: \"\\f2bd\"; }\n.bi-cloud-sun::before { content: \"\\f2be\"; }\n.bi-cloud-upload-fill::before { content: \"\\f2bf\"; }\n.bi-cloud-upload::before { content: \"\\f2c0\"; }\n.bi-cloud::before { content: \"\\f2c1\"; }\n.bi-clouds-fill::before { content: \"\\f2c2\"; }\n.bi-clouds::before { content: \"\\f2c3\"; }\n.bi-cloudy-fill::before { content: \"\\f2c4\"; }\n.bi-cloudy::before { content: \"\\f2c5\"; }\n.bi-code-slash::before { content: \"\\f2c6\"; }\n.bi-code-square::before { content: \"\\f2c7\"; }\n.bi-code::before { content: \"\\f2c8\"; }\n.bi-collection-fill::before { content: \"\\f2c9\"; }\n.bi-collection-play-fill::before { content: \"\\f2ca\"; }\n.bi-collection-play::before { content: \"\\f2cb\"; }\n.bi-collection::before { content: \"\\f2cc\"; }\n.bi-columns-gap::before { content: \"\\f2cd\"; }\n.bi-columns::before { content: \"\\f2ce\"; }\n.bi-command::before { content: \"\\f2cf\"; }\n.bi-compass-fill::before { content: \"\\f2d0\"; }\n.bi-compass::before { content: \"\\f2d1\"; }\n.bi-cone-striped::before { content: \"\\f2d2\"; }\n.bi-cone::before { content: \"\\f2d3\"; }\n.bi-controller::before { content: \"\\f2d4\"; }\n.bi-cpu-fill::before { content: \"\\f2d5\"; }\n.bi-cpu::before { content: \"\\f2d6\"; }\n.bi-credit-card-2-back-fill::before { content: \"\\f2d7\"; }\n.bi-credit-card-2-back::before { content: \"\\f2d8\"; }\n.bi-credit-card-2-front-fill::before { content: \"\\f2d9\"; }\n.bi-credit-card-2-front::before { content: \"\\f2da\"; }\n.bi-credit-card-fill::before { content: \"\\f2db\"; }\n.bi-credit-card::before { content: \"\\f2dc\"; }\n.bi-crop::before { content: \"\\f2dd\"; }\n.bi-cup-fill::before { content: \"\\f2de\"; }\n.bi-cup-straw::before { content: \"\\f2df\"; }\n.bi-cup::before { content: \"\\f2e0\"; }\n.bi-cursor-fill::before { content: \"\\f2e1\"; }\n.bi-cursor-text::before { content: \"\\f2e2\"; }\n.bi-cursor::before { content: \"\\f2e3\"; }\n.bi-dash-circle-dotted::before { content: \"\\f2e4\"; }\n.bi-dash-circle-fill::before { content: \"\\f2e5\"; }\n.bi-dash-circle::before { content: \"\\f2e6\"; }\n.bi-dash-square-dotted::before { content: \"\\f2e7\"; }\n.bi-dash-square-fill::before { content: \"\\f2e8\"; }\n.bi-dash-square::before { content: \"\\f2e9\"; }\n.bi-dash::before { content: \"\\f2ea\"; }\n.bi-diagram-2-fill::before { content: \"\\f2eb\"; }\n.bi-diagram-2::before { content: \"\\f2ec\"; }\n.bi-diagram-3-fill::before { content: \"\\f2ed\"; }\n.bi-diagram-3::before { content: \"\\f2ee\"; }\n.bi-diamond-fill::before { content: \"\\f2ef\"; }\n.bi-diamond-half::before { content: \"\\f2f0\"; }\n.bi-diamond::before { content: \"\\f2f1\"; }\n.bi-dice-1-fill::before { content: \"\\f2f2\"; }\n.bi-dice-1::before { content: \"\\f2f3\"; }\n.bi-dice-2-fill::before { content: \"\\f2f4\"; }\n.bi-dice-2::before { content: \"\\f2f5\"; }\n.bi-dice-3-fill::before { content: \"\\f2f6\"; }\n.bi-dice-3::before { content: \"\\f2f7\"; }\n.bi-dice-4-fill::before { content: \"\\f2f8\"; }\n.bi-dice-4::before { content: \"\\f2f9\"; }\n.bi-dice-5-fill::before { content: \"\\f2fa\"; }\n.bi-dice-5::before { content: \"\\f2fb\"; }\n.bi-dice-6-fill::before { content: \"\\f2fc\"; }\n.bi-dice-6::before { content: \"\\f2fd\"; }\n.bi-disc-fill::before { content: \"\\f2fe\"; }\n.bi-disc::before { content: \"\\f2ff\"; }\n.bi-discord::before { content: \"\\f300\"; }\n.bi-display-fill::before { content: \"\\f301\"; }\n.bi-display::before { content: \"\\f302\"; }\n.bi-distribute-horizontal::before { content: \"\\f303\"; }\n.bi-distribute-vertical::before { content: \"\\f304\"; }\n.bi-door-closed-fill::before { content: \"\\f305\"; }\n.bi-door-closed::before { content: \"\\f306\"; }\n.bi-door-open-fill::before { content: \"\\f307\"; }\n.bi-door-open::before { content: \"\\f308\"; }\n.bi-dot::before { content: \"\\f309\"; }\n.bi-download::before { content: \"\\f30a\"; }\n.bi-droplet-fill::before { content: \"\\f30b\"; }\n.bi-droplet-half::before { content: \"\\f30c\"; }\n.bi-droplet::before { content: \"\\f30d\"; }\n.bi-earbuds::before { content: \"\\f30e\"; }\n.bi-easel-fill::before { content: \"\\f30f\"; }\n.bi-easel::before { content: \"\\f310\"; }\n.bi-egg-fill::before { content: \"\\f311\"; }\n.bi-egg-fried::before { content: \"\\f312\"; }\n.bi-egg::before { content: \"\\f313\"; }\n.bi-eject-fill::before { content: \"\\f314\"; }\n.bi-eject::before { content: \"\\f315\"; }\n.bi-emoji-angry-fill::before { content: \"\\f316\"; }\n.bi-emoji-angry::before { content: \"\\f317\"; }\n.bi-emoji-dizzy-fill::before { content: \"\\f318\"; }\n.bi-emoji-dizzy::before { content: \"\\f319\"; }\n.bi-emoji-expressionless-fill::before { content: \"\\f31a\"; }\n.bi-emoji-expressionless::before { content: \"\\f31b\"; }\n.bi-emoji-frown-fill::before { content: \"\\f31c\"; }\n.bi-emoji-frown::before { content: \"\\f31d\"; }\n.bi-emoji-heart-eyes-fill::before { content: \"\\f31e\"; }\n.bi-emoji-heart-eyes::before { content: \"\\f31f\"; }\n.bi-emoji-laughing-fill::before { content: \"\\f320\"; }\n.bi-emoji-laughing::before { content: \"\\f321\"; }\n.bi-emoji-neutral-fill::before { content: \"\\f322\"; }\n.bi-emoji-neutral::before { content: \"\\f323\"; }\n.bi-emoji-smile-fill::before { content: \"\\f324\"; }\n.bi-emoji-smile-upside-down-fill::before { content: \"\\f325\"; }\n.bi-emoji-smile-upside-down::before { content: \"\\f326\"; }\n.bi-emoji-smile::before { content: \"\\f327\"; }\n.bi-emoji-sunglasses-fill::before { content: \"\\f328\"; }\n.bi-emoji-sunglasses::before { content: \"\\f329\"; }\n.bi-emoji-wink-fill::before { content: \"\\f32a\"; }\n.bi-emoji-wink::before { content: \"\\f32b\"; }\n.bi-envelope-fill::before { content: \"\\f32c\"; }\n.bi-envelope-open-fill::before { content: \"\\f32d\"; }\n.bi-envelope-open::before { content: \"\\f32e\"; }\n.bi-envelope::before { content: \"\\f32f\"; }\n.bi-eraser-fill::before { content: \"\\f330\"; }\n.bi-eraser::before { content: \"\\f331\"; }\n.bi-exclamation-circle-fill::before { content: \"\\f332\"; }\n.bi-exclamation-circle::before { content: \"\\f333\"; }\n.bi-exclamation-diamond-fill::before { content: \"\\f334\"; }\n.bi-exclamation-diamond::before { content: \"\\f335\"; }\n.bi-exclamation-octagon-fill::before { content: \"\\f336\"; }\n.bi-exclamation-octagon::before { content: \"\\f337\"; }\n.bi-exclamation-square-fill::before { content: \"\\f338\"; }\n.bi-exclamation-square::before { content: \"\\f339\"; }\n.bi-exclamation-triangle-fill::before { content: \"\\f33a\"; }\n.bi-exclamation-triangle::before { content: \"\\f33b\"; }\n.bi-exclamation::before { content: \"\\f33c\"; }\n.bi-exclude::before { content: \"\\f33d\"; }\n.bi-eye-fill::before { content: \"\\f33e\"; }\n.bi-eye-slash-fill::before { content: \"\\f33f\"; }\n.bi-eye-slash::before { content: \"\\f340\"; }\n.bi-eye::before { content: \"\\f341\"; }\n.bi-eyedropper::before { content: \"\\f342\"; }\n.bi-eyeglasses::before { content: \"\\f343\"; }\n.bi-facebook::before { content: \"\\f344\"; }\n.bi-file-arrow-down-fill::before { content: \"\\f345\"; }\n.bi-file-arrow-down::before { content: \"\\f346\"; }\n.bi-file-arrow-up-fill::before { content: \"\\f347\"; }\n.bi-file-arrow-up::before { content: \"\\f348\"; }\n.bi-file-bar-graph-fill::before { content: \"\\f349\"; }\n.bi-file-bar-graph::before { content: \"\\f34a\"; }\n.bi-file-binary-fill::before { content: \"\\f34b\"; }\n.bi-file-binary::before { content: \"\\f34c\"; }\n.bi-file-break-fill::before { content: \"\\f34d\"; }\n.bi-file-break::before { content: \"\\f34e\"; }\n.bi-file-check-fill::before { content: \"\\f34f\"; }\n.bi-file-check::before { content: \"\\f350\"; }\n.bi-file-code-fill::before { content: \"\\f351\"; }\n.bi-file-code::before { content: \"\\f352\"; }\n.bi-file-diff-fill::before { content: \"\\f353\"; }\n.bi-file-diff::before { content: \"\\f354\"; }\n.bi-file-earmark-arrow-down-fill::before { content: \"\\f355\"; }\n.bi-file-earmark-arrow-down::before { content: \"\\f356\"; }\n.bi-file-earmark-arrow-up-fill::before { content: \"\\f357\"; }\n.bi-file-earmark-arrow-up::before { content: \"\\f358\"; }\n.bi-file-earmark-bar-graph-fill::before { content: \"\\f359\"; }\n.bi-file-earmark-bar-graph::before { content: \"\\f35a\"; }\n.bi-file-earmark-binary-fill::before { content: \"\\f35b\"; }\n.bi-file-earmark-binary::before { content: \"\\f35c\"; }\n.bi-file-earmark-break-fill::before { content: \"\\f35d\"; }\n.bi-file-earmark-break::before { content: \"\\f35e\"; }\n.bi-file-earmark-check-fill::before { content: \"\\f35f\"; }\n.bi-file-earmark-check::before { content: \"\\f360\"; }\n.bi-file-earmark-code-fill::before { content: \"\\f361\"; }\n.bi-file-earmark-code::before { content: \"\\f362\"; }\n.bi-file-earmark-diff-fill::before { content: \"\\f363\"; }\n.bi-file-earmark-diff::before { content: \"\\f364\"; }\n.bi-file-earmark-easel-fill::before { content: \"\\f365\"; }\n.bi-file-earmark-easel::before { content: \"\\f366\"; }\n.bi-file-earmark-excel-fill::before { content: \"\\f367\"; }\n.bi-file-earmark-excel::before { content: \"\\f368\"; }\n.bi-file-earmark-fill::before { content: \"\\f369\"; }\n.bi-file-earmark-font-fill::before { content: \"\\f36a\"; }\n.bi-file-earmark-font::before { content: \"\\f36b\"; }\n.bi-file-earmark-image-fill::before { content: \"\\f36c\"; }\n.bi-file-earmark-image::before { content: \"\\f36d\"; }\n.bi-file-earmark-lock-fill::before { content: \"\\f36e\"; }\n.bi-file-earmark-lock::before { content: \"\\f36f\"; }\n.bi-file-earmark-lock2-fill::before { content: \"\\f370\"; }\n.bi-file-earmark-lock2::before { content: \"\\f371\"; }\n.bi-file-earmark-medical-fill::before { content: \"\\f372\"; }\n.bi-file-earmark-medical::before { content: \"\\f373\"; }\n.bi-file-earmark-minus-fill::before { content: \"\\f374\"; }\n.bi-file-earmark-minus::before { content: \"\\f375\"; }\n.bi-file-earmark-music-fill::before { content: \"\\f376\"; }\n.bi-file-earmark-music::before { content: \"\\f377\"; }\n.bi-file-earmark-person-fill::before { content: \"\\f378\"; }\n.bi-file-earmark-person::before { content: \"\\f379\"; }\n.bi-file-earmark-play-fill::before { content: \"\\f37a\"; }\n.bi-file-earmark-play::before { content: \"\\f37b\"; }\n.bi-file-earmark-plus-fill::before { content: \"\\f37c\"; }\n.bi-file-earmark-plus::before { content: \"\\f37d\"; }\n.bi-file-earmark-post-fill::before { content: \"\\f37e\"; }\n.bi-file-earmark-post::before { content: \"\\f37f\"; }\n.bi-file-earmark-ppt-fill::before { content: \"\\f380\"; }\n.bi-file-earmark-ppt::before { content: \"\\f381\"; }\n.bi-file-earmark-richtext-fill::before { content: \"\\f382\"; }\n.bi-file-earmark-richtext::before { content: \"\\f383\"; }\n.bi-file-earmark-ruled-fill::before { content: \"\\f384\"; }\n.bi-file-earmark-ruled::before { content: \"\\f385\"; }\n.bi-file-earmark-slides-fill::before { content: \"\\f386\"; }\n.bi-file-earmark-slides::before { content: \"\\f387\"; }\n.bi-file-earmark-spreadsheet-fill::before { content: \"\\f388\"; }\n.bi-file-earmark-spreadsheet::before { content: \"\\f389\"; }\n.bi-file-earmark-text-fill::before { content: \"\\f38a\"; }\n.bi-file-earmark-text::before { content: \"\\f38b\"; }\n.bi-file-earmark-word-fill::before { content: \"\\f38c\"; }\n.bi-file-earmark-word::before { content: \"\\f38d\"; }\n.bi-file-earmark-x-fill::before { content: \"\\f38e\"; }\n.bi-file-earmark-x::before { content: \"\\f38f\"; }\n.bi-file-earmark-zip-fill::before { content: \"\\f390\"; }\n.bi-file-earmark-zip::before { content: \"\\f391\"; }\n.bi-file-earmark::before { content: \"\\f392\"; }\n.bi-file-easel-fill::before { content: \"\\f393\"; }\n.bi-file-easel::before { content: \"\\f394\"; }\n.bi-file-excel-fill::before { content: \"\\f395\"; }\n.bi-file-excel::before { content: \"\\f396\"; }\n.bi-file-fill::before { content: \"\\f397\"; }\n.bi-file-font-fill::before { content: \"\\f398\"; }\n.bi-file-font::before { content: \"\\f399\"; }\n.bi-file-image-fill::before { content: \"\\f39a\"; }\n.bi-file-image::before { content: \"\\f39b\"; }\n.bi-file-lock-fill::before { content: \"\\f39c\"; }\n.bi-file-lock::before { content: \"\\f39d\"; }\n.bi-file-lock2-fill::before { content: \"\\f39e\"; }\n.bi-file-lock2::before { content: \"\\f39f\"; }\n.bi-file-medical-fill::before { content: \"\\f3a0\"; }\n.bi-file-medical::before { content: \"\\f3a1\"; }\n.bi-file-minus-fill::before { content: \"\\f3a2\"; }\n.bi-file-minus::before { content: \"\\f3a3\"; }\n.bi-file-music-fill::before { content: \"\\f3a4\"; }\n.bi-file-music::before { content: \"\\f3a5\"; }\n.bi-file-person-fill::before { content: \"\\f3a6\"; }\n.bi-file-person::before { content: \"\\f3a7\"; }\n.bi-file-play-fill::before { content: \"\\f3a8\"; }\n.bi-file-play::before { content: \"\\f3a9\"; }\n.bi-file-plus-fill::before { content: \"\\f3aa\"; }\n.bi-file-plus::before { content: \"\\f3ab\"; }\n.bi-file-post-fill::before { content: \"\\f3ac\"; }\n.bi-file-post::before { content: \"\\f3ad\"; }\n.bi-file-ppt-fill::before { content: \"\\f3ae\"; }\n.bi-file-ppt::before { content: \"\\f3af\"; }\n.bi-file-richtext-fill::before { content: \"\\f3b0\"; }\n.bi-file-richtext::before { content: \"\\f3b1\"; }\n.bi-file-ruled-fill::before { content: \"\\f3b2\"; }\n.bi-file-ruled::before { content: \"\\f3b3\"; }\n.bi-file-slides-fill::before { content: \"\\f3b4\"; }\n.bi-file-slides::before { content: \"\\f3b5\"; }\n.bi-file-spreadsheet-fill::before { content: \"\\f3b6\"; }\n.bi-file-spreadsheet::before { content: \"\\f3b7\"; }\n.bi-file-text-fill::before { content: \"\\f3b8\"; }\n.bi-file-text::before { content: \"\\f3b9\"; }\n.bi-file-word-fill::before { content: \"\\f3ba\"; }\n.bi-file-word::before { content: \"\\f3bb\"; }\n.bi-file-x-fill::before { content: \"\\f3bc\"; }\n.bi-file-x::before { content: \"\\f3bd\"; }\n.bi-file-zip-fill::before { content: \"\\f3be\"; }\n.bi-file-zip::before { content: \"\\f3bf\"; }\n.bi-file::before { content: \"\\f3c0\"; }\n.bi-files-alt::before { content: \"\\f3c1\"; }\n.bi-files::before { content: \"\\f3c2\"; }\n.bi-film::before { content: \"\\f3c3\"; }\n.bi-filter-circle-fill::before { content: \"\\f3c4\"; }\n.bi-filter-circle::before { content: \"\\f3c5\"; }\n.bi-filter-left::before { content: \"\\f3c6\"; }\n.bi-filter-right::before { content: \"\\f3c7\"; }\n.bi-filter-square-fill::before { content: \"\\f3c8\"; }\n.bi-filter-square::before { content: \"\\f3c9\"; }\n.bi-filter::before { content: \"\\f3ca\"; }\n.bi-flag-fill::before { content: \"\\f3cb\"; }\n.bi-flag::before { content: \"\\f3cc\"; }\n.bi-flower1::before { content: \"\\f3cd\"; }\n.bi-flower2::before { content: \"\\f3ce\"; }\n.bi-flower3::before { content: \"\\f3cf\"; }\n.bi-folder-check::before { content: \"\\f3d0\"; }\n.bi-folder-fill::before { content: \"\\f3d1\"; }\n.bi-folder-minus::before { content: \"\\f3d2\"; }\n.bi-folder-plus::before { content: \"\\f3d3\"; }\n.bi-folder-symlink-fill::before { content: \"\\f3d4\"; }\n.bi-folder-symlink::before { content: \"\\f3d5\"; }\n.bi-folder-x::before { content: \"\\f3d6\"; }\n.bi-folder::before { content: \"\\f3d7\"; }\n.bi-folder2-open::before { content: \"\\f3d8\"; }\n.bi-folder2::before { content: \"\\f3d9\"; }\n.bi-fonts::before { content: \"\\f3da\"; }\n.bi-forward-fill::before { content: \"\\f3db\"; }\n.bi-forward::before { content: \"\\f3dc\"; }\n.bi-front::before { content: \"\\f3dd\"; }\n.bi-fullscreen-exit::before { content: \"\\f3de\"; }\n.bi-fullscreen::before { content: \"\\f3df\"; }\n.bi-funnel-fill::before { content: \"\\f3e0\"; }\n.bi-funnel::before { content: \"\\f3e1\"; }\n.bi-gear-fill::before { content: \"\\f3e2\"; }\n.bi-gear-wide-connected::before { content: \"\\f3e3\"; }\n.bi-gear-wide::before { content: \"\\f3e4\"; }\n.bi-gear::before { content: \"\\f3e5\"; }\n.bi-gem::before { content: \"\\f3e6\"; }\n.bi-geo-alt-fill::before { content: \"\\f3e7\"; }\n.bi-geo-alt::before { content: \"\\f3e8\"; }\n.bi-geo-fill::before { content: \"\\f3e9\"; }\n.bi-geo::before { content: \"\\f3ea\"; }\n.bi-gift-fill::before { content: \"\\f3eb\"; }\n.bi-gift::before { content: \"\\f3ec\"; }\n.bi-github::before { content: \"\\f3ed\"; }\n.bi-globe::before { content: \"\\f3ee\"; }\n.bi-globe2::before { content: \"\\f3ef\"; }\n.bi-google::before { content: \"\\f3f0\"; }\n.bi-graph-down::before { content: \"\\f3f1\"; }\n.bi-graph-up::before { content: \"\\f3f2\"; }\n.bi-grid-1x2-fill::before { content: \"\\f3f3\"; }\n.bi-grid-1x2::before { content: \"\\f3f4\"; }\n.bi-grid-3x2-gap-fill::before { content: \"\\f3f5\"; }\n.bi-grid-3x2-gap::before { content: \"\\f3f6\"; }\n.bi-grid-3x2::before { content: \"\\f3f7\"; }\n.bi-grid-3x3-gap-fill::before { content: \"\\f3f8\"; }\n.bi-grid-3x3-gap::before { content: \"\\f3f9\"; }\n.bi-grid-3x3::before { content: \"\\f3fa\"; }\n.bi-grid-fill::before { content: \"\\f3fb\"; }\n.bi-grid::before { content: \"\\f3fc\"; }\n.bi-grip-horizontal::before { content: \"\\f3fd\"; }\n.bi-grip-vertical::before { content: \"\\f3fe\"; }\n.bi-hammer::before { content: \"\\f3ff\"; }\n.bi-hand-index-fill::before { content: \"\\f400\"; }\n.bi-hand-index-thumb-fill::before { content: \"\\f401\"; }\n.bi-hand-index-thumb::before { content: \"\\f402\"; }\n.bi-hand-index::before { content: \"\\f403\"; }\n.bi-hand-thumbs-down-fill::before { content: \"\\f404\"; }\n.bi-hand-thumbs-down::before { content: \"\\f405\"; }\n.bi-hand-thumbs-up-fill::before { content: \"\\f406\"; }\n.bi-hand-thumbs-up::before { content: \"\\f407\"; }\n.bi-handbag-fill::before { content: \"\\f408\"; }\n.bi-handbag::before { content: \"\\f409\"; }\n.bi-hash::before { content: \"\\f40a\"; }\n.bi-hdd-fill::before { content: \"\\f40b\"; }\n.bi-hdd-network-fill::before { content: \"\\f40c\"; }\n.bi-hdd-network::before { content: \"\\f40d\"; }\n.bi-hdd-rack-fill::before { content: \"\\f40e\"; }\n.bi-hdd-rack::before { content: \"\\f40f\"; }\n.bi-hdd-stack-fill::before { content: \"\\f410\"; }\n.bi-hdd-stack::before { content: \"\\f411\"; }\n.bi-hdd::before { content: \"\\f412\"; }\n.bi-headphones::before { content: \"\\f413\"; }\n.bi-headset::before { content: \"\\f414\"; }\n.bi-heart-fill::before { content: \"\\f415\"; }\n.bi-heart-half::before { content: \"\\f416\"; }\n.bi-heart::before { content: \"\\f417\"; }\n.bi-heptagon-fill::before { content: \"\\f418\"; }\n.bi-heptagon-half::before { content: \"\\f419\"; }\n.bi-heptagon::before { content: \"\\f41a\"; }\n.bi-hexagon-fill::before { content: \"\\f41b\"; }\n.bi-hexagon-half::before { content: \"\\f41c\"; }\n.bi-hexagon::before { content: \"\\f41d\"; }\n.bi-hourglass-bottom::before { content: \"\\f41e\"; }\n.bi-hourglass-split::before { content: \"\\f41f\"; }\n.bi-hourglass-top::before { content: \"\\f420\"; }\n.bi-hourglass::before { content: \"\\f421\"; }\n.bi-house-door-fill::before { content: \"\\f422\"; }\n.bi-house-door::before { content: \"\\f423\"; }\n.bi-house-fill::before { content: \"\\f424\"; }\n.bi-house::before { content: \"\\f425\"; }\n.bi-hr::before { content: \"\\f426\"; }\n.bi-hurricane::before { content: \"\\f427\"; }\n.bi-image-alt::before { content: \"\\f428\"; }\n.bi-image-fill::before { content: \"\\f429\"; }\n.bi-image::before { content: \"\\f42a\"; }\n.bi-images::before { content: \"\\f42b\"; }\n.bi-inbox-fill::before { content: \"\\f42c\"; }\n.bi-inbox::before { content: \"\\f42d\"; }\n.bi-inboxes-fill::before { content: \"\\f42e\"; }\n.bi-inboxes::before { content: \"\\f42f\"; }\n.bi-info-circle-fill::before { content: \"\\f430\"; }\n.bi-info-circle::before { content: \"\\f431\"; }\n.bi-info-square-fill::before { content: \"\\f432\"; }\n.bi-info-square::before { content: \"\\f433\"; }\n.bi-info::before { content: \"\\f434\"; }\n.bi-input-cursor-text::before { content: \"\\f435\"; }\n.bi-input-cursor::before { content: \"\\f436\"; }\n.bi-instagram::before { content: \"\\f437\"; }\n.bi-intersect::before { content: \"\\f438\"; }\n.bi-journal-album::before { content: \"\\f439\"; }\n.bi-journal-arrow-down::before { content: \"\\f43a\"; }\n.bi-journal-arrow-up::before { content: \"\\f43b\"; }\n.bi-journal-bookmark-fill::before { content: \"\\f43c\"; }\n.bi-journal-bookmark::before { content: \"\\f43d\"; }\n.bi-journal-check::before { content: \"\\f43e\"; }\n.bi-journal-code::before { content: \"\\f43f\"; }\n.bi-journal-medical::before { content: \"\\f440\"; }\n.bi-journal-minus::before { content: \"\\f441\"; }\n.bi-journal-plus::before { content: \"\\f442\"; }\n.bi-journal-richtext::before { content: \"\\f443\"; }\n.bi-journal-text::before { content: \"\\f444\"; }\n.bi-journal-x::before { content: \"\\f445\"; }\n.bi-journal::before { content: \"\\f446\"; }\n.bi-journals::before { content: \"\\f447\"; }\n.bi-joystick::before { content: \"\\f448\"; }\n.bi-justify-left::before { content: \"\\f449\"; }\n.bi-justify-right::before { content: \"\\f44a\"; }\n.bi-justify::before { content: \"\\f44b\"; }\n.bi-kanban-fill::before { content: \"\\f44c\"; }\n.bi-kanban::before { content: \"\\f44d\"; }\n.bi-key-fill::before { content: \"\\f44e\"; }\n.bi-key::before { content: \"\\f44f\"; }\n.bi-keyboard-fill::before { content: \"\\f450\"; }\n.bi-keyboard::before { content: \"\\f451\"; }\n.bi-ladder::before { content: \"\\f452\"; }\n.bi-lamp-fill::before { content: \"\\f453\"; }\n.bi-lamp::before { content: \"\\f454\"; }\n.bi-laptop-fill::before { content: \"\\f455\"; }\n.bi-laptop::before { content: \"\\f456\"; }\n.bi-layer-backward::before { content: \"\\f457\"; }\n.bi-layer-forward::before { content: \"\\f458\"; }\n.bi-layers-fill::before { content: \"\\f459\"; }\n.bi-layers-half::before { content: \"\\f45a\"; }\n.bi-layers::before { content: \"\\f45b\"; }\n.bi-layout-sidebar-inset-reverse::before { content: \"\\f45c\"; }\n.bi-layout-sidebar-inset::before { content: \"\\f45d\"; }\n.bi-layout-sidebar-reverse::before { content: \"\\f45e\"; }\n.bi-layout-sidebar::before { content: \"\\f45f\"; }\n.bi-layout-split::before { content: \"\\f460\"; }\n.bi-layout-text-sidebar-reverse::before { content: \"\\f461\"; }\n.bi-layout-text-sidebar::before { content: \"\\f462\"; }\n.bi-layout-text-window-reverse::before { content: \"\\f463\"; }\n.bi-layout-text-window::before { content: \"\\f464\"; }\n.bi-layout-three-columns::before { content: \"\\f465\"; }\n.bi-layout-wtf::before { content: \"\\f466\"; }\n.bi-life-preserver::before { content: \"\\f467\"; }\n.bi-lightbulb-fill::before { content: \"\\f468\"; }\n.bi-lightbulb-off-fill::before { content: \"\\f469\"; }\n.bi-lightbulb-off::before { content: \"\\f46a\"; }\n.bi-lightbulb::before { content: \"\\f46b\"; }\n.bi-lightning-charge-fill::before { content: \"\\f46c\"; }\n.bi-lightning-charge::before { content: \"\\f46d\"; }\n.bi-lightning-fill::before { content: \"\\f46e\"; }\n.bi-lightning::before { content: \"\\f46f\"; }\n.bi-link-45deg::before { content: \"\\f470\"; }\n.bi-link::before { content: \"\\f471\"; }\n.bi-linkedin::before { content: \"\\f472\"; }\n.bi-list-check::before { content: \"\\f473\"; }\n.bi-list-nested::before { content: \"\\f474\"; }\n.bi-list-ol::before { content: \"\\f475\"; }\n.bi-list-stars::before { content: \"\\f476\"; }\n.bi-list-task::before { content: \"\\f477\"; }\n.bi-list-ul::before { content: \"\\f478\"; }\n.bi-list::before { content: \"\\f479\"; }\n.bi-lock-fill::before { content: \"\\f47a\"; }\n.bi-lock::before { content: \"\\f47b\"; }\n.bi-mailbox::before { content: \"\\f47c\"; }\n.bi-mailbox2::before { content: \"\\f47d\"; }\n.bi-map-fill::before { content: \"\\f47e\"; }\n.bi-map::before { content: \"\\f47f\"; }\n.bi-markdown-fill::before { content: \"\\f480\"; }\n.bi-markdown::before { content: \"\\f481\"; }\n.bi-mask::before { content: \"\\f482\"; }\n.bi-megaphone-fill::before { content: \"\\f483\"; }\n.bi-megaphone::before { content: \"\\f484\"; }\n.bi-menu-app-fill::before { content: \"\\f485\"; }\n.bi-menu-app::before { content: \"\\f486\"; }\n.bi-menu-button-fill::before { content: \"\\f487\"; }\n.bi-menu-button-wide-fill::before { content: \"\\f488\"; }\n.bi-menu-button-wide::before { content: \"\\f489\"; }\n.bi-menu-button::before { content: \"\\f48a\"; }\n.bi-menu-down::before { content: \"\\f48b\"; }\n.bi-menu-up::before { content: \"\\f48c\"; }\n.bi-mic-fill::before { content: \"\\f48d\"; }\n.bi-mic-mute-fill::before { content: \"\\f48e\"; }\n.bi-mic-mute::before { content: \"\\f48f\"; }\n.bi-mic::before { content: \"\\f490\"; }\n.bi-minecart-loaded::before { content: \"\\f491\"; }\n.bi-minecart::before { content: \"\\f492\"; }\n.bi-moisture::before { content: \"\\f493\"; }\n.bi-moon-fill::before { content: \"\\f494\"; }\n.bi-moon-stars-fill::before { content: \"\\f495\"; }\n.bi-moon-stars::before { content: \"\\f496\"; }\n.bi-moon::before { content: \"\\f497\"; }\n.bi-mouse-fill::before { content: \"\\f498\"; }\n.bi-mouse::before { content: \"\\f499\"; }\n.bi-mouse2-fill::before { content: \"\\f49a\"; }\n.bi-mouse2::before { content: \"\\f49b\"; }\n.bi-mouse3-fill::before { content: \"\\f49c\"; }\n.bi-mouse3::before { content: \"\\f49d\"; }\n.bi-music-note-beamed::before { content: \"\\f49e\"; }\n.bi-music-note-list::before { content: \"\\f49f\"; }\n.bi-music-note::before { content: \"\\f4a0\"; }\n.bi-music-player-fill::before { content: \"\\f4a1\"; }\n.bi-music-player::before { content: \"\\f4a2\"; }\n.bi-newspaper::before { content: \"\\f4a3\"; }\n.bi-node-minus-fill::before { content: \"\\f4a4\"; }\n.bi-node-minus::before { content: \"\\f4a5\"; }\n.bi-node-plus-fill::before { content: \"\\f4a6\"; }\n.bi-node-plus::before { content: \"\\f4a7\"; }\n.bi-nut-fill::before { content: \"\\f4a8\"; }\n.bi-nut::before { content: \"\\f4a9\"; }\n.bi-octagon-fill::before { content: \"\\f4aa\"; }\n.bi-octagon-half::before { content: \"\\f4ab\"; }\n.bi-octagon::before { content: \"\\f4ac\"; }\n.bi-option::before { content: \"\\f4ad\"; }\n.bi-outlet::before { content: \"\\f4ae\"; }\n.bi-paint-bucket::before { content: \"\\f4af\"; }\n.bi-palette-fill::before { content: \"\\f4b0\"; }\n.bi-palette::before { content: \"\\f4b1\"; }\n.bi-palette2::before { content: \"\\f4b2\"; }\n.bi-paperclip::before { content: \"\\f4b3\"; }\n.bi-paragraph::before { content: \"\\f4b4\"; }\n.bi-patch-check-fill::before { content: \"\\f4b5\"; }\n.bi-patch-check::before { content: \"\\f4b6\"; }\n.bi-patch-exclamation-fill::before { content: \"\\f4b7\"; }\n.bi-patch-exclamation::before { content: \"\\f4b8\"; }\n.bi-patch-minus-fill::before { content: \"\\f4b9\"; }\n.bi-patch-minus::before { content: \"\\f4ba\"; }\n.bi-patch-plus-fill::before { content: \"\\f4bb\"; }\n.bi-patch-plus::before { content: \"\\f4bc\"; }\n.bi-patch-question-fill::before { content: \"\\f4bd\"; }\n.bi-patch-question::before { content: \"\\f4be\"; }\n.bi-pause-btn-fill::before { content: \"\\f4bf\"; }\n.bi-pause-btn::before { content: \"\\f4c0\"; }\n.bi-pause-circle-fill::before { content: \"\\f4c1\"; }\n.bi-pause-circle::before { content: \"\\f4c2\"; }\n.bi-pause-fill::before { content: \"\\f4c3\"; }\n.bi-pause::before { content: \"\\f4c4\"; }\n.bi-peace-fill::before { content: \"\\f4c5\"; }\n.bi-peace::before { content: \"\\f4c6\"; }\n.bi-pen-fill::before { content: \"\\f4c7\"; }\n.bi-pen::before { content: \"\\f4c8\"; }\n.bi-pencil-fill::before { content: \"\\f4c9\"; }\n.bi-pencil-square::before { content: \"\\f4ca\"; }\n.bi-pencil::before { content: \"\\f4cb\"; }\n.bi-pentagon-fill::before { content: \"\\f4cc\"; }\n.bi-pentagon-half::before { content: \"\\f4cd\"; }\n.bi-pentagon::before { content: \"\\f4ce\"; }\n.bi-people-fill::before { content: \"\\f4cf\"; }\n.bi-people::before { content: \"\\f4d0\"; }\n.bi-percent::before { content: \"\\f4d1\"; }\n.bi-person-badge-fill::before { content: \"\\f4d2\"; }\n.bi-person-badge::before { content: \"\\f4d3\"; }\n.bi-person-bounding-box::before { content: \"\\f4d4\"; }\n.bi-person-check-fill::before { content: \"\\f4d5\"; }\n.bi-person-check::before { content: \"\\f4d6\"; }\n.bi-person-circle::before { content: \"\\f4d7\"; }\n.bi-person-dash-fill::before { content: \"\\f4d8\"; }\n.bi-person-dash::before { content: \"\\f4d9\"; }\n.bi-person-fill::before { content: \"\\f4da\"; }\n.bi-person-lines-fill::before { content: \"\\f4db\"; }\n.bi-person-plus-fill::before { content: \"\\f4dc\"; }\n.bi-person-plus::before { content: \"\\f4dd\"; }\n.bi-person-square::before { content: \"\\f4de\"; }\n.bi-person-x-fill::before { content: \"\\f4df\"; }\n.bi-person-x::before { content: \"\\f4e0\"; }\n.bi-person::before { content: \"\\f4e1\"; }\n.bi-phone-fill::before { content: \"\\f4e2\"; }\n.bi-phone-landscape-fill::before { content: \"\\f4e3\"; }\n.bi-phone-landscape::before { content: \"\\f4e4\"; }\n.bi-phone-vibrate-fill::before { content: \"\\f4e5\"; }\n.bi-phone-vibrate::before { content: \"\\f4e6\"; }\n.bi-phone::before { content: \"\\f4e7\"; }\n.bi-pie-chart-fill::before { content: \"\\f4e8\"; }\n.bi-pie-chart::before { content: \"\\f4e9\"; }\n.bi-pin-angle-fill::before { content: \"\\f4ea\"; }\n.bi-pin-angle::before { content: \"\\f4eb\"; }\n.bi-pin-fill::before { content: \"\\f4ec\"; }\n.bi-pin::before { content: \"\\f4ed\"; }\n.bi-pip-fill::before { content: \"\\f4ee\"; }\n.bi-pip::before { content: \"\\f4ef\"; }\n.bi-play-btn-fill::before { content: \"\\f4f0\"; }\n.bi-play-btn::before { content: \"\\f4f1\"; }\n.bi-play-circle-fill::before { content: \"\\f4f2\"; }\n.bi-play-circle::before { content: \"\\f4f3\"; }\n.bi-play-fill::before { content: \"\\f4f4\"; }\n.bi-play::before { content: \"\\f4f5\"; }\n.bi-plug-fill::before { content: \"\\f4f6\"; }\n.bi-plug::before { content: \"\\f4f7\"; }\n.bi-plus-circle-dotted::before { content: \"\\f4f8\"; }\n.bi-plus-circle-fill::before { content: \"\\f4f9\"; }\n.bi-plus-circle::before { content: \"\\f4fa\"; }\n.bi-plus-square-dotted::before { content: \"\\f4fb\"; }\n.bi-plus-square-fill::before { content: \"\\f4fc\"; }\n.bi-plus-square::before { content: \"\\f4fd\"; }\n.bi-plus::before { content: \"\\f4fe\"; }\n.bi-power::before { content: \"\\f4ff\"; }\n.bi-printer-fill::before { content: \"\\f500\"; }\n.bi-printer::before { content: \"\\f501\"; }\n.bi-puzzle-fill::before { content: \"\\f502\"; }\n.bi-puzzle::before { content: \"\\f503\"; }\n.bi-question-circle-fill::before { content: \"\\f504\"; }\n.bi-question-circle::before { content: \"\\f505\"; }\n.bi-question-diamond-fill::before { content: \"\\f506\"; }\n.bi-question-diamond::before { content: \"\\f507\"; }\n.bi-question-octagon-fill::before { content: \"\\f508\"; }\n.bi-question-octagon::before { content: \"\\f509\"; }\n.bi-question-square-fill::before { content: \"\\f50a\"; }\n.bi-question-square::before { content: \"\\f50b\"; }\n.bi-question::before { content: \"\\f50c\"; }\n.bi-rainbow::before { content: \"\\f50d\"; }\n.bi-receipt-cutoff::before { content: \"\\f50e\"; }\n.bi-receipt::before { content: \"\\f50f\"; }\n.bi-reception-0::before { content: \"\\f510\"; }\n.bi-reception-1::before { content: \"\\f511\"; }\n.bi-reception-2::before { content: \"\\f512\"; }\n.bi-reception-3::before { content: \"\\f513\"; }\n.bi-reception-4::before { content: \"\\f514\"; }\n.bi-record-btn-fill::before { content: \"\\f515\"; }\n.bi-record-btn::before { content: \"\\f516\"; }\n.bi-record-circle-fill::before { content: \"\\f517\"; }\n.bi-record-circle::before { content: \"\\f518\"; }\n.bi-record-fill::before { content: \"\\f519\"; }\n.bi-record::before { content: \"\\f51a\"; }\n.bi-record2-fill::before { content: \"\\f51b\"; }\n.bi-record2::before { content: \"\\f51c\"; }\n.bi-reply-all-fill::before { content: \"\\f51d\"; }\n.bi-reply-all::before { content: \"\\f51e\"; }\n.bi-reply-fill::before { content: \"\\f51f\"; }\n.bi-reply::before { content: \"\\f520\"; }\n.bi-rss-fill::before { content: \"\\f521\"; }\n.bi-rss::before { content: \"\\f522\"; }\n.bi-rulers::before { content: \"\\f523\"; }\n.bi-save-fill::before { content: \"\\f524\"; }\n.bi-save::before { content: \"\\f525\"; }\n.bi-save2-fill::before { content: \"\\f526\"; }\n.bi-save2::before { content: \"\\f527\"; }\n.bi-scissors::before { content: \"\\f528\"; }\n.bi-screwdriver::before { content: \"\\f529\"; }\n.bi-search::before { content: \"\\f52a\"; }\n.bi-segmented-nav::before { content: \"\\f52b\"; }\n.bi-server::before { content: \"\\f52c\"; }\n.bi-share-fill::before { content: \"\\f52d\"; }\n.bi-share::before { content: \"\\f52e\"; }\n.bi-shield-check::before { content: \"\\f52f\"; }\n.bi-shield-exclamation::before { content: \"\\f530\"; }\n.bi-shield-fill-check::before { content: \"\\f531\"; }\n.bi-shield-fill-exclamation::before { content: \"\\f532\"; }\n.bi-shield-fill-minus::before { content: \"\\f533\"; }\n.bi-shield-fill-plus::before { content: \"\\f534\"; }\n.bi-shield-fill-x::before { content: \"\\f535\"; }\n.bi-shield-fill::before { content: \"\\f536\"; }\n.bi-shield-lock-fill::before { content: \"\\f537\"; }\n.bi-shield-lock::before { content: \"\\f538\"; }\n.bi-shield-minus::before { content: \"\\f539\"; }\n.bi-shield-plus::before { content: \"\\f53a\"; }\n.bi-shield-shaded::before { content: \"\\f53b\"; }\n.bi-shield-slash-fill::before { content: \"\\f53c\"; }\n.bi-shield-slash::before { content: \"\\f53d\"; }\n.bi-shield-x::before { content: \"\\f53e\"; }\n.bi-shield::before { content: \"\\f53f\"; }\n.bi-shift-fill::before { content: \"\\f540\"; }\n.bi-shift::before { content: \"\\f541\"; }\n.bi-shop-window::before { content: \"\\f542\"; }\n.bi-shop::before { content: \"\\f543\"; }\n.bi-shuffle::before { content: \"\\f544\"; }\n.bi-signpost-2-fill::before { content: \"\\f545\"; }\n.bi-signpost-2::before { content: \"\\f546\"; }\n.bi-signpost-fill::before { content: \"\\f547\"; }\n.bi-signpost-split-fill::before { content: \"\\f548\"; }\n.bi-signpost-split::before { content: \"\\f549\"; }\n.bi-signpost::before { content: \"\\f54a\"; }\n.bi-sim-fill::before { content: \"\\f54b\"; }\n.bi-sim::before { content: \"\\f54c\"; }\n.bi-skip-backward-btn-fill::before { content: \"\\f54d\"; }\n.bi-skip-backward-btn::before { content: \"\\f54e\"; }\n.bi-skip-backward-circle-fill::before { content: \"\\f54f\"; }\n.bi-skip-backward-circle::before { content: \"\\f550\"; }\n.bi-skip-backward-fill::before { content: \"\\f551\"; }\n.bi-skip-backward::before { content: \"\\f552\"; }\n.bi-skip-end-btn-fill::before { content: \"\\f553\"; }\n.bi-skip-end-btn::before { content: \"\\f554\"; }\n.bi-skip-end-circle-fill::before { content: \"\\f555\"; }\n.bi-skip-end-circle::before { content: \"\\f556\"; }\n.bi-skip-end-fill::before { content: \"\\f557\"; }\n.bi-skip-end::before { content: \"\\f558\"; }\n.bi-skip-forward-btn-fill::before { content: \"\\f559\"; }\n.bi-skip-forward-btn::before { content: \"\\f55a\"; }\n.bi-skip-forward-circle-fill::before { content: \"\\f55b\"; }\n.bi-skip-forward-circle::before { content: \"\\f55c\"; }\n.bi-skip-forward-fill::before { content: \"\\f55d\"; }\n.bi-skip-forward::before { content: \"\\f55e\"; }\n.bi-skip-start-btn-fill::before { content: \"\\f55f\"; }\n.bi-skip-start-btn::before { content: \"\\f560\"; }\n.bi-skip-start-circle-fill::before { content: \"\\f561\"; }\n.bi-skip-start-circle::before { content: \"\\f562\"; }\n.bi-skip-start-fill::before { content: \"\\f563\"; }\n.bi-skip-start::before { content: \"\\f564\"; }\n.bi-slack::before { content: \"\\f565\"; }\n.bi-slash-circle-fill::before { content: \"\\f566\"; }\n.bi-slash-circle::before { content: \"\\f567\"; }\n.bi-slash-square-fill::before { content: \"\\f568\"; }\n.bi-slash-square::before { content: \"\\f569\"; }\n.bi-slash::before { content: \"\\f56a\"; }\n.bi-sliders::before { content: \"\\f56b\"; }\n.bi-smartwatch::before { content: \"\\f56c\"; }\n.bi-snow::before { content: \"\\f56d\"; }\n.bi-snow2::before { content: \"\\f56e\"; }\n.bi-snow3::before { content: \"\\f56f\"; }\n.bi-sort-alpha-down-alt::before { content: \"\\f570\"; }\n.bi-sort-alpha-down::before { content: \"\\f571\"; }\n.bi-sort-alpha-up-alt::before { content: \"\\f572\"; }\n.bi-sort-alpha-up::before { content: \"\\f573\"; }\n.bi-sort-down-alt::before { content: \"\\f574\"; }\n.bi-sort-down::before { content: \"\\f575\"; }\n.bi-sort-numeric-down-alt::before { content: \"\\f576\"; }\n.bi-sort-numeric-down::before { content: \"\\f577\"; }\n.bi-sort-numeric-up-alt::before { content: \"\\f578\"; }\n.bi-sort-numeric-up::before { content: \"\\f579\"; }\n.bi-sort-up-alt::before { content: \"\\f57a\"; }\n.bi-sort-up::before { content: \"\\f57b\"; }\n.bi-soundwave::before { content: \"\\f57c\"; }\n.bi-speaker-fill::before { content: \"\\f57d\"; }\n.bi-speaker::before { content: \"\\f57e\"; }\n.bi-speedometer::before { content: \"\\f57f\"; }\n.bi-speedometer2::before { content: \"\\f580\"; }\n.bi-spellcheck::before { content: \"\\f581\"; }\n.bi-square-fill::before { content: \"\\f582\"; }\n.bi-square-half::before { content: \"\\f583\"; }\n.bi-square::before { content: \"\\f584\"; }\n.bi-stack::before { content: \"\\f585\"; }\n.bi-star-fill::before { content: \"\\f586\"; }\n.bi-star-half::before { content: \"\\f587\"; }\n.bi-star::before { content: \"\\f588\"; }\n.bi-stars::before { content: \"\\f589\"; }\n.bi-stickies-fill::before { content: \"\\f58a\"; }\n.bi-stickies::before { content: \"\\f58b\"; }\n.bi-sticky-fill::before { content: \"\\f58c\"; }\n.bi-sticky::before { content: \"\\f58d\"; }\n.bi-stop-btn-fill::before { content: \"\\f58e\"; }\n.bi-stop-btn::before { content: \"\\f58f\"; }\n.bi-stop-circle-fill::before { content: \"\\f590\"; }\n.bi-stop-circle::before { content: \"\\f591\"; }\n.bi-stop-fill::before { content: \"\\f592\"; }\n.bi-stop::before { content: \"\\f593\"; }\n.bi-stoplights-fill::before { content: \"\\f594\"; }\n.bi-stoplights::before { content: \"\\f595\"; }\n.bi-stopwatch-fill::before { content: \"\\f596\"; }\n.bi-stopwatch::before { content: \"\\f597\"; }\n.bi-subtract::before { content: \"\\f598\"; }\n.bi-suit-club-fill::before { content: \"\\f599\"; }\n.bi-suit-club::before { content: \"\\f59a\"; }\n.bi-suit-diamond-fill::before { content: \"\\f59b\"; }\n.bi-suit-diamond::before { content: \"\\f59c\"; }\n.bi-suit-heart-fill::before { content: \"\\f59d\"; }\n.bi-suit-heart::before { content: \"\\f59e\"; }\n.bi-suit-spade-fill::before { content: \"\\f59f\"; }\n.bi-suit-spade::before { content: \"\\f5a0\"; }\n.bi-sun-fill::before { content: \"\\f5a1\"; }\n.bi-sun::before { content: \"\\f5a2\"; }\n.bi-sunglasses::before { content: \"\\f5a3\"; }\n.bi-sunrise-fill::before { content: \"\\f5a4\"; }\n.bi-sunrise::before { content: \"\\f5a5\"; }\n.bi-sunset-fill::before { content: \"\\f5a6\"; }\n.bi-sunset::before { content: \"\\f5a7\"; }\n.bi-symmetry-horizontal::before { content: \"\\f5a8\"; }\n.bi-symmetry-vertical::before { content: \"\\f5a9\"; }\n.bi-table::before { content: \"\\f5aa\"; }\n.bi-tablet-fill::before { content: \"\\f5ab\"; }\n.bi-tablet-landscape-fill::before { content: \"\\f5ac\"; }\n.bi-tablet-landscape::before { content: \"\\f5ad\"; }\n.bi-tablet::before { content: \"\\f5ae\"; }\n.bi-tag-fill::before { content: \"\\f5af\"; }\n.bi-tag::before { content: \"\\f5b0\"; }\n.bi-tags-fill::before { content: \"\\f5b1\"; }\n.bi-tags::before { content: \"\\f5b2\"; }\n.bi-telegram::before { content: \"\\f5b3\"; }\n.bi-telephone-fill::before { content: \"\\f5b4\"; }\n.bi-telephone-forward-fill::before { content: \"\\f5b5\"; }\n.bi-telephone-forward::before { content: \"\\f5b6\"; }\n.bi-telephone-inbound-fill::before { content: \"\\f5b7\"; }\n.bi-telephone-inbound::before { content: \"\\f5b8\"; }\n.bi-telephone-minus-fill::before { content: \"\\f5b9\"; }\n.bi-telephone-minus::before { content: \"\\f5ba\"; }\n.bi-telephone-outbound-fill::before { content: \"\\f5bb\"; }\n.bi-telephone-outbound::before { content: \"\\f5bc\"; }\n.bi-telephone-plus-fill::before { content: \"\\f5bd\"; }\n.bi-telephone-plus::before { content: \"\\f5be\"; }\n.bi-telephone-x-fill::before { content: \"\\f5bf\"; }\n.bi-telephone-x::before { content: \"\\f5c0\"; }\n.bi-telephone::before { content: \"\\f5c1\"; }\n.bi-terminal-fill::before { content: \"\\f5c2\"; }\n.bi-terminal::before { content: \"\\f5c3\"; }\n.bi-text-center::before { content: \"\\f5c4\"; }\n.bi-text-indent-left::before { content: \"\\f5c5\"; }\n.bi-text-indent-right::before { content: \"\\f5c6\"; }\n.bi-text-left::before { content: \"\\f5c7\"; }\n.bi-text-paragraph::before { content: \"\\f5c8\"; }\n.bi-text-right::before { content: \"\\f5c9\"; }\n.bi-textarea-resize::before { content: \"\\f5ca\"; }\n.bi-textarea-t::before { content: \"\\f5cb\"; }\n.bi-textarea::before { content: \"\\f5cc\"; }\n.bi-thermometer-half::before { content: \"\\f5cd\"; }\n.bi-thermometer-high::before { content: \"\\f5ce\"; }\n.bi-thermometer-low::before { content: \"\\f5cf\"; }\n.bi-thermometer-snow::before { content: \"\\f5d0\"; }\n.bi-thermometer-sun::before { content: \"\\f5d1\"; }\n.bi-thermometer::before { content: \"\\f5d2\"; }\n.bi-three-dots-vertical::before { content: \"\\f5d3\"; }\n.bi-three-dots::before { content: \"\\f5d4\"; }\n.bi-toggle-off::before { content: \"\\f5d5\"; }\n.bi-toggle-on::before { content: \"\\f5d6\"; }\n.bi-toggle2-off::before { content: \"\\f5d7\"; }\n.bi-toggle2-on::before { content: \"\\f5d8\"; }\n.bi-toggles::before { content: \"\\f5d9\"; }\n.bi-toggles2::before { content: \"\\f5da\"; }\n.bi-tools::before { content: \"\\f5db\"; }\n.bi-tornado::before { content: \"\\f5dc\"; }\n.bi-trash-fill::before { content: \"\\f5dd\"; }\n.bi-trash::before { content: \"\\f5de\"; }\n.bi-trash2-fill::before { content: \"\\f5df\"; }\n.bi-trash2::before { content: \"\\f5e0\"; }\n.bi-tree-fill::before { content: \"\\f5e1\"; }\n.bi-tree::before { content: \"\\f5e2\"; }\n.bi-triangle-fill::before { content: \"\\f5e3\"; }\n.bi-triangle-half::before { content: \"\\f5e4\"; }\n.bi-triangle::before { content: \"\\f5e5\"; }\n.bi-trophy-fill::before { content: \"\\f5e6\"; }\n.bi-trophy::before { content: \"\\f5e7\"; }\n.bi-tropical-storm::before { content: \"\\f5e8\"; }\n.bi-truck-flatbed::before { content: \"\\f5e9\"; }\n.bi-truck::before { content: \"\\f5ea\"; }\n.bi-tsunami::before { content: \"\\f5eb\"; }\n.bi-tv-fill::before { content: \"\\f5ec\"; }\n.bi-tv::before { content: \"\\f5ed\"; }\n.bi-twitch::before { content: \"\\f5ee\"; }\n.bi-twitter::before { content: \"\\f5ef\"; }\n.bi-type-bold::before { content: \"\\f5f0\"; }\n.bi-type-h1::before { content: \"\\f5f1\"; }\n.bi-type-h2::before { content: \"\\f5f2\"; }\n.bi-type-h3::before { content: \"\\f5f3\"; }\n.bi-type-italic::before { content: \"\\f5f4\"; }\n.bi-type-strikethrough::before { content: \"\\f5f5\"; }\n.bi-type-underline::before { content: \"\\f5f6\"; }\n.bi-type::before { content: \"\\f5f7\"; }\n.bi-ui-checks-grid::before { content: \"\\f5f8\"; }\n.bi-ui-checks::before { content: \"\\f5f9\"; }\n.bi-ui-radios-grid::before { content: \"\\f5fa\"; }\n.bi-ui-radios::before { content: \"\\f5fb\"; }\n.bi-umbrella-fill::before { content: \"\\f5fc\"; }\n.bi-umbrella::before { content: \"\\f5fd\"; }\n.bi-union::before { content: \"\\f5fe\"; }\n.bi-unlock-fill::before { content: \"\\f5ff\"; }\n.bi-unlock::before { content: \"\\f600\"; }\n.bi-upc-scan::before { content: \"\\f601\"; }\n.bi-upc::before { content: \"\\f602\"; }\n.bi-upload::before { content: \"\\f603\"; }\n.bi-vector-pen::before { content: \"\\f604\"; }\n.bi-view-list::before { content: \"\\f605\"; }\n.bi-view-stacked::before { content: \"\\f606\"; }\n.bi-vinyl-fill::before { content: \"\\f607\"; }\n.bi-vinyl::before { content: \"\\f608\"; }\n.bi-voicemail::before { content: \"\\f609\"; }\n.bi-volume-down-fill::before { content: \"\\f60a\"; }\n.bi-volume-down::before { content: \"\\f60b\"; }\n.bi-volume-mute-fill::before { content: \"\\f60c\"; }\n.bi-volume-mute::before { content: \"\\f60d\"; }\n.bi-volume-off-fill::before { content: \"\\f60e\"; }\n.bi-volume-off::before { content: \"\\f60f\"; }\n.bi-volume-up-fill::before { content: \"\\f610\"; }\n.bi-volume-up::before { content: \"\\f611\"; }\n.bi-vr::before { content: \"\\f612\"; }\n.bi-wallet-fill::before { content: \"\\f613\"; }\n.bi-wallet::before { content: \"\\f614\"; }\n.bi-wallet2::before { content: \"\\f615\"; }\n.bi-watch::before { content: \"\\f616\"; }\n.bi-water::before { content: \"\\f617\"; }\n.bi-whatsapp::before { content: \"\\f618\"; }\n.bi-wifi-1::before { content: \"\\f619\"; }\n.bi-wifi-2::before { content: \"\\f61a\"; }\n.bi-wifi-off::before { content: \"\\f61b\"; }\n.bi-wifi::before { content: \"\\f61c\"; }\n.bi-wind::before { content: \"\\f61d\"; }\n.bi-window-dock::before { content: \"\\f61e\"; }\n.bi-window-sidebar::before { content: \"\\f61f\"; }\n.bi-window::before { content: \"\\f620\"; }\n.bi-wrench::before { content: \"\\f621\"; }\n.bi-x-circle-fill::before { content: \"\\f622\"; }\n.bi-x-circle::before { content: \"\\f623\"; }\n.bi-x-diamond-fill::before { content: \"\\f624\"; }\n.bi-x-diamond::before { content: \"\\f625\"; }\n.bi-x-octagon-fill::before { content: \"\\f626\"; }\n.bi-x-octagon::before { content: \"\\f627\"; }\n.bi-x-square-fill::before { content: \"\\f628\"; }\n.bi-x-square::before { content: \"\\f629\"; }\n.bi-x::before { content: \"\\f62a\"; }\n.bi-youtube::before { content: \"\\f62b\"; }\n.bi-zoom-in::before { content: \"\\f62c\"; }\n.bi-zoom-out::before { content: \"\\f62d\"; }\n.bi-bank::before { content: \"\\f62e\"; }\n.bi-bank2::before { content: \"\\f62f\"; }\n.bi-bell-slash-fill::before { content: \"\\f630\"; }\n.bi-bell-slash::before { content: \"\\f631\"; }\n.bi-cash-coin::before { content: \"\\f632\"; }\n.bi-check-lg::before { content: \"\\f633\"; }\n.bi-coin::before { content: \"\\f634\"; }\n.bi-currency-bitcoin::before { content: \"\\f635\"; }\n.bi-currency-dollar::before { content: \"\\f636\"; }\n.bi-currency-euro::before { content: \"\\f637\"; }\n.bi-currency-exchange::before { content: \"\\f638\"; }\n.bi-currency-pound::before { content: \"\\f639\"; }\n.bi-currency-yen::before { content: \"\\f63a\"; }\n.bi-dash-lg::before { content: \"\\f63b\"; }\n.bi-exclamation-lg::before { content: \"\\f63c\"; }\n.bi-file-earmark-pdf-fill::before { content: \"\\f63d\"; }\n.bi-file-earmark-pdf::before { content: \"\\f63e\"; }\n.bi-file-pdf-fill::before { content: \"\\f63f\"; }\n.bi-file-pdf::before { content: \"\\f640\"; }\n.bi-gender-ambiguous::before { content: \"\\f641\"; }\n.bi-gender-female::before { content: \"\\f642\"; }\n.bi-gender-male::before { content: \"\\f643\"; }\n.bi-gender-trans::before { content: \"\\f644\"; }\n.bi-headset-vr::before { content: \"\\f645\"; }\n.bi-info-lg::before { content: \"\\f646\"; }\n.bi-mastodon::before { content: \"\\f647\"; }\n.bi-messenger::before { content: \"\\f648\"; }\n.bi-piggy-bank-fill::before { content: \"\\f649\"; }\n.bi-piggy-bank::before { content: \"\\f64a\"; }\n.bi-pin-map-fill::before { content: \"\\f64b\"; }\n.bi-pin-map::before { content: \"\\f64c\"; }\n.bi-plus-lg::before { content: \"\\f64d\"; }\n.bi-question-lg::before { content: \"\\f64e\"; }\n.bi-recycle::before { content: \"\\f64f\"; }\n.bi-reddit::before { content: \"\\f650\"; }\n.bi-safe-fill::before { content: \"\\f651\"; }\n.bi-safe2-fill::before { content: \"\\f652\"; }\n.bi-safe2::before { content: \"\\f653\"; }\n.bi-sd-card-fill::before { content: \"\\f654\"; }\n.bi-sd-card::before { content: \"\\f655\"; }\n.bi-skype::before { content: \"\\f656\"; }\n.bi-slash-lg::before { content: \"\\f657\"; }\n.bi-translate::before { content: \"\\f658\"; }\n.bi-x-lg::before { content: \"\\f659\"; }\n.bi-safe::before { content: \"\\f65a\"; }\n.bi-apple::before { content: \"\\f65b\"; }\n.bi-microsoft::before { content: \"\\f65d\"; }\n.bi-windows::before { content: \"\\f65e\"; }\n.bi-behance::before { content: \"\\f65c\"; }\n.bi-dribbble::before { content: \"\\f65f\"; }\n.bi-line::before { content: \"\\f660\"; }\n.bi-medium::before { content: \"\\f661\"; }\n.bi-paypal::before { content: \"\\f662\"; }\n.bi-pinterest::before { content: \"\\f663\"; }\n.bi-signal::before { content: \"\\f664\"; }\n.bi-snapchat::before { content: \"\\f665\"; }\n.bi-spotify::before { content: \"\\f666\"; }\n.bi-stack-overflow::before { content: \"\\f667\"; }\n.bi-strava::before { content: \"\\f668\"; }\n.bi-wordpress::before { content: \"\\f669\"; }\n.bi-vimeo::before { content: \"\\f66a\"; }\n.bi-activity::before { content: \"\\f66b\"; }\n.bi-easel2-fill::before { content: \"\\f66c\"; }\n.bi-easel2::before { content: \"\\f66d\"; }\n.bi-easel3-fill::before { content: \"\\f66e\"; }\n.bi-easel3::before { content: \"\\f66f\"; }\n.bi-fan::before { content: \"\\f670\"; }\n.bi-fingerprint::before { content: \"\\f671\"; }\n.bi-graph-down-arrow::before { content: \"\\f672\"; }\n.bi-graph-up-arrow::before { content: \"\\f673\"; }\n.bi-hypnotize::before { content: \"\\f674\"; }\n.bi-magic::before { content: \"\\f675\"; }\n.bi-person-rolodex::before { content: \"\\f676\"; }\n.bi-person-video::before { content: \"\\f677\"; }\n.bi-person-video2::before { content: \"\\f678\"; }\n.bi-person-video3::before { content: \"\\f679\"; }\n.bi-person-workspace::before { content: \"\\f67a\"; }\n.bi-radioactive::before { content: \"\\f67b\"; }\n.bi-webcam-fill::before { content: \"\\f67c\"; }\n.bi-webcam::before { content: \"\\f67d\"; }\n.bi-yin-yang::before { content: \"\\f67e\"; }\n.bi-bandaid-fill::before { content: \"\\f680\"; }\n.bi-bandaid::before { content: \"\\f681\"; }\n.bi-bluetooth::before { content: \"\\f682\"; }\n.bi-body-text::before { content: \"\\f683\"; }\n.bi-boombox::before { content: \"\\f684\"; }\n.bi-boxes::before { content: \"\\f685\"; }\n.bi-dpad-fill::before { content: \"\\f686\"; }\n.bi-dpad::before { content: \"\\f687\"; }\n.bi-ear-fill::before { content: \"\\f688\"; }\n.bi-ear::before { content: \"\\f689\"; }\n.bi-envelope-check-fill::before { content: \"\\f68b\"; }\n.bi-envelope-check::before { content: \"\\f68c\"; }\n.bi-envelope-dash-fill::before { content: \"\\f68e\"; }\n.bi-envelope-dash::before { content: \"\\f68f\"; }\n.bi-envelope-exclamation-fill::before { content: \"\\f691\"; }\n.bi-envelope-exclamation::before { content: \"\\f692\"; }\n.bi-envelope-plus-fill::before { content: \"\\f693\"; }\n.bi-envelope-plus::before { content: \"\\f694\"; }\n.bi-envelope-slash-fill::before { content: \"\\f696\"; }\n.bi-envelope-slash::before { content: \"\\f697\"; }\n.bi-envelope-x-fill::before { content: \"\\f699\"; }\n.bi-envelope-x::before { content: \"\\f69a\"; }\n.bi-explicit-fill::before { content: \"\\f69b\"; }\n.bi-explicit::before { content: \"\\f69c\"; }\n.bi-git::before { content: \"\\f69d\"; }\n.bi-infinity::before { content: \"\\f69e\"; }\n.bi-list-columns-reverse::before { content: \"\\f69f\"; }\n.bi-list-columns::before { content: \"\\f6a0\"; }\n.bi-meta::before { content: \"\\f6a1\"; }\n.bi-nintendo-switch::before { content: \"\\f6a4\"; }\n.bi-pc-display-horizontal::before { content: \"\\f6a5\"; }\n.bi-pc-display::before { content: \"\\f6a6\"; }\n.bi-pc-horizontal::before { content: \"\\f6a7\"; }\n.bi-pc::before { content: \"\\f6a8\"; }\n.bi-playstation::before { content: \"\\f6a9\"; }\n.bi-plus-slash-minus::before { content: \"\\f6aa\"; }\n.bi-projector-fill::before { content: \"\\f6ab\"; }\n.bi-projector::before { content: \"\\f6ac\"; }\n.bi-qr-code-scan::before { content: \"\\f6ad\"; }\n.bi-qr-code::before { content: \"\\f6ae\"; }\n.bi-quora::before { content: \"\\f6af\"; }\n.bi-quote::before { content: \"\\f6b0\"; }\n.bi-robot::before { content: \"\\f6b1\"; }\n.bi-send-check-fill::before { content: \"\\f6b2\"; }\n.bi-send-check::before { content: \"\\f6b3\"; }\n.bi-send-dash-fill::before { content: \"\\f6b4\"; }\n.bi-send-dash::before { content: \"\\f6b5\"; }\n.bi-send-exclamation-fill::before { content: \"\\f6b7\"; }\n.bi-send-exclamation::before { content: \"\\f6b8\"; }\n.bi-send-fill::before { content: \"\\f6b9\"; }\n.bi-send-plus-fill::before { content: \"\\f6ba\"; }\n.bi-send-plus::before { content: \"\\f6bb\"; }\n.bi-send-slash-fill::before { content: \"\\f6bc\"; }\n.bi-send-slash::before { content: \"\\f6bd\"; }\n.bi-send-x-fill::before { content: \"\\f6be\"; }\n.bi-send-x::before { content: \"\\f6bf\"; }\n.bi-send::before { content: \"\\f6c0\"; }\n.bi-steam::before { content: \"\\f6c1\"; }\n.bi-terminal-dash::before { content: \"\\f6c3\"; }\n.bi-terminal-plus::before { content: \"\\f6c4\"; }\n.bi-terminal-split::before { content: \"\\f6c5\"; }\n.bi-ticket-detailed-fill::before { content: \"\\f6c6\"; }\n.bi-ticket-detailed::before { content: \"\\f6c7\"; }\n.bi-ticket-fill::before { content: \"\\f6c8\"; }\n.bi-ticket-perforated-fill::before { content: \"\\f6c9\"; }\n.bi-ticket-perforated::before { content: \"\\f6ca\"; }\n.bi-ticket::before { content: \"\\f6cb\"; }\n.bi-tiktok::before { content: \"\\f6cc\"; }\n.bi-window-dash::before { content: \"\\f6cd\"; }\n.bi-window-desktop::before { content: \"\\f6ce\"; }\n.bi-window-fullscreen::before { content: \"\\f6cf\"; }\n.bi-window-plus::before { content: \"\\f6d0\"; }\n.bi-window-split::before { content: \"\\f6d1\"; }\n.bi-window-stack::before { content: \"\\f6d2\"; }\n.bi-window-x::before { content: \"\\f6d3\"; }\n.bi-xbox::before { content: \"\\f6d4\"; }\n.bi-ethernet::before { content: \"\\f6d5\"; }\n.bi-hdmi-fill::before { content: \"\\f6d6\"; }\n.bi-hdmi::before { content: \"\\f6d7\"; }\n.bi-usb-c-fill::before { content: \"\\f6d8\"; }\n.bi-usb-c::before { content: \"\\f6d9\"; }\n.bi-usb-fill::before { content: \"\\f6da\"; }\n.bi-usb-plug-fill::before { content: \"\\f6db\"; }\n.bi-usb-plug::before { content: \"\\f6dc\"; }\n.bi-usb-symbol::before { content: \"\\f6dd\"; }\n.bi-usb::before { content: \"\\f6de\"; }\n.bi-boombox-fill::before { content: \"\\f6df\"; }\n.bi-displayport::before { content: \"\\f6e1\"; }\n.bi-gpu-card::before { content: \"\\f6e2\"; }\n.bi-memory::before { content: \"\\f6e3\"; }\n.bi-modem-fill::before { content: \"\\f6e4\"; }\n.bi-modem::before { content: \"\\f6e5\"; }\n.bi-motherboard-fill::before { content: \"\\f6e6\"; }\n.bi-motherboard::before { content: \"\\f6e7\"; }\n.bi-optical-audio-fill::before { content: \"\\f6e8\"; }\n.bi-optical-audio::before { content: \"\\f6e9\"; }\n.bi-pci-card::before { content: \"\\f6ea\"; }\n.bi-router-fill::before { content: \"\\f6eb\"; }\n.bi-router::before { content: \"\\f6ec\"; }\n.bi-thunderbolt-fill::before { content: \"\\f6ef\"; }\n.bi-thunderbolt::before { content: \"\\f6f0\"; }\n.bi-usb-drive-fill::before { content: \"\\f6f1\"; }\n.bi-usb-drive::before { content: \"\\f6f2\"; }\n.bi-usb-micro-fill::before { content: \"\\f6f3\"; }\n.bi-usb-micro::before { content: \"\\f6f4\"; }\n.bi-usb-mini-fill::before { content: \"\\f6f5\"; }\n.bi-usb-mini::before { content: \"\\f6f6\"; }\n.bi-cloud-haze2::before { content: \"\\f6f7\"; }\n.bi-device-hdd-fill::before { content: \"\\f6f8\"; }\n.bi-device-hdd::before { content: \"\\f6f9\"; }\n.bi-device-ssd-fill::before { content: \"\\f6fa\"; }\n.bi-device-ssd::before { content: \"\\f6fb\"; }\n.bi-displayport-fill::before { content: \"\\f6fc\"; }\n.bi-mortarboard-fill::before { content: \"\\f6fd\"; }\n.bi-mortarboard::before { content: \"\\f6fe\"; }\n.bi-terminal-x::before { content: \"\\f6ff\"; }\n.bi-arrow-through-heart-fill::before { content: \"\\f700\"; }\n.bi-arrow-through-heart::before { content: \"\\f701\"; }\n.bi-badge-sd-fill::before { content: \"\\f702\"; }\n.bi-badge-sd::before { content: \"\\f703\"; }\n.bi-bag-heart-fill::before { content: \"\\f704\"; }\n.bi-bag-heart::before { content: \"\\f705\"; }\n.bi-balloon-fill::before { content: \"\\f706\"; }\n.bi-balloon-heart-fill::before { content: \"\\f707\"; }\n.bi-balloon-heart::before { content: \"\\f708\"; }\n.bi-balloon::before { content: \"\\f709\"; }\n.bi-box2-fill::before { content: \"\\f70a\"; }\n.bi-box2-heart-fill::before { content: \"\\f70b\"; }\n.bi-box2-heart::before { content: \"\\f70c\"; }\n.bi-box2::before { content: \"\\f70d\"; }\n.bi-braces-asterisk::before { content: \"\\f70e\"; }\n.bi-calendar-heart-fill::before { content: \"\\f70f\"; }\n.bi-calendar-heart::before { content: \"\\f710\"; }\n.bi-calendar2-heart-fill::before { content: \"\\f711\"; }\n.bi-calendar2-heart::before { content: \"\\f712\"; }\n.bi-chat-heart-fill::before { content: \"\\f713\"; }\n.bi-chat-heart::before { content: \"\\f714\"; }\n.bi-chat-left-heart-fill::before { content: \"\\f715\"; }\n.bi-chat-left-heart::before { content: \"\\f716\"; }\n.bi-chat-right-heart-fill::before { content: \"\\f717\"; }\n.bi-chat-right-heart::before { content: \"\\f718\"; }\n.bi-chat-square-heart-fill::before { content: \"\\f719\"; }\n.bi-chat-square-heart::before { content: \"\\f71a\"; }\n.bi-clipboard-check-fill::before { content: \"\\f71b\"; }\n.bi-clipboard-data-fill::before { content: \"\\f71c\"; }\n.bi-clipboard-fill::before { content: \"\\f71d\"; }\n.bi-clipboard-heart-fill::before { content: \"\\f71e\"; }\n.bi-clipboard-heart::before { content: \"\\f71f\"; }\n.bi-clipboard-minus-fill::before { content: \"\\f720\"; }\n.bi-clipboard-plus-fill::before { content: \"\\f721\"; }\n.bi-clipboard-pulse::before { content: \"\\f722\"; }\n.bi-clipboard-x-fill::before { content: \"\\f723\"; }\n.bi-clipboard2-check-fill::before { content: \"\\f724\"; }\n.bi-clipboard2-check::before { content: \"\\f725\"; }\n.bi-clipboard2-data-fill::before { content: \"\\f726\"; }\n.bi-clipboard2-data::before { content: \"\\f727\"; }\n.bi-clipboard2-fill::before { content: \"\\f728\"; }\n.bi-clipboard2-heart-fill::before { content: \"\\f729\"; }\n.bi-clipboard2-heart::before { content: \"\\f72a\"; }\n.bi-clipboard2-minus-fill::before { content: \"\\f72b\"; }\n.bi-clipboard2-minus::before { content: \"\\f72c\"; }\n.bi-clipboard2-plus-fill::before { content: \"\\f72d\"; }\n.bi-clipboard2-plus::before { content: \"\\f72e\"; }\n.bi-clipboard2-pulse-fill::before { content: \"\\f72f\"; }\n.bi-clipboard2-pulse::before { content: \"\\f730\"; }\n.bi-clipboard2-x-fill::before { content: \"\\f731\"; }\n.bi-clipboard2-x::before { content: \"\\f732\"; }\n.bi-clipboard2::before { content: \"\\f733\"; }\n.bi-emoji-kiss-fill::before { content: \"\\f734\"; }\n.bi-emoji-kiss::before { content: \"\\f735\"; }\n.bi-envelope-heart-fill::before { content: \"\\f736\"; }\n.bi-envelope-heart::before { content: \"\\f737\"; }\n.bi-envelope-open-heart-fill::before { content: \"\\f738\"; }\n.bi-envelope-open-heart::before { content: \"\\f739\"; }\n.bi-envelope-paper-fill::before { content: \"\\f73a\"; }\n.bi-envelope-paper-heart-fill::before { content: \"\\f73b\"; }\n.bi-envelope-paper-heart::before { content: \"\\f73c\"; }\n.bi-envelope-paper::before { content: \"\\f73d\"; }\n.bi-filetype-aac::before { content: \"\\f73e\"; }\n.bi-filetype-ai::before { content: \"\\f73f\"; }\n.bi-filetype-bmp::before { content: \"\\f740\"; }\n.bi-filetype-cs::before { content: \"\\f741\"; }\n.bi-filetype-css::before { content: \"\\f742\"; }\n.bi-filetype-csv::before { content: \"\\f743\"; }\n.bi-filetype-doc::before { content: \"\\f744\"; }\n.bi-filetype-docx::before { content: \"\\f745\"; }\n.bi-filetype-exe::before { content: \"\\f746\"; }\n.bi-filetype-gif::before { content: \"\\f747\"; }\n.bi-filetype-heic::before { content: \"\\f748\"; }\n.bi-filetype-html::before { content: \"\\f749\"; }\n.bi-filetype-java::before { content: \"\\f74a\"; }\n.bi-filetype-jpg::before { content: \"\\f74b\"; }\n.bi-filetype-js::before { content: \"\\f74c\"; }\n.bi-filetype-jsx::before { content: \"\\f74d\"; }\n.bi-filetype-key::before { content: \"\\f74e\"; }\n.bi-filetype-m4p::before { content: \"\\f74f\"; }\n.bi-filetype-md::before { content: \"\\f750\"; }\n.bi-filetype-mdx::before { content: \"\\f751\"; }\n.bi-filetype-mov::before { content: \"\\f752\"; }\n.bi-filetype-mp3::before { content: \"\\f753\"; }\n.bi-filetype-mp4::before { content: \"\\f754\"; }\n.bi-filetype-otf::before { content: \"\\f755\"; }\n.bi-filetype-pdf::before { content: \"\\f756\"; }\n.bi-filetype-php::before { content: \"\\f757\"; }\n.bi-filetype-png::before { content: \"\\f758\"; }\n.bi-filetype-ppt::before { content: \"\\f75a\"; }\n.bi-filetype-psd::before { content: \"\\f75b\"; }\n.bi-filetype-py::before { content: \"\\f75c\"; }\n.bi-filetype-raw::before { content: \"\\f75d\"; }\n.bi-filetype-rb::before { content: \"\\f75e\"; }\n.bi-filetype-sass::before { content: \"\\f75f\"; }\n.bi-filetype-scss::before { content: \"\\f760\"; }\n.bi-filetype-sh::before { content: \"\\f761\"; }\n.bi-filetype-svg::before { content: \"\\f762\"; }\n.bi-filetype-tiff::before { content: \"\\f763\"; }\n.bi-filetype-tsx::before { content: \"\\f764\"; }\n.bi-filetype-ttf::before { content: \"\\f765\"; }\n.bi-filetype-txt::before { content: \"\\f766\"; }\n.bi-filetype-wav::before { content: \"\\f767\"; }\n.bi-filetype-woff::before { content: \"\\f768\"; }\n.bi-filetype-xls::before { content: \"\\f76a\"; }\n.bi-filetype-xml::before { content: \"\\f76b\"; }\n.bi-filetype-yml::before { content: \"\\f76c\"; }\n.bi-heart-arrow::before { content: \"\\f76d\"; }\n.bi-heart-pulse-fill::before { content: \"\\f76e\"; }\n.bi-heart-pulse::before { content: \"\\f76f\"; }\n.bi-heartbreak-fill::before { content: \"\\f770\"; }\n.bi-heartbreak::before { content: \"\\f771\"; }\n.bi-hearts::before { content: \"\\f772\"; }\n.bi-hospital-fill::before { content: \"\\f773\"; }\n.bi-hospital::before { content: \"\\f774\"; }\n.bi-house-heart-fill::before { content: \"\\f775\"; }\n.bi-house-heart::before { content: \"\\f776\"; }\n.bi-incognito::before { content: \"\\f777\"; }\n.bi-magnet-fill::before { content: \"\\f778\"; }\n.bi-magnet::before { content: \"\\f779\"; }\n.bi-person-heart::before { content: \"\\f77a\"; }\n.bi-person-hearts::before { content: \"\\f77b\"; }\n.bi-phone-flip::before { content: \"\\f77c\"; }\n.bi-plugin::before { content: \"\\f77d\"; }\n.bi-postage-fill::before { content: \"\\f77e\"; }\n.bi-postage-heart-fill::before { content: \"\\f77f\"; }\n.bi-postage-heart::before { content: \"\\f780\"; }\n.bi-postage::before { content: \"\\f781\"; }\n.bi-postcard-fill::before { content: \"\\f782\"; }\n.bi-postcard-heart-fill::before { content: \"\\f783\"; }\n.bi-postcard-heart::before { content: \"\\f784\"; }\n.bi-postcard::before { content: \"\\f785\"; }\n.bi-search-heart-fill::before { content: \"\\f786\"; }\n.bi-search-heart::before { content: \"\\f787\"; }\n.bi-sliders2-vertical::before { content: \"\\f788\"; }\n.bi-sliders2::before { content: \"\\f789\"; }\n.bi-trash3-fill::before { content: \"\\f78a\"; }\n.bi-trash3::before { content: \"\\f78b\"; }\n.bi-valentine::before { content: \"\\f78c\"; }\n.bi-valentine2::before { content: \"\\f78d\"; }\n.bi-wrench-adjustable-circle-fill::before { content: \"\\f78e\"; }\n.bi-wrench-adjustable-circle::before { content: \"\\f78f\"; }\n.bi-wrench-adjustable::before { content: \"\\f790\"; }\n.bi-filetype-json::before { content: \"\\f791\"; }\n.bi-filetype-pptx::before { content: \"\\f792\"; }\n.bi-filetype-xlsx::before { content: \"\\f793\"; }\n.bi-1-circle-fill::before { content: \"\\f796\"; }\n.bi-1-circle::before { content: \"\\f797\"; }\n.bi-1-square-fill::before { content: \"\\f798\"; }\n.bi-1-square::before { content: \"\\f799\"; }\n.bi-2-circle-fill::before { content: \"\\f79c\"; }\n.bi-2-circle::before { content: \"\\f79d\"; }\n.bi-2-square-fill::before { content: \"\\f79e\"; }\n.bi-2-square::before { content: \"\\f79f\"; }\n.bi-3-circle-fill::before { content: \"\\f7a2\"; }\n.bi-3-circle::before { content: \"\\f7a3\"; }\n.bi-3-square-fill::before { content: \"\\f7a4\"; }\n.bi-3-square::before { content: \"\\f7a5\"; }\n.bi-4-circle-fill::before { content: \"\\f7a8\"; }\n.bi-4-circle::before { content: \"\\f7a9\"; }\n.bi-4-square-fill::before { content: \"\\f7aa\"; }\n.bi-4-square::before { content: \"\\f7ab\"; }\n.bi-5-circle-fill::before { content: \"\\f7ae\"; }\n.bi-5-circle::before { content: \"\\f7af\"; }\n.bi-5-square-fill::before { content: \"\\f7b0\"; }\n.bi-5-square::before { content: \"\\f7b1\"; }\n.bi-6-circle-fill::before { content: \"\\f7b4\"; }\n.bi-6-circle::before { content: \"\\f7b5\"; }\n.bi-6-square-fill::before { content: \"\\f7b6\"; }\n.bi-6-square::before { content: \"\\f7b7\"; }\n.bi-7-circle-fill::before { content: \"\\f7ba\"; }\n.bi-7-circle::before { content: \"\\f7bb\"; }\n.bi-7-square-fill::before { content: \"\\f7bc\"; }\n.bi-7-square::before { content: \"\\f7bd\"; }\n.bi-8-circle-fill::before { content: \"\\f7c0\"; }\n.bi-8-circle::before { content: \"\\f7c1\"; }\n.bi-8-square-fill::before { content: \"\\f7c2\"; }\n.bi-8-square::before { content: \"\\f7c3\"; }\n.bi-9-circle-fill::before { content: \"\\f7c6\"; }\n.bi-9-circle::before { content: \"\\f7c7\"; }\n.bi-9-square-fill::before { content: \"\\f7c8\"; }\n.bi-9-square::before { content: \"\\f7c9\"; }\n.bi-airplane-engines-fill::before { content: \"\\f7ca\"; }\n.bi-airplane-engines::before { content: \"\\f7cb\"; }\n.bi-airplane-fill::before { content: \"\\f7cc\"; }\n.bi-airplane::before { content: \"\\f7cd\"; }\n.bi-alexa::before { content: \"\\f7ce\"; }\n.bi-alipay::before { content: \"\\f7cf\"; }\n.bi-android::before { content: \"\\f7d0\"; }\n.bi-android2::before { content: \"\\f7d1\"; }\n.bi-box-fill::before { content: \"\\f7d2\"; }\n.bi-box-seam-fill::before { content: \"\\f7d3\"; }\n.bi-browser-chrome::before { content: \"\\f7d4\"; }\n.bi-browser-edge::before { content: \"\\f7d5\"; }\n.bi-browser-firefox::before { content: \"\\f7d6\"; }\n.bi-browser-safari::before { content: \"\\f7d7\"; }\n.bi-c-circle-fill::before { content: \"\\f7da\"; }\n.bi-c-circle::before { content: \"\\f7db\"; }\n.bi-c-square-fill::before { content: \"\\f7dc\"; }\n.bi-c-square::before { content: \"\\f7dd\"; }\n.bi-capsule-pill::before { content: \"\\f7de\"; }\n.bi-capsule::before { content: \"\\f7df\"; }\n.bi-car-front-fill::before { content: \"\\f7e0\"; }\n.bi-car-front::before { content: \"\\f7e1\"; }\n.bi-cassette-fill::before { content: \"\\f7e2\"; }\n.bi-cassette::before { content: \"\\f7e3\"; }\n.bi-cc-circle-fill::before { content: \"\\f7e6\"; }\n.bi-cc-circle::before { content: \"\\f7e7\"; }\n.bi-cc-square-fill::before { content: \"\\f7e8\"; }\n.bi-cc-square::before { content: \"\\f7e9\"; }\n.bi-cup-hot-fill::before { content: \"\\f7ea\"; }\n.bi-cup-hot::before { content: \"\\f7eb\"; }\n.bi-currency-rupee::before { content: \"\\f7ec\"; }\n.bi-dropbox::before { content: \"\\f7ed\"; }\n.bi-escape::before { content: \"\\f7ee\"; }\n.bi-fast-forward-btn-fill::before { content: \"\\f7ef\"; }\n.bi-fast-forward-btn::before { content: \"\\f7f0\"; }\n.bi-fast-forward-circle-fill::before { content: \"\\f7f1\"; }\n.bi-fast-forward-circle::before { content: \"\\f7f2\"; }\n.bi-fast-forward-fill::before { content: \"\\f7f3\"; }\n.bi-fast-forward::before { content: \"\\f7f4\"; }\n.bi-filetype-sql::before { content: \"\\f7f5\"; }\n.bi-fire::before { content: \"\\f7f6\"; }\n.bi-google-play::before { content: \"\\f7f7\"; }\n.bi-h-circle-fill::before { content: \"\\f7fa\"; }\n.bi-h-circle::before { content: \"\\f7fb\"; }\n.bi-h-square-fill::before { content: \"\\f7fc\"; }\n.bi-h-square::before { content: \"\\f7fd\"; }\n.bi-indent::before { content: \"\\f7fe\"; }\n.bi-lungs-fill::before { content: \"\\f7ff\"; }\n.bi-lungs::before { content: \"\\f800\"; }\n.bi-microsoft-teams::before { content: \"\\f801\"; }\n.bi-p-circle-fill::before { content: \"\\f804\"; }\n.bi-p-circle::before { content: \"\\f805\"; }\n.bi-p-square-fill::before { content: \"\\f806\"; }\n.bi-p-square::before { content: \"\\f807\"; }\n.bi-pass-fill::before { content: \"\\f808\"; }\n.bi-pass::before { content: \"\\f809\"; }\n.bi-prescription::before { content: \"\\f80a\"; }\n.bi-prescription2::before { content: \"\\f80b\"; }\n.bi-r-circle-fill::before { content: \"\\f80e\"; }\n.bi-r-circle::before { content: \"\\f80f\"; }\n.bi-r-square-fill::before { content: \"\\f810\"; }\n.bi-r-square::before { content: \"\\f811\"; }\n.bi-repeat-1::before { content: \"\\f812\"; }\n.bi-repeat::before { content: \"\\f813\"; }\n.bi-rewind-btn-fill::before { content: \"\\f814\"; }\n.bi-rewind-btn::before { content: \"\\f815\"; }\n.bi-rewind-circle-fill::before { content: \"\\f816\"; }\n.bi-rewind-circle::before { content: \"\\f817\"; }\n.bi-rewind-fill::before { content: \"\\f818\"; }\n.bi-rewind::before { content: \"\\f819\"; }\n.bi-train-freight-front-fill::before { content: \"\\f81a\"; }\n.bi-train-freight-front::before { content: \"\\f81b\"; }\n.bi-train-front-fill::before { content: \"\\f81c\"; }\n.bi-train-front::before { content: \"\\f81d\"; }\n.bi-train-lightrail-front-fill::before { content: \"\\f81e\"; }\n.bi-train-lightrail-front::before { content: \"\\f81f\"; }\n.bi-truck-front-fill::before { content: \"\\f820\"; }\n.bi-truck-front::before { content: \"\\f821\"; }\n.bi-ubuntu::before { content: \"\\f822\"; }\n.bi-unindent::before { content: \"\\f823\"; }\n.bi-unity::before { content: \"\\f824\"; }\n.bi-universal-access-circle::before { content: \"\\f825\"; }\n.bi-universal-access::before { content: \"\\f826\"; }\n.bi-virus::before { content: \"\\f827\"; }\n.bi-virus2::before { content: \"\\f828\"; }\n.bi-wechat::before { content: \"\\f829\"; }\n.bi-yelp::before { content: \"\\f82a\"; }\n.bi-sign-stop-fill::before { content: \"\\f82b\"; }\n.bi-sign-stop-lights-fill::before { content: \"\\f82c\"; }\n.bi-sign-stop-lights::before { content: \"\\f82d\"; }\n.bi-sign-stop::before { content: \"\\f82e\"; }\n.bi-sign-turn-left-fill::before { content: \"\\f82f\"; }\n.bi-sign-turn-left::before { content: \"\\f830\"; }\n.bi-sign-turn-right-fill::before { content: \"\\f831\"; }\n.bi-sign-turn-right::before { content: \"\\f832\"; }\n.bi-sign-turn-slight-left-fill::before { content: \"\\f833\"; }\n.bi-sign-turn-slight-left::before { content: \"\\f834\"; }\n.bi-sign-turn-slight-right-fill::before { content: \"\\f835\"; }\n.bi-sign-turn-slight-right::before { content: \"\\f836\"; }\n.bi-sign-yield-fill::before { content: \"\\f837\"; }\n.bi-sign-yield::before { content: \"\\f838\"; }\n.bi-ev-station-fill::before { content: \"\\f839\"; }\n.bi-ev-station::before { content: \"\\f83a\"; }\n.bi-fuel-pump-diesel-fill::before { content: \"\\f83b\"; }\n.bi-fuel-pump-diesel::before { content: \"\\f83c\"; }\n.bi-fuel-pump-fill::before { content: \"\\f83d\"; }\n.bi-fuel-pump::before { content: \"\\f83e\"; }\n.bi-0-circle-fill::before { content: \"\\f83f\"; }\n.bi-0-circle::before { content: \"\\f840\"; }\n.bi-0-square-fill::before { content: \"\\f841\"; }\n.bi-0-square::before { content: \"\\f842\"; }\n.bi-rocket-fill::before { content: \"\\f843\"; }\n.bi-rocket-takeoff-fill::before { content: \"\\f844\"; }\n.bi-rocket-takeoff::before { content: \"\\f845\"; }\n.bi-rocket::before { content: \"\\f846\"; }\n.bi-stripe::before { content: \"\\f847\"; }\n.bi-subscript::before { content: \"\\f848\"; }\n.bi-superscript::before { content: \"\\f849\"; }\n.bi-trello::before { content: \"\\f84a\"; }\n.bi-envelope-at-fill::before { content: \"\\f84b\"; }\n.bi-envelope-at::before { content: \"\\f84c\"; }\n.bi-regex::before { content: \"\\f84d\"; }\n.bi-text-wrap::before { content: \"\\f84e\"; }\n.bi-sign-dead-end-fill::before { content: \"\\f84f\"; }\n.bi-sign-dead-end::before { content: \"\\f850\"; }\n.bi-sign-do-not-enter-fill::before { content: \"\\f851\"; }\n.bi-sign-do-not-enter::before { content: \"\\f852\"; }\n.bi-sign-intersection-fill::before { content: \"\\f853\"; }\n.bi-sign-intersection-side-fill::before { content: \"\\f854\"; }\n.bi-sign-intersection-side::before { content: \"\\f855\"; }\n.bi-sign-intersection-t-fill::before { content: \"\\f856\"; }\n.bi-sign-intersection-t::before { content: \"\\f857\"; }\n.bi-sign-intersection-y-fill::before { content: \"\\f858\"; }\n.bi-sign-intersection-y::before { content: \"\\f859\"; }\n.bi-sign-intersection::before { content: \"\\f85a\"; }\n.bi-sign-merge-left-fill::before { content: \"\\f85b\"; }\n.bi-sign-merge-left::before { content: \"\\f85c\"; }\n.bi-sign-merge-right-fill::before { content: \"\\f85d\"; }\n.bi-sign-merge-right::before { content: \"\\f85e\"; }\n.bi-sign-no-left-turn-fill::before { content: \"\\f85f\"; }\n.bi-sign-no-left-turn::before { content: \"\\f860\"; }\n.bi-sign-no-parking-fill::before { content: \"\\f861\"; }\n.bi-sign-no-parking::before { content: \"\\f862\"; }\n.bi-sign-no-right-turn-fill::before { content: \"\\f863\"; }\n.bi-sign-no-right-turn::before { content: \"\\f864\"; }\n.bi-sign-railroad-fill::before { content: \"\\f865\"; }\n.bi-sign-railroad::before { content: \"\\f866\"; }\n.bi-building-add::before { content: \"\\f867\"; }\n.bi-building-check::before { content: \"\\f868\"; }\n.bi-building-dash::before { content: \"\\f869\"; }\n.bi-building-down::before { content: \"\\f86a\"; }\n.bi-building-exclamation::before { content: \"\\f86b\"; }\n.bi-building-fill-add::before { content: \"\\f86c\"; }\n.bi-building-fill-check::before { content: \"\\f86d\"; }\n.bi-building-fill-dash::before { content: \"\\f86e\"; }\n.bi-building-fill-down::before { content: \"\\f86f\"; }\n.bi-building-fill-exclamation::before { content: \"\\f870\"; }\n.bi-building-fill-gear::before { content: \"\\f871\"; }\n.bi-building-fill-lock::before { content: \"\\f872\"; }\n.bi-building-fill-slash::before { content: \"\\f873\"; }\n.bi-building-fill-up::before { content: \"\\f874\"; }\n.bi-building-fill-x::before { content: \"\\f875\"; }\n.bi-building-fill::before { content: \"\\f876\"; }\n.bi-building-gear::before { content: \"\\f877\"; }\n.bi-building-lock::before { content: \"\\f878\"; }\n.bi-building-slash::before { content: \"\\f879\"; }\n.bi-building-up::before { content: \"\\f87a\"; }\n.bi-building-x::before { content: \"\\f87b\"; }\n.bi-buildings-fill::before { content: \"\\f87c\"; }\n.bi-buildings::before { content: \"\\f87d\"; }\n.bi-bus-front-fill::before { content: \"\\f87e\"; }\n.bi-bus-front::before { content: \"\\f87f\"; }\n.bi-ev-front-fill::before { content: \"\\f880\"; }\n.bi-ev-front::before { content: \"\\f881\"; }\n.bi-globe-americas::before { content: \"\\f882\"; }\n.bi-globe-asia-australia::before { content: \"\\f883\"; }\n.bi-globe-central-south-asia::before { content: \"\\f884\"; }\n.bi-globe-europe-africa::before { content: \"\\f885\"; }\n.bi-house-add-fill::before { content: \"\\f886\"; }\n.bi-house-add::before { content: \"\\f887\"; }\n.bi-house-check-fill::before { content: \"\\f888\"; }\n.bi-house-check::before { content: \"\\f889\"; }\n.bi-house-dash-fill::before { content: \"\\f88a\"; }\n.bi-house-dash::before { content: \"\\f88b\"; }\n.bi-house-down-fill::before { content: \"\\f88c\"; }\n.bi-house-down::before { content: \"\\f88d\"; }\n.bi-house-exclamation-fill::before { content: \"\\f88e\"; }\n.bi-house-exclamation::before { content: \"\\f88f\"; }\n.bi-house-gear-fill::before { content: \"\\f890\"; }\n.bi-house-gear::before { content: \"\\f891\"; }\n.bi-house-lock-fill::before { content: \"\\f892\"; }\n.bi-house-lock::before { content: \"\\f893\"; }\n.bi-house-slash-fill::before { content: \"\\f894\"; }\n.bi-house-slash::before { content: \"\\f895\"; }\n.bi-house-up-fill::before { content: \"\\f896\"; }\n.bi-house-up::before { content: \"\\f897\"; }\n.bi-house-x-fill::before { content: \"\\f898\"; }\n.bi-house-x::before { content: \"\\f899\"; }\n.bi-person-add::before { content: \"\\f89a\"; }\n.bi-person-down::before { content: \"\\f89b\"; }\n.bi-person-exclamation::before { content: \"\\f89c\"; }\n.bi-person-fill-add::before { content: \"\\f89d\"; }\n.bi-person-fill-check::before { content: \"\\f89e\"; }\n.bi-person-fill-dash::before { content: \"\\f89f\"; }\n.bi-person-fill-down::before { content: \"\\f8a0\"; }\n.bi-person-fill-exclamation::before { content: \"\\f8a1\"; }\n.bi-person-fill-gear::before { content: \"\\f8a2\"; }\n.bi-person-fill-lock::before { content: \"\\f8a3\"; }\n.bi-person-fill-slash::before { content: \"\\f8a4\"; }\n.bi-person-fill-up::before { content: \"\\f8a5\"; }\n.bi-person-fill-x::before { content: \"\\f8a6\"; }\n.bi-person-gear::before { content: \"\\f8a7\"; }\n.bi-person-lock::before { content: \"\\f8a8\"; }\n.bi-person-slash::before { content: \"\\f8a9\"; }\n.bi-person-up::before { content: \"\\f8aa\"; }\n.bi-scooter::before { content: \"\\f8ab\"; }\n.bi-taxi-front-fill::before { content: \"\\f8ac\"; }\n.bi-taxi-front::before { content: \"\\f8ad\"; }\n.bi-amd::before { content: \"\\f8ae\"; }\n.bi-database-add::before { content: \"\\f8af\"; }\n.bi-database-check::before { content: \"\\f8b0\"; }\n.bi-database-dash::before { content: \"\\f8b1\"; }\n.bi-database-down::before { content: \"\\f8b2\"; }\n.bi-database-exclamation::before { content: \"\\f8b3\"; }\n.bi-database-fill-add::before { content: \"\\f8b4\"; }\n.bi-database-fill-check::before { content: \"\\f8b5\"; }\n.bi-database-fill-dash::before { content: \"\\f8b6\"; }\n.bi-database-fill-down::before { content: \"\\f8b7\"; }\n.bi-database-fill-exclamation::before { content: \"\\f8b8\"; }\n.bi-database-fill-gear::before { content: \"\\f8b9\"; }\n.bi-database-fill-lock::before { content: \"\\f8ba\"; }\n.bi-database-fill-slash::before { content: \"\\f8bb\"; }\n.bi-database-fill-up::before { content: \"\\f8bc\"; }\n.bi-database-fill-x::before { content: \"\\f8bd\"; }\n.bi-database-fill::before { content: \"\\f8be\"; }\n.bi-database-gear::before { content: \"\\f8bf\"; }\n.bi-database-lock::before { content: \"\\f8c0\"; }\n.bi-database-slash::before { content: \"\\f8c1\"; }\n.bi-database-up::before { content: \"\\f8c2\"; }\n.bi-database-x::before { content: \"\\f8c3\"; }\n.bi-database::before { content: \"\\f8c4\"; }\n.bi-houses-fill::before { content: \"\\f8c5\"; }\n.bi-houses::before { content: \"\\f8c6\"; }\n.bi-nvidia::before { content: \"\\f8c7\"; }\n.bi-person-vcard-fill::before { content: \"\\f8c8\"; }\n.bi-person-vcard::before { content: \"\\f8c9\"; }\n.bi-sina-weibo::before { content: \"\\f8ca\"; }\n.bi-tencent-qq::before { content: \"\\f8cb\"; }\n.bi-wikipedia::before { content: \"\\f8cc\"; }\n.bi-alphabet-uppercase::before { content: \"\\f2a5\"; }\n.bi-alphabet::before { content: \"\\f68a\"; }\n.bi-amazon::before { content: \"\\f68d\"; }\n.bi-arrows-collapse-vertical::before { content: \"\\f690\"; }\n.bi-arrows-expand-vertical::before { content: \"\\f695\"; }\n.bi-arrows-vertical::before { content: \"\\f698\"; }\n.bi-arrows::before { content: \"\\f6a2\"; }\n.bi-ban-fill::before { content: \"\\f6a3\"; }\n.bi-ban::before { content: \"\\f6b6\"; }\n.bi-bing::before { content: \"\\f6c2\"; }\n.bi-cake::before { content: \"\\f6e0\"; }\n.bi-cake2::before { content: \"\\f6ed\"; }\n.bi-cookie::before { content: \"\\f6ee\"; }\n.bi-copy::before { content: \"\\f759\"; }\n.bi-crosshair::before { content: \"\\f769\"; }\n.bi-crosshair2::before { content: \"\\f794\"; }\n.bi-emoji-astonished-fill::before { content: \"\\f795\"; }\n.bi-emoji-astonished::before { content: \"\\f79a\"; }\n.bi-emoji-grimace-fill::before { content: \"\\f79b\"; }\n.bi-emoji-grimace::before { content: \"\\f7a0\"; }\n.bi-emoji-grin-fill::before { content: \"\\f7a1\"; }\n.bi-emoji-grin::before { content: \"\\f7a6\"; }\n.bi-emoji-surprise-fill::before { content: \"\\f7a7\"; }\n.bi-emoji-surprise::before { content: \"\\f7ac\"; }\n.bi-emoji-tear-fill::before { content: \"\\f7ad\"; }\n.bi-emoji-tear::before { content: \"\\f7b2\"; }\n.bi-envelope-arrow-down-fill::before { content: \"\\f7b3\"; }\n.bi-envelope-arrow-down::before { content: \"\\f7b8\"; }\n.bi-envelope-arrow-up-fill::before { content: \"\\f7b9\"; }\n.bi-envelope-arrow-up::before { content: \"\\f7be\"; }\n.bi-feather::before { content: \"\\f7bf\"; }\n.bi-feather2::before { content: \"\\f7c4\"; }\n.bi-floppy-fill::before { content: \"\\f7c5\"; }\n.bi-floppy::before { content: \"\\f7d8\"; }\n.bi-floppy2-fill::before { content: \"\\f7d9\"; }\n.bi-floppy2::before { content: \"\\f7e4\"; }\n.bi-gitlab::before { content: \"\\f7e5\"; }\n.bi-highlighter::before { content: \"\\f7f8\"; }\n.bi-marker-tip::before { content: \"\\f802\"; }\n.bi-nvme-fill::before { content: \"\\f803\"; }\n.bi-nvme::before { content: \"\\f80c\"; }\n.bi-opencollective::before { content: \"\\f80d\"; }\n.bi-pci-card-network::before { content: \"\\f8cd\"; }\n.bi-pci-card-sound::before { content: \"\\f8ce\"; }\n.bi-radar::before { content: \"\\f8cf\"; }\n.bi-send-arrow-down-fill::before { content: \"\\f8d0\"; }\n.bi-send-arrow-down::before { content: \"\\f8d1\"; }\n.bi-send-arrow-up-fill::before { content: \"\\f8d2\"; }\n.bi-send-arrow-up::before { content: \"\\f8d3\"; }\n.bi-sim-slash-fill::before { content: \"\\f8d4\"; }\n.bi-sim-slash::before { content: \"\\f8d5\"; }\n.bi-sourceforge::before { content: \"\\f8d6\"; }\n.bi-substack::before { content: \"\\f8d7\"; }\n.bi-threads-fill::before { content: \"\\f8d8\"; }\n.bi-threads::before { content: \"\\f8d9\"; }\n.bi-transparency::before { content: \"\\f8da\"; }\n.bi-twitter-x::before { content: \"\\f8db\"; }\n.bi-type-h4::before { content: \"\\f8dc\"; }\n.bi-type-h5::before { content: \"\\f8dd\"; }\n.bi-type-h6::before { content: \"\\f8de\"; }\n.bi-backpack-fill::before { content: \"\\f8df\"; }\n.bi-backpack::before { content: \"\\f8e0\"; }\n.bi-backpack2-fill::before { content: \"\\f8e1\"; }\n.bi-backpack2::before { content: \"\\f8e2\"; }\n.bi-backpack3-fill::before { content: \"\\f8e3\"; }\n.bi-backpack3::before { content: \"\\f8e4\"; }\n.bi-backpack4-fill::before { content: \"\\f8e5\"; }\n.bi-backpack4::before { content: \"\\f8e6\"; }\n.bi-brilliance::before { content: \"\\f8e7\"; }\n.bi-cake-fill::before { content: \"\\f8e8\"; }\n.bi-cake2-fill::before { content: \"\\f8e9\"; }\n.bi-duffle-fill::before { content: \"\\f8ea\"; }\n.bi-duffle::before { content: \"\\f8eb\"; }\n.bi-exposure::before { content: \"\\f8ec\"; }\n.bi-gender-neuter::before { content: \"\\f8ed\"; }\n.bi-highlights::before { content: \"\\f8ee\"; }\n.bi-luggage-fill::before { content: \"\\f8ef\"; }\n.bi-luggage::before { content: \"\\f8f0\"; }\n.bi-mailbox-flag::before { content: \"\\f8f1\"; }\n.bi-mailbox2-flag::before { content: \"\\f8f2\"; }\n.bi-noise-reduction::before { content: \"\\f8f3\"; }\n.bi-passport-fill::before { content: \"\\f8f4\"; }\n.bi-passport::before { content: \"\\f8f5\"; }\n.bi-person-arms-up::before { content: \"\\f8f6\"; }\n.bi-person-raised-hand::before { content: \"\\f8f7\"; }\n.bi-person-standing-dress::before { content: \"\\f8f8\"; }\n.bi-person-standing::before { content: \"\\f8f9\"; }\n.bi-person-walking::before { content: \"\\f8fa\"; }\n.bi-person-wheelchair::before { content: \"\\f8fb\"; }\n.bi-shadows::before { content: \"\\f8fc\"; }\n.bi-suitcase-fill::before { content: \"\\f8fd\"; }\n.bi-suitcase-lg-fill::before { content: \"\\f8fe\"; }\n.bi-suitcase-lg::before { content: \"\\f8ff\"; }\n.bi-suitcase::before { content: \"\\f900\"; }\n.bi-suitcase2-fill::before { content: \"\\f901\"; }\n.bi-suitcase2::before { content: \"\\f902\"; }\n.bi-vignette::before { content: \"\\f903\"; }\n.bi-bluesky::before { content: \"\\f7f9\"; }\n.bi-tux::before { content: \"\\f904\"; }\n.bi-beaker-fill::before { content: \"\\f905\"; }\n.bi-beaker::before { content: \"\\f906\"; }\n.bi-flask-fill::before { content: \"\\f907\"; }\n.bi-flask-florence-fill::before { content: \"\\f908\"; }\n.bi-flask-florence::before { content: \"\\f909\"; }\n.bi-flask::before { content: \"\\f90a\"; }\n.bi-leaf-fill::before { content: \"\\f90b\"; }\n.bi-leaf::before { content: \"\\f90c\"; }\n.bi-measuring-cup-fill::before { content: \"\\f90d\"; }\n.bi-measuring-cup::before { content: \"\\f90e\"; }\n.bi-unlock2-fill::before { content: \"\\f90f\"; }\n.bi-unlock2::before { content: \"\\f910\"; }\n.bi-battery-low::before { content: \"\\f911\"; }\n.bi-anthropic::before { content: \"\\f912\"; }\n.bi-apple-music::before { content: \"\\f913\"; }\n.bi-claude::before { content: \"\\f914\"; }\n.bi-openai::before { content: \"\\f915\"; }\n.bi-perplexity::before { content: \"\\f916\"; }\n.bi-css::before { content: \"\\f917\"; }\n.bi-javascript::before { content: \"\\f918\"; }\n.bi-typescript::before { content: \"\\f919\"; }\n.bi-fork-knife::before { content: \"\\f91a\"; }\n.bi-globe-americas-fill::before { content: \"\\f91b\"; }\n.bi-globe-asia-australia-fill::before { content: \"\\f91c\"; }\n.bi-globe-central-south-asia-fill::before { content: \"\\f91d\"; }\n.bi-globe-europe-africa-fill::before { content: \"\\f91e\"; }\n"
  },
  {
    "path": "font/bootstrap-icons.json",
    "content": "{\n  \"123\": 63103,\n  \"alarm-fill\": 61697,\n  \"alarm\": 61698,\n  \"align-bottom\": 61699,\n  \"align-center\": 61700,\n  \"align-end\": 61701,\n  \"align-middle\": 61702,\n  \"align-start\": 61703,\n  \"align-top\": 61704,\n  \"alt\": 61705,\n  \"app-indicator\": 61706,\n  \"app\": 61707,\n  \"archive-fill\": 61708,\n  \"archive\": 61709,\n  \"arrow-90deg-down\": 61710,\n  \"arrow-90deg-left\": 61711,\n  \"arrow-90deg-right\": 61712,\n  \"arrow-90deg-up\": 61713,\n  \"arrow-bar-down\": 61714,\n  \"arrow-bar-left\": 61715,\n  \"arrow-bar-right\": 61716,\n  \"arrow-bar-up\": 61717,\n  \"arrow-clockwise\": 61718,\n  \"arrow-counterclockwise\": 61719,\n  \"arrow-down-circle-fill\": 61720,\n  \"arrow-down-circle\": 61721,\n  \"arrow-down-left-circle-fill\": 61722,\n  \"arrow-down-left-circle\": 61723,\n  \"arrow-down-left-square-fill\": 61724,\n  \"arrow-down-left-square\": 61725,\n  \"arrow-down-left\": 61726,\n  \"arrow-down-right-circle-fill\": 61727,\n  \"arrow-down-right-circle\": 61728,\n  \"arrow-down-right-square-fill\": 61729,\n  \"arrow-down-right-square\": 61730,\n  \"arrow-down-right\": 61731,\n  \"arrow-down-short\": 61732,\n  \"arrow-down-square-fill\": 61733,\n  \"arrow-down-square\": 61734,\n  \"arrow-down-up\": 61735,\n  \"arrow-down\": 61736,\n  \"arrow-left-circle-fill\": 61737,\n  \"arrow-left-circle\": 61738,\n  \"arrow-left-right\": 61739,\n  \"arrow-left-short\": 61740,\n  \"arrow-left-square-fill\": 61741,\n  \"arrow-left-square\": 61742,\n  \"arrow-left\": 61743,\n  \"arrow-repeat\": 61744,\n  \"arrow-return-left\": 61745,\n  \"arrow-return-right\": 61746,\n  \"arrow-right-circle-fill\": 61747,\n  \"arrow-right-circle\": 61748,\n  \"arrow-right-short\": 61749,\n  \"arrow-right-square-fill\": 61750,\n  \"arrow-right-square\": 61751,\n  \"arrow-right\": 61752,\n  \"arrow-up-circle-fill\": 61753,\n  \"arrow-up-circle\": 61754,\n  \"arrow-up-left-circle-fill\": 61755,\n  \"arrow-up-left-circle\": 61756,\n  \"arrow-up-left-square-fill\": 61757,\n  \"arrow-up-left-square\": 61758,\n  \"arrow-up-left\": 61759,\n  \"arrow-up-right-circle-fill\": 61760,\n  \"arrow-up-right-circle\": 61761,\n  \"arrow-up-right-square-fill\": 61762,\n  \"arrow-up-right-square\": 61763,\n  \"arrow-up-right\": 61764,\n  \"arrow-up-short\": 61765,\n  \"arrow-up-square-fill\": 61766,\n  \"arrow-up-square\": 61767,\n  \"arrow-up\": 61768,\n  \"arrows-angle-contract\": 61769,\n  \"arrows-angle-expand\": 61770,\n  \"arrows-collapse\": 61771,\n  \"arrows-expand\": 61772,\n  \"arrows-fullscreen\": 61773,\n  \"arrows-move\": 61774,\n  \"aspect-ratio-fill\": 61775,\n  \"aspect-ratio\": 61776,\n  \"asterisk\": 61777,\n  \"at\": 61778,\n  \"award-fill\": 61779,\n  \"award\": 61780,\n  \"back\": 61781,\n  \"backspace-fill\": 61782,\n  \"backspace-reverse-fill\": 61783,\n  \"backspace-reverse\": 61784,\n  \"backspace\": 61785,\n  \"badge-3d-fill\": 61786,\n  \"badge-3d\": 61787,\n  \"badge-4k-fill\": 61788,\n  \"badge-4k\": 61789,\n  \"badge-8k-fill\": 61790,\n  \"badge-8k\": 61791,\n  \"badge-ad-fill\": 61792,\n  \"badge-ad\": 61793,\n  \"badge-ar-fill\": 61794,\n  \"badge-ar\": 61795,\n  \"badge-cc-fill\": 61796,\n  \"badge-cc\": 61797,\n  \"badge-hd-fill\": 61798,\n  \"badge-hd\": 61799,\n  \"badge-tm-fill\": 61800,\n  \"badge-tm\": 61801,\n  \"badge-vo-fill\": 61802,\n  \"badge-vo\": 61803,\n  \"badge-vr-fill\": 61804,\n  \"badge-vr\": 61805,\n  \"badge-wc-fill\": 61806,\n  \"badge-wc\": 61807,\n  \"bag-check-fill\": 61808,\n  \"bag-check\": 61809,\n  \"bag-dash-fill\": 61810,\n  \"bag-dash\": 61811,\n  \"bag-fill\": 61812,\n  \"bag-plus-fill\": 61813,\n  \"bag-plus\": 61814,\n  \"bag-x-fill\": 61815,\n  \"bag-x\": 61816,\n  \"bag\": 61817,\n  \"bar-chart-fill\": 61818,\n  \"bar-chart-line-fill\": 61819,\n  \"bar-chart-line\": 61820,\n  \"bar-chart-steps\": 61821,\n  \"bar-chart\": 61822,\n  \"basket-fill\": 61823,\n  \"basket\": 61824,\n  \"basket2-fill\": 61825,\n  \"basket2\": 61826,\n  \"basket3-fill\": 61827,\n  \"basket3\": 61828,\n  \"battery-charging\": 61829,\n  \"battery-full\": 61830,\n  \"battery-half\": 61831,\n  \"battery\": 61832,\n  \"bell-fill\": 61833,\n  \"bell\": 61834,\n  \"bezier\": 61835,\n  \"bezier2\": 61836,\n  \"bicycle\": 61837,\n  \"binoculars-fill\": 61838,\n  \"binoculars\": 61839,\n  \"blockquote-left\": 61840,\n  \"blockquote-right\": 61841,\n  \"book-fill\": 61842,\n  \"book-half\": 61843,\n  \"book\": 61844,\n  \"bookmark-check-fill\": 61845,\n  \"bookmark-check\": 61846,\n  \"bookmark-dash-fill\": 61847,\n  \"bookmark-dash\": 61848,\n  \"bookmark-fill\": 61849,\n  \"bookmark-heart-fill\": 61850,\n  \"bookmark-heart\": 61851,\n  \"bookmark-plus-fill\": 61852,\n  \"bookmark-plus\": 61853,\n  \"bookmark-star-fill\": 61854,\n  \"bookmark-star\": 61855,\n  \"bookmark-x-fill\": 61856,\n  \"bookmark-x\": 61857,\n  \"bookmark\": 61858,\n  \"bookmarks-fill\": 61859,\n  \"bookmarks\": 61860,\n  \"bookshelf\": 61861,\n  \"bootstrap-fill\": 61862,\n  \"bootstrap-reboot\": 61863,\n  \"bootstrap\": 61864,\n  \"border-all\": 61865,\n  \"border-bottom\": 61866,\n  \"border-center\": 61867,\n  \"border-inner\": 61868,\n  \"border-left\": 61869,\n  \"border-middle\": 61870,\n  \"border-outer\": 61871,\n  \"border-right\": 61872,\n  \"border-style\": 61873,\n  \"border-top\": 61874,\n  \"border-width\": 61875,\n  \"border\": 61876,\n  \"bounding-box-circles\": 61877,\n  \"bounding-box\": 61878,\n  \"box-arrow-down-left\": 61879,\n  \"box-arrow-down-right\": 61880,\n  \"box-arrow-down\": 61881,\n  \"box-arrow-in-down-left\": 61882,\n  \"box-arrow-in-down-right\": 61883,\n  \"box-arrow-in-down\": 61884,\n  \"box-arrow-in-left\": 61885,\n  \"box-arrow-in-right\": 61886,\n  \"box-arrow-in-up-left\": 61887,\n  \"box-arrow-in-up-right\": 61888,\n  \"box-arrow-in-up\": 61889,\n  \"box-arrow-left\": 61890,\n  \"box-arrow-right\": 61891,\n  \"box-arrow-up-left\": 61892,\n  \"box-arrow-up-right\": 61893,\n  \"box-arrow-up\": 61894,\n  \"box-seam\": 61895,\n  \"box\": 61896,\n  \"braces\": 61897,\n  \"bricks\": 61898,\n  \"briefcase-fill\": 61899,\n  \"briefcase\": 61900,\n  \"brightness-alt-high-fill\": 61901,\n  \"brightness-alt-high\": 61902,\n  \"brightness-alt-low-fill\": 61903,\n  \"brightness-alt-low\": 61904,\n  \"brightness-high-fill\": 61905,\n  \"brightness-high\": 61906,\n  \"brightness-low-fill\": 61907,\n  \"brightness-low\": 61908,\n  \"broadcast-pin\": 61909,\n  \"broadcast\": 61910,\n  \"brush-fill\": 61911,\n  \"brush\": 61912,\n  \"bucket-fill\": 61913,\n  \"bucket\": 61914,\n  \"bug-fill\": 61915,\n  \"bug\": 61916,\n  \"building\": 61917,\n  \"bullseye\": 61918,\n  \"calculator-fill\": 61919,\n  \"calculator\": 61920,\n  \"calendar-check-fill\": 61921,\n  \"calendar-check\": 61922,\n  \"calendar-date-fill\": 61923,\n  \"calendar-date\": 61924,\n  \"calendar-day-fill\": 61925,\n  \"calendar-day\": 61926,\n  \"calendar-event-fill\": 61927,\n  \"calendar-event\": 61928,\n  \"calendar-fill\": 61929,\n  \"calendar-minus-fill\": 61930,\n  \"calendar-minus\": 61931,\n  \"calendar-month-fill\": 61932,\n  \"calendar-month\": 61933,\n  \"calendar-plus-fill\": 61934,\n  \"calendar-plus\": 61935,\n  \"calendar-range-fill\": 61936,\n  \"calendar-range\": 61937,\n  \"calendar-week-fill\": 61938,\n  \"calendar-week\": 61939,\n  \"calendar-x-fill\": 61940,\n  \"calendar-x\": 61941,\n  \"calendar\": 61942,\n  \"calendar2-check-fill\": 61943,\n  \"calendar2-check\": 61944,\n  \"calendar2-date-fill\": 61945,\n  \"calendar2-date\": 61946,\n  \"calendar2-day-fill\": 61947,\n  \"calendar2-day\": 61948,\n  \"calendar2-event-fill\": 61949,\n  \"calendar2-event\": 61950,\n  \"calendar2-fill\": 61951,\n  \"calendar2-minus-fill\": 61952,\n  \"calendar2-minus\": 61953,\n  \"calendar2-month-fill\": 61954,\n  \"calendar2-month\": 61955,\n  \"calendar2-plus-fill\": 61956,\n  \"calendar2-plus\": 61957,\n  \"calendar2-range-fill\": 61958,\n  \"calendar2-range\": 61959,\n  \"calendar2-week-fill\": 61960,\n  \"calendar2-week\": 61961,\n  \"calendar2-x-fill\": 61962,\n  \"calendar2-x\": 61963,\n  \"calendar2\": 61964,\n  \"calendar3-event-fill\": 61965,\n  \"calendar3-event\": 61966,\n  \"calendar3-fill\": 61967,\n  \"calendar3-range-fill\": 61968,\n  \"calendar3-range\": 61969,\n  \"calendar3-week-fill\": 61970,\n  \"calendar3-week\": 61971,\n  \"calendar3\": 61972,\n  \"calendar4-event\": 61973,\n  \"calendar4-range\": 61974,\n  \"calendar4-week\": 61975,\n  \"calendar4\": 61976,\n  \"camera-fill\": 61977,\n  \"camera-reels-fill\": 61978,\n  \"camera-reels\": 61979,\n  \"camera-video-fill\": 61980,\n  \"camera-video-off-fill\": 61981,\n  \"camera-video-off\": 61982,\n  \"camera-video\": 61983,\n  \"camera\": 61984,\n  \"camera2\": 61985,\n  \"capslock-fill\": 61986,\n  \"capslock\": 61987,\n  \"card-checklist\": 61988,\n  \"card-heading\": 61989,\n  \"card-image\": 61990,\n  \"card-list\": 61991,\n  \"card-text\": 61992,\n  \"caret-down-fill\": 61993,\n  \"caret-down-square-fill\": 61994,\n  \"caret-down-square\": 61995,\n  \"caret-down\": 61996,\n  \"caret-left-fill\": 61997,\n  \"caret-left-square-fill\": 61998,\n  \"caret-left-square\": 61999,\n  \"caret-left\": 62000,\n  \"caret-right-fill\": 62001,\n  \"caret-right-square-fill\": 62002,\n  \"caret-right-square\": 62003,\n  \"caret-right\": 62004,\n  \"caret-up-fill\": 62005,\n  \"caret-up-square-fill\": 62006,\n  \"caret-up-square\": 62007,\n  \"caret-up\": 62008,\n  \"cart-check-fill\": 62009,\n  \"cart-check\": 62010,\n  \"cart-dash-fill\": 62011,\n  \"cart-dash\": 62012,\n  \"cart-fill\": 62013,\n  \"cart-plus-fill\": 62014,\n  \"cart-plus\": 62015,\n  \"cart-x-fill\": 62016,\n  \"cart-x\": 62017,\n  \"cart\": 62018,\n  \"cart2\": 62019,\n  \"cart3\": 62020,\n  \"cart4\": 62021,\n  \"cash-stack\": 62022,\n  \"cash\": 62023,\n  \"cast\": 62024,\n  \"chat-dots-fill\": 62025,\n  \"chat-dots\": 62026,\n  \"chat-fill\": 62027,\n  \"chat-left-dots-fill\": 62028,\n  \"chat-left-dots\": 62029,\n  \"chat-left-fill\": 62030,\n  \"chat-left-quote-fill\": 62031,\n  \"chat-left-quote\": 62032,\n  \"chat-left-text-fill\": 62033,\n  \"chat-left-text\": 62034,\n  \"chat-left\": 62035,\n  \"chat-quote-fill\": 62036,\n  \"chat-quote\": 62037,\n  \"chat-right-dots-fill\": 62038,\n  \"chat-right-dots\": 62039,\n  \"chat-right-fill\": 62040,\n  \"chat-right-quote-fill\": 62041,\n  \"chat-right-quote\": 62042,\n  \"chat-right-text-fill\": 62043,\n  \"chat-right-text\": 62044,\n  \"chat-right\": 62045,\n  \"chat-square-dots-fill\": 62046,\n  \"chat-square-dots\": 62047,\n  \"chat-square-fill\": 62048,\n  \"chat-square-quote-fill\": 62049,\n  \"chat-square-quote\": 62050,\n  \"chat-square-text-fill\": 62051,\n  \"chat-square-text\": 62052,\n  \"chat-square\": 62053,\n  \"chat-text-fill\": 62054,\n  \"chat-text\": 62055,\n  \"chat\": 62056,\n  \"check-all\": 62057,\n  \"check-circle-fill\": 62058,\n  \"check-circle\": 62059,\n  \"check-square-fill\": 62060,\n  \"check-square\": 62061,\n  \"check\": 62062,\n  \"check2-all\": 62063,\n  \"check2-circle\": 62064,\n  \"check2-square\": 62065,\n  \"check2\": 62066,\n  \"chevron-bar-contract\": 62067,\n  \"chevron-bar-down\": 62068,\n  \"chevron-bar-expand\": 62069,\n  \"chevron-bar-left\": 62070,\n  \"chevron-bar-right\": 62071,\n  \"chevron-bar-up\": 62072,\n  \"chevron-compact-down\": 62073,\n  \"chevron-compact-left\": 62074,\n  \"chevron-compact-right\": 62075,\n  \"chevron-compact-up\": 62076,\n  \"chevron-contract\": 62077,\n  \"chevron-double-down\": 62078,\n  \"chevron-double-left\": 62079,\n  \"chevron-double-right\": 62080,\n  \"chevron-double-up\": 62081,\n  \"chevron-down\": 62082,\n  \"chevron-expand\": 62083,\n  \"chevron-left\": 62084,\n  \"chevron-right\": 62085,\n  \"chevron-up\": 62086,\n  \"circle-fill\": 62087,\n  \"circle-half\": 62088,\n  \"circle-square\": 62089,\n  \"circle\": 62090,\n  \"clipboard-check\": 62091,\n  \"clipboard-data\": 62092,\n  \"clipboard-minus\": 62093,\n  \"clipboard-plus\": 62094,\n  \"clipboard-x\": 62095,\n  \"clipboard\": 62096,\n  \"clock-fill\": 62097,\n  \"clock-history\": 62098,\n  \"clock\": 62099,\n  \"cloud-arrow-down-fill\": 62100,\n  \"cloud-arrow-down\": 62101,\n  \"cloud-arrow-up-fill\": 62102,\n  \"cloud-arrow-up\": 62103,\n  \"cloud-check-fill\": 62104,\n  \"cloud-check\": 62105,\n  \"cloud-download-fill\": 62106,\n  \"cloud-download\": 62107,\n  \"cloud-drizzle-fill\": 62108,\n  \"cloud-drizzle\": 62109,\n  \"cloud-fill\": 62110,\n  \"cloud-fog-fill\": 62111,\n  \"cloud-fog\": 62112,\n  \"cloud-fog2-fill\": 62113,\n  \"cloud-fog2\": 62114,\n  \"cloud-hail-fill\": 62115,\n  \"cloud-hail\": 62116,\n  \"cloud-haze-fill\": 62118,\n  \"cloud-haze\": 62119,\n  \"cloud-haze2-fill\": 62120,\n  \"cloud-lightning-fill\": 62121,\n  \"cloud-lightning-rain-fill\": 62122,\n  \"cloud-lightning-rain\": 62123,\n  \"cloud-lightning\": 62124,\n  \"cloud-minus-fill\": 62125,\n  \"cloud-minus\": 62126,\n  \"cloud-moon-fill\": 62127,\n  \"cloud-moon\": 62128,\n  \"cloud-plus-fill\": 62129,\n  \"cloud-plus\": 62130,\n  \"cloud-rain-fill\": 62131,\n  \"cloud-rain-heavy-fill\": 62132,\n  \"cloud-rain-heavy\": 62133,\n  \"cloud-rain\": 62134,\n  \"cloud-slash-fill\": 62135,\n  \"cloud-slash\": 62136,\n  \"cloud-sleet-fill\": 62137,\n  \"cloud-sleet\": 62138,\n  \"cloud-snow-fill\": 62139,\n  \"cloud-snow\": 62140,\n  \"cloud-sun-fill\": 62141,\n  \"cloud-sun\": 62142,\n  \"cloud-upload-fill\": 62143,\n  \"cloud-upload\": 62144,\n  \"cloud\": 62145,\n  \"clouds-fill\": 62146,\n  \"clouds\": 62147,\n  \"cloudy-fill\": 62148,\n  \"cloudy\": 62149,\n  \"code-slash\": 62150,\n  \"code-square\": 62151,\n  \"code\": 62152,\n  \"collection-fill\": 62153,\n  \"collection-play-fill\": 62154,\n  \"collection-play\": 62155,\n  \"collection\": 62156,\n  \"columns-gap\": 62157,\n  \"columns\": 62158,\n  \"command\": 62159,\n  \"compass-fill\": 62160,\n  \"compass\": 62161,\n  \"cone-striped\": 62162,\n  \"cone\": 62163,\n  \"controller\": 62164,\n  \"cpu-fill\": 62165,\n  \"cpu\": 62166,\n  \"credit-card-2-back-fill\": 62167,\n  \"credit-card-2-back\": 62168,\n  \"credit-card-2-front-fill\": 62169,\n  \"credit-card-2-front\": 62170,\n  \"credit-card-fill\": 62171,\n  \"credit-card\": 62172,\n  \"crop\": 62173,\n  \"cup-fill\": 62174,\n  \"cup-straw\": 62175,\n  \"cup\": 62176,\n  \"cursor-fill\": 62177,\n  \"cursor-text\": 62178,\n  \"cursor\": 62179,\n  \"dash-circle-dotted\": 62180,\n  \"dash-circle-fill\": 62181,\n  \"dash-circle\": 62182,\n  \"dash-square-dotted\": 62183,\n  \"dash-square-fill\": 62184,\n  \"dash-square\": 62185,\n  \"dash\": 62186,\n  \"diagram-2-fill\": 62187,\n  \"diagram-2\": 62188,\n  \"diagram-3-fill\": 62189,\n  \"diagram-3\": 62190,\n  \"diamond-fill\": 62191,\n  \"diamond-half\": 62192,\n  \"diamond\": 62193,\n  \"dice-1-fill\": 62194,\n  \"dice-1\": 62195,\n  \"dice-2-fill\": 62196,\n  \"dice-2\": 62197,\n  \"dice-3-fill\": 62198,\n  \"dice-3\": 62199,\n  \"dice-4-fill\": 62200,\n  \"dice-4\": 62201,\n  \"dice-5-fill\": 62202,\n  \"dice-5\": 62203,\n  \"dice-6-fill\": 62204,\n  \"dice-6\": 62205,\n  \"disc-fill\": 62206,\n  \"disc\": 62207,\n  \"discord\": 62208,\n  \"display-fill\": 62209,\n  \"display\": 62210,\n  \"distribute-horizontal\": 62211,\n  \"distribute-vertical\": 62212,\n  \"door-closed-fill\": 62213,\n  \"door-closed\": 62214,\n  \"door-open-fill\": 62215,\n  \"door-open\": 62216,\n  \"dot\": 62217,\n  \"download\": 62218,\n  \"droplet-fill\": 62219,\n  \"droplet-half\": 62220,\n  \"droplet\": 62221,\n  \"earbuds\": 62222,\n  \"easel-fill\": 62223,\n  \"easel\": 62224,\n  \"egg-fill\": 62225,\n  \"egg-fried\": 62226,\n  \"egg\": 62227,\n  \"eject-fill\": 62228,\n  \"eject\": 62229,\n  \"emoji-angry-fill\": 62230,\n  \"emoji-angry\": 62231,\n  \"emoji-dizzy-fill\": 62232,\n  \"emoji-dizzy\": 62233,\n  \"emoji-expressionless-fill\": 62234,\n  \"emoji-expressionless\": 62235,\n  \"emoji-frown-fill\": 62236,\n  \"emoji-frown\": 62237,\n  \"emoji-heart-eyes-fill\": 62238,\n  \"emoji-heart-eyes\": 62239,\n  \"emoji-laughing-fill\": 62240,\n  \"emoji-laughing\": 62241,\n  \"emoji-neutral-fill\": 62242,\n  \"emoji-neutral\": 62243,\n  \"emoji-smile-fill\": 62244,\n  \"emoji-smile-upside-down-fill\": 62245,\n  \"emoji-smile-upside-down\": 62246,\n  \"emoji-smile\": 62247,\n  \"emoji-sunglasses-fill\": 62248,\n  \"emoji-sunglasses\": 62249,\n  \"emoji-wink-fill\": 62250,\n  \"emoji-wink\": 62251,\n  \"envelope-fill\": 62252,\n  \"envelope-open-fill\": 62253,\n  \"envelope-open\": 62254,\n  \"envelope\": 62255,\n  \"eraser-fill\": 62256,\n  \"eraser\": 62257,\n  \"exclamation-circle-fill\": 62258,\n  \"exclamation-circle\": 62259,\n  \"exclamation-diamond-fill\": 62260,\n  \"exclamation-diamond\": 62261,\n  \"exclamation-octagon-fill\": 62262,\n  \"exclamation-octagon\": 62263,\n  \"exclamation-square-fill\": 62264,\n  \"exclamation-square\": 62265,\n  \"exclamation-triangle-fill\": 62266,\n  \"exclamation-triangle\": 62267,\n  \"exclamation\": 62268,\n  \"exclude\": 62269,\n  \"eye-fill\": 62270,\n  \"eye-slash-fill\": 62271,\n  \"eye-slash\": 62272,\n  \"eye\": 62273,\n  \"eyedropper\": 62274,\n  \"eyeglasses\": 62275,\n  \"facebook\": 62276,\n  \"file-arrow-down-fill\": 62277,\n  \"file-arrow-down\": 62278,\n  \"file-arrow-up-fill\": 62279,\n  \"file-arrow-up\": 62280,\n  \"file-bar-graph-fill\": 62281,\n  \"file-bar-graph\": 62282,\n  \"file-binary-fill\": 62283,\n  \"file-binary\": 62284,\n  \"file-break-fill\": 62285,\n  \"file-break\": 62286,\n  \"file-check-fill\": 62287,\n  \"file-check\": 62288,\n  \"file-code-fill\": 62289,\n  \"file-code\": 62290,\n  \"file-diff-fill\": 62291,\n  \"file-diff\": 62292,\n  \"file-earmark-arrow-down-fill\": 62293,\n  \"file-earmark-arrow-down\": 62294,\n  \"file-earmark-arrow-up-fill\": 62295,\n  \"file-earmark-arrow-up\": 62296,\n  \"file-earmark-bar-graph-fill\": 62297,\n  \"file-earmark-bar-graph\": 62298,\n  \"file-earmark-binary-fill\": 62299,\n  \"file-earmark-binary\": 62300,\n  \"file-earmark-break-fill\": 62301,\n  \"file-earmark-break\": 62302,\n  \"file-earmark-check-fill\": 62303,\n  \"file-earmark-check\": 62304,\n  \"file-earmark-code-fill\": 62305,\n  \"file-earmark-code\": 62306,\n  \"file-earmark-diff-fill\": 62307,\n  \"file-earmark-diff\": 62308,\n  \"file-earmark-easel-fill\": 62309,\n  \"file-earmark-easel\": 62310,\n  \"file-earmark-excel-fill\": 62311,\n  \"file-earmark-excel\": 62312,\n  \"file-earmark-fill\": 62313,\n  \"file-earmark-font-fill\": 62314,\n  \"file-earmark-font\": 62315,\n  \"file-earmark-image-fill\": 62316,\n  \"file-earmark-image\": 62317,\n  \"file-earmark-lock-fill\": 62318,\n  \"file-earmark-lock\": 62319,\n  \"file-earmark-lock2-fill\": 62320,\n  \"file-earmark-lock2\": 62321,\n  \"file-earmark-medical-fill\": 62322,\n  \"file-earmark-medical\": 62323,\n  \"file-earmark-minus-fill\": 62324,\n  \"file-earmark-minus\": 62325,\n  \"file-earmark-music-fill\": 62326,\n  \"file-earmark-music\": 62327,\n  \"file-earmark-person-fill\": 62328,\n  \"file-earmark-person\": 62329,\n  \"file-earmark-play-fill\": 62330,\n  \"file-earmark-play\": 62331,\n  \"file-earmark-plus-fill\": 62332,\n  \"file-earmark-plus\": 62333,\n  \"file-earmark-post-fill\": 62334,\n  \"file-earmark-post\": 62335,\n  \"file-earmark-ppt-fill\": 62336,\n  \"file-earmark-ppt\": 62337,\n  \"file-earmark-richtext-fill\": 62338,\n  \"file-earmark-richtext\": 62339,\n  \"file-earmark-ruled-fill\": 62340,\n  \"file-earmark-ruled\": 62341,\n  \"file-earmark-slides-fill\": 62342,\n  \"file-earmark-slides\": 62343,\n  \"file-earmark-spreadsheet-fill\": 62344,\n  \"file-earmark-spreadsheet\": 62345,\n  \"file-earmark-text-fill\": 62346,\n  \"file-earmark-text\": 62347,\n  \"file-earmark-word-fill\": 62348,\n  \"file-earmark-word\": 62349,\n  \"file-earmark-x-fill\": 62350,\n  \"file-earmark-x\": 62351,\n  \"file-earmark-zip-fill\": 62352,\n  \"file-earmark-zip\": 62353,\n  \"file-earmark\": 62354,\n  \"file-easel-fill\": 62355,\n  \"file-easel\": 62356,\n  \"file-excel-fill\": 62357,\n  \"file-excel\": 62358,\n  \"file-fill\": 62359,\n  \"file-font-fill\": 62360,\n  \"file-font\": 62361,\n  \"file-image-fill\": 62362,\n  \"file-image\": 62363,\n  \"file-lock-fill\": 62364,\n  \"file-lock\": 62365,\n  \"file-lock2-fill\": 62366,\n  \"file-lock2\": 62367,\n  \"file-medical-fill\": 62368,\n  \"file-medical\": 62369,\n  \"file-minus-fill\": 62370,\n  \"file-minus\": 62371,\n  \"file-music-fill\": 62372,\n  \"file-music\": 62373,\n  \"file-person-fill\": 62374,\n  \"file-person\": 62375,\n  \"file-play-fill\": 62376,\n  \"file-play\": 62377,\n  \"file-plus-fill\": 62378,\n  \"file-plus\": 62379,\n  \"file-post-fill\": 62380,\n  \"file-post\": 62381,\n  \"file-ppt-fill\": 62382,\n  \"file-ppt\": 62383,\n  \"file-richtext-fill\": 62384,\n  \"file-richtext\": 62385,\n  \"file-ruled-fill\": 62386,\n  \"file-ruled\": 62387,\n  \"file-slides-fill\": 62388,\n  \"file-slides\": 62389,\n  \"file-spreadsheet-fill\": 62390,\n  \"file-spreadsheet\": 62391,\n  \"file-text-fill\": 62392,\n  \"file-text\": 62393,\n  \"file-word-fill\": 62394,\n  \"file-word\": 62395,\n  \"file-x-fill\": 62396,\n  \"file-x\": 62397,\n  \"file-zip-fill\": 62398,\n  \"file-zip\": 62399,\n  \"file\": 62400,\n  \"files-alt\": 62401,\n  \"files\": 62402,\n  \"film\": 62403,\n  \"filter-circle-fill\": 62404,\n  \"filter-circle\": 62405,\n  \"filter-left\": 62406,\n  \"filter-right\": 62407,\n  \"filter-square-fill\": 62408,\n  \"filter-square\": 62409,\n  \"filter\": 62410,\n  \"flag-fill\": 62411,\n  \"flag\": 62412,\n  \"flower1\": 62413,\n  \"flower2\": 62414,\n  \"flower3\": 62415,\n  \"folder-check\": 62416,\n  \"folder-fill\": 62417,\n  \"folder-minus\": 62418,\n  \"folder-plus\": 62419,\n  \"folder-symlink-fill\": 62420,\n  \"folder-symlink\": 62421,\n  \"folder-x\": 62422,\n  \"folder\": 62423,\n  \"folder2-open\": 62424,\n  \"folder2\": 62425,\n  \"fonts\": 62426,\n  \"forward-fill\": 62427,\n  \"forward\": 62428,\n  \"front\": 62429,\n  \"fullscreen-exit\": 62430,\n  \"fullscreen\": 62431,\n  \"funnel-fill\": 62432,\n  \"funnel\": 62433,\n  \"gear-fill\": 62434,\n  \"gear-wide-connected\": 62435,\n  \"gear-wide\": 62436,\n  \"gear\": 62437,\n  \"gem\": 62438,\n  \"geo-alt-fill\": 62439,\n  \"geo-alt\": 62440,\n  \"geo-fill\": 62441,\n  \"geo\": 62442,\n  \"gift-fill\": 62443,\n  \"gift\": 62444,\n  \"github\": 62445,\n  \"globe\": 62446,\n  \"globe2\": 62447,\n  \"google\": 62448,\n  \"graph-down\": 62449,\n  \"graph-up\": 62450,\n  \"grid-1x2-fill\": 62451,\n  \"grid-1x2\": 62452,\n  \"grid-3x2-gap-fill\": 62453,\n  \"grid-3x2-gap\": 62454,\n  \"grid-3x2\": 62455,\n  \"grid-3x3-gap-fill\": 62456,\n  \"grid-3x3-gap\": 62457,\n  \"grid-3x3\": 62458,\n  \"grid-fill\": 62459,\n  \"grid\": 62460,\n  \"grip-horizontal\": 62461,\n  \"grip-vertical\": 62462,\n  \"hammer\": 62463,\n  \"hand-index-fill\": 62464,\n  \"hand-index-thumb-fill\": 62465,\n  \"hand-index-thumb\": 62466,\n  \"hand-index\": 62467,\n  \"hand-thumbs-down-fill\": 62468,\n  \"hand-thumbs-down\": 62469,\n  \"hand-thumbs-up-fill\": 62470,\n  \"hand-thumbs-up\": 62471,\n  \"handbag-fill\": 62472,\n  \"handbag\": 62473,\n  \"hash\": 62474,\n  \"hdd-fill\": 62475,\n  \"hdd-network-fill\": 62476,\n  \"hdd-network\": 62477,\n  \"hdd-rack-fill\": 62478,\n  \"hdd-rack\": 62479,\n  \"hdd-stack-fill\": 62480,\n  \"hdd-stack\": 62481,\n  \"hdd\": 62482,\n  \"headphones\": 62483,\n  \"headset\": 62484,\n  \"heart-fill\": 62485,\n  \"heart-half\": 62486,\n  \"heart\": 62487,\n  \"heptagon-fill\": 62488,\n  \"heptagon-half\": 62489,\n  \"heptagon\": 62490,\n  \"hexagon-fill\": 62491,\n  \"hexagon-half\": 62492,\n  \"hexagon\": 62493,\n  \"hourglass-bottom\": 62494,\n  \"hourglass-split\": 62495,\n  \"hourglass-top\": 62496,\n  \"hourglass\": 62497,\n  \"house-door-fill\": 62498,\n  \"house-door\": 62499,\n  \"house-fill\": 62500,\n  \"house\": 62501,\n  \"hr\": 62502,\n  \"hurricane\": 62503,\n  \"image-alt\": 62504,\n  \"image-fill\": 62505,\n  \"image\": 62506,\n  \"images\": 62507,\n  \"inbox-fill\": 62508,\n  \"inbox\": 62509,\n  \"inboxes-fill\": 62510,\n  \"inboxes\": 62511,\n  \"info-circle-fill\": 62512,\n  \"info-circle\": 62513,\n  \"info-square-fill\": 62514,\n  \"info-square\": 62515,\n  \"info\": 62516,\n  \"input-cursor-text\": 62517,\n  \"input-cursor\": 62518,\n  \"instagram\": 62519,\n  \"intersect\": 62520,\n  \"journal-album\": 62521,\n  \"journal-arrow-down\": 62522,\n  \"journal-arrow-up\": 62523,\n  \"journal-bookmark-fill\": 62524,\n  \"journal-bookmark\": 62525,\n  \"journal-check\": 62526,\n  \"journal-code\": 62527,\n  \"journal-medical\": 62528,\n  \"journal-minus\": 62529,\n  \"journal-plus\": 62530,\n  \"journal-richtext\": 62531,\n  \"journal-text\": 62532,\n  \"journal-x\": 62533,\n  \"journal\": 62534,\n  \"journals\": 62535,\n  \"joystick\": 62536,\n  \"justify-left\": 62537,\n  \"justify-right\": 62538,\n  \"justify\": 62539,\n  \"kanban-fill\": 62540,\n  \"kanban\": 62541,\n  \"key-fill\": 62542,\n  \"key\": 62543,\n  \"keyboard-fill\": 62544,\n  \"keyboard\": 62545,\n  \"ladder\": 62546,\n  \"lamp-fill\": 62547,\n  \"lamp\": 62548,\n  \"laptop-fill\": 62549,\n  \"laptop\": 62550,\n  \"layer-backward\": 62551,\n  \"layer-forward\": 62552,\n  \"layers-fill\": 62553,\n  \"layers-half\": 62554,\n  \"layers\": 62555,\n  \"layout-sidebar-inset-reverse\": 62556,\n  \"layout-sidebar-inset\": 62557,\n  \"layout-sidebar-reverse\": 62558,\n  \"layout-sidebar\": 62559,\n  \"layout-split\": 62560,\n  \"layout-text-sidebar-reverse\": 62561,\n  \"layout-text-sidebar\": 62562,\n  \"layout-text-window-reverse\": 62563,\n  \"layout-text-window\": 62564,\n  \"layout-three-columns\": 62565,\n  \"layout-wtf\": 62566,\n  \"life-preserver\": 62567,\n  \"lightbulb-fill\": 62568,\n  \"lightbulb-off-fill\": 62569,\n  \"lightbulb-off\": 62570,\n  \"lightbulb\": 62571,\n  \"lightning-charge-fill\": 62572,\n  \"lightning-charge\": 62573,\n  \"lightning-fill\": 62574,\n  \"lightning\": 62575,\n  \"link-45deg\": 62576,\n  \"link\": 62577,\n  \"linkedin\": 62578,\n  \"list-check\": 62579,\n  \"list-nested\": 62580,\n  \"list-ol\": 62581,\n  \"list-stars\": 62582,\n  \"list-task\": 62583,\n  \"list-ul\": 62584,\n  \"list\": 62585,\n  \"lock-fill\": 62586,\n  \"lock\": 62587,\n  \"mailbox\": 62588,\n  \"mailbox2\": 62589,\n  \"map-fill\": 62590,\n  \"map\": 62591,\n  \"markdown-fill\": 62592,\n  \"markdown\": 62593,\n  \"mask\": 62594,\n  \"megaphone-fill\": 62595,\n  \"megaphone\": 62596,\n  \"menu-app-fill\": 62597,\n  \"menu-app\": 62598,\n  \"menu-button-fill\": 62599,\n  \"menu-button-wide-fill\": 62600,\n  \"menu-button-wide\": 62601,\n  \"menu-button\": 62602,\n  \"menu-down\": 62603,\n  \"menu-up\": 62604,\n  \"mic-fill\": 62605,\n  \"mic-mute-fill\": 62606,\n  \"mic-mute\": 62607,\n  \"mic\": 62608,\n  \"minecart-loaded\": 62609,\n  \"minecart\": 62610,\n  \"moisture\": 62611,\n  \"moon-fill\": 62612,\n  \"moon-stars-fill\": 62613,\n  \"moon-stars\": 62614,\n  \"moon\": 62615,\n  \"mouse-fill\": 62616,\n  \"mouse\": 62617,\n  \"mouse2-fill\": 62618,\n  \"mouse2\": 62619,\n  \"mouse3-fill\": 62620,\n  \"mouse3\": 62621,\n  \"music-note-beamed\": 62622,\n  \"music-note-list\": 62623,\n  \"music-note\": 62624,\n  \"music-player-fill\": 62625,\n  \"music-player\": 62626,\n  \"newspaper\": 62627,\n  \"node-minus-fill\": 62628,\n  \"node-minus\": 62629,\n  \"node-plus-fill\": 62630,\n  \"node-plus\": 62631,\n  \"nut-fill\": 62632,\n  \"nut\": 62633,\n  \"octagon-fill\": 62634,\n  \"octagon-half\": 62635,\n  \"octagon\": 62636,\n  \"option\": 62637,\n  \"outlet\": 62638,\n  \"paint-bucket\": 62639,\n  \"palette-fill\": 62640,\n  \"palette\": 62641,\n  \"palette2\": 62642,\n  \"paperclip\": 62643,\n  \"paragraph\": 62644,\n  \"patch-check-fill\": 62645,\n  \"patch-check\": 62646,\n  \"patch-exclamation-fill\": 62647,\n  \"patch-exclamation\": 62648,\n  \"patch-minus-fill\": 62649,\n  \"patch-minus\": 62650,\n  \"patch-plus-fill\": 62651,\n  \"patch-plus\": 62652,\n  \"patch-question-fill\": 62653,\n  \"patch-question\": 62654,\n  \"pause-btn-fill\": 62655,\n  \"pause-btn\": 62656,\n  \"pause-circle-fill\": 62657,\n  \"pause-circle\": 62658,\n  \"pause-fill\": 62659,\n  \"pause\": 62660,\n  \"peace-fill\": 62661,\n  \"peace\": 62662,\n  \"pen-fill\": 62663,\n  \"pen\": 62664,\n  \"pencil-fill\": 62665,\n  \"pencil-square\": 62666,\n  \"pencil\": 62667,\n  \"pentagon-fill\": 62668,\n  \"pentagon-half\": 62669,\n  \"pentagon\": 62670,\n  \"people-fill\": 62671,\n  \"people\": 62672,\n  \"percent\": 62673,\n  \"person-badge-fill\": 62674,\n  \"person-badge\": 62675,\n  \"person-bounding-box\": 62676,\n  \"person-check-fill\": 62677,\n  \"person-check\": 62678,\n  \"person-circle\": 62679,\n  \"person-dash-fill\": 62680,\n  \"person-dash\": 62681,\n  \"person-fill\": 62682,\n  \"person-lines-fill\": 62683,\n  \"person-plus-fill\": 62684,\n  \"person-plus\": 62685,\n  \"person-square\": 62686,\n  \"person-x-fill\": 62687,\n  \"person-x\": 62688,\n  \"person\": 62689,\n  \"phone-fill\": 62690,\n  \"phone-landscape-fill\": 62691,\n  \"phone-landscape\": 62692,\n  \"phone-vibrate-fill\": 62693,\n  \"phone-vibrate\": 62694,\n  \"phone\": 62695,\n  \"pie-chart-fill\": 62696,\n  \"pie-chart\": 62697,\n  \"pin-angle-fill\": 62698,\n  \"pin-angle\": 62699,\n  \"pin-fill\": 62700,\n  \"pin\": 62701,\n  \"pip-fill\": 62702,\n  \"pip\": 62703,\n  \"play-btn-fill\": 62704,\n  \"play-btn\": 62705,\n  \"play-circle-fill\": 62706,\n  \"play-circle\": 62707,\n  \"play-fill\": 62708,\n  \"play\": 62709,\n  \"plug-fill\": 62710,\n  \"plug\": 62711,\n  \"plus-circle-dotted\": 62712,\n  \"plus-circle-fill\": 62713,\n  \"plus-circle\": 62714,\n  \"plus-square-dotted\": 62715,\n  \"plus-square-fill\": 62716,\n  \"plus-square\": 62717,\n  \"plus\": 62718,\n  \"power\": 62719,\n  \"printer-fill\": 62720,\n  \"printer\": 62721,\n  \"puzzle-fill\": 62722,\n  \"puzzle\": 62723,\n  \"question-circle-fill\": 62724,\n  \"question-circle\": 62725,\n  \"question-diamond-fill\": 62726,\n  \"question-diamond\": 62727,\n  \"question-octagon-fill\": 62728,\n  \"question-octagon\": 62729,\n  \"question-square-fill\": 62730,\n  \"question-square\": 62731,\n  \"question\": 62732,\n  \"rainbow\": 62733,\n  \"receipt-cutoff\": 62734,\n  \"receipt\": 62735,\n  \"reception-0\": 62736,\n  \"reception-1\": 62737,\n  \"reception-2\": 62738,\n  \"reception-3\": 62739,\n  \"reception-4\": 62740,\n  \"record-btn-fill\": 62741,\n  \"record-btn\": 62742,\n  \"record-circle-fill\": 62743,\n  \"record-circle\": 62744,\n  \"record-fill\": 62745,\n  \"record\": 62746,\n  \"record2-fill\": 62747,\n  \"record2\": 62748,\n  \"reply-all-fill\": 62749,\n  \"reply-all\": 62750,\n  \"reply-fill\": 62751,\n  \"reply\": 62752,\n  \"rss-fill\": 62753,\n  \"rss\": 62754,\n  \"rulers\": 62755,\n  \"save-fill\": 62756,\n  \"save\": 62757,\n  \"save2-fill\": 62758,\n  \"save2\": 62759,\n  \"scissors\": 62760,\n  \"screwdriver\": 62761,\n  \"search\": 62762,\n  \"segmented-nav\": 62763,\n  \"server\": 62764,\n  \"share-fill\": 62765,\n  \"share\": 62766,\n  \"shield-check\": 62767,\n  \"shield-exclamation\": 62768,\n  \"shield-fill-check\": 62769,\n  \"shield-fill-exclamation\": 62770,\n  \"shield-fill-minus\": 62771,\n  \"shield-fill-plus\": 62772,\n  \"shield-fill-x\": 62773,\n  \"shield-fill\": 62774,\n  \"shield-lock-fill\": 62775,\n  \"shield-lock\": 62776,\n  \"shield-minus\": 62777,\n  \"shield-plus\": 62778,\n  \"shield-shaded\": 62779,\n  \"shield-slash-fill\": 62780,\n  \"shield-slash\": 62781,\n  \"shield-x\": 62782,\n  \"shield\": 62783,\n  \"shift-fill\": 62784,\n  \"shift\": 62785,\n  \"shop-window\": 62786,\n  \"shop\": 62787,\n  \"shuffle\": 62788,\n  \"signpost-2-fill\": 62789,\n  \"signpost-2\": 62790,\n  \"signpost-fill\": 62791,\n  \"signpost-split-fill\": 62792,\n  \"signpost-split\": 62793,\n  \"signpost\": 62794,\n  \"sim-fill\": 62795,\n  \"sim\": 62796,\n  \"skip-backward-btn-fill\": 62797,\n  \"skip-backward-btn\": 62798,\n  \"skip-backward-circle-fill\": 62799,\n  \"skip-backward-circle\": 62800,\n  \"skip-backward-fill\": 62801,\n  \"skip-backward\": 62802,\n  \"skip-end-btn-fill\": 62803,\n  \"skip-end-btn\": 62804,\n  \"skip-end-circle-fill\": 62805,\n  \"skip-end-circle\": 62806,\n  \"skip-end-fill\": 62807,\n  \"skip-end\": 62808,\n  \"skip-forward-btn-fill\": 62809,\n  \"skip-forward-btn\": 62810,\n  \"skip-forward-circle-fill\": 62811,\n  \"skip-forward-circle\": 62812,\n  \"skip-forward-fill\": 62813,\n  \"skip-forward\": 62814,\n  \"skip-start-btn-fill\": 62815,\n  \"skip-start-btn\": 62816,\n  \"skip-start-circle-fill\": 62817,\n  \"skip-start-circle\": 62818,\n  \"skip-start-fill\": 62819,\n  \"skip-start\": 62820,\n  \"slack\": 62821,\n  \"slash-circle-fill\": 62822,\n  \"slash-circle\": 62823,\n  \"slash-square-fill\": 62824,\n  \"slash-square\": 62825,\n  \"slash\": 62826,\n  \"sliders\": 62827,\n  \"smartwatch\": 62828,\n  \"snow\": 62829,\n  \"snow2\": 62830,\n  \"snow3\": 62831,\n  \"sort-alpha-down-alt\": 62832,\n  \"sort-alpha-down\": 62833,\n  \"sort-alpha-up-alt\": 62834,\n  \"sort-alpha-up\": 62835,\n  \"sort-down-alt\": 62836,\n  \"sort-down\": 62837,\n  \"sort-numeric-down-alt\": 62838,\n  \"sort-numeric-down\": 62839,\n  \"sort-numeric-up-alt\": 62840,\n  \"sort-numeric-up\": 62841,\n  \"sort-up-alt\": 62842,\n  \"sort-up\": 62843,\n  \"soundwave\": 62844,\n  \"speaker-fill\": 62845,\n  \"speaker\": 62846,\n  \"speedometer\": 62847,\n  \"speedometer2\": 62848,\n  \"spellcheck\": 62849,\n  \"square-fill\": 62850,\n  \"square-half\": 62851,\n  \"square\": 62852,\n  \"stack\": 62853,\n  \"star-fill\": 62854,\n  \"star-half\": 62855,\n  \"star\": 62856,\n  \"stars\": 62857,\n  \"stickies-fill\": 62858,\n  \"stickies\": 62859,\n  \"sticky-fill\": 62860,\n  \"sticky\": 62861,\n  \"stop-btn-fill\": 62862,\n  \"stop-btn\": 62863,\n  \"stop-circle-fill\": 62864,\n  \"stop-circle\": 62865,\n  \"stop-fill\": 62866,\n  \"stop\": 62867,\n  \"stoplights-fill\": 62868,\n  \"stoplights\": 62869,\n  \"stopwatch-fill\": 62870,\n  \"stopwatch\": 62871,\n  \"subtract\": 62872,\n  \"suit-club-fill\": 62873,\n  \"suit-club\": 62874,\n  \"suit-diamond-fill\": 62875,\n  \"suit-diamond\": 62876,\n  \"suit-heart-fill\": 62877,\n  \"suit-heart\": 62878,\n  \"suit-spade-fill\": 62879,\n  \"suit-spade\": 62880,\n  \"sun-fill\": 62881,\n  \"sun\": 62882,\n  \"sunglasses\": 62883,\n  \"sunrise-fill\": 62884,\n  \"sunrise\": 62885,\n  \"sunset-fill\": 62886,\n  \"sunset\": 62887,\n  \"symmetry-horizontal\": 62888,\n  \"symmetry-vertical\": 62889,\n  \"table\": 62890,\n  \"tablet-fill\": 62891,\n  \"tablet-landscape-fill\": 62892,\n  \"tablet-landscape\": 62893,\n  \"tablet\": 62894,\n  \"tag-fill\": 62895,\n  \"tag\": 62896,\n  \"tags-fill\": 62897,\n  \"tags\": 62898,\n  \"telegram\": 62899,\n  \"telephone-fill\": 62900,\n  \"telephone-forward-fill\": 62901,\n  \"telephone-forward\": 62902,\n  \"telephone-inbound-fill\": 62903,\n  \"telephone-inbound\": 62904,\n  \"telephone-minus-fill\": 62905,\n  \"telephone-minus\": 62906,\n  \"telephone-outbound-fill\": 62907,\n  \"telephone-outbound\": 62908,\n  \"telephone-plus-fill\": 62909,\n  \"telephone-plus\": 62910,\n  \"telephone-x-fill\": 62911,\n  \"telephone-x\": 62912,\n  \"telephone\": 62913,\n  \"terminal-fill\": 62914,\n  \"terminal\": 62915,\n  \"text-center\": 62916,\n  \"text-indent-left\": 62917,\n  \"text-indent-right\": 62918,\n  \"text-left\": 62919,\n  \"text-paragraph\": 62920,\n  \"text-right\": 62921,\n  \"textarea-resize\": 62922,\n  \"textarea-t\": 62923,\n  \"textarea\": 62924,\n  \"thermometer-half\": 62925,\n  \"thermometer-high\": 62926,\n  \"thermometer-low\": 62927,\n  \"thermometer-snow\": 62928,\n  \"thermometer-sun\": 62929,\n  \"thermometer\": 62930,\n  \"three-dots-vertical\": 62931,\n  \"three-dots\": 62932,\n  \"toggle-off\": 62933,\n  \"toggle-on\": 62934,\n  \"toggle2-off\": 62935,\n  \"toggle2-on\": 62936,\n  \"toggles\": 62937,\n  \"toggles2\": 62938,\n  \"tools\": 62939,\n  \"tornado\": 62940,\n  \"trash-fill\": 62941,\n  \"trash\": 62942,\n  \"trash2-fill\": 62943,\n  \"trash2\": 62944,\n  \"tree-fill\": 62945,\n  \"tree\": 62946,\n  \"triangle-fill\": 62947,\n  \"triangle-half\": 62948,\n  \"triangle\": 62949,\n  \"trophy-fill\": 62950,\n  \"trophy\": 62951,\n  \"tropical-storm\": 62952,\n  \"truck-flatbed\": 62953,\n  \"truck\": 62954,\n  \"tsunami\": 62955,\n  \"tv-fill\": 62956,\n  \"tv\": 62957,\n  \"twitch\": 62958,\n  \"twitter\": 62959,\n  \"type-bold\": 62960,\n  \"type-h1\": 62961,\n  \"type-h2\": 62962,\n  \"type-h3\": 62963,\n  \"type-italic\": 62964,\n  \"type-strikethrough\": 62965,\n  \"type-underline\": 62966,\n  \"type\": 62967,\n  \"ui-checks-grid\": 62968,\n  \"ui-checks\": 62969,\n  \"ui-radios-grid\": 62970,\n  \"ui-radios\": 62971,\n  \"umbrella-fill\": 62972,\n  \"umbrella\": 62973,\n  \"union\": 62974,\n  \"unlock-fill\": 62975,\n  \"unlock\": 62976,\n  \"upc-scan\": 62977,\n  \"upc\": 62978,\n  \"upload\": 62979,\n  \"vector-pen\": 62980,\n  \"view-list\": 62981,\n  \"view-stacked\": 62982,\n  \"vinyl-fill\": 62983,\n  \"vinyl\": 62984,\n  \"voicemail\": 62985,\n  \"volume-down-fill\": 62986,\n  \"volume-down\": 62987,\n  \"volume-mute-fill\": 62988,\n  \"volume-mute\": 62989,\n  \"volume-off-fill\": 62990,\n  \"volume-off\": 62991,\n  \"volume-up-fill\": 62992,\n  \"volume-up\": 62993,\n  \"vr\": 62994,\n  \"wallet-fill\": 62995,\n  \"wallet\": 62996,\n  \"wallet2\": 62997,\n  \"watch\": 62998,\n  \"water\": 62999,\n  \"whatsapp\": 63000,\n  \"wifi-1\": 63001,\n  \"wifi-2\": 63002,\n  \"wifi-off\": 63003,\n  \"wifi\": 63004,\n  \"wind\": 63005,\n  \"window-dock\": 63006,\n  \"window-sidebar\": 63007,\n  \"window\": 63008,\n  \"wrench\": 63009,\n  \"x-circle-fill\": 63010,\n  \"x-circle\": 63011,\n  \"x-diamond-fill\": 63012,\n  \"x-diamond\": 63013,\n  \"x-octagon-fill\": 63014,\n  \"x-octagon\": 63015,\n  \"x-square-fill\": 63016,\n  \"x-square\": 63017,\n  \"x\": 63018,\n  \"youtube\": 63019,\n  \"zoom-in\": 63020,\n  \"zoom-out\": 63021,\n  \"bank\": 63022,\n  \"bank2\": 63023,\n  \"bell-slash-fill\": 63024,\n  \"bell-slash\": 63025,\n  \"cash-coin\": 63026,\n  \"check-lg\": 63027,\n  \"coin\": 63028,\n  \"currency-bitcoin\": 63029,\n  \"currency-dollar\": 63030,\n  \"currency-euro\": 63031,\n  \"currency-exchange\": 63032,\n  \"currency-pound\": 63033,\n  \"currency-yen\": 63034,\n  \"dash-lg\": 63035,\n  \"exclamation-lg\": 63036,\n  \"file-earmark-pdf-fill\": 63037,\n  \"file-earmark-pdf\": 63038,\n  \"file-pdf-fill\": 63039,\n  \"file-pdf\": 63040,\n  \"gender-ambiguous\": 63041,\n  \"gender-female\": 63042,\n  \"gender-male\": 63043,\n  \"gender-trans\": 63044,\n  \"headset-vr\": 63045,\n  \"info-lg\": 63046,\n  \"mastodon\": 63047,\n  \"messenger\": 63048,\n  \"piggy-bank-fill\": 63049,\n  \"piggy-bank\": 63050,\n  \"pin-map-fill\": 63051,\n  \"pin-map\": 63052,\n  \"plus-lg\": 63053,\n  \"question-lg\": 63054,\n  \"recycle\": 63055,\n  \"reddit\": 63056,\n  \"safe-fill\": 63057,\n  \"safe2-fill\": 63058,\n  \"safe2\": 63059,\n  \"sd-card-fill\": 63060,\n  \"sd-card\": 63061,\n  \"skype\": 63062,\n  \"slash-lg\": 63063,\n  \"translate\": 63064,\n  \"x-lg\": 63065,\n  \"safe\": 63066,\n  \"apple\": 63067,\n  \"microsoft\": 63069,\n  \"windows\": 63070,\n  \"behance\": 63068,\n  \"dribbble\": 63071,\n  \"line\": 63072,\n  \"medium\": 63073,\n  \"paypal\": 63074,\n  \"pinterest\": 63075,\n  \"signal\": 63076,\n  \"snapchat\": 63077,\n  \"spotify\": 63078,\n  \"stack-overflow\": 63079,\n  \"strava\": 63080,\n  \"wordpress\": 63081,\n  \"vimeo\": 63082,\n  \"activity\": 63083,\n  \"easel2-fill\": 63084,\n  \"easel2\": 63085,\n  \"easel3-fill\": 63086,\n  \"easel3\": 63087,\n  \"fan\": 63088,\n  \"fingerprint\": 63089,\n  \"graph-down-arrow\": 63090,\n  \"graph-up-arrow\": 63091,\n  \"hypnotize\": 63092,\n  \"magic\": 63093,\n  \"person-rolodex\": 63094,\n  \"person-video\": 63095,\n  \"person-video2\": 63096,\n  \"person-video3\": 63097,\n  \"person-workspace\": 63098,\n  \"radioactive\": 63099,\n  \"webcam-fill\": 63100,\n  \"webcam\": 63101,\n  \"yin-yang\": 63102,\n  \"bandaid-fill\": 63104,\n  \"bandaid\": 63105,\n  \"bluetooth\": 63106,\n  \"body-text\": 63107,\n  \"boombox\": 63108,\n  \"boxes\": 63109,\n  \"dpad-fill\": 63110,\n  \"dpad\": 63111,\n  \"ear-fill\": 63112,\n  \"ear\": 63113,\n  \"envelope-check-fill\": 63115,\n  \"envelope-check\": 63116,\n  \"envelope-dash-fill\": 63118,\n  \"envelope-dash\": 63119,\n  \"envelope-exclamation-fill\": 63121,\n  \"envelope-exclamation\": 63122,\n  \"envelope-plus-fill\": 63123,\n  \"envelope-plus\": 63124,\n  \"envelope-slash-fill\": 63126,\n  \"envelope-slash\": 63127,\n  \"envelope-x-fill\": 63129,\n  \"envelope-x\": 63130,\n  \"explicit-fill\": 63131,\n  \"explicit\": 63132,\n  \"git\": 63133,\n  \"infinity\": 63134,\n  \"list-columns-reverse\": 63135,\n  \"list-columns\": 63136,\n  \"meta\": 63137,\n  \"nintendo-switch\": 63140,\n  \"pc-display-horizontal\": 63141,\n  \"pc-display\": 63142,\n  \"pc-horizontal\": 63143,\n  \"pc\": 63144,\n  \"playstation\": 63145,\n  \"plus-slash-minus\": 63146,\n  \"projector-fill\": 63147,\n  \"projector\": 63148,\n  \"qr-code-scan\": 63149,\n  \"qr-code\": 63150,\n  \"quora\": 63151,\n  \"quote\": 63152,\n  \"robot\": 63153,\n  \"send-check-fill\": 63154,\n  \"send-check\": 63155,\n  \"send-dash-fill\": 63156,\n  \"send-dash\": 63157,\n  \"send-exclamation-fill\": 63159,\n  \"send-exclamation\": 63160,\n  \"send-fill\": 63161,\n  \"send-plus-fill\": 63162,\n  \"send-plus\": 63163,\n  \"send-slash-fill\": 63164,\n  \"send-slash\": 63165,\n  \"send-x-fill\": 63166,\n  \"send-x\": 63167,\n  \"send\": 63168,\n  \"steam\": 63169,\n  \"terminal-dash\": 63171,\n  \"terminal-plus\": 63172,\n  \"terminal-split\": 63173,\n  \"ticket-detailed-fill\": 63174,\n  \"ticket-detailed\": 63175,\n  \"ticket-fill\": 63176,\n  \"ticket-perforated-fill\": 63177,\n  \"ticket-perforated\": 63178,\n  \"ticket\": 63179,\n  \"tiktok\": 63180,\n  \"window-dash\": 63181,\n  \"window-desktop\": 63182,\n  \"window-fullscreen\": 63183,\n  \"window-plus\": 63184,\n  \"window-split\": 63185,\n  \"window-stack\": 63186,\n  \"window-x\": 63187,\n  \"xbox\": 63188,\n  \"ethernet\": 63189,\n  \"hdmi-fill\": 63190,\n  \"hdmi\": 63191,\n  \"usb-c-fill\": 63192,\n  \"usb-c\": 63193,\n  \"usb-fill\": 63194,\n  \"usb-plug-fill\": 63195,\n  \"usb-plug\": 63196,\n  \"usb-symbol\": 63197,\n  \"usb\": 63198,\n  \"boombox-fill\": 63199,\n  \"displayport\": 63201,\n  \"gpu-card\": 63202,\n  \"memory\": 63203,\n  \"modem-fill\": 63204,\n  \"modem\": 63205,\n  \"motherboard-fill\": 63206,\n  \"motherboard\": 63207,\n  \"optical-audio-fill\": 63208,\n  \"optical-audio\": 63209,\n  \"pci-card\": 63210,\n  \"router-fill\": 63211,\n  \"router\": 63212,\n  \"thunderbolt-fill\": 63215,\n  \"thunderbolt\": 63216,\n  \"usb-drive-fill\": 63217,\n  \"usb-drive\": 63218,\n  \"usb-micro-fill\": 63219,\n  \"usb-micro\": 63220,\n  \"usb-mini-fill\": 63221,\n  \"usb-mini\": 63222,\n  \"cloud-haze2\": 63223,\n  \"device-hdd-fill\": 63224,\n  \"device-hdd\": 63225,\n  \"device-ssd-fill\": 63226,\n  \"device-ssd\": 63227,\n  \"displayport-fill\": 63228,\n  \"mortarboard-fill\": 63229,\n  \"mortarboard\": 63230,\n  \"terminal-x\": 63231,\n  \"arrow-through-heart-fill\": 63232,\n  \"arrow-through-heart\": 63233,\n  \"badge-sd-fill\": 63234,\n  \"badge-sd\": 63235,\n  \"bag-heart-fill\": 63236,\n  \"bag-heart\": 63237,\n  \"balloon-fill\": 63238,\n  \"balloon-heart-fill\": 63239,\n  \"balloon-heart\": 63240,\n  \"balloon\": 63241,\n  \"box2-fill\": 63242,\n  \"box2-heart-fill\": 63243,\n  \"box2-heart\": 63244,\n  \"box2\": 63245,\n  \"braces-asterisk\": 63246,\n  \"calendar-heart-fill\": 63247,\n  \"calendar-heart\": 63248,\n  \"calendar2-heart-fill\": 63249,\n  \"calendar2-heart\": 63250,\n  \"chat-heart-fill\": 63251,\n  \"chat-heart\": 63252,\n  \"chat-left-heart-fill\": 63253,\n  \"chat-left-heart\": 63254,\n  \"chat-right-heart-fill\": 63255,\n  \"chat-right-heart\": 63256,\n  \"chat-square-heart-fill\": 63257,\n  \"chat-square-heart\": 63258,\n  \"clipboard-check-fill\": 63259,\n  \"clipboard-data-fill\": 63260,\n  \"clipboard-fill\": 63261,\n  \"clipboard-heart-fill\": 63262,\n  \"clipboard-heart\": 63263,\n  \"clipboard-minus-fill\": 63264,\n  \"clipboard-plus-fill\": 63265,\n  \"clipboard-pulse\": 63266,\n  \"clipboard-x-fill\": 63267,\n  \"clipboard2-check-fill\": 63268,\n  \"clipboard2-check\": 63269,\n  \"clipboard2-data-fill\": 63270,\n  \"clipboard2-data\": 63271,\n  \"clipboard2-fill\": 63272,\n  \"clipboard2-heart-fill\": 63273,\n  \"clipboard2-heart\": 63274,\n  \"clipboard2-minus-fill\": 63275,\n  \"clipboard2-minus\": 63276,\n  \"clipboard2-plus-fill\": 63277,\n  \"clipboard2-plus\": 63278,\n  \"clipboard2-pulse-fill\": 63279,\n  \"clipboard2-pulse\": 63280,\n  \"clipboard2-x-fill\": 63281,\n  \"clipboard2-x\": 63282,\n  \"clipboard2\": 63283,\n  \"emoji-kiss-fill\": 63284,\n  \"emoji-kiss\": 63285,\n  \"envelope-heart-fill\": 63286,\n  \"envelope-heart\": 63287,\n  \"envelope-open-heart-fill\": 63288,\n  \"envelope-open-heart\": 63289,\n  \"envelope-paper-fill\": 63290,\n  \"envelope-paper-heart-fill\": 63291,\n  \"envelope-paper-heart\": 63292,\n  \"envelope-paper\": 63293,\n  \"filetype-aac\": 63294,\n  \"filetype-ai\": 63295,\n  \"filetype-bmp\": 63296,\n  \"filetype-cs\": 63297,\n  \"filetype-css\": 63298,\n  \"filetype-csv\": 63299,\n  \"filetype-doc\": 63300,\n  \"filetype-docx\": 63301,\n  \"filetype-exe\": 63302,\n  \"filetype-gif\": 63303,\n  \"filetype-heic\": 63304,\n  \"filetype-html\": 63305,\n  \"filetype-java\": 63306,\n  \"filetype-jpg\": 63307,\n  \"filetype-js\": 63308,\n  \"filetype-jsx\": 63309,\n  \"filetype-key\": 63310,\n  \"filetype-m4p\": 63311,\n  \"filetype-md\": 63312,\n  \"filetype-mdx\": 63313,\n  \"filetype-mov\": 63314,\n  \"filetype-mp3\": 63315,\n  \"filetype-mp4\": 63316,\n  \"filetype-otf\": 63317,\n  \"filetype-pdf\": 63318,\n  \"filetype-php\": 63319,\n  \"filetype-png\": 63320,\n  \"filetype-ppt\": 63322,\n  \"filetype-psd\": 63323,\n  \"filetype-py\": 63324,\n  \"filetype-raw\": 63325,\n  \"filetype-rb\": 63326,\n  \"filetype-sass\": 63327,\n  \"filetype-scss\": 63328,\n  \"filetype-sh\": 63329,\n  \"filetype-svg\": 63330,\n  \"filetype-tiff\": 63331,\n  \"filetype-tsx\": 63332,\n  \"filetype-ttf\": 63333,\n  \"filetype-txt\": 63334,\n  \"filetype-wav\": 63335,\n  \"filetype-woff\": 63336,\n  \"filetype-xls\": 63338,\n  \"filetype-xml\": 63339,\n  \"filetype-yml\": 63340,\n  \"heart-arrow\": 63341,\n  \"heart-pulse-fill\": 63342,\n  \"heart-pulse\": 63343,\n  \"heartbreak-fill\": 63344,\n  \"heartbreak\": 63345,\n  \"hearts\": 63346,\n  \"hospital-fill\": 63347,\n  \"hospital\": 63348,\n  \"house-heart-fill\": 63349,\n  \"house-heart\": 63350,\n  \"incognito\": 63351,\n  \"magnet-fill\": 63352,\n  \"magnet\": 63353,\n  \"person-heart\": 63354,\n  \"person-hearts\": 63355,\n  \"phone-flip\": 63356,\n  \"plugin\": 63357,\n  \"postage-fill\": 63358,\n  \"postage-heart-fill\": 63359,\n  \"postage-heart\": 63360,\n  \"postage\": 63361,\n  \"postcard-fill\": 63362,\n  \"postcard-heart-fill\": 63363,\n  \"postcard-heart\": 63364,\n  \"postcard\": 63365,\n  \"search-heart-fill\": 63366,\n  \"search-heart\": 63367,\n  \"sliders2-vertical\": 63368,\n  \"sliders2\": 63369,\n  \"trash3-fill\": 63370,\n  \"trash3\": 63371,\n  \"valentine\": 63372,\n  \"valentine2\": 63373,\n  \"wrench-adjustable-circle-fill\": 63374,\n  \"wrench-adjustable-circle\": 63375,\n  \"wrench-adjustable\": 63376,\n  \"filetype-json\": 63377,\n  \"filetype-pptx\": 63378,\n  \"filetype-xlsx\": 63379,\n  \"1-circle-fill\": 63382,\n  \"1-circle\": 63383,\n  \"1-square-fill\": 63384,\n  \"1-square\": 63385,\n  \"2-circle-fill\": 63388,\n  \"2-circle\": 63389,\n  \"2-square-fill\": 63390,\n  \"2-square\": 63391,\n  \"3-circle-fill\": 63394,\n  \"3-circle\": 63395,\n  \"3-square-fill\": 63396,\n  \"3-square\": 63397,\n  \"4-circle-fill\": 63400,\n  \"4-circle\": 63401,\n  \"4-square-fill\": 63402,\n  \"4-square\": 63403,\n  \"5-circle-fill\": 63406,\n  \"5-circle\": 63407,\n  \"5-square-fill\": 63408,\n  \"5-square\": 63409,\n  \"6-circle-fill\": 63412,\n  \"6-circle\": 63413,\n  \"6-square-fill\": 63414,\n  \"6-square\": 63415,\n  \"7-circle-fill\": 63418,\n  \"7-circle\": 63419,\n  \"7-square-fill\": 63420,\n  \"7-square\": 63421,\n  \"8-circle-fill\": 63424,\n  \"8-circle\": 63425,\n  \"8-square-fill\": 63426,\n  \"8-square\": 63427,\n  \"9-circle-fill\": 63430,\n  \"9-circle\": 63431,\n  \"9-square-fill\": 63432,\n  \"9-square\": 63433,\n  \"airplane-engines-fill\": 63434,\n  \"airplane-engines\": 63435,\n  \"airplane-fill\": 63436,\n  \"airplane\": 63437,\n  \"alexa\": 63438,\n  \"alipay\": 63439,\n  \"android\": 63440,\n  \"android2\": 63441,\n  \"box-fill\": 63442,\n  \"box-seam-fill\": 63443,\n  \"browser-chrome\": 63444,\n  \"browser-edge\": 63445,\n  \"browser-firefox\": 63446,\n  \"browser-safari\": 63447,\n  \"c-circle-fill\": 63450,\n  \"c-circle\": 63451,\n  \"c-square-fill\": 63452,\n  \"c-square\": 63453,\n  \"capsule-pill\": 63454,\n  \"capsule\": 63455,\n  \"car-front-fill\": 63456,\n  \"car-front\": 63457,\n  \"cassette-fill\": 63458,\n  \"cassette\": 63459,\n  \"cc-circle-fill\": 63462,\n  \"cc-circle\": 63463,\n  \"cc-square-fill\": 63464,\n  \"cc-square\": 63465,\n  \"cup-hot-fill\": 63466,\n  \"cup-hot\": 63467,\n  \"currency-rupee\": 63468,\n  \"dropbox\": 63469,\n  \"escape\": 63470,\n  \"fast-forward-btn-fill\": 63471,\n  \"fast-forward-btn\": 63472,\n  \"fast-forward-circle-fill\": 63473,\n  \"fast-forward-circle\": 63474,\n  \"fast-forward-fill\": 63475,\n  \"fast-forward\": 63476,\n  \"filetype-sql\": 63477,\n  \"fire\": 63478,\n  \"google-play\": 63479,\n  \"h-circle-fill\": 63482,\n  \"h-circle\": 63483,\n  \"h-square-fill\": 63484,\n  \"h-square\": 63485,\n  \"indent\": 63486,\n  \"lungs-fill\": 63487,\n  \"lungs\": 63488,\n  \"microsoft-teams\": 63489,\n  \"p-circle-fill\": 63492,\n  \"p-circle\": 63493,\n  \"p-square-fill\": 63494,\n  \"p-square\": 63495,\n  \"pass-fill\": 63496,\n  \"pass\": 63497,\n  \"prescription\": 63498,\n  \"prescription2\": 63499,\n  \"r-circle-fill\": 63502,\n  \"r-circle\": 63503,\n  \"r-square-fill\": 63504,\n  \"r-square\": 63505,\n  \"repeat-1\": 63506,\n  \"repeat\": 63507,\n  \"rewind-btn-fill\": 63508,\n  \"rewind-btn\": 63509,\n  \"rewind-circle-fill\": 63510,\n  \"rewind-circle\": 63511,\n  \"rewind-fill\": 63512,\n  \"rewind\": 63513,\n  \"train-freight-front-fill\": 63514,\n  \"train-freight-front\": 63515,\n  \"train-front-fill\": 63516,\n  \"train-front\": 63517,\n  \"train-lightrail-front-fill\": 63518,\n  \"train-lightrail-front\": 63519,\n  \"truck-front-fill\": 63520,\n  \"truck-front\": 63521,\n  \"ubuntu\": 63522,\n  \"unindent\": 63523,\n  \"unity\": 63524,\n  \"universal-access-circle\": 63525,\n  \"universal-access\": 63526,\n  \"virus\": 63527,\n  \"virus2\": 63528,\n  \"wechat\": 63529,\n  \"yelp\": 63530,\n  \"sign-stop-fill\": 63531,\n  \"sign-stop-lights-fill\": 63532,\n  \"sign-stop-lights\": 63533,\n  \"sign-stop\": 63534,\n  \"sign-turn-left-fill\": 63535,\n  \"sign-turn-left\": 63536,\n  \"sign-turn-right-fill\": 63537,\n  \"sign-turn-right\": 63538,\n  \"sign-turn-slight-left-fill\": 63539,\n  \"sign-turn-slight-left\": 63540,\n  \"sign-turn-slight-right-fill\": 63541,\n  \"sign-turn-slight-right\": 63542,\n  \"sign-yield-fill\": 63543,\n  \"sign-yield\": 63544,\n  \"ev-station-fill\": 63545,\n  \"ev-station\": 63546,\n  \"fuel-pump-diesel-fill\": 63547,\n  \"fuel-pump-diesel\": 63548,\n  \"fuel-pump-fill\": 63549,\n  \"fuel-pump\": 63550,\n  \"0-circle-fill\": 63551,\n  \"0-circle\": 63552,\n  \"0-square-fill\": 63553,\n  \"0-square\": 63554,\n  \"rocket-fill\": 63555,\n  \"rocket-takeoff-fill\": 63556,\n  \"rocket-takeoff\": 63557,\n  \"rocket\": 63558,\n  \"stripe\": 63559,\n  \"subscript\": 63560,\n  \"superscript\": 63561,\n  \"trello\": 63562,\n  \"envelope-at-fill\": 63563,\n  \"envelope-at\": 63564,\n  \"regex\": 63565,\n  \"text-wrap\": 63566,\n  \"sign-dead-end-fill\": 63567,\n  \"sign-dead-end\": 63568,\n  \"sign-do-not-enter-fill\": 63569,\n  \"sign-do-not-enter\": 63570,\n  \"sign-intersection-fill\": 63571,\n  \"sign-intersection-side-fill\": 63572,\n  \"sign-intersection-side\": 63573,\n  \"sign-intersection-t-fill\": 63574,\n  \"sign-intersection-t\": 63575,\n  \"sign-intersection-y-fill\": 63576,\n  \"sign-intersection-y\": 63577,\n  \"sign-intersection\": 63578,\n  \"sign-merge-left-fill\": 63579,\n  \"sign-merge-left\": 63580,\n  \"sign-merge-right-fill\": 63581,\n  \"sign-merge-right\": 63582,\n  \"sign-no-left-turn-fill\": 63583,\n  \"sign-no-left-turn\": 63584,\n  \"sign-no-parking-fill\": 63585,\n  \"sign-no-parking\": 63586,\n  \"sign-no-right-turn-fill\": 63587,\n  \"sign-no-right-turn\": 63588,\n  \"sign-railroad-fill\": 63589,\n  \"sign-railroad\": 63590,\n  \"building-add\": 63591,\n  \"building-check\": 63592,\n  \"building-dash\": 63593,\n  \"building-down\": 63594,\n  \"building-exclamation\": 63595,\n  \"building-fill-add\": 63596,\n  \"building-fill-check\": 63597,\n  \"building-fill-dash\": 63598,\n  \"building-fill-down\": 63599,\n  \"building-fill-exclamation\": 63600,\n  \"building-fill-gear\": 63601,\n  \"building-fill-lock\": 63602,\n  \"building-fill-slash\": 63603,\n  \"building-fill-up\": 63604,\n  \"building-fill-x\": 63605,\n  \"building-fill\": 63606,\n  \"building-gear\": 63607,\n  \"building-lock\": 63608,\n  \"building-slash\": 63609,\n  \"building-up\": 63610,\n  \"building-x\": 63611,\n  \"buildings-fill\": 63612,\n  \"buildings\": 63613,\n  \"bus-front-fill\": 63614,\n  \"bus-front\": 63615,\n  \"ev-front-fill\": 63616,\n  \"ev-front\": 63617,\n  \"globe-americas\": 63618,\n  \"globe-asia-australia\": 63619,\n  \"globe-central-south-asia\": 63620,\n  \"globe-europe-africa\": 63621,\n  \"house-add-fill\": 63622,\n  \"house-add\": 63623,\n  \"house-check-fill\": 63624,\n  \"house-check\": 63625,\n  \"house-dash-fill\": 63626,\n  \"house-dash\": 63627,\n  \"house-down-fill\": 63628,\n  \"house-down\": 63629,\n  \"house-exclamation-fill\": 63630,\n  \"house-exclamation\": 63631,\n  \"house-gear-fill\": 63632,\n  \"house-gear\": 63633,\n  \"house-lock-fill\": 63634,\n  \"house-lock\": 63635,\n  \"house-slash-fill\": 63636,\n  \"house-slash\": 63637,\n  \"house-up-fill\": 63638,\n  \"house-up\": 63639,\n  \"house-x-fill\": 63640,\n  \"house-x\": 63641,\n  \"person-add\": 63642,\n  \"person-down\": 63643,\n  \"person-exclamation\": 63644,\n  \"person-fill-add\": 63645,\n  \"person-fill-check\": 63646,\n  \"person-fill-dash\": 63647,\n  \"person-fill-down\": 63648,\n  \"person-fill-exclamation\": 63649,\n  \"person-fill-gear\": 63650,\n  \"person-fill-lock\": 63651,\n  \"person-fill-slash\": 63652,\n  \"person-fill-up\": 63653,\n  \"person-fill-x\": 63654,\n  \"person-gear\": 63655,\n  \"person-lock\": 63656,\n  \"person-slash\": 63657,\n  \"person-up\": 63658,\n  \"scooter\": 63659,\n  \"taxi-front-fill\": 63660,\n  \"taxi-front\": 63661,\n  \"amd\": 63662,\n  \"database-add\": 63663,\n  \"database-check\": 63664,\n  \"database-dash\": 63665,\n  \"database-down\": 63666,\n  \"database-exclamation\": 63667,\n  \"database-fill-add\": 63668,\n  \"database-fill-check\": 63669,\n  \"database-fill-dash\": 63670,\n  \"database-fill-down\": 63671,\n  \"database-fill-exclamation\": 63672,\n  \"database-fill-gear\": 63673,\n  \"database-fill-lock\": 63674,\n  \"database-fill-slash\": 63675,\n  \"database-fill-up\": 63676,\n  \"database-fill-x\": 63677,\n  \"database-fill\": 63678,\n  \"database-gear\": 63679,\n  \"database-lock\": 63680,\n  \"database-slash\": 63681,\n  \"database-up\": 63682,\n  \"database-x\": 63683,\n  \"database\": 63684,\n  \"houses-fill\": 63685,\n  \"houses\": 63686,\n  \"nvidia\": 63687,\n  \"person-vcard-fill\": 63688,\n  \"person-vcard\": 63689,\n  \"sina-weibo\": 63690,\n  \"tencent-qq\": 63691,\n  \"wikipedia\": 63692,\n  \"alphabet-uppercase\": 62117,\n  \"alphabet\": 63114,\n  \"amazon\": 63117,\n  \"arrows-collapse-vertical\": 63120,\n  \"arrows-expand-vertical\": 63125,\n  \"arrows-vertical\": 63128,\n  \"arrows\": 63138,\n  \"ban-fill\": 63139,\n  \"ban\": 63158,\n  \"bing\": 63170,\n  \"cake\": 63200,\n  \"cake2\": 63213,\n  \"cookie\": 63214,\n  \"copy\": 63321,\n  \"crosshair\": 63337,\n  \"crosshair2\": 63380,\n  \"emoji-astonished-fill\": 63381,\n  \"emoji-astonished\": 63386,\n  \"emoji-grimace-fill\": 63387,\n  \"emoji-grimace\": 63392,\n  \"emoji-grin-fill\": 63393,\n  \"emoji-grin\": 63398,\n  \"emoji-surprise-fill\": 63399,\n  \"emoji-surprise\": 63404,\n  \"emoji-tear-fill\": 63405,\n  \"emoji-tear\": 63410,\n  \"envelope-arrow-down-fill\": 63411,\n  \"envelope-arrow-down\": 63416,\n  \"envelope-arrow-up-fill\": 63417,\n  \"envelope-arrow-up\": 63422,\n  \"feather\": 63423,\n  \"feather2\": 63428,\n  \"floppy-fill\": 63429,\n  \"floppy\": 63448,\n  \"floppy2-fill\": 63449,\n  \"floppy2\": 63460,\n  \"gitlab\": 63461,\n  \"highlighter\": 63480,\n  \"marker-tip\": 63490,\n  \"nvme-fill\": 63491,\n  \"nvme\": 63500,\n  \"opencollective\": 63501,\n  \"pci-card-network\": 63693,\n  \"pci-card-sound\": 63694,\n  \"radar\": 63695,\n  \"send-arrow-down-fill\": 63696,\n  \"send-arrow-down\": 63697,\n  \"send-arrow-up-fill\": 63698,\n  \"send-arrow-up\": 63699,\n  \"sim-slash-fill\": 63700,\n  \"sim-slash\": 63701,\n  \"sourceforge\": 63702,\n  \"substack\": 63703,\n  \"threads-fill\": 63704,\n  \"threads\": 63705,\n  \"transparency\": 63706,\n  \"twitter-x\": 63707,\n  \"type-h4\": 63708,\n  \"type-h5\": 63709,\n  \"type-h6\": 63710,\n  \"backpack-fill\": 63711,\n  \"backpack\": 63712,\n  \"backpack2-fill\": 63713,\n  \"backpack2\": 63714,\n  \"backpack3-fill\": 63715,\n  \"backpack3\": 63716,\n  \"backpack4-fill\": 63717,\n  \"backpack4\": 63718,\n  \"brilliance\": 63719,\n  \"cake-fill\": 63720,\n  \"cake2-fill\": 63721,\n  \"duffle-fill\": 63722,\n  \"duffle\": 63723,\n  \"exposure\": 63724,\n  \"gender-neuter\": 63725,\n  \"highlights\": 63726,\n  \"luggage-fill\": 63727,\n  \"luggage\": 63728,\n  \"mailbox-flag\": 63729,\n  \"mailbox2-flag\": 63730,\n  \"noise-reduction\": 63731,\n  \"passport-fill\": 63732,\n  \"passport\": 63733,\n  \"person-arms-up\": 63734,\n  \"person-raised-hand\": 63735,\n  \"person-standing-dress\": 63736,\n  \"person-standing\": 63737,\n  \"person-walking\": 63738,\n  \"person-wheelchair\": 63739,\n  \"shadows\": 63740,\n  \"suitcase-fill\": 63741,\n  \"suitcase-lg-fill\": 63742,\n  \"suitcase-lg\": 63743,\n  \"suitcase\": 63744,\n  \"suitcase2-fill\": 63745,\n  \"suitcase2\": 63746,\n  \"vignette\": 63747,\n  \"bluesky\": 63481,\n  \"tux\": 63748,\n  \"beaker-fill\": 63749,\n  \"beaker\": 63750,\n  \"flask-fill\": 63751,\n  \"flask-florence-fill\": 63752,\n  \"flask-florence\": 63753,\n  \"flask\": 63754,\n  \"leaf-fill\": 63755,\n  \"leaf\": 63756,\n  \"measuring-cup-fill\": 63757,\n  \"measuring-cup\": 63758,\n  \"unlock2-fill\": 63759,\n  \"unlock2\": 63760,\n  \"battery-low\": 63761,\n  \"anthropic\": 63762,\n  \"apple-music\": 63763,\n  \"claude\": 63764,\n  \"openai\": 63765,\n  \"perplexity\": 63766,\n  \"css\": 63767,\n  \"javascript\": 63768,\n  \"typescript\": 63769,\n  \"fork-knife\": 63770,\n  \"globe-americas-fill\": 63771,\n  \"globe-asia-australia-fill\": 63772,\n  \"globe-central-south-asia-fill\": 63773,\n  \"globe-europe-africa-fill\": 63774\n}"
  },
  {
    "path": "font/bootstrap-icons.scss",
    "content": "/*!\n * Bootstrap Icons v1.13.1 (https://icons.getbootstrap.com/)\n * Copyright 2019-2024 The Bootstrap Authors\n * Licensed under MIT (https://github.com/twbs/icons/blob/main/LICENSE)\n */\n\n$bootstrap-icons-font: \"bootstrap-icons\" !default;\n$bootstrap-icons-font-dir: \"./fonts\" !default;\n$bootstrap-icons-font-file: \"#{$bootstrap-icons-font-dir}/#{$bootstrap-icons-font}\" !default;\n$bootstrap-icons-font-hash: \"24e3eb84d0bcaf83d77f904c78ac1f47\" !default;\n$bootstrap-icons-font-src: url(\"#{$bootstrap-icons-font-file}.woff2?#{$bootstrap-icons-font-hash}\") format(\"woff2\"),\n                           url(\"#{$bootstrap-icons-font-file}.woff?#{$bootstrap-icons-font-hash}\") format(\"woff\") !default;\n\n@font-face {\n  font-display: block;\n  font-family: $bootstrap-icons-font;\n  src: $bootstrap-icons-font-src;\n}\n\n.bi::before,\n[class^=\"bi-\"]::before,\n[class*=\" bi-\"]::before {\n  display: inline-block;\n  font-family: $bootstrap-icons-font !important;\n  font-style: normal;\n  font-weight: normal !important;\n  font-variant: normal;\n  text-transform: none;\n  line-height: 1;\n  vertical-align: -.125em;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n$bootstrap-icons-map: (\n  \"123\": \"\\f67f\",\n  \"alarm-fill\": \"\\f101\",\n  \"alarm\": \"\\f102\",\n  \"align-bottom\": \"\\f103\",\n  \"align-center\": \"\\f104\",\n  \"align-end\": \"\\f105\",\n  \"align-middle\": \"\\f106\",\n  \"align-start\": \"\\f107\",\n  \"align-top\": \"\\f108\",\n  \"alt\": \"\\f109\",\n  \"app-indicator\": \"\\f10a\",\n  \"app\": \"\\f10b\",\n  \"archive-fill\": \"\\f10c\",\n  \"archive\": \"\\f10d\",\n  \"arrow-90deg-down\": \"\\f10e\",\n  \"arrow-90deg-left\": \"\\f10f\",\n  \"arrow-90deg-right\": \"\\f110\",\n  \"arrow-90deg-up\": \"\\f111\",\n  \"arrow-bar-down\": \"\\f112\",\n  \"arrow-bar-left\": \"\\f113\",\n  \"arrow-bar-right\": \"\\f114\",\n  \"arrow-bar-up\": \"\\f115\",\n  \"arrow-clockwise\": \"\\f116\",\n  \"arrow-counterclockwise\": \"\\f117\",\n  \"arrow-down-circle-fill\": \"\\f118\",\n  \"arrow-down-circle\": \"\\f119\",\n  \"arrow-down-left-circle-fill\": \"\\f11a\",\n  \"arrow-down-left-circle\": \"\\f11b\",\n  \"arrow-down-left-square-fill\": \"\\f11c\",\n  \"arrow-down-left-square\": \"\\f11d\",\n  \"arrow-down-left\": \"\\f11e\",\n  \"arrow-down-right-circle-fill\": \"\\f11f\",\n  \"arrow-down-right-circle\": \"\\f120\",\n  \"arrow-down-right-square-fill\": \"\\f121\",\n  \"arrow-down-right-square\": \"\\f122\",\n  \"arrow-down-right\": \"\\f123\",\n  \"arrow-down-short\": \"\\f124\",\n  \"arrow-down-square-fill\": \"\\f125\",\n  \"arrow-down-square\": \"\\f126\",\n  \"arrow-down-up\": \"\\f127\",\n  \"arrow-down\": \"\\f128\",\n  \"arrow-left-circle-fill\": \"\\f129\",\n  \"arrow-left-circle\": \"\\f12a\",\n  \"arrow-left-right\": \"\\f12b\",\n  \"arrow-left-short\": \"\\f12c\",\n  \"arrow-left-square-fill\": \"\\f12d\",\n  \"arrow-left-square\": \"\\f12e\",\n  \"arrow-left\": \"\\f12f\",\n  \"arrow-repeat\": \"\\f130\",\n  \"arrow-return-left\": \"\\f131\",\n  \"arrow-return-right\": \"\\f132\",\n  \"arrow-right-circle-fill\": \"\\f133\",\n  \"arrow-right-circle\": \"\\f134\",\n  \"arrow-right-short\": \"\\f135\",\n  \"arrow-right-square-fill\": \"\\f136\",\n  \"arrow-right-square\": \"\\f137\",\n  \"arrow-right\": \"\\f138\",\n  \"arrow-up-circle-fill\": \"\\f139\",\n  \"arrow-up-circle\": \"\\f13a\",\n  \"arrow-up-left-circle-fill\": \"\\f13b\",\n  \"arrow-up-left-circle\": \"\\f13c\",\n  \"arrow-up-left-square-fill\": \"\\f13d\",\n  \"arrow-up-left-square\": \"\\f13e\",\n  \"arrow-up-left\": \"\\f13f\",\n  \"arrow-up-right-circle-fill\": \"\\f140\",\n  \"arrow-up-right-circle\": \"\\f141\",\n  \"arrow-up-right-square-fill\": \"\\f142\",\n  \"arrow-up-right-square\": \"\\f143\",\n  \"arrow-up-right\": \"\\f144\",\n  \"arrow-up-short\": \"\\f145\",\n  \"arrow-up-square-fill\": \"\\f146\",\n  \"arrow-up-square\": \"\\f147\",\n  \"arrow-up\": \"\\f148\",\n  \"arrows-angle-contract\": \"\\f149\",\n  \"arrows-angle-expand\": \"\\f14a\",\n  \"arrows-collapse\": \"\\f14b\",\n  \"arrows-expand\": \"\\f14c\",\n  \"arrows-fullscreen\": \"\\f14d\",\n  \"arrows-move\": \"\\f14e\",\n  \"aspect-ratio-fill\": \"\\f14f\",\n  \"aspect-ratio\": \"\\f150\",\n  \"asterisk\": \"\\f151\",\n  \"at\": \"\\f152\",\n  \"award-fill\": \"\\f153\",\n  \"award\": \"\\f154\",\n  \"back\": \"\\f155\",\n  \"backspace-fill\": \"\\f156\",\n  \"backspace-reverse-fill\": \"\\f157\",\n  \"backspace-reverse\": \"\\f158\",\n  \"backspace\": \"\\f159\",\n  \"badge-3d-fill\": \"\\f15a\",\n  \"badge-3d\": \"\\f15b\",\n  \"badge-4k-fill\": \"\\f15c\",\n  \"badge-4k\": \"\\f15d\",\n  \"badge-8k-fill\": \"\\f15e\",\n  \"badge-8k\": \"\\f15f\",\n  \"badge-ad-fill\": \"\\f160\",\n  \"badge-ad\": \"\\f161\",\n  \"badge-ar-fill\": \"\\f162\",\n  \"badge-ar\": \"\\f163\",\n  \"badge-cc-fill\": \"\\f164\",\n  \"badge-cc\": \"\\f165\",\n  \"badge-hd-fill\": \"\\f166\",\n  \"badge-hd\": \"\\f167\",\n  \"badge-tm-fill\": \"\\f168\",\n  \"badge-tm\": \"\\f169\",\n  \"badge-vo-fill\": \"\\f16a\",\n  \"badge-vo\": \"\\f16b\",\n  \"badge-vr-fill\": \"\\f16c\",\n  \"badge-vr\": \"\\f16d\",\n  \"badge-wc-fill\": \"\\f16e\",\n  \"badge-wc\": \"\\f16f\",\n  \"bag-check-fill\": \"\\f170\",\n  \"bag-check\": \"\\f171\",\n  \"bag-dash-fill\": \"\\f172\",\n  \"bag-dash\": \"\\f173\",\n  \"bag-fill\": \"\\f174\",\n  \"bag-plus-fill\": \"\\f175\",\n  \"bag-plus\": \"\\f176\",\n  \"bag-x-fill\": \"\\f177\",\n  \"bag-x\": \"\\f178\",\n  \"bag\": \"\\f179\",\n  \"bar-chart-fill\": \"\\f17a\",\n  \"bar-chart-line-fill\": \"\\f17b\",\n  \"bar-chart-line\": \"\\f17c\",\n  \"bar-chart-steps\": \"\\f17d\",\n  \"bar-chart\": \"\\f17e\",\n  \"basket-fill\": \"\\f17f\",\n  \"basket\": \"\\f180\",\n  \"basket2-fill\": \"\\f181\",\n  \"basket2\": \"\\f182\",\n  \"basket3-fill\": \"\\f183\",\n  \"basket3\": \"\\f184\",\n  \"battery-charging\": \"\\f185\",\n  \"battery-full\": \"\\f186\",\n  \"battery-half\": \"\\f187\",\n  \"battery\": \"\\f188\",\n  \"bell-fill\": \"\\f189\",\n  \"bell\": \"\\f18a\",\n  \"bezier\": \"\\f18b\",\n  \"bezier2\": \"\\f18c\",\n  \"bicycle\": \"\\f18d\",\n  \"binoculars-fill\": \"\\f18e\",\n  \"binoculars\": \"\\f18f\",\n  \"blockquote-left\": \"\\f190\",\n  \"blockquote-right\": \"\\f191\",\n  \"book-fill\": \"\\f192\",\n  \"book-half\": \"\\f193\",\n  \"book\": \"\\f194\",\n  \"bookmark-check-fill\": \"\\f195\",\n  \"bookmark-check\": \"\\f196\",\n  \"bookmark-dash-fill\": \"\\f197\",\n  \"bookmark-dash\": \"\\f198\",\n  \"bookmark-fill\": \"\\f199\",\n  \"bookmark-heart-fill\": \"\\f19a\",\n  \"bookmark-heart\": \"\\f19b\",\n  \"bookmark-plus-fill\": \"\\f19c\",\n  \"bookmark-plus\": \"\\f19d\",\n  \"bookmark-star-fill\": \"\\f19e\",\n  \"bookmark-star\": \"\\f19f\",\n  \"bookmark-x-fill\": \"\\f1a0\",\n  \"bookmark-x\": \"\\f1a1\",\n  \"bookmark\": \"\\f1a2\",\n  \"bookmarks-fill\": \"\\f1a3\",\n  \"bookmarks\": \"\\f1a4\",\n  \"bookshelf\": \"\\f1a5\",\n  \"bootstrap-fill\": \"\\f1a6\",\n  \"bootstrap-reboot\": \"\\f1a7\",\n  \"bootstrap\": \"\\f1a8\",\n  \"border-all\": \"\\f1a9\",\n  \"border-bottom\": \"\\f1aa\",\n  \"border-center\": \"\\f1ab\",\n  \"border-inner\": \"\\f1ac\",\n  \"border-left\": \"\\f1ad\",\n  \"border-middle\": \"\\f1ae\",\n  \"border-outer\": \"\\f1af\",\n  \"border-right\": \"\\f1b0\",\n  \"border-style\": \"\\f1b1\",\n  \"border-top\": \"\\f1b2\",\n  \"border-width\": \"\\f1b3\",\n  \"border\": \"\\f1b4\",\n  \"bounding-box-circles\": \"\\f1b5\",\n  \"bounding-box\": \"\\f1b6\",\n  \"box-arrow-down-left\": \"\\f1b7\",\n  \"box-arrow-down-right\": \"\\f1b8\",\n  \"box-arrow-down\": \"\\f1b9\",\n  \"box-arrow-in-down-left\": \"\\f1ba\",\n  \"box-arrow-in-down-right\": \"\\f1bb\",\n  \"box-arrow-in-down\": \"\\f1bc\",\n  \"box-arrow-in-left\": \"\\f1bd\",\n  \"box-arrow-in-right\": \"\\f1be\",\n  \"box-arrow-in-up-left\": \"\\f1bf\",\n  \"box-arrow-in-up-right\": \"\\f1c0\",\n  \"box-arrow-in-up\": \"\\f1c1\",\n  \"box-arrow-left\": \"\\f1c2\",\n  \"box-arrow-right\": \"\\f1c3\",\n  \"box-arrow-up-left\": \"\\f1c4\",\n  \"box-arrow-up-right\": \"\\f1c5\",\n  \"box-arrow-up\": \"\\f1c6\",\n  \"box-seam\": \"\\f1c7\",\n  \"box\": \"\\f1c8\",\n  \"braces\": \"\\f1c9\",\n  \"bricks\": \"\\f1ca\",\n  \"briefcase-fill\": \"\\f1cb\",\n  \"briefcase\": \"\\f1cc\",\n  \"brightness-alt-high-fill\": \"\\f1cd\",\n  \"brightness-alt-high\": \"\\f1ce\",\n  \"brightness-alt-low-fill\": \"\\f1cf\",\n  \"brightness-alt-low\": \"\\f1d0\",\n  \"brightness-high-fill\": \"\\f1d1\",\n  \"brightness-high\": \"\\f1d2\",\n  \"brightness-low-fill\": \"\\f1d3\",\n  \"brightness-low\": \"\\f1d4\",\n  \"broadcast-pin\": \"\\f1d5\",\n  \"broadcast\": \"\\f1d6\",\n  \"brush-fill\": \"\\f1d7\",\n  \"brush\": \"\\f1d8\",\n  \"bucket-fill\": \"\\f1d9\",\n  \"bucket\": \"\\f1da\",\n  \"bug-fill\": \"\\f1db\",\n  \"bug\": \"\\f1dc\",\n  \"building\": \"\\f1dd\",\n  \"bullseye\": \"\\f1de\",\n  \"calculator-fill\": \"\\f1df\",\n  \"calculator\": \"\\f1e0\",\n  \"calendar-check-fill\": \"\\f1e1\",\n  \"calendar-check\": \"\\f1e2\",\n  \"calendar-date-fill\": \"\\f1e3\",\n  \"calendar-date\": \"\\f1e4\",\n  \"calendar-day-fill\": \"\\f1e5\",\n  \"calendar-day\": \"\\f1e6\",\n  \"calendar-event-fill\": \"\\f1e7\",\n  \"calendar-event\": \"\\f1e8\",\n  \"calendar-fill\": \"\\f1e9\",\n  \"calendar-minus-fill\": \"\\f1ea\",\n  \"calendar-minus\": \"\\f1eb\",\n  \"calendar-month-fill\": \"\\f1ec\",\n  \"calendar-month\": \"\\f1ed\",\n  \"calendar-plus-fill\": \"\\f1ee\",\n  \"calendar-plus\": \"\\f1ef\",\n  \"calendar-range-fill\": \"\\f1f0\",\n  \"calendar-range\": \"\\f1f1\",\n  \"calendar-week-fill\": \"\\f1f2\",\n  \"calendar-week\": \"\\f1f3\",\n  \"calendar-x-fill\": \"\\f1f4\",\n  \"calendar-x\": \"\\f1f5\",\n  \"calendar\": \"\\f1f6\",\n  \"calendar2-check-fill\": \"\\f1f7\",\n  \"calendar2-check\": \"\\f1f8\",\n  \"calendar2-date-fill\": \"\\f1f9\",\n  \"calendar2-date\": \"\\f1fa\",\n  \"calendar2-day-fill\": \"\\f1fb\",\n  \"calendar2-day\": \"\\f1fc\",\n  \"calendar2-event-fill\": \"\\f1fd\",\n  \"calendar2-event\": \"\\f1fe\",\n  \"calendar2-fill\": \"\\f1ff\",\n  \"calendar2-minus-fill\": \"\\f200\",\n  \"calendar2-minus\": \"\\f201\",\n  \"calendar2-month-fill\": \"\\f202\",\n  \"calendar2-month\": \"\\f203\",\n  \"calendar2-plus-fill\": \"\\f204\",\n  \"calendar2-plus\": \"\\f205\",\n  \"calendar2-range-fill\": \"\\f206\",\n  \"calendar2-range\": \"\\f207\",\n  \"calendar2-week-fill\": \"\\f208\",\n  \"calendar2-week\": \"\\f209\",\n  \"calendar2-x-fill\": \"\\f20a\",\n  \"calendar2-x\": \"\\f20b\",\n  \"calendar2\": \"\\f20c\",\n  \"calendar3-event-fill\": \"\\f20d\",\n  \"calendar3-event\": \"\\f20e\",\n  \"calendar3-fill\": \"\\f20f\",\n  \"calendar3-range-fill\": \"\\f210\",\n  \"calendar3-range\": \"\\f211\",\n  \"calendar3-week-fill\": \"\\f212\",\n  \"calendar3-week\": \"\\f213\",\n  \"calendar3\": \"\\f214\",\n  \"calendar4-event\": \"\\f215\",\n  \"calendar4-range\": \"\\f216\",\n  \"calendar4-week\": \"\\f217\",\n  \"calendar4\": \"\\f218\",\n  \"camera-fill\": \"\\f219\",\n  \"camera-reels-fill\": \"\\f21a\",\n  \"camera-reels\": \"\\f21b\",\n  \"camera-video-fill\": \"\\f21c\",\n  \"camera-video-off-fill\": \"\\f21d\",\n  \"camera-video-off\": \"\\f21e\",\n  \"camera-video\": \"\\f21f\",\n  \"camera\": \"\\f220\",\n  \"camera2\": \"\\f221\",\n  \"capslock-fill\": \"\\f222\",\n  \"capslock\": \"\\f223\",\n  \"card-checklist\": \"\\f224\",\n  \"card-heading\": \"\\f225\",\n  \"card-image\": \"\\f226\",\n  \"card-list\": \"\\f227\",\n  \"card-text\": \"\\f228\",\n  \"caret-down-fill\": \"\\f229\",\n  \"caret-down-square-fill\": \"\\f22a\",\n  \"caret-down-square\": \"\\f22b\",\n  \"caret-down\": \"\\f22c\",\n  \"caret-left-fill\": \"\\f22d\",\n  \"caret-left-square-fill\": \"\\f22e\",\n  \"caret-left-square\": \"\\f22f\",\n  \"caret-left\": \"\\f230\",\n  \"caret-right-fill\": \"\\f231\",\n  \"caret-right-square-fill\": \"\\f232\",\n  \"caret-right-square\": \"\\f233\",\n  \"caret-right\": \"\\f234\",\n  \"caret-up-fill\": \"\\f235\",\n  \"caret-up-square-fill\": \"\\f236\",\n  \"caret-up-square\": \"\\f237\",\n  \"caret-up\": \"\\f238\",\n  \"cart-check-fill\": \"\\f239\",\n  \"cart-check\": \"\\f23a\",\n  \"cart-dash-fill\": \"\\f23b\",\n  \"cart-dash\": \"\\f23c\",\n  \"cart-fill\": \"\\f23d\",\n  \"cart-plus-fill\": \"\\f23e\",\n  \"cart-plus\": \"\\f23f\",\n  \"cart-x-fill\": \"\\f240\",\n  \"cart-x\": \"\\f241\",\n  \"cart\": \"\\f242\",\n  \"cart2\": \"\\f243\",\n  \"cart3\": \"\\f244\",\n  \"cart4\": \"\\f245\",\n  \"cash-stack\": \"\\f246\",\n  \"cash\": \"\\f247\",\n  \"cast\": \"\\f248\",\n  \"chat-dots-fill\": \"\\f249\",\n  \"chat-dots\": \"\\f24a\",\n  \"chat-fill\": \"\\f24b\",\n  \"chat-left-dots-fill\": \"\\f24c\",\n  \"chat-left-dots\": \"\\f24d\",\n  \"chat-left-fill\": \"\\f24e\",\n  \"chat-left-quote-fill\": \"\\f24f\",\n  \"chat-left-quote\": \"\\f250\",\n  \"chat-left-text-fill\": \"\\f251\",\n  \"chat-left-text\": \"\\f252\",\n  \"chat-left\": \"\\f253\",\n  \"chat-quote-fill\": \"\\f254\",\n  \"chat-quote\": \"\\f255\",\n  \"chat-right-dots-fill\": \"\\f256\",\n  \"chat-right-dots\": \"\\f257\",\n  \"chat-right-fill\": \"\\f258\",\n  \"chat-right-quote-fill\": \"\\f259\",\n  \"chat-right-quote\": \"\\f25a\",\n  \"chat-right-text-fill\": \"\\f25b\",\n  \"chat-right-text\": \"\\f25c\",\n  \"chat-right\": \"\\f25d\",\n  \"chat-square-dots-fill\": \"\\f25e\",\n  \"chat-square-dots\": \"\\f25f\",\n  \"chat-square-fill\": \"\\f260\",\n  \"chat-square-quote-fill\": \"\\f261\",\n  \"chat-square-quote\": \"\\f262\",\n  \"chat-square-text-fill\": \"\\f263\",\n  \"chat-square-text\": \"\\f264\",\n  \"chat-square\": \"\\f265\",\n  \"chat-text-fill\": \"\\f266\",\n  \"chat-text\": \"\\f267\",\n  \"chat\": \"\\f268\",\n  \"check-all\": \"\\f269\",\n  \"check-circle-fill\": \"\\f26a\",\n  \"check-circle\": \"\\f26b\",\n  \"check-square-fill\": \"\\f26c\",\n  \"check-square\": \"\\f26d\",\n  \"check\": \"\\f26e\",\n  \"check2-all\": \"\\f26f\",\n  \"check2-circle\": \"\\f270\",\n  \"check2-square\": \"\\f271\",\n  \"check2\": \"\\f272\",\n  \"chevron-bar-contract\": \"\\f273\",\n  \"chevron-bar-down\": \"\\f274\",\n  \"chevron-bar-expand\": \"\\f275\",\n  \"chevron-bar-left\": \"\\f276\",\n  \"chevron-bar-right\": \"\\f277\",\n  \"chevron-bar-up\": \"\\f278\",\n  \"chevron-compact-down\": \"\\f279\",\n  \"chevron-compact-left\": \"\\f27a\",\n  \"chevron-compact-right\": \"\\f27b\",\n  \"chevron-compact-up\": \"\\f27c\",\n  \"chevron-contract\": \"\\f27d\",\n  \"chevron-double-down\": \"\\f27e\",\n  \"chevron-double-left\": \"\\f27f\",\n  \"chevron-double-right\": \"\\f280\",\n  \"chevron-double-up\": \"\\f281\",\n  \"chevron-down\": \"\\f282\",\n  \"chevron-expand\": \"\\f283\",\n  \"chevron-left\": \"\\f284\",\n  \"chevron-right\": \"\\f285\",\n  \"chevron-up\": \"\\f286\",\n  \"circle-fill\": \"\\f287\",\n  \"circle-half\": \"\\f288\",\n  \"circle-square\": \"\\f289\",\n  \"circle\": \"\\f28a\",\n  \"clipboard-check\": \"\\f28b\",\n  \"clipboard-data\": \"\\f28c\",\n  \"clipboard-minus\": \"\\f28d\",\n  \"clipboard-plus\": \"\\f28e\",\n  \"clipboard-x\": \"\\f28f\",\n  \"clipboard\": \"\\f290\",\n  \"clock-fill\": \"\\f291\",\n  \"clock-history\": \"\\f292\",\n  \"clock\": \"\\f293\",\n  \"cloud-arrow-down-fill\": \"\\f294\",\n  \"cloud-arrow-down\": \"\\f295\",\n  \"cloud-arrow-up-fill\": \"\\f296\",\n  \"cloud-arrow-up\": \"\\f297\",\n  \"cloud-check-fill\": \"\\f298\",\n  \"cloud-check\": \"\\f299\",\n  \"cloud-download-fill\": \"\\f29a\",\n  \"cloud-download\": \"\\f29b\",\n  \"cloud-drizzle-fill\": \"\\f29c\",\n  \"cloud-drizzle\": \"\\f29d\",\n  \"cloud-fill\": \"\\f29e\",\n  \"cloud-fog-fill\": \"\\f29f\",\n  \"cloud-fog\": \"\\f2a0\",\n  \"cloud-fog2-fill\": \"\\f2a1\",\n  \"cloud-fog2\": \"\\f2a2\",\n  \"cloud-hail-fill\": \"\\f2a3\",\n  \"cloud-hail\": \"\\f2a4\",\n  \"cloud-haze-fill\": \"\\f2a6\",\n  \"cloud-haze\": \"\\f2a7\",\n  \"cloud-haze2-fill\": \"\\f2a8\",\n  \"cloud-lightning-fill\": \"\\f2a9\",\n  \"cloud-lightning-rain-fill\": \"\\f2aa\",\n  \"cloud-lightning-rain\": \"\\f2ab\",\n  \"cloud-lightning\": \"\\f2ac\",\n  \"cloud-minus-fill\": \"\\f2ad\",\n  \"cloud-minus\": \"\\f2ae\",\n  \"cloud-moon-fill\": \"\\f2af\",\n  \"cloud-moon\": \"\\f2b0\",\n  \"cloud-plus-fill\": \"\\f2b1\",\n  \"cloud-plus\": \"\\f2b2\",\n  \"cloud-rain-fill\": \"\\f2b3\",\n  \"cloud-rain-heavy-fill\": \"\\f2b4\",\n  \"cloud-rain-heavy\": \"\\f2b5\",\n  \"cloud-rain\": \"\\f2b6\",\n  \"cloud-slash-fill\": \"\\f2b7\",\n  \"cloud-slash\": \"\\f2b8\",\n  \"cloud-sleet-fill\": \"\\f2b9\",\n  \"cloud-sleet\": \"\\f2ba\",\n  \"cloud-snow-fill\": \"\\f2bb\",\n  \"cloud-snow\": \"\\f2bc\",\n  \"cloud-sun-fill\": \"\\f2bd\",\n  \"cloud-sun\": \"\\f2be\",\n  \"cloud-upload-fill\": \"\\f2bf\",\n  \"cloud-upload\": \"\\f2c0\",\n  \"cloud\": \"\\f2c1\",\n  \"clouds-fill\": \"\\f2c2\",\n  \"clouds\": \"\\f2c3\",\n  \"cloudy-fill\": \"\\f2c4\",\n  \"cloudy\": \"\\f2c5\",\n  \"code-slash\": \"\\f2c6\",\n  \"code-square\": \"\\f2c7\",\n  \"code\": \"\\f2c8\",\n  \"collection-fill\": \"\\f2c9\",\n  \"collection-play-fill\": \"\\f2ca\",\n  \"collection-play\": \"\\f2cb\",\n  \"collection\": \"\\f2cc\",\n  \"columns-gap\": \"\\f2cd\",\n  \"columns\": \"\\f2ce\",\n  \"command\": \"\\f2cf\",\n  \"compass-fill\": \"\\f2d0\",\n  \"compass\": \"\\f2d1\",\n  \"cone-striped\": \"\\f2d2\",\n  \"cone\": \"\\f2d3\",\n  \"controller\": \"\\f2d4\",\n  \"cpu-fill\": \"\\f2d5\",\n  \"cpu\": \"\\f2d6\",\n  \"credit-card-2-back-fill\": \"\\f2d7\",\n  \"credit-card-2-back\": \"\\f2d8\",\n  \"credit-card-2-front-fill\": \"\\f2d9\",\n  \"credit-card-2-front\": \"\\f2da\",\n  \"credit-card-fill\": \"\\f2db\",\n  \"credit-card\": \"\\f2dc\",\n  \"crop\": \"\\f2dd\",\n  \"cup-fill\": \"\\f2de\",\n  \"cup-straw\": \"\\f2df\",\n  \"cup\": \"\\f2e0\",\n  \"cursor-fill\": \"\\f2e1\",\n  \"cursor-text\": \"\\f2e2\",\n  \"cursor\": \"\\f2e3\",\n  \"dash-circle-dotted\": \"\\f2e4\",\n  \"dash-circle-fill\": \"\\f2e5\",\n  \"dash-circle\": \"\\f2e6\",\n  \"dash-square-dotted\": \"\\f2e7\",\n  \"dash-square-fill\": \"\\f2e8\",\n  \"dash-square\": \"\\f2e9\",\n  \"dash\": \"\\f2ea\",\n  \"diagram-2-fill\": \"\\f2eb\",\n  \"diagram-2\": \"\\f2ec\",\n  \"diagram-3-fill\": \"\\f2ed\",\n  \"diagram-3\": \"\\f2ee\",\n  \"diamond-fill\": \"\\f2ef\",\n  \"diamond-half\": \"\\f2f0\",\n  \"diamond\": \"\\f2f1\",\n  \"dice-1-fill\": \"\\f2f2\",\n  \"dice-1\": \"\\f2f3\",\n  \"dice-2-fill\": \"\\f2f4\",\n  \"dice-2\": \"\\f2f5\",\n  \"dice-3-fill\": \"\\f2f6\",\n  \"dice-3\": \"\\f2f7\",\n  \"dice-4-fill\": \"\\f2f8\",\n  \"dice-4\": \"\\f2f9\",\n  \"dice-5-fill\": \"\\f2fa\",\n  \"dice-5\": \"\\f2fb\",\n  \"dice-6-fill\": \"\\f2fc\",\n  \"dice-6\": \"\\f2fd\",\n  \"disc-fill\": \"\\f2fe\",\n  \"disc\": \"\\f2ff\",\n  \"discord\": \"\\f300\",\n  \"display-fill\": \"\\f301\",\n  \"display\": \"\\f302\",\n  \"distribute-horizontal\": \"\\f303\",\n  \"distribute-vertical\": \"\\f304\",\n  \"door-closed-fill\": \"\\f305\",\n  \"door-closed\": \"\\f306\",\n  \"door-open-fill\": \"\\f307\",\n  \"door-open\": \"\\f308\",\n  \"dot\": \"\\f309\",\n  \"download\": \"\\f30a\",\n  \"droplet-fill\": \"\\f30b\",\n  \"droplet-half\": \"\\f30c\",\n  \"droplet\": \"\\f30d\",\n  \"earbuds\": \"\\f30e\",\n  \"easel-fill\": \"\\f30f\",\n  \"easel\": \"\\f310\",\n  \"egg-fill\": \"\\f311\",\n  \"egg-fried\": \"\\f312\",\n  \"egg\": \"\\f313\",\n  \"eject-fill\": \"\\f314\",\n  \"eject\": \"\\f315\",\n  \"emoji-angry-fill\": \"\\f316\",\n  \"emoji-angry\": \"\\f317\",\n  \"emoji-dizzy-fill\": \"\\f318\",\n  \"emoji-dizzy\": \"\\f319\",\n  \"emoji-expressionless-fill\": \"\\f31a\",\n  \"emoji-expressionless\": \"\\f31b\",\n  \"emoji-frown-fill\": \"\\f31c\",\n  \"emoji-frown\": \"\\f31d\",\n  \"emoji-heart-eyes-fill\": \"\\f31e\",\n  \"emoji-heart-eyes\": \"\\f31f\",\n  \"emoji-laughing-fill\": \"\\f320\",\n  \"emoji-laughing\": \"\\f321\",\n  \"emoji-neutral-fill\": \"\\f322\",\n  \"emoji-neutral\": \"\\f323\",\n  \"emoji-smile-fill\": \"\\f324\",\n  \"emoji-smile-upside-down-fill\": \"\\f325\",\n  \"emoji-smile-upside-down\": \"\\f326\",\n  \"emoji-smile\": \"\\f327\",\n  \"emoji-sunglasses-fill\": \"\\f328\",\n  \"emoji-sunglasses\": \"\\f329\",\n  \"emoji-wink-fill\": \"\\f32a\",\n  \"emoji-wink\": \"\\f32b\",\n  \"envelope-fill\": \"\\f32c\",\n  \"envelope-open-fill\": \"\\f32d\",\n  \"envelope-open\": \"\\f32e\",\n  \"envelope\": \"\\f32f\",\n  \"eraser-fill\": \"\\f330\",\n  \"eraser\": \"\\f331\",\n  \"exclamation-circle-fill\": \"\\f332\",\n  \"exclamation-circle\": \"\\f333\",\n  \"exclamation-diamond-fill\": \"\\f334\",\n  \"exclamation-diamond\": \"\\f335\",\n  \"exclamation-octagon-fill\": \"\\f336\",\n  \"exclamation-octagon\": \"\\f337\",\n  \"exclamation-square-fill\": \"\\f338\",\n  \"exclamation-square\": \"\\f339\",\n  \"exclamation-triangle-fill\": \"\\f33a\",\n  \"exclamation-triangle\": \"\\f33b\",\n  \"exclamation\": \"\\f33c\",\n  \"exclude\": \"\\f33d\",\n  \"eye-fill\": \"\\f33e\",\n  \"eye-slash-fill\": \"\\f33f\",\n  \"eye-slash\": \"\\f340\",\n  \"eye\": \"\\f341\",\n  \"eyedropper\": \"\\f342\",\n  \"eyeglasses\": \"\\f343\",\n  \"facebook\": \"\\f344\",\n  \"file-arrow-down-fill\": \"\\f345\",\n  \"file-arrow-down\": \"\\f346\",\n  \"file-arrow-up-fill\": \"\\f347\",\n  \"file-arrow-up\": \"\\f348\",\n  \"file-bar-graph-fill\": \"\\f349\",\n  \"file-bar-graph\": \"\\f34a\",\n  \"file-binary-fill\": \"\\f34b\",\n  \"file-binary\": \"\\f34c\",\n  \"file-break-fill\": \"\\f34d\",\n  \"file-break\": \"\\f34e\",\n  \"file-check-fill\": \"\\f34f\",\n  \"file-check\": \"\\f350\",\n  \"file-code-fill\": \"\\f351\",\n  \"file-code\": \"\\f352\",\n  \"file-diff-fill\": \"\\f353\",\n  \"file-diff\": \"\\f354\",\n  \"file-earmark-arrow-down-fill\": \"\\f355\",\n  \"file-earmark-arrow-down\": \"\\f356\",\n  \"file-earmark-arrow-up-fill\": \"\\f357\",\n  \"file-earmark-arrow-up\": \"\\f358\",\n  \"file-earmark-bar-graph-fill\": \"\\f359\",\n  \"file-earmark-bar-graph\": \"\\f35a\",\n  \"file-earmark-binary-fill\": \"\\f35b\",\n  \"file-earmark-binary\": \"\\f35c\",\n  \"file-earmark-break-fill\": \"\\f35d\",\n  \"file-earmark-break\": \"\\f35e\",\n  \"file-earmark-check-fill\": \"\\f35f\",\n  \"file-earmark-check\": \"\\f360\",\n  \"file-earmark-code-fill\": \"\\f361\",\n  \"file-earmark-code\": \"\\f362\",\n  \"file-earmark-diff-fill\": \"\\f363\",\n  \"file-earmark-diff\": \"\\f364\",\n  \"file-earmark-easel-fill\": \"\\f365\",\n  \"file-earmark-easel\": \"\\f366\",\n  \"file-earmark-excel-fill\": \"\\f367\",\n  \"file-earmark-excel\": \"\\f368\",\n  \"file-earmark-fill\": \"\\f369\",\n  \"file-earmark-font-fill\": \"\\f36a\",\n  \"file-earmark-font\": \"\\f36b\",\n  \"file-earmark-image-fill\": \"\\f36c\",\n  \"file-earmark-image\": \"\\f36d\",\n  \"file-earmark-lock-fill\": \"\\f36e\",\n  \"file-earmark-lock\": \"\\f36f\",\n  \"file-earmark-lock2-fill\": \"\\f370\",\n  \"file-earmark-lock2\": \"\\f371\",\n  \"file-earmark-medical-fill\": \"\\f372\",\n  \"file-earmark-medical\": \"\\f373\",\n  \"file-earmark-minus-fill\": \"\\f374\",\n  \"file-earmark-minus\": \"\\f375\",\n  \"file-earmark-music-fill\": \"\\f376\",\n  \"file-earmark-music\": \"\\f377\",\n  \"file-earmark-person-fill\": \"\\f378\",\n  \"file-earmark-person\": \"\\f379\",\n  \"file-earmark-play-fill\": \"\\f37a\",\n  \"file-earmark-play\": \"\\f37b\",\n  \"file-earmark-plus-fill\": \"\\f37c\",\n  \"file-earmark-plus\": \"\\f37d\",\n  \"file-earmark-post-fill\": \"\\f37e\",\n  \"file-earmark-post\": \"\\f37f\",\n  \"file-earmark-ppt-fill\": \"\\f380\",\n  \"file-earmark-ppt\": \"\\f381\",\n  \"file-earmark-richtext-fill\": \"\\f382\",\n  \"file-earmark-richtext\": \"\\f383\",\n  \"file-earmark-ruled-fill\": \"\\f384\",\n  \"file-earmark-ruled\": \"\\f385\",\n  \"file-earmark-slides-fill\": \"\\f386\",\n  \"file-earmark-slides\": \"\\f387\",\n  \"file-earmark-spreadsheet-fill\": \"\\f388\",\n  \"file-earmark-spreadsheet\": \"\\f389\",\n  \"file-earmark-text-fill\": \"\\f38a\",\n  \"file-earmark-text\": \"\\f38b\",\n  \"file-earmark-word-fill\": \"\\f38c\",\n  \"file-earmark-word\": \"\\f38d\",\n  \"file-earmark-x-fill\": \"\\f38e\",\n  \"file-earmark-x\": \"\\f38f\",\n  \"file-earmark-zip-fill\": \"\\f390\",\n  \"file-earmark-zip\": \"\\f391\",\n  \"file-earmark\": \"\\f392\",\n  \"file-easel-fill\": \"\\f393\",\n  \"file-easel\": \"\\f394\",\n  \"file-excel-fill\": \"\\f395\",\n  \"file-excel\": \"\\f396\",\n  \"file-fill\": \"\\f397\",\n  \"file-font-fill\": \"\\f398\",\n  \"file-font\": \"\\f399\",\n  \"file-image-fill\": \"\\f39a\",\n  \"file-image\": \"\\f39b\",\n  \"file-lock-fill\": \"\\f39c\",\n  \"file-lock\": \"\\f39d\",\n  \"file-lock2-fill\": \"\\f39e\",\n  \"file-lock2\": \"\\f39f\",\n  \"file-medical-fill\": \"\\f3a0\",\n  \"file-medical\": \"\\f3a1\",\n  \"file-minus-fill\": \"\\f3a2\",\n  \"file-minus\": \"\\f3a3\",\n  \"file-music-fill\": \"\\f3a4\",\n  \"file-music\": \"\\f3a5\",\n  \"file-person-fill\": \"\\f3a6\",\n  \"file-person\": \"\\f3a7\",\n  \"file-play-fill\": \"\\f3a8\",\n  \"file-play\": \"\\f3a9\",\n  \"file-plus-fill\": \"\\f3aa\",\n  \"file-plus\": \"\\f3ab\",\n  \"file-post-fill\": \"\\f3ac\",\n  \"file-post\": \"\\f3ad\",\n  \"file-ppt-fill\": \"\\f3ae\",\n  \"file-ppt\": \"\\f3af\",\n  \"file-richtext-fill\": \"\\f3b0\",\n  \"file-richtext\": \"\\f3b1\",\n  \"file-ruled-fill\": \"\\f3b2\",\n  \"file-ruled\": \"\\f3b3\",\n  \"file-slides-fill\": \"\\f3b4\",\n  \"file-slides\": \"\\f3b5\",\n  \"file-spreadsheet-fill\": \"\\f3b6\",\n  \"file-spreadsheet\": \"\\f3b7\",\n  \"file-text-fill\": \"\\f3b8\",\n  \"file-text\": \"\\f3b9\",\n  \"file-word-fill\": \"\\f3ba\",\n  \"file-word\": \"\\f3bb\",\n  \"file-x-fill\": \"\\f3bc\",\n  \"file-x\": \"\\f3bd\",\n  \"file-zip-fill\": \"\\f3be\",\n  \"file-zip\": \"\\f3bf\",\n  \"file\": \"\\f3c0\",\n  \"files-alt\": \"\\f3c1\",\n  \"files\": \"\\f3c2\",\n  \"film\": \"\\f3c3\",\n  \"filter-circle-fill\": \"\\f3c4\",\n  \"filter-circle\": \"\\f3c5\",\n  \"filter-left\": \"\\f3c6\",\n  \"filter-right\": \"\\f3c7\",\n  \"filter-square-fill\": \"\\f3c8\",\n  \"filter-square\": \"\\f3c9\",\n  \"filter\": \"\\f3ca\",\n  \"flag-fill\": \"\\f3cb\",\n  \"flag\": \"\\f3cc\",\n  \"flower1\": \"\\f3cd\",\n  \"flower2\": \"\\f3ce\",\n  \"flower3\": \"\\f3cf\",\n  \"folder-check\": \"\\f3d0\",\n  \"folder-fill\": \"\\f3d1\",\n  \"folder-minus\": \"\\f3d2\",\n  \"folder-plus\": \"\\f3d3\",\n  \"folder-symlink-fill\": \"\\f3d4\",\n  \"folder-symlink\": \"\\f3d5\",\n  \"folder-x\": \"\\f3d6\",\n  \"folder\": \"\\f3d7\",\n  \"folder2-open\": \"\\f3d8\",\n  \"folder2\": \"\\f3d9\",\n  \"fonts\": \"\\f3da\",\n  \"forward-fill\": \"\\f3db\",\n  \"forward\": \"\\f3dc\",\n  \"front\": \"\\f3dd\",\n  \"fullscreen-exit\": \"\\f3de\",\n  \"fullscreen\": \"\\f3df\",\n  \"funnel-fill\": \"\\f3e0\",\n  \"funnel\": \"\\f3e1\",\n  \"gear-fill\": \"\\f3e2\",\n  \"gear-wide-connected\": \"\\f3e3\",\n  \"gear-wide\": \"\\f3e4\",\n  \"gear\": \"\\f3e5\",\n  \"gem\": \"\\f3e6\",\n  \"geo-alt-fill\": \"\\f3e7\",\n  \"geo-alt\": \"\\f3e8\",\n  \"geo-fill\": \"\\f3e9\",\n  \"geo\": \"\\f3ea\",\n  \"gift-fill\": \"\\f3eb\",\n  \"gift\": \"\\f3ec\",\n  \"github\": \"\\f3ed\",\n  \"globe\": \"\\f3ee\",\n  \"globe2\": \"\\f3ef\",\n  \"google\": \"\\f3f0\",\n  \"graph-down\": \"\\f3f1\",\n  \"graph-up\": \"\\f3f2\",\n  \"grid-1x2-fill\": \"\\f3f3\",\n  \"grid-1x2\": \"\\f3f4\",\n  \"grid-3x2-gap-fill\": \"\\f3f5\",\n  \"grid-3x2-gap\": \"\\f3f6\",\n  \"grid-3x2\": \"\\f3f7\",\n  \"grid-3x3-gap-fill\": \"\\f3f8\",\n  \"grid-3x3-gap\": \"\\f3f9\",\n  \"grid-3x3\": \"\\f3fa\",\n  \"grid-fill\": \"\\f3fb\",\n  \"grid\": \"\\f3fc\",\n  \"grip-horizontal\": \"\\f3fd\",\n  \"grip-vertical\": \"\\f3fe\",\n  \"hammer\": \"\\f3ff\",\n  \"hand-index-fill\": \"\\f400\",\n  \"hand-index-thumb-fill\": \"\\f401\",\n  \"hand-index-thumb\": \"\\f402\",\n  \"hand-index\": \"\\f403\",\n  \"hand-thumbs-down-fill\": \"\\f404\",\n  \"hand-thumbs-down\": \"\\f405\",\n  \"hand-thumbs-up-fill\": \"\\f406\",\n  \"hand-thumbs-up\": \"\\f407\",\n  \"handbag-fill\": \"\\f408\",\n  \"handbag\": \"\\f409\",\n  \"hash\": \"\\f40a\",\n  \"hdd-fill\": \"\\f40b\",\n  \"hdd-network-fill\": \"\\f40c\",\n  \"hdd-network\": \"\\f40d\",\n  \"hdd-rack-fill\": \"\\f40e\",\n  \"hdd-rack\": \"\\f40f\",\n  \"hdd-stack-fill\": \"\\f410\",\n  \"hdd-stack\": \"\\f411\",\n  \"hdd\": \"\\f412\",\n  \"headphones\": \"\\f413\",\n  \"headset\": \"\\f414\",\n  \"heart-fill\": \"\\f415\",\n  \"heart-half\": \"\\f416\",\n  \"heart\": \"\\f417\",\n  \"heptagon-fill\": \"\\f418\",\n  \"heptagon-half\": \"\\f419\",\n  \"heptagon\": \"\\f41a\",\n  \"hexagon-fill\": \"\\f41b\",\n  \"hexagon-half\": \"\\f41c\",\n  \"hexagon\": \"\\f41d\",\n  \"hourglass-bottom\": \"\\f41e\",\n  \"hourglass-split\": \"\\f41f\",\n  \"hourglass-top\": \"\\f420\",\n  \"hourglass\": \"\\f421\",\n  \"house-door-fill\": \"\\f422\",\n  \"house-door\": \"\\f423\",\n  \"house-fill\": \"\\f424\",\n  \"house\": \"\\f425\",\n  \"hr\": \"\\f426\",\n  \"hurricane\": \"\\f427\",\n  \"image-alt\": \"\\f428\",\n  \"image-fill\": \"\\f429\",\n  \"image\": \"\\f42a\",\n  \"images\": \"\\f42b\",\n  \"inbox-fill\": \"\\f42c\",\n  \"inbox\": \"\\f42d\",\n  \"inboxes-fill\": \"\\f42e\",\n  \"inboxes\": \"\\f42f\",\n  \"info-circle-fill\": \"\\f430\",\n  \"info-circle\": \"\\f431\",\n  \"info-square-fill\": \"\\f432\",\n  \"info-square\": \"\\f433\",\n  \"info\": \"\\f434\",\n  \"input-cursor-text\": \"\\f435\",\n  \"input-cursor\": \"\\f436\",\n  \"instagram\": \"\\f437\",\n  \"intersect\": \"\\f438\",\n  \"journal-album\": \"\\f439\",\n  \"journal-arrow-down\": \"\\f43a\",\n  \"journal-arrow-up\": \"\\f43b\",\n  \"journal-bookmark-fill\": \"\\f43c\",\n  \"journal-bookmark\": \"\\f43d\",\n  \"journal-check\": \"\\f43e\",\n  \"journal-code\": \"\\f43f\",\n  \"journal-medical\": \"\\f440\",\n  \"journal-minus\": \"\\f441\",\n  \"journal-plus\": \"\\f442\",\n  \"journal-richtext\": \"\\f443\",\n  \"journal-text\": \"\\f444\",\n  \"journal-x\": \"\\f445\",\n  \"journal\": \"\\f446\",\n  \"journals\": \"\\f447\",\n  \"joystick\": \"\\f448\",\n  \"justify-left\": \"\\f449\",\n  \"justify-right\": \"\\f44a\",\n  \"justify\": \"\\f44b\",\n  \"kanban-fill\": \"\\f44c\",\n  \"kanban\": \"\\f44d\",\n  \"key-fill\": \"\\f44e\",\n  \"key\": \"\\f44f\",\n  \"keyboard-fill\": \"\\f450\",\n  \"keyboard\": \"\\f451\",\n  \"ladder\": \"\\f452\",\n  \"lamp-fill\": \"\\f453\",\n  \"lamp\": \"\\f454\",\n  \"laptop-fill\": \"\\f455\",\n  \"laptop\": \"\\f456\",\n  \"layer-backward\": \"\\f457\",\n  \"layer-forward\": \"\\f458\",\n  \"layers-fill\": \"\\f459\",\n  \"layers-half\": \"\\f45a\",\n  \"layers\": \"\\f45b\",\n  \"layout-sidebar-inset-reverse\": \"\\f45c\",\n  \"layout-sidebar-inset\": \"\\f45d\",\n  \"layout-sidebar-reverse\": \"\\f45e\",\n  \"layout-sidebar\": \"\\f45f\",\n  \"layout-split\": \"\\f460\",\n  \"layout-text-sidebar-reverse\": \"\\f461\",\n  \"layout-text-sidebar\": \"\\f462\",\n  \"layout-text-window-reverse\": \"\\f463\",\n  \"layout-text-window\": \"\\f464\",\n  \"layout-three-columns\": \"\\f465\",\n  \"layout-wtf\": \"\\f466\",\n  \"life-preserver\": \"\\f467\",\n  \"lightbulb-fill\": \"\\f468\",\n  \"lightbulb-off-fill\": \"\\f469\",\n  \"lightbulb-off\": \"\\f46a\",\n  \"lightbulb\": \"\\f46b\",\n  \"lightning-charge-fill\": \"\\f46c\",\n  \"lightning-charge\": \"\\f46d\",\n  \"lightning-fill\": \"\\f46e\",\n  \"lightning\": \"\\f46f\",\n  \"link-45deg\": \"\\f470\",\n  \"link\": \"\\f471\",\n  \"linkedin\": \"\\f472\",\n  \"list-check\": \"\\f473\",\n  \"list-nested\": \"\\f474\",\n  \"list-ol\": \"\\f475\",\n  \"list-stars\": \"\\f476\",\n  \"list-task\": \"\\f477\",\n  \"list-ul\": \"\\f478\",\n  \"list\": \"\\f479\",\n  \"lock-fill\": \"\\f47a\",\n  \"lock\": \"\\f47b\",\n  \"mailbox\": \"\\f47c\",\n  \"mailbox2\": \"\\f47d\",\n  \"map-fill\": \"\\f47e\",\n  \"map\": \"\\f47f\",\n  \"markdown-fill\": \"\\f480\",\n  \"markdown\": \"\\f481\",\n  \"mask\": \"\\f482\",\n  \"megaphone-fill\": \"\\f483\",\n  \"megaphone\": \"\\f484\",\n  \"menu-app-fill\": \"\\f485\",\n  \"menu-app\": \"\\f486\",\n  \"menu-button-fill\": \"\\f487\",\n  \"menu-button-wide-fill\": \"\\f488\",\n  \"menu-button-wide\": \"\\f489\",\n  \"menu-button\": \"\\f48a\",\n  \"menu-down\": \"\\f48b\",\n  \"menu-up\": \"\\f48c\",\n  \"mic-fill\": \"\\f48d\",\n  \"mic-mute-fill\": \"\\f48e\",\n  \"mic-mute\": \"\\f48f\",\n  \"mic\": \"\\f490\",\n  \"minecart-loaded\": \"\\f491\",\n  \"minecart\": \"\\f492\",\n  \"moisture\": \"\\f493\",\n  \"moon-fill\": \"\\f494\",\n  \"moon-stars-fill\": \"\\f495\",\n  \"moon-stars\": \"\\f496\",\n  \"moon\": \"\\f497\",\n  \"mouse-fill\": \"\\f498\",\n  \"mouse\": \"\\f499\",\n  \"mouse2-fill\": \"\\f49a\",\n  \"mouse2\": \"\\f49b\",\n  \"mouse3-fill\": \"\\f49c\",\n  \"mouse3\": \"\\f49d\",\n  \"music-note-beamed\": \"\\f49e\",\n  \"music-note-list\": \"\\f49f\",\n  \"music-note\": \"\\f4a0\",\n  \"music-player-fill\": \"\\f4a1\",\n  \"music-player\": \"\\f4a2\",\n  \"newspaper\": \"\\f4a3\",\n  \"node-minus-fill\": \"\\f4a4\",\n  \"node-minus\": \"\\f4a5\",\n  \"node-plus-fill\": \"\\f4a6\",\n  \"node-plus\": \"\\f4a7\",\n  \"nut-fill\": \"\\f4a8\",\n  \"nut\": \"\\f4a9\",\n  \"octagon-fill\": \"\\f4aa\",\n  \"octagon-half\": \"\\f4ab\",\n  \"octagon\": \"\\f4ac\",\n  \"option\": \"\\f4ad\",\n  \"outlet\": \"\\f4ae\",\n  \"paint-bucket\": \"\\f4af\",\n  \"palette-fill\": \"\\f4b0\",\n  \"palette\": \"\\f4b1\",\n  \"palette2\": \"\\f4b2\",\n  \"paperclip\": \"\\f4b3\",\n  \"paragraph\": \"\\f4b4\",\n  \"patch-check-fill\": \"\\f4b5\",\n  \"patch-check\": \"\\f4b6\",\n  \"patch-exclamation-fill\": \"\\f4b7\",\n  \"patch-exclamation\": \"\\f4b8\",\n  \"patch-minus-fill\": \"\\f4b9\",\n  \"patch-minus\": \"\\f4ba\",\n  \"patch-plus-fill\": \"\\f4bb\",\n  \"patch-plus\": \"\\f4bc\",\n  \"patch-question-fill\": \"\\f4bd\",\n  \"patch-question\": \"\\f4be\",\n  \"pause-btn-fill\": \"\\f4bf\",\n  \"pause-btn\": \"\\f4c0\",\n  \"pause-circle-fill\": \"\\f4c1\",\n  \"pause-circle\": \"\\f4c2\",\n  \"pause-fill\": \"\\f4c3\",\n  \"pause\": \"\\f4c4\",\n  \"peace-fill\": \"\\f4c5\",\n  \"peace\": \"\\f4c6\",\n  \"pen-fill\": \"\\f4c7\",\n  \"pen\": \"\\f4c8\",\n  \"pencil-fill\": \"\\f4c9\",\n  \"pencil-square\": \"\\f4ca\",\n  \"pencil\": \"\\f4cb\",\n  \"pentagon-fill\": \"\\f4cc\",\n  \"pentagon-half\": \"\\f4cd\",\n  \"pentagon\": \"\\f4ce\",\n  \"people-fill\": \"\\f4cf\",\n  \"people\": \"\\f4d0\",\n  \"percent\": \"\\f4d1\",\n  \"person-badge-fill\": \"\\f4d2\",\n  \"person-badge\": \"\\f4d3\",\n  \"person-bounding-box\": \"\\f4d4\",\n  \"person-check-fill\": \"\\f4d5\",\n  \"person-check\": \"\\f4d6\",\n  \"person-circle\": \"\\f4d7\",\n  \"person-dash-fill\": \"\\f4d8\",\n  \"person-dash\": \"\\f4d9\",\n  \"person-fill\": \"\\f4da\",\n  \"person-lines-fill\": \"\\f4db\",\n  \"person-plus-fill\": \"\\f4dc\",\n  \"person-plus\": \"\\f4dd\",\n  \"person-square\": \"\\f4de\",\n  \"person-x-fill\": \"\\f4df\",\n  \"person-x\": \"\\f4e0\",\n  \"person\": \"\\f4e1\",\n  \"phone-fill\": \"\\f4e2\",\n  \"phone-landscape-fill\": \"\\f4e3\",\n  \"phone-landscape\": \"\\f4e4\",\n  \"phone-vibrate-fill\": \"\\f4e5\",\n  \"phone-vibrate\": \"\\f4e6\",\n  \"phone\": \"\\f4e7\",\n  \"pie-chart-fill\": \"\\f4e8\",\n  \"pie-chart\": \"\\f4e9\",\n  \"pin-angle-fill\": \"\\f4ea\",\n  \"pin-angle\": \"\\f4eb\",\n  \"pin-fill\": \"\\f4ec\",\n  \"pin\": \"\\f4ed\",\n  \"pip-fill\": \"\\f4ee\",\n  \"pip\": \"\\f4ef\",\n  \"play-btn-fill\": \"\\f4f0\",\n  \"play-btn\": \"\\f4f1\",\n  \"play-circle-fill\": \"\\f4f2\",\n  \"play-circle\": \"\\f4f3\",\n  \"play-fill\": \"\\f4f4\",\n  \"play\": \"\\f4f5\",\n  \"plug-fill\": \"\\f4f6\",\n  \"plug\": \"\\f4f7\",\n  \"plus-circle-dotted\": \"\\f4f8\",\n  \"plus-circle-fill\": \"\\f4f9\",\n  \"plus-circle\": \"\\f4fa\",\n  \"plus-square-dotted\": \"\\f4fb\",\n  \"plus-square-fill\": \"\\f4fc\",\n  \"plus-square\": \"\\f4fd\",\n  \"plus\": \"\\f4fe\",\n  \"power\": \"\\f4ff\",\n  \"printer-fill\": \"\\f500\",\n  \"printer\": \"\\f501\",\n  \"puzzle-fill\": \"\\f502\",\n  \"puzzle\": \"\\f503\",\n  \"question-circle-fill\": \"\\f504\",\n  \"question-circle\": \"\\f505\",\n  \"question-diamond-fill\": \"\\f506\",\n  \"question-diamond\": \"\\f507\",\n  \"question-octagon-fill\": \"\\f508\",\n  \"question-octagon\": \"\\f509\",\n  \"question-square-fill\": \"\\f50a\",\n  \"question-square\": \"\\f50b\",\n  \"question\": \"\\f50c\",\n  \"rainbow\": \"\\f50d\",\n  \"receipt-cutoff\": \"\\f50e\",\n  \"receipt\": \"\\f50f\",\n  \"reception-0\": \"\\f510\",\n  \"reception-1\": \"\\f511\",\n  \"reception-2\": \"\\f512\",\n  \"reception-3\": \"\\f513\",\n  \"reception-4\": \"\\f514\",\n  \"record-btn-fill\": \"\\f515\",\n  \"record-btn\": \"\\f516\",\n  \"record-circle-fill\": \"\\f517\",\n  \"record-circle\": \"\\f518\",\n  \"record-fill\": \"\\f519\",\n  \"record\": \"\\f51a\",\n  \"record2-fill\": \"\\f51b\",\n  \"record2\": \"\\f51c\",\n  \"reply-all-fill\": \"\\f51d\",\n  \"reply-all\": \"\\f51e\",\n  \"reply-fill\": \"\\f51f\",\n  \"reply\": \"\\f520\",\n  \"rss-fill\": \"\\f521\",\n  \"rss\": \"\\f522\",\n  \"rulers\": \"\\f523\",\n  \"save-fill\": \"\\f524\",\n  \"save\": \"\\f525\",\n  \"save2-fill\": \"\\f526\",\n  \"save2\": \"\\f527\",\n  \"scissors\": \"\\f528\",\n  \"screwdriver\": \"\\f529\",\n  \"search\": \"\\f52a\",\n  \"segmented-nav\": \"\\f52b\",\n  \"server\": \"\\f52c\",\n  \"share-fill\": \"\\f52d\",\n  \"share\": \"\\f52e\",\n  \"shield-check\": \"\\f52f\",\n  \"shield-exclamation\": \"\\f530\",\n  \"shield-fill-check\": \"\\f531\",\n  \"shield-fill-exclamation\": \"\\f532\",\n  \"shield-fill-minus\": \"\\f533\",\n  \"shield-fill-plus\": \"\\f534\",\n  \"shield-fill-x\": \"\\f535\",\n  \"shield-fill\": \"\\f536\",\n  \"shield-lock-fill\": \"\\f537\",\n  \"shield-lock\": \"\\f538\",\n  \"shield-minus\": \"\\f539\",\n  \"shield-plus\": \"\\f53a\",\n  \"shield-shaded\": \"\\f53b\",\n  \"shield-slash-fill\": \"\\f53c\",\n  \"shield-slash\": \"\\f53d\",\n  \"shield-x\": \"\\f53e\",\n  \"shield\": \"\\f53f\",\n  \"shift-fill\": \"\\f540\",\n  \"shift\": \"\\f541\",\n  \"shop-window\": \"\\f542\",\n  \"shop\": \"\\f543\",\n  \"shuffle\": \"\\f544\",\n  \"signpost-2-fill\": \"\\f545\",\n  \"signpost-2\": \"\\f546\",\n  \"signpost-fill\": \"\\f547\",\n  \"signpost-split-fill\": \"\\f548\",\n  \"signpost-split\": \"\\f549\",\n  \"signpost\": \"\\f54a\",\n  \"sim-fill\": \"\\f54b\",\n  \"sim\": \"\\f54c\",\n  \"skip-backward-btn-fill\": \"\\f54d\",\n  \"skip-backward-btn\": \"\\f54e\",\n  \"skip-backward-circle-fill\": \"\\f54f\",\n  \"skip-backward-circle\": \"\\f550\",\n  \"skip-backward-fill\": \"\\f551\",\n  \"skip-backward\": \"\\f552\",\n  \"skip-end-btn-fill\": \"\\f553\",\n  \"skip-end-btn\": \"\\f554\",\n  \"skip-end-circle-fill\": \"\\f555\",\n  \"skip-end-circle\": \"\\f556\",\n  \"skip-end-fill\": \"\\f557\",\n  \"skip-end\": \"\\f558\",\n  \"skip-forward-btn-fill\": \"\\f559\",\n  \"skip-forward-btn\": \"\\f55a\",\n  \"skip-forward-circle-fill\": \"\\f55b\",\n  \"skip-forward-circle\": \"\\f55c\",\n  \"skip-forward-fill\": \"\\f55d\",\n  \"skip-forward\": \"\\f55e\",\n  \"skip-start-btn-fill\": \"\\f55f\",\n  \"skip-start-btn\": \"\\f560\",\n  \"skip-start-circle-fill\": \"\\f561\",\n  \"skip-start-circle\": \"\\f562\",\n  \"skip-start-fill\": \"\\f563\",\n  \"skip-start\": \"\\f564\",\n  \"slack\": \"\\f565\",\n  \"slash-circle-fill\": \"\\f566\",\n  \"slash-circle\": \"\\f567\",\n  \"slash-square-fill\": \"\\f568\",\n  \"slash-square\": \"\\f569\",\n  \"slash\": \"\\f56a\",\n  \"sliders\": \"\\f56b\",\n  \"smartwatch\": \"\\f56c\",\n  \"snow\": \"\\f56d\",\n  \"snow2\": \"\\f56e\",\n  \"snow3\": \"\\f56f\",\n  \"sort-alpha-down-alt\": \"\\f570\",\n  \"sort-alpha-down\": \"\\f571\",\n  \"sort-alpha-up-alt\": \"\\f572\",\n  \"sort-alpha-up\": \"\\f573\",\n  \"sort-down-alt\": \"\\f574\",\n  \"sort-down\": \"\\f575\",\n  \"sort-numeric-down-alt\": \"\\f576\",\n  \"sort-numeric-down\": \"\\f577\",\n  \"sort-numeric-up-alt\": \"\\f578\",\n  \"sort-numeric-up\": \"\\f579\",\n  \"sort-up-alt\": \"\\f57a\",\n  \"sort-up\": \"\\f57b\",\n  \"soundwave\": \"\\f57c\",\n  \"speaker-fill\": \"\\f57d\",\n  \"speaker\": \"\\f57e\",\n  \"speedometer\": \"\\f57f\",\n  \"speedometer2\": \"\\f580\",\n  \"spellcheck\": \"\\f581\",\n  \"square-fill\": \"\\f582\",\n  \"square-half\": \"\\f583\",\n  \"square\": \"\\f584\",\n  \"stack\": \"\\f585\",\n  \"star-fill\": \"\\f586\",\n  \"star-half\": \"\\f587\",\n  \"star\": \"\\f588\",\n  \"stars\": \"\\f589\",\n  \"stickies-fill\": \"\\f58a\",\n  \"stickies\": \"\\f58b\",\n  \"sticky-fill\": \"\\f58c\",\n  \"sticky\": \"\\f58d\",\n  \"stop-btn-fill\": \"\\f58e\",\n  \"stop-btn\": \"\\f58f\",\n  \"stop-circle-fill\": \"\\f590\",\n  \"stop-circle\": \"\\f591\",\n  \"stop-fill\": \"\\f592\",\n  \"stop\": \"\\f593\",\n  \"stoplights-fill\": \"\\f594\",\n  \"stoplights\": \"\\f595\",\n  \"stopwatch-fill\": \"\\f596\",\n  \"stopwatch\": \"\\f597\",\n  \"subtract\": \"\\f598\",\n  \"suit-club-fill\": \"\\f599\",\n  \"suit-club\": \"\\f59a\",\n  \"suit-diamond-fill\": \"\\f59b\",\n  \"suit-diamond\": \"\\f59c\",\n  \"suit-heart-fill\": \"\\f59d\",\n  \"suit-heart\": \"\\f59e\",\n  \"suit-spade-fill\": \"\\f59f\",\n  \"suit-spade\": \"\\f5a0\",\n  \"sun-fill\": \"\\f5a1\",\n  \"sun\": \"\\f5a2\",\n  \"sunglasses\": \"\\f5a3\",\n  \"sunrise-fill\": \"\\f5a4\",\n  \"sunrise\": \"\\f5a5\",\n  \"sunset-fill\": \"\\f5a6\",\n  \"sunset\": \"\\f5a7\",\n  \"symmetry-horizontal\": \"\\f5a8\",\n  \"symmetry-vertical\": \"\\f5a9\",\n  \"table\": \"\\f5aa\",\n  \"tablet-fill\": \"\\f5ab\",\n  \"tablet-landscape-fill\": \"\\f5ac\",\n  \"tablet-landscape\": \"\\f5ad\",\n  \"tablet\": \"\\f5ae\",\n  \"tag-fill\": \"\\f5af\",\n  \"tag\": \"\\f5b0\",\n  \"tags-fill\": \"\\f5b1\",\n  \"tags\": \"\\f5b2\",\n  \"telegram\": \"\\f5b3\",\n  \"telephone-fill\": \"\\f5b4\",\n  \"telephone-forward-fill\": \"\\f5b5\",\n  \"telephone-forward\": \"\\f5b6\",\n  \"telephone-inbound-fill\": \"\\f5b7\",\n  \"telephone-inbound\": \"\\f5b8\",\n  \"telephone-minus-fill\": \"\\f5b9\",\n  \"telephone-minus\": \"\\f5ba\",\n  \"telephone-outbound-fill\": \"\\f5bb\",\n  \"telephone-outbound\": \"\\f5bc\",\n  \"telephone-plus-fill\": \"\\f5bd\",\n  \"telephone-plus\": \"\\f5be\",\n  \"telephone-x-fill\": \"\\f5bf\",\n  \"telephone-x\": \"\\f5c0\",\n  \"telephone\": \"\\f5c1\",\n  \"terminal-fill\": \"\\f5c2\",\n  \"terminal\": \"\\f5c3\",\n  \"text-center\": \"\\f5c4\",\n  \"text-indent-left\": \"\\f5c5\",\n  \"text-indent-right\": \"\\f5c6\",\n  \"text-left\": \"\\f5c7\",\n  \"text-paragraph\": \"\\f5c8\",\n  \"text-right\": \"\\f5c9\",\n  \"textarea-resize\": \"\\f5ca\",\n  \"textarea-t\": \"\\f5cb\",\n  \"textarea\": \"\\f5cc\",\n  \"thermometer-half\": \"\\f5cd\",\n  \"thermometer-high\": \"\\f5ce\",\n  \"thermometer-low\": \"\\f5cf\",\n  \"thermometer-snow\": \"\\f5d0\",\n  \"thermometer-sun\": \"\\f5d1\",\n  \"thermometer\": \"\\f5d2\",\n  \"three-dots-vertical\": \"\\f5d3\",\n  \"three-dots\": \"\\f5d4\",\n  \"toggle-off\": \"\\f5d5\",\n  \"toggle-on\": \"\\f5d6\",\n  \"toggle2-off\": \"\\f5d7\",\n  \"toggle2-on\": \"\\f5d8\",\n  \"toggles\": \"\\f5d9\",\n  \"toggles2\": \"\\f5da\",\n  \"tools\": \"\\f5db\",\n  \"tornado\": \"\\f5dc\",\n  \"trash-fill\": \"\\f5dd\",\n  \"trash\": \"\\f5de\",\n  \"trash2-fill\": \"\\f5df\",\n  \"trash2\": \"\\f5e0\",\n  \"tree-fill\": \"\\f5e1\",\n  \"tree\": \"\\f5e2\",\n  \"triangle-fill\": \"\\f5e3\",\n  \"triangle-half\": \"\\f5e4\",\n  \"triangle\": \"\\f5e5\",\n  \"trophy-fill\": \"\\f5e6\",\n  \"trophy\": \"\\f5e7\",\n  \"tropical-storm\": \"\\f5e8\",\n  \"truck-flatbed\": \"\\f5e9\",\n  \"truck\": \"\\f5ea\",\n  \"tsunami\": \"\\f5eb\",\n  \"tv-fill\": \"\\f5ec\",\n  \"tv\": \"\\f5ed\",\n  \"twitch\": \"\\f5ee\",\n  \"twitter\": \"\\f5ef\",\n  \"type-bold\": \"\\f5f0\",\n  \"type-h1\": \"\\f5f1\",\n  \"type-h2\": \"\\f5f2\",\n  \"type-h3\": \"\\f5f3\",\n  \"type-italic\": \"\\f5f4\",\n  \"type-strikethrough\": \"\\f5f5\",\n  \"type-underline\": \"\\f5f6\",\n  \"type\": \"\\f5f7\",\n  \"ui-checks-grid\": \"\\f5f8\",\n  \"ui-checks\": \"\\f5f9\",\n  \"ui-radios-grid\": \"\\f5fa\",\n  \"ui-radios\": \"\\f5fb\",\n  \"umbrella-fill\": \"\\f5fc\",\n  \"umbrella\": \"\\f5fd\",\n  \"union\": \"\\f5fe\",\n  \"unlock-fill\": \"\\f5ff\",\n  \"unlock\": \"\\f600\",\n  \"upc-scan\": \"\\f601\",\n  \"upc\": \"\\f602\",\n  \"upload\": \"\\f603\",\n  \"vector-pen\": \"\\f604\",\n  \"view-list\": \"\\f605\",\n  \"view-stacked\": \"\\f606\",\n  \"vinyl-fill\": \"\\f607\",\n  \"vinyl\": \"\\f608\",\n  \"voicemail\": \"\\f609\",\n  \"volume-down-fill\": \"\\f60a\",\n  \"volume-down\": \"\\f60b\",\n  \"volume-mute-fill\": \"\\f60c\",\n  \"volume-mute\": \"\\f60d\",\n  \"volume-off-fill\": \"\\f60e\",\n  \"volume-off\": \"\\f60f\",\n  \"volume-up-fill\": \"\\f610\",\n  \"volume-up\": \"\\f611\",\n  \"vr\": \"\\f612\",\n  \"wallet-fill\": \"\\f613\",\n  \"wallet\": \"\\f614\",\n  \"wallet2\": \"\\f615\",\n  \"watch\": \"\\f616\",\n  \"water\": \"\\f617\",\n  \"whatsapp\": \"\\f618\",\n  \"wifi-1\": \"\\f619\",\n  \"wifi-2\": \"\\f61a\",\n  \"wifi-off\": \"\\f61b\",\n  \"wifi\": \"\\f61c\",\n  \"wind\": \"\\f61d\",\n  \"window-dock\": \"\\f61e\",\n  \"window-sidebar\": \"\\f61f\",\n  \"window\": \"\\f620\",\n  \"wrench\": \"\\f621\",\n  \"x-circle-fill\": \"\\f622\",\n  \"x-circle\": \"\\f623\",\n  \"x-diamond-fill\": \"\\f624\",\n  \"x-diamond\": \"\\f625\",\n  \"x-octagon-fill\": \"\\f626\",\n  \"x-octagon\": \"\\f627\",\n  \"x-square-fill\": \"\\f628\",\n  \"x-square\": \"\\f629\",\n  \"x\": \"\\f62a\",\n  \"youtube\": \"\\f62b\",\n  \"zoom-in\": \"\\f62c\",\n  \"zoom-out\": \"\\f62d\",\n  \"bank\": \"\\f62e\",\n  \"bank2\": \"\\f62f\",\n  \"bell-slash-fill\": \"\\f630\",\n  \"bell-slash\": \"\\f631\",\n  \"cash-coin\": \"\\f632\",\n  \"check-lg\": \"\\f633\",\n  \"coin\": \"\\f634\",\n  \"currency-bitcoin\": \"\\f635\",\n  \"currency-dollar\": \"\\f636\",\n  \"currency-euro\": \"\\f637\",\n  \"currency-exchange\": \"\\f638\",\n  \"currency-pound\": \"\\f639\",\n  \"currency-yen\": \"\\f63a\",\n  \"dash-lg\": \"\\f63b\",\n  \"exclamation-lg\": \"\\f63c\",\n  \"file-earmark-pdf-fill\": \"\\f63d\",\n  \"file-earmark-pdf\": \"\\f63e\",\n  \"file-pdf-fill\": \"\\f63f\",\n  \"file-pdf\": \"\\f640\",\n  \"gender-ambiguous\": \"\\f641\",\n  \"gender-female\": \"\\f642\",\n  \"gender-male\": \"\\f643\",\n  \"gender-trans\": \"\\f644\",\n  \"headset-vr\": \"\\f645\",\n  \"info-lg\": \"\\f646\",\n  \"mastodon\": \"\\f647\",\n  \"messenger\": \"\\f648\",\n  \"piggy-bank-fill\": \"\\f649\",\n  \"piggy-bank\": \"\\f64a\",\n  \"pin-map-fill\": \"\\f64b\",\n  \"pin-map\": \"\\f64c\",\n  \"plus-lg\": \"\\f64d\",\n  \"question-lg\": \"\\f64e\",\n  \"recycle\": \"\\f64f\",\n  \"reddit\": \"\\f650\",\n  \"safe-fill\": \"\\f651\",\n  \"safe2-fill\": \"\\f652\",\n  \"safe2\": \"\\f653\",\n  \"sd-card-fill\": \"\\f654\",\n  \"sd-card\": \"\\f655\",\n  \"skype\": \"\\f656\",\n  \"slash-lg\": \"\\f657\",\n  \"translate\": \"\\f658\",\n  \"x-lg\": \"\\f659\",\n  \"safe\": \"\\f65a\",\n  \"apple\": \"\\f65b\",\n  \"microsoft\": \"\\f65d\",\n  \"windows\": \"\\f65e\",\n  \"behance\": \"\\f65c\",\n  \"dribbble\": \"\\f65f\",\n  \"line\": \"\\f660\",\n  \"medium\": \"\\f661\",\n  \"paypal\": \"\\f662\",\n  \"pinterest\": \"\\f663\",\n  \"signal\": \"\\f664\",\n  \"snapchat\": \"\\f665\",\n  \"spotify\": \"\\f666\",\n  \"stack-overflow\": \"\\f667\",\n  \"strava\": \"\\f668\",\n  \"wordpress\": \"\\f669\",\n  \"vimeo\": \"\\f66a\",\n  \"activity\": \"\\f66b\",\n  \"easel2-fill\": \"\\f66c\",\n  \"easel2\": \"\\f66d\",\n  \"easel3-fill\": \"\\f66e\",\n  \"easel3\": \"\\f66f\",\n  \"fan\": \"\\f670\",\n  \"fingerprint\": \"\\f671\",\n  \"graph-down-arrow\": \"\\f672\",\n  \"graph-up-arrow\": \"\\f673\",\n  \"hypnotize\": \"\\f674\",\n  \"magic\": \"\\f675\",\n  \"person-rolodex\": \"\\f676\",\n  \"person-video\": \"\\f677\",\n  \"person-video2\": \"\\f678\",\n  \"person-video3\": \"\\f679\",\n  \"person-workspace\": \"\\f67a\",\n  \"radioactive\": \"\\f67b\",\n  \"webcam-fill\": \"\\f67c\",\n  \"webcam\": \"\\f67d\",\n  \"yin-yang\": \"\\f67e\",\n  \"bandaid-fill\": \"\\f680\",\n  \"bandaid\": \"\\f681\",\n  \"bluetooth\": \"\\f682\",\n  \"body-text\": \"\\f683\",\n  \"boombox\": \"\\f684\",\n  \"boxes\": \"\\f685\",\n  \"dpad-fill\": \"\\f686\",\n  \"dpad\": \"\\f687\",\n  \"ear-fill\": \"\\f688\",\n  \"ear\": \"\\f689\",\n  \"envelope-check-fill\": \"\\f68b\",\n  \"envelope-check\": \"\\f68c\",\n  \"envelope-dash-fill\": \"\\f68e\",\n  \"envelope-dash\": \"\\f68f\",\n  \"envelope-exclamation-fill\": \"\\f691\",\n  \"envelope-exclamation\": \"\\f692\",\n  \"envelope-plus-fill\": \"\\f693\",\n  \"envelope-plus\": \"\\f694\",\n  \"envelope-slash-fill\": \"\\f696\",\n  \"envelope-slash\": \"\\f697\",\n  \"envelope-x-fill\": \"\\f699\",\n  \"envelope-x\": \"\\f69a\",\n  \"explicit-fill\": \"\\f69b\",\n  \"explicit\": \"\\f69c\",\n  \"git\": \"\\f69d\",\n  \"infinity\": \"\\f69e\",\n  \"list-columns-reverse\": \"\\f69f\",\n  \"list-columns\": \"\\f6a0\",\n  \"meta\": \"\\f6a1\",\n  \"nintendo-switch\": \"\\f6a4\",\n  \"pc-display-horizontal\": \"\\f6a5\",\n  \"pc-display\": \"\\f6a6\",\n  \"pc-horizontal\": \"\\f6a7\",\n  \"pc\": \"\\f6a8\",\n  \"playstation\": \"\\f6a9\",\n  \"plus-slash-minus\": \"\\f6aa\",\n  \"projector-fill\": \"\\f6ab\",\n  \"projector\": \"\\f6ac\",\n  \"qr-code-scan\": \"\\f6ad\",\n  \"qr-code\": \"\\f6ae\",\n  \"quora\": \"\\f6af\",\n  \"quote\": \"\\f6b0\",\n  \"robot\": \"\\f6b1\",\n  \"send-check-fill\": \"\\f6b2\",\n  \"send-check\": \"\\f6b3\",\n  \"send-dash-fill\": \"\\f6b4\",\n  \"send-dash\": \"\\f6b5\",\n  \"send-exclamation-fill\": \"\\f6b7\",\n  \"send-exclamation\": \"\\f6b8\",\n  \"send-fill\": \"\\f6b9\",\n  \"send-plus-fill\": \"\\f6ba\",\n  \"send-plus\": \"\\f6bb\",\n  \"send-slash-fill\": \"\\f6bc\",\n  \"send-slash\": \"\\f6bd\",\n  \"send-x-fill\": \"\\f6be\",\n  \"send-x\": \"\\f6bf\",\n  \"send\": \"\\f6c0\",\n  \"steam\": \"\\f6c1\",\n  \"terminal-dash\": \"\\f6c3\",\n  \"terminal-plus\": \"\\f6c4\",\n  \"terminal-split\": \"\\f6c5\",\n  \"ticket-detailed-fill\": \"\\f6c6\",\n  \"ticket-detailed\": \"\\f6c7\",\n  \"ticket-fill\": \"\\f6c8\",\n  \"ticket-perforated-fill\": \"\\f6c9\",\n  \"ticket-perforated\": \"\\f6ca\",\n  \"ticket\": \"\\f6cb\",\n  \"tiktok\": \"\\f6cc\",\n  \"window-dash\": \"\\f6cd\",\n  \"window-desktop\": \"\\f6ce\",\n  \"window-fullscreen\": \"\\f6cf\",\n  \"window-plus\": \"\\f6d0\",\n  \"window-split\": \"\\f6d1\",\n  \"window-stack\": \"\\f6d2\",\n  \"window-x\": \"\\f6d3\",\n  \"xbox\": \"\\f6d4\",\n  \"ethernet\": \"\\f6d5\",\n  \"hdmi-fill\": \"\\f6d6\",\n  \"hdmi\": \"\\f6d7\",\n  \"usb-c-fill\": \"\\f6d8\",\n  \"usb-c\": \"\\f6d9\",\n  \"usb-fill\": \"\\f6da\",\n  \"usb-plug-fill\": \"\\f6db\",\n  \"usb-plug\": \"\\f6dc\",\n  \"usb-symbol\": \"\\f6dd\",\n  \"usb\": \"\\f6de\",\n  \"boombox-fill\": \"\\f6df\",\n  \"displayport\": \"\\f6e1\",\n  \"gpu-card\": \"\\f6e2\",\n  \"memory\": \"\\f6e3\",\n  \"modem-fill\": \"\\f6e4\",\n  \"modem\": \"\\f6e5\",\n  \"motherboard-fill\": \"\\f6e6\",\n  \"motherboard\": \"\\f6e7\",\n  \"optical-audio-fill\": \"\\f6e8\",\n  \"optical-audio\": \"\\f6e9\",\n  \"pci-card\": \"\\f6ea\",\n  \"router-fill\": \"\\f6eb\",\n  \"router\": \"\\f6ec\",\n  \"thunderbolt-fill\": \"\\f6ef\",\n  \"thunderbolt\": \"\\f6f0\",\n  \"usb-drive-fill\": \"\\f6f1\",\n  \"usb-drive\": \"\\f6f2\",\n  \"usb-micro-fill\": \"\\f6f3\",\n  \"usb-micro\": \"\\f6f4\",\n  \"usb-mini-fill\": \"\\f6f5\",\n  \"usb-mini\": \"\\f6f6\",\n  \"cloud-haze2\": \"\\f6f7\",\n  \"device-hdd-fill\": \"\\f6f8\",\n  \"device-hdd\": \"\\f6f9\",\n  \"device-ssd-fill\": \"\\f6fa\",\n  \"device-ssd\": \"\\f6fb\",\n  \"displayport-fill\": \"\\f6fc\",\n  \"mortarboard-fill\": \"\\f6fd\",\n  \"mortarboard\": \"\\f6fe\",\n  \"terminal-x\": \"\\f6ff\",\n  \"arrow-through-heart-fill\": \"\\f700\",\n  \"arrow-through-heart\": \"\\f701\",\n  \"badge-sd-fill\": \"\\f702\",\n  \"badge-sd\": \"\\f703\",\n  \"bag-heart-fill\": \"\\f704\",\n  \"bag-heart\": \"\\f705\",\n  \"balloon-fill\": \"\\f706\",\n  \"balloon-heart-fill\": \"\\f707\",\n  \"balloon-heart\": \"\\f708\",\n  \"balloon\": \"\\f709\",\n  \"box2-fill\": \"\\f70a\",\n  \"box2-heart-fill\": \"\\f70b\",\n  \"box2-heart\": \"\\f70c\",\n  \"box2\": \"\\f70d\",\n  \"braces-asterisk\": \"\\f70e\",\n  \"calendar-heart-fill\": \"\\f70f\",\n  \"calendar-heart\": \"\\f710\",\n  \"calendar2-heart-fill\": \"\\f711\",\n  \"calendar2-heart\": \"\\f712\",\n  \"chat-heart-fill\": \"\\f713\",\n  \"chat-heart\": \"\\f714\",\n  \"chat-left-heart-fill\": \"\\f715\",\n  \"chat-left-heart\": \"\\f716\",\n  \"chat-right-heart-fill\": \"\\f717\",\n  \"chat-right-heart\": \"\\f718\",\n  \"chat-square-heart-fill\": \"\\f719\",\n  \"chat-square-heart\": \"\\f71a\",\n  \"clipboard-check-fill\": \"\\f71b\",\n  \"clipboard-data-fill\": \"\\f71c\",\n  \"clipboard-fill\": \"\\f71d\",\n  \"clipboard-heart-fill\": \"\\f71e\",\n  \"clipboard-heart\": \"\\f71f\",\n  \"clipboard-minus-fill\": \"\\f720\",\n  \"clipboard-plus-fill\": \"\\f721\",\n  \"clipboard-pulse\": \"\\f722\",\n  \"clipboard-x-fill\": \"\\f723\",\n  \"clipboard2-check-fill\": \"\\f724\",\n  \"clipboard2-check\": \"\\f725\",\n  \"clipboard2-data-fill\": \"\\f726\",\n  \"clipboard2-data\": \"\\f727\",\n  \"clipboard2-fill\": \"\\f728\",\n  \"clipboard2-heart-fill\": \"\\f729\",\n  \"clipboard2-heart\": \"\\f72a\",\n  \"clipboard2-minus-fill\": \"\\f72b\",\n  \"clipboard2-minus\": \"\\f72c\",\n  \"clipboard2-plus-fill\": \"\\f72d\",\n  \"clipboard2-plus\": \"\\f72e\",\n  \"clipboard2-pulse-fill\": \"\\f72f\",\n  \"clipboard2-pulse\": \"\\f730\",\n  \"clipboard2-x-fill\": \"\\f731\",\n  \"clipboard2-x\": \"\\f732\",\n  \"clipboard2\": \"\\f733\",\n  \"emoji-kiss-fill\": \"\\f734\",\n  \"emoji-kiss\": \"\\f735\",\n  \"envelope-heart-fill\": \"\\f736\",\n  \"envelope-heart\": \"\\f737\",\n  \"envelope-open-heart-fill\": \"\\f738\",\n  \"envelope-open-heart\": \"\\f739\",\n  \"envelope-paper-fill\": \"\\f73a\",\n  \"envelope-paper-heart-fill\": \"\\f73b\",\n  \"envelope-paper-heart\": \"\\f73c\",\n  \"envelope-paper\": \"\\f73d\",\n  \"filetype-aac\": \"\\f73e\",\n  \"filetype-ai\": \"\\f73f\",\n  \"filetype-bmp\": \"\\f740\",\n  \"filetype-cs\": \"\\f741\",\n  \"filetype-css\": \"\\f742\",\n  \"filetype-csv\": \"\\f743\",\n  \"filetype-doc\": \"\\f744\",\n  \"filetype-docx\": \"\\f745\",\n  \"filetype-exe\": \"\\f746\",\n  \"filetype-gif\": \"\\f747\",\n  \"filetype-heic\": \"\\f748\",\n  \"filetype-html\": \"\\f749\",\n  \"filetype-java\": \"\\f74a\",\n  \"filetype-jpg\": \"\\f74b\",\n  \"filetype-js\": \"\\f74c\",\n  \"filetype-jsx\": \"\\f74d\",\n  \"filetype-key\": \"\\f74e\",\n  \"filetype-m4p\": \"\\f74f\",\n  \"filetype-md\": \"\\f750\",\n  \"filetype-mdx\": \"\\f751\",\n  \"filetype-mov\": \"\\f752\",\n  \"filetype-mp3\": \"\\f753\",\n  \"filetype-mp4\": \"\\f754\",\n  \"filetype-otf\": \"\\f755\",\n  \"filetype-pdf\": \"\\f756\",\n  \"filetype-php\": \"\\f757\",\n  \"filetype-png\": \"\\f758\",\n  \"filetype-ppt\": \"\\f75a\",\n  \"filetype-psd\": \"\\f75b\",\n  \"filetype-py\": \"\\f75c\",\n  \"filetype-raw\": \"\\f75d\",\n  \"filetype-rb\": \"\\f75e\",\n  \"filetype-sass\": \"\\f75f\",\n  \"filetype-scss\": \"\\f760\",\n  \"filetype-sh\": \"\\f761\",\n  \"filetype-svg\": \"\\f762\",\n  \"filetype-tiff\": \"\\f763\",\n  \"filetype-tsx\": \"\\f764\",\n  \"filetype-ttf\": \"\\f765\",\n  \"filetype-txt\": \"\\f766\",\n  \"filetype-wav\": \"\\f767\",\n  \"filetype-woff\": \"\\f768\",\n  \"filetype-xls\": \"\\f76a\",\n  \"filetype-xml\": \"\\f76b\",\n  \"filetype-yml\": \"\\f76c\",\n  \"heart-arrow\": \"\\f76d\",\n  \"heart-pulse-fill\": \"\\f76e\",\n  \"heart-pulse\": \"\\f76f\",\n  \"heartbreak-fill\": \"\\f770\",\n  \"heartbreak\": \"\\f771\",\n  \"hearts\": \"\\f772\",\n  \"hospital-fill\": \"\\f773\",\n  \"hospital\": \"\\f774\",\n  \"house-heart-fill\": \"\\f775\",\n  \"house-heart\": \"\\f776\",\n  \"incognito\": \"\\f777\",\n  \"magnet-fill\": \"\\f778\",\n  \"magnet\": \"\\f779\",\n  \"person-heart\": \"\\f77a\",\n  \"person-hearts\": \"\\f77b\",\n  \"phone-flip\": \"\\f77c\",\n  \"plugin\": \"\\f77d\",\n  \"postage-fill\": \"\\f77e\",\n  \"postage-heart-fill\": \"\\f77f\",\n  \"postage-heart\": \"\\f780\",\n  \"postage\": \"\\f781\",\n  \"postcard-fill\": \"\\f782\",\n  \"postcard-heart-fill\": \"\\f783\",\n  \"postcard-heart\": \"\\f784\",\n  \"postcard\": \"\\f785\",\n  \"search-heart-fill\": \"\\f786\",\n  \"search-heart\": \"\\f787\",\n  \"sliders2-vertical\": \"\\f788\",\n  \"sliders2\": \"\\f789\",\n  \"trash3-fill\": \"\\f78a\",\n  \"trash3\": \"\\f78b\",\n  \"valentine\": \"\\f78c\",\n  \"valentine2\": \"\\f78d\",\n  \"wrench-adjustable-circle-fill\": \"\\f78e\",\n  \"wrench-adjustable-circle\": \"\\f78f\",\n  \"wrench-adjustable\": \"\\f790\",\n  \"filetype-json\": \"\\f791\",\n  \"filetype-pptx\": \"\\f792\",\n  \"filetype-xlsx\": \"\\f793\",\n  \"1-circle-fill\": \"\\f796\",\n  \"1-circle\": \"\\f797\",\n  \"1-square-fill\": \"\\f798\",\n  \"1-square\": \"\\f799\",\n  \"2-circle-fill\": \"\\f79c\",\n  \"2-circle\": \"\\f79d\",\n  \"2-square-fill\": \"\\f79e\",\n  \"2-square\": \"\\f79f\",\n  \"3-circle-fill\": \"\\f7a2\",\n  \"3-circle\": \"\\f7a3\",\n  \"3-square-fill\": \"\\f7a4\",\n  \"3-square\": \"\\f7a5\",\n  \"4-circle-fill\": \"\\f7a8\",\n  \"4-circle\": \"\\f7a9\",\n  \"4-square-fill\": \"\\f7aa\",\n  \"4-square\": \"\\f7ab\",\n  \"5-circle-fill\": \"\\f7ae\",\n  \"5-circle\": \"\\f7af\",\n  \"5-square-fill\": \"\\f7b0\",\n  \"5-square\": \"\\f7b1\",\n  \"6-circle-fill\": \"\\f7b4\",\n  \"6-circle\": \"\\f7b5\",\n  \"6-square-fill\": \"\\f7b6\",\n  \"6-square\": \"\\f7b7\",\n  \"7-circle-fill\": \"\\f7ba\",\n  \"7-circle\": \"\\f7bb\",\n  \"7-square-fill\": \"\\f7bc\",\n  \"7-square\": \"\\f7bd\",\n  \"8-circle-fill\": \"\\f7c0\",\n  \"8-circle\": \"\\f7c1\",\n  \"8-square-fill\": \"\\f7c2\",\n  \"8-square\": \"\\f7c3\",\n  \"9-circle-fill\": \"\\f7c6\",\n  \"9-circle\": \"\\f7c7\",\n  \"9-square-fill\": \"\\f7c8\",\n  \"9-square\": \"\\f7c9\",\n  \"airplane-engines-fill\": \"\\f7ca\",\n  \"airplane-engines\": \"\\f7cb\",\n  \"airplane-fill\": \"\\f7cc\",\n  \"airplane\": \"\\f7cd\",\n  \"alexa\": \"\\f7ce\",\n  \"alipay\": \"\\f7cf\",\n  \"android\": \"\\f7d0\",\n  \"android2\": \"\\f7d1\",\n  \"box-fill\": \"\\f7d2\",\n  \"box-seam-fill\": \"\\f7d3\",\n  \"browser-chrome\": \"\\f7d4\",\n  \"browser-edge\": \"\\f7d5\",\n  \"browser-firefox\": \"\\f7d6\",\n  \"browser-safari\": \"\\f7d7\",\n  \"c-circle-fill\": \"\\f7da\",\n  \"c-circle\": \"\\f7db\",\n  \"c-square-fill\": \"\\f7dc\",\n  \"c-square\": \"\\f7dd\",\n  \"capsule-pill\": \"\\f7de\",\n  \"capsule\": \"\\f7df\",\n  \"car-front-fill\": \"\\f7e0\",\n  \"car-front\": \"\\f7e1\",\n  \"cassette-fill\": \"\\f7e2\",\n  \"cassette\": \"\\f7e3\",\n  \"cc-circle-fill\": \"\\f7e6\",\n  \"cc-circle\": \"\\f7e7\",\n  \"cc-square-fill\": \"\\f7e8\",\n  \"cc-square\": \"\\f7e9\",\n  \"cup-hot-fill\": \"\\f7ea\",\n  \"cup-hot\": \"\\f7eb\",\n  \"currency-rupee\": \"\\f7ec\",\n  \"dropbox\": \"\\f7ed\",\n  \"escape\": \"\\f7ee\",\n  \"fast-forward-btn-fill\": \"\\f7ef\",\n  \"fast-forward-btn\": \"\\f7f0\",\n  \"fast-forward-circle-fill\": \"\\f7f1\",\n  \"fast-forward-circle\": \"\\f7f2\",\n  \"fast-forward-fill\": \"\\f7f3\",\n  \"fast-forward\": \"\\f7f4\",\n  \"filetype-sql\": \"\\f7f5\",\n  \"fire\": \"\\f7f6\",\n  \"google-play\": \"\\f7f7\",\n  \"h-circle-fill\": \"\\f7fa\",\n  \"h-circle\": \"\\f7fb\",\n  \"h-square-fill\": \"\\f7fc\",\n  \"h-square\": \"\\f7fd\",\n  \"indent\": \"\\f7fe\",\n  \"lungs-fill\": \"\\f7ff\",\n  \"lungs\": \"\\f800\",\n  \"microsoft-teams\": \"\\f801\",\n  \"p-circle-fill\": \"\\f804\",\n  \"p-circle\": \"\\f805\",\n  \"p-square-fill\": \"\\f806\",\n  \"p-square\": \"\\f807\",\n  \"pass-fill\": \"\\f808\",\n  \"pass\": \"\\f809\",\n  \"prescription\": \"\\f80a\",\n  \"prescription2\": \"\\f80b\",\n  \"r-circle-fill\": \"\\f80e\",\n  \"r-circle\": \"\\f80f\",\n  \"r-square-fill\": \"\\f810\",\n  \"r-square\": \"\\f811\",\n  \"repeat-1\": \"\\f812\",\n  \"repeat\": \"\\f813\",\n  \"rewind-btn-fill\": \"\\f814\",\n  \"rewind-btn\": \"\\f815\",\n  \"rewind-circle-fill\": \"\\f816\",\n  \"rewind-circle\": \"\\f817\",\n  \"rewind-fill\": \"\\f818\",\n  \"rewind\": \"\\f819\",\n  \"train-freight-front-fill\": \"\\f81a\",\n  \"train-freight-front\": \"\\f81b\",\n  \"train-front-fill\": \"\\f81c\",\n  \"train-front\": \"\\f81d\",\n  \"train-lightrail-front-fill\": \"\\f81e\",\n  \"train-lightrail-front\": \"\\f81f\",\n  \"truck-front-fill\": \"\\f820\",\n  \"truck-front\": \"\\f821\",\n  \"ubuntu\": \"\\f822\",\n  \"unindent\": \"\\f823\",\n  \"unity\": \"\\f824\",\n  \"universal-access-circle\": \"\\f825\",\n  \"universal-access\": \"\\f826\",\n  \"virus\": \"\\f827\",\n  \"virus2\": \"\\f828\",\n  \"wechat\": \"\\f829\",\n  \"yelp\": \"\\f82a\",\n  \"sign-stop-fill\": \"\\f82b\",\n  \"sign-stop-lights-fill\": \"\\f82c\",\n  \"sign-stop-lights\": \"\\f82d\",\n  \"sign-stop\": \"\\f82e\",\n  \"sign-turn-left-fill\": \"\\f82f\",\n  \"sign-turn-left\": \"\\f830\",\n  \"sign-turn-right-fill\": \"\\f831\",\n  \"sign-turn-right\": \"\\f832\",\n  \"sign-turn-slight-left-fill\": \"\\f833\",\n  \"sign-turn-slight-left\": \"\\f834\",\n  \"sign-turn-slight-right-fill\": \"\\f835\",\n  \"sign-turn-slight-right\": \"\\f836\",\n  \"sign-yield-fill\": \"\\f837\",\n  \"sign-yield\": \"\\f838\",\n  \"ev-station-fill\": \"\\f839\",\n  \"ev-station\": \"\\f83a\",\n  \"fuel-pump-diesel-fill\": \"\\f83b\",\n  \"fuel-pump-diesel\": \"\\f83c\",\n  \"fuel-pump-fill\": \"\\f83d\",\n  \"fuel-pump\": \"\\f83e\",\n  \"0-circle-fill\": \"\\f83f\",\n  \"0-circle\": \"\\f840\",\n  \"0-square-fill\": \"\\f841\",\n  \"0-square\": \"\\f842\",\n  \"rocket-fill\": \"\\f843\",\n  \"rocket-takeoff-fill\": \"\\f844\",\n  \"rocket-takeoff\": \"\\f845\",\n  \"rocket\": \"\\f846\",\n  \"stripe\": \"\\f847\",\n  \"subscript\": \"\\f848\",\n  \"superscript\": \"\\f849\",\n  \"trello\": \"\\f84a\",\n  \"envelope-at-fill\": \"\\f84b\",\n  \"envelope-at\": \"\\f84c\",\n  \"regex\": \"\\f84d\",\n  \"text-wrap\": \"\\f84e\",\n  \"sign-dead-end-fill\": \"\\f84f\",\n  \"sign-dead-end\": \"\\f850\",\n  \"sign-do-not-enter-fill\": \"\\f851\",\n  \"sign-do-not-enter\": \"\\f852\",\n  \"sign-intersection-fill\": \"\\f853\",\n  \"sign-intersection-side-fill\": \"\\f854\",\n  \"sign-intersection-side\": \"\\f855\",\n  \"sign-intersection-t-fill\": \"\\f856\",\n  \"sign-intersection-t\": \"\\f857\",\n  \"sign-intersection-y-fill\": \"\\f858\",\n  \"sign-intersection-y\": \"\\f859\",\n  \"sign-intersection\": \"\\f85a\",\n  \"sign-merge-left-fill\": \"\\f85b\",\n  \"sign-merge-left\": \"\\f85c\",\n  \"sign-merge-right-fill\": \"\\f85d\",\n  \"sign-merge-right\": \"\\f85e\",\n  \"sign-no-left-turn-fill\": \"\\f85f\",\n  \"sign-no-left-turn\": \"\\f860\",\n  \"sign-no-parking-fill\": \"\\f861\",\n  \"sign-no-parking\": \"\\f862\",\n  \"sign-no-right-turn-fill\": \"\\f863\",\n  \"sign-no-right-turn\": \"\\f864\",\n  \"sign-railroad-fill\": \"\\f865\",\n  \"sign-railroad\": \"\\f866\",\n  \"building-add\": \"\\f867\",\n  \"building-check\": \"\\f868\",\n  \"building-dash\": \"\\f869\",\n  \"building-down\": \"\\f86a\",\n  \"building-exclamation\": \"\\f86b\",\n  \"building-fill-add\": \"\\f86c\",\n  \"building-fill-check\": \"\\f86d\",\n  \"building-fill-dash\": \"\\f86e\",\n  \"building-fill-down\": \"\\f86f\",\n  \"building-fill-exclamation\": \"\\f870\",\n  \"building-fill-gear\": \"\\f871\",\n  \"building-fill-lock\": \"\\f872\",\n  \"building-fill-slash\": \"\\f873\",\n  \"building-fill-up\": \"\\f874\",\n  \"building-fill-x\": \"\\f875\",\n  \"building-fill\": \"\\f876\",\n  \"building-gear\": \"\\f877\",\n  \"building-lock\": \"\\f878\",\n  \"building-slash\": \"\\f879\",\n  \"building-up\": \"\\f87a\",\n  \"building-x\": \"\\f87b\",\n  \"buildings-fill\": \"\\f87c\",\n  \"buildings\": \"\\f87d\",\n  \"bus-front-fill\": \"\\f87e\",\n  \"bus-front\": \"\\f87f\",\n  \"ev-front-fill\": \"\\f880\",\n  \"ev-front\": \"\\f881\",\n  \"globe-americas\": \"\\f882\",\n  \"globe-asia-australia\": \"\\f883\",\n  \"globe-central-south-asia\": \"\\f884\",\n  \"globe-europe-africa\": \"\\f885\",\n  \"house-add-fill\": \"\\f886\",\n  \"house-add\": \"\\f887\",\n  \"house-check-fill\": \"\\f888\",\n  \"house-check\": \"\\f889\",\n  \"house-dash-fill\": \"\\f88a\",\n  \"house-dash\": \"\\f88b\",\n  \"house-down-fill\": \"\\f88c\",\n  \"house-down\": \"\\f88d\",\n  \"house-exclamation-fill\": \"\\f88e\",\n  \"house-exclamation\": \"\\f88f\",\n  \"house-gear-fill\": \"\\f890\",\n  \"house-gear\": \"\\f891\",\n  \"house-lock-fill\": \"\\f892\",\n  \"house-lock\": \"\\f893\",\n  \"house-slash-fill\": \"\\f894\",\n  \"house-slash\": \"\\f895\",\n  \"house-up-fill\": \"\\f896\",\n  \"house-up\": \"\\f897\",\n  \"house-x-fill\": \"\\f898\",\n  \"house-x\": \"\\f899\",\n  \"person-add\": \"\\f89a\",\n  \"person-down\": \"\\f89b\",\n  \"person-exclamation\": \"\\f89c\",\n  \"person-fill-add\": \"\\f89d\",\n  \"person-fill-check\": \"\\f89e\",\n  \"person-fill-dash\": \"\\f89f\",\n  \"person-fill-down\": \"\\f8a0\",\n  \"person-fill-exclamation\": \"\\f8a1\",\n  \"person-fill-gear\": \"\\f8a2\",\n  \"person-fill-lock\": \"\\f8a3\",\n  \"person-fill-slash\": \"\\f8a4\",\n  \"person-fill-up\": \"\\f8a5\",\n  \"person-fill-x\": \"\\f8a6\",\n  \"person-gear\": \"\\f8a7\",\n  \"person-lock\": \"\\f8a8\",\n  \"person-slash\": \"\\f8a9\",\n  \"person-up\": \"\\f8aa\",\n  \"scooter\": \"\\f8ab\",\n  \"taxi-front-fill\": \"\\f8ac\",\n  \"taxi-front\": \"\\f8ad\",\n  \"amd\": \"\\f8ae\",\n  \"database-add\": \"\\f8af\",\n  \"database-check\": \"\\f8b0\",\n  \"database-dash\": \"\\f8b1\",\n  \"database-down\": \"\\f8b2\",\n  \"database-exclamation\": \"\\f8b3\",\n  \"database-fill-add\": \"\\f8b4\",\n  \"database-fill-check\": \"\\f8b5\",\n  \"database-fill-dash\": \"\\f8b6\",\n  \"database-fill-down\": \"\\f8b7\",\n  \"database-fill-exclamation\": \"\\f8b8\",\n  \"database-fill-gear\": \"\\f8b9\",\n  \"database-fill-lock\": \"\\f8ba\",\n  \"database-fill-slash\": \"\\f8bb\",\n  \"database-fill-up\": \"\\f8bc\",\n  \"database-fill-x\": \"\\f8bd\",\n  \"database-fill\": \"\\f8be\",\n  \"database-gear\": \"\\f8bf\",\n  \"database-lock\": \"\\f8c0\",\n  \"database-slash\": \"\\f8c1\",\n  \"database-up\": \"\\f8c2\",\n  \"database-x\": \"\\f8c3\",\n  \"database\": \"\\f8c4\",\n  \"houses-fill\": \"\\f8c5\",\n  \"houses\": \"\\f8c6\",\n  \"nvidia\": \"\\f8c7\",\n  \"person-vcard-fill\": \"\\f8c8\",\n  \"person-vcard\": \"\\f8c9\",\n  \"sina-weibo\": \"\\f8ca\",\n  \"tencent-qq\": \"\\f8cb\",\n  \"wikipedia\": \"\\f8cc\",\n  \"alphabet-uppercase\": \"\\f2a5\",\n  \"alphabet\": \"\\f68a\",\n  \"amazon\": \"\\f68d\",\n  \"arrows-collapse-vertical\": \"\\f690\",\n  \"arrows-expand-vertical\": \"\\f695\",\n  \"arrows-vertical\": \"\\f698\",\n  \"arrows\": \"\\f6a2\",\n  \"ban-fill\": \"\\f6a3\",\n  \"ban\": \"\\f6b6\",\n  \"bing\": \"\\f6c2\",\n  \"cake\": \"\\f6e0\",\n  \"cake2\": \"\\f6ed\",\n  \"cookie\": \"\\f6ee\",\n  \"copy\": \"\\f759\",\n  \"crosshair\": \"\\f769\",\n  \"crosshair2\": \"\\f794\",\n  \"emoji-astonished-fill\": \"\\f795\",\n  \"emoji-astonished\": \"\\f79a\",\n  \"emoji-grimace-fill\": \"\\f79b\",\n  \"emoji-grimace\": \"\\f7a0\",\n  \"emoji-grin-fill\": \"\\f7a1\",\n  \"emoji-grin\": \"\\f7a6\",\n  \"emoji-surprise-fill\": \"\\f7a7\",\n  \"emoji-surprise\": \"\\f7ac\",\n  \"emoji-tear-fill\": \"\\f7ad\",\n  \"emoji-tear\": \"\\f7b2\",\n  \"envelope-arrow-down-fill\": \"\\f7b3\",\n  \"envelope-arrow-down\": \"\\f7b8\",\n  \"envelope-arrow-up-fill\": \"\\f7b9\",\n  \"envelope-arrow-up\": \"\\f7be\",\n  \"feather\": \"\\f7bf\",\n  \"feather2\": \"\\f7c4\",\n  \"floppy-fill\": \"\\f7c5\",\n  \"floppy\": \"\\f7d8\",\n  \"floppy2-fill\": \"\\f7d9\",\n  \"floppy2\": \"\\f7e4\",\n  \"gitlab\": \"\\f7e5\",\n  \"highlighter\": \"\\f7f8\",\n  \"marker-tip\": \"\\f802\",\n  \"nvme-fill\": \"\\f803\",\n  \"nvme\": \"\\f80c\",\n  \"opencollective\": \"\\f80d\",\n  \"pci-card-network\": \"\\f8cd\",\n  \"pci-card-sound\": \"\\f8ce\",\n  \"radar\": \"\\f8cf\",\n  \"send-arrow-down-fill\": \"\\f8d0\",\n  \"send-arrow-down\": \"\\f8d1\",\n  \"send-arrow-up-fill\": \"\\f8d2\",\n  \"send-arrow-up\": \"\\f8d3\",\n  \"sim-slash-fill\": \"\\f8d4\",\n  \"sim-slash\": \"\\f8d5\",\n  \"sourceforge\": \"\\f8d6\",\n  \"substack\": \"\\f8d7\",\n  \"threads-fill\": \"\\f8d8\",\n  \"threads\": \"\\f8d9\",\n  \"transparency\": \"\\f8da\",\n  \"twitter-x\": \"\\f8db\",\n  \"type-h4\": \"\\f8dc\",\n  \"type-h5\": \"\\f8dd\",\n  \"type-h6\": \"\\f8de\",\n  \"backpack-fill\": \"\\f8df\",\n  \"backpack\": \"\\f8e0\",\n  \"backpack2-fill\": \"\\f8e1\",\n  \"backpack2\": \"\\f8e2\",\n  \"backpack3-fill\": \"\\f8e3\",\n  \"backpack3\": \"\\f8e4\",\n  \"backpack4-fill\": \"\\f8e5\",\n  \"backpack4\": \"\\f8e6\",\n  \"brilliance\": \"\\f8e7\",\n  \"cake-fill\": \"\\f8e8\",\n  \"cake2-fill\": \"\\f8e9\",\n  \"duffle-fill\": \"\\f8ea\",\n  \"duffle\": \"\\f8eb\",\n  \"exposure\": \"\\f8ec\",\n  \"gender-neuter\": \"\\f8ed\",\n  \"highlights\": \"\\f8ee\",\n  \"luggage-fill\": \"\\f8ef\",\n  \"luggage\": \"\\f8f0\",\n  \"mailbox-flag\": \"\\f8f1\",\n  \"mailbox2-flag\": \"\\f8f2\",\n  \"noise-reduction\": \"\\f8f3\",\n  \"passport-fill\": \"\\f8f4\",\n  \"passport\": \"\\f8f5\",\n  \"person-arms-up\": \"\\f8f6\",\n  \"person-raised-hand\": \"\\f8f7\",\n  \"person-standing-dress\": \"\\f8f8\",\n  \"person-standing\": \"\\f8f9\",\n  \"person-walking\": \"\\f8fa\",\n  \"person-wheelchair\": \"\\f8fb\",\n  \"shadows\": \"\\f8fc\",\n  \"suitcase-fill\": \"\\f8fd\",\n  \"suitcase-lg-fill\": \"\\f8fe\",\n  \"suitcase-lg\": \"\\f8ff\",\n  \"suitcase\": \"\\f900\",\n  \"suitcase2-fill\": \"\\f901\",\n  \"suitcase2\": \"\\f902\",\n  \"vignette\": \"\\f903\",\n  \"bluesky\": \"\\f7f9\",\n  \"tux\": \"\\f904\",\n  \"beaker-fill\": \"\\f905\",\n  \"beaker\": \"\\f906\",\n  \"flask-fill\": \"\\f907\",\n  \"flask-florence-fill\": \"\\f908\",\n  \"flask-florence\": \"\\f909\",\n  \"flask\": \"\\f90a\",\n  \"leaf-fill\": \"\\f90b\",\n  \"leaf\": \"\\f90c\",\n  \"measuring-cup-fill\": \"\\f90d\",\n  \"measuring-cup\": \"\\f90e\",\n  \"unlock2-fill\": \"\\f90f\",\n  \"unlock2\": \"\\f910\",\n  \"battery-low\": \"\\f911\",\n  \"anthropic\": \"\\f912\",\n  \"apple-music\": \"\\f913\",\n  \"claude\": \"\\f914\",\n  \"openai\": \"\\f915\",\n  \"perplexity\": \"\\f916\",\n  \"css\": \"\\f917\",\n  \"javascript\": \"\\f918\",\n  \"typescript\": \"\\f919\",\n  \"fork-knife\": \"\\f91a\",\n  \"globe-americas-fill\": \"\\f91b\",\n  \"globe-asia-australia-fill\": \"\\f91c\",\n  \"globe-central-south-asia-fill\": \"\\f91d\",\n  \"globe-europe-africa-fill\": \"\\f91e\",\n);\n\n@each $icon, $codepoint in $bootstrap-icons-map {\n  .bi-#{$icon}::before { content: $codepoint; }\n}\n"
  },
  {
    "path": "font/bootstrap-icons.ts",
    "content": "export type BootstrapIconsId =\n  | \"123\"\n  | \"0-circle-fill\"\n  | \"0-circle\"\n  | \"0-square-fill\"\n  | \"0-square\"\n  | \"1-circle-fill\"\n  | \"1-circle\"\n  | \"1-square-fill\"\n  | \"1-square\"\n  | \"2-circle-fill\"\n  | \"2-circle\"\n  | \"2-square-fill\"\n  | \"2-square\"\n  | \"3-circle-fill\"\n  | \"3-circle\"\n  | \"3-square-fill\"\n  | \"3-square\"\n  | \"4-circle-fill\"\n  | \"4-circle\"\n  | \"4-square-fill\"\n  | \"4-square\"\n  | \"5-circle-fill\"\n  | \"5-circle\"\n  | \"5-square-fill\"\n  | \"5-square\"\n  | \"6-circle-fill\"\n  | \"6-circle\"\n  | \"6-square-fill\"\n  | \"6-square\"\n  | \"7-circle-fill\"\n  | \"7-circle\"\n  | \"7-square-fill\"\n  | \"7-square\"\n  | \"8-circle-fill\"\n  | \"8-circle\"\n  | \"8-square-fill\"\n  | \"8-square\"\n  | \"9-circle-fill\"\n  | \"9-circle\"\n  | \"9-square-fill\"\n  | \"9-square\"\n  | \"activity\"\n  | \"airplane-engines-fill\"\n  | \"airplane-engines\"\n  | \"airplane-fill\"\n  | \"airplane\"\n  | \"alarm-fill\"\n  | \"alarm\"\n  | \"alexa\"\n  | \"align-bottom\"\n  | \"align-center\"\n  | \"align-end\"\n  | \"align-middle\"\n  | \"align-start\"\n  | \"align-top\"\n  | \"alipay\"\n  | \"alphabet-uppercase\"\n  | \"alphabet\"\n  | \"alt\"\n  | \"amazon\"\n  | \"amd\"\n  | \"android\"\n  | \"android2\"\n  | \"anthropic\"\n  | \"app-indicator\"\n  | \"app\"\n  | \"apple-music\"\n  | \"apple\"\n  | \"archive-fill\"\n  | \"archive\"\n  | \"arrow-90deg-down\"\n  | \"arrow-90deg-left\"\n  | \"arrow-90deg-right\"\n  | \"arrow-90deg-up\"\n  | \"arrow-bar-down\"\n  | \"arrow-bar-left\"\n  | \"arrow-bar-right\"\n  | \"arrow-bar-up\"\n  | \"arrow-clockwise\"\n  | \"arrow-counterclockwise\"\n  | \"arrow-down-circle-fill\"\n  | \"arrow-down-circle\"\n  | \"arrow-down-left-circle-fill\"\n  | \"arrow-down-left-circle\"\n  | \"arrow-down-left-square-fill\"\n  | \"arrow-down-left-square\"\n  | \"arrow-down-left\"\n  | \"arrow-down-right-circle-fill\"\n  | \"arrow-down-right-circle\"\n  | \"arrow-down-right-square-fill\"\n  | \"arrow-down-right-square\"\n  | \"arrow-down-right\"\n  | \"arrow-down-short\"\n  | \"arrow-down-square-fill\"\n  | \"arrow-down-square\"\n  | \"arrow-down-up\"\n  | \"arrow-down\"\n  | \"arrow-left-circle-fill\"\n  | \"arrow-left-circle\"\n  | \"arrow-left-right\"\n  | \"arrow-left-short\"\n  | \"arrow-left-square-fill\"\n  | \"arrow-left-square\"\n  | \"arrow-left\"\n  | \"arrow-repeat\"\n  | \"arrow-return-left\"\n  | \"arrow-return-right\"\n  | \"arrow-right-circle-fill\"\n  | \"arrow-right-circle\"\n  | \"arrow-right-short\"\n  | \"arrow-right-square-fill\"\n  | \"arrow-right-square\"\n  | \"arrow-right\"\n  | \"arrow-through-heart-fill\"\n  | \"arrow-through-heart\"\n  | \"arrow-up-circle-fill\"\n  | \"arrow-up-circle\"\n  | \"arrow-up-left-circle-fill\"\n  | \"arrow-up-left-circle\"\n  | \"arrow-up-left-square-fill\"\n  | \"arrow-up-left-square\"\n  | \"arrow-up-left\"\n  | \"arrow-up-right-circle-fill\"\n  | \"arrow-up-right-circle\"\n  | \"arrow-up-right-square-fill\"\n  | \"arrow-up-right-square\"\n  | \"arrow-up-right\"\n  | \"arrow-up-short\"\n  | \"arrow-up-square-fill\"\n  | \"arrow-up-square\"\n  | \"arrow-up\"\n  | \"arrows-angle-contract\"\n  | \"arrows-angle-expand\"\n  | \"arrows-collapse-vertical\"\n  | \"arrows-collapse\"\n  | \"arrows-expand-vertical\"\n  | \"arrows-expand\"\n  | \"arrows-fullscreen\"\n  | \"arrows-move\"\n  | \"arrows-vertical\"\n  | \"arrows\"\n  | \"aspect-ratio-fill\"\n  | \"aspect-ratio\"\n  | \"asterisk\"\n  | \"at\"\n  | \"award-fill\"\n  | \"award\"\n  | \"back\"\n  | \"backpack-fill\"\n  | \"backpack\"\n  | \"backpack2-fill\"\n  | \"backpack2\"\n  | \"backpack3-fill\"\n  | \"backpack3\"\n  | \"backpack4-fill\"\n  | \"backpack4\"\n  | \"backspace-fill\"\n  | \"backspace-reverse-fill\"\n  | \"backspace-reverse\"\n  | \"backspace\"\n  | \"badge-3d-fill\"\n  | \"badge-3d\"\n  | \"badge-4k-fill\"\n  | \"badge-4k\"\n  | \"badge-8k-fill\"\n  | \"badge-8k\"\n  | \"badge-ad-fill\"\n  | \"badge-ad\"\n  | \"badge-ar-fill\"\n  | \"badge-ar\"\n  | \"badge-cc-fill\"\n  | \"badge-cc\"\n  | \"badge-hd-fill\"\n  | \"badge-hd\"\n  | \"badge-sd-fill\"\n  | \"badge-sd\"\n  | \"badge-tm-fill\"\n  | \"badge-tm\"\n  | \"badge-vo-fill\"\n  | \"badge-vo\"\n  | \"badge-vr-fill\"\n  | \"badge-vr\"\n  | \"badge-wc-fill\"\n  | \"badge-wc\"\n  | \"bag-check-fill\"\n  | \"bag-check\"\n  | \"bag-dash-fill\"\n  | \"bag-dash\"\n  | \"bag-fill\"\n  | \"bag-heart-fill\"\n  | \"bag-heart\"\n  | \"bag-plus-fill\"\n  | \"bag-plus\"\n  | \"bag-x-fill\"\n  | \"bag-x\"\n  | \"bag\"\n  | \"balloon-fill\"\n  | \"balloon-heart-fill\"\n  | \"balloon-heart\"\n  | \"balloon\"\n  | \"ban-fill\"\n  | \"ban\"\n  | \"bandaid-fill\"\n  | \"bandaid\"\n  | \"bank\"\n  | \"bank2\"\n  | \"bar-chart-fill\"\n  | \"bar-chart-line-fill\"\n  | \"bar-chart-line\"\n  | \"bar-chart-steps\"\n  | \"bar-chart\"\n  | \"basket-fill\"\n  | \"basket\"\n  | \"basket2-fill\"\n  | \"basket2\"\n  | \"basket3-fill\"\n  | \"basket3\"\n  | \"battery-charging\"\n  | \"battery-full\"\n  | \"battery-half\"\n  | \"battery-low\"\n  | \"battery\"\n  | \"beaker-fill\"\n  | \"beaker\"\n  | \"behance\"\n  | \"bell-fill\"\n  | \"bell-slash-fill\"\n  | \"bell-slash\"\n  | \"bell\"\n  | \"bezier\"\n  | \"bezier2\"\n  | \"bicycle\"\n  | \"bing\"\n  | \"binoculars-fill\"\n  | \"binoculars\"\n  | \"blockquote-left\"\n  | \"blockquote-right\"\n  | \"bluesky\"\n  | \"bluetooth\"\n  | \"body-text\"\n  | \"book-fill\"\n  | \"book-half\"\n  | \"book\"\n  | \"bookmark-check-fill\"\n  | \"bookmark-check\"\n  | \"bookmark-dash-fill\"\n  | \"bookmark-dash\"\n  | \"bookmark-fill\"\n  | \"bookmark-heart-fill\"\n  | \"bookmark-heart\"\n  | \"bookmark-plus-fill\"\n  | \"bookmark-plus\"\n  | \"bookmark-star-fill\"\n  | \"bookmark-star\"\n  | \"bookmark-x-fill\"\n  | \"bookmark-x\"\n  | \"bookmark\"\n  | \"bookmarks-fill\"\n  | \"bookmarks\"\n  | \"bookshelf\"\n  | \"boombox-fill\"\n  | \"boombox\"\n  | \"bootstrap-fill\"\n  | \"bootstrap-reboot\"\n  | \"bootstrap\"\n  | \"border-all\"\n  | \"border-bottom\"\n  | \"border-center\"\n  | \"border-inner\"\n  | \"border-left\"\n  | \"border-middle\"\n  | \"border-outer\"\n  | \"border-right\"\n  | \"border-style\"\n  | \"border-top\"\n  | \"border-width\"\n  | \"border\"\n  | \"bounding-box-circles\"\n  | \"bounding-box\"\n  | \"box-arrow-down-left\"\n  | \"box-arrow-down-right\"\n  | \"box-arrow-down\"\n  | \"box-arrow-in-down-left\"\n  | \"box-arrow-in-down-right\"\n  | \"box-arrow-in-down\"\n  | \"box-arrow-in-left\"\n  | \"box-arrow-in-right\"\n  | \"box-arrow-in-up-left\"\n  | \"box-arrow-in-up-right\"\n  | \"box-arrow-in-up\"\n  | \"box-arrow-left\"\n  | \"box-arrow-right\"\n  | \"box-arrow-up-left\"\n  | \"box-arrow-up-right\"\n  | \"box-arrow-up\"\n  | \"box-fill\"\n  | \"box-seam-fill\"\n  | \"box-seam\"\n  | \"box\"\n  | \"box2-fill\"\n  | \"box2-heart-fill\"\n  | \"box2-heart\"\n  | \"box2\"\n  | \"boxes\"\n  | \"braces-asterisk\"\n  | \"braces\"\n  | \"bricks\"\n  | \"briefcase-fill\"\n  | \"briefcase\"\n  | \"brightness-alt-high-fill\"\n  | \"brightness-alt-high\"\n  | \"brightness-alt-low-fill\"\n  | \"brightness-alt-low\"\n  | \"brightness-high-fill\"\n  | \"brightness-high\"\n  | \"brightness-low-fill\"\n  | \"brightness-low\"\n  | \"brilliance\"\n  | \"broadcast-pin\"\n  | \"broadcast\"\n  | \"browser-chrome\"\n  | \"browser-edge\"\n  | \"browser-firefox\"\n  | \"browser-safari\"\n  | \"brush-fill\"\n  | \"brush\"\n  | \"bucket-fill\"\n  | \"bucket\"\n  | \"bug-fill\"\n  | \"bug\"\n  | \"building-add\"\n  | \"building-check\"\n  | \"building-dash\"\n  | \"building-down\"\n  | \"building-exclamation\"\n  | \"building-fill-add\"\n  | \"building-fill-check\"\n  | \"building-fill-dash\"\n  | \"building-fill-down\"\n  | \"building-fill-exclamation\"\n  | \"building-fill-gear\"\n  | \"building-fill-lock\"\n  | \"building-fill-slash\"\n  | \"building-fill-up\"\n  | \"building-fill-x\"\n  | \"building-fill\"\n  | \"building-gear\"\n  | \"building-lock\"\n  | \"building-slash\"\n  | \"building-up\"\n  | \"building-x\"\n  | \"building\"\n  | \"buildings-fill\"\n  | \"buildings\"\n  | \"bullseye\"\n  | \"bus-front-fill\"\n  | \"bus-front\"\n  | \"c-circle-fill\"\n  | \"c-circle\"\n  | \"c-square-fill\"\n  | \"c-square\"\n  | \"cake-fill\"\n  | \"cake\"\n  | \"cake2-fill\"\n  | \"cake2\"\n  | \"calculator-fill\"\n  | \"calculator\"\n  | \"calendar-check-fill\"\n  | \"calendar-check\"\n  | \"calendar-date-fill\"\n  | \"calendar-date\"\n  | \"calendar-day-fill\"\n  | \"calendar-day\"\n  | \"calendar-event-fill\"\n  | \"calendar-event\"\n  | \"calendar-fill\"\n  | \"calendar-heart-fill\"\n  | \"calendar-heart\"\n  | \"calendar-minus-fill\"\n  | \"calendar-minus\"\n  | \"calendar-month-fill\"\n  | \"calendar-month\"\n  | \"calendar-plus-fill\"\n  | \"calendar-plus\"\n  | \"calendar-range-fill\"\n  | \"calendar-range\"\n  | \"calendar-week-fill\"\n  | \"calendar-week\"\n  | \"calendar-x-fill\"\n  | \"calendar-x\"\n  | \"calendar\"\n  | \"calendar2-check-fill\"\n  | \"calendar2-check\"\n  | \"calendar2-date-fill\"\n  | \"calendar2-date\"\n  | \"calendar2-day-fill\"\n  | \"calendar2-day\"\n  | \"calendar2-event-fill\"\n  | \"calendar2-event\"\n  | \"calendar2-fill\"\n  | \"calendar2-heart-fill\"\n  | \"calendar2-heart\"\n  | \"calendar2-minus-fill\"\n  | \"calendar2-minus\"\n  | \"calendar2-month-fill\"\n  | \"calendar2-month\"\n  | \"calendar2-plus-fill\"\n  | \"calendar2-plus\"\n  | \"calendar2-range-fill\"\n  | \"calendar2-range\"\n  | \"calendar2-week-fill\"\n  | \"calendar2-week\"\n  | \"calendar2-x-fill\"\n  | \"calendar2-x\"\n  | \"calendar2\"\n  | \"calendar3-event-fill\"\n  | \"calendar3-event\"\n  | \"calendar3-fill\"\n  | \"calendar3-range-fill\"\n  | \"calendar3-range\"\n  | \"calendar3-week-fill\"\n  | \"calendar3-week\"\n  | \"calendar3\"\n  | \"calendar4-event\"\n  | \"calendar4-range\"\n  | \"calendar4-week\"\n  | \"calendar4\"\n  | \"camera-fill\"\n  | \"camera-reels-fill\"\n  | \"camera-reels\"\n  | \"camera-video-fill\"\n  | \"camera-video-off-fill\"\n  | \"camera-video-off\"\n  | \"camera-video\"\n  | \"camera\"\n  | \"camera2\"\n  | \"capslock-fill\"\n  | \"capslock\"\n  | \"capsule-pill\"\n  | \"capsule\"\n  | \"car-front-fill\"\n  | \"car-front\"\n  | \"card-checklist\"\n  | \"card-heading\"\n  | \"card-image\"\n  | \"card-list\"\n  | \"card-text\"\n  | \"caret-down-fill\"\n  | \"caret-down-square-fill\"\n  | \"caret-down-square\"\n  | \"caret-down\"\n  | \"caret-left-fill\"\n  | \"caret-left-square-fill\"\n  | \"caret-left-square\"\n  | \"caret-left\"\n  | \"caret-right-fill\"\n  | \"caret-right-square-fill\"\n  | \"caret-right-square\"\n  | \"caret-right\"\n  | \"caret-up-fill\"\n  | \"caret-up-square-fill\"\n  | \"caret-up-square\"\n  | \"caret-up\"\n  | \"cart-check-fill\"\n  | \"cart-check\"\n  | \"cart-dash-fill\"\n  | \"cart-dash\"\n  | \"cart-fill\"\n  | \"cart-plus-fill\"\n  | \"cart-plus\"\n  | \"cart-x-fill\"\n  | \"cart-x\"\n  | \"cart\"\n  | \"cart2\"\n  | \"cart3\"\n  | \"cart4\"\n  | \"cash-coin\"\n  | \"cash-stack\"\n  | \"cash\"\n  | \"cassette-fill\"\n  | \"cassette\"\n  | \"cast\"\n  | \"cc-circle-fill\"\n  | \"cc-circle\"\n  | \"cc-square-fill\"\n  | \"cc-square\"\n  | \"chat-dots-fill\"\n  | \"chat-dots\"\n  | \"chat-fill\"\n  | \"chat-heart-fill\"\n  | \"chat-heart\"\n  | \"chat-left-dots-fill\"\n  | \"chat-left-dots\"\n  | \"chat-left-fill\"\n  | \"chat-left-heart-fill\"\n  | \"chat-left-heart\"\n  | \"chat-left-quote-fill\"\n  | \"chat-left-quote\"\n  | \"chat-left-text-fill\"\n  | \"chat-left-text\"\n  | \"chat-left\"\n  | \"chat-quote-fill\"\n  | \"chat-quote\"\n  | \"chat-right-dots-fill\"\n  | \"chat-right-dots\"\n  | \"chat-right-fill\"\n  | \"chat-right-heart-fill\"\n  | \"chat-right-heart\"\n  | \"chat-right-quote-fill\"\n  | \"chat-right-quote\"\n  | \"chat-right-text-fill\"\n  | \"chat-right-text\"\n  | \"chat-right\"\n  | \"chat-square-dots-fill\"\n  | \"chat-square-dots\"\n  | \"chat-square-fill\"\n  | \"chat-square-heart-fill\"\n  | \"chat-square-heart\"\n  | \"chat-square-quote-fill\"\n  | \"chat-square-quote\"\n  | \"chat-square-text-fill\"\n  | \"chat-square-text\"\n  | \"chat-square\"\n  | \"chat-text-fill\"\n  | \"chat-text\"\n  | \"chat\"\n  | \"check-all\"\n  | \"check-circle-fill\"\n  | \"check-circle\"\n  | \"check-lg\"\n  | \"check-square-fill\"\n  | \"check-square\"\n  | \"check\"\n  | \"check2-all\"\n  | \"check2-circle\"\n  | \"check2-square\"\n  | \"check2\"\n  | \"chevron-bar-contract\"\n  | \"chevron-bar-down\"\n  | \"chevron-bar-expand\"\n  | \"chevron-bar-left\"\n  | \"chevron-bar-right\"\n  | \"chevron-bar-up\"\n  | \"chevron-compact-down\"\n  | \"chevron-compact-left\"\n  | \"chevron-compact-right\"\n  | \"chevron-compact-up\"\n  | \"chevron-contract\"\n  | \"chevron-double-down\"\n  | \"chevron-double-left\"\n  | \"chevron-double-right\"\n  | \"chevron-double-up\"\n  | \"chevron-down\"\n  | \"chevron-expand\"\n  | \"chevron-left\"\n  | \"chevron-right\"\n  | \"chevron-up\"\n  | \"circle-fill\"\n  | \"circle-half\"\n  | \"circle-square\"\n  | \"circle\"\n  | \"claude\"\n  | \"clipboard-check-fill\"\n  | \"clipboard-check\"\n  | \"clipboard-data-fill\"\n  | \"clipboard-data\"\n  | \"clipboard-fill\"\n  | \"clipboard-heart-fill\"\n  | \"clipboard-heart\"\n  | \"clipboard-minus-fill\"\n  | \"clipboard-minus\"\n  | \"clipboard-plus-fill\"\n  | \"clipboard-plus\"\n  | \"clipboard-pulse\"\n  | \"clipboard-x-fill\"\n  | \"clipboard-x\"\n  | \"clipboard\"\n  | \"clipboard2-check-fill\"\n  | \"clipboard2-check\"\n  | \"clipboard2-data-fill\"\n  | \"clipboard2-data\"\n  | \"clipboard2-fill\"\n  | \"clipboard2-heart-fill\"\n  | \"clipboard2-heart\"\n  | \"clipboard2-minus-fill\"\n  | \"clipboard2-minus\"\n  | \"clipboard2-plus-fill\"\n  | \"clipboard2-plus\"\n  | \"clipboard2-pulse-fill\"\n  | \"clipboard2-pulse\"\n  | \"clipboard2-x-fill\"\n  | \"clipboard2-x\"\n  | \"clipboard2\"\n  | \"clock-fill\"\n  | \"clock-history\"\n  | \"clock\"\n  | \"cloud-arrow-down-fill\"\n  | \"cloud-arrow-down\"\n  | \"cloud-arrow-up-fill\"\n  | \"cloud-arrow-up\"\n  | \"cloud-check-fill\"\n  | \"cloud-check\"\n  | \"cloud-download-fill\"\n  | \"cloud-download\"\n  | \"cloud-drizzle-fill\"\n  | \"cloud-drizzle\"\n  | \"cloud-fill\"\n  | \"cloud-fog-fill\"\n  | \"cloud-fog\"\n  | \"cloud-fog2-fill\"\n  | \"cloud-fog2\"\n  | \"cloud-hail-fill\"\n  | \"cloud-hail\"\n  | \"cloud-haze-fill\"\n  | \"cloud-haze\"\n  | \"cloud-haze2-fill\"\n  | \"cloud-haze2\"\n  | \"cloud-lightning-fill\"\n  | \"cloud-lightning-rain-fill\"\n  | \"cloud-lightning-rain\"\n  | \"cloud-lightning\"\n  | \"cloud-minus-fill\"\n  | \"cloud-minus\"\n  | \"cloud-moon-fill\"\n  | \"cloud-moon\"\n  | \"cloud-plus-fill\"\n  | \"cloud-plus\"\n  | \"cloud-rain-fill\"\n  | \"cloud-rain-heavy-fill\"\n  | \"cloud-rain-heavy\"\n  | \"cloud-rain\"\n  | \"cloud-slash-fill\"\n  | \"cloud-slash\"\n  | \"cloud-sleet-fill\"\n  | \"cloud-sleet\"\n  | \"cloud-snow-fill\"\n  | \"cloud-snow\"\n  | \"cloud-sun-fill\"\n  | \"cloud-sun\"\n  | \"cloud-upload-fill\"\n  | \"cloud-upload\"\n  | \"cloud\"\n  | \"clouds-fill\"\n  | \"clouds\"\n  | \"cloudy-fill\"\n  | \"cloudy\"\n  | \"code-slash\"\n  | \"code-square\"\n  | \"code\"\n  | \"coin\"\n  | \"collection-fill\"\n  | \"collection-play-fill\"\n  | \"collection-play\"\n  | \"collection\"\n  | \"columns-gap\"\n  | \"columns\"\n  | \"command\"\n  | \"compass-fill\"\n  | \"compass\"\n  | \"cone-striped\"\n  | \"cone\"\n  | \"controller\"\n  | \"cookie\"\n  | \"copy\"\n  | \"cpu-fill\"\n  | \"cpu\"\n  | \"credit-card-2-back-fill\"\n  | \"credit-card-2-back\"\n  | \"credit-card-2-front-fill\"\n  | \"credit-card-2-front\"\n  | \"credit-card-fill\"\n  | \"credit-card\"\n  | \"crop\"\n  | \"crosshair\"\n  | \"crosshair2\"\n  | \"css\"\n  | \"cup-fill\"\n  | \"cup-hot-fill\"\n  | \"cup-hot\"\n  | \"cup-straw\"\n  | \"cup\"\n  | \"currency-bitcoin\"\n  | \"currency-dollar\"\n  | \"currency-euro\"\n  | \"currency-exchange\"\n  | \"currency-pound\"\n  | \"currency-rupee\"\n  | \"currency-yen\"\n  | \"cursor-fill\"\n  | \"cursor-text\"\n  | \"cursor\"\n  | \"dash-circle-dotted\"\n  | \"dash-circle-fill\"\n  | \"dash-circle\"\n  | \"dash-lg\"\n  | \"dash-square-dotted\"\n  | \"dash-square-fill\"\n  | \"dash-square\"\n  | \"dash\"\n  | \"database-add\"\n  | \"database-check\"\n  | \"database-dash\"\n  | \"database-down\"\n  | \"database-exclamation\"\n  | \"database-fill-add\"\n  | \"database-fill-check\"\n  | \"database-fill-dash\"\n  | \"database-fill-down\"\n  | \"database-fill-exclamation\"\n  | \"database-fill-gear\"\n  | \"database-fill-lock\"\n  | \"database-fill-slash\"\n  | \"database-fill-up\"\n  | \"database-fill-x\"\n  | \"database-fill\"\n  | \"database-gear\"\n  | \"database-lock\"\n  | \"database-slash\"\n  | \"database-up\"\n  | \"database-x\"\n  | \"database\"\n  | \"device-hdd-fill\"\n  | \"device-hdd\"\n  | \"device-ssd-fill\"\n  | \"device-ssd\"\n  | \"diagram-2-fill\"\n  | \"diagram-2\"\n  | \"diagram-3-fill\"\n  | \"diagram-3\"\n  | \"diamond-fill\"\n  | \"diamond-half\"\n  | \"diamond\"\n  | \"dice-1-fill\"\n  | \"dice-1\"\n  | \"dice-2-fill\"\n  | \"dice-2\"\n  | \"dice-3-fill\"\n  | \"dice-3\"\n  | \"dice-4-fill\"\n  | \"dice-4\"\n  | \"dice-5-fill\"\n  | \"dice-5\"\n  | \"dice-6-fill\"\n  | \"dice-6\"\n  | \"disc-fill\"\n  | \"disc\"\n  | \"discord\"\n  | \"display-fill\"\n  | \"display\"\n  | \"displayport-fill\"\n  | \"displayport\"\n  | \"distribute-horizontal\"\n  | \"distribute-vertical\"\n  | \"door-closed-fill\"\n  | \"door-closed\"\n  | \"door-open-fill\"\n  | \"door-open\"\n  | \"dot\"\n  | \"download\"\n  | \"dpad-fill\"\n  | \"dpad\"\n  | \"dribbble\"\n  | \"dropbox\"\n  | \"droplet-fill\"\n  | \"droplet-half\"\n  | \"droplet\"\n  | \"duffle-fill\"\n  | \"duffle\"\n  | \"ear-fill\"\n  | \"ear\"\n  | \"earbuds\"\n  | \"easel-fill\"\n  | \"easel\"\n  | \"easel2-fill\"\n  | \"easel2\"\n  | \"easel3-fill\"\n  | \"easel3\"\n  | \"egg-fill\"\n  | \"egg-fried\"\n  | \"egg\"\n  | \"eject-fill\"\n  | \"eject\"\n  | \"emoji-angry-fill\"\n  | \"emoji-angry\"\n  | \"emoji-astonished-fill\"\n  | \"emoji-astonished\"\n  | \"emoji-dizzy-fill\"\n  | \"emoji-dizzy\"\n  | \"emoji-expressionless-fill\"\n  | \"emoji-expressionless\"\n  | \"emoji-frown-fill\"\n  | \"emoji-frown\"\n  | \"emoji-grimace-fill\"\n  | \"emoji-grimace\"\n  | \"emoji-grin-fill\"\n  | \"emoji-grin\"\n  | \"emoji-heart-eyes-fill\"\n  | \"emoji-heart-eyes\"\n  | \"emoji-kiss-fill\"\n  | \"emoji-kiss\"\n  | \"emoji-laughing-fill\"\n  | \"emoji-laughing\"\n  | \"emoji-neutral-fill\"\n  | \"emoji-neutral\"\n  | \"emoji-smile-fill\"\n  | \"emoji-smile-upside-down-fill\"\n  | \"emoji-smile-upside-down\"\n  | \"emoji-smile\"\n  | \"emoji-sunglasses-fill\"\n  | \"emoji-sunglasses\"\n  | \"emoji-surprise-fill\"\n  | \"emoji-surprise\"\n  | \"emoji-tear-fill\"\n  | \"emoji-tear\"\n  | \"emoji-wink-fill\"\n  | \"emoji-wink\"\n  | \"envelope-arrow-down-fill\"\n  | \"envelope-arrow-down\"\n  | \"envelope-arrow-up-fill\"\n  | \"envelope-arrow-up\"\n  | \"envelope-at-fill\"\n  | \"envelope-at\"\n  | \"envelope-check-fill\"\n  | \"envelope-check\"\n  | \"envelope-dash-fill\"\n  | \"envelope-dash\"\n  | \"envelope-exclamation-fill\"\n  | \"envelope-exclamation\"\n  | \"envelope-fill\"\n  | \"envelope-heart-fill\"\n  | \"envelope-heart\"\n  | \"envelope-open-fill\"\n  | \"envelope-open-heart-fill\"\n  | \"envelope-open-heart\"\n  | \"envelope-open\"\n  | \"envelope-paper-fill\"\n  | \"envelope-paper-heart-fill\"\n  | \"envelope-paper-heart\"\n  | \"envelope-paper\"\n  | \"envelope-plus-fill\"\n  | \"envelope-plus\"\n  | \"envelope-slash-fill\"\n  | \"envelope-slash\"\n  | \"envelope-x-fill\"\n  | \"envelope-x\"\n  | \"envelope\"\n  | \"eraser-fill\"\n  | \"eraser\"\n  | \"escape\"\n  | \"ethernet\"\n  | \"ev-front-fill\"\n  | \"ev-front\"\n  | \"ev-station-fill\"\n  | \"ev-station\"\n  | \"exclamation-circle-fill\"\n  | \"exclamation-circle\"\n  | \"exclamation-diamond-fill\"\n  | \"exclamation-diamond\"\n  | \"exclamation-lg\"\n  | \"exclamation-octagon-fill\"\n  | \"exclamation-octagon\"\n  | \"exclamation-square-fill\"\n  | \"exclamation-square\"\n  | \"exclamation-triangle-fill\"\n  | \"exclamation-triangle\"\n  | \"exclamation\"\n  | \"exclude\"\n  | \"explicit-fill\"\n  | \"explicit\"\n  | \"exposure\"\n  | \"eye-fill\"\n  | \"eye-slash-fill\"\n  | \"eye-slash\"\n  | \"eye\"\n  | \"eyedropper\"\n  | \"eyeglasses\"\n  | \"facebook\"\n  | \"fan\"\n  | \"fast-forward-btn-fill\"\n  | \"fast-forward-btn\"\n  | \"fast-forward-circle-fill\"\n  | \"fast-forward-circle\"\n  | \"fast-forward-fill\"\n  | \"fast-forward\"\n  | \"feather\"\n  | \"feather2\"\n  | \"file-arrow-down-fill\"\n  | \"file-arrow-down\"\n  | \"file-arrow-up-fill\"\n  | \"file-arrow-up\"\n  | \"file-bar-graph-fill\"\n  | \"file-bar-graph\"\n  | \"file-binary-fill\"\n  | \"file-binary\"\n  | \"file-break-fill\"\n  | \"file-break\"\n  | \"file-check-fill\"\n  | \"file-check\"\n  | \"file-code-fill\"\n  | \"file-code\"\n  | \"file-diff-fill\"\n  | \"file-diff\"\n  | \"file-earmark-arrow-down-fill\"\n  | \"file-earmark-arrow-down\"\n  | \"file-earmark-arrow-up-fill\"\n  | \"file-earmark-arrow-up\"\n  | \"file-earmark-bar-graph-fill\"\n  | \"file-earmark-bar-graph\"\n  | \"file-earmark-binary-fill\"\n  | \"file-earmark-binary\"\n  | \"file-earmark-break-fill\"\n  | \"file-earmark-break\"\n  | \"file-earmark-check-fill\"\n  | \"file-earmark-check\"\n  | \"file-earmark-code-fill\"\n  | \"file-earmark-code\"\n  | \"file-earmark-diff-fill\"\n  | \"file-earmark-diff\"\n  | \"file-earmark-easel-fill\"\n  | \"file-earmark-easel\"\n  | \"file-earmark-excel-fill\"\n  | \"file-earmark-excel\"\n  | \"file-earmark-fill\"\n  | \"file-earmark-font-fill\"\n  | \"file-earmark-font\"\n  | \"file-earmark-image-fill\"\n  | \"file-earmark-image\"\n  | \"file-earmark-lock-fill\"\n  | \"file-earmark-lock\"\n  | \"file-earmark-lock2-fill\"\n  | \"file-earmark-lock2\"\n  | \"file-earmark-medical-fill\"\n  | \"file-earmark-medical\"\n  | \"file-earmark-minus-fill\"\n  | \"file-earmark-minus\"\n  | \"file-earmark-music-fill\"\n  | \"file-earmark-music\"\n  | \"file-earmark-pdf-fill\"\n  | \"file-earmark-pdf\"\n  | \"file-earmark-person-fill\"\n  | \"file-earmark-person\"\n  | \"file-earmark-play-fill\"\n  | \"file-earmark-play\"\n  | \"file-earmark-plus-fill\"\n  | \"file-earmark-plus\"\n  | \"file-earmark-post-fill\"\n  | \"file-earmark-post\"\n  | \"file-earmark-ppt-fill\"\n  | \"file-earmark-ppt\"\n  | \"file-earmark-richtext-fill\"\n  | \"file-earmark-richtext\"\n  | \"file-earmark-ruled-fill\"\n  | \"file-earmark-ruled\"\n  | \"file-earmark-slides-fill\"\n  | \"file-earmark-slides\"\n  | \"file-earmark-spreadsheet-fill\"\n  | \"file-earmark-spreadsheet\"\n  | \"file-earmark-text-fill\"\n  | \"file-earmark-text\"\n  | \"file-earmark-word-fill\"\n  | \"file-earmark-word\"\n  | \"file-earmark-x-fill\"\n  | \"file-earmark-x\"\n  | \"file-earmark-zip-fill\"\n  | \"file-earmark-zip\"\n  | \"file-earmark\"\n  | \"file-easel-fill\"\n  | \"file-easel\"\n  | \"file-excel-fill\"\n  | \"file-excel\"\n  | \"file-fill\"\n  | \"file-font-fill\"\n  | \"file-font\"\n  | \"file-image-fill\"\n  | \"file-image\"\n  | \"file-lock-fill\"\n  | \"file-lock\"\n  | \"file-lock2-fill\"\n  | \"file-lock2\"\n  | \"file-medical-fill\"\n  | \"file-medical\"\n  | \"file-minus-fill\"\n  | \"file-minus\"\n  | \"file-music-fill\"\n  | \"file-music\"\n  | \"file-pdf-fill\"\n  | \"file-pdf\"\n  | \"file-person-fill\"\n  | \"file-person\"\n  | \"file-play-fill\"\n  | \"file-play\"\n  | \"file-plus-fill\"\n  | \"file-plus\"\n  | \"file-post-fill\"\n  | \"file-post\"\n  | \"file-ppt-fill\"\n  | \"file-ppt\"\n  | \"file-richtext-fill\"\n  | \"file-richtext\"\n  | \"file-ruled-fill\"\n  | \"file-ruled\"\n  | \"file-slides-fill\"\n  | \"file-slides\"\n  | \"file-spreadsheet-fill\"\n  | \"file-spreadsheet\"\n  | \"file-text-fill\"\n  | \"file-text\"\n  | \"file-word-fill\"\n  | \"file-word\"\n  | \"file-x-fill\"\n  | \"file-x\"\n  | \"file-zip-fill\"\n  | \"file-zip\"\n  | \"file\"\n  | \"files-alt\"\n  | \"files\"\n  | \"filetype-aac\"\n  | \"filetype-ai\"\n  | \"filetype-bmp\"\n  | \"filetype-cs\"\n  | \"filetype-css\"\n  | \"filetype-csv\"\n  | \"filetype-doc\"\n  | \"filetype-docx\"\n  | \"filetype-exe\"\n  | \"filetype-gif\"\n  | \"filetype-heic\"\n  | \"filetype-html\"\n  | \"filetype-java\"\n  | \"filetype-jpg\"\n  | \"filetype-js\"\n  | \"filetype-json\"\n  | \"filetype-jsx\"\n  | \"filetype-key\"\n  | \"filetype-m4p\"\n  | \"filetype-md\"\n  | \"filetype-mdx\"\n  | \"filetype-mov\"\n  | \"filetype-mp3\"\n  | \"filetype-mp4\"\n  | \"filetype-otf\"\n  | \"filetype-pdf\"\n  | \"filetype-php\"\n  | \"filetype-png\"\n  | \"filetype-ppt\"\n  | \"filetype-pptx\"\n  | \"filetype-psd\"\n  | \"filetype-py\"\n  | \"filetype-raw\"\n  | \"filetype-rb\"\n  | \"filetype-sass\"\n  | \"filetype-scss\"\n  | \"filetype-sh\"\n  | \"filetype-sql\"\n  | \"filetype-svg\"\n  | \"filetype-tiff\"\n  | \"filetype-tsx\"\n  | \"filetype-ttf\"\n  | \"filetype-txt\"\n  | \"filetype-wav\"\n  | \"filetype-woff\"\n  | \"filetype-xls\"\n  | \"filetype-xlsx\"\n  | \"filetype-xml\"\n  | \"filetype-yml\"\n  | \"film\"\n  | \"filter-circle-fill\"\n  | \"filter-circle\"\n  | \"filter-left\"\n  | \"filter-right\"\n  | \"filter-square-fill\"\n  | \"filter-square\"\n  | \"filter\"\n  | \"fingerprint\"\n  | \"fire\"\n  | \"flag-fill\"\n  | \"flag\"\n  | \"flask-fill\"\n  | \"flask-florence-fill\"\n  | \"flask-florence\"\n  | \"flask\"\n  | \"floppy-fill\"\n  | \"floppy\"\n  | \"floppy2-fill\"\n  | \"floppy2\"\n  | \"flower1\"\n  | \"flower2\"\n  | \"flower3\"\n  | \"folder-check\"\n  | \"folder-fill\"\n  | \"folder-minus\"\n  | \"folder-plus\"\n  | \"folder-symlink-fill\"\n  | \"folder-symlink\"\n  | \"folder-x\"\n  | \"folder\"\n  | \"folder2-open\"\n  | \"folder2\"\n  | \"fonts\"\n  | \"fork-knife\"\n  | \"forward-fill\"\n  | \"forward\"\n  | \"front\"\n  | \"fuel-pump-diesel-fill\"\n  | \"fuel-pump-diesel\"\n  | \"fuel-pump-fill\"\n  | \"fuel-pump\"\n  | \"fullscreen-exit\"\n  | \"fullscreen\"\n  | \"funnel-fill\"\n  | \"funnel\"\n  | \"gear-fill\"\n  | \"gear-wide-connected\"\n  | \"gear-wide\"\n  | \"gear\"\n  | \"gem\"\n  | \"gender-ambiguous\"\n  | \"gender-female\"\n  | \"gender-male\"\n  | \"gender-neuter\"\n  | \"gender-trans\"\n  | \"geo-alt-fill\"\n  | \"geo-alt\"\n  | \"geo-fill\"\n  | \"geo\"\n  | \"gift-fill\"\n  | \"gift\"\n  | \"git\"\n  | \"github\"\n  | \"gitlab\"\n  | \"globe-americas-fill\"\n  | \"globe-americas\"\n  | \"globe-asia-australia-fill\"\n  | \"globe-asia-australia\"\n  | \"globe-central-south-asia-fill\"\n  | \"globe-central-south-asia\"\n  | \"globe-europe-africa-fill\"\n  | \"globe-europe-africa\"\n  | \"globe\"\n  | \"globe2\"\n  | \"google-play\"\n  | \"google\"\n  | \"gpu-card\"\n  | \"graph-down-arrow\"\n  | \"graph-down\"\n  | \"graph-up-arrow\"\n  | \"graph-up\"\n  | \"grid-1x2-fill\"\n  | \"grid-1x2\"\n  | \"grid-3x2-gap-fill\"\n  | \"grid-3x2-gap\"\n  | \"grid-3x2\"\n  | \"grid-3x3-gap-fill\"\n  | \"grid-3x3-gap\"\n  | \"grid-3x3\"\n  | \"grid-fill\"\n  | \"grid\"\n  | \"grip-horizontal\"\n  | \"grip-vertical\"\n  | \"h-circle-fill\"\n  | \"h-circle\"\n  | \"h-square-fill\"\n  | \"h-square\"\n  | \"hammer\"\n  | \"hand-index-fill\"\n  | \"hand-index-thumb-fill\"\n  | \"hand-index-thumb\"\n  | \"hand-index\"\n  | \"hand-thumbs-down-fill\"\n  | \"hand-thumbs-down\"\n  | \"hand-thumbs-up-fill\"\n  | \"hand-thumbs-up\"\n  | \"handbag-fill\"\n  | \"handbag\"\n  | \"hash\"\n  | \"hdd-fill\"\n  | \"hdd-network-fill\"\n  | \"hdd-network\"\n  | \"hdd-rack-fill\"\n  | \"hdd-rack\"\n  | \"hdd-stack-fill\"\n  | \"hdd-stack\"\n  | \"hdd\"\n  | \"hdmi-fill\"\n  | \"hdmi\"\n  | \"headphones\"\n  | \"headset-vr\"\n  | \"headset\"\n  | \"heart-arrow\"\n  | \"heart-fill\"\n  | \"heart-half\"\n  | \"heart-pulse-fill\"\n  | \"heart-pulse\"\n  | \"heart\"\n  | \"heartbreak-fill\"\n  | \"heartbreak\"\n  | \"hearts\"\n  | \"heptagon-fill\"\n  | \"heptagon-half\"\n  | \"heptagon\"\n  | \"hexagon-fill\"\n  | \"hexagon-half\"\n  | \"hexagon\"\n  | \"highlighter\"\n  | \"highlights\"\n  | \"hospital-fill\"\n  | \"hospital\"\n  | \"hourglass-bottom\"\n  | \"hourglass-split\"\n  | \"hourglass-top\"\n  | \"hourglass\"\n  | \"house-add-fill\"\n  | \"house-add\"\n  | \"house-check-fill\"\n  | \"house-check\"\n  | \"house-dash-fill\"\n  | \"house-dash\"\n  | \"house-door-fill\"\n  | \"house-door\"\n  | \"house-down-fill\"\n  | \"house-down\"\n  | \"house-exclamation-fill\"\n  | \"house-exclamation\"\n  | \"house-fill\"\n  | \"house-gear-fill\"\n  | \"house-gear\"\n  | \"house-heart-fill\"\n  | \"house-heart\"\n  | \"house-lock-fill\"\n  | \"house-lock\"\n  | \"house-slash-fill\"\n  | \"house-slash\"\n  | \"house-up-fill\"\n  | \"house-up\"\n  | \"house-x-fill\"\n  | \"house-x\"\n  | \"house\"\n  | \"houses-fill\"\n  | \"houses\"\n  | \"hr\"\n  | \"hurricane\"\n  | \"hypnotize\"\n  | \"image-alt\"\n  | \"image-fill\"\n  | \"image\"\n  | \"images\"\n  | \"inbox-fill\"\n  | \"inbox\"\n  | \"inboxes-fill\"\n  | \"inboxes\"\n  | \"incognito\"\n  | \"indent\"\n  | \"infinity\"\n  | \"info-circle-fill\"\n  | \"info-circle\"\n  | \"info-lg\"\n  | \"info-square-fill\"\n  | \"info-square\"\n  | \"info\"\n  | \"input-cursor-text\"\n  | \"input-cursor\"\n  | \"instagram\"\n  | \"intersect\"\n  | \"javascript\"\n  | \"journal-album\"\n  | \"journal-arrow-down\"\n  | \"journal-arrow-up\"\n  | \"journal-bookmark-fill\"\n  | \"journal-bookmark\"\n  | \"journal-check\"\n  | \"journal-code\"\n  | \"journal-medical\"\n  | \"journal-minus\"\n  | \"journal-plus\"\n  | \"journal-richtext\"\n  | \"journal-text\"\n  | \"journal-x\"\n  | \"journal\"\n  | \"journals\"\n  | \"joystick\"\n  | \"justify-left\"\n  | \"justify-right\"\n  | \"justify\"\n  | \"kanban-fill\"\n  | \"kanban\"\n  | \"key-fill\"\n  | \"key\"\n  | \"keyboard-fill\"\n  | \"keyboard\"\n  | \"ladder\"\n  | \"lamp-fill\"\n  | \"lamp\"\n  | \"laptop-fill\"\n  | \"laptop\"\n  | \"layer-backward\"\n  | \"layer-forward\"\n  | \"layers-fill\"\n  | \"layers-half\"\n  | \"layers\"\n  | \"layout-sidebar-inset-reverse\"\n  | \"layout-sidebar-inset\"\n  | \"layout-sidebar-reverse\"\n  | \"layout-sidebar\"\n  | \"layout-split\"\n  | \"layout-text-sidebar-reverse\"\n  | \"layout-text-sidebar\"\n  | \"layout-text-window-reverse\"\n  | \"layout-text-window\"\n  | \"layout-three-columns\"\n  | \"layout-wtf\"\n  | \"leaf-fill\"\n  | \"leaf\"\n  | \"life-preserver\"\n  | \"lightbulb-fill\"\n  | \"lightbulb-off-fill\"\n  | \"lightbulb-off\"\n  | \"lightbulb\"\n  | \"lightning-charge-fill\"\n  | \"lightning-charge\"\n  | \"lightning-fill\"\n  | \"lightning\"\n  | \"line\"\n  | \"link-45deg\"\n  | \"link\"\n  | \"linkedin\"\n  | \"list-check\"\n  | \"list-columns-reverse\"\n  | \"list-columns\"\n  | \"list-nested\"\n  | \"list-ol\"\n  | \"list-stars\"\n  | \"list-task\"\n  | \"list-ul\"\n  | \"list\"\n  | \"lock-fill\"\n  | \"lock\"\n  | \"luggage-fill\"\n  | \"luggage\"\n  | \"lungs-fill\"\n  | \"lungs\"\n  | \"magic\"\n  | \"magnet-fill\"\n  | \"magnet\"\n  | \"mailbox-flag\"\n  | \"mailbox\"\n  | \"mailbox2-flag\"\n  | \"mailbox2\"\n  | \"map-fill\"\n  | \"map\"\n  | \"markdown-fill\"\n  | \"markdown\"\n  | \"marker-tip\"\n  | \"mask\"\n  | \"mastodon\"\n  | \"measuring-cup-fill\"\n  | \"measuring-cup\"\n  | \"medium\"\n  | \"megaphone-fill\"\n  | \"megaphone\"\n  | \"memory\"\n  | \"menu-app-fill\"\n  | \"menu-app\"\n  | \"menu-button-fill\"\n  | \"menu-button-wide-fill\"\n  | \"menu-button-wide\"\n  | \"menu-button\"\n  | \"menu-down\"\n  | \"menu-up\"\n  | \"messenger\"\n  | \"meta\"\n  | \"mic-fill\"\n  | \"mic-mute-fill\"\n  | \"mic-mute\"\n  | \"mic\"\n  | \"microsoft-teams\"\n  | \"microsoft\"\n  | \"minecart-loaded\"\n  | \"minecart\"\n  | \"modem-fill\"\n  | \"modem\"\n  | \"moisture\"\n  | \"moon-fill\"\n  | \"moon-stars-fill\"\n  | \"moon-stars\"\n  | \"moon\"\n  | \"mortarboard-fill\"\n  | \"mortarboard\"\n  | \"motherboard-fill\"\n  | \"motherboard\"\n  | \"mouse-fill\"\n  | \"mouse\"\n  | \"mouse2-fill\"\n  | \"mouse2\"\n  | \"mouse3-fill\"\n  | \"mouse3\"\n  | \"music-note-beamed\"\n  | \"music-note-list\"\n  | \"music-note\"\n  | \"music-player-fill\"\n  | \"music-player\"\n  | \"newspaper\"\n  | \"nintendo-switch\"\n  | \"node-minus-fill\"\n  | \"node-minus\"\n  | \"node-plus-fill\"\n  | \"node-plus\"\n  | \"noise-reduction\"\n  | \"nut-fill\"\n  | \"nut\"\n  | \"nvidia\"\n  | \"nvme-fill\"\n  | \"nvme\"\n  | \"octagon-fill\"\n  | \"octagon-half\"\n  | \"octagon\"\n  | \"openai\"\n  | \"opencollective\"\n  | \"optical-audio-fill\"\n  | \"optical-audio\"\n  | \"option\"\n  | \"outlet\"\n  | \"p-circle-fill\"\n  | \"p-circle\"\n  | \"p-square-fill\"\n  | \"p-square\"\n  | \"paint-bucket\"\n  | \"palette-fill\"\n  | \"palette\"\n  | \"palette2\"\n  | \"paperclip\"\n  | \"paragraph\"\n  | \"pass-fill\"\n  | \"pass\"\n  | \"passport-fill\"\n  | \"passport\"\n  | \"patch-check-fill\"\n  | \"patch-check\"\n  | \"patch-exclamation-fill\"\n  | \"patch-exclamation\"\n  | \"patch-minus-fill\"\n  | \"patch-minus\"\n  | \"patch-plus-fill\"\n  | \"patch-plus\"\n  | \"patch-question-fill\"\n  | \"patch-question\"\n  | \"pause-btn-fill\"\n  | \"pause-btn\"\n  | \"pause-circle-fill\"\n  | \"pause-circle\"\n  | \"pause-fill\"\n  | \"pause\"\n  | \"paypal\"\n  | \"pc-display-horizontal\"\n  | \"pc-display\"\n  | \"pc-horizontal\"\n  | \"pc\"\n  | \"pci-card-network\"\n  | \"pci-card-sound\"\n  | \"pci-card\"\n  | \"peace-fill\"\n  | \"peace\"\n  | \"pen-fill\"\n  | \"pen\"\n  | \"pencil-fill\"\n  | \"pencil-square\"\n  | \"pencil\"\n  | \"pentagon-fill\"\n  | \"pentagon-half\"\n  | \"pentagon\"\n  | \"people-fill\"\n  | \"people\"\n  | \"percent\"\n  | \"perplexity\"\n  | \"person-add\"\n  | \"person-arms-up\"\n  | \"person-badge-fill\"\n  | \"person-badge\"\n  | \"person-bounding-box\"\n  | \"person-check-fill\"\n  | \"person-check\"\n  | \"person-circle\"\n  | \"person-dash-fill\"\n  | \"person-dash\"\n  | \"person-down\"\n  | \"person-exclamation\"\n  | \"person-fill-add\"\n  | \"person-fill-check\"\n  | \"person-fill-dash\"\n  | \"person-fill-down\"\n  | \"person-fill-exclamation\"\n  | \"person-fill-gear\"\n  | \"person-fill-lock\"\n  | \"person-fill-slash\"\n  | \"person-fill-up\"\n  | \"person-fill-x\"\n  | \"person-fill\"\n  | \"person-gear\"\n  | \"person-heart\"\n  | \"person-hearts\"\n  | \"person-lines-fill\"\n  | \"person-lock\"\n  | \"person-plus-fill\"\n  | \"person-plus\"\n  | \"person-raised-hand\"\n  | \"person-rolodex\"\n  | \"person-slash\"\n  | \"person-square\"\n  | \"person-standing-dress\"\n  | \"person-standing\"\n  | \"person-up\"\n  | \"person-vcard-fill\"\n  | \"person-vcard\"\n  | \"person-video\"\n  | \"person-video2\"\n  | \"person-video3\"\n  | \"person-walking\"\n  | \"person-wheelchair\"\n  | \"person-workspace\"\n  | \"person-x-fill\"\n  | \"person-x\"\n  | \"person\"\n  | \"phone-fill\"\n  | \"phone-flip\"\n  | \"phone-landscape-fill\"\n  | \"phone-landscape\"\n  | \"phone-vibrate-fill\"\n  | \"phone-vibrate\"\n  | \"phone\"\n  | \"pie-chart-fill\"\n  | \"pie-chart\"\n  | \"piggy-bank-fill\"\n  | \"piggy-bank\"\n  | \"pin-angle-fill\"\n  | \"pin-angle\"\n  | \"pin-fill\"\n  | \"pin-map-fill\"\n  | \"pin-map\"\n  | \"pin\"\n  | \"pinterest\"\n  | \"pip-fill\"\n  | \"pip\"\n  | \"play-btn-fill\"\n  | \"play-btn\"\n  | \"play-circle-fill\"\n  | \"play-circle\"\n  | \"play-fill\"\n  | \"play\"\n  | \"playstation\"\n  | \"plug-fill\"\n  | \"plug\"\n  | \"plugin\"\n  | \"plus-circle-dotted\"\n  | \"plus-circle-fill\"\n  | \"plus-circle\"\n  | \"plus-lg\"\n  | \"plus-slash-minus\"\n  | \"plus-square-dotted\"\n  | \"plus-square-fill\"\n  | \"plus-square\"\n  | \"plus\"\n  | \"postage-fill\"\n  | \"postage-heart-fill\"\n  | \"postage-heart\"\n  | \"postage\"\n  | \"postcard-fill\"\n  | \"postcard-heart-fill\"\n  | \"postcard-heart\"\n  | \"postcard\"\n  | \"power\"\n  | \"prescription\"\n  | \"prescription2\"\n  | \"printer-fill\"\n  | \"printer\"\n  | \"projector-fill\"\n  | \"projector\"\n  | \"puzzle-fill\"\n  | \"puzzle\"\n  | \"qr-code-scan\"\n  | \"qr-code\"\n  | \"question-circle-fill\"\n  | \"question-circle\"\n  | \"question-diamond-fill\"\n  | \"question-diamond\"\n  | \"question-lg\"\n  | \"question-octagon-fill\"\n  | \"question-octagon\"\n  | \"question-square-fill\"\n  | \"question-square\"\n  | \"question\"\n  | \"quora\"\n  | \"quote\"\n  | \"r-circle-fill\"\n  | \"r-circle\"\n  | \"r-square-fill\"\n  | \"r-square\"\n  | \"radar\"\n  | \"radioactive\"\n  | \"rainbow\"\n  | \"receipt-cutoff\"\n  | \"receipt\"\n  | \"reception-0\"\n  | \"reception-1\"\n  | \"reception-2\"\n  | \"reception-3\"\n  | \"reception-4\"\n  | \"record-btn-fill\"\n  | \"record-btn\"\n  | \"record-circle-fill\"\n  | \"record-circle\"\n  | \"record-fill\"\n  | \"record\"\n  | \"record2-fill\"\n  | \"record2\"\n  | \"recycle\"\n  | \"reddit\"\n  | \"regex\"\n  | \"repeat-1\"\n  | \"repeat\"\n  | \"reply-all-fill\"\n  | \"reply-all\"\n  | \"reply-fill\"\n  | \"reply\"\n  | \"rewind-btn-fill\"\n  | \"rewind-btn\"\n  | \"rewind-circle-fill\"\n  | \"rewind-circle\"\n  | \"rewind-fill\"\n  | \"rewind\"\n  | \"robot\"\n  | \"rocket-fill\"\n  | \"rocket-takeoff-fill\"\n  | \"rocket-takeoff\"\n  | \"rocket\"\n  | \"router-fill\"\n  | \"router\"\n  | \"rss-fill\"\n  | \"rss\"\n  | \"rulers\"\n  | \"safe-fill\"\n  | \"safe\"\n  | \"safe2-fill\"\n  | \"safe2\"\n  | \"save-fill\"\n  | \"save\"\n  | \"save2-fill\"\n  | \"save2\"\n  | \"scissors\"\n  | \"scooter\"\n  | \"screwdriver\"\n  | \"sd-card-fill\"\n  | \"sd-card\"\n  | \"search-heart-fill\"\n  | \"search-heart\"\n  | \"search\"\n  | \"segmented-nav\"\n  | \"send-arrow-down-fill\"\n  | \"send-arrow-down\"\n  | \"send-arrow-up-fill\"\n  | \"send-arrow-up\"\n  | \"send-check-fill\"\n  | \"send-check\"\n  | \"send-dash-fill\"\n  | \"send-dash\"\n  | \"send-exclamation-fill\"\n  | \"send-exclamation\"\n  | \"send-fill\"\n  | \"send-plus-fill\"\n  | \"send-plus\"\n  | \"send-slash-fill\"\n  | \"send-slash\"\n  | \"send-x-fill\"\n  | \"send-x\"\n  | \"send\"\n  | \"server\"\n  | \"shadows\"\n  | \"share-fill\"\n  | \"share\"\n  | \"shield-check\"\n  | \"shield-exclamation\"\n  | \"shield-fill-check\"\n  | \"shield-fill-exclamation\"\n  | \"shield-fill-minus\"\n  | \"shield-fill-plus\"\n  | \"shield-fill-x\"\n  | \"shield-fill\"\n  | \"shield-lock-fill\"\n  | \"shield-lock\"\n  | \"shield-minus\"\n  | \"shield-plus\"\n  | \"shield-shaded\"\n  | \"shield-slash-fill\"\n  | \"shield-slash\"\n  | \"shield-x\"\n  | \"shield\"\n  | \"shift-fill\"\n  | \"shift\"\n  | \"shop-window\"\n  | \"shop\"\n  | \"shuffle\"\n  | \"sign-dead-end-fill\"\n  | \"sign-dead-end\"\n  | \"sign-do-not-enter-fill\"\n  | \"sign-do-not-enter\"\n  | \"sign-intersection-fill\"\n  | \"sign-intersection-side-fill\"\n  | \"sign-intersection-side\"\n  | \"sign-intersection-t-fill\"\n  | \"sign-intersection-t\"\n  | \"sign-intersection-y-fill\"\n  | \"sign-intersection-y\"\n  | \"sign-intersection\"\n  | \"sign-merge-left-fill\"\n  | \"sign-merge-left\"\n  | \"sign-merge-right-fill\"\n  | \"sign-merge-right\"\n  | \"sign-no-left-turn-fill\"\n  | \"sign-no-left-turn\"\n  | \"sign-no-parking-fill\"\n  | \"sign-no-parking\"\n  | \"sign-no-right-turn-fill\"\n  | \"sign-no-right-turn\"\n  | \"sign-railroad-fill\"\n  | \"sign-railroad\"\n  | \"sign-stop-fill\"\n  | \"sign-stop-lights-fill\"\n  | \"sign-stop-lights\"\n  | \"sign-stop\"\n  | \"sign-turn-left-fill\"\n  | \"sign-turn-left\"\n  | \"sign-turn-right-fill\"\n  | \"sign-turn-right\"\n  | \"sign-turn-slight-left-fill\"\n  | \"sign-turn-slight-left\"\n  | \"sign-turn-slight-right-fill\"\n  | \"sign-turn-slight-right\"\n  | \"sign-yield-fill\"\n  | \"sign-yield\"\n  | \"signal\"\n  | \"signpost-2-fill\"\n  | \"signpost-2\"\n  | \"signpost-fill\"\n  | \"signpost-split-fill\"\n  | \"signpost-split\"\n  | \"signpost\"\n  | \"sim-fill\"\n  | \"sim-slash-fill\"\n  | \"sim-slash\"\n  | \"sim\"\n  | \"sina-weibo\"\n  | \"skip-backward-btn-fill\"\n  | \"skip-backward-btn\"\n  | \"skip-backward-circle-fill\"\n  | \"skip-backward-circle\"\n  | \"skip-backward-fill\"\n  | \"skip-backward\"\n  | \"skip-end-btn-fill\"\n  | \"skip-end-btn\"\n  | \"skip-end-circle-fill\"\n  | \"skip-end-circle\"\n  | \"skip-end-fill\"\n  | \"skip-end\"\n  | \"skip-forward-btn-fill\"\n  | \"skip-forward-btn\"\n  | \"skip-forward-circle-fill\"\n  | \"skip-forward-circle\"\n  | \"skip-forward-fill\"\n  | \"skip-forward\"\n  | \"skip-start-btn-fill\"\n  | \"skip-start-btn\"\n  | \"skip-start-circle-fill\"\n  | \"skip-start-circle\"\n  | \"skip-start-fill\"\n  | \"skip-start\"\n  | \"skype\"\n  | \"slack\"\n  | \"slash-circle-fill\"\n  | \"slash-circle\"\n  | \"slash-lg\"\n  | \"slash-square-fill\"\n  | \"slash-square\"\n  | \"slash\"\n  | \"sliders\"\n  | \"sliders2-vertical\"\n  | \"sliders2\"\n  | \"smartwatch\"\n  | \"snapchat\"\n  | \"snow\"\n  | \"snow2\"\n  | \"snow3\"\n  | \"sort-alpha-down-alt\"\n  | \"sort-alpha-down\"\n  | \"sort-alpha-up-alt\"\n  | \"sort-alpha-up\"\n  | \"sort-down-alt\"\n  | \"sort-down\"\n  | \"sort-numeric-down-alt\"\n  | \"sort-numeric-down\"\n  | \"sort-numeric-up-alt\"\n  | \"sort-numeric-up\"\n  | \"sort-up-alt\"\n  | \"sort-up\"\n  | \"soundwave\"\n  | \"sourceforge\"\n  | \"speaker-fill\"\n  | \"speaker\"\n  | \"speedometer\"\n  | \"speedometer2\"\n  | \"spellcheck\"\n  | \"spotify\"\n  | \"square-fill\"\n  | \"square-half\"\n  | \"square\"\n  | \"stack-overflow\"\n  | \"stack\"\n  | \"star-fill\"\n  | \"star-half\"\n  | \"star\"\n  | \"stars\"\n  | \"steam\"\n  | \"stickies-fill\"\n  | \"stickies\"\n  | \"sticky-fill\"\n  | \"sticky\"\n  | \"stop-btn-fill\"\n  | \"stop-btn\"\n  | \"stop-circle-fill\"\n  | \"stop-circle\"\n  | \"stop-fill\"\n  | \"stop\"\n  | \"stoplights-fill\"\n  | \"stoplights\"\n  | \"stopwatch-fill\"\n  | \"stopwatch\"\n  | \"strava\"\n  | \"stripe\"\n  | \"subscript\"\n  | \"substack\"\n  | \"subtract\"\n  | \"suit-club-fill\"\n  | \"suit-club\"\n  | \"suit-diamond-fill\"\n  | \"suit-diamond\"\n  | \"suit-heart-fill\"\n  | \"suit-heart\"\n  | \"suit-spade-fill\"\n  | \"suit-spade\"\n  | \"suitcase-fill\"\n  | \"suitcase-lg-fill\"\n  | \"suitcase-lg\"\n  | \"suitcase\"\n  | \"suitcase2-fill\"\n  | \"suitcase2\"\n  | \"sun-fill\"\n  | \"sun\"\n  | \"sunglasses\"\n  | \"sunrise-fill\"\n  | \"sunrise\"\n  | \"sunset-fill\"\n  | \"sunset\"\n  | \"superscript\"\n  | \"symmetry-horizontal\"\n  | \"symmetry-vertical\"\n  | \"table\"\n  | \"tablet-fill\"\n  | \"tablet-landscape-fill\"\n  | \"tablet-landscape\"\n  | \"tablet\"\n  | \"tag-fill\"\n  | \"tag\"\n  | \"tags-fill\"\n  | \"tags\"\n  | \"taxi-front-fill\"\n  | \"taxi-front\"\n  | \"telegram\"\n  | \"telephone-fill\"\n  | \"telephone-forward-fill\"\n  | \"telephone-forward\"\n  | \"telephone-inbound-fill\"\n  | \"telephone-inbound\"\n  | \"telephone-minus-fill\"\n  | \"telephone-minus\"\n  | \"telephone-outbound-fill\"\n  | \"telephone-outbound\"\n  | \"telephone-plus-fill\"\n  | \"telephone-plus\"\n  | \"telephone-x-fill\"\n  | \"telephone-x\"\n  | \"telephone\"\n  | \"tencent-qq\"\n  | \"terminal-dash\"\n  | \"terminal-fill\"\n  | \"terminal-plus\"\n  | \"terminal-split\"\n  | \"terminal-x\"\n  | \"terminal\"\n  | \"text-center\"\n  | \"text-indent-left\"\n  | \"text-indent-right\"\n  | \"text-left\"\n  | \"text-paragraph\"\n  | \"text-right\"\n  | \"text-wrap\"\n  | \"textarea-resize\"\n  | \"textarea-t\"\n  | \"textarea\"\n  | \"thermometer-half\"\n  | \"thermometer-high\"\n  | \"thermometer-low\"\n  | \"thermometer-snow\"\n  | \"thermometer-sun\"\n  | \"thermometer\"\n  | \"threads-fill\"\n  | \"threads\"\n  | \"three-dots-vertical\"\n  | \"three-dots\"\n  | \"thunderbolt-fill\"\n  | \"thunderbolt\"\n  | \"ticket-detailed-fill\"\n  | \"ticket-detailed\"\n  | \"ticket-fill\"\n  | \"ticket-perforated-fill\"\n  | \"ticket-perforated\"\n  | \"ticket\"\n  | \"tiktok\"\n  | \"toggle-off\"\n  | \"toggle-on\"\n  | \"toggle2-off\"\n  | \"toggle2-on\"\n  | \"toggles\"\n  | \"toggles2\"\n  | \"tools\"\n  | \"tornado\"\n  | \"train-freight-front-fill\"\n  | \"train-freight-front\"\n  | \"train-front-fill\"\n  | \"train-front\"\n  | \"train-lightrail-front-fill\"\n  | \"train-lightrail-front\"\n  | \"translate\"\n  | \"transparency\"\n  | \"trash-fill\"\n  | \"trash\"\n  | \"trash2-fill\"\n  | \"trash2\"\n  | \"trash3-fill\"\n  | \"trash3\"\n  | \"tree-fill\"\n  | \"tree\"\n  | \"trello\"\n  | \"triangle-fill\"\n  | \"triangle-half\"\n  | \"triangle\"\n  | \"trophy-fill\"\n  | \"trophy\"\n  | \"tropical-storm\"\n  | \"truck-flatbed\"\n  | \"truck-front-fill\"\n  | \"truck-front\"\n  | \"truck\"\n  | \"tsunami\"\n  | \"tux\"\n  | \"tv-fill\"\n  | \"tv\"\n  | \"twitch\"\n  | \"twitter-x\"\n  | \"twitter\"\n  | \"type-bold\"\n  | \"type-h1\"\n  | \"type-h2\"\n  | \"type-h3\"\n  | \"type-h4\"\n  | \"type-h5\"\n  | \"type-h6\"\n  | \"type-italic\"\n  | \"type-strikethrough\"\n  | \"type-underline\"\n  | \"type\"\n  | \"typescript\"\n  | \"ubuntu\"\n  | \"ui-checks-grid\"\n  | \"ui-checks\"\n  | \"ui-radios-grid\"\n  | \"ui-radios\"\n  | \"umbrella-fill\"\n  | \"umbrella\"\n  | \"unindent\"\n  | \"union\"\n  | \"unity\"\n  | \"universal-access-circle\"\n  | \"universal-access\"\n  | \"unlock-fill\"\n  | \"unlock\"\n  | \"unlock2-fill\"\n  | \"unlock2\"\n  | \"upc-scan\"\n  | \"upc\"\n  | \"upload\"\n  | \"usb-c-fill\"\n  | \"usb-c\"\n  | \"usb-drive-fill\"\n  | \"usb-drive\"\n  | \"usb-fill\"\n  | \"usb-micro-fill\"\n  | \"usb-micro\"\n  | \"usb-mini-fill\"\n  | \"usb-mini\"\n  | \"usb-plug-fill\"\n  | \"usb-plug\"\n  | \"usb-symbol\"\n  | \"usb\"\n  | \"valentine\"\n  | \"valentine2\"\n  | \"vector-pen\"\n  | \"view-list\"\n  | \"view-stacked\"\n  | \"vignette\"\n  | \"vimeo\"\n  | \"vinyl-fill\"\n  | \"vinyl\"\n  | \"virus\"\n  | \"virus2\"\n  | \"voicemail\"\n  | \"volume-down-fill\"\n  | \"volume-down\"\n  | \"volume-mute-fill\"\n  | \"volume-mute\"\n  | \"volume-off-fill\"\n  | \"volume-off\"\n  | \"volume-up-fill\"\n  | \"volume-up\"\n  | \"vr\"\n  | \"wallet-fill\"\n  | \"wallet\"\n  | \"wallet2\"\n  | \"watch\"\n  | \"water\"\n  | \"webcam-fill\"\n  | \"webcam\"\n  | \"wechat\"\n  | \"whatsapp\"\n  | \"wifi-1\"\n  | \"wifi-2\"\n  | \"wifi-off\"\n  | \"wifi\"\n  | \"wikipedia\"\n  | \"wind\"\n  | \"window-dash\"\n  | \"window-desktop\"\n  | \"window-dock\"\n  | \"window-fullscreen\"\n  | \"window-plus\"\n  | \"window-sidebar\"\n  | \"window-split\"\n  | \"window-stack\"\n  | \"window-x\"\n  | \"window\"\n  | \"windows\"\n  | \"wordpress\"\n  | \"wrench-adjustable-circle-fill\"\n  | \"wrench-adjustable-circle\"\n  | \"wrench-adjustable\"\n  | \"wrench\"\n  | \"x-circle-fill\"\n  | \"x-circle\"\n  | \"x-diamond-fill\"\n  | \"x-diamond\"\n  | \"x-lg\"\n  | \"x-octagon-fill\"\n  | \"x-octagon\"\n  | \"x-square-fill\"\n  | \"x-square\"\n  | \"x\"\n  | \"xbox\"\n  | \"yelp\"\n  | \"yin-yang\"\n  | \"youtube\"\n  | \"zoom-in\"\n  | \"zoom-out\";\n"
  },
  {
    "path": "hugo.yml",
    "content": "languageCode:           \"en\"\ntitle:                  \"Bootstrap Icons\"\nbaseURL:                \"https://icons.getbootstrap.com\"\nenableInlineShortcodes: true\nenableRobotsTXT:        true\nmetaDataFormat:         \"yaml\"\ndisableKinds:           [\"404\", \"taxonomy\", \"term\", \"RSS\"]\n\npublishDir:             \"_site\"\n\nsecurity:\n  enableInlineShortcodes: true\n  funcs:\n    getenv:\n      - ^HUGO_\n      - NETLIFY\n\nmarkup:\n  goldmark:\n    renderer:\n      unsafe:           true\n  highlight:\n    noClasses:          false\n\nmodule:\n  mounts:\n    - source:           docs/assets\n      target:           assets\n    - source:           docs/content\n      target:           content\n    - source:           docs/data\n      target:           data\n    - source:           docs/layouts\n      target:           layouts\n    - source:           docs/static\n      target:           static\n    - source:           docs/static/assets/img/favicons/apple-touch-icon.png\n      target:           static/apple-touch-icon.png\n    - source:           docs/static/assets/img/favicons/favicon.ico\n      target:           static/favicon.ico\n    - source:           bootstrap-icons.svg\n      target:           static/bootstrap-icons.svg\n    - source:           icons\n      target:           static/assets/icons\n    - source:           font\n      target:           static/assets/font\n    - source:           font\n      target:           assets/font\n    - source:           node_modules/bootstrap/scss\n      target:           assets/scss/bootstrap\n    - source:           node_modules/bootstrap/dist/js/bootstrap.bundle.min.js\n      target:           static/assets/js/vendor/bootstrap.bundle.min.js\n\nparams:\n  description:          \"Official open source SVG icon library for Bootstrap\"\n  social_image_path:    /assets/img/bootstrap-icons-social.png\n\n  version:              \"1.13.1\"\n  docs_version:         \"5.3\"\n\n  main:                 \"https://getbootstrap.com\"\n  github_org:           \"https://github.com/twbs\"\n  icons_repo:           \"https://github.com/twbs/icons\"\n  repo:                 \"https://github.com/twbs/bootstrap\"\n  twitter:              \"getbootstrap\"\n  opencollective:       \"https://opencollective.com/bootstrap\"\n  blog:                 \"https://blog.getbootstrap.com/\"\n  themes:               \"https://themes.getbootstrap.com/\"\n  icons:                \"https://icons.getbootstrap.com/\"\n  swag:                 \"https://cottonbureau.com/people/bootstrap\"\n  icons_figma:          \"https://www.figma.com/community/file/1042482994486402696/Bootstrap-Icons\"\n"
  },
  {
    "path": "package.json",
    "content": "{\n  \"name\": \"bootstrap-icons\",\n  \"version\": \"1.13.1\",\n  \"description\": \"Official open source SVG icon library for Bootstrap\",\n  \"author\": \"mdo\",\n  \"license\": \"MIT\",\n  \"homepage\": \"https://icons.getbootstrap.com/\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git+https://github.com/twbs/icons.git\"\n  },\n  \"bugs\": {\n    \"url\": \"https://github.com/twbs/icons/issues\"\n  },\n  \"funding\": [\n    {\n      \"type\": \"github\",\n      \"url\": \"https://github.com/sponsors/twbs\"\n    },\n    {\n      \"type\": \"opencollective\",\n      \"url\": \"https://opencollective.com/bootstrap\"\n    }\n  ],\n  \"keywords\": [\n    \"bootstrap\",\n    \"icons\",\n    \"svg\",\n    \"font\",\n    \"sprite\",\n    \"woff\",\n    \"woff2\"\n  ],\n  \"style\": \"font/bootstrap-icons.css\",\n  \"sass\": \"font/bootstrap-icons.scss\",\n  \"types\": \"font/bootstrap-icons.ts\",\n  \"files\": [\n    \"icons/*.svg\",\n    \"bootstrap-icons.svg\",\n    \"font\",\n    \"!.DS_Store\"\n  ],\n  \"hugo-bin\": {\n    \"buildTags\": \"extended\",\n    \"version\": \"0.134.3\"\n  },\n  \"scripts\": {\n    \"start\": \"npm run docs-serve\",\n    \"docs-serve\": \"hugo server --port 4000 --disableFastRender\",\n    \"docs-build\": \"hugo --cleanDestinationDir --printUnusedTemplates\",\n    \"docs-test\": \"npm-run-all docs-build docs-test:vnu\",\n    \"docs-test:vnu\": \"node build/vnu-jar.mjs\",\n    \"pages\": \"node build/build-pages.mjs\",\n    \"icons\": \"npm-run-all icons-main --aggregate-output --parallel icons-sprite icons-font\",\n    \"icons-main\": \"node build/build-svgs.mjs\",\n    \"icons-zip\": \"cross-env-shell \\\"rm -rf bootstrap-icons-$npm_package_version bootstrap-icons-$npm_package_version.zip && cp -r icons/ bootstrap-icons-$npm_package_version && cp bootstrap-icons.svg bootstrap-icons-$npm_package_version && cp -r font/ bootstrap-icons-$npm_package_version && zip -qr9 bootstrap-icons-$npm_package_version.zip bootstrap-icons-$npm_package_version && rm -rf bootstrap-icons-$npm_package_version\\\"\",\n    \"icons-sprite\": \"svg-sprite --config svg-sprite.json --log=info \\\"icons/*.svg\\\"\",\n    \"icons-font\": \"npm-run-all icons-font-*\",\n    \"icons-font-main\": \"fantasticon\",\n    \"icons-font-min\": \"cleancss -O1 --format breakWith=lf --with-rebase --output font/bootstrap-icons.min.css font/bootstrap-icons.css\",\n    \"release\": \"npm-run-all icons docs-build icons-zip\",\n    \"release-version\": \"node build/bump-version.mjs\",\n    \"netlify\": \"cross-env-shell HUGO_BASEURL=$DEPLOY_PRIME_URL npm-run-all icons docs-build\",\n    \"test:fusv\": \"fusv docs/assets/scss/\",\n    \"test:eslint\": \"eslint --cache --cache-location .cache/.eslintcache .\",\n    \"test:stylelint\": \"stylelint docs/assets/scss/ --cache --cache-location .cache/.stylelintcache\",\n    \"test:lockfile-lint\": \"lockfile-lint --allowed-hosts npm --allowed-schemes https: --empty-hostname false --type npm --path package-lock.json\",\n    \"test:check-icons\": \"node build/check-icons.mjs\",\n    \"test\": \"npm-run-all --parallel --aggregate-output --continue-on-error test:*\"\n  },\n  \"devDependencies\": {\n    \"@eslint/js\": \"^10.0.1\",\n    \"@twbs/fantasticon\": \"^3.1.0\",\n    \"autoprefixer\": \"^10.4.27\",\n    \"bootstrap\": \"^5.3.8\",\n    \"clean-css-cli\": \"^5.6.3\",\n    \"clipboard\": \"^2.0.11\",\n    \"cross-env\": \"^10.1.0\",\n    \"eslint\": \"^10.0.2\",\n    \"find-unused-sass-variables\": \"^6.1.1\",\n    \"fuse.js\": \"^7.1.0\",\n    \"globals\": \"^17.4.0\",\n    \"hugo-bin\": \"^0.149.2\",\n    \"lockfile-lint\": \"^5.0.0\",\n    \"npm-run-all2\": \"^8.0.4\",\n    \"picocolors\": \"^1.1.1\",\n    \"postcss\": \"^8.5.8\",\n    \"postcss-cli\": \"^11.0.1\",\n    \"stylelint\": \"^16.26.1\",\n    \"stylelint-config-twbs-bootstrap\": \"^16.1.0\",\n    \"svg-sprite\": \"^3.0.0-rc3\",\n    \"svgo\": \"^3.3.3\",\n    \"vnu-jar\": \"25.11.3\"\n  }\n}\n"
  },
  {
    "path": "svg-sprite.json",
    "content": "{\n  \"mode\": {\n    \"symbol\": {\n      \"dest\": \".\",\n      \"sprite\": \"bootstrap-icons.svg\"\n    }\n  },\n  \"svg\": {\n    \"namespaceClassnames\": false,\n    \"xmlDeclaration\": false\n  },\n  \"shape\": {\n    \"transform\": [\n      {\n        \"svgo\": {\n          \"multipass\": true,\n          \"plugins\": [\n            {\n              \"name\": \"preset-default\",\n              \"params\": {\n                \"overrides\": {\n                  \"removeUnknownsAndDefaults\": {\n                    \"keepDataAttrs\": false,\n                    \"keepRoleAttr\": true\n                  },\n                  \"removeViewBox\": false\n                }\n              }\n            },\n            \"cleanupListOfValues\",\n            \"removeXMLNS\",\n            {\n              \"name\": \"removeAttrs\",\n              \"params\": {\n                \"attrs\": [\n                  \"clip-rule\",\n                  \"fill\"\n                ]\n              }\n            }\n          ]\n        }\n      }\n    ]\n  }\n}\n"
  },
  {
    "path": "svgo.config.mjs",
    "content": "import path from 'node:path'\n\nexport default {\n  multipass: true,\n  js2svg: {\n    pretty: true,\n    indent: 2,\n    eol: 'lf'\n  },\n  plugins: [\n    {\n      name: 'preset-default',\n      params: {\n        overrides: {\n          removeUnknownsAndDefaults: {\n            keepDataAttrs: false, // remove all `data` attributes\n            keepRoleAttr: true // keep the `role` attribute\n          },\n          removeViewBox: false // keep the `viewBox` attribute\n        }\n      }\n    },\n    // The next plugins are included in svgo but are not part of preset-default,\n    // so we need to explicitly enable them\n    'cleanupListOfValues',\n    {\n      name: 'removeAttrs',\n      params: {\n        attrs: [\n          'clip-rule',\n          'fill'\n        ]\n      }\n    },\n    // Custom plugin which resets the SVG attributes to explicit values\n    {\n      name: 'explicitAttrs',\n      type: 'visitor',\n      params: {\n        attributes: {\n          xmlns: 'http://www.w3.org/2000/svg',\n          width: '16',\n          height: '16',\n          fill: 'currentColor',\n          class: '', // We replace the class with the correct one based on filename later\n          viewBox: '0 0 16 16'\n        }\n      },\n      fn(_root, params, info) {\n        if (!params.attributes) {\n          return null\n        }\n\n        const basename = path.basename(info.path, '.svg')\n\n        return {\n          element: {\n            enter(node, parentNode) {\n              if (node.name === 'svg' && parentNode.type === 'root') {\n                // We set the `svgAttributes` in the order we want to,\n                // hence why we remove the attributes and add them back\n                node.attributes = {}\n                for (const [key, value] of Object.entries(params.attributes)) {\n                  node.attributes[key] = key === 'class' ? `bi bi-${basename}` : value\n                }\n              }\n            }\n          }\n        }\n      }\n    }\n  ]\n}\n"
  }
]